From unknown Fri Aug 15 20:58:20 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#69923] [PATCH] gnu: arcan-sdl: Add missing inputs. Resent-From: David Elsing Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 20 Mar 2024 21:38:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 69923 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: skyvine@protonmail.com, 69923@debbugs.gnu.org Cc: David Elsing X-Debbugs-Original-To: skyvine@protonmail.com, guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.17109706384045 (code B ref -1); Wed, 20 Mar 2024 21:38:02 +0000 Received: (at submit) by debbugs.gnu.org; 20 Mar 2024 21:37:18 +0000 Received: from localhost ([127.0.0.1]:36079 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rn3cc-00013B-Ak for submit@debbugs.gnu.org; Wed, 20 Mar 2024 17:37:18 -0400 Received: from lists.gnu.org ([209.51.188.17]:44228) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rn3cZ-00012x-Pf for submit@debbugs.gnu.org; Wed, 20 Mar 2024 17:37:16 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rn3bv-0002vC-GT for guix-patches@gnu.org; Wed, 20 Mar 2024 17:36:35 -0400 Received: from mout02.posteo.de ([185.67.36.66]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rn3bt-0004yv-Hr for guix-patches@gnu.org; Wed, 20 Mar 2024 17:36:34 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id E3DF6240103 for ; Wed, 20 Mar 2024 22:36:29 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1710970589; bh=BYDo/g5UsxE8xhqJODsQQb2kH6g8wzDh0mtC+sP3dDU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version: Content-Transfer-Encoding:From; b=bp10HLQdkzIpvOVnGLyoGShWETP2KvqADYjHeOy5tEnzF5paebd3n70Wm4R/Lh2j2 /IA7N8OLwhR/DFWpptack3GzkKyYt40t+D7F3dn0fMyd7Yby0+vgliqafRycrf2NiF KdtyrueK4LtemjRm+ToiJbwGZk86POGyk9wJPZuY+QN4jeatcL751YXjXumG/dDkj6 E3MS12b0spo8P04HiKxvvD+C2RtdnfuH87n4m+tdV1/R7mk7h9jxtcxcPCQU0zwHcF Vi41Z11E64m5Ks7BxZxmBjQNqGsxDWzRB0TTMyLGZsxDb4gZsPnUGpiRlkMPDdwXUT r9XElkB+einWg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4V0MNY2w8kz9rxD; Wed, 20 Mar 2024 22:36:29 +0100 (CET) From: David Elsing Date: Wed, 20 Mar 2024 21:34:03 +0000 Message-ID: <20240320213619.11777-1-david.elsing@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.66; envelope-from=david.elsing@posteo.net; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/arcan.scm (arcan-sdl)[inputs]: Add glu, libglvnd and mesa. --- Hello, I found the problem: The glu, libglvnd and mesa packages are additionally required, now the build succeeds. Cheers, David gnu/packages/arcan.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/arcan.scm b/gnu/packages/arcan.scm index 4ca76edbec..dfc211ae9c 100644 --- a/gnu/packages/arcan.scm +++ b/gnu/packages/arcan.scm @@ -171,7 +171,7 @@ (define-public arcan-sdl (inputs (modify-inputs (package-inputs arcan) (delete "libdrm") - (prepend sdl))) + (prepend glu libglvnd mesa sdl))) (arguments `(,@(ensure-keyword-arguments (package-arguments arcan) -- 2.41.0 From unknown Fri Aug 15 20:58:20 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#69923] [PATCH] gnu: arcan-sdl: Add missing inputs. References: <20240320213619.11777-1-david.elsing@posteo.net> In-Reply-To: <20240320213619.11777-1-david.elsing@posteo.net> Resent-From: Skyler Ferris Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 21 Mar 2024 00:48:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 69923 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 69923@debbugs.gnu.org, david.elsing@posteo.net Received: via spool by 69923-submit@debbugs.gnu.org id=B69923.17109820719064 (code B ref 69923); Thu, 21 Mar 2024 00:48:01 +0000 Received: (at 69923) by debbugs.gnu.org; 21 Mar 2024 00:47:51 +0000 Received: from localhost ([127.0.0.1]:40446 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rn6b1-0002M7-L6 for submit@debbugs.gnu.org; Wed, 20 Mar 2024 20:47:51 -0400 Received: from mail-4322.protonmail.ch ([185.70.43.22]:48845) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rn6ay-0002Lb-BM for 69923@debbugs.gnu.org; Wed, 20 Mar 2024 20:47:49 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1710982021; x=1711241221; bh=t+KgNORvZh5K31UFxhhK4Nd+V0R30DD9O+Bx8kgJbMs=; h=Date:To:From:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=NwRLBct1t8F2vIBV6Jr49YFon65EmjskW2Kt9AmveF0F3WD79B8cSSAaf6u6ZhKlE M1clVQQvKf0mbB0GrT/8ajGwsbxw/RLZRa8eWHD27fvC9R/WRweS85DZoOSGlXeJu/ xmpj+giraCbIfdBt5/JCe8ZX9QtMMZtHJl/GC3IqSBXYNz7X7xXNqCYud05/T59v/B qJ0XJm9XeLQMhBVXYcRgsetGYHGzC6+wC1IhzSax+Qza4SlbrV/geJzSpp7nyoihQm ut7cIxEf0O4G304VH0jtJBxhv3KG1OMedJ5Wb8UEnzSVeT4l1jg6loVDxEA4Vb98q9 a6XBbUrcV7XWg== Date: Thu, 21 Mar 2024 00:46:54 +0000 From: Skyler Ferris Message-ID: <13526d18-3721-46cf-8195-ee634f8e812e@protonmail.com> Feedback-ID: 40635331:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Awesome! I just checked on my machine with the patch from 69866 and it=20 still builds with that patch applied. It'll be great to have another=20 package working! Also, just to clarify, I believe you mentioned on the call that you=20 noticed that there was bundled source in this package which needs to be=20 addressed. Is that something that you were planning on working on? Regards, Skyler From unknown Fri Aug 15 20:58:20 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#69923] arcan-sdl References: <20240320213619.11777-1-david.elsing@posteo.net> In-Reply-To: <20240320213619.11777-1-david.elsing@posteo.net> Resent-From: Ahmad Draidi Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 21 Mar 2024 01:37:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 69923 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 69923@debbugs.gnu.org Received: via spool by 69923-submit@debbugs.gnu.org id=B69923.17109849897094 (code B ref 69923); Thu, 21 Mar 2024 01:37:01 +0000 Received: (at 69923) by debbugs.gnu.org; 21 Mar 2024 01:36:29 +0000 Received: from localhost ([127.0.0.1]:43702 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rn7M5-0001qK-FD for submit@debbugs.gnu.org; Wed, 20 Mar 2024 21:36:29 -0400 Received: from rainycloud.ext.redscript.org ([103.105.48.212]:46382) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rn7M0-0001pd-QM for 69923@debbugs.gnu.org; Wed, 20 Mar 2024 21:36:27 -0400 Received: from [127.0.0.1] (unknown [5.194.74.203]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by rainycloud.ext.redscript.org (Postfix) with ESMTPSA id D5C1A6838 for <69923@debbugs.gnu.org>; Thu, 21 Mar 2024 01:17:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redscript.org; s=mail1-rsa; t=1710983828; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=fz8T2wYZrSCf4J5gOyTpTjhQIN3iP3byQ5JIiz+QSxM=; b=A2YmHQny1dVhjXB2hl6r/JAlPj6bD3bzymVdPptwcYoeWBG2j/26sNtJrfQeYIA0/9k2lq paKjkorEHZO9S8jWm/hT0b7lBsUc9WuRSCCjsozqYDbVTWRkXVLBR8cbcssy1u3FJxL+4I WJXL+MN7NbHo6BU04gTJk2v2ZLHOgaMNnSYHaajlde4SNKVNojop0gwqu++X9YGA/v7DZP wLTgJTQcw0ud6BT/8r8mbMM4RSZgwaU7k+AGrfWHEDPQKQuEdNbi7zYNOmUrB+bLAaNRk9 oLSLE8zOYWygXJBcxo1US+ps5cU0d7xV1sV5TawB+8GwEn1pyISvhU/MjZlQve3wbKs8rk sp0mFC+I35ZjOlPkpjvhGjKreTRCSLaAiQQ7qm5XqlcQx2GWquiPDVqAqMlcY6VN8EYRYi p7SpKjY3vPMMg4i7S9nCKeZ7JQ4K4jPkdYmbJuoW4+ivpfJ4g8JT/fF6LPuK8n3a99B+hM ctvepJ4eIi/2EXNusvk+Rz6yYC293mg85XX+PA/N/3rYI6rtpNF4bD2G8WeBfGpi6wRMeV vjlkLJQ/14hC70FxbOC5lnF3P8d1Tc8nRdRidtyWLrlYowmiQJx4/aLJPZKpvbj5Wv/181 Gq3tdnVbql9twSyhm6Xrjfl+2IGCvr1yv+jvNamoZidbHsLcB67J4= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=redscript.org; s=mail1-ed25519; t=1710983828; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=fz8T2wYZrSCf4J5gOyTpTjhQIN3iP3byQ5JIiz+QSxM=; b=j3/QDb3/S62HUMJe4EdQoSyMb3jq1PHjjHO636wimKDmYnhNRpdFNEYjgWPxTXVrPjLWHy ogi1ZnZX9C8yutBA== Date: Thu, 21 Mar 2024 05:17:03 +0400 From: Ahmad Draidi User-Agent: K-9 Mail for Android Message-ID: <7EDE3556-4F94-467C-8064-886ABBF6D717@redscript.org> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary=----8K02KWY9N33RNO3NY6UG7OO1CHGEFK Content-Transfer-Encoding: 7bit X-Spam-Score: -0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) ------8K02KWY9N33RNO3NY6UG7OO1CHGEFK Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, I believe arcan-sdl is built as part of the arcan package=2E I think I was= planning to deprecate and remove it later as part of my arcan rework patch= es, but never got around to it=2E Is there a reason to keep it around and not use arcan? Perhaps it should b= e converted to an output for the main package instead, if there's a good re= ason? What do you think? Thanks, Ahmad Draidi ------8K02KWY9N33RNO3NY6UG7OO1CHGEFK Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable
Hello,

I believe arcan-= sdl is built as part of the arcan package=2E I think I was planning to depr= ecate and remove it later as part of my arcan rework patches, but never got= around to it=2E

Is there a reason to keep it around and not use arc= an? Perhaps it should be converted to an output for the main package instea= d, if there's a good reason?

What do you think?

Thanks,
Ah= mad Draidi
------8K02KWY9N33RNO3NY6UG7OO1CHGEFK-- From unknown Fri Aug 15 20:58:20 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: David Elsing Subject: bug#69923: closed (Re: [bug#69923] [PATCH] gnu: arcan-sdl: Add missing inputs.) Message-ID: References: <87bk76tuzw.fsf@gnu.org> <20240320213619.11777-1-david.elsing@posteo.net> X-Gnu-PR-Message: they-closed 69923 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 69923@debbugs.gnu.org Date: Fri, 22 Mar 2024 10:36:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1711103762-2409-1" This is a multi-part message in MIME format... ------------=_1711103762-2409-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #69923: [PATCH] gnu: arcan-sdl: Add missing inputs. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 69923@debbugs.gnu.org. --=20 69923: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D69923 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1711103762-2409-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 69923-done) by debbugs.gnu.org; 22 Mar 2024 10:35:57 +0000 Received: from localhost ([127.0.0.1]:41457 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rncFg-0000cS-JQ for submit@debbugs.gnu.org; Fri, 22 Mar 2024 06:35:56 -0400 Received: from eggs.gnu.org ([209.51.188.92]:58618) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rncFe-0000cA-Ub for 69923-done@debbugs.gnu.org; Fri, 22 Mar 2024 06:35:55 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rncEv-0001zy-0P; Fri, 22 Mar 2024 06:35:09 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=UOCooasJVmNgrD73HRZwc0X8dnuD4yZ2u3N1qHMTFhU=; b=B7TKsUHq/tBf+ko7Cbt7 lMKSC29JRz3lbuqv1SFKjt7MvsM7AG9/GRqkvt6kccy1zb2VqaTsEoN29p6ftD7mAAN8sQLpsLv/U EvOBRUOLKYjzR+oSIFV+GLwQf2RTAsPDyyhU6UkOFB9RiLCtAM8a8ggEpvTNx8TGQ0SGvG/olTG/u M8d/ofilB3fHbpEIQQFzG8hXiAcfj+eysL4RdKd/k86PKRtcdqVjqEGQHVRcOUeFIN7G8leoXTjiC 6IerDcCx6sXRYkFz0eFMq2nmBLri38f4kn0kliUi9Xcy4ApCWv6SJny6jMcegggYQHHhh7mHWXhE1 igsVEtk9C3jvkw==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: David Elsing Subject: Re: [bug#69923] [PATCH] gnu: arcan-sdl: Add missing inputs. In-Reply-To: <20240320213619.11777-1-david.elsing@posteo.net> (David Elsing's message of "Wed, 20 Mar 2024 21:34:03 +0000") References: <20240320213619.11777-1-david.elsing@posteo.net> Date: Fri, 22 Mar 2024 11:34:59 +0100 Message-ID: <87bk76tuzw.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 69923-done Cc: 69923-done@debbugs.gnu.org, skyvine@protonmail.com X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, David Elsing skribis: > * gnu/packages/arcan.scm (arcan-sdl)[inputs]: Add glu, libglvnd and mesa. Applied, thanks! Ludo=E2=80=99. ------------=_1711103762-2409-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 20 Mar 2024 21:37:18 +0000 Received: from localhost ([127.0.0.1]:36079 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rn3cc-00013B-Ak for submit@debbugs.gnu.org; Wed, 20 Mar 2024 17:37:18 -0400 Received: from lists.gnu.org ([209.51.188.17]:44228) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rn3cZ-00012x-Pf for submit@debbugs.gnu.org; Wed, 20 Mar 2024 17:37:16 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rn3bv-0002vC-GT for guix-patches@gnu.org; Wed, 20 Mar 2024 17:36:35 -0400 Received: from mout02.posteo.de ([185.67.36.66]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rn3bt-0004yv-Hr for guix-patches@gnu.org; Wed, 20 Mar 2024 17:36:34 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id E3DF6240103 for ; Wed, 20 Mar 2024 22:36:29 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1710970589; bh=BYDo/g5UsxE8xhqJODsQQb2kH6g8wzDh0mtC+sP3dDU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version: Content-Transfer-Encoding:From; b=bp10HLQdkzIpvOVnGLyoGShWETP2KvqADYjHeOy5tEnzF5paebd3n70Wm4R/Lh2j2 /IA7N8OLwhR/DFWpptack3GzkKyYt40t+D7F3dn0fMyd7Yby0+vgliqafRycrf2NiF KdtyrueK4LtemjRm+ToiJbwGZk86POGyk9wJPZuY+QN4jeatcL751YXjXumG/dDkj6 E3MS12b0spo8P04HiKxvvD+C2RtdnfuH87n4m+tdV1/R7mk7h9jxtcxcPCQU0zwHcF Vi41Z11E64m5Ks7BxZxmBjQNqGsxDWzRB0TTMyLGZsxDb4gZsPnUGpiRlkMPDdwXUT r9XElkB+einWg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4V0MNY2w8kz9rxD; Wed, 20 Mar 2024 22:36:29 +0100 (CET) From: David Elsing To: skyvine@protonmail.com, guix-patches@gnu.org Subject: [PATCH] gnu: arcan-sdl: Add missing inputs. Date: Wed, 20 Mar 2024 21:34:03 +0000 Message-ID: <20240320213619.11777-1-david.elsing@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.66; envelope-from=david.elsing@posteo.net; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: David Elsing X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/arcan.scm (arcan-sdl)[inputs]: Add glu, libglvnd and mesa. --- Hello, I found the problem: The glu, libglvnd and mesa packages are additionally required, now the build succeeds. Cheers, David gnu/packages/arcan.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/arcan.scm b/gnu/packages/arcan.scm index 4ca76edbec..dfc211ae9c 100644 --- a/gnu/packages/arcan.scm +++ b/gnu/packages/arcan.scm @@ -171,7 +171,7 @@ (define-public arcan-sdl (inputs (modify-inputs (package-inputs arcan) (delete "libdrm") - (prepend sdl))) + (prepend glu libglvnd mesa sdl))) (arguments `(,@(ensure-keyword-arguments (package-arguments arcan) -- 2.41.0 ------------=_1711103762-2409-1-- From unknown Fri Aug 15 20:58:20 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#69923] arcan-sdl References: <20240320213619.11777-1-david.elsing@posteo.net> Resent-From: David Elsing Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 22 Mar 2024 20:25:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 69923 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Ahmad Draidi Cc: 69923@debbugs.gnu.org Received: via spool by 69923-submit@debbugs.gnu.org id=B69923.17111390897123 (code B ref 69923); Fri, 22 Mar 2024 20:25:02 +0000 Received: (at 69923) by debbugs.gnu.org; 22 Mar 2024 20:24:49 +0000 Received: from localhost ([127.0.0.1]:46657 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rnlRX-0001ql-FA for submit@debbugs.gnu.org; Fri, 22 Mar 2024 16:24:49 -0400 Received: from mout02.posteo.de ([185.67.36.66]:53979) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rnlRR-0001qD-1u for 69923@debbugs.gnu.org; Fri, 22 Mar 2024 16:24:46 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id 25151240103 for <69923@debbugs.gnu.org>; Fri, 22 Mar 2024 21:23:52 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1711139033; bh=GPQUDzNBLVJqWfOcJ6yMHzoJiAfVbeBz01+Nxk78pqU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version:Content-Type: From; b=qM6uePmKVebDmLgCUG+xnII53Z6U4QikCu3CrXB3HPug1XTc2oeTqefjq/EHtaupB zumVG7AZd7wBXWh9bFv1Y76jJvlmZ2CoLX0qe/ilvH28VNZqeDrpvUmvkL03DcMRk6 ILSV97pIc5QT5dvGj6OqROXzC/Ju7xC+QGyge5CN3zX50/Ug7+Gl1UxahxiXha9n/P rCY7gKAn+SjDLXbukUddjWvaHIbJWSziKpm6GmbrRkLpFw+ivUgj8e5z0TKf7jIcen xkOhoQ++1NN0lmgckpa5yYQF/Dkx5yzUcvmHpcUTTRe7c9C15VPCtJDe4JkcPsCpKb UVkmL+dCtyK/A== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4V1Ygr2HnCz9rxF; Fri, 22 Mar 2024 21:23:52 +0100 (CET) From: David Elsing In-Reply-To: <7EDE3556-4F94-467C-8064-886ABBF6D717@redscript.org> (message from Ahmad Draidi on Thu, 21 Mar 2024 05:17:03 +0400) Date: Fri, 22 Mar 2024 20:23:51 +0000 Message-ID: <86il1eyq08.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hello, Ahmad Draidi writes: > Is there a reason to keep it around and not use arcan? Perhaps it should be converted to an output for the main package instead, if > there's a good reason? I don't know what the motivation was to make a separate package with SDL1 and just looked why the build failed. The main package is built with SDL2, maybe that's the reason? Here is the original issue where arcan was added, you should probably ask them: https://issues.guix.gnu.org/34189. Best, David