From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 07FB71581EC for ; Fri, 22 Nov 2024 21:15:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3898DE087D; Fri, 22 Nov 2024 21:15:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 18EA0E0872 for ; Fri, 22 Nov 2024 21:15:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5A4F8335CAF for ; Fri, 22 Nov 2024 21:15:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BE9D818C4 for ; Fri, 22 Nov 2024 21:15:15 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1732310080.1b611d346a072bb8c8d707e3459524f4469a4bec.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/xmlrpc-c/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/xmlrpc-c/xmlrpc-c-1.54.05-r3.ebuild dev-libs/xmlrpc-c/xmlrpc-c-1.54.06-r1.ebuild dev-libs/xmlrpc-c/xmlrpc-c-1.59.03.ebuild X-VCS-Directories: dev-libs/xmlrpc-c/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1b611d346a072bb8c8d707e3459524f4469a4bec X-VCS-Branch: master Date: Fri, 22 Nov 2024 21:15:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d7e20aa8-4a8c-49de-bc70-1fea449708a4 X-Archives-Hash: 440b055553dcbe1a0d8eadcacd61916c commit: 1b611d346a072bb8c8d707e3459524f4469a4bec Author: Andrej Shadura collabora co uk> AuthorDate: Fri Nov 22 20:00:22 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Nov 22 21:14:40 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b611d34 dev-libs/xmlrpc-c: Declare curl as a build dependency xmlrpc-c depends on curl-config during the configuration stage. This means curl needs to be in BDEPEND, not just DEPEND. Signed-off-by: Andrej Shadura collabora.co.uk> Closes: https://github.com/gentoo/gentoo/pull/39419 Signed-off-by: Sam James gentoo.org> dev-libs/xmlrpc-c/xmlrpc-c-1.54.05-r3.ebuild | 7 ++++++- dev-libs/xmlrpc-c/xmlrpc-c-1.54.06-r1.ebuild | 7 ++++++- dev-libs/xmlrpc-c/xmlrpc-c-1.59.03.ebuild | 7 ++++++- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/dev-libs/xmlrpc-c/xmlrpc-c-1.54.05-r3.ebuild b/dev-libs/xmlrpc-c/xmlrpc-c-1.54.05-r3.ebuild index 5f6a9c62e545..01ec7579e3d3 100644 --- a/dev-libs/xmlrpc-c/xmlrpc-c-1.54.05-r3.ebuild +++ b/dev-libs/xmlrpc-c/xmlrpc-c-1.54.05-r3.ebuild @@ -28,7 +28,12 @@ RDEPEND=" libxml2? ( dev-libs/libxml2 ) " DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" + +# configure calls curl-config, hence curl in BDEPEND +BDEPEND=" + virtual/pkgconfig + curl? ( net-misc/curl ) +" PATCHES=( "${FILESDIR}"/${PN}-1.51.06-pkg-config-libxml2.patch diff --git a/dev-libs/xmlrpc-c/xmlrpc-c-1.54.06-r1.ebuild b/dev-libs/xmlrpc-c/xmlrpc-c-1.54.06-r1.ebuild index 508219953acd..0a5e8ebcb462 100644 --- a/dev-libs/xmlrpc-c/xmlrpc-c-1.54.06-r1.ebuild +++ b/dev-libs/xmlrpc-c/xmlrpc-c-1.54.06-r1.ebuild @@ -29,7 +29,12 @@ RDEPEND=" libxml2? ( dev-libs/libxml2 ) " DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" + +# configure calls curl-config, hence curl in BDEPEND +BDEPEND=" + virtual/pkgconfig + curl? ( net-misc/curl ) +" PATCHES=( "${FILESDIR}"/${PN}-1.51.06-pkg-config-libxml2.patch diff --git a/dev-libs/xmlrpc-c/xmlrpc-c-1.59.03.ebuild b/dev-libs/xmlrpc-c/xmlrpc-c-1.59.03.ebuild index 4d3950ce61ef..c7b4df22fc20 100644 --- a/dev-libs/xmlrpc-c/xmlrpc-c-1.59.03.ebuild +++ b/dev-libs/xmlrpc-c/xmlrpc-c-1.59.03.ebuild @@ -29,7 +29,12 @@ RDEPEND=" libxml2? ( dev-libs/libxml2 ) " DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" + +# configure calls curl-config, hence curl in BDEPEND +BDEPEND=" + virtual/pkgconfig + curl? ( net-misc/curl ) +" PATCHES=( "${FILESDIR}"/${PN}-1.51.06-pkg-config-libxml2.patch