From unknown Thu Aug 14 22:20:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#53238] [PATCH] gnu: tree: Remove stddata feature. Resent-From: Olivier Dion Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 13 Jan 2022 20:34:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 53238 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 53238@debbugs.gnu.org Cc: Olivier Dion X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16421060226996 (code B ref -1); Thu, 13 Jan 2022 20:34:01 +0000 Received: (at submit) by debbugs.gnu.org; 13 Jan 2022 20:33:42 +0000 Received: from localhost ([127.0.0.1]:34686 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n86n0-0001om-DB for submit@debbugs.gnu.org; Thu, 13 Jan 2022 15:33:42 -0500 Received: from lists.gnu.org ([209.51.188.17]:52342) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n86mv-0001oY-EX for submit@debbugs.gnu.org; Thu, 13 Jan 2022 15:33:41 -0500 Received: from eggs.gnu.org ([209.51.188.92]:48218) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n86mu-0007zu-3g for guix-patches@gnu.org; Thu, 13 Jan 2022 15:33:37 -0500 Received: from smtp.polymtl.ca ([132.207.4.11]:42042) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n86mq-00066q-Cw for guix-patches@gnu.org; Thu, 13 Jan 2022 15:33:34 -0500 Received: from laura.hitronhub.home (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 20DKXMB9003161 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT); Thu, 13 Jan 2022 15:33:29 -0500 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 20DKXMB9003161 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=polymtl.ca; s=default; t=1642106010; bh=ASeLr+ajKDXr1obrM9FFYIcIvZ08oaYL6guaEJfOwug=; h=From:To:Cc:Subject:Date:From; b=GT2NKY9xWDJkkkg6IyBXAGYx/5IuKH0as/cWXFuTke4mJrOjl+2I7/S/u8nsPQPDg 7rgwVSiAkirTyYfFShJtx/M8rsZv6WJqH+/T/FeZB7H0lJNe+EFFg+/Z5+/D44rZyU WY753mGP76jW5SWc5pcF0FF7DSLdSE+0IGCestfQ= From: Olivier Dion Date: Thu, 13 Jan 2022 15:33:21 -0500 Message-Id: X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Poly-FromMTA: (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) at Thu, 13 Jan 2022 20:33:22 +0000 Received-SPF: pass client-ip=132.207.4.11; envelope-from=olivier.dion@polymtl.ca; helo=smtp.polymtl.ca 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_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 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/admin.scm (tree) [arguments]: Add 'remove-stddata-feature phase after 'unpack phase. Since version 2.0.0, there's a new feature call `stddata`. >From the ChangeLog: -------------------------------------------------------------------------------- Output un-indented JSON on file descriptor 3 ("stddata") automatically if file descriptor 3 is present (currently Linux only.) Maybe switch to BSON. -------------------------------------------------------------------------------- This feature breaks some UNIX utilities. Fix it by disabling the feature. --- gnu/packages/admin.scm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index f11374a439..3d4909176a 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2408,6 +2408,14 @@ (define-public tree (list #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'remove-stddata-feature + (lambda _ + (substitute* "tree.h" + (("# define STDDATA_FILENO 3") + "")) + (substitute* "tree.c" + (("#ifdef __linux__") + "#ifdef STDDATA_FILENO")))) (delete 'configure)) ; No configure script. #:tests? #f ; No check target. #:make-flags -- 2.34.0 From unknown Thu Aug 14 22:20:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#53238] [PATCH] gnu: tree: Remove stddata feature. Resent-From: Tobias Geerinckx-Rice Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 13 Jan 2022 20:47:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 53238 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Olivier Dion Cc: 53238@debbugs.gnu.org X-Debbugs-Original-Cc: 53238@debbugs.gnu.org, guix-patches@gnu.org Received: via spool by 53238-submit@debbugs.gnu.org id=B53238.16421068148480 (code B ref 53238); Thu, 13 Jan 2022 20:47:01 +0000 Received: (at 53238) by debbugs.gnu.org; 13 Jan 2022 20:46:54 +0000 Received: from localhost ([127.0.0.1]:34705 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n86zm-0002Ch-Ik for submit@debbugs.gnu.org; Thu, 13 Jan 2022 15:46:54 -0500 Received: from tobias.gr ([80.241.217.52]:33898) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n86zk-0002CU-D6 for 53238@debbugs.gnu.org; Thu, 13 Jan 2022 15:46:53 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=GAjB+q+AWgG+r jSxoflTKcjUv+yBGmKeiYRiJidnN4c=; h=in-reply-to:date:subject:cc:to: from:references; d=tobias.gr; b=pHCxa0nfveafu5gvvp2kFmMb/uVIN3NnPQw1B1 INu6SCj16DpvjsmKlHTmz8lTosI9ze3L4QOQeEok0NtWT+ABhigZQamARUgtec7JN4L9B3 5gwfdJv2tCpL1kVUKcFsFFsyJn6c5vnd5/t162UPw3H1rXiXzLKwjpyLRnrbaKbKR13s2A AM8TfL35HMolT928R4x+36yswUTvM0UgL3FKtaSXTTjz5tbuPnDNKREwQpE/BMy0gQt+w6 sF8FsNgDmcr4GhGUZVtATfNwqkVsQu646VlMjX0WJFngRcoiJLcXRxjZwz+0xku/T2DBpk NyAaONlRCR31upGKzKrA0leA== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id fedd90ed (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Thu, 13 Jan 2022 20:46:48 +0000 (UTC) References: From: Tobias Geerinckx-Rice Date: Thu, 13 Jan 2022 21:44:31 +0100 In-reply-to: BIMI-Selector: v=BIMI1; s=default; Message-ID: <87ee5bcqhy.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" 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 (-) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Olivier, Thanks again for tracking down this weird bug! Olivier Dion via Guix-patches via =E5=86=99=E9=81=93=EF=BC=9A > This feature breaks some UNIX utilities. Fix it by disabling=20 > the feature. Hm=E2=80=A6 How long would we have to carry this fork? My fear is we'd=20 do so indefinitely. How about creating a (possibly hidden) tree-without-stddata=20 package variant, to use as input to packages who currently break=20 with this feature enabled? That lets us refcount the need for it. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCYeCP2Q0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW15XQwA/imzo8+dkAo/YNPVnciTjEWoUaAbwmVpv071kZrU 7NpxAP918Nm095sz8+/N9WJCEpdKGhfo+4+hBf3+WvDcIAAwAw== =SgBg -----END PGP SIGNATURE----- --=-=-=-- From unknown Thu Aug 14 22:20:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#53238] [PATCH] gnu: tree: Remove stddata feature. Resent-From: Olivier Dion Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 13 Jan 2022 20:58:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 53238 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Tobias Geerinckx-Rice Cc: 53238@debbugs.gnu.org X-Debbugs-Original-Cc: 53238@debbugs.gnu.org, guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16421074489787 (code B ref -1); Thu, 13 Jan 2022 20:58:01 +0000 Received: (at submit) by debbugs.gnu.org; 13 Jan 2022 20:57:28 +0000 Received: from localhost ([127.0.0.1]:34726 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n879z-0002Xl-IE for submit@debbugs.gnu.org; Thu, 13 Jan 2022 15:57:27 -0500 Received: from lists.gnu.org ([209.51.188.17]:57588) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n879x-0002Xc-OF for submit@debbugs.gnu.org; Thu, 13 Jan 2022 15:57:26 -0500 Received: from eggs.gnu.org ([209.51.188.92]:52612) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n879x-0008Pu-FS for guix-patches@gnu.org; Thu, 13 Jan 2022 15:57:25 -0500 Received: from smtp.polymtl.ca ([132.207.4.11]:42122) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n879v-00015n-6J for guix-patches@gnu.org; Thu, 13 Jan 2022 15:57:24 -0500 Received: from localhost (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 20DKv8j0021614 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 13 Jan 2022 15:57:12 -0500 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 20DKv8j0021614 From: Olivier Dion In-Reply-To: <87ee5bcqhy.fsf@nckx> References: <87ee5bcqhy.fsf@nckx> Date: Thu, 13 Jan 2022 15:57:07 -0500 Message-ID: <87ee5bwdzw.fsf@laura> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Poly-FromMTA: (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) at Thu, 13 Jan 2022 20:57:08 +0000 Received-SPF: pass client-ip=132.207.4.11; envelope-from=olivier.dion@polymtl.ca; helo=smtp.polymtl.ca 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_PASS=-0.001, SPF_PASS=-0.001 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 (--) On Thu, 13 Jan 2022, Tobias Geerinckx-Rice wrote: > Olivier, > > Thanks again for tracking down this weird bug! > > Olivier Dion via Guix-patches via =E5=86=99=E9=81=93=EF=BC=9A >> This feature breaks some UNIX utilities. Fix it by disabling=20 >> the feature. > > Hm=E2=80=A6 How long would we have to carry this fork? My fear is we'd= =20 > do so indefinitely. I've contacted the maintainer asking for removal of the feature in its next release. I'm not sure if this will have some impact. Feel free to do the same at , maybe adding more weight in the balance would help. > How about creating a (possibly hidden) tree-without-stddata=20 > package variant, to use as input to packages who currently break=20 > with this feature enabled? That lets us refcount the need for it. It's more than just packages, it's also user scripts that can be broken and believe me when I say that this is not an easy bug to track down ;-). --=20 Olivier Dion Polymtl From unknown Thu Aug 14 22:20:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#53238] [PATCH] gnu: tree: Remove stddata feature. Resent-From: Maxim Cournoyer Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 13 Jan 2022 22:27:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 53238 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Olivier Dion Cc: Tobias Geerinckx-Rice , 53238@debbugs.gnu.org Received: via spool by 53238-submit@debbugs.gnu.org id=B53238.164211279120064 (code B ref 53238); Thu, 13 Jan 2022 22:27:01 +0000 Received: (at 53238) by debbugs.gnu.org; 13 Jan 2022 22:26:31 +0000 Received: from localhost ([127.0.0.1]:34819 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n88YB-0005DX-0g for submit@debbugs.gnu.org; Thu, 13 Jan 2022 17:26:31 -0500 Received: from mail-qv1-f42.google.com ([209.85.219.42]:37415) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n88Y6-0005DB-O3 for 53238@debbugs.gnu.org; Thu, 13 Jan 2022 17:26:29 -0500 Received: by mail-qv1-f42.google.com with SMTP id fo11so8379943qvb.4 for <53238@debbugs.gnu.org>; Thu, 13 Jan 2022 14:26:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=+owQf6rbF8Em5c4wewuv8Ji1HUH7+LXzjgvlm51+Sb4=; b=GRiJavjYHJRGPIjwOgDz7IjzgO+yyfUiYxzjhi/R870EfCbdXvmzE6WiiyV+V/UrdZ Rd/DCA8Ed1xd/SIr1AJ38usPvMzt/Q7UbIurmFl2tqUB/mtuO8g53pMvk7KgBkqkCKYB 0SmMytgv/dyR2Vj1QsdU7yaQDMr9xJexPP5GOv+tBaBVJQCvSnu1f2Zyho3PGr1QFSnT 3drKtZhpiZBL009mX7uKFFXYCbi8stcwnbeaCIP+ljvoh9db3/qmT4QMqc91NrLXbRZk OiFRetWnpefSplZh1DRZwngr7rTCOaiH8kzZ0l3YZLRRYGGlZuh2bJsr60kb/yWeiLUT i2FA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=+owQf6rbF8Em5c4wewuv8Ji1HUH7+LXzjgvlm51+Sb4=; b=JiLsxWuRt07xVEdd20FXbfo+mPtfcHoybw0XjwhU6mF5RQdtmqR4lkAzV/911dU069 i+3XVceHFsqdf3hrcam1xx6c6Mk8heiPSrO1MD0IoWePZi+VfG4JntNfqYytkzqOq88J 48/hWtEbKZVAafOdFQ701S0Ub0gOm6zXAvwJ8URu2GG+mMx1ViegNv8Oli98e8vMy0cA 9umxahUqM2uf8XwJYNRXKyhS1/v02n4slGgSr/gUV2MId8O1It1kraD8AQAEWRdn6RvU 0FiaCYeztYccQj07tKl5XshU5BeWY/462KGJ0Yl0BIU+FkJ59gm6u8pxog8WNhT49zxJ WoIQ== X-Gm-Message-State: AOAM530cnVZyUHoaGjf/r0Hk1dLluwpHMP2m+F+SlcF/KL47btyY6+yB bo3/TaCbRAoUG0wyjoM8dq1e0SAT4uL0ug== X-Google-Smtp-Source: ABdhPJxzTwz3/u6EkMzr+LKZKlUIHuFkeEU2hX8llucfxarXN9BUiLO3P7sNVCTkgZyEE2Pqrl6Czg== X-Received: by 2002:a05:6214:2686:: with SMTP id gm6mr6125706qvb.24.1642112780897; Thu, 13 Jan 2022 14:26:20 -0800 (PST) Received: from hurd (dsl-152-155.b2b2c.ca. [66.158.152.155]) by smtp.gmail.com with ESMTPSA id x10sm2906586qtw.60.2022.01.13.14.26.19 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 13 Jan 2022 14:26:20 -0800 (PST) From: Maxim Cournoyer References: <87ee5bcqhy.fsf@nckx> <87ee5bwdzw.fsf@laura> Date: Thu, 13 Jan 2022 17:26:19 -0500 In-Reply-To: <87ee5bwdzw.fsf@laura> (Olivier Dion's message of "Thu, 13 Jan 2022 15:57:07 -0500") Message-ID: <87r19bxofo.fsf_-_@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, Olivier Dion writes: > On Thu, 13 Jan 2022, Tobias Geerinckx-Rice wrote: >> Olivier, >> >> Thanks again for tracking down this weird bug! >> >> Olivier Dion via Guix-patches via =E5=86=99=E9=81=93=EF=BC=9A >>> This feature breaks some UNIX utilities. Fix it by disabling=20 >>> the feature. >> >> Hm=E2=80=A6 How long would we have to carry this fork? My fear is we'd= =20 >> do so indefinitely. > > I've contacted the maintainer asking for removal of the feature in its > next release. I'm not sure if this will have some impact. Feel free to > do the same at , maybe adding more weight > in the balance would help. > >> How about creating a (possibly hidden) tree-without-stddata=20 >> package variant, to use as input to packages who currently break=20 >> with this feature enabled? That lets us refcount the need for it. > > It's more than just packages, it's also user scripts that can be broken > and believe me when I say that this is not an easy bug to track down ;-). I'm on the fence about this, it does indeed seem an undesirable change, especially since there's a --json option, but I am not the author of the 'tree' software. Attached is an alternative that adjusts password-store instead of removing this new tree "feature"... --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-password-store-Fix-test-failure-following-tree-u.patch >From 2a30d95c46ff1eb0bdac9307c5d6bb8e460de02f Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 13 Jan 2022 15:09:54 -0500 Subject: [PATCH] gnu: password-store: Fix test failure following 'tree' update. Thanks to Olivier Dion for diagnosing the source of the problem! * gnu/packages/password-utils.scm (password-store): Delete trailing #t. [phases]{adjust-for-tree-2}: New phase. --- gnu/packages/password-utils.scm | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index 0ff8608c9c..16d889344b 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -487,6 +487,21 @@ (define-public password-store (arguments '(#:phases (modify-phases %standard-phases + (add-after 'unpack 'adjust-for-tree-2 + (lambda _ + ;; XXX: tree 2.0.1 has this new "stddata pipe" that is + ;; automatically used to output in JSON if the file descriptor 3 + ;; is available. This conflicts with the test harness use of + ;; file descriptor 3, causing one of the tests to fail. + ;; Increment the file descriptors used by the harness by one to + ;; avoid the conflict. + (substitute* "tests/sharness.sh" + (("exec 4>&2 3>&1") + "exec 5>&2 4>&1") + (("exec 4>/dev/null 3>/dev/null") + "exec 5>/dev/null 4>/dev/null") + (("&4") "&5") + (("&3") "&4")))) (delete 'configure) (delete 'build) (add-before 'install 'patch-system-extension-dir @@ -500,8 +515,7 @@ (define-public password-store (string-append " SYSTEM_EXTENSION_DIR=\"" "${PASSWORD_STORE_SYSTEM_EXTENSION_DIR:-" extension-dir - "}\"\n")))) - #t)) + "}\"\n")))))) (add-before 'install 'patch-passmenu-path ;; FIXME Wayland support requires ydotool and dmenu-wl packages ;; We are ignoring part of the script that gets executed if @@ -530,8 +544,7 @@ (define-public password-store '("coreutils" "getopt" "git" "gnupg" "qrencode" "sed" "tree" "which" "wl-clipboard" "xclip")))) (wrap-program (string-append out "/bin/pass") - `("PATH" ":" prefix (,(string-join path ":")))) - #t)))) + `("PATH" ":" prefix (,(string-join path ":")))))))) #:make-flags (list "CC=gcc" (string-append "PREFIX=" %output) "WITH_ALLCOMP=yes" (string-append "BASHCOMPDIR=" -- 2.34.0 --=-=-= Content-Type: text/plain Thanks, Maxim --=-=-=-- From unknown Thu Aug 14 22:20:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#53238] [PATCH] gnu: tree: Remove stddata feature. Resent-From: Tobias Geerinckx-Rice Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 14 Jan 2022 00:02:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 53238 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Olivier Dion Cc: 53238@debbugs.gnu.org X-Debbugs-Original-Cc: 53238@debbugs.gnu.org, guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16421184776981 (code B ref -1); Fri, 14 Jan 2022 00:02:02 +0000 Received: (at submit) by debbugs.gnu.org; 14 Jan 2022 00:01:17 +0000 Received: from localhost ([127.0.0.1]:34856 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8A1t-0001oW-22 for submit@debbugs.gnu.org; Thu, 13 Jan 2022 19:01:17 -0500 Received: from lists.gnu.org ([209.51.188.17]:34286) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8A1p-0001oN-RO for submit@debbugs.gnu.org; Thu, 13 Jan 2022 19:01:15 -0500 Received: from eggs.gnu.org ([209.51.188.92]:55490) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8A1p-0000U6-4D for guix-patches@gnu.org; Thu, 13 Jan 2022 19:01:13 -0500 Received: from [2a02:c205:2020:6054::1] (port=41204 helo=tobias.gr) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8A1k-0001XB-Lz for guix-patches@gnu.org; Thu, 13 Jan 2022 19:01:12 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=Tke8oaw5ZXSEe WExEDHf8BXVMUFNR6uQ9xDOFfR5pIg=; h=in-reply-to:date:subject:cc:to: from:references; d=tobias.gr; b=Nl4SFPApE/WAShhIlyZlX5Ned8F9AL3yJZeqzC cpSuyz4X4pB6ClR+2mLiLXEBDWOchHjsd9G2N9ts+UaPuWvleFFqD49qyk5XQoZ9G+nBY+ 05R5gIA+xHhGSmQcU3NqEhaCyRj7eMlW+YEpPlQtihIIzImk9FuwZdG1mQuOz8uqzEz27c P5cOzYs1zrN0+QEmDGcus2DggeCmU0nwYY9UB6qebnH48bEtt5l7uFELj2PzI1s5j3C719 kNQ/rao4/1XTeAMLOE5LM/dFqbebwIwjsgjnRxT5zTJ1gOTQq6lf5vu4mQztsD8SR6Nfwl m/Fe5jeC+1T3Xiz7jJI62jPA== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id e86fcdbe (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Fri, 14 Jan 2022 00:01:03 +0000 (UTC) References: <87ee5bcqhy.fsf@nckx> <87ee5bwdzw.fsf@laura> From: Tobias Geerinckx-Rice Date: Thu, 13 Jan 2022 23:33:29 +0100 In-reply-to: <87ee5bwdzw.fsf@laura> BIMI-Selector: v=BIMI1; s=default; Message-ID: <87a6fzchid.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Host-Lookup-Failed: Reverse DNS lookup failed for 2a02:c205:2020:6054::1 (failed) Received-SPF: pass client-ip=2a02:c205:2020:6054::1; envelope-from=me@tobias.gr; helo=tobias.gr X-Spam_score_int: -12 X-Spam_score: -1.3 X-Spam_bar: - X-Spam_report: (-1.3 / 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, RDNS_NONE=0.793, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, URI_DOTEDU=0.001 autolearn=no 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: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Hullo Olivier, I was going to apply the patch below to fix the password-store=20 package, but Maxime just submitted another version which I prefer.=20 I'd rather not provide two trees in Guix. Olivier Dion =E5=86=99=E9=81=93=EF=BC=9A > I've contacted the maintainer asking for removal of the feature=20 > in its > next release. After some consideration, I think it's an interesting feature.=20 Something like this is long overdue. I don't know if this approach is the right one, but I'll=20 begrudgingly settle for JSON if it finally catches on=E2=80=A6 > It's more than just packages, it's also user scripts that can be=20 > broken They can be fixed, or better yet rewritten. tree(1) is not tr(1).=20 =E2=80=98Some lazy idiot could parse this with bash=E2=80=99 !=3D =E2=80=98= frozen API which=20 upstream can never improve=E2=80=99. Really. =E2=80=A6uh, I'm describing myself there, by the way ;-) I feel quite=20 seen. Not that they needed to, but upstream even bumped the major=20 revision along with this change. > and believe me when I say that this is not an easy bug to track=20 > down ;-). Fully agree! I wasted too much time trying to track it down=20 myself. I blame password-store's spaghetto of redirection more=20 than tree. Kind regards, T G-R --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0004-gnu-password-store-Fix-failing-test-suite.patch Content-Transfer-Encoding: quoted-printable From=20e100fedb52df07738c2d535928c6c9f98042e07f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 13 Jan 2022 13:45:25 +0000 Subject: [PATCH 04/26] gnu: password-store: Fix failing test suite. * gnu/packages/admin.scm (tree-1): New public variable. * gnu/packages/password-utils.scm (password-store)[inputs]: Use it rather than the default tree@2. Reported by Maxim Cournoyer and Olivier Dion . =2D-- gnu/packages/admin.scm | 20 ++++++++++++++++++++ gnu/packages/password-utils.scm | 3 ++- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index f11374a439..c2e656db1a 100644 =2D-- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2421,6 +2421,26 @@ (define-public tree (home-page "http://mama.indstate.edu/users/ice/tree/") (license license:gpl2+))) =20 +(define-public tree-1 + ;; tree 2.0.0 introduced a feature called =E2=80=98stddata=E2=80=99 that= emits JSON when + ;; output is directed to file descriptor 3. At least password-store sti= ll + ;; requires the old version. + (package + (inherit tree) + (version "1.8.0") + (source (origin + (method url-fetch) + (uri (string-append + "http://mama.indstate.edu/users/ice/tree/src/tree-" + version ".tgz")) + (sha256 + (base32 "1hmpz6k0mr6salv0nprvm1g0rdjva1kx03bdf1scw8a38d5msp= bi")))) + (arguments + (substitute-keyword-arguments (package-arguments tree) + ((#:make-flags flags '()) + #~(append #$flags + (list (string-append "prefix=3D" #$output)))))))) + (define-public lr (package (name "lr") diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.= scm index 0ff8608c9c..86af0deb47 100644 =2D-- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -552,7 +552,8 @@ (define-public password-store ("gnupg" ,gnupg) ("qrencode" ,qrencode) ("sed" ,sed) =2D ("tree" ,tree) + ;; XXX v1.7.4 tests are broken with tree@2: . + ("tree" ,tree-1) ("which" ,which) ("wl-clipboard" ,wl-clipboard) ("xclip" ,xclip) =2D-=20 2.34.0 --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCYeC9Wg0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW15mZIBAMSOhfVhnZcXJiiLhaKMP8ZoKDViRaFPQdR7VmZV +cgHAP9wwCSzoWCmEFZ6uTiGV9O3yAZz0IKShu35MYI1lHYqDA== =rz+G -----END PGP SIGNATURE----- --==-=-=-- From unknown Thu Aug 14 22:20:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#53238] [PATCH] gnu: tree: Remove stddata feature. Resent-From: Olivier Dion Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 14 Jan 2022 01:56:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 53238 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Tobias Geerinckx-Rice Cc: 53238@debbugs.gnu.org X-Debbugs-Original-Cc: 53238@debbugs.gnu.org, guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.164212533819910 (code B ref -1); Fri, 14 Jan 2022 01:56:01 +0000 Received: (at submit) by debbugs.gnu.org; 14 Jan 2022 01:55:38 +0000 Received: from localhost ([127.0.0.1]:34933 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8BoY-0005B4-Fi for submit@debbugs.gnu.org; Thu, 13 Jan 2022 20:55:38 -0500 Received: from lists.gnu.org ([209.51.188.17]:51972) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8BoV-0005At-HK for submit@debbugs.gnu.org; Thu, 13 Jan 2022 20:55:36 -0500 Received: from eggs.gnu.org ([209.51.188.92]:42666) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8BoU-0000SM-3C for guix-patches@gnu.org; Thu, 13 Jan 2022 20:55:35 -0500 Received: from smtp.polymtl.ca ([132.207.4.11]:43980) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8BoL-0000U9-Po for guix-patches@gnu.org; Thu, 13 Jan 2022 20:55:31 -0500 Received: from localhost (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 20E1t9Ba025705 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 13 Jan 2022 20:55:14 -0500 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 20E1t9Ba025705 From: Olivier Dion In-Reply-To: <87a6fzchid.fsf@nckx> References: <87ee5bcqhy.fsf@nckx> <87ee5bwdzw.fsf@laura> <87a6fzchid.fsf@nckx> Date: Thu, 13 Jan 2022 20:55:09 -0500 Message-ID: <87bl0fw076.fsf@laura> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Poly-FromMTA: (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) at Fri, 14 Jan 2022 01:55:09 +0000 Received-SPF: pass client-ip=132.207.4.11; envelope-from=olivier.dion@polymtl.ca; helo=smtp.polymtl.ca 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_PASS=-0.001, SPF_PASS=-0.001 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 (--) On Thu, 13 Jan 2022, Tobias Geerinckx-Rice wrote: > Hullo Olivier, > > I was going to apply the patch below to fix the password-store=20 > package, but Maxime just submitted another version which I prefer.=20 > I'd rather not provide two trees in Guix. I'm fine with both solutions. In the end, password-store is not broken, only its test suite. > Olivier Dion =E5=86=99=E9=81=93=EF=BC=9A >> I've contacted the maintainer asking for removal of the feature in >> its next release. > > After some consideration, I think it's an interesting feature.=20 > Something like this is long overdue. > > I don't know if this approach is the right one, but I'll=20 > begrudgingly settle for JSON if it finally catches on=E2=80=A6 Just to be clear that the JSON is still there with the switch -J. I just think that using some random file descriptor like this is a path to break many tools. Any program that open a file and try to do a popen(3) with "tree" for its output will get bitten by it. It's not like if `stddata` is some common knowledge outside of the PowerShell world. >> and believe me when I say that this is not an easy bug to track=20 >> down ;-). > > Fully agree! I wasted too much time trying to track it down=20 > myself. I blame password-store's spaghetto of redirection more=20 > than tree. Happy to know I'm not the only one who spend way too much time on this ^^ --=20 Olivier Dion Polymtl From unknown Thu Aug 14 22:20:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#53238] [PATCH] gnu: tree: Remove stddata feature. Resent-From: Tobias Geerinckx-Rice Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 14 Jan 2022 02:08:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 53238 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Olivier Dion Cc: 53238@debbugs.gnu.org X-Debbugs-Original-Cc: 53238@debbugs.gnu.org, guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.164212604629750 (code B ref -1); Fri, 14 Jan 2022 02:08:02 +0000 Received: (at submit) by debbugs.gnu.org; 14 Jan 2022 02:07:26 +0000 Received: from localhost ([127.0.0.1]:34943 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8Bzx-0007jm-Qq for submit@debbugs.gnu.org; Thu, 13 Jan 2022 21:07:25 -0500 Received: from lists.gnu.org ([209.51.188.17]:56958) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8Bzw-0007jf-32 for submit@debbugs.gnu.org; Thu, 13 Jan 2022 21:07:24 -0500 Received: from eggs.gnu.org ([209.51.188.92]:44792) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8Bzv-00052I-VI for guix-patches@gnu.org; Thu, 13 Jan 2022 21:07:23 -0500 Received: from [2a02:c205:2020:6054::1] (port=41220 helo=tobias.gr) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8Bzp-0002Cs-Nh for guix-patches@gnu.org; Thu, 13 Jan 2022 21:07:20 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=p6bxpIQsr92DI RAo1hNHcV/DkCaENVfOKpaPwzOyV44=; h=in-reply-to:date:subject:cc:to: from:references; d=tobias.gr; b=Tsztwq1YNA5iHcnSZELWOou5dyeHzilMsj0h9R jeO/kd+LBCOIn/9LAK5XTPe+mO42QEKqx7N+hyn82noAdNMlgHMRbxBk4TfsHGPORlHDcj twv5EaRzT0rXDWYtTGCk4vICp0FE4G0jobptspIMtGoCsIihVPf7ebQ9GnsDZ+Ly0kx2+l dg5z9Uu0U5ky1zRIMbGnIFIJYeinzjmh29aDDwO+O5CiIyeMehonXscN031MSvBpQPTc/e 6iWkypqgy16FPiJPzs904AfjZujd65DepRUL57qbfz9EQs6PXP8ER7TOH5r4gnb3jHLUiI ZrmB8LGpnu442BG1s98Oj9eg== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 5a4c89dd (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Fri, 14 Jan 2022 02:07:11 +0000 (UTC) References: <87ee5bcqhy.fsf@nckx> <87ee5bwdzw.fsf@laura> <87a6fzchid.fsf@nckx> <87bl0fw076.fsf@laura> From: Tobias Geerinckx-Rice Date: Fri, 14 Jan 2022 03:05:29 +0100 In-reply-to: <87bl0fw076.fsf@laura> BIMI-Selector: v=BIMI1; s=default; Message-ID: <871r1bcbo8.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Host-Lookup-Failed: Reverse DNS lookup failed for 2a02:c205:2020:6054::1 (failed) Received-SPF: pass client-ip=2a02:c205:2020:6054::1; envelope-from=me@tobias.gr; helo=tobias.gr X-Spam_score_int: -12 X-Spam_score: -1.3 X-Spam_bar: - X-Spam_report: (-1.3 / 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, RDNS_NONE=0.793, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no 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 Olivier Dion =E5=86=99=E9=81=93=EF=BC=9A > It's not like if > `stddata` is some common knowledge outside of the PowerShell=20 > world. FWIW I had never heard of it. I'll admit it's not a good start in=20 life. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCYeDa5w0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW15+9UA/0lq/rGykgkPZhHTZvysZeOMi8+Mf0qqZowIviRc j1MWAQCTP8XYJhfBL53dJj7lUMMhNdo/thfJnVy2/BY2zhT1Aw== =phbs -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 14 17:34:45 2022 Received: (at control) by debbugs.gnu.org; 14 Jan 2022 22:34:45 +0000 Received: from localhost ([127.0.0.1]:38495 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8V9g-0007tF-Pt for submit@debbugs.gnu.org; Fri, 14 Jan 2022 17:34:44 -0500 Received: from wout5-smtp.messagingengine.com ([64.147.123.21]:40873) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8V9b-0007sw-5E for control@debbugs.gnu.org; Fri, 14 Jan 2022 17:34:42 -0500 Received: from compute2.internal (compute2.nyi.internal [10.202.2.46]) by mailout.west.internal (Postfix) with ESMTP id 0C5E13201DA2; Fri, 14 Jan 2022 17:34:32 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute2.internal (MEProxy); Fri, 14 Jan 2022 17:34:33 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:message-id:mime-version:content-type; s=mesmtp; bh=gbmV5vbpZY3IbJKdgCPy/qE/5VFsnH9igpOJ+b94jA4=; b=ILBKThxiBJgC 0ZZDP+Cra5ySDYmsW9PHMJQdPWccq27mOC5T1td4fBMW8VnHkFTT+0Xo6KONNwfC +ofYYU6A0WThWPiOvSbetUNoivfBaD+KC925mzsFLYrnqjrCNlugUMysDCVpEIBG yLWEV1rttaCxeb8RX4Bd43beJ40cE60= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:message-id :mime-version:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=gbmV5vbpZY3IbJKdgCPy/qE/5VFsnH9igpOJ+b94j A4=; b=ZTxjvW66Xa+t8ziHPeasNgQFqhFr4mb6WP00ztyc0A59hJ2QBS3D6KCUA w/KolpJ/ORlJbvf3cg+UVDhsfz6l49OCCvR3htsnsqCeRY86d5N5qAHFJLn/i/PK ztd1LL6iLTJCncddszW5uORPYg16yIzz1LzmhaPHt/FGEcGa2HG2t7KtMAzEBGrb fDXyIHtZt6/yfdAx9d9NMvYLYFaFi/Bf8rBR5KB4IUoxHFiwSJrbe7Gtzm73a8n0 DcowZLql0p0g6cLU67IcPjarcjQyJ/ZJOTG1CEZDWkU08XWp6/x01HlMkvlU2qrj w94627AgaHqoBqPhveulr3qoU21jg== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrtdehgdduiedvucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne fgmhhpthihuchsuhgsjhgvtghtucdluddtmdenucfjughrpeffhffvkfggtggusehttder tddttddvnecuhfhrohhmpefnvghoucfhrghmuhhlrghrihcuoehlvghosehfrghmuhhlrg hrihdrnhgrmhgvqeenucggtffrrghtthgvrhhnpefhjeeigfefvedvfeetheegledtkeev uddtgedtudeiteehteegvdefffduffefffenucevlhhushhtvghrufhiiigvpedtnecurf grrhgrmhepmhgrihhlfhhrohhmpehlvghosehfrghmuhhlrghrihdrnhgrmhgv X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA for ; Fri, 14 Jan 2022 17:34:32 -0500 (EST) Date: Fri, 14 Jan 2022 17:34:29 -0500 From: Leo Famulari To: GNU bug tracker automated control server Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: reassign 53238 guix retitle 53238 password-store fails to build with tree version 2 merge 53238 53272 Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [64.147.123.21 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [64.147.123.21 listed in wl.mailspike.net] 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 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.3 (/) reassign 53238 guix retitle 53238 password-store fails to build with tree version 2 merge 53238 53272 From unknown Thu Aug 14 22:20:50 2025 X-Loop: help-debbugs@gnu.org Subject: bug#53238: [PATCH] gnu: tree: Remove stddata feature. Resent-From: Tobias Geerinckx-Rice Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Sat, 15 Jan 2022 14:40:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 53238 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: Olivier Dion Cc: 53238@debbugs.gnu.org, guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.164225758312154 (code B ref -1); Sat, 15 Jan 2022 14:40:02 +0000 Received: (at submit) by debbugs.gnu.org; 15 Jan 2022 14:39:43 +0000 Received: from localhost ([127.0.0.1]:39592 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8kDX-00039y-MS for submit@debbugs.gnu.org; Sat, 15 Jan 2022 09:39:43 -0500 Received: from lists.gnu.org ([209.51.188.17]:38714) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8kDU-00039g-2m for submit@debbugs.gnu.org; Sat, 15 Jan 2022 09:39:41 -0500 Received: from eggs.gnu.org ([209.51.188.92]:45596) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8kDT-00025l-Mu for guix-patches@gnu.org; Sat, 15 Jan 2022 09:39:39 -0500 Received: from [2a02:c205:2020:6054::1] (port=41440 helo=tobias.gr) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8kDR-0005UD-T8 for guix-patches@gnu.org; Sat, 15 Jan 2022 09:39:39 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=9F8HWunjWphgV jd/SDyPJXqRW+AENYWcEv9Sk9+ECmw=; h=in-reply-to:date:subject:cc:to: from:references; d=tobias.gr; b=QDfSWmZGOhNGE5CVaAPK4wMRajYmIe7aqgjX34 Au9NTXdfOYm6nlep0w6l1Oinh9xP0RikcEkclDUKydQBrdIUWD3Zkls+OJ4ZerUUeWK6Zp dYyAXbTjPV+jhv6GIQbuNH0iYwKzQnWLtnvpNTDHU2DA4mlHEFnDgE/SIYF+R8spODWx1S qn3LMOWof9sw9oAe/U3LG9ArVwe784HwbWk1FQGi5felEhP6stUfQNpOAfFsJt3GrDJjv/ D+ilBo5ZaehvDi3i6LZtgXW9Fa1qothvsxre0UlZDf0qqACoEs5k/r8C2XW0V1iu/DEcGS LuF+lHUlBGGhDod/wOAf3XeA== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 4bd074b2 (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Sat, 15 Jan 2022 14:39:32 +0000 (UTC) References: <87ee5bcqhy.fsf@nckx> <87ee5bwdzw.fsf@laura> <87a6fzchid.fsf@nckx> From: Tobias Geerinckx-Rice Date: Sat, 15 Jan 2022 15:37:04 +0100 In-reply-to: <87a6fzchid.fsf@nckx> BIMI-Selector: v=BIMI1; s=default; Message-ID: <87pmotm58x.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Host-Lookup-Failed: Reverse DNS lookup failed for 2a02:c205:2020:6054::1 (failed) Received-SPF: pass client-ip=2a02:c205:2020:6054::1; envelope-from=me@tobias.gr; helo=tobias.gr X-Spam_score_int: -12 X-Spam_score: -1.3 X-Spam_bar: - X-Spam_report: (-1.3 / 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, RDNS_NONE=0.793, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no 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 Olivier, Maxim(no -e, sorry! :-), Going by the number of bug reports, password-store is more popular=20 than I thought. Tobias Geerinckx-Rice =E5=86=99=E9=81=93=EF=BC=9A > I was going to apply the patch below to fix the password-store > package, but Maxime just submitted another version which I=20 > prefer. I'd > rather not provide two trees in Guix. I haven't changed my mind, but I did push the tree-1 solution as a=20 =E2=80=98temporary fix=E2=80=99 since it's the least invasive. If Maxim's patch LGTeveryone, please go ahead and replace. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCYeLc7g0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW15bEoA/1uf887e6ABjyEGXn4UJXWrZ/Ctd3VRr9c+oD6bO 8B2YAP4zyT/AWS8diYrwDVd8z4Amd/q537363cLTw59pe2qzBw== =+VHt -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 15 14:50:11 2022 Received: (at control) by debbugs.gnu.org; 15 Jan 2022 19:50:11 +0000 Received: from localhost ([127.0.0.1]:41935 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8p3y-0008Nr-VJ for submit@debbugs.gnu.org; Sat, 15 Jan 2022 14:50:11 -0500 Received: from tobias.gr ([80.241.217.52]:34102) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8p3w-0008Ng-LY for control@debbugs.gnu.org; Sat, 15 Jan 2022 14:50:09 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=X1udWioEgzBwM SKzT7VXi5EKg6DYMfsL++FO7osdD1U=; h=date:to:from; d=tobias.gr; b=Ihny0e 7pXYi/rTDo9d2A+WPL4M0cMzytfRntUhp0c5NyCDQhWop5EGXN84E24mQjt6NsqwxMtRQt nRxvIvv79IvCRUqfSEjTdEHAN7SIiIgdVv8JEH5jxSftUAkEnU4y/GbpEsgFyk4IA4RwBr /r482cQTjde8B76sD/oe5jTEkV3UvSznDr+m/6E3O4LYs1m4idVMBja2lsFfE3aVXSaE+1 KbDPSj09lp5smNg28eGNRUNNxpgeXdW/lO2h76Du+EMbQViCukQmUS5LFSMtLhuv5yVkKW CKjec/jSfeqi9nWUJfHGCPY2QI07RvNCJ/dkmTMKCUwOlpCJEqynU+bA== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id a2aaf35c (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO) for ; Sat, 15 Jan 2022 19:50:04 +0000 (UTC) From: Tobias Geerinckx-Rice To: GNU Debbugs Date: Sat, 15 Jan 2022 20:50:59 +0100 BIMI-Selector: v=BIMI1; s=default; Message-ID: <87zgnw4w23.fsf@nckx> MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: merge 53238 53288 Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject 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: 1.0 (+) merge 53238 53288 From unknown Thu Aug 14 22:20:50 2025 X-Loop: help-debbugs@gnu.org Subject: bug#53238: [PATCH] gnu: tree: Remove stddata feature. Resent-From: Marius Bakke Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Sun, 16 Jan 2022 17:05:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 53238 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: Maxim Cournoyer , Olivier Dion Cc: Tobias Geerinckx-Rice , 53238@debbugs.gnu.org Received: via spool by 53238-submit@debbugs.gnu.org id=B53238.16423526799865 (code B ref 53238); Sun, 16 Jan 2022 17:05:02 +0000 Received: (at 53238) by debbugs.gnu.org; 16 Jan 2022 17:04:39 +0000 Received: from localhost ([127.0.0.1]:44150 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n98xH-0002Yz-Du for submit@debbugs.gnu.org; Sun, 16 Jan 2022 12:04:39 -0500 Received: from eggs.gnu.org ([209.51.188.92]:56522) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n98xD-0002Yi-97 for 53238@debbugs.gnu.org; Sun, 16 Jan 2022 12:04:34 -0500 Received: from [2001:470:142:3::e] (port=50126 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 1n98x7-0006go-6C; Sun, 16 Jan 2022 12:04:25 -0500 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=H4BF+36VdH1JD1r5Aqhvf7DytkqXZhhWr8CO8O7xZX8=; b=GjAiW49Y91MZko99QSAZ Vb03GueMjQlvEUgQJWXQ4T7Np5yMUYGw7NWFa1Gk9BvzkRJuDajx6NWuPtUd8xIFEVR/MPjbYhyVz MEY75cqQTeOgPJvKC8uc0ivsP0n0XtBmaYBnyAVdOkQBLMrvYomthNUjnVle8iKFtprH9YiviITcs RpJR90qc0O73ujGm9YWlGWz5ICzBQ9T0X7aVCoh9aZLonRJCLiSHKOeWgKjZiwXoFDgaIg399uU5L cqrnPfqzUwgfu+1A0gSlRrOtK7J8+5foZYyeKvYJrNsncn21RS84bQErCyy+nhZzVPSlk2OEJeky/ 1yN31FcNckjssg==; Received: from host-37-191-236-102.lynet.no ([37.191.236.102]:57220 helo=localhost) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n98x7-0006iG-A0; Sun, 16 Jan 2022 12:04:25 -0500 From: Marius Bakke In-Reply-To: <87r19bxofo.fsf_-_@gmail.com> References: <87ee5bcqhy.fsf@nckx> <87ee5bwdzw.fsf@laura> <87r19bxofo.fsf_-_@gmail.com> Date: Sun, 16 Jan 2022 18:04:22 +0100 Message-ID: <877daz8ve1.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" 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: -1.0 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello! Apologies for missing this discussion earlier... Maxim Cournoyer skriver: > Hi, > > Olivier Dion writes: > >> On Thu, 13 Jan 2022, Tobias Geerinckx-Rice wrote: >>> Olivier, >>> >>> Thanks again for tracking down this weird bug! >>> >>> Olivier Dion via Guix-patches via =E5=86=99=E9=81=93=EF=BC=9A >>>> This feature breaks some UNIX utilities. Fix it by disabling=20 >>>> the feature. >>> >>> Hm=E2=80=A6 How long would we have to carry this fork? My fear is we'= d=20 >>> do so indefinitely. >> >> I've contacted the maintainer asking for removal of the feature in its >> next release. I'm not sure if this will have some impact. Feel free to >> do the same at , maybe adding more weight >> in the balance would help. >> >>> How about creating a (possibly hidden) tree-without-stddata=20 >>> package variant, to use as input to packages who currently break=20 >>> with this feature enabled? That lets us refcount the need for it. >> >> It's more than just packages, it's also user scripts that can be broken >> and believe me when I say that this is not an easy bug to track down ;-). > > I'm on the fence about this, it does indeed seem an undesirable change, > especially since there's a --json option, but I am not the author of the > 'tree' software. After some consideration (and emails with tree author), I think the best solution is to patch 'password-store' so that it DTRT even in the presence of fd 3. I sent a patch to that effect upstream: https://lists.zx2c4.com/pipermail/password-store/2022-January/004563.html ...and have local patches to apply that in Guix and revert bd4f314bbacaaa56751be3a4769f2082be747d24 and a40ac6271578ea061a8a07b2adbd6032a690ca70. WDYT? --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEARYKAC0WIQRNTknu3zbaMQ2ddzTocYulkRQQdwUCYeRQFg8cbWFyaXVzQGdu dS5vcmcACgkQ6HGLpZEUEHeJfgD+Okk6I9IHmRBtxcSgc1WNFLC0/Nwe2obqFYj+ A3fHQEkBALGIax0lOnjRXAtZkxx1B22uM9RXWwEE8w8pseblFqUC =AHF+ -----END PGP SIGNATURE----- --=-=-=-- From unknown Thu Aug 14 22:20:50 2025 X-Loop: help-debbugs@gnu.org Subject: bug#53238: [PATCH] gnu: tree: Remove stddata feature. Resent-From: Leo Famulari Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Sun, 16 Jan 2022 18:07:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 53238 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: Marius Bakke Cc: Olivier Dion , 53238@debbugs.gnu.org, Maxim Cournoyer Received: via spool by 53238-submit@debbugs.gnu.org id=B53238.164235638724318 (code B ref 53238); Sun, 16 Jan 2022 18:07:01 +0000 Received: (at 53238) by debbugs.gnu.org; 16 Jan 2022 18:06:27 +0000 Received: from localhost ([127.0.0.1]:44214 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n99v8-0006KA-Rk for submit@debbugs.gnu.org; Sun, 16 Jan 2022 13:06:27 -0500 Received: from wout4-smtp.messagingengine.com ([64.147.123.20]:37899) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n99us-0006Ji-Kh for 53238@debbugs.gnu.org; Sun, 16 Jan 2022 13:06:25 -0500 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.west.internal (Postfix) with ESMTP id 9723B3200C14; Sun, 16 Jan 2022 13:06:04 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute5.internal (MEProxy); Sun, 16 Jan 2022 13:06:05 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-transfer-encoding:in-reply-to; s=mesmtp; bh=+C6l0t0/c0EuOaFaSpEI9n2BMf7SUFZK6ATTb+RwQcA=; b=B8xnQtmS2ZV3 gircbevJPLLzGqy06WmT1V8WLmc/WrnFFmi03E85s6oqArE95wqqeLefR1a5aAdI 6HYAvhQthIyRMQlJhRoj256xl0nTr4bWWRyd+NCNeRWSy7uTpKimaJF9LKqvSDXa bBoCiyOmHUtNs33E4C1YxpXZC922WiE= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=+C6l0t0/c0EuOaFaSpEI9n2BMf7SUFZK6ATTb+RwQ cA=; b=AP4EOLPGo9oxKKt7J1q/qcDDGJxEX19MsSayNagqQ69G6/vTEFWT7Dk1f TJTNY6UITJlohmpqFSIq19MiEs1wtAemkDzSKofBSimqMP6xw4DPa9PrLZ4t1A57 DImIgmQgAuKK92N8476ZJE/p5OkKk3yVidE08145iuLrvgwz/b/u/1AdaVV8/L+Q /jm238Lu+ndVXQ/hy9um2zC5z8nBeuFr4WuMY7Jpnm0simr4mUvYjWHFIAvI5JV1 AYhLR+6MWC6qbwGiT0Rtql+eVbss9Qtzsl7hPeIhy7MVhxymGvk683naFnPRg7Q4 o7wp/qON9oT2EXAW8BRnMIMH62Deg== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrtdelgddutdekucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepfffhvffukfhfgggtugfgjgesthhqredttddtvdenucfhrhhomhepnfgvohcu hfgrmhhulhgrrhhiuceolhgvohesfhgrmhhulhgrrhhirdhnrghmvgeqnecuggftrfgrth htvghrnhepfeeitdfgieelveegvedtveektefggeffkeefgfefveffleehgfeifeeufffh jeelnecuffhomhgrihhnpeiigidvtgegrdgtohhmnecuvehluhhsthgvrhfuihiivgeptd enucfrrghrrghmpehmrghilhhfrhhomheplhgvohesfhgrmhhulhgrrhhirdhnrghmvg X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sun, 16 Jan 2022 13:06:03 -0500 (EST) Date: Sun, 16 Jan 2022 13:06:01 -0500 From: Leo Famulari Message-ID: References: <87ee5bcqhy.fsf@nckx> <87ee5bwdzw.fsf@laura> <87r19bxofo.fsf_-_@gmail.com> <877daz8ve1.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: <877daz8ve1.fsf@gnu.org> 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.7 (-) On Sun, Jan 16, 2022 at 06:04:22PM +0100, Marius Bakke wrote: > After some consideration (and emails with tree author), I think the best > solution is to patch 'password-store' so that it DTRT even in the > presence of fd 3. >=20 > I sent a patch to that effect upstream: >=20 > https://lists.zx2c4.com/pipermail/password-store/2022-January/004563.ht= ml >=20 > ...and have local patches to apply that in Guix and revert > bd4f314bbacaaa56751be3a4769f2082be747d24 and > a40ac6271578ea061a8a07b2adbd6032a690ca70. >=20 > WDYT? Definitely, this is the right approach. I didn't participate in this bugfix but I think that removing or adding features to packages is not something we should be doing at the level of the distro, except with upstream coordination. Reporting this issue to password-store should have been one of the first steps we took. From unknown Thu Aug 14 22:20:50 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: Olivier Dion Subject: bug#53238: closed (Re: bug#53238: [PATCH] gnu: tree: Remove stddata feature.) Message-ID: References: <87sftm6z6x.fsf@gnu.org> X-Gnu-PR-Message: they-closed 53238 X-Gnu-PR-Package: guix X-Gnu-PR-Keywords: patch Reply-To: 53238@debbugs.gnu.org Date: Mon, 17 Jan 2022 17:38:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1642441082-2169-1" This is a multi-part message in MIME format... ------------=_1642441082-2169-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #53238: password-store fails to build with tree version 2 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 53238@debbugs.gnu.org. --=20 53238: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D53238 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1642441082-2169-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 53238-done) by debbugs.gnu.org; 17 Jan 2022 17:37:36 +0000 Received: from localhost ([127.0.0.1]:47855 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n9Vwm-0000Y2-7w for submit@debbugs.gnu.org; Mon, 17 Jan 2022 12:37:36 -0500 Received: from eggs.gnu.org ([209.51.188.92]:47590) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n9Vwk-0000Xn-Gp for 53238-done@debbugs.gnu.org; Mon, 17 Jan 2022 12:37:34 -0500 Received: from [2001:470:142:3::e] (port=43600 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 1n9Vwe-0003UM-SF; Mon, 17 Jan 2022 12:37:28 -0500 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=TbbP7JAvDy6OYFhLvESmnH/7OeS23p5s/1amfGBSikY=; b=HhxuP2x2i8dVEbKQTzN3 c74h3CDX183mGPOvGweKGZnTLtaWswxYX2QTo8qJmbsSXEvmq6VsrfVUTmanwP8clV8gbGnJHVH9X /Cl5QSdHOji1dva7ar9hPw6WUPfcR3KjAUejJ5r8uNZVdyqWes0YjN/cS8TsRokZ6ykNjgmBs4kGl ahbkvE4CB5MFORCvlILogn55re4YDXGoWdZXUvlWjbNMpTst5IbPPExfjs27mLsQJmt4MZ+Sslbkh CJhv0+UmGH3vI/kxXT07p28G84jrEmQHqtCjHDQ3BmU6o0NHxsPxF1XpVBC/FDD3yc4eNI+cpV3vw J6tjHWYAiCLLeg==; Received: from host-37-191-236-102.lynet.no ([37.191.236.102]:57248 helo=localhost) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n9Vwe-0000Wk-74; Mon, 17 Jan 2022 12:37:29 -0500 From: Marius Bakke To: Leo Famulari Subject: Re: bug#53238: [PATCH] gnu: tree: Remove stddata feature. In-Reply-To: References: <87ee5bcqhy.fsf@nckx> <87ee5bwdzw.fsf@laura> <87r19bxofo.fsf_-_@gmail.com> <877daz8ve1.fsf@gnu.org> Date: Mon, 17 Jan 2022 18:37:26 +0100 Message-ID: <87sftm6z6x.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 53238-done Cc: Olivier Dion , 53238-done@debbugs.gnu.org, Maxim Cournoyer 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 (---) --=-=-= Content-Type: text/plain Upstream fix pushed in 5da4cbfbd94163f87f188355e5490f04dd6864c2. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEARYKAC0WIQRNTknu3zbaMQ2ddzTocYulkRQQdwUCYeWpVg8cbWFyaXVzQGdu dS5vcmcACgkQ6HGLpZEUEHcAigD9ENn/9k1Z5q3KCnbTFicAQy9hpYIDTx+fFlQk sjZqRwkBAP8tU9U8hVNjAnbzzH/pX9yYGdRDJ+Vb6EyqPn42ziAB =yXs0 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1642441082-2169-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 13 Jan 2022 20:33:42 +0000 Received: from localhost ([127.0.0.1]:34686 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n86n0-0001om-DB for submit@debbugs.gnu.org; Thu, 13 Jan 2022 15:33:42 -0500 Received: from lists.gnu.org ([209.51.188.17]:52342) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n86mv-0001oY-EX for submit@debbugs.gnu.org; Thu, 13 Jan 2022 15:33:41 -0500 Received: from eggs.gnu.org ([209.51.188.92]:48218) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n86mu-0007zu-3g for guix-patches@gnu.org; Thu, 13 Jan 2022 15:33:37 -0500 Received: from smtp.polymtl.ca ([132.207.4.11]:42042) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n86mq-00066q-Cw for guix-patches@gnu.org; Thu, 13 Jan 2022 15:33:34 -0500 Received: from laura.hitronhub.home (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 20DKXMB9003161 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT); Thu, 13 Jan 2022 15:33:29 -0500 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 20DKXMB9003161 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=polymtl.ca; s=default; t=1642106010; bh=ASeLr+ajKDXr1obrM9FFYIcIvZ08oaYL6guaEJfOwug=; h=From:To:Cc:Subject:Date:From; b=GT2NKY9xWDJkkkg6IyBXAGYx/5IuKH0as/cWXFuTke4mJrOjl+2I7/S/u8nsPQPDg 7rgwVSiAkirTyYfFShJtx/M8rsZv6WJqH+/T/FeZB7H0lJNe+EFFg+/Z5+/D44rZyU WY753mGP76jW5SWc5pcF0FF7DSLdSE+0IGCestfQ= From: Olivier Dion To: guix-patches@gnu.org Subject: [PATCH] gnu: tree: Remove stddata feature. Date: Thu, 13 Jan 2022 15:33:21 -0500 Message-Id: X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Poly-FromMTA: (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) at Thu, 13 Jan 2022 20:33:22 +0000 Received-SPF: pass client-ip=132.207.4.11; envelope-from=olivier.dion@polymtl.ca; helo=smtp.polymtl.ca 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_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Olivier Dion 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/admin.scm (tree) [arguments]: Add 'remove-stddata-feature phase after 'unpack phase. Since version 2.0.0, there's a new feature call `stddata`. >From the ChangeLog: -------------------------------------------------------------------------------- Output un-indented JSON on file descriptor 3 ("stddata") automatically if file descriptor 3 is present (currently Linux only.) Maybe switch to BSON. -------------------------------------------------------------------------------- This feature breaks some UNIX utilities. Fix it by disabling the feature. --- gnu/packages/admin.scm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index f11374a439..3d4909176a 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2408,6 +2408,14 @@ (define-public tree (list #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'remove-stddata-feature + (lambda _ + (substitute* "tree.h" + (("# define STDDATA_FILENO 3") + "")) + (substitute* "tree.c" + (("#ifdef __linux__") + "#ifdef STDDATA_FILENO")))) (delete 'configure)) ; No configure script. #:tests? #f ; No check target. #:make-flags -- 2.34.0 ------------=_1642441082-2169-1-- From unknown Thu Aug 14 22:20:50 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: Zacchaeus Scheffer Subject: bug#53272: closed (Re: bug#53238: [PATCH] gnu: tree: Remove stddata feature.) Message-ID: References: <87sftm6z6x.fsf@gnu.org> X-Gnu-PR-Message: they-closed 53272 X-Gnu-PR-Package: guix X-Gnu-PR-Keywords: patch Reply-To: 53272@debbugs.gnu.org Date: Mon, 17 Jan 2022 17:38:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1642441082-2169-3" This is a multi-part message in MIME format... ------------=_1642441082-2169-3 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #53238: Password-store Not Building 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 53272@debbugs.gnu.org. --=20 53238: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D53238 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1642441082-2169-3 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 53238-done) by debbugs.gnu.org; 17 Jan 2022 17:37:36 +0000 Received: from localhost ([127.0.0.1]:47855 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n9Vwm-0000Y2-7w for submit@debbugs.gnu.org; Mon, 17 Jan 2022 12:37:36 -0500 Received: from eggs.gnu.org ([209.51.188.92]:47590) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n9Vwk-0000Xn-Gp for 53238-done@debbugs.gnu.org; Mon, 17 Jan 2022 12:37:34 -0500 Received: from [2001:470:142:3::e] (port=43600 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 1n9Vwe-0003UM-SF; Mon, 17 Jan 2022 12:37:28 -0500 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=TbbP7JAvDy6OYFhLvESmnH/7OeS23p5s/1amfGBSikY=; b=HhxuP2x2i8dVEbKQTzN3 c74h3CDX183mGPOvGweKGZnTLtaWswxYX2QTo8qJmbsSXEvmq6VsrfVUTmanwP8clV8gbGnJHVH9X /Cl5QSdHOji1dva7ar9hPw6WUPfcR3KjAUejJ5r8uNZVdyqWes0YjN/cS8TsRokZ6ykNjgmBs4kGl ahbkvE4CB5MFORCvlILogn55re4YDXGoWdZXUvlWjbNMpTst5IbPPExfjs27mLsQJmt4MZ+Sslbkh CJhv0+UmGH3vI/kxXT07p28G84jrEmQHqtCjHDQ3BmU6o0NHxsPxF1XpVBC/FDD3yc4eNI+cpV3vw J6tjHWYAiCLLeg==; Received: from host-37-191-236-102.lynet.no ([37.191.236.102]:57248 helo=localhost) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n9Vwe-0000Wk-74; Mon, 17 Jan 2022 12:37:29 -0500 From: Marius Bakke To: Leo Famulari Subject: Re: bug#53238: [PATCH] gnu: tree: Remove stddata feature. In-Reply-To: References: <87ee5bcqhy.fsf@nckx> <87ee5bwdzw.fsf@laura> <87r19bxofo.fsf_-_@gmail.com> <877daz8ve1.fsf@gnu.org> Date: Mon, 17 Jan 2022 18:37:26 +0100 Message-ID: <87sftm6z6x.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 53238-done Cc: Olivier Dion , 53238-done@debbugs.gnu.org, Maxim Cournoyer 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 (---) --=-=-= Content-Type: text/plain Upstream fix pushed in 5da4cbfbd94163f87f188355e5490f04dd6864c2. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEARYKAC0WIQRNTknu3zbaMQ2ddzTocYulkRQQdwUCYeWpVg8cbWFyaXVzQGdu dS5vcmcACgkQ6HGLpZEUEHcAigD9ENn/9k1Z5q3KCnbTFicAQy9hpYIDTx+fFlQk sjZqRwkBAP8tU9U8hVNjAnbzzH/pX9yYGdRDJ+Vb6EyqPn42ziAB =yXs0 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1642441082-2169-3 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 14 Jan 2022 21:48:44 +0000 Received: from localhost ([127.0.0.1]:38471 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8UR6-0006gJ-0Y for submit@debbugs.gnu.org; Fri, 14 Jan 2022 16:48:44 -0500 Received: from lists.gnu.org ([209.51.188.17]:39392) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8UR0-0006g6-HD for submit@debbugs.gnu.org; Fri, 14 Jan 2022 16:48:38 -0500 Received: from eggs.gnu.org ([209.51.188.92]:59374) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8UR0-0003tc-7N for bug-guix@gnu.org; Fri, 14 Jan 2022 16:48:34 -0500 Received: from [2a00:1450:4864:20::530] (port=39559 helo=mail-ed1-x530.google.com) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1n8UQw-0006Y6-TB for bug-guix@gnu.org; Fri, 14 Jan 2022 16:48:33 -0500 Received: by mail-ed1-x530.google.com with SMTP id c71so38767089edf.6 for ; Fri, 14 Jan 2022 13:48:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:from:date:message-id:subject:to; bh=5K0bOMR5eYjfs7ERskiM4ShWJBvRR9kqCdNlh/JTglY=; b=d6PVv7LmdqWUYiYLVbe0KGA53AtAik512jlEBOCZ/Bv8pWqXs9Fz8DkTlq0lf+fkak RwbzehzxMglhHuiGh5mkPuF1kGAXNzl3/Y3SmJ6/3G8VEkA7e6sla9pcD78EJ2WixDkb Db/Kftt+6PUEqu0o4KHksIlQN25NzbtPCjAfmjGHTUx25H729x++FiEwVijPPwncuYLc nPlLrQzRr6qemgRGSd2xaKpDMWbOH49fbSN+40owxD5E59lQx6E0GVCVpXhTo4DZ4Jc7 x6eNav4++hOtaIQaubivNy1pejH34H1Wx8Objj3KEO0PNzmWC95+0MyiMSme78zkZc/0 zhvg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=5K0bOMR5eYjfs7ERskiM4ShWJBvRR9kqCdNlh/JTglY=; b=3hGd+qb+wDCjpAeUGAJSDiSDKWle5Oeksy1bD7w8CTWKH9dnotIRgNYFDW8QvpHTly cglNd0lzDYlRhJrg2gO64tf91LGNfvZsLvTbdkX5dExubeAHgrYTlEopWkeMASpxXb7I G13EQEECsnsCEHqCKuu4JZEAyybdpQePhjfnY8xM0iT2bsGH+luTcCVQWV2XWsjNXX/M 0I4o5vnHi9xCizxGCR1Fu5xXBxoebUrNOMkIeDgnJx22UAd5HjzAScBaGVlOv71EktUQ xuw7WUsrMEr3BNdUID/QnEkMHl24OmJkKSig1+3VRUeJGOcEQE3fuAkHQH2+8pyfjknB 4MNA== X-Gm-Message-State: AOAM530FhqD1DlKXfv0jgTU8ztsZ6Bl9rawhhnACEw/ifU3TRiX4Uwfj xj8P1culaSvNnrtRqqzjmd+CmQ1cQvcHQbj8pNVSJK0pzngpMA== X-Google-Smtp-Source: ABdhPJzHe+txA6A18RR/HJOzcKVr00TCyj0bFq2Pku6Rj85zBzLWIw00XoLu/Aa8PpUutslAgco0/6acGqcy3FPdwzI= X-Received: by 2002:a05:6402:2550:: with SMTP id l16mr10547409edb.83.1642196908511; Fri, 14 Jan 2022 13:48:28 -0800 (PST) MIME-Version: 1.0 From: Zacchaeus Scheffer Date: Fri, 14 Jan 2022 16:48:17 -0500 Message-ID: Subject: Password-store Not Building To: bug-guix@gnu.org Content-Type: multipart/mixed; boundary="00000000000062339405d591c3c5" X-Host-Lookup-Failed: Reverse DNS lookup failed for 2a00:1450:4864:20::530 (failed) Received-SPF: pass client-ip=2a00:1450:4864:20::530; envelope-from=zaccysc@gmail.com; helo=mail-ed1-x530.google.com X-Spam_score_int: 6 X-Spam_score: 0.6 X-Spam_bar: / X-Spam_report: (0.6 / 5.0 requ) BAYES_20=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, HTML_MESSAGE=0.001, PDS_HP_HELO_NORDNS=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RDNS_NONE=0.793, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -0.1 (/) 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 (--) --00000000000062339405d591c3c5 Content-Type: multipart/alternative; boundary="00000000000062339205d591c3c3" --00000000000062339205d591c3c3 Content-Type: text/plain; charset="UTF-8" Hi Guix! I've been having trouble updating for a couple of days because password-store won't build. I haven't seen others complain, and I think this package is widely used, so I'm a bit worried the problem is related to the fact that I haven't updated guix for some time... It fails with: command "make" "test" "CC=gcc" "PREFIX=/gnu/store/jyjm47609k160r2rcfaiwz3ncs0qjwry-password-store-1.7.4" "WITH_ALLCOMP=yes" "BASHCOMPDIR=/gnu/store/jyjm47609k160r2rcfaiwz3ncs0qjwry-password-store-1.7.4/etc/bash_completion.d" failed with status 2 full log attached. -Zacchaeus --00000000000062339205d591c3c3 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
Hi Guix!

I've been having troub= le updating for a couple of days because password-store won't build.=C2= =A0 I haven't seen others complain, and I think this package is widely = used, so I'm a bit worried the problem is related to the fact that I ha= ven't updated guix for some time...

It fails w= ith:
command "make" "test" "CC=3Dgcc&quo= t; "PREFIX=3D/gnu/store/jyjm47609k160r2rcfaiwz3ncs0qjwry-password-stor= e-1.7.4" "WITH_ALLCOMP=3Dyes" "BASHCOMPDIR=3D/gnu/store= /jyjm47609k160r2rcfaiwz3ncs0qjwry-password-store-1.7.4/etc/bash_completion.= d" failed with status 2

full log attached.

-Zacchaeus
--00000000000062339205d591c3c3-- --00000000000062339405d591c3c5 Content-Type: application/x-bzip; name="gi05zpfkpcrlliqvkm4v5qbj143d2c-password-store-1.7.4.drv.bz2" Content-Disposition: attachment; filename="gi05zpfkpcrlliqvkm4v5qbj143d2c-password-store-1.7.4.drv.bz2" Content-Transfer-Encoding: base64 Content-ID: X-Attachment-Id: f_kyexiofn0 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 --00000000000062339405d591c3c5-- ------------=_1642441082-2169-3-- From unknown Thu Aug 14 22:20:50 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: nicholashubbard@posteo.net Subject: bug#53288: closed (Re: bug#53238: [PATCH] gnu: tree: Remove stddata feature.) Message-ID: References: <87sftm6z6x.fsf@gnu.org> <45daa1a922611f9dc7c714ab21066062@posteo.net> X-Gnu-PR-Message: they-closed 53288 X-Gnu-PR-Package: guix X-Gnu-PR-Keywords: patch Reply-To: 53288@debbugs.gnu.org Date: Mon, 17 Jan 2022 17:38:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1642441083-2169-5" This is a multi-part message in MIME format... ------------=_1642441083-2169-5 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #53238: password-store build failure 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 53288@debbugs.gnu.org. --=20 53238: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D53238 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1642441083-2169-5 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 53238-done) by debbugs.gnu.org; 17 Jan 2022 17:37:36 +0000 Received: from localhost ([127.0.0.1]:47855 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n9Vwm-0000Y2-7w for submit@debbugs.gnu.org; Mon, 17 Jan 2022 12:37:36 -0500 Received: from eggs.gnu.org ([209.51.188.92]:47590) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n9Vwk-0000Xn-Gp for 53238-done@debbugs.gnu.org; Mon, 17 Jan 2022 12:37:34 -0500 Received: from [2001:470:142:3::e] (port=43600 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 1n9Vwe-0003UM-SF; Mon, 17 Jan 2022 12:37:28 -0500 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=TbbP7JAvDy6OYFhLvESmnH/7OeS23p5s/1amfGBSikY=; b=HhxuP2x2i8dVEbKQTzN3 c74h3CDX183mGPOvGweKGZnTLtaWswxYX2QTo8qJmbsSXEvmq6VsrfVUTmanwP8clV8gbGnJHVH9X /Cl5QSdHOji1dva7ar9hPw6WUPfcR3KjAUejJ5r8uNZVdyqWes0YjN/cS8TsRokZ6ykNjgmBs4kGl ahbkvE4CB5MFORCvlILogn55re4YDXGoWdZXUvlWjbNMpTst5IbPPExfjs27mLsQJmt4MZ+Sslbkh CJhv0+UmGH3vI/kxXT07p28G84jrEmQHqtCjHDQ3BmU6o0NHxsPxF1XpVBC/FDD3yc4eNI+cpV3vw J6tjHWYAiCLLeg==; Received: from host-37-191-236-102.lynet.no ([37.191.236.102]:57248 helo=localhost) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n9Vwe-0000Wk-74; Mon, 17 Jan 2022 12:37:29 -0500 From: Marius Bakke To: Leo Famulari Subject: Re: bug#53238: [PATCH] gnu: tree: Remove stddata feature. In-Reply-To: References: <87ee5bcqhy.fsf@nckx> <87ee5bwdzw.fsf@laura> <87r19bxofo.fsf_-_@gmail.com> <877daz8ve1.fsf@gnu.org> Date: Mon, 17 Jan 2022 18:37:26 +0100 Message-ID: <87sftm6z6x.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 53238-done Cc: Olivier Dion , 53238-done@debbugs.gnu.org, Maxim Cournoyer 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 (---) --=-=-= Content-Type: text/plain Upstream fix pushed in 5da4cbfbd94163f87f188355e5490f04dd6864c2. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEARYKAC0WIQRNTknu3zbaMQ2ddzTocYulkRQQdwUCYeWpVg8cbWFyaXVzQGdu dS5vcmcACgkQ6HGLpZEUEHcAigD9ENn/9k1Z5q3KCnbTFicAQy9hpYIDTx+fFlQk sjZqRwkBAP8tU9U8hVNjAnbzzH/pX9yYGdRDJ+Vb6EyqPn42ziAB =yXs0 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1642441083-2169-5 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 15 Jan 2022 19:08:55 +0000 Received: from localhost ([127.0.0.1]:41760 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8oQ2-0004uu-IR for submit@debbugs.gnu.org; Sat, 15 Jan 2022 14:08:55 -0500 Received: from lists.gnu.org ([209.51.188.17]:33282) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8oBy-0004WQ-PJ for submit@debbugs.gnu.org; Sat, 15 Jan 2022 13:54:23 -0500 Received: from eggs.gnu.org ([209.51.188.92]:56456) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8oBx-0007VN-Eq for bug-guix@gnu.org; Sat, 15 Jan 2022 13:54:22 -0500 Received: from mout01.posteo.de ([185.67.36.65]:54465) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8oBu-0000RA-5p for bug-guix@gnu.org; Sat, 15 Jan 2022 13:54:21 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 78A7B240027 for ; Sat, 15 Jan 2022 19:54:15 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1642272855; bh=cTCZnXU3jXlyecyrP4zI18eQzWO74S3Ot23Q3VmXUW8=; h=Date:From:To:Subject:From; b=G87Ef4/1dQY8xjIbqry5IhT7TW2ijisUxkBgW+2sRzMPcbLiIMDfssQT8VmnryClE qHw0JrXaHYTTkQoKU8m05MFHP9bazfxA1AF9Y0p7W/ebFeg6W1lu6YhAmJhdqplkNw tb8Q22G2cfFhtnFaM7S6NJvb6cIRnBHUryhJiYwSDqIgq3yvQXxERxhIyjgW+L3aKs 0UOL5/KZxEgMNestHyRm4NxkCj5GybDqaDHS5aNznOzypTmZUax3dROi4ZoF2LbrnN CSXRCyJ9PiVXywgTAiT25jF7JwZfplnWQJn6lLT4U0JiLCXXr56i9qaOYouq25gZ9j 4wAaoW+zUOp8Q== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4JbnQH0YcVz9rxS for ; Sat, 15 Jan 2022 19:54:14 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Date: Sat, 15 Jan 2022 18:54:14 +0000 From: nicholashubbard@posteo.net To: bug-guix@gnu.org Subject: password-store build failure Message-ID: <45daa1a922611f9dc7c714ab21066062@posteo.net> Received-SPF: pass client-ip=185.67.36.65; envelope-from=nicholashubbard@posteo.net; helo=mout01.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_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sat, 15 Jan 2022 14:08:53 -0500 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 (--) I am new to guix and am not sure how to fix this on my own. I tried=20 adding grep as an input to the password-store package but I got the same=20 error. Here is all relevant information. [nick@S76guix ~]$ guix --version guix (GNU Guix) 3c43f2b4f54dead73ce19427eb1e364581b7f2e0 Copyright (C) 2022 the Guix authors License GPLv3+: GNU GPL version 3 or later=20 This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. [nick@S76guix ~]$ guix install password-store The following package will be installed: password-store 1.7.4 substitute: updating substitutes from 'https://ci.guix.gnu.org'...=20 100.0% substitute: updating substitutes from 'https://bordeaux.guix.gnu.org'...=20 100.0% The following derivations will be built: /gnu/store/fjqm0m6m5gsfiq2ap6nj9iyffbhn79pl-profile.drv /gnu/store/xkgi05zpfkpcrlliqvkm4v5qbj143d2c-password-store-1.7.4.drv building=20 /gnu/store/xkgi05zpfkpcrlliqvkm4v5qbj143d2c-password-store-1.7.4.drv... \ 'check' phasebuilder for=20 `/gnu/store/xkgi05zpfkpcrlliqvkm4v5qbj143d2c-password-store-1.7.4.drv'=20 failed with exit code 1 build of=20 /gnu/store/xkgi05zpfkpcrlliqvkm4v5qbj143d2c-password-store-1.7.4.drv=20 failed View build log at=20 '/var/log/guix/drvs/xk/gi05zpfkpcrlliqvkm4v5qbj143d2c-password-store-1.7.4= =2Edrv.bz2'. cannot build derivation=20 `/gnu/store/fjqm0m6m5gsfiq2ap6nj9iyffbhn79pl-profile.drv': 1=20 dependencies couldn't be built guix install: error: build of=20 `/gnu/store/fjqm0m6m5gsfiq2ap6nj9iyffbhn79pl-profile.drv' failed [nick@S76guix ~]$ sudo bzip2 -d=20 /var/log/guix/drvs/xk/gi05zpfkpcrlliqvkm4v5qbj143d2c-password-store-1.7.4= =2Edrv.bz2 sudo bzip2 -d=20 /var/log/guix/drvs/xk/gi05zpfkpcrlliqvkm4v5qbj143d2c-password-store-1.7.4= =2Edrv.bz2 [nick@S76guix ~]$ cat=20 /var/log/guix/drvs/xk/gi05zpfkpcrlliqvkm4v5qbj143d2c-password-store-1.7.4= =2Edrv WARNING: (guile-user): imported module (guix build utils) overrides core=20 binding `delete' starting phase `set-SOURCE-DATE-EPOCH' phase `set-SOURCE-DATE-EPOCH' succeeded after 0.0 seconds starting phase `set-paths' environment variable `PATH' set to=20 `/gnu/store/gdgzmbw0bqncr39yk1jxzfra93lyx2fc-dmenu-5.0/bin:/gnu/store/64d0m= xsjqifrpashlhyd3rf7zm2r709x-util-linux-2.37.1/bin:/gnu/store/64d0mxsjqifrpa= shlhyd3rf7zm2r709x-util-linux-2.37.1/sbin:/gnu/store/5c52n21a0an2hkwdj6ldpf= pss8z5v0v7-git-2.34.0/bin:/gnu/store/0snfzd41n430ddpq316j9v2z5fn2y62m-gnupg= -2.2.30/bin:/gnu/store/0snfzd41n430ddpq316j9v2z5fn2y62m-gnupg-2.2.30/sbin:/= gnu/store/jjx8kbxy0jj27sd29283pv30fy7ijil7-qrencode-4.1.1/bin:/gnu/store/wd= r544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/bin:/gnu/store/rzc7a8nm80m6by14icz06= cdw63cv813g-tree-2.0.1/bin:/gnu/store/9fmnpcq0misqd49ixpn5wrxgg4nkqn4y-whic= h-2.21/bin:/gnu/store/5j8sapa8xmara95sz0gx58wr8jmlg2rn-wl-clipboard-2.0.0/b= in:/gnu/store/nazq3k0qsq7r97b7z6w7drhgbxdfbwq7-xclip-0.13/bin:/gnu/store/06= zl8y4nwx63id3iw41abbqhvi2fynbc-xdotool-3.20160805.1/bin:/gnu/store/ikc2qn1h= 260f8mdhjz2cwndv2i7n753z-tar-1.34/bin:/gnu/store/v5l2251ck0r4n3w2rjw3l5dzyq= sb9zj1-gzip-1.10/bin:/gnu/store/w6zv2mz56wyxr471q38a3cmzm4iqimy8-bzip2-1.0= =2E8/bin:/gnu/store/72kpdq plq4nc87fm7ch47kxy3nlkzsyx-xz-5.2.5/bin:/gnu/store/jazwfsj2v41yih2yzw5nydqg= dz1hgfm4-file-5.39/bin:/gnu/store/s49sxmz9g4xmzz222cay9k04ziy3qgmj-diffutil= s-3.8/bin:/gnu/store/m96snvbl92ivkd32giqh5f3d21bc2n5x-patch-2.7.6/bin:/gnu/= store/l8l2y2dlya5rs9hfypmcb4saay7iwn0q-findutils-4.8.0/bin:/gnu/store/v45pj= c1yqmy59j9ff913p3ywn9qk4lqx-gawk-5.1.0/bin:/gnu/store/7cddr79rydhc1m4hxr921= mq17pz1jj3z-sed-4.8/bin:/gnu/store/ldkm5jwql0qsrfh3ax6rljjsrk0jzv7z-grep-3= =2E6/bin:/gnu/store/25gv43v5rm05i26z39ajrd6nsxa5r461-coreutils-8.32/bin:/gn= u/store/l8kxrs01lll3pzjrd590p45l8k045q6q-make-4.3/bin:/gnu/store/vx6vfbmmaz= vfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin:/gnu/store/k452f0r5bk6n0cbsf5= ndxbp5qcf6bpfw-ld-wrapper-0/bin:/gnu/store/6mqcv52gwn2dnbislgv9k99525mzmrrs= -binutils-2.37/bin:/gnu/store/vakvgvrb839igv16jkif4lmx11d25jqb-gcc-10.3.0/b= in:/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin:/gnu/store/2f= k1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/sbin' environment variable `GIT_SSL_CAINFO' unset environment variable `GIT_EXEC_PATH' set to=20 `/gnu/store/5c52n21a0an2hkwdj6ldpfpss8z5v0v7-git-2.34.0/libexec/git-core' environment variable `BASH_LOADABLES_PATH' unset environment variable `C_INCLUDE_PATH' set to=20 `/gnu/store/jjx8kbxy0jj27sd29283pv30fy7ijil7-qrencode-4.1.1/include:/gnu/st= ore/06zl8y4nwx63id3iw41abbqhvi2fynbc-xdotool-3.20160805.1/include:/gnu/stor= e/w6zv2mz56wyxr471q38a3cmzm4iqimy8-bzip2-1.0.8/include:/gnu/store/72kpdqplq= 4nc87fm7ch47kxy3nlkzsyx-xz-5.2.5/include:/gnu/store/jazwfsj2v41yih2yzw5nydq= gdz1hgfm4-file-5.39/include:/gnu/store/v45pjc1yqmy59j9ff913p3ywn9qk4lqx-gaw= k-5.1.0/include:/gnu/store/l8kxrs01lll3pzjrd590p45l8k045q6q-make-4.3/includ= e:/gnu/store/6mqcv52gwn2dnbislgv9k99525mzmrrs-binutils-2.37/include:/gnu/st= ore/vakvgvrb839igv16jkif4lmx11d25jqb-gcc-10.3.0/include:/gnu/store/2fk1gz2s= 7ppdicynscra9b19byrrr866-glibc-2.33/include:/gnu/store/99a2njzz22dkzd8pz75f= si5nbgv9ww0x-linux-libre-headers-5.10.35/include' environment variable `CPLUS_INCLUDE_PATH' set to=20 `/gnu/store/jjx8kbxy0jj27sd29283pv30fy7ijil7-qrencode-4.1.1/include:/gnu/st= ore/06zl8y4nwx63id3iw41abbqhvi2fynbc-xdotool-3.20160805.1/include:/gnu/stor= e/w6zv2mz56wyxr471q38a3cmzm4iqimy8-bzip2-1.0.8/include:/gnu/store/72kpdqplq= 4nc87fm7ch47kxy3nlkzsyx-xz-5.2.5/include:/gnu/store/jazwfsj2v41yih2yzw5nydq= gdz1hgfm4-file-5.39/include:/gnu/store/v45pjc1yqmy59j9ff913p3ywn9qk4lqx-gaw= k-5.1.0/include:/gnu/store/l8kxrs01lll3pzjrd590p45l8k045q6q-make-4.3/includ= e:/gnu/store/6mqcv52gwn2dnbislgv9k99525mzmrrs-binutils-2.37/include:/gnu/st= ore/vakvgvrb839igv16jkif4lmx11d25jqb-gcc-10.3.0/include/c++:/gnu/store/vakv= gvrb839igv16jkif4lmx11d25jqb-gcc-10.3.0/include:/gnu/store/2fk1gz2s7ppdicyn= scra9b19byrrr866-glibc-2.33/include:/gnu/store/99a2njzz22dkzd8pz75fsi5nbgv9= ww0x-linux-libre-headers-5.10.35/include' environment variable `LIBRARY_PATH' set to=20 `/gnu/store/jjx8kbxy0jj27sd29283pv30fy7ijil7-qrencode-4.1.1/lib:/gnu/store/= 06zl8y4nwx63id3iw41abbqhvi2fynbc-xdotool-3.20160805.1/lib:/gnu/store/w6zv2m= z56wyxr471q38a3cmzm4iqimy8-bzip2-1.0.8/lib:/gnu/store/72kpdqplq4nc87fm7ch47= kxy3nlkzsyx-xz-5.2.5/lib:/gnu/store/jazwfsj2v41yih2yzw5nydqgdz1hgfm4-file-5= =2E39/lib:/gnu/store/v45pjc1yqmy59j9ff913p3ywn9qk4lqx-gawk-5.1.0/lib:/gnu/s= tore/6mqcv52gwn2dnbislgv9k99525mzmrrs-binutils-2.37/lib:/gnu/store/2fk1gz2s= 7ppdicynscra9b19byrrr866-glibc-2.33/lib:/gnu/store/3ywv7s8d38rgcq7ljmc1s084= 358a2m3h-glibc-2.33-static/lib:/gnu/store/0brdikxqk59hdr47qabcm3sya001d8vf-= glibc-utf8-locales-2.33/lib' environment variable `GUIX_LOCPATH' set to=20 `/gnu/store/0brdikxqk59hdr47qabcm3sya001d8vf-glibc-utf8-locales-2.33/lib/lo= cale' phase `set-paths' succeeded after 0.0 seconds starting phase `install-locale' using 'en_US.utf8' locale for category "LC_ALL" phase `install-locale' succeeded after 0.0 seconds starting phase `unpack' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= =2Egitignore'=20 -> `./.gitignore' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= COPYING'=20 -> `./COPYING' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= INSTALL'=20 -> `./INSTALL' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= Makefile'=20 -> `./Makefile' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= README'=20 -> `./README' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/.gitignore'=20 -> `./tests/.gitignore' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/TODO.txt'=20 -> `./tests/TODO.txt' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/fake-editor-change-password.sh'=20 -> `./tests/fake-editor-change-password.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/setup.sh'=20 -> `./tests/setup.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/sharness.sh'=20 -> `./tests/sharness.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/t0001-sanity-checks.sh'=20 -> `./tests/t0001-sanity-checks.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/t0010-generate-tests.sh'=20 -> `./tests/t0010-generate-tests.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/t0020-show-tests.sh'=20 -> `./tests/t0020-show-tests.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/t0050-mv-tests.sh'=20 -> `./tests/t0050-mv-tests.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/t0060-rm-tests.sh'=20 -> `./tests/t0060-rm-tests.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/t0100-insert-tests.sh'=20 -> `./tests/t0100-insert-tests.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/t0200-edit-tests.sh'=20 -> `./tests/t0200-edit-tests.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/t0300-reencryption.sh'=20 -> `./tests/t0300-reencryption.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/t0400-grep.sh'=20 -> `./tests/t0400-grep.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/t0500-find.sh'=20 -> `./tests/t0500-find.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/.gpg-v21-migrated'=20 -> `./tests/gnupg/.gpg-v21-migrated' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/gpg.conf'=20 -> `./tests/gnupg/gpg.conf' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/pubring.gpg'=20 -> `./tests/gnupg/pubring.gpg' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/secring.gpg'=20 -> `./tests/gnupg/secring.gpg' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/trustdb.gpg'=20 -> `./tests/gnupg/trustdb.gpg' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/private-keys-v1.d/0606FE40527B8F47BFD30238709F895642EEF303.key'= =20 ->=20 `./tests/gnupg/private-keys-v1.d/0606FE40527B8F47BFD30238709F895642EEF303= =2Ekey' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/private-keys-v1.d/06278846A35FE4416E8701DDCF6B60E93F8BCB63.key'= =20 ->=20 `./tests/gnupg/private-keys-v1.d/06278846A35FE4416E8701DDCF6B60E93F8BCB63= =2Ekey' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/private-keys-v1.d/615FC2A5B2CBFD58B7FFA0A140D43B74AB9748B0.key'= =20 ->=20 `./tests/gnupg/private-keys-v1.d/615FC2A5B2CBFD58B7FFA0A140D43B74AB9748B0= =2Ekey' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/private-keys-v1.d/63D607EC5C89163B473708E7B3E5115301CF06E4.key'= =20 ->=20 `./tests/gnupg/private-keys-v1.d/63D607EC5C89163B473708E7B3E5115301CF06E4= =2Ekey' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/private-keys-v1.d/A5CEE9554AA7090ADD97D97E0DA902764E6C2111.key'= =20 ->=20 `./tests/gnupg/private-keys-v1.d/A5CEE9554AA7090ADD97D97E0DA902764E6C2111= =2Ekey' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/private-keys-v1.d/AD20D0B45D263DD5AE866FDB98E04A0D20070F68.key'= =20 ->=20 `./tests/gnupg/private-keys-v1.d/AD20D0B45D263DD5AE866FDB98E04A0D20070F68= =2Ekey' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/private-keys-v1.d/C93858C40FA9E117DA4E7F336580B8B12354EB83.key'= =20 ->=20 `./tests/gnupg/private-keys-v1.d/C93858C40FA9E117DA4E7F336580B8B12354EB83= =2Ekey' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/private-keys-v1.d/C93F70CA322D4F42E7FC7D54F6367E65C23E5CA3.key'= =20 ->=20 `./tests/gnupg/private-keys-v1.d/C93F70CA322D4F42E7FC7D54F6367E65C23E5CA3= =2Ekey' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/private-keys-v1.d/CDA6EE91E62A15AB9F6A3041FE01CC123B7E9D23.key'= =20 ->=20 `./tests/gnupg/private-keys-v1.d/CDA6EE91E62A15AB9F6A3041FE01CC123B7E9D23= =2Ekey' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= tests/gnupg/private-keys-v1.d/FFED3C5A6A52B200BCCE3F41593EA51D6054649F.key'= =20 ->=20 `./tests/gnupg/private-keys-v1.d/FFED3C5A6A52B200BCCE3F41593EA51D6054649F= =2Ekey' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= src/password-store.sh'=20 -> `./src/password-store.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= src/platform/cygwin.sh'=20 -> `./src/platform/cygwin.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= src/platform/darwin.sh'=20 -> `./src/platform/darwin.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= src/platform/freebsd.sh'=20 -> `./src/platform/freebsd.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= src/platform/openbsd.sh'=20 -> `./src/platform/openbsd.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= src/completion/pass.bash-completion'=20 -> `./src/completion/pass.bash-completion' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= src/completion/pass.fish-completion'=20 -> `./src/completion/pass.fish-completion' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= src/completion/pass.zsh-completion'=20 -> `./src/completion/pass.zsh-completion' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= man/example-filter.sh'=20 -> `./man/example-filter.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= man/pass.1'=20 -> `./man/pass.1' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/pass.applescript'=20 -> `./contrib/pass.applescript' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/vim/redact_pass.txt'=20 -> `./contrib/vim/redact_pass.txt' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/vim/redact_pass.vim'=20 -> `./contrib/vim/redact_pass.vim' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/importers/1password2pass.rb'=20 -> `./contrib/importers/1password2pass.rb' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/importers/fpm2pass.pl'=20 -> `./contrib/importers/fpm2pass.pl' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/importers/gorilla2pass.rb'=20 -> `./contrib/importers/gorilla2pass.rb' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/importers/kedpm2pass.py'=20 -> `./contrib/importers/kedpm2pass.py' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/importers/keepass2csv2pass.py'=20 -> `./contrib/importers/keepass2csv2pass.py' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/importers/keepass2pass.py'=20 -> `./contrib/importers/keepass2pass.py' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/importers/keepassx2pass.py'=20 -> `./contrib/importers/keepassx2pass.py' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/importers/kwallet2pass.py'=20 -> `./contrib/importers/kwallet2pass.py' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/importers/lastpass2pass.rb'=20 -> `./contrib/importers/lastpass2pass.rb' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/importers/password-exporter2pass.py'=20 -> `./contrib/importers/password-exporter2pass.py' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/importers/pwsafe2pass.py'=20 -> `./contrib/importers/pwsafe2pass.py' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/importers/pwsafe2pass.sh'=20 -> `./contrib/importers/pwsafe2pass.sh' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/importers/revelation2pass.py'=20 -> `./contrib/importers/revelation2pass.py' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/importers/roboform2pass.rb'=20 -> `./contrib/importers/roboform2pass.rb' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/emacs/.gitignore'=20 -> `./contrib/emacs/.gitignore' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/emacs/CHANGELOG.md'=20 -> `./contrib/emacs/CHANGELOG.md' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/emacs/Cask'=20 -> `./contrib/emacs/Cask' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/emacs/README.md'=20 -> `./contrib/emacs/README.md' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/emacs/password-store.el'=20 -> `./contrib/emacs/password-store.el' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/dmenu/README.md'=20 -> `./contrib/dmenu/README.md' `/gnu/store/22wkvxxi8b308nxghb2fwn2swkvbjh8w-password-store-1.7.4-checkout/= contrib/dmenu/passmenu'=20 -> `./contrib/dmenu/passmenu' phase `unpack' succeeded after 0.0 seconds starting phase `bootstrap' no 'configure.ac' or anything like that, doing nothing phase `bootstrap' succeeded after 0.0 seconds starting phase `patch-usr-bin-file' phase `patch-usr-bin-file' succeeded after 0.0 seconds starting phase `patch-source-shebangs' patch-shebang: ./contrib/dmenu/passmenu: changing `/usr/bin/env bash' to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' patch-shebang: ./contrib/importers/1password2pass.rb: warning: no binary=20 for interpreter `ruby' found in $PATH patch-shebang: ./contrib/importers/fpm2pass.pl: warning: no binary for=20 interpreter `perl' found in $PATH patch-shebang: ./contrib/importers/gorilla2pass.rb: warning: no binary=20 for interpreter `ruby' found in $PATH patch-shebang: ./contrib/importers/kedpm2pass.py: warning: no binary for=20 interpreter `python' found in $PATH patch-shebang: ./contrib/importers/keepass2csv2pass.py: warning: no=20 binary for interpreter `python3' found in $PATH patch-shebang: ./contrib/importers/keepass2pass.py: warning: no binary=20 for interpreter `python' found in $PATH patch-shebang: ./contrib/importers/keepassx2pass.py: warning: no binary=20 for interpreter `python3' found in $PATH patch-shebang: ./contrib/importers/kwallet2pass.py: warning: no binary=20 for interpreter `python' found in $PATH patch-shebang: ./contrib/importers/lastpass2pass.rb: warning: no binary=20 for interpreter `ruby' found in $PATH patch-shebang: ./contrib/importers/password-exporter2pass.py: warning:=20 no binary for interpreter `python' found in $PATH patch-shebang: ./contrib/importers/pwsafe2pass.py: warning: no binary=20 for interpreter `python3' found in $PATH patch-shebang: ./contrib/importers/pwsafe2pass.sh: changing=20 `/usr/bin/env bash' to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' patch-shebang: ./contrib/importers/revelation2pass.py: warning: no=20 binary for interpreter `python' found in $PATH patch-shebang: ./contrib/importers/roboform2pass.rb: warning: no binary=20 for interpreter `ruby' found in $PATH patch-shebang: ./man/example-filter.sh: changing `/bin/sh' to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/sh' patch-shebang: ./src/completion/pass.fish-completion: warning: no binary=20 for interpreter `fish' found in $PATH patch-shebang: ./src/password-store.sh: changing `/usr/bin/env bash' to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' patch-shebang: ./tests/fake-editor-change-password.sh: changing=20 `/usr/bin/env bash' to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' patch-shebang: ./tests/sharness.sh: changing `/usr/bin/env bash' to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' patch-shebang: ./tests/t0001-sanity-checks.sh: changing `/usr/bin/env=20 bash' to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' patch-shebang: ./tests/t0010-generate-tests.sh: changing `/usr/bin/env=20 bash' to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' patch-shebang: ./tests/t0020-show-tests.sh: changing `/usr/bin/env bash'=20 to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' patch-shebang: ./tests/t0050-mv-tests.sh: changing `/usr/bin/env bash'=20 to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' patch-shebang: ./tests/t0060-rm-tests.sh: changing `/usr/bin/env bash'=20 to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' patch-shebang: ./tests/t0100-insert-tests.sh: changing `/usr/bin/env=20 bash' to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' patch-shebang: ./tests/t0200-edit-tests.sh: changing `/usr/bin/env bash'=20 to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' patch-shebang: ./tests/t0300-reencryption.sh: changing `/usr/bin/env=20 bash' to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' patch-shebang: ./tests/t0400-grep.sh: changing `/usr/bin/env bash' to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' patch-shebang: ./tests/t0500-find.sh: changing `/usr/bin/env bash' to=20 `/gnu/store/vx6vfbmmazvfi7vp8xyjn2mcyylvw9gn-bash-minimal-5.1.8/bin/bash' phase `patch-source-shebangs' succeeded after 0.0 seconds starting phase `patch-generated-file-shebangs' patch-shebang: ./contrib/importers/1password2pass.rb: warning: no binary=20 for interpreter `ruby' found in $PATH patch-shebang: ./contrib/importers/fpm2pass.pl: warning: no binary for=20 interpreter `perl' found in $PATH patch-shebang: ./contrib/importers/gorilla2pass.rb: warning: no binary=20 for interpreter `ruby' found in $PATH patch-shebang: ./contrib/importers/kedpm2pass.py: warning: no binary for=20 interpreter `python' found in $PATH patch-shebang: ./contrib/importers/keepass2csv2pass.py: warning: no=20 binary for interpreter `python3' found in $PATH patch-shebang: ./contrib/importers/keepass2pass.py: warning: no binary=20 for interpreter `python' found in $PATH patch-shebang: ./contrib/importers/keepassx2pass.py: warning: no binary=20 for interpreter `python3' found in $PATH patch-shebang: ./contrib/importers/kwallet2pass.py: warning: no binary=20 for interpreter `python' found in $PATH patch-shebang: ./contrib/importers/lastpass2pass.rb: warning: no binary=20 for interpreter `ruby' found in $PATH patch-shebang: ./contrib/importers/password-exporter2pass.py: warning:=20 no binary for interpreter `python' found in $PATH patch-shebang: ./contrib/importers/pwsafe2pass.py: warning: no binary=20 for interpreter `python3' found in $PATH patch-shebang: ./contrib/importers/revelation2pass.py: warning: no=20 binary for interpreter `python' found in $PATH patch-shebang: ./contrib/importers/roboform2pass.rb: warning: no binary=20 for interpreter `ruby' found in $PATH phase `patch-generated-file-shebangs' succeeded after 0.0 seconds starting phase `check' ok 1 - Make sure we can run pass ok 2 - Make sure we can initialize our test store # passed all 2 test(s) 1..2 ok 1 - Test "generate" command ok 2 - Test replacement of first line # passed all 2 test(s) 1..2 ok 1 - Test "show" command ok 2 - Test "show" command with spaces not ok 3 - Test "show" command with unicode # # "$PASS" generate =F0=9F=8F=A0 && # "$PASS" show | grep -q =F0=9F=8F=A0 # ok 4 - Test "show" of nonexistant password # failed 1 among 4 test(s) 1..4 make: *** [Makefile:72: tests/t0020-show-tests.sh] Error 1 Test suite failed, dumping logs. error: in phase 'check': uncaught exception: %exception #<&invoke-error program: "make" arguments: ("test" "CC=3Dgcc"=20 "PREFIX=3D/gnu/store/jyjm47609k160r2rcfaiwz3ncs0qjwry-password-store-1.7.4"= =20 "WITH_ALLCOMP=3Dyes"=20 "BASHCOMPDIR=3D/gnu/store/jyjm47609k160r2rcfaiwz3ncs0qjwry-password-store-1= =2E7.4/etc/bash_completion.d")=20 exit-status: 2 term-signal: #f stop-signal: #f> phase `check' failed after 0.3 seconds command "make" "test" "CC=3Dgcc"=20 "PREFIX=3D/gnu/store/jyjm47609k160r2rcfaiwz3ncs0qjwry-password-store-1.7.4"= =20 "WITH_ALLCOMP=3Dyes"=20 "BASHCOMPDIR=3D/gnu/store/jyjm47609k160r2rcfaiwz3ncs0qjwry-password-store-1= =2E7.4/etc/bash_completion.d"=20 failed with status 2 ------------=_1642441083-2169-5--