From unknown Sat Jul 12 02:29:23 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#58234] [PATCH] gnu: blesh: Substitute with readlink directly. Resent-From: kiasoc5 Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 01 Oct 2022 20:58:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 58234 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 58234@debbugs.gnu.org Cc: kiasoc5 X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16646578277777 (code B ref -1); Sat, 01 Oct 2022 20:58:01 +0000 Received: (at submit) by debbugs.gnu.org; 1 Oct 2022 20:57:07 +0000 Received: from localhost ([127.0.0.1]:45765 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oejXn-00021M-EO for submit@debbugs.gnu.org; Sat, 01 Oct 2022 16:57:07 -0400 Received: from lists.gnu.org ([209.51.188.17]:45122) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oejXl-00021F-Of for submit@debbugs.gnu.org; Sat, 01 Oct 2022 16:57:06 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55934) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oejXl-0005cp-J8 for guix-patches@gnu.org; Sat, 01 Oct 2022 16:57:05 -0400 Received: from knopi.disroot.org ([178.21.23.139]:43442) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oejXj-00012v-Fz for guix-patches@gnu.org; Sat, 01 Oct 2022 16:57:05 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 6B3C74BEF7; Sat, 1 Oct 2022 22:56:39 +0200 (CEST) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Mn3Y7MiyY-AW; Sat, 1 Oct 2022 22:56:38 +0200 (CEST) From: kiasoc5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1664657798; bh=S8j8FSGd3u97FC0oBbTwLbdZPf0x9OroQIevVnJTt3M=; h=From:To:Cc:Subject:Date; b=QST7Auz0Nkd5KmD0J4pRhHK5/TyqIejfibMeTEHVPjEwik4T4mo25IxRKXbfvI279 8ELw7V+IEC/AMLfB3Z8ND3/PCyX8wllLXYPsQHZlSwLPnj4vKW0AnxRq/erLtQk2qN 7qdRdkR+zyeEXUgkqF7ky5teFT1BKr2snLSsqFa4GiKPZEXsWlSEGk77ALEhm77GNS eM4/Kky/nrcdIPTp+rs6k2D2SxVoAb5+r4EVdt+SFltVdQ4tLnpgrfSQRdqVwnGS7q tG05mGEKY55jEBXvDqmQeqUXvep4xg7yCfpTFVcGfa+UllK7//FQ8CmZdJHFManxH+ 6jmQNPDcPq6Iw== Date: Sat, 1 Oct 2022 16:55:53 -0400 Message-Id: Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=kiasoc5@disroot.org; helo=knopi.disroot.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) Fixes https://issues.guix.gnu.org/57659#6. --- gnu/packages/bash.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/bash.scm b/gnu/packages/bash.scm index 86af26d648..7545f331e6 100644 --- a/gnu/packages/bash.scm +++ b/gnu/packages/bash.scm @@ -483,8 +483,7 @@ (define-public blesh (lambda _ (substitute* "ble.pp" (("PATH=/bin:/usr/bin readlink") - (search-input-file %build-inputs - "/bin/readlink"))))) + "readlink")))) (delete 'configure) ;no configure (add-before 'check 'use-LANG-for-tests (lambda _ base-commit: cbe8391d7c570a12416acfbfbbb818404d8b9203 -- 2.37.3 From unknown Sat Jul 12 02:29:23 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: kiasoc5 Subject: bug#58234: closed (Re: bug#58234: [PATCH] gnu: blesh: Substitute with readlink directly.) Message-ID: References: <87lepo4up5.fsf@gnu.org> X-Gnu-PR-Message: they-closed 58234 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 58234@debbugs.gnu.org Date: Sun, 09 Oct 2022 20:19:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1665346742-19649-1" This is a multi-part message in MIME format... ------------=_1665346742-19649-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #58234: [PATCH] gnu: blesh: Substitute with readlink directly. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 58234@debbugs.gnu.org. --=20 58234: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D58234 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1665346742-19649-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 58234-done) by debbugs.gnu.org; 9 Oct 2022 20:18:45 +0000 Received: from localhost ([127.0.0.1]:44968 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ohcl0-00056O-PD for submit@debbugs.gnu.org; Sun, 09 Oct 2022 16:18:45 -0400 Received: from eggs.gnu.org ([209.51.188.92]:57224) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ohckw-000568-E3 for 58234-done@debbugs.gnu.org; Sun, 09 Oct 2022 16:18:42 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:60086) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ohckr-0000T0-5U; Sun, 09 Oct 2022 16:18:33 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=7ypnz2jl6MvVshcK4sKe+JURIX1JT4mI8zayWnhwYyY=; b=cyGV2G278tk4+VWY7pRp FIDH94iz7qQtp/8tzg43GIdmzQsIXAx+DCYmYw/nwTnSm7yCFJHDQAcEwINENypggViCdUoWR7kk+ eU6xKdAtF3K3frJusJdHnuGS8YgoZJPTn59dfU0uVXMbKg1L3IMaHnyQU068jiXtZOoqEgI5VVGWk IpcjAmdKpkCCj3I4oDZHv/LETqg42EN+KZocZMPZPyR30uELxk47kxPMs2C7yqBzf1Sieffxsov/M nsSz0JrrQSFmjaiKfsM1+pjYf/OsVClzyoP+duLvDOEQB1B4f6BanuZvDy6Djo/xDxi09UzWvmwYH 0J55Auet23+yoA==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:58368 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ohckq-0007cL-CY; Sun, 09 Oct 2022 16:18:32 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: kiasoc5 Subject: Re: bug#58234: [PATCH] gnu: blesh: Substitute with readlink directly. References: Date: Sun, 09 Oct 2022 22:18:30 +0200 In-Reply-To: (kiasoc5@disroot.org's message of "Sat, 1 Oct 2022 16:55:53 -0400") Message-ID: <87lepo4up5.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 58234-done Cc: 58234-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, kiasoc5 skribis: > Fixes https://issues.guix.gnu.org/57659#6. I added a commit log and applied it, thanks! Ludo=E2=80=99. ------------=_1665346742-19649-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 1 Oct 2022 20:57:07 +0000 Received: from localhost ([127.0.0.1]:45765 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oejXn-00021M-EO for submit@debbugs.gnu.org; Sat, 01 Oct 2022 16:57:07 -0400 Received: from lists.gnu.org ([209.51.188.17]:45122) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oejXl-00021F-Of for submit@debbugs.gnu.org; Sat, 01 Oct 2022 16:57:06 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55934) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oejXl-0005cp-J8 for guix-patches@gnu.org; Sat, 01 Oct 2022 16:57:05 -0400 Received: from knopi.disroot.org ([178.21.23.139]:43442) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oejXj-00012v-Fz for guix-patches@gnu.org; Sat, 01 Oct 2022 16:57:05 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 6B3C74BEF7; Sat, 1 Oct 2022 22:56:39 +0200 (CEST) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Mn3Y7MiyY-AW; Sat, 1 Oct 2022 22:56:38 +0200 (CEST) From: kiasoc5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1664657798; bh=S8j8FSGd3u97FC0oBbTwLbdZPf0x9OroQIevVnJTt3M=; h=From:To:Cc:Subject:Date; b=QST7Auz0Nkd5KmD0J4pRhHK5/TyqIejfibMeTEHVPjEwik4T4mo25IxRKXbfvI279 8ELw7V+IEC/AMLfB3Z8ND3/PCyX8wllLXYPsQHZlSwLPnj4vKW0AnxRq/erLtQk2qN 7qdRdkR+zyeEXUgkqF7ky5teFT1BKr2snLSsqFa4GiKPZEXsWlSEGk77ALEhm77GNS eM4/Kky/nrcdIPTp+rs6k2D2SxVoAb5+r4EVdt+SFltVdQ4tLnpgrfSQRdqVwnGS7q tG05mGEKY55jEBXvDqmQeqUXvep4xg7yCfpTFVcGfa+UllK7//FQ8CmZdJHFManxH+ 6jmQNPDcPq6Iw== To: guix-patches@gnu.org Subject: [PATCH] gnu: blesh: Substitute with readlink directly. Date: Sat, 1 Oct 2022 16:55:53 -0400 Message-Id: Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=kiasoc5@disroot.org; helo=knopi.disroot.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: kiasoc5 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) Fixes https://issues.guix.gnu.org/57659#6. --- gnu/packages/bash.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/bash.scm b/gnu/packages/bash.scm index 86af26d648..7545f331e6 100644 --- a/gnu/packages/bash.scm +++ b/gnu/packages/bash.scm @@ -483,8 +483,7 @@ (define-public blesh (lambda _ (substitute* "ble.pp" (("PATH=/bin:/usr/bin readlink") - (search-input-file %build-inputs - "/bin/readlink"))))) + "readlink")))) (delete 'configure) ;no configure (add-before 'check 'use-LANG-for-tests (lambda _ base-commit: cbe8391d7c570a12416acfbfbbb818404d8b9203 -- 2.37.3 ------------=_1665346742-19649-1--