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 6293715808B for ; Sat, 31 Aug 2024 07:10:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 593D6E29CF; Sat, 31 Aug 2024 07:10:44 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 3C45DE29D5 for ; Sat, 31 Aug 2024 07:10:44 +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 7E9383430C6 for ; Sat, 31 Aug 2024 07:10:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E44CB1F2D for ; Sat, 31 Aug 2024 07:10:41 +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: <1725088214.de3f4c4ededefda3220a8dd4c7a8622567ed2584.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/bind/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/bind/bind-9.18.0.ebuild net-dns/bind/metadata.xml X-VCS-Directories: net-dns/bind/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: de3f4c4ededefda3220a8dd4c7a8622567ed2584 X-VCS-Branch: master Date: Sat, 31 Aug 2024 07:10:41 +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: f94a5d0c-f829-458f-97fe-fa3af531836b X-Archives-Hash: 0abd7ab72fce280e8e8c72f9c512022b commit: de3f4c4ededefda3220a8dd4c7a8622567ed2584 Author: Sam James gentoo org> AuthorDate: Wed Mar 16 18:50:08 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Aug 31 07:10:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de3f4c4e net-dns/bind: use standard USE=test USE=test-extra means we lose some of the niceties of emerge ... --with-test-deps and such. In order to avoid circular dependencies, use the normal pattern of: - emerge -v1o --with-test-deps net-dns/bind - FEATURES=test emerge -v1 net-dns/bind Bug: https://bugs.gentoo.org/832218 Bug: https://bugs.gentoo.org/930348 Bug: https://bugs.gentoo.org/936568 Bug: https://bugs.gentoo.org/937907 Signed-off-by: Sam James gentoo.org> net-dns/bind/bind-9.18.0.ebuild | 7 ++++--- net-dns/bind/metadata.xml | 1 - 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/net-dns/bind/bind-9.18.0.ebuild b/net-dns/bind/bind-9.18.0.ebuild index dd465d39879c..a9242a3570fb 100644 --- a/net-dns/bind/bind-9.18.0.ebuild +++ b/net-dns/bind/bind-9.18.0.ebuild @@ -2,8 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit python-any-r1 systemd tmpfiles MY_PV="${PV/_p/-P}" @@ -19,7 +19,8 @@ SRC_URI="https://downloads.isc.org/isc/bind9/${PV}/${P}.tar.xz" LICENSE="MPL-2.0" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux" -IUSE="+caps dnsrps dnstap doc doh fixed-rrset idn geoip gssapi lmdb selinux static-libs test-extra xml" +IUSE="+caps dnsrps dnstap doc doh fixed-rrset idn geoip gssapi lmdb selinux static-libs test xml" +RESTRICT="!test? ( test )" DEPEND=" acct-group/named @@ -39,7 +40,7 @@ DEPEND=" xml? ( dev-libs/libxml2 ) " BDEPEND=" - test-extra? ( + test? ( ${PYTHON_DEPS} dev-python/pytest dev-perl/Net-DNS-SEC diff --git a/net-dns/bind/metadata.xml b/net-dns/bind/metadata.xml index 49012f10c364..aa2583bf5543 100644 --- a/net-dns/bind/metadata.xml +++ b/net-dns/bind/metadata.xml @@ -15,6 +15,5 @@ Enable gssapi support Enable JSON statistics channel Enable LMDB support to store configuration for 'addzone' zones - Pulls in extra dependencies for additional testing