From unknown Sun Jun 22 04:29:16 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#58722] [PATCH] gnu: emacs-plz: Patch path to curl. Resent-From: Michael Rohleder Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 22 Oct 2022 18:45:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 58722 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 58722@debbugs.gnu.org Cc: Michael Rohleder X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16664642711830 (code B ref -1); Sat, 22 Oct 2022 18:45:02 +0000 Received: (at submit) by debbugs.gnu.org; 22 Oct 2022 18:44:31 +0000 Received: from localhost ([127.0.0.1]:42325 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1omJTz-0000TR-5J for submit@debbugs.gnu.org; Sat, 22 Oct 2022 14:44:31 -0400 Received: from lists.gnu.org ([209.51.188.17]:54662) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1omJTt-0000TC-QY for submit@debbugs.gnu.org; Sat, 22 Oct 2022 14:44:29 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1omJTs-0006Ov-NI for guix-patches@gnu.org; Sat, 22 Oct 2022 14:44:25 -0400 Received: from sxb1nlsmtp02.prod.sxb1.secureserver.net ([92.204.71.189]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1omJTr-0003DU-1o for guix-patches@gnu.org; Sat, 22 Oct 2022 14:44:24 -0400 Received: from 122.164.205.92.host.secureserver.net ([92.205.164.122]) by : HOSTING RELAY : with ESMTP id mJSnoqN1PwsrFmJSnoIlXG; Sat, 22 Oct 2022 11:43:18 -0700 X-SECURESERVER-ACCT: 92.205.164.122 x-originating-ip: 92.205.164.122 X-CMAE-Analysis: v=2.4 cv=R/zFW/dX c=1 sm=1 tr=0 ts=635439c6 a=B/z3iHJ5y0TSvJOmeNZOnw==:117 a=Qawa6l4ZSaYA:10 a=NEAV23lmAAAA:8 a=9ynNBEqeXPsKw3BWchcA:9 Received: from [192.168.1.3] (helo=micha.rohleder.de) by 122.164.205.92.host.secureserver.net with esmtp (Exim 4.94.2) (envelope-from ) id 1omJSn-003ACV-7G; Sat, 22 Oct 2022 20:43:17 +0200 From: Michael Rohleder Date: Sat, 22 Oct 2022 20:43:14 +0200 Message-Id: <20221022184314.9448-1-mike@rohleder.de> X-Mailer: git-send-email 2.38.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-CMAE-Envelope: MS4xfMvjlLtjvmxdJTaFOpmwLuvLamyDI+7Y2tFeGYGQ7shUqizEEGt8eBJhIY0pSXnqFpNE85G5Ops8I2izKPV+TYzUcBjIIjUpgEGE2lMsIiLLNO+be9t4 8HjTARHwH8UQ9lGdwCWiuM7BKfZuuQE78wKLX1FtnlC/+wdlDBD05/aKDI+az1KBVqBNkCyUzvjYvYhXjiXTPGnxULwyLO7wOQmfS4QwpmxmohLqpJ0u4STt q0UGUEmhIFRH8RKMmE34tA== Received-SPF: permerror client-ip=92.204.71.189; envelope-from=mike@rohleder.de; helo=sxb1nlsmtp02.prod.sxb1.secureserver.net X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, T_SPF_PERMERROR=0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * gnu/packages/emacs-xyz.scm (emacs-plz)[arguments]: Add phase substitute-curl-path. --- gnu/packages/emacs-xyz.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 06ec9dd904..117c5a09aa 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -17142,6 +17142,15 @@ (define-public emacs-plz (base32 "0p0xd532xa8icysyxwqk481lr9xanmp68gf97fd9n2936gp12chv")))) (build-system emacs-build-system) (inputs (list curl)) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'substitute-curl-path + (lambda* (#:key inputs #:allow-other-keys) + (make-file-writable "plz.el") + (emacs-substitute-variables "plz.el" + ("plz-curl-program" (search-input-file inputs "/bin/curl")))))))) (home-page "https://github.com/alphapapa/plz.el") (synopsis "HTTP library for Emacs") (description -- 2.38.0 From unknown Sun Jun 22 04:29:16 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: Michael Rohleder Subject: bug#58722: closed (Re: [bug#58722] [PATCH] gnu: emacs-plz: Patch path to curl.) Message-ID: References: <87y1sxodmn.fsf@nicolasgoaziou.fr> <20221022184314.9448-1-mike@rohleder.de> X-Gnu-PR-Message: they-closed 58722 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 58722@debbugs.gnu.org Date: Sun, 30 Oct 2022 09:39:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1667122742-27179-1" This is a multi-part message in MIME format... ------------=_1667122742-27179-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #58722: [PATCH] gnu: emacs-plz: Patch path to curl. 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 58722@debbugs.gnu.org. --=20 58722: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D58722 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1667122742-27179-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 58722-done) by debbugs.gnu.org; 30 Oct 2022 09:38:19 +0000 Received: from localhost ([127.0.0.1]:37339 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1op4ln-00073P-A7 for submit@debbugs.gnu.org; Sun, 30 Oct 2022 05:38:19 -0400 Received: from relay2-d.mail.gandi.net ([217.70.183.194]:40055) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1op4ll-00073B-DE for 58722-done@debbugs.gnu.org; Sun, 30 Oct 2022 05:38:18 -0400 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id 89ED340005; Sun, 30 Oct 2022 09:38:10 +0000 (UTC) From: Nicolas Goaziou To: Michael Rohleder Subject: Re: [bug#58722] [PATCH] gnu: emacs-plz: Patch path to curl. References: <20221022184314.9448-1-mike@rohleder.de> Date: Sun, 30 Oct 2022 10:38:08 +0100 In-Reply-To: <20221022184314.9448-1-mike@rohleder.de> (Michael Rohleder's message of "Sat, 22 Oct 2022 20:43:14 +0200") Message-ID: <87y1sxodmn.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 58722-done Cc: 58722-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hello, Michael Rohleder writes: > * gnu/packages/emacs-xyz.scm (emacs-plz)[arguments]: Add phase > substitute-curl-path. Applied. Thank you. Regards, -- Nicolas Goaziou ------------=_1667122742-27179-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 22 Oct 2022 18:44:31 +0000 Received: from localhost ([127.0.0.1]:42325 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1omJTz-0000TR-5J for submit@debbugs.gnu.org; Sat, 22 Oct 2022 14:44:31 -0400 Received: from lists.gnu.org ([209.51.188.17]:54662) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1omJTt-0000TC-QY for submit@debbugs.gnu.org; Sat, 22 Oct 2022 14:44:29 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1omJTs-0006Ov-NI for guix-patches@gnu.org; Sat, 22 Oct 2022 14:44:25 -0400 Received: from sxb1nlsmtp02.prod.sxb1.secureserver.net ([92.204.71.189]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1omJTr-0003DU-1o for guix-patches@gnu.org; Sat, 22 Oct 2022 14:44:24 -0400 Received: from 122.164.205.92.host.secureserver.net ([92.205.164.122]) by : HOSTING RELAY : with ESMTP id mJSnoqN1PwsrFmJSnoIlXG; Sat, 22 Oct 2022 11:43:18 -0700 X-SECURESERVER-ACCT: 92.205.164.122 x-originating-ip: 92.205.164.122 X-CMAE-Analysis: v=2.4 cv=R/zFW/dX c=1 sm=1 tr=0 ts=635439c6 a=B/z3iHJ5y0TSvJOmeNZOnw==:117 a=Qawa6l4ZSaYA:10 a=NEAV23lmAAAA:8 a=9ynNBEqeXPsKw3BWchcA:9 Received: from [192.168.1.3] (helo=micha.rohleder.de) by 122.164.205.92.host.secureserver.net with esmtp (Exim 4.94.2) (envelope-from ) id 1omJSn-003ACV-7G; Sat, 22 Oct 2022 20:43:17 +0200 From: Michael Rohleder To: guix-patches@gnu.org Subject: [PATCH] gnu: emacs-plz: Patch path to curl. Date: Sat, 22 Oct 2022 20:43:14 +0200 Message-Id: <20221022184314.9448-1-mike@rohleder.de> X-Mailer: git-send-email 2.38.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-CMAE-Envelope: MS4xfMvjlLtjvmxdJTaFOpmwLuvLamyDI+7Y2tFeGYGQ7shUqizEEGt8eBJhIY0pSXnqFpNE85G5Ops8I2izKPV+TYzUcBjIIjUpgEGE2lMsIiLLNO+be9t4 8HjTARHwH8UQ9lGdwCWiuM7BKfZuuQE78wKLX1FtnlC/+wdlDBD05/aKDI+az1KBVqBNkCyUzvjYvYhXjiXTPGnxULwyLO7wOQmfS4QwpmxmohLqpJ0u4STt q0UGUEmhIFRH8RKMmE34tA== Received-SPF: permerror client-ip=92.204.71.189; envelope-from=mike@rohleder.de; helo=sxb1nlsmtp02.prod.sxb1.secureserver.net X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, T_SPF_PERMERROR=0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Michael Rohleder 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 (---) * gnu/packages/emacs-xyz.scm (emacs-plz)[arguments]: Add phase substitute-curl-path. --- gnu/packages/emacs-xyz.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 06ec9dd904..117c5a09aa 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -17142,6 +17142,15 @@ (define-public emacs-plz (base32 "0p0xd532xa8icysyxwqk481lr9xanmp68gf97fd9n2936gp12chv")))) (build-system emacs-build-system) (inputs (list curl)) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'substitute-curl-path + (lambda* (#:key inputs #:allow-other-keys) + (make-file-writable "plz.el") + (emacs-substitute-variables "plz.el" + ("plz-curl-program" (search-input-file inputs "/bin/curl")))))))) (home-page "https://github.com/alphapapa/plz.el") (synopsis "HTTP library for Emacs") (description -- 2.38.0 ------------=_1667122742-27179-1--