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 B8FFD15807B for ; Fri, 25 Oct 2024 21:47:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 945D7E0A80; Fri, 25 Oct 2024 21:47:19 +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 43221E0A68 for ; Fri, 25 Oct 2024 21:47:19 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 693A03430CB for ; Fri, 25 Oct 2024 21:47:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0810A10BB for ; Fri, 25 Oct 2024 21:47: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: <1729892761.193cfb33ed8896ec795fd70ec4bdf1b189abcd43.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.31.ebuild X-VCS-Directories: net-dns/bind/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 193cfb33ed8896ec795fd70ec4bdf1b189abcd43 X-VCS-Branch: master Date: Fri, 25 Oct 2024 21:47: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: 4b6e10ff-2199-42cb-97fd-b994a6028170 X-Archives-Hash: a6730bb1612e8c994925235ae49dd56c commit: 193cfb33ed8896ec795fd70ec4bdf1b189abcd43 Author: Sam James gentoo org> AuthorDate: Fri Oct 25 21:46:01 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Oct 25 21:46:01 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=193cfb33 net-dns/bind: drop USE=dnsrps for 9.18.31 As negril says in the bug: "the dnsrps useflag should be dropped. bind supports rpz natively. This only enables the api for an external provider." Closes: https://bugs.gentoo.org/938936 Signed-off-by: Sam James gentoo.org> net-dns/bind/bind-9.18.31.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-dns/bind/bind-9.18.31.ebuild b/net-dns/bind/bind-9.18.31.ebuild index 0793437baab0..db109c392f84 100644 --- a/net-dns/bind/bind-9.18.31.ebuild +++ b/net-dns/bind/bind-9.18.31.ebuild @@ -16,7 +16,7 @@ S="${WORKDIR}/${PN}-${MY_PV}" LICENSE="MPL-2.0" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="+caps dnsrps dnstap doc doh fixed-rrset idn jemalloc geoip gssapi lmdb selinux static-libs test xml" +IUSE="+caps dnstap doc doh fixed-rrset idn jemalloc geoip gssapi lmdb selinux static-libs test xml" RESTRICT="!test? ( test )" DEPEND=" @@ -75,7 +75,7 @@ src_configure() { --with-json-c --with-zlib $(use_enable caps linux-caps) - $(use_enable dnsrps) + --disable-dnsrps $(use_enable dnstap) $(use_enable doh) $(use_with doh libnghttp2)