From unknown Sat Jun 21 03:27:25 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#74695] [PATCH 0/1] qt-build-system: Wrap with build variables to allow %outputs in arguments Resent-From: Rutherther Original-Sender: "Debbugs-submit" Resent-CC: maxim.cournoyer@gmail.com, iyzsong@envs.net, guix-patches@gnu.org Resent-Date: Wed, 04 Dec 2024 19:14:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 74695 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 74695@debbugs.gnu.org Cc: Rutherther , Maxim Cournoyer , =?UTF-8?Q?=C3=A5=C2=AE=C2=8B=C3=A6=C2=96=C2=87=C3=A6=C2=AD=C2=A6?= X-Debbugs-Original-To: guix-patches@gnu.org X-Debbugs-Original-Xcc: Maxim Cournoyer , =?UTF-8?Q?=C3=A5=C2=AE=C2=8B=C3=A6=C2=96=C2=87=C3=A6=C2=AD=C2=A6?= Received: via spool by submit@debbugs.gnu.org id=B.17333396248343 (code B ref -1); Wed, 04 Dec 2024 19:14:01 +0000 Received: (at submit) by debbugs.gnu.org; 4 Dec 2024 19:13:44 +0000 Received: from localhost ([127.0.0.1]:36888 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tIuoh-0002AV-TQ for submit@debbugs.gnu.org; Wed, 04 Dec 2024 14:13:44 -0500 Received: from lists.gnu.org ([209.51.188.17]:59356) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tIuof-0002AJ-V6 for submit@debbugs.gnu.org; Wed, 04 Dec 2024 14:13:42 -0500 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 1tIuoc-0006c1-06 for guix-patches@gnu.org; Wed, 04 Dec 2024 14:13:38 -0500 Received: from ditigal.xyz ([2a01:4f8:1c1b:6a1c::] helo=mail.ditigal.xyz) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1tIuoZ-0006EO-QL for guix-patches@gnu.org; Wed, 04 Dec 2024 14:13:37 -0500 Received: by cerebrum (OpenSMTPD) with ESMTPSA id 7e64a2e6 (TLSv1.3:TLS_CHACHA20_POLY1305_SHA256:256:NO); Wed, 4 Dec 2024 19:13:30 +0000 (UTC) From: Rutherther Date: Wed, 4 Dec 2024 20:13:27 +0100 Message-ID: X-Mailer: git-send-email 2.46.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ditigal.xyz; i=@ditigal.xyz; q=dns/txt; s=20240917; t=1733339610; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : from; bh=mPY3TwIbkF9b1G8YmrgFaTaO79WsMkRpl1OmUCRqO+w=; b=e0QgEK31bQ36qDc0ePVHW3aArthgPW3mMBcdV8gOc+jxelG7UhP19w0HdCL2as/dhtHXE Vm9vLccJUO8vLONzgMSn1wvFftFt6W+kRMMCaoIV8kErXf5eIjxfkLeQJMmJE178SYoZ0HV R3NqkQY/C4k4rtjkyocs6jNCo4oTi6g= Received-SPF: pass client-ip=2a01:4f8:1c1b:6a1c::; envelope-from=rutherther@ditigal.xyz; helo=mail.ditigal.xyz X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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.4 (--) It is impossible to refer to %outputs in arguments like #:configure-flags (ie. `(assoc-ref %outputs "out")` leads to unbound-variable %outputs). I think the issue is in qt using different system than build systems such as cmake or gnu. Since I am unsure about the reason for qt not having the same structure, I am submitting this to guix devel for discussion, as well as opening a patch in case this is fine to be merged. If not, could someone please explain what the reason behind not adding inputs and outputs is, and what is the alternative? Regards, Rutherther Rutherther (1): guix: qt: add inputs and outputs build variables in qt-build guix/build-system/qt.scm | 54 +++++++++++++++++++++------------------- 1 file changed, 28 insertions(+), 26 deletions(-) base-commit: 006679d1e6ca7acea0629b4f019c8cf89cde08be -- 2.46.0 From unknown Sat Jun 21 03:27:25 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#74695] [PATCH 1/1] guix: qt: add inputs and outputs build variables in qt-build Resent-From: Rutherther Original-Sender: "Debbugs-submit" Resent-CC: maxim.cournoyer@gmail.com, iyzsong@envs.net, guix-patches@gnu.org Resent-Date: Wed, 04 Dec 2024 19:17:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 74695 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 74695@debbugs.gnu.org Cc: Rutherther , Maxim Cournoyer , =?UTF-8?Q?=C3=A5=C2=AE=C2=8B=C3=A6=C2=96=C2=87=C3=A6=C2=AD=C2=A6?= X-Debbugs-Original-Xcc: Maxim Cournoyer , =?UTF-8?Q?=C3=A5=C2=AE=C2=8B=C3=A6=C2=96=C2=87=C3=A6=C2=AD=C2=A6?= Received: via spool by 74695-submit@debbugs.gnu.org id=B74695.17333397719057 (code B ref 74695); Wed, 04 Dec 2024 19:17:01 +0000 Received: (at 74695) by debbugs.gnu.org; 4 Dec 2024 19:16:11 +0000 Received: from localhost ([127.0.0.1]:36903 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tIur4-0002M1-LO for submit@debbugs.gnu.org; Wed, 04 Dec 2024 14:16:11 -0500 Received: from ditigal.xyz ([78.46.201.50]:42640 helo=mail.ditigal.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tIur3-0002Lk-0q for 74695@debbugs.gnu.org; Wed, 04 Dec 2024 14:16:09 -0500 Received: by cerebrum (OpenSMTPD) with ESMTPSA id 99c60681 (TLSv1.3:TLS_CHACHA20_POLY1305_SHA256:256:NO); Wed, 4 Dec 2024 19:16:01 +0000 (UTC) From: Rutherther Date: Wed, 4 Dec 2024 20:15:36 +0100 Message-ID: <5ca3416dfabd3dfd5643a6f656c1d02fa3f37e61.1733339135.git.rutherther@ditigal.xyz> X-Mailer: git-send-email 2.46.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ditigal.xyz; i=@ditigal.xyz; q=dns/txt; s=20240917; t=1733339761; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : from; bh=ZLSz8gNRak0o62zakjpxS3jorT/54MFcdQVLnvDjuOY=; b=NJGqHkAskSFI+XdF9iHA+CY62UoDjLU/67JNqX2+1W7Op5G2bdviuhrGOdW5mzTcyIfaw n+vDxF8jNxO6ILvwGZEjA4qpSaBvSXmdlvmVL721fNOIqQ8uDkrfXte/w9I0lmO/4+zZCv7 0bflosK8OuHdXIX7XQPl5j3Hd/kAzos= 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 (-) Qt build doesn't provide build-variables of inputs and outputs, so it's not possible to refer to %outputs in arguments of a package that uses qt-build-system. This patch unifies qt-build-system's behavior with other build systems like cmake-build-system or gnu-build-system. * guix/build-system/qt.scm (qt-build): Wrap with with-build-variables to provide variables to arguments Change-Id: I65853a5831ce7b5dc7ebe10807c6e61bb89cab36 --- guix/build-system/qt.scm | 54 +++++++++++++++++++++------------------- 1 file changed, 28 insertions(+), 26 deletions(-) diff --git a/guix/build-system/qt.scm b/guix/build-system/qt.scm index d1f721c54e..5f9a5019ae 100644 --- a/guix/build-system/qt.scm +++ b/guix/build-system/qt.scm @@ -152,32 +152,34 @@ (define* (qt-build name inputs (with-imported-modules imported-modules #~(begin (use-modules #$@(sexp->gexp modules)) - (qt-build #:source #+source - #:system #$system - #:outputs #$(outputs->gexp outputs) - #:inputs #$(input-tuples->gexp inputs) - #:search-paths '#$(sexp->gexp - (map search-path-specification->sexp - search-paths)) - #:phases #$(if (pair? phases) - (sexp->gexp phases) - phases) - #:qtbase #+qtbase - #:qt-wrap-excluded-outputs #$qt-wrap-excluded-outputs - #:qt-wrap-excluded-inputs #$qt-wrap-excluded-inputs - #:configure-flags #$configure-flags - #:make-flags #$make-flags - #:out-of-source? #$out-of-source? - #:build-type #$build-type - #:tests? #$tests? - #:test-target #$test-target - #:parallel-build? #$parallel-build? - #:parallel-tests? #$parallel-tests? - #:validate-runpath? #$validate-runpath? - #:patch-shebangs? #$patch-shebangs? - #:strip-binaries? #$strip-binaries? - #:strip-flags #$strip-flags - #:strip-directories #$strip-directories)))) + + #$(with-build-variables inputs outputs + #~(qt-build #:source #+source + #:system #$system + #:outputs %outputs + #:inputs %build-inputs + #:search-paths '#$(sexp->gexp + (map search-path-specification->sexp + search-paths)) + #:phases #$(if (pair? phases) + (sexp->gexp phases) + phases) + #:qtbase #+qtbase + #:qt-wrap-excluded-outputs #$qt-wrap-excluded-outputs + #:qt-wrap-excluded-inputs #$qt-wrap-excluded-inputs + #:configure-flags #$configure-flags + #:make-flags #$make-flags + #:out-of-source? #$out-of-source? + #:build-type #$build-type + #:tests? #$tests? + #:test-target #$test-target + #:parallel-build? #$parallel-build? + #:parallel-tests? #$parallel-tests? + #:validate-runpath? #$validate-runpath? + #:patch-shebangs? #$patch-shebangs? + #:strip-binaries? #$strip-binaries? + #:strip-flags #$strip-flags + #:strip-directories #$strip-directories))))) (mlet %store-monad ((guile (package->derivation (or guile (default-guile)) system #:graft? #f))) -- 2.46.0 From unknown Sat Jun 21 03:27:25 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: Rutherther Subject: bug#74695: closed (RE: qt-build-system: wrap build variables to allow %outputs args) Message-ID: References: X-Gnu-PR-Message: they-closed 74695 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 74695@debbugs.gnu.org Date: Tue, 08 Apr 2025 14:26:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1744122363-25222-1" This is a multi-part message in MIME format... ------------=_1744122363-25222-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #74695: [PATCH 0/1] qt-build-system: Wrap with build variables to allow %ou= tputs in arguments 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 74695@debbugs.gnu.org. --=20 74695: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D74695 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1744122363-25222-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 74695-done) by debbugs.gnu.org; 8 Apr 2025 14:25:20 +0000 Received: from localhost ([127.0.0.1]:34359 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1u29t9-0006Uy-CL for submit@debbugs.gnu.org; Tue, 08 Apr 2025 10:25:20 -0400 Received: from mailtransmit05.runbox.com ([2a0c:5a00:149::26]:51238) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1u29t3-0006Of-2N for 74695-done@debbugs.gnu.org; Tue, 08 Apr 2025 10:25:17 -0400 Received: from mailtransmit02.runbox ([10.9.9.162] helo=aibo.runbox.com) by mailtransmit05.runbox.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1u29su-00F6hW-NO for 74695-done@debbugs.gnu.org; Tue, 08 Apr 2025 16:25:04 +0200 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=futurile.net; s=selector1; h=Content-Type:MIME-Version:Message-ID:Subject: To:From:Date; bh=80E3PhrsVRr9uaDzkG22KDRjr+w/rM3SAt8h9c9ib8I=; b=YdZYpSHDdyV8 DXlM6VcrsacFlDq0PWhG9BAW+4nFTMg/XoBv9AMVRzJe4WlRzo1fVyBzjDAkQVZnvaOU6gUuW8Ddr 7l1T0erdqPOGBKOr34tZqdqIABX3bhFLUyYQhSgHHJ0DCpZ6fJPl07usntg2IqueivfyoZVdg3J7h x8nEs2G4lcjtDzJEPT08tbXk0Ed6dPmd2NC5WCLQNgsfuBPf7sLQWL+j+FkwYMJbEfl3RxMi+tfcE 23ASaWtA6bi3Ko1yhHrXf/5rOY8po8SlzoaPok4b6aXzGbEcrCYhyEHjyWU6n+mRkFi2SAwpngz61 AJq4bMfqhA1xcbj9UgtRPA==; Received: from [10.9.9.72] (helo=submission01.runbox) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1u29st-00007R-EY for 74695-done@debbugs.gnu.org; Tue, 08 Apr 2025 16:25:03 +0200 Received: by submission01.runbox with esmtpsa [Authenticated ID (641962)] (TLS1.2:ECDHE_SECP256R1__RSA_SHA256__AES_256_GCM:256) (Exim 4.93) id 1u29sb-00EeVG-3y for 74695-done@debbugs.gnu.org; Tue, 08 Apr 2025 16:24:45 +0200 Date: Tue, 8 Apr 2025 15:24:43 +0100 From: Steve George To: 74695-done@debbugs.gnu.org Subject: RE: qt-build-system: wrap build variables to allow %outputs args Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 74695-done 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.7 (-) Hi, As discussed at https://lists.gnu.org/archive/html/guix-devel/2024-12/msg00124.html The eventual goal is to use Gexp's for everything, everywhere! So closing, please re-open if you think it's a mistake. Futurile / Steve ------------=_1744122363-25222-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 4 Dec 2024 19:13:44 +0000 Received: from localhost ([127.0.0.1]:36888 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tIuoh-0002AV-TQ for submit@debbugs.gnu.org; Wed, 04 Dec 2024 14:13:44 -0500 Received: from lists.gnu.org ([209.51.188.17]:59356) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tIuof-0002AJ-V6 for submit@debbugs.gnu.org; Wed, 04 Dec 2024 14:13:42 -0500 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 1tIuoc-0006c1-06 for guix-patches@gnu.org; Wed, 04 Dec 2024 14:13:38 -0500 Received: from ditigal.xyz ([2a01:4f8:1c1b:6a1c::] helo=mail.ditigal.xyz) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1tIuoZ-0006EO-QL for guix-patches@gnu.org; Wed, 04 Dec 2024 14:13:37 -0500 Received: by cerebrum (OpenSMTPD) with ESMTPSA id 7e64a2e6 (TLSv1.3:TLS_CHACHA20_POLY1305_SHA256:256:NO); Wed, 4 Dec 2024 19:13:30 +0000 (UTC) From: Rutherther To: guix-patches@gnu.org Subject: [PATCH 0/1] qt-build-system: Wrap with build variables to allow %outputs in arguments Date: Wed, 4 Dec 2024 20:13:27 +0100 Message-ID: X-Mailer: git-send-email 2.46.0 MIME-Version: 1.0 X-Debbugs-CC: guix-devel@gnu.org X-Debbugs-Cc: =?utf-8?b?TWF4aW0gQ291cm5veWVyIDxtYXhpbS5jb3Vybm95ZXJAZ21haWwuY29tPiwgw6XCrsKLw6bClsKHw6bCrcKmIDxpeXpzb25nQGVudnMubmV0Pg==?= Content-Transfer-Encoding: 8bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ditigal.xyz; i=@ditigal.xyz; q=dns/txt; s=20240917; t=1733339610; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : from; bh=mPY3TwIbkF9b1G8YmrgFaTaO79WsMkRpl1OmUCRqO+w=; b=e0QgEK31bQ36qDc0ePVHW3aArthgPW3mMBcdV8gOc+jxelG7UhP19w0HdCL2as/dhtHXE Vm9vLccJUO8vLONzgMSn1wvFftFt6W+kRMMCaoIV8kErXf5eIjxfkLeQJMmJE178SYoZ0HV R3NqkQY/C4k4rtjkyocs6jNCo4oTi6g= Received-SPF: pass client-ip=2a01:4f8:1c1b:6a1c::; envelope-from=rutherther@ditigal.xyz; helo=mail.ditigal.xyz X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Rutherther 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.4 (--) It is impossible to refer to %outputs in arguments like #:configure-flags (ie. `(assoc-ref %outputs "out")` leads to unbound-variable %outputs). I think the issue is in qt using different system than build systems such as cmake or gnu. Since I am unsure about the reason for qt not having the same structure, I am submitting this to guix devel for discussion, as well as opening a patch in case this is fine to be merged. If not, could someone please explain what the reason behind not adding inputs and outputs is, and what is the alternative? Regards, Rutherther Rutherther (1): guix: qt: add inputs and outputs build variables in qt-build guix/build-system/qt.scm | 54 +++++++++++++++++++++------------------- 1 file changed, 28 insertions(+), 26 deletions(-) base-commit: 006679d1e6ca7acea0629b4f019c8cf89cde08be -- 2.46.0 ------------=_1744122363-25222-1-- From unknown Sat Jun 21 03:27:25 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#74695] closed (RE: qt-build-system: wrap build variables to allow %outputs args) Resent-From: Rutherther Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 08 Apr 2025 16:54:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 74695 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 74695@debbugs.gnu.org Cc: Steve George Received: via spool by 74695-submit@debbugs.gnu.org id=B74695.17441311893270 (code B ref 74695); Tue, 08 Apr 2025 16:54:01 +0000 Received: (at 74695) by debbugs.gnu.org; 8 Apr 2025 16:53:09 +0000 Received: from localhost ([127.0.0.1]:35125 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1u2CCC-0000qd-5v for submit@debbugs.gnu.org; Tue, 08 Apr 2025 12:53:08 -0400 Received: from ditigal.xyz ([2a01:4f8:1c1b:6a1c::]:37908 helo=mail.ditigal.xyz) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1u2CC8-0000pE-SE for 74695@debbugs.gnu.org; Tue, 08 Apr 2025 12:53:05 -0400 Received: by cerebrum (OpenSMTPD) with ESMTPSA id af43d7f4 (TLSv1.3:TLS_CHACHA20_POLY1305_SHA256:256:NO); Tue, 8 Apr 2025 16:52:54 +0000 (UTC) From: Rutherther In-Reply-To: References: Date: Tue, 08 Apr 2025 18:52:53 +0200 Message-ID: <87zfgqr3x6.fsf@ditigal.xyz> MIME-Version: 1.0 Content-Type: text/plain DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ditigal.xyz; i=@ditigal.xyz; q=dns/txt; s=20240917; t=1744131174; h=from : to : cc : subject : in-reply-to : references : date : message-id : mime-version : content-type : from; bh=XSpFCcUOPrVTFx/g3iIdNZ6WE7tFMpzdyXUGuvGXurI=; b=KP5x+disw+ecIaHdI9SY/ZbvMy3cOee10lguGc6JhBBtMtdHlFoBNNtWR0ctcwUOv9Jy+ KhtXFiwcfMFv/cGs6Lhu5mEnb1wWmKyTjDE/TmJ4n6kxyR5pv4OacoQdzECq6fadIhI8iq1 zENr9NkhjEnI2cbESP63+7zLg15ppcE= X-Spam-Score: 0.5 (/) 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: 0.5 (/) Hello, > > Hi, > > As discussed at https://lists.gnu.org/archive/html/guix-devel/2024-12/msg00124.html > > The eventual goal is to use Gexp's for everything, everywhere! So closing, please re-open if you think it's a mistake. Thanks, Steve, and sorry, I forgot to close this myself. Regards, Rutherther