From unknown Fri Sep 12 09:56:11 2025 X-Loop: help-debbugs@gnu.org Subject: bug#54209: =?UTF-8?Q?=E2=80=98guix?= shell -D =?UTF-8?Q?=E2=80=A6?= --with-branch =?UTF-8?Q?=E2=80=A6=E2=80=99?= leads to an invalid derivation Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: florent.pruvost@inria.fr, bug-guix@gnu.org Resent-Date: Tue, 01 Mar 2022 10:09:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 54209 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: 54209@debbugs.gnu.org Cc: florent.pruvost@inria.fr X-Debbugs-Original-To: bug-guix@gnu.org X-Debbugs-Original-Xcc: florent.pruvost@inria.fr Received: via spool by submit@debbugs.gnu.org id=B.164612932412363 (code B ref -1); Tue, 01 Mar 2022 10:09:01 +0000 Received: (at submit) by debbugs.gnu.org; 1 Mar 2022 10:08:44 +0000 Received: from localhost ([127.0.0.1]:35527 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nOzQy-0003DK-JD for submit@debbugs.gnu.org; Tue, 01 Mar 2022 05:08:44 -0500 Received: from lists.gnu.org ([209.51.188.17]:48474) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nOzQx-0003DC-DA for submit@debbugs.gnu.org; Tue, 01 Mar 2022 05:08:43 -0500 Received: from eggs.gnu.org ([209.51.188.92]:53306) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nOzQq-0006jb-AM for bug-guix@gnu.org; Tue, 01 Mar 2022 05:08:41 -0500 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:48727) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nOzQQ-0004Hr-RY for bug-guix@gnu.org; Tue, 01 Mar 2022 05:08:34 -0500 X-IronPort-AV: E=Sophos;i="5.90,145,1643670000"; d="scan'208";a="7265679" Received: from unknown (HELO ribbon) ([193.50.110.129]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Mar 2022 11:08:04 +0100 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 11 =?UTF-8?Q?Vent=C3=B4se?= an 230 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: Tue, 01 Mar 2022 11:08:04 +0100 Message-ID: <87wnhe6l4r.fsf@inria.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=192.134.164.104; envelope-from=ludovic.courtes@inria.fr; helo=mail3-relais-sop.national.inria.fr X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=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 (--) Hello, The following command ends up creating an invalid derivation in the glib-schemas hook: --8<---------------cut here---------------start------------->8--- $ guix shell -D guile-next --with-branch=3Dguile-next=3Dstable-2.2 python-= matplotlib=20=20 guix shell: error: derivation `/gnu/store/6hy95hpjbbzvppwxndzapi3f5s1xcgkm-= glib-schemas.drv' has incorrect output `/gnu/store/vahx614bazd4zk5akkqp1y7a= flbi1rla-glib-schemas', should be `/gnu/store/m0138ijax94m5lcdksw8jz5zdvlhd= ghh-glib-schemas' $ guix describe Generacio 205 Feb 27 2022 17:52:04 (nuna) guix 85a5110 repository URL: https://git.savannah.gnu.org/git/guix.git branch: master commit: 85a5110de79f4fe9fd822ede3915654ee699d6c5 --8<---------------cut here---------------end--------------->8--- The problem vanishes if we pass =E2=80=98--no-grafts=E2=80=99 or if we remo= ve =E2=80=98--with-branch=E2=80=99. Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 02 05:29:13 2022 Received: (at control) by debbugs.gnu.org; 2 Mar 2022 10:29:13 +0000 Received: from localhost ([127.0.0.1]:39177 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nPMEK-0008Aa-VZ for submit@debbugs.gnu.org; Wed, 02 Mar 2022 05:29:13 -0500 Received: from hera.aquilenet.fr ([185.233.100.1]:57832) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nPMEI-0008AL-TP for control@debbugs.gnu.org; Wed, 02 Mar 2022 05:29:11 -0500 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 3945C39F for ; Wed, 2 Mar 2022 11:29:04 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EL-2MeqBDeBz for ; Wed, 2 Mar 2022 11:29:03 +0100 (CET) Received: from ribbon (91-160-117-201.subs.proxad.net [91.160.117.201]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 7C341295 for ; Wed, 2 Mar 2022 11:29:03 +0100 (CET) Date: Wed, 02 Mar 2022 11:29:02 +0100 Message-Id: <87ilsw4pht.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #54209 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spamd-Bar: / Authentication-Results: hera.aquilenet.fr; none X-Rspamd-Server: hera X-Rspamd-Queue-Id: 3945C39F X-Spamd-Result: default: False [0.61 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[control@debbugs.gnu.org]; RCPT_COUNT_ONE(0.00)[1]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; R_MIXED_CHARSET(0.71)[subject]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; MID_RHS_MATCH_FROM(0.00)[] X-Spam-Score: 1.0 (+) 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: -0.0 (/) severity 54209 important quit From unknown Fri Sep 12 09:56:11 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: Ludovic =?UTF-8?Q?Court=C3=A8s?= Subject: bug#54209: closed (Re: bug#54209: =?UTF-8?Q?=E2=80=98guix?= shell -D =?UTF-8?Q?=E2=80=A6?= --with-branch =?UTF-8?Q?=E2=80=A6=E2=80=99?= leads to an invalid derivation) Message-ID: References: <87ee3calmx.fsf@gnu.org> <87wnhe6l4r.fsf@inria.fr> X-Gnu-PR-Message: they-closed 54209 X-Gnu-PR-Package: guix Reply-To: 54209@debbugs.gnu.org Date: Tue, 08 Mar 2022 08:35:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1646728502-18536-1" This is a multi-part message in MIME format... ------------=_1646728502-18536-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54209: =E2=80=98guix shell -D =E2=80=A6 --with-branch =E2=80=A6=E2=80=99 l= eads to an invalid derivation which was filed against the guix package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54209@debbugs.gnu.org. --=20 54209: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54209 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1646728502-18536-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54209-done) by debbugs.gnu.org; 8 Mar 2022 08:34:08 +0000 Received: from localhost ([127.0.0.1]:55137 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nRVIG-0004nk-Fr for submit@debbugs.gnu.org; Tue, 08 Mar 2022 03:34:08 -0500 Received: from eggs.gnu.org ([209.51.188.92]:53040) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nRVIF-0004nY-9h for 54209-done@debbugs.gnu.org; Tue, 08 Mar 2022 03:34:07 -0500 Received: from [2001:470:142:3::e] (port=34318 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nRVI9-0000kU-J5; Tue, 08 Mar 2022 03:34:01 -0500 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=zkocHPkfLhidqZlb7JxG3qz81YQkBmUGmKGoh7A1uDE=; b=du+zEA3s38GSsJiPGvEI FSqpRZttNP9hnNv2ZWP3JH7mLyU33SxtQUV6J3vygFS7Y+BXGp/aCSs18op1s4r8GLNcGIoXZEofG hGypY2oPYBlkyUMP0lwzKeFvxpjglEcK3dJvJ4jan3Yf7yCbWM5sSNRRLLSKimvFUdiGm+Lp/bOMz 7cjGFiYf/NLAAzKQuI+9g5Mqz6FuO6TfZQhDQ10P7TDU0r/70nJ6HMB7pZ/Hn7Ak5QB7HIqSWppj2 njQTz+d+rfmHNHF+NsYHMEaIwXcxB7Z8vc7/SuMx6YGtmVziKfjp9xZKYyGyr9t7Had2lCWRTC0Zw gcc+za9Xinu6dw==; Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=38480 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nRVI9-0004o7-1H; Tue, 08 Mar 2022 03:34:01 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: 54209-done@debbugs.gnu.org Subject: Re: bug#54209: =?utf-8?Q?=E2=80=98guix?= shell -D =?utf-8?Q?=E2=80=A6?= --with-branch =?utf-8?B?4oCm4oCZ?= leads to an invalid derivation References: <87wnhe6l4r.fsf@inria.fr> Date: Tue, 08 Mar 2022 09:33:58 +0100 In-Reply-To: <87wnhe6l4r.fsf@inria.fr> ("Ludovic =?utf-8?Q?Court=C3=A8s=22?= =?utf-8?Q?'s?= message of "Tue, 01 Mar 2022 11:08:04 +0100") Message-ID: <87ee3calmx.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) 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: 54209-done Cc: florent.pruvost@inria.fr 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 (---) Ludovic Court=C3=A8s skribis: > The following command ends up creating an invalid derivation in the > glib-schemas hook: > > $ guix shell -D guile-next --with-branch=3Dguile-next=3Dstable-2.2 pytho= n-matplotlib=20=20 > guix shell: error: derivation `/gnu/store/6hy95hpjbbzvppwxndzapi3f5s1xcgk= m-glib-schemas.drv' has incorrect output `/gnu/store/vahx614bazd4zk5akkqp1y= 7aflbi1rla-glib-schemas', should be `/gnu/store/m0138ijax94m5lcdksw8jz5zdvl= hdghh-glib-schemas' Fixed: https://git.savannah.gnu.org/cgit/guix.git/commit/?id=3D1cad3476189d2ce84= fabe95b69db8fb85a10b67a Ludo=E2=80=99. ------------=_1646728502-18536-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 1 Mar 2022 10:08:44 +0000 Received: from localhost ([127.0.0.1]:35527 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nOzQy-0003DK-JD for submit@debbugs.gnu.org; Tue, 01 Mar 2022 05:08:44 -0500 Received: from lists.gnu.org ([209.51.188.17]:48474) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nOzQx-0003DC-DA for submit@debbugs.gnu.org; Tue, 01 Mar 2022 05:08:43 -0500 Received: from eggs.gnu.org ([209.51.188.92]:53306) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nOzQq-0006jb-AM for bug-guix@gnu.org; Tue, 01 Mar 2022 05:08:41 -0500 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:48727) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nOzQQ-0004Hr-RY for bug-guix@gnu.org; Tue, 01 Mar 2022 05:08:34 -0500 X-IronPort-AV: E=Sophos;i="5.90,145,1643670000"; d="scan'208";a="7265679" Received: from unknown (HELO ribbon) ([193.50.110.129]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Mar 2022 11:08:04 +0100 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: bug-guix@gnu.org Subject: =?utf-8?Q?=E2=80=98guix?= shell -D =?utf-8?Q?=E2=80=A6?= --with-branch =?utf-8?B?4oCm4oCZ?= leads to an invalid derivation X-Debbugs-Cc: florent.pruvost@inria.fr X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 11 =?utf-8?Q?Vent=C3=B4se?= an 230 de la =?utf-8?Q?R?= =?utf-8?Q?=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: Tue, 01 Mar 2022 11:08:04 +0100 Message-ID: <87wnhe6l4r.fsf@inria.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=192.134.164.104; envelope-from=ludovic.courtes@inria.fr; helo=mail3-relais-sop.national.inria.fr X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=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 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 (--) Hello, The following command ends up creating an invalid derivation in the glib-schemas hook: --8<---------------cut here---------------start------------->8--- $ guix shell -D guile-next --with-branch=3Dguile-next=3Dstable-2.2 python-= matplotlib=20=20 guix shell: error: derivation `/gnu/store/6hy95hpjbbzvppwxndzapi3f5s1xcgkm-= glib-schemas.drv' has incorrect output `/gnu/store/vahx614bazd4zk5akkqp1y7a= flbi1rla-glib-schemas', should be `/gnu/store/m0138ijax94m5lcdksw8jz5zdvlhd= ghh-glib-schemas' $ guix describe Generacio 205 Feb 27 2022 17:52:04 (nuna) guix 85a5110 repository URL: https://git.savannah.gnu.org/git/guix.git branch: master commit: 85a5110de79f4fe9fd822ede3915654ee699d6c5 --8<---------------cut here---------------end--------------->8--- The problem vanishes if we pass =E2=80=98--no-grafts=E2=80=99 or if we remo= ve =E2=80=98--with-branch=E2=80=99. Ludo=E2=80=99. ------------=_1646728502-18536-1--