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 3699415800F for ; Fri, 3 Feb 2023 17:48:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FFFAE041F; Fri, 3 Feb 2023 17:48:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 4548BE041F for ; Fri, 3 Feb 2023 17:48:35 +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 5D8BF340D4F for ; Fri, 3 Feb 2023 17:48:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D33B9889 for ; Fri, 3 Feb 2023 17:48:32 +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: <1675446473.1352a480e30e215bfcea3f08e9af4d3079dbebe9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/bind-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/bind-tools/bind-tools-9.16.33-r1.ebuild net-dns/bind-tools/bind-tools-9.16.33.ebuild net-dns/bind-tools/bind-tools-9.16.36-r1.ebuild net-dns/bind-tools/bind-tools-9.16.36.ebuild net-dns/bind-tools/bind-tools-9.16.37-r1.ebuild net-dns/bind-tools/bind-tools-9.16.37.ebuild X-VCS-Directories: net-dns/bind-tools/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1352a480e30e215bfcea3f08e9af4d3079dbebe9 X-VCS-Branch: master Date: Fri, 3 Feb 2023 17:48:32 +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: 26861452-d1e6-4e09-9ecf-29cb1128c385 X-Archives-Hash: 5851ac56aecda2231f649ce9402236e3 commit: 1352a480e30e215bfcea3f08e9af4d3079dbebe9 Author: Sam James gentoo org> AuthorDate: Fri Feb 3 17:31:03 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 3 17:47:53 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1352a480 net-dns/bind-tools: depend on newer libuv At https://gitlab.isc.org/isc-projects/bind9/-/blob/v9_16/lib/isc/netmgr/netmgr.c#L244, there's a check for runtime version vs built against version, but not equality, just whether it's new enough if at build time, we built against something which had more features b/c newer. Require the newest one in the list to avoid issues when mixing stable/~arch and also because we're not going to be testing an old libuv anyway. Reported by robbat2. Signed-off-by: Sam James gentoo.org> .../{bind-tools-9.16.33.ebuild => bind-tools-9.16.33-r1.ebuild} | 7 +++++-- .../{bind-tools-9.16.36.ebuild => bind-tools-9.16.36-r1.ebuild} | 5 ++++- .../{bind-tools-9.16.37.ebuild => bind-tools-9.16.37-r1.ebuild} | 5 ++++- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/net-dns/bind-tools/bind-tools-9.16.33.ebuild b/net-dns/bind-tools/bind-tools-9.16.33-r1.ebuild similarity index 93% rename from net-dns/bind-tools/bind-tools-9.16.33.ebuild rename to net-dns/bind-tools/bind-tools-9.16.33-r1.ebuild index 9fac2b5c984e..a0e03ab0062c 100644 --- a/net-dns/bind-tools/bind-tools-9.16.33.ebuild +++ b/net-dns/bind-tools/bind-tools-9.16.33-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -21,8 +21,11 @@ IUSE="+caps doc gssapi idn libedit readline test xml" # no PKCS11 currently as it requires OpenSSL to be patched, also see bug #409687 RESTRICT="!test? ( test )" +# libuv lower bound should be the highest value seen at +# https://gitlab.isc.org/isc-projects/bind9/-/blob/v9_16/lib/isc/netmgr/netmgr.c#L244 +# to avoid issues with matching stable/testing, etc COMMON_DEPEND=" - dev-libs/libuv:= + >=dev-libs/libuv-1.42.0:= dev-libs/openssl:= caps? ( sys-libs/libcap ) xml? ( dev-libs/libxml2 ) diff --git a/net-dns/bind-tools/bind-tools-9.16.36.ebuild b/net-dns/bind-tools/bind-tools-9.16.36-r1.ebuild similarity index 94% rename from net-dns/bind-tools/bind-tools-9.16.36.ebuild rename to net-dns/bind-tools/bind-tools-9.16.36-r1.ebuild index 4e991c95960e..632173751156 100644 --- a/net-dns/bind-tools/bind-tools-9.16.36.ebuild +++ b/net-dns/bind-tools/bind-tools-9.16.36-r1.ebuild @@ -21,8 +21,11 @@ IUSE="+caps doc gssapi idn libedit readline test xml" # no PKCS11 currently as it requires OpenSSL to be patched, also see bug #409687 RESTRICT="!test? ( test )" +# libuv lower bound should be the highest value seen at +# https://gitlab.isc.org/isc-projects/bind9/-/blob/v9_16/lib/isc/netmgr/netmgr.c#L244 +# to avoid issues with matching stable/testing, etc COMMON_DEPEND=" - dev-libs/libuv:= + >=dev-libs/libuv-1.42.0:= dev-libs/openssl:= caps? ( sys-libs/libcap ) xml? ( dev-libs/libxml2 ) diff --git a/net-dns/bind-tools/bind-tools-9.16.37.ebuild b/net-dns/bind-tools/bind-tools-9.16.37-r1.ebuild similarity index 94% rename from net-dns/bind-tools/bind-tools-9.16.37.ebuild rename to net-dns/bind-tools/bind-tools-9.16.37-r1.ebuild index 8c70c6e06ed8..da4c92eb0df6 100644 --- a/net-dns/bind-tools/bind-tools-9.16.37.ebuild +++ b/net-dns/bind-tools/bind-tools-9.16.37-r1.ebuild @@ -21,8 +21,11 @@ IUSE="+caps doc gssapi idn libedit readline test xml" # no PKCS11 currently as it requires OpenSSL to be patched, also see bug #409687 RESTRICT="!test? ( test )" +# libuv lower bound should be the highest value seen at +# https://gitlab.isc.org/isc-projects/bind9/-/blob/v9_16/lib/isc/netmgr/netmgr.c#L244 +# to avoid issues with matching stable/testing, etc COMMON_DEPEND=" - dev-libs/libuv:= + >=dev-libs/libuv-1.42.0:= dev-libs/openssl:= caps? ( sys-libs/libcap ) xml? ( dev-libs/libxml2 )