From unknown Tue Jun 17 20:13:04 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#72940 <72940@debbugs.gnu.org> To: bug#72940 <72940@debbugs.gnu.org> Subject: Status: [PATCH] gnu: gd: Requires.private to propagated inputs Reply-To: bug#72940 <72940@debbugs.gnu.org> Date: Wed, 18 Jun 2025 03:13:04 +0000 retitle 72940 [PATCH] gnu: gd: Requires.private to propagated inputs reassign 72940 guix-patches submitter 72940 Rutherther severity 72940 normal tag 72940 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 01 17:47:05 2024 Received: (at submit) by debbugs.gnu.org; 1 Sep 2024 21:47:05 +0000 Received: from localhost ([127.0.0.1]:40852 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sksPY-0008DR-Te for submit@debbugs.gnu.org; Sun, 01 Sep 2024 17:47:05 -0400 Received: from lists.gnu.org ([209.51.188.17]:46272) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1skl2N-0000HU-Pz for submit@debbugs.gnu.org; Sun, 01 Sep 2024 09:54:40 -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 1skl1P-0006AE-08 for guix-patches@gnu.org; Sun, 01 Sep 2024 09:53:40 -0400 Received: from mail-40131.protonmail.ch ([185.70.40.131]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1skl1N-0006zh-77 for guix-patches@gnu.org; Sun, 01 Sep 2024 09:53:38 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1725198812; x=1725458012; bh=Cusz3L2G0xwCALHTk3g5Oppw0/aomzf3TWOkzoFeVoU=; h=Date:To:From:Cc:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=sidqt+Wq9UjPPsWwy+PoWEiGnyLyrO8az8x0uFIhiKe0MhGgqPtFPrhG7pI105vZV 4IOqmKH3/r2tDZdUf+vRuqDRrr+apUAxycxd5KFxFpebpF0c7gf5JTOxSzKHQrQsRU 94+lHUPfh4EzCe7hcGq/P66ewxZZff4XyWa2kAEqa09kILavgJCxmOdgyyJxqy5Wbx O0G5dJ+yl/5kTiUR1qlwXjv/QVcRzWVeV89v2jwy86pMURNSGcJ10SXJTyFXULHgEm uKNPGWxUwMKmDEdyAkAiJfs8R+FuqkMmfZYwnYIsmU3yYOXGHsmNXLpSc/fUnsVgYX sVD1B3aBkYlow== Date: Sun, 01 Sep 2024 13:53:28 +0000 To: guix-patches@gnu.org From: Rutherther Subject: [PATCH] gnu: gd: Requires.private to propagated inputs Message-ID: <20240901135246.5925-1-rutherther@protonmail.com> Feedback-ID: 8107604:user:proton X-Pm-Message-ID: 865b1b56e7c35c00c2054f2b48ae69692412f7c5 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.40.131; envelope-from=rutherther@protonmail.com; helo=mail-40131.protonmail.ch 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, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sun, 01 Sep 2024 17:47:03 -0400 Cc: Rutherther 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 (--) The package gd provides a pkg-config file with all its inputs in Requires.private. I think that this means that packages that = depend on gd also need these as inputs to build. This is causing trouble for examp= le in php, failing in configure phase with ``` checking for gdlib >=3D 2.1.0... no configure: error: Package requirements (gdlib >=3D 2.1.0) were not met: Package 'freetype2', required by 'gdlib', not found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. ``` After this, php is able to configure, though it still fails in the check phase, where 3 tests fail. These tests are related to gd, so there seems to be other problem as well, but I see also other tests for gd disabled, so maybe it will be fine also disabling these three to fix this, I am not s= ure. --- gnu/packages/gd.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/gd.scm b/gnu/packages/gd.scm index 98d34cfa71..7ced0774bd 100644 --- a/gnu/packages/gd.scm +++ b/gnu/packages/gd.scm @@ -85,7 +85,7 @@ (define-public gd "\\.la$"))))))) (native-inputs (list pkg-config)) - (inputs + (propagated-inputs (list fontconfig freetype libjpeg-turbo --=20 2.45.2 From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 01 18:25:29 2024 Received: (at control) by debbugs.gnu.org; 1 Sep 2024 22:25:30 +0000 Received: from localhost ([127.0.0.1]:40908 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1skt0j-0001cM-Lr for submit@debbugs.gnu.org; Sun, 01 Sep 2024 18:25:29 -0400 Received: from tobias.gr ([80.241.217.52]:45966) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1skt0h-0001cC-CC for control@debbugs.gnu.org; Sun, 01 Sep 2024 18:25:28 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=V8S2XS1AgjO/Q MhqLS/Fp7MbiciEi5z0jqIpF8bbl3o=; h=to:from:date; d=tobias.gr; b=mjAaHO kwuODwYA2Zx6CAKfsOvG0WbKZSdoH/AwHAwXRkjWUcNKRBdG3SoMhe9cCzvsHtxQYNNije FWHy9f18IzJS84A9PdMMzH4QD0lewvCo+cI0cqPJbD8tdbg80XhHzeQNcgbR55eyJ2gQa4 ZlGNJPfImm8QbpypTFJUb/8menyn5X8TZZTHjz0DI+bpBo3iu4+NL1tsi3RWe3Z8s1pRhD AU6b4w1c134ZGLslcFRtOzlvwK04JyZLehxFBkX9iAksv6yNlaHws0nl/5rTZNvMUqzb3D +fTfOc37jRNY657QIzlgjtPZPvF4HSgkjrrIK1QYW1XeBYKkCo3lLbXw== Received: by submission.tobias.gr (OpenSMTPD) with ESMTP id 7ef21af6 for ; Sun, 1 Sep 2024 22:24:20 +0000 (UTC) MIME-Version: 1.0 Date: Mon, 02 Sep 2024 00:24:19 +0200 From: Tobias Geerinckx-Rice To: control@debbugs.gnu.org Message-ID: <5507402b9ba5f0301534a1d092c63560@tobias.gr> Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit 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 72943 72940 thanks Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.0 SPF_HELO_PASS SPF: HELO 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 72943 72940 thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 02 07:54:46 2024 Received: (at control) by debbugs.gnu.org; 2 Sep 2024 11:54:46 +0000 Received: from localhost ([127.0.0.1]:46817 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sl5dt-0008A6-IR for submit@debbugs.gnu.org; Mon, 02 Sep 2024 07:54:45 -0400 Received: from tobias.gr ([80.241.217.52]:45330) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sl5dq-00089n-Vc for control@debbugs.gnu.org; Mon, 02 Sep 2024 07:54:44 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=+9NE7EOSALKFu tdyQecJdIgMbIeRruX7KlCihNm0A4A=; h=to:from:date; d=tobias.gr; b=FGe2+u ckclgHuoTBK6nETLszy+I54hfNkbhMbMryIe2w8qpPAr+4FvPg6xYWdnVpq+Zvatzcpwgn kocYIok8JKaT4Qgb6AHaOCn+qeRuKlmdgLMuNDpQtcQ5/7VLnv4lBp96OKncNVE0xGFDhJ SQ5y3CsaP48+E+CKEglbGEoeFRIt49g6tUTxuy8SLrKjvFW61KMeUmLRvAI5hnmRjquQbn rmNp4vUzGodj/OVkNuMkpDP8S+fFXyttx85g/i8+7jV8YvEs9Lvu8F6W2OwFGfYWdrgfJR vtI2MerWvgJD0adx5GgL92Q9FDbj+skiBk5GOEC4AefCDr7WA4cnGzlA== Received: by submission.tobias.gr (OpenSMTPD) with ESMTP id 52691115 for ; Mon, 2 Sep 2024 11:53:37 +0000 (UTC) MIME-Version: 1.0 Date: Mon, 02 Sep 2024 13:53:37 +0200 From: Tobias Geerinckx-Rice To: control@debbugs.gnu.org Message-ID: <6921935c0d74dd5c7b96395f373f0085@tobias.gr> Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit 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: reassign 72962 guix-patches merge 72943 72962 thanks not Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.0 SPF_HELO_PASS SPF: HELO 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 (+) reassign 72962 guix-patches merge 72943 72962 thanks not