From unknown Sun Aug 17 22:12:58 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#73183] [PATCH] gnu: perl-gd: Use native perl-extutils-pkgconfig. Resent-From: Herman Rimm Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 11 Sep 2024 19:02:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 73183 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 73183@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.172608127611555 (code B ref -1); Wed, 11 Sep 2024 19:02:01 +0000 Received: (at submit) by debbugs.gnu.org; 11 Sep 2024 19:01:16 +0000 Received: from localhost ([127.0.0.1]:39561 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1soSaY-00030H-Eh for submit@debbugs.gnu.org; Wed, 11 Sep 2024 15:01:16 -0400 Received: from lists.gnu.org ([209.51.188.17]:50406) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1soSaT-000304-1f for submit@debbugs.gnu.org; Wed, 11 Sep 2024 15:01:13 -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 1soSaM-0003hw-3f for guix-patches@gnu.org; Wed, 11 Sep 2024 15:01:02 -0400 Received: from 81-205-150-117.fixed.kpn.net ([81.205.150.117] helo=email.rimm.ee) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1soSaK-0005lH-Bd for guix-patches@gnu.org; Wed, 11 Sep 2024 15:01:01 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rimm.ee; s=herman; t=1726081251; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=fElwD0k42raXo/388zfBuzwH7vF1BRlsJxG2trEgLcs=; b=JpU8NO9voyh6j3XvyznT1soyAboa2zmnU0dqI9KG3qURFGAFLTHSExbDjCWAd1X44ydnrn O7sB0UU5K1xjNyGcepDQ7wbi/R39L5VbAtb5MvmHX/iUog4ADPBh8fWur80rIGydJgShAw wSkOeB8V3+EaT0pGec3LUGv/BVTJZCJUUuh+vU9wzKXRbSTRS3w6RdJZR6ab6h+GmBljI6 e/PxG1eG2miyUqx/aEUD45y01YgNwa6BrWTHTUEAc0tieSdHpjI/Y6fp11q5u+TJxbaIAb gKHCBE2b5GXIGp6ISl6PWu01syeXp7p3Xu5Ft7vpDAkbwNnhGHkOPRoOJKF9sA== Received: by 81-205-150-117.fixed.kpn.net (OpenSMTPD) with ESMTPSA id 5930a989 (TLSv1.3:TLS_CHACHA20_POLY1305_SHA256:256:NO) for ; Wed, 11 Sep 2024 19:00:50 +0000 (UTC) From: Herman Rimm Date: Wed, 11 Sep 2024 21:00:19 +0200 Message-ID: <20240911190019.26307-1-herman@rimm.ee> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=81.205.150.117; envelope-from=herman@rimm.ee; helo=email.rimm.ee X-Spam_score_int: 12 X-Spam_score: 1.2 X-Spam_bar: + X-Spam_report: (1.2 / 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_PBL=3.335, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_RCVD_IP=0.001 autolearn=no 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 (--) * gnu/packages/gd.scm (perl-gd)[native-inputs]: Replace perl-extutils-pkgconfig with %perl-extutils-pkgconfig. --- gnu/packages/gd.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gd.scm b/gnu/packages/gd.scm index 98d34cfa71..6ebc871161 100644 --- a/gnu/packages/gd.scm +++ b/gnu/packages/gd.scm @@ -127,7 +127,9 @@ (define-public perl-gd libjpeg-turbo zlib)) (native-inputs - (list perl-extutils-pkgconfig + ;; Avoid error in pre-inst-env. Cross-compilation is broken + ;; anyway, so no big loss. + (list %perl-extutils-pkgconfig perl-test-nowarnings)) (arguments (list #:make-maker-flags -- 2.45.2 From unknown Sun Aug 17 22:12:58 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#73183] [PATCH] gnu: perl-gd: Use native perl-extutils-pkgconfig. Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 17 Sep 2024 15:33:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 73183 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Herman Rimm Cc: 73183@debbugs.gnu.org Received: via spool by 73183-submit@debbugs.gnu.org id=B73183.172658716413535 (code B ref 73183); Tue, 17 Sep 2024 15:33:01 +0000 Received: (at 73183) by debbugs.gnu.org; 17 Sep 2024 15:32:44 +0000 Received: from localhost ([127.0.0.1]:55749 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sqaBo-0003Vn-PE for submit@debbugs.gnu.org; Tue, 17 Sep 2024 11:32:43 -0400 Received: from eggs.gnu.org ([209.51.188.92]:54712) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sqaBm-0003VX-Op for 73183@debbugs.gnu.org; Tue, 17 Sep 2024 11:32:27 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sqaBQ-0008J1-EE; Tue, 17 Sep 2024 11:32:04 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=mwnsLOa/Ujy1JNgGh0juTKIdQ66ZjF+oT6SQ7FK98Mk=; b=fatev2UEeVydpk+tqGDr YX0/PHhaooE9DIYChSqbVowF9M2cUYej2Wv79pXknvyvNtPhvq8S3pV/7GemcuMcC//vKMzt+kFqI 0wN3UAFxdO46cF1H9DnZ1QjaHnBLcPmjSRKq4NHWwC61jWikk7nj6YwlLM+RaBbTqWA5z9ISkGUUg Ca28wtjxB7dSGOOE4sCr45cTLaLsW9M+A9FjfRdrBcrVE/RVq7Z5YfgI1qzwXCU4P05HvVxWvUOz5 kmoZTXfhxpEu3sqrqvKtKQYsN5uMIyTt38SdrvK6hJuOjKiQXpAyL3rYhy5B8PF5hhjnH3G9WrB+A xYcr7r5R7JfgYw==; From: Ludovic =?UTF-8?Q?Court=C3=A8s?= In-Reply-To: <20240911190019.26307-1-herman@rimm.ee> (Herman Rimm's message of "Wed, 11 Sep 2024 21:00:19 +0200") References: <20240911190019.26307-1-herman@rimm.ee> Date: Tue, 17 Sep 2024 17:31:56 +0200 Message-ID: <87cyl29tzn.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi, Herman Rimm skribis: > * gnu/packages/gd.scm (perl-gd)[native-inputs]: Replace > perl-extutils-pkgconfig with %perl-extutils-pkgconfig. [...] > (native-inputs > - (list perl-extutils-pkgconfig > + ;; Avoid error in pre-inst-env. Cross-compilation is broken > + ;; anyway, so no big loss. > + (list %perl-extutils-pkgconfig What error is this supposed to fix? =E2=80=9C./pre-inst-env guix build perl-gd=E2=80=9D works for me. Ludo=E2=80=99. From unknown Sun Aug 17 22:12:58 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: Herman Rimm Subject: bug#73183: closed (Re: [bug#73183] [PATCH] gnu: perl-gd: Use native perl-extutils-pkgconfig.) Message-ID: References: <20240911190019.26307-1-herman@rimm.ee> X-Gnu-PR-Message: they-closed 73183 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 73183@debbugs.gnu.org Date: Thu, 19 Sep 2024 18:35:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1726770902-29476-1" This is a multi-part message in MIME format... ------------=_1726770902-29476-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #73183: [PATCH] gnu: perl-gd: Use native perl-extutils-pkgconfig. 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 73183@debbugs.gnu.org. --=20 73183: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D73183 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1726770902-29476-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 73183-done) by debbugs.gnu.org; 19 Sep 2024 18:34:07 +0000 Received: from localhost ([127.0.0.1]:33490 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1srLyg-0007e4-R2 for submit@debbugs.gnu.org; Thu, 19 Sep 2024 14:34:07 -0400 Received: from 81-205-150-117.fixed.kpn.net ([81.205.150.117]:35005 helo=email.rimm.ee) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1srLyd-0007dQ-Sg for 73183-done@debbugs.gnu.org; Thu, 19 Sep 2024 14:34:05 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rimm.ee; s=herman; t=1726770817; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=wGbxO757YjE1XeD4ZZCo9j+uCT21o19P9J7j5ORJewA=; b=tj8hLHso2naveOB++9O776BB4cIHhaZP1IXDY1dwNUeEiqykoDZUzN3Qwj8gXL6AFLdBDq UdRkuY1AEcZ5oll3TFYEPkbrDZtyCr+6RNDn2L3D5oNt22eoFl+3KzUHVqi6Pn/FYkFzN4 zMOECLlIf94d4iN21zD1leCloVP8Wfr2nI0SV1vy1Qg0CKrN32zazhZTzV4c3zQ8F7hi4U 5LcTPhbbVIH5Vs6BAgTUhYcBG77RTCIwF5LzFWgPwWHrfhjNasHpYURWI4N2QhHxQRiUiC 6UqBl+IMLEePeQJm81o5AbeaQk4J8Omi4EG+MEkEYcrl2f0UKQ6e+90NLksTNA== Received: by 81-205-150-117.fixed.kpn.net (OpenSMTPD) with ESMTPSA id 8a7bb60e (TLSv1.3:TLS_CHACHA20_POLY1305_SHA256:256:NO); Thu, 19 Sep 2024 18:33:36 +0000 (UTC) Date: Thu, 19 Sep 2024 20:33:01 +0200 From: Herman Rimm To: 73183-done@debbugs.gnu.org Subject: Re: [bug#73183] [PATCH] gnu: perl-gd: Use native perl-extutils-pkgconfig. Message-ID: References: <20240911190019.26307-1-herman@rimm.ee> <87cyl29tzn.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <87cyl29tzn.fsf@gnu.org> X-Spam-Score: 3.5 (+++) 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: Hi Ludo, On Tue, Sep 17, 2024 at 05:31:56PM +0200, Ludovic Courtès wrote: > What error is this supposed to fix? > > “./pre-inst-env guix build perl-gd” works for me. Having reinstalled my OS, I no longer have an issue building perl-gd as you described. I lost the relevant build logs. I'll close the issue. Content analysis details: (3.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 TVD_RCVD_IP Message was received from an IP address -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 3.6 RCVD_IN_PBL RBL: Received via a relay in Spamhaus PBL [81.205.150.117 listed in zen.spamhaus.org] -0.0 T_SCC_BODY_TEXT_LINE No description available. X-Debbugs-Envelope-To: 73183-done Cc: Ludovic =?utf-8?Q?Court=C3=A8s?= 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.5 (++) 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: Hi Ludo, On Tue, Sep 17, 2024 at 05:31:56PM +0200, Ludovic Courtès wrote: > What error is this supposed to fix? > > “./pre-inst-env guix build perl-gd” works for me. Having reinstalled my OS, I no longer have an issue building perl-gd as you described. I lost the relevant build logs. I'll close the issue. Content analysis details: (2.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 3.6 RCVD_IN_PBL RBL: Received via a relay in Spamhaus PBL [81.205.150.117 listed in zen.spamhaus.org] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 T_SCC_BODY_TEXT_LINE No description available. -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager Hi Ludo, On Tue, Sep 17, 2024 at 05:31:56PM +0200, Ludovic Courtès wrote: > What error is this supposed to fix? > > “./pre-inst-env guix build perl-gd” works for me. Having reinstalled my OS, I no longer have an issue building perl-gd as you described. I lost the relevant build logs. I'll close the issue. Cheers, Herman ------------=_1726770902-29476-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 11 Sep 2024 19:01:16 +0000 Received: from localhost ([127.0.0.1]:39561 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1soSaY-00030H-Eh for submit@debbugs.gnu.org; Wed, 11 Sep 2024 15:01:16 -0400 Received: from lists.gnu.org ([209.51.188.17]:50406) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1soSaT-000304-1f for submit@debbugs.gnu.org; Wed, 11 Sep 2024 15:01:13 -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 1soSaM-0003hw-3f for guix-patches@gnu.org; Wed, 11 Sep 2024 15:01:02 -0400 Received: from 81-205-150-117.fixed.kpn.net ([81.205.150.117] helo=email.rimm.ee) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1soSaK-0005lH-Bd for guix-patches@gnu.org; Wed, 11 Sep 2024 15:01:01 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rimm.ee; s=herman; t=1726081251; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=fElwD0k42raXo/388zfBuzwH7vF1BRlsJxG2trEgLcs=; b=JpU8NO9voyh6j3XvyznT1soyAboa2zmnU0dqI9KG3qURFGAFLTHSExbDjCWAd1X44ydnrn O7sB0UU5K1xjNyGcepDQ7wbi/R39L5VbAtb5MvmHX/iUog4ADPBh8fWur80rIGydJgShAw wSkOeB8V3+EaT0pGec3LUGv/BVTJZCJUUuh+vU9wzKXRbSTRS3w6RdJZR6ab6h+GmBljI6 e/PxG1eG2miyUqx/aEUD45y01YgNwa6BrWTHTUEAc0tieSdHpjI/Y6fp11q5u+TJxbaIAb gKHCBE2b5GXIGp6ISl6PWu01syeXp7p3Xu5Ft7vpDAkbwNnhGHkOPRoOJKF9sA== Received: by 81-205-150-117.fixed.kpn.net (OpenSMTPD) with ESMTPSA id 5930a989 (TLSv1.3:TLS_CHACHA20_POLY1305_SHA256:256:NO) for ; Wed, 11 Sep 2024 19:00:50 +0000 (UTC) From: Herman Rimm To: guix-patches@gnu.org Subject: [PATCH] gnu: perl-gd: Use native perl-extutils-pkgconfig. Date: Wed, 11 Sep 2024 21:00:19 +0200 Message-ID: <20240911190019.26307-1-herman@rimm.ee> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=81.205.150.117; envelope-from=herman@rimm.ee; helo=email.rimm.ee X-Spam_score_int: 12 X-Spam_score: 1.2 X-Spam_bar: + X-Spam_report: (1.2 / 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_PBL=3.335, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_RCVD_IP=0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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.4 (--) * gnu/packages/gd.scm (perl-gd)[native-inputs]: Replace perl-extutils-pkgconfig with %perl-extutils-pkgconfig. --- gnu/packages/gd.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gd.scm b/gnu/packages/gd.scm index 98d34cfa71..6ebc871161 100644 --- a/gnu/packages/gd.scm +++ b/gnu/packages/gd.scm @@ -127,7 +127,9 @@ (define-public perl-gd libjpeg-turbo zlib)) (native-inputs - (list perl-extutils-pkgconfig + ;; Avoid error in pre-inst-env. Cross-compilation is broken + ;; anyway, so no big loss. + (list %perl-extutils-pkgconfig perl-test-nowarnings)) (arguments (list #:make-maker-flags -- 2.45.2 ------------=_1726770902-29476-1--