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 B9F3715808B for ; Fri, 18 Feb 2022 02:44:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C0212BC009; Fri, 18 Feb 2022 02:44:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 824F52BC00B for ; Fri, 18 Feb 2022 02:44:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id A092A3433A4 for ; Fri, 18 Feb 2022 02:44:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23FC62F0 for ; Fri, 18 Feb 2022 02:44:30 +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: <1645152022.7c3151d12085586a7ca2133583f7023fe86a793f.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.9.12-r5.ebuild X-VCS-Directories: dev-libs/libxml2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7c3151d12085586a7ca2133583f7023fe86a793f X-VCS-Branch: master Date: Fri, 18 Feb 2022 02:44:30 +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: 6827fc26-20b8-4202-ab56-f7023b3771a3 X-Archives-Hash: 62250147fa5e90b21fc0fb1c739c4147 commit: 7c3151d12085586a7ca2133583f7023fe86a793f Author: Michał Górny gentoo org> AuthorDate: Sat Feb 12 16:51:42 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 18 02:40:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c3151d1 dev-libs/libxml2: Remove unnecessary USE=ipv6 Signed-off-by: Michał Górny gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/24168 Signed-off-by: Sam James gentoo.org> dev-libs/libxml2/libxml2-2.9.12-r5.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-libs/libxml2/libxml2-2.9.12-r5.ebuild b/dev-libs/libxml2/libxml2-2.9.12-r5.ebuild index 7dd8d6761000..9cc72e7d06a0 100644 --- a/dev-libs/libxml2/libxml2-2.9.12-r5.ebuild +++ b/dev-libs/libxml2/libxml2-2.9.12-r5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -37,7 +37,7 @@ SLOT="2" # Dropped keywords for now because it's a minor LDFLAGS fix, and it will ease upgrades # bug #802210 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="debug examples icu ipv6 lzma +python readline static-libs test" +IUSE="debug examples icu lzma +python readline static-libs test" RESTRICT="!test? ( test )" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" @@ -148,11 +148,11 @@ multilib_src_configure() { libxml2_configure() { ECONF_SOURCE="${S}" econf \ + --enable-ipv6 \ --with-html-subdir=${PF}/html \ $(use_with debug run-debug) \ $(use_with icu) \ $(use_with lzma) \ - $(use_enable ipv6) \ $(use_enable static-libs static) \ $(multilib_native_use_with readline) \ $(multilib_native_use_with readline history) \