From unknown Mon Aug 18 19:29:28 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#56612] [PATCH] guix install: Add '--manifest' option. Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 17 Jul 2022 10:21:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 56612 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 56612@debbugs.gnu.org Cc: Ludovic =?UTF-8?Q?Court=C3=A8s?= X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16580532462296 (code B ref -1); Sun, 17 Jul 2022 10:21:01 +0000 Received: (at submit) by debbugs.gnu.org; 17 Jul 2022 10:20:46 +0000 Received: from localhost ([127.0.0.1]:46777 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oD1OH-0000ax-Q9 for submit@debbugs.gnu.org; Sun, 17 Jul 2022 06:20:46 -0400 Received: from lists.gnu.org ([209.51.188.17]:44570) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oD1OG-0000aq-Fr for submit@debbugs.gnu.org; Sun, 17 Jul 2022 06:20:44 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:35448) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oD1OG-0005gE-Ai for guix-patches@gnu.org; Sun, 17 Jul 2022 06:20:44 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:44068) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oD1OF-0003ns-Af; Sun, 17 Jul 2022 06:20:43 -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:Subject:To:From:in-reply-to: references; bh=w3fC0/ATU6fZw3dm/eqojhXMzwkD4zq9PbC2KmKvse4=; b=scEX3PiTWsoy2p trHrsm92GKhzkt3OFcVt3+eli3V0j15C0SIThyK6bPDdT+F42PrR1B95DfsO9mYc+lX5xifm+Aby9 n+YqbISZuIeW2jNmKNHesrcHQEqJXrrWZSvUmmlp7oRavMcgZxSqyX+yKLVpGVtmDvQiIJLIIEQ/s DTSJyhFTv0KSM3IUgOa1iy6awyuhzi84jIr0tmQX9kDWuHmYfNiOUz6QAvqat1O+NB3BY2xqFv+th GTcGTvpvhNQOmZ2WZR0z+YdVYw8ZJdXewTvPKtgd8nnEmNZBx+zvMWAY77ijlRthC+WXK7Zo40m9P WE1uma9wbfNH1Mllg/TA==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:51886 helo=gnu.org) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1oD1OE-0003Yk-Pq; Sun, 17 Jul 2022 06:20:42 -0400 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Date: Sun, 17 Jul 2022 12:20:35 +0200 Message-Id: <20220717102035.9150-1-ludo@gnu.org> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 (---) * guix/scripts/install.scm (show-help, %options): Add "--manifest". * tests/guix-package-aliases.sh" Test "guix install -m". --- guix/scripts/install.scm | 8 ++++++-- tests/guix-package-aliases.sh | 16 +++++++++++++--- 2 files changed, 19 insertions(+), 5 deletions(-) Hi! I think it’s convenient and quite natural to be able to type: guix install -m manifest.scm Hence this patch. Objections? :-) Thanks, Ludo’. diff --git a/guix/scripts/install.scm b/guix/scripts/install.scm index 63e625f266..0d24d7c956 100644 --- a/guix/scripts/install.scm +++ b/guix/scripts/install.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2019, 2020 Ludovic Courtès +;;; Copyright © 2019, 2020, 2022 Ludovic Courtès ;;; ;;; This file is part of GNU Guix. ;;; @@ -33,6 +33,9 @@ (define (show-help) This is an alias for 'guix package -i'.\n")) (display (G_ " -p, --profile=PROFILE use PROFILE instead of the user's default profile")) + (display (G_ " + -m, --manifest=FILE create a new profile generation with the manifest + from FILE")) ;; '--bootstrap' not shown here. (display (G_ " -v, --verbosity=LEVEL use the given verbosity LEVEL")) @@ -61,7 +64,8 @@ (define %options ;; Preserve some of the 'guix package' options. (append (filter (lambda (option) (any (cut member <> (option-names option)) - '("profile" "dry-run" "verbosity" "bootstrap"))) + '("profile" "dry-run" "verbosity" "bootstrap" + "manifest"))) %package-options) %transformation-options diff --git a/tests/guix-package-aliases.sh b/tests/guix-package-aliases.sh index 311838b768..99cb9176cd 100644 --- a/tests/guix-package-aliases.sh +++ b/tests/guix-package-aliases.sh @@ -1,5 +1,5 @@ # GNU Guix --- Functional package management for GNU -# Copyright © 2019, 2020 Ludovic Courtès +# Copyright © 2019, 2020, 2022 Ludovic Courtès # # This file is part of GNU Guix. # @@ -28,9 +28,10 @@ readlink_base () } profile="t-profile-$$" -rm -f "$profile" +manifest="t-manifest-$$" +rm -f "$profile" "$manifest" -trap 'rm -f "$profile" "$profile-"[0-9]*' EXIT +trap 'rm -f "$profile" "$profile-"[0-9]* "$manifest"' EXIT guix install --bootstrap guile-bootstrap -p "$profile" test -x "$profile/bin/guile" @@ -55,6 +56,15 @@ guix remove --bootstrap guile-bootstrap -p "$profile" ! test -x "$profile/bin/guile" test `guix package -p "$profile" -I | wc -l` -eq 0 +# Installing from a manifest. +cat > "$manifest" <manifest '("guile-bootstrap")) +EOF +guix install -p "$profile" -m "$manifest" --bootstrap +test -x "$profile/bin/guile" +guix remove --bootstrap guile-bootstrap -p "$profile" +! test -x "$profile/bin/guile" + ! guix remove -p "$profile" this-is-not-installed --bootstrap ! guix remove -i guile-bootstrap -p "$profile" --bootstrap -- 2.36.1 From unknown Mon Aug 18 19:29:28 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#56612] [PATCH] guix install: Add '--manifest' option. Resent-From: Liliana Marie Prikler Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 19 Jul 2022 10:02:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 56612 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Ludovic =?UTF-8?Q?Court=C3=A8s?= , 56612@debbugs.gnu.org Received: via spool by 56612-submit@debbugs.gnu.org id=B56612.165822487119727 (code B ref 56612); Tue, 19 Jul 2022 10:02:01 +0000 Received: (at 56612) by debbugs.gnu.org; 19 Jul 2022 10:01:11 +0000 Received: from localhost ([127.0.0.1]:52950 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oDk2Q-000587-So for submit@debbugs.gnu.org; Tue, 19 Jul 2022 06:01:11 -0400 Received: from mailrelay.tugraz.at ([129.27.2.202]:64459) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oDk2O-00057y-Bx for 56612@debbugs.gnu.org; Tue, 19 Jul 2022 06:01:10 -0400 Received: from lprikler-laptop.ist.intra (gw.ist.tugraz.at [129.27.202.101]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 4LnDqj5FMSz1LZX0; Tue, 19 Jul 2022 12:01:05 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 mailrelay.tugraz.at 4LnDqj5FMSz1LZX0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tugraz.at; s=mailrelay; t=1658224865; bh=Rau2sHUSZRzzCg9hIzOL8YFr+0qksjx4JOyu7ELXSAI=; h=Subject:From:To:Date:In-Reply-To:References:From; b=OQNJ2MOhS3uH5x+BSZ1oSKY/V02wDphcfVD0JF0EWlh0Rn/Cs9vjpUy+j9j1HWhWf U6qrolBUGMVU5TiQN022hCMG0v6Q5dV1hXpT+fD2Nkd/6FLUpU6bAfIQS9e3j3J+BT QyjouVmSKROE3UGTOuA8TBs+Jj92GUlsLjwClymw= Message-ID: From: Liliana Marie Prikler Date: Tue, 19 Jul 2022 12:01:04 +0200 In-Reply-To: <20220717102035.9150-1-ludo@gnu.org> References: <20220717102035.9150-1-ludo@gnu.org> Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.42.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-TUG-Backscatter-control: waObeELIUl4ypBWmcn/8wQ X-Spam-Scanner: SpamAssassin 3.003001 X-Spam-Score-relay: -0.4 X-Scanned-By: MIMEDefang 2.74 on 129.27.10.116 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 (---) Am Sonntag, dem 17.07.2022 um 12:20 +0200 schrieb Ludovic Courtès: > * guix/scripts/install.scm (show-help, %options): Add "--manifest". > * tests/guix-package-aliases.sh" Test "guix install -m". > --- >  guix/scripts/install.scm      |  8 ++++++-- >  tests/guix-package-aliases.sh | 16 +++++++++++++--- >  2 files changed, 19 insertions(+), 5 deletions(-) > > Hi! > > I think it’s convenient and quite natural to be able to type: > >   guix install -m manifest.scm > > Hence this patch.  Objections?  :-) I think the semantics of `guix install -m' are somewhat unclear. It can mean both "add all of manifest to what I already have installed" and "use manifest exactly as the manifest". The latter is equivalent to `guix package -m' (which has clearer semantics here) and also the implementation chosen IIUC. Personally, I don't think I'd want "install" to remove packages. Cheers From unknown Mon Aug 18 19:29:28 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#56612] [PATCH] guix install: Add '--manifest' option. Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 21 Jul 2022 09:11:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 56612 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Liliana Marie Prikler Cc: 56612@debbugs.gnu.org Received: via spool by 56612-submit@debbugs.gnu.org id=B56612.16583946054530 (code B ref 56612); Thu, 21 Jul 2022 09:11:01 +0000 Received: (at 56612) by debbugs.gnu.org; 21 Jul 2022 09:10:05 +0000 Received: from localhost ([127.0.0.1]:36714 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oESC5-0001B0-1w for submit@debbugs.gnu.org; Thu, 21 Jul 2022 05:10:05 -0400 Received: from eggs.gnu.org ([209.51.188.92]:40978) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oESC3-0001AO-GG for 56612@debbugs.gnu.org; Thu, 21 Jul 2022 05:10:04 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:48604) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oESBw-0004CG-88; Thu, 21 Jul 2022 05:09:56 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=MJAh+5Zo9DBRfXQSSDlEapwnCcLwDBLp6YaBRjr75xM=; b=shuVRF9ZyP78NZCk0MnL 2jv48jdirhv0AweRI8vHK3wpoiyLK8/P0y451QKHr07LUXsMuLIzuY7rLFmSLEmCeRiN8wYqZrMjj 3DCGQhyLZZIiizXozvPQMoxnBM+KJ0j6O7rqBxQI1NfxMSRKBzmKpWaqVk1XmNEghQynrknWjELU1 HbO4brxaD+jUdtkPlcaUnsdlA/Lo6QH31zQURrSFN1glzMNMzuWNowLFtFW/lQyEJ5PeV3IjMXrHs xCjeOZCazsRBBPEmCpQ/42Lxzrs3yx2ahlcFgtZ8M1CYXH7SPvSArQwNvw8TOENhMUemyJhDyMQCO ygXTgny4NpxfIQ==; Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=40962 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oESBv-0002IM-RT; Thu, 21 Jul 2022 05:09:56 -0400 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20220717102035.9150-1-ludo@gnu.org> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: Tridi 3 Thermidor an 230 de la =?UTF-8?Q?R=C3=A9volution,?= jour du Melon 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: Thu, 21 Jul 2022 11:09:54 +0200 In-Reply-To: (Liliana Marie Prikler's message of "Tue, 19 Jul 2022 12:01:04 +0200") Message-ID: <87r12en865.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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 (---) Hi, Liliana Marie Prikler skribis: > Am Sonntag, dem 17.07.2022 um 12:20 +0200 schrieb Ludovic Court=C3=A8s: >> * guix/scripts/install.scm (show-help, %options): Add "--manifest". >> * tests/guix-package-aliases.sh" Test "guix install -m". >> --- >> =C2=A0guix/scripts/install.scm=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 |=C2=A0 8 += +++++-- >> =C2=A0tests/guix-package-aliases.sh | 16 +++++++++++++--- >> =C2=A02 files changed, 19 insertions(+), 5 deletions(-) >>=20 >> Hi! >>=20 >> I think it=E2=80=99s convenient and quite natural to be able to type: >>=20 >> =C2=A0 guix install -m manifest.scm >>=20 >> Hence this patch.=C2=A0 Objections?=C2=A0 :-) > I think the semantics of `guix install -m' are somewhat unclear. It > can mean both "add all of manifest to what I already have installed" > and "use manifest exactly as the manifest". The latter is equivalent > to `guix package -m' (which has clearer semantics here) and also the > implementation chosen IIUC. Personally, I don't think I'd want > "install" to remove packages. Right. To me, =E2=80=98-m=E2=80=99 is always declarative: you get what the= manifest prescribes, nothing else; this is how it=E2=80=99s currently documented. Do you think it could be interpreted as =E2=80=9Cadd all of manifest to wha= t I already have installed=E2=80=9D? Ludo=E2=80=99. From unknown Mon Aug 18 19:29:28 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#56612] [PATCH] guix install: Add '--manifest' option. Resent-From: Tobias Geerinckx-Rice Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 21 Jul 2022 10:40:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 56612 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: liliana.prikler@ist.tugraz.at, 56612@debbugs.gnu.org X-Debbugs-Original-Cc: Liliana Marie Prikler , guix-patches@gnu.org, 56612@debbugs.gnu.org Received: via spool by submit@debbugs.gnu.org id=B.165839995914348 (code B ref -1); Thu, 21 Jul 2022 10:40:01 +0000 Received: (at submit) by debbugs.gnu.org; 21 Jul 2022 10:39:19 +0000 Received: from localhost ([127.0.0.1]:36771 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oETaQ-0003jL-Mk for submit@debbugs.gnu.org; Thu, 21 Jul 2022 06:39:19 -0400 Received: from lists.gnu.org ([209.51.188.17]:57134) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oETaL-0003j9-TZ for submit@debbugs.gnu.org; Thu, 21 Jul 2022 06:39:14 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:42266) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oETaL-0007pE-Km for guix-patches@gnu.org; Thu, 21 Jul 2022 06:39:13 -0400 Received: from tobias.gr ([2a02:c205:2020:6054::1]:47282) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oETaJ-0001qX-Uk; Thu, 21 Jul 2022 06:39:13 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=7RT8vlu7srYAI 7wxApnufIm3bMdV0tcP83oIjODhFDU=; h=in-reply-to:date:subject:cc:to: from:references; d=tobias.gr; b=krLmh3zLrNLWw9meuAGaNrUvlcd4yd86sdelSs dANaOUgbdPdnvcCbQej8GcMGIywc/FijP/jmG1WAK5C9g/N/oX+TTt+yavUnze5103wqrZ VadGc5PMFUO4a3WbGsOKK2wu5lEqbjcZ4kH3Hycg1rZMar9pcmvsIo9jzYFiEh8j/FUM1K BXeTrpbt3cFRoAh1i1H6qZii93DRA3TFmnOsrBZYkmbZ3wFDR/5gpqgFlR49+Hri195hw8 5BeSJutn5NRqg6Jcq6H4aIF8jrWrxBAfSCx5YgxG/THpZAPUCus84FLo1WldQ5iD6Me2YJ dZ8Na/zqxIcVuZMY9YNFnLVg== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 98c5ce7b (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Thu, 21 Jul 2022 10:39:04 +0000 (UTC) References: <20220717102035.9150-1-ludo@gnu.org> <87r12en865.fsf@gnu.org> From: Tobias Geerinckx-Rice Date: Thu, 21 Jul 2022 12:37:37 +0200 In-reply-to: <87r12en865.fsf@gnu.org> BIMI-Selector: v=BIMI1; s=default; Message-ID: <87mtd2g370@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Received-SPF: pass client-ip=2a02:c205:2020:6054::1; envelope-from=me@tobias.gr; helo=tobias.gr 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_PASS=-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.6 (-) 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.6 (--) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Ludovic Court=C3=A8s =E5=86=99=E9=81=93=EF=BC=9A > Do you think it could be interpreted as =E2=80=9Cadd all of manifest to=20 > what I > already have installed=E2=80=9D? It can; I did. I was going to raise the same objection as=20 Liliana. =E2=80=98guix package -m=E2=80=99 does not have this problem, =E2= =80=98guix=20 install -m=E2=80=99 does. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCYtks0w0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW1513EA/2P7iDjTg2wQsQJ1XnSs5fIALOwXowZUUpLqi1Pd j5yvAPsHMC7nUcjAt8MeZA8w+VOKlattPQ8p+HDxyO9S8GcBCg== =pAYG -----END PGP SIGNATURE----- --=-=-=-- From unknown Mon Aug 18 19:29:28 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#56612] [PATCH] guix install: Add '--manifest' option. Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 22 Jul 2022 21:00:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 56612 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Tobias Geerinckx-Rice Cc: liliana.prikler@ist.tugraz.at, 56612@debbugs.gnu.org Received: via spool by 56612-submit@debbugs.gnu.org id=B56612.165852354822952 (code B ref 56612); Fri, 22 Jul 2022 21:00:02 +0000 Received: (at 56612) by debbugs.gnu.org; 22 Jul 2022 20:59:08 +0000 Received: from localhost ([127.0.0.1]:42559 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oEzjo-0005y7-1L for submit@debbugs.gnu.org; Fri, 22 Jul 2022 16:59:08 -0400 Received: from eggs.gnu.org ([209.51.188.92]:48962) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oEzjl-0005xa-Ix for 56612@debbugs.gnu.org; Fri, 22 Jul 2022 16:59:06 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:50764) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oEzje-0007Gc-TS; Fri, 22 Jul 2022 16:58:58 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=+fhzhRMhCSqLXRIj2rC0VDvcLXLT4yMuhJnxQmRkdTc=; b=JN8iAzl5ZdmIbTGZ7VY1 ctF5Rk5a2RgQp0gaIVZEle9N9A/Sns1+3RNDpwU1DZ2LiDVTJ/UVuotIVlbfrFl7ORgbirKg0qZxv hfzUn/TfUxojxLC2kC0r9I6NggFtEjF+bhvILqKya/HU+WggeqZlh/Wa6NvHQ7wbItXW3htzA0MdP vn8mtJMMwYYmspo5y2Ry2h5N4lQ2iaKrEbIr3D2wsQP6fqqdsOLb8d8/NmcpP0GWRvQGrNPd3ASXF w8z3fz/wp39f6yJ6Sb7qRjLfNtS0lOeyRZDsOjvqna2FDckRMy7TW7sRnemXjE/13EcK4R96dkPF9 d3QJpwHfujh9fg==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:58433 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oEzje-0004K8-HZ; Fri, 22 Jul 2022 16:58:58 -0400 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20220717102035.9150-1-ludo@gnu.org> <87r12en865.fsf@gnu.org> <87mtd2g370@nckx> Date: Fri, 22 Jul 2022 22:58:56 +0200 In-Reply-To: <87mtd2g370@nckx> (Tobias Geerinckx-Rice's message of "Thu, 21 Jul 2022 12:37:37 +0200") Message-ID: <87wnc4g8z3.fsf_-_@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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 (---) Tobias Geerinckx-Rice skribis: > Ludovic Court=C3=A8s =E5=86=99=E9=81=93=EF=BC=9A >> Do you think it could be interpreted as =E2=80=9Cadd all of manifest to = what >> I >> already have installed=E2=80=9D? > > It can; I did. I was going to raise the same objection as Liliana. > =E2=80=98guix package -m=E2=80=99 does not have this problem, =E2=80=98gu= ix install -m=E2=80=99 does. OK, interesting. I guess we can drop the idea then. Thanks for your feedback! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 22 16:59:16 2022 Received: (at control) by debbugs.gnu.org; 22 Jul 2022 20:59:16 +0000 Received: from localhost ([127.0.0.1]:42563 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oEzjw-0005yY-9T for submit@debbugs.gnu.org; Fri, 22 Jul 2022 16:59:16 -0400 Received: from eggs.gnu.org ([209.51.188.92]:48988) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oEzju-0005yH-Tr for control@debbugs.gnu.org; Fri, 22 Jul 2022 16:59:15 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:50766) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oEzjp-0007Hj-NU for control@debbugs.gnu.org; Fri, 22 Jul 2022 16:59: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:Subject:From:To:Date:in-reply-to: references; bh=4VKbJxsluqMzqiJQvE9aR2hPEZkAi17LfeRtIF2JUZs=; b=sH/g+NtFjfMNlD Zc0Y6aT8WogjHt9PSkx2+6tTiWQOioAFDEgjagzqKSd7gAlcsIrVSvClJL6aycuD2iW6OXCRDgHPu Psg5Y19entww3gHM45CphIsFmW8nV6x0UWF8YYMZuK7XeIaYgaBCWy1HV18XCAMBdZwqh856ALJoS 7K1ob7F71BU1RQY0rRcNbuk9y/wNaOL/+U34BaziXjZPAdMxL2nD8KLvIcemQShX3ChZRegdKDRF6 IrLh3gvGduplPr/PkDu0cCAPZ5WjWfh84v9bxgZ4E7UtHZW29orklh8FpTgMOLvXRl77piDlvmMtF PiSpff1+Pb4J6d8vqlnw==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:49582 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oEzjp-0004Sn-BM for control@debbugs.gnu.org; Fri, 22 Jul 2022 16:59:09 -0400 Date: Fri, 22 Jul 2022 22:59:08 +0200 Message-Id: <87v8rog8yr.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #56612 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control 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 (---) tags 56612 wontfix close 56612 quit