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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3CF5B158095 for ; Sat, 20 Aug 2022 05:12:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35B81E07C7; Sat, 20 Aug 2022 05:12:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id AB9A5E075F for ; Sat, 20 Aug 2022 05:12:20 +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 8B77D335DB7 for ; Sat, 20 Aug 2022 05:12:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7A18569 for ; Sat, 20 Aug 2022 05:12:17 +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: <1660972257.6019a8883acfa44c2eec32836a440ada46cf918c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libxml2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libxml2/libxml2-2.10.0-r1.ebuild dev-libs/libxml2/libxml2-2.10.0.ebuild dev-libs/libxml2/libxml2-9999.ebuild X-VCS-Directories: dev-libs/libxml2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6019a8883acfa44c2eec32836a440ada46cf918c X-VCS-Branch: master Date: Sat, 20 Aug 2022 05:12:17 +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: 6a1ad13c-39d8-4b83-bf82-a95fa203b48d X-Archives-Hash: 0ebf5036a222fa5a3bc41ab1cb4cf548 commit: 6019a8883acfa44c2eec32836a440ada46cf918c Author: Sam James gentoo org> AuthorDate: Sat Aug 20 05:10:18 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Aug 20 05:10:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6019a888 dev-libs/libxml2: add USE=ftp FTP support was disabled by default in 2.10.0 but at least libxmlsec needs it. Closes: https://bugs.gentoo.org/865843 Signed-off-by: Sam James gentoo.org> dev-libs/libxml2/{libxml2-2.10.0.ebuild => libxml2-2.10.0-r1.ebuild} | 3 ++- dev-libs/libxml2/libxml2-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-libs/libxml2/libxml2-2.10.0.ebuild b/dev-libs/libxml2/libxml2-2.10.0-r1.ebuild similarity index 98% rename from dev-libs/libxml2/libxml2-2.10.0.ebuild rename to dev-libs/libxml2/libxml2-2.10.0-r1.ebuild index d9eb0d19172a..713da438e12c 100644 --- a/dev-libs/libxml2/libxml2-2.10.0.ebuild +++ b/dev-libs/libxml2/libxml2-2.10.0-r1.ebuild @@ -36,7 +36,7 @@ S="${WORKDIR}/${PN}-${PV%_rc*}" LICENSE="MIT" SLOT="2" -IUSE="debug examples icu lzma +python readline static-libs test" +IUSE="debug examples +ftp icu lzma +python readline static-libs test" RESTRICT="!test? ( test )" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" @@ -111,6 +111,7 @@ multilib_src_configure() { libxml2_configure() { ECONF_SOURCE="${S}" econf \ --enable-ipv6 \ + $(use_with ftp) \ $(use_with debug run-debug) \ $(use_with icu) \ $(use_with lzma) \ diff --git a/dev-libs/libxml2/libxml2-9999.ebuild b/dev-libs/libxml2/libxml2-9999.ebuild index 0fe269e46054..1c24959ee8b4 100644 --- a/dev-libs/libxml2/libxml2-9999.ebuild +++ b/dev-libs/libxml2/libxml2-9999.ebuild @@ -36,7 +36,7 @@ S="${WORKDIR}/${PN}-${PV%_rc*}" LICENSE="MIT" SLOT="2" -IUSE="debug examples icu lzma +python readline static-libs test" +IUSE="debug examples +ftp icu lzma +python readline static-libs test" RESTRICT="!test? ( test )" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" @@ -106,6 +106,7 @@ multilib_src_configure() { libxml2_configure() { ECONF_SOURCE="${S}" econf \ --enable-ipv6 \ + $(use_with ftp) \ $(use_with debug run-debug) \ $(use_with icu) \ $(use_with lzma) \