From unknown Tue Aug 19 02:56:34 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31942] [PATCH] pack: Fix guix pack -f docker. Resent-From: Christopher Baines Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 22 Jun 2018 21:47:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 31942 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 31942@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.152970401217357 (code B ref -1); Fri, 22 Jun 2018 21:47:01 +0000 Received: (at submit) by debbugs.gnu.org; 22 Jun 2018 21:46:52 +0000 Received: from localhost ([127.0.0.1]:60641 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fWTtL-0004Vt-OV for submit@debbugs.gnu.org; Fri, 22 Jun 2018 17:46:51 -0400 Received: from eggs.gnu.org ([208.118.235.92]:48408) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fWTtK-0004Ve-8T for submit@debbugs.gnu.org; Fri, 22 Jun 2018 17:46:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fWTtE-0002gr-9U for submit@debbugs.gnu.org; Fri, 22 Jun 2018 17:46:45 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=BAYES_20,UNPARSEABLE_RELAY autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:47118) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fWTtE-0002gh-6o for submit@debbugs.gnu.org; Fri, 22 Jun 2018 17:46:44 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39379) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fWTtD-0005Zo-7a for guix-patches@gnu.org; Fri, 22 Jun 2018 17:46:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fWTt9-0002cI-QU for guix-patches@gnu.org; Fri, 22 Jun 2018 17:46:42 -0400 Received: from mira.cbaines.net ([2a01:7e00::f03c:91ff:fe69:8da9]:53652) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fWTt9-0002bX-K0 for guix-patches@gnu.org; Fri, 22 Jun 2018 17:46:39 -0400 Received: by mira.cbaines.net (Postfix, from userid 113) id E6749164F2; Fri, 22 Jun 2018 22:46:37 +0100 (BST) Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id C0CF0164EE for ; Fri, 22 Jun 2018 22:46:37 +0100 (BST) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id d6e3729c for ; Fri, 22 Jun 2018 21:46:37 +0000 (UTC) From: Christopher Baines Date: Fri, 22 Jun 2018 22:46:37 +0100 Message-Id: <20180622214637.23683-1-mail@cbaines.net> X-Mailer: git-send-email 2.17.1 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.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: -5.0 (-----) Without this change, running guix pack fails as (guix sets) is missing when compiling (guix build store-copy). * guix/scripts/pack.scm (docker-image): Move (guix build store-copy) to within the source-module-closure call. --- guix/scripts/pack.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guix/scripts/pack.scm b/guix/scripts/pack.scm index ed876b259..443d199be 100644 --- a/guix/scripts/pack.scm +++ b/guix/scripts/pack.scm @@ -364,9 +364,9 @@ the image." (define build ;; Guile-JSON is required by (guix docker). (with-extensions (list json) - (with-imported-modules `(,@(source-module-closure '((guix docker)) + (with-imported-modules `(,@(source-module-closure '((guix docker) + (guix build store-copy)) #:select? not-config?) - (guix build store-copy) ((guix config) => ,config)) #~(begin (use-modules (guix docker) (srfi srfi-19) (guix build store-copy)) -- 2.17.1 From unknown Tue Aug 19 02:56:34 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31942] [PATCH] pack: Fix guix pack -f docker. Resent-From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 23 Jun 2018 22:01:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31942 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Christopher Baines Cc: 31942@debbugs.gnu.org Received: via spool by 31942-submit@debbugs.gnu.org id=B31942.15297912132183 (code B ref 31942); Sat, 23 Jun 2018 22:01:01 +0000 Received: (at 31942) by debbugs.gnu.org; 23 Jun 2018 22:00:13 +0000 Received: from localhost ([127.0.0.1]:33497 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fWqZp-0000Z9-6g for submit@debbugs.gnu.org; Sat, 23 Jun 2018 18:00:13 -0400 Received: from eggs.gnu.org ([208.118.235.92]:50573) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fWqZn-0000Y6-DX for 31942@debbugs.gnu.org; Sat, 23 Jun 2018 18:00:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fWqZh-00042B-Na for 31942@debbugs.gnu.org; Sat, 23 Jun 2018 18:00:06 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:47073) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fWqZh-000427-K7; Sat, 23 Jun 2018 18:00:05 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=53110 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1fWqZg-000306-QZ; Sat, 23 Jun 2018 18:00:05 -0400 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20180622214637.23683-1-mail@cbaines.net> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 5 Messidor an 226 de la =?UTF-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Sun, 24 Jun 2018 00:00:03 +0200 In-Reply-To: <20180622214637.23683-1-mail@cbaines.net> (Christopher Baines's message of "Fri, 22 Jun 2018 22:46:37 +0100") Message-ID: <87a7rlw4d8.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.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: -6.0 (------) Hi Chris! Christopher Baines skribis: > Without this change, running guix pack fails as (guix sets) is missing wh= en > compiling (guix build store-copy). > > * guix/scripts/pack.scm (docker-image): Move (guix build store-copy) to w= ithin > the source-module-closure call. Good catch, got for it! Thanks, Ludo=E2=80=99. From unknown Tue Aug 19 02:56:34 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: Christopher Baines Subject: bug#31942: closed (Re: [bug#31942] [PATCH] pack: Fix guix pack -f docker.) Message-ID: References: <87zhzkr3oh.fsf@cbaines.net> <20180622214637.23683-1-mail@cbaines.net> X-Gnu-PR-Message: they-closed 31942 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 31942@debbugs.gnu.org Date: Sun, 24 Jun 2018 08:27:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1529828822-10666-1" This is a multi-part message in MIME format... ------------=_1529828822-10666-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #31942: [PATCH] pack: Fix guix pack -f docker. 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 31942@debbugs.gnu.org. --=20 31942: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D31942 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1529828822-10666-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 31942-done) by debbugs.gnu.org; 24 Jun 2018 08:26:12 +0000 Received: from localhost ([127.0.0.1]:33632 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fX0La-0002ku-RE for submit@debbugs.gnu.org; Sun, 24 Jun 2018 04:26:12 -0400 Received: from li622-129.members.linode.com ([212.71.249.129]:38358 helo=mira.cbaines.net) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fX0LY-0002kk-5z for 31942-done@debbugs.gnu.org; Sun, 24 Jun 2018 04:26:08 -0400 Received: by mira.cbaines.net (Postfix, from userid 113) id 73B9F16429; Sun, 24 Jun 2018 09:26:07 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id 218D5163D0; Sun, 24 Jun 2018 09:26:07 +0100 (BST) Received: from giedi (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id fc457c2a; Sun, 24 Jun 2018 08:26:06 +0000 (UTC) References: <20180622214637.23683-1-mail@cbaines.net> <87a7rlw4d8.fsf@gnu.org> User-agent: mu4e 1.0; emacs 26.1 From: Christopher Baines To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#31942] [PATCH] pack: Fix guix pack -f docker. In-reply-to: <87a7rlw4d8.fsf@gnu.org> Date: Sun, 24 Jun 2018 09:26:06 +0100 Message-ID: <87zhzkr3oh.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 31942-done Cc: 31942-done@debbugs.gnu.org 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 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Ludovic Court=C3=A8s writes: > Hi Chris! > > Christopher Baines skribis: > >> Without this change, running guix pack fails as (guix sets) is missing w= hen >> compiling (guix build store-copy). >> >> * guix/scripts/pack.scm (docker-image): Move (guix build store-copy) to = within >> the source-module-closure call. > > Good catch, got for it! Great, I've pushed this now. Note that the squashfs format looks to be similarly broken, but not quite as simple to fix. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAEBCgB9FiEEPonu50WOcg2XVOCyXiijOwuE9XcFAlsvVZ5fFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcACgkQXiijOwuE 9Xc39RAAsh/Iof+cVUnIymAHaLYEqpjUgTWI9hx5+84yip+tEm9lCTwXh76Xms5P 8HgvgoQNna1+UEAXUhG8O4fgD+yUxd+ryJcewputKvvzetwqzR7lqpA6YvUkmHkR cA/JxUIlTBVGqcs8iuy4AW0+K7C7smVKEzEWqmVkrIn65Dw6lcOzI7HsEMPoaX1N ZPOih8+6LzjZFZ7tqdXXBkBS8HyZ6eOTqEzE66pecC021VB3nWVpQ0q7yyngDwyG qOpKSXBG9pahojnBLc0sbuVbX6uF7Gp2EICpqDY26CObIozQp3z113h8vXPPdTA1 +QIMb3QAvQERAjQ5M1BG0CJ7W175MVqIDFYBUKMT4S62lhcFH8hIqa+MJUvUS+CB Zo/qc1y67cmTgKIJDSUqfkgVToJKVIrgQ9ztNH3L3bkk79XXU0P7X3rvYyWdOtX/ dAlTmcLLJWCXengoT06d1fA96dio9HThELqZecRHQFImdx7d3FK3cPTfESm4LPkZ cUPHcx6UYsDJb/S6gkDXWU03DpYA1rC9j9SMDfczm1MT3on/SSfXVSf0roZApCRR nEbq/iAAg2EoPBu3ViXknJjkoGCUbFz5ggQ3NJ84m46msn3OtT1cdRuBMvelExRz iEIFxx+vOw60wPdvxX/QDNo5QDJW+NsAMrnqCO7rxabYfDzUxeY= =v1pU -----END PGP SIGNATURE----- --=-=-=-- ------------=_1529828822-10666-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 22 Jun 2018 21:46:52 +0000 Received: from localhost ([127.0.0.1]:60641 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fWTtL-0004Vt-OV for submit@debbugs.gnu.org; Fri, 22 Jun 2018 17:46:51 -0400 Received: from eggs.gnu.org ([208.118.235.92]:48408) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fWTtK-0004Ve-8T for submit@debbugs.gnu.org; Fri, 22 Jun 2018 17:46:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fWTtE-0002gr-9U for submit@debbugs.gnu.org; Fri, 22 Jun 2018 17:46:45 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=BAYES_20,UNPARSEABLE_RELAY autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:47118) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fWTtE-0002gh-6o for submit@debbugs.gnu.org; Fri, 22 Jun 2018 17:46:44 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39379) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fWTtD-0005Zo-7a for guix-patches@gnu.org; Fri, 22 Jun 2018 17:46:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fWTt9-0002cI-QU for guix-patches@gnu.org; Fri, 22 Jun 2018 17:46:42 -0400 Received: from mira.cbaines.net ([2a01:7e00::f03c:91ff:fe69:8da9]:53652) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fWTt9-0002bX-K0 for guix-patches@gnu.org; Fri, 22 Jun 2018 17:46:39 -0400 Received: by mira.cbaines.net (Postfix, from userid 113) id E6749164F2; Fri, 22 Jun 2018 22:46:37 +0100 (BST) Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id C0CF0164EE for ; Fri, 22 Jun 2018 22:46:37 +0100 (BST) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id d6e3729c for ; Fri, 22 Jun 2018 21:46:37 +0000 (UTC) From: Christopher Baines To: guix-patches@gnu.org Subject: [PATCH] pack: Fix guix pack -f docker. Date: Fri, 22 Jun 2018 22:46:37 +0100 Message-Id: <20180622214637.23683-1-mail@cbaines.net> X-Mailer: git-send-email 2.17.1 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit 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: -5.0 (-----) Without this change, running guix pack fails as (guix sets) is missing when compiling (guix build store-copy). * guix/scripts/pack.scm (docker-image): Move (guix build store-copy) to within the source-module-closure call. --- guix/scripts/pack.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guix/scripts/pack.scm b/guix/scripts/pack.scm index ed876b259..443d199be 100644 --- a/guix/scripts/pack.scm +++ b/guix/scripts/pack.scm @@ -364,9 +364,9 @@ the image." (define build ;; Guile-JSON is required by (guix docker). (with-extensions (list json) - (with-imported-modules `(,@(source-module-closure '((guix docker)) + (with-imported-modules `(,@(source-module-closure '((guix docker) + (guix build store-copy)) #:select? not-config?) - (guix build store-copy) ((guix config) => ,config)) #~(begin (use-modules (guix docker) (srfi srfi-19) (guix build store-copy)) -- 2.17.1 ------------=_1529828822-10666-1-- From unknown Tue Aug 19 02:56:34 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#31942] [PATCH] pack: Fix guix pack -f docker. Resent-From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 25 Jun 2018 21:37:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 31942 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Christopher Baines Cc: 31942-done@debbugs.gnu.org Received: via spool by 31942-done@debbugs.gnu.org id=D31942.152996261532147 (code D ref 31942); Mon, 25 Jun 2018 21:37:01 +0000 Received: (at 31942-done) by debbugs.gnu.org; 25 Jun 2018 21:36:55 +0000 Received: from localhost ([127.0.0.1]:35383 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fXZAN-0008MQ-8U for submit@debbugs.gnu.org; Mon, 25 Jun 2018 17:36:55 -0400 Received: from eggs.gnu.org ([208.118.235.92]:56437) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fXZAL-0008MF-S4 for 31942-done@debbugs.gnu.org; Mon, 25 Jun 2018 17:36:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fXZAF-0000v5-RL for 31942-done@debbugs.gnu.org; Mon, 25 Jun 2018 17:36:48 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:46978) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fXZAF-0000uw-N4; Mon, 25 Jun 2018 17:36:47 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=56986 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1fXZAF-0007Gy-Az; Mon, 25 Jun 2018 17:36:47 -0400 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20180622214637.23683-1-mail@cbaines.net> <87a7rlw4d8.fsf@gnu.org> <87zhzkr3oh.fsf@cbaines.net> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 7 Messidor an 226 de la =?UTF-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Mon, 25 Jun 2018 23:36:45 +0200 In-Reply-To: <87zhzkr3oh.fsf@cbaines.net> (Christopher Baines's message of "Sun, 24 Jun 2018 09:26:06 +0100") Message-ID: <87woumpmz6.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.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: -6.0 (------) Christopher Baines skribis: > Ludovic Court=C3=A8s writes: > >> Hi Chris! >> >> Christopher Baines skribis: >> >>> Without this change, running guix pack fails as (guix sets) is missing = when >>> compiling (guix build store-copy). >>> >>> * guix/scripts/pack.scm (docker-image): Move (guix build store-copy) to= within >>> the source-module-closure call. >> >> Good catch, got for it! > > Great, I've pushed this now. > > Note that the squashfs format looks to be similarly broken, but not > quite as simple to fix. Fixed in 66e9944e078cbb9e0d618377dd6df6e639640efa. Thanks for the heads-up! Ludo'.