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 170F81581F0 for ; Wed, 11 Dec 2024 11:26:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D66CE0B0C; Wed, 11 Dec 2024 11:26:11 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C9CACE0B0C for ; Wed, 11 Dec 2024 11:26:09 +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 631CF343088 for ; Wed, 11 Dec 2024 11:26:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BE835AED for ; Wed, 11 Dec 2024 11:26:06 +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: <1733916310.63a96ace9cb4603ce47168500734b93f7fd21ae4.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/knot/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/knot/knot-3.2.2.ebuild net-dns/knot/knot-3.2.9-r1.ebuild net-dns/knot/knot-3.4.2-r2.ebuild net-dns/knot/knot-3.4.3-r1.ebuild X-VCS-Directories: net-dns/knot/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 63a96ace9cb4603ce47168500734b93f7fd21ae4 X-VCS-Branch: master Date: Wed, 11 Dec 2024 11:26:06 +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: 55f24ca5-cf75-4834-ac2c-0064fb501515 X-Archives-Hash: 1648f5cc9938339b4f8e3f50db529376 commit: 63a96ace9cb4603ce47168500734b93f7fd21ae4 Author: Nicolas PARLANT parhuet fr> AuthorDate: Mon Dec 9 13:10:16 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Dec 11 11:25:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63a96ace net-dns/knot: fix QA implicit function in configure QA Notice: cpuset_create cpuset_destroy Used to check cpuset_t in sched.h with NetBSD. False positive because linux have sched.h too but with cpu_set_t Closes: https://bugs.gentoo.org/879723 Signed-off-by: Nicolas PARLANT parhuet.fr> Closes: https://github.com/gentoo/gentoo/pull/39650 Signed-off-by: Sam James gentoo.org> net-dns/knot/knot-3.2.2.ebuild | 12 ++++++++---- net-dns/knot/knot-3.2.9-r1.ebuild | 4 ++++ net-dns/knot/knot-3.4.2-r2.ebuild | 4 ++++ net-dns/knot/knot-3.4.3-r1.ebuild | 4 ++++ 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/net-dns/knot/knot-3.2.2.ebuild b/net-dns/knot/knot-3.2.2.ebuild index 76430f146b00..d19b7b58777e 100644 --- a/net-dns/knot/knot-3.2.2.ebuild +++ b/net-dns/knot/knot-3.2.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,6 +12,8 @@ DESCRIPTION="High-performance authoritative-only DNS server" HOMEPAGE="https://www.knot-dns.cz/ https://gitlab.nic.cz/knot/knot-dns" SRC_URI="https://secure.nic.cz/files/knot-dns/${P/_/-}.tar.xz" +S="${WORKDIR}/${P/_/-}" + LICENSE="GPL-3+" SLOT="0/${KNOT_SUBSLOT}" KEYWORDS="amd64 ~riscv x86" @@ -53,8 +55,8 @@ RDEPEND=" quic? ( net-libs/ngtcp2:=[gnutls] ) systemd? ( sys-apps/systemd:= ) xdp? ( - dev-libs/libbpf:= - net-libs/libmnl:= + dev-libs/libbpf:= + net-libs/libmnl:= ) " DEPEND="${RDEPEND}" @@ -63,7 +65,9 @@ BDEPEND=" doc? ( dev-python/sphinx ) " -S="${WORKDIR}/${P/_/-}" +# Used to check cpuset_t in sched.h with NetBSD. +# False positive because linux have sched.h too but with cpu_set_t +QA_CONFIG_IMPL_DECL_SKIP=( cpuset_create cpuset_destroy ) src_configure() { local u diff --git a/net-dns/knot/knot-3.2.9-r1.ebuild b/net-dns/knot/knot-3.2.9-r1.ebuild index 7a4b327e73e2..c46323b3e1fb 100644 --- a/net-dns/knot/knot-3.2.9-r1.ebuild +++ b/net-dns/knot/knot-3.2.9-r1.ebuild @@ -66,6 +66,10 @@ BDEPEND=" doc? ( dev-python/sphinx ) " +# Used to check cpuset_t in sched.h with NetBSD. +# False positive because linux have sched.h too but with cpu_set_t +QA_CONFIG_IMPL_DECL_SKIP=( cpuset_create cpuset_destroy ) + src_configure() { local u local my_conf=( diff --git a/net-dns/knot/knot-3.4.2-r2.ebuild b/net-dns/knot/knot-3.4.2-r2.ebuild index 3e4f6cadbe37..93aa5243b76d 100644 --- a/net-dns/knot/knot-3.4.2-r2.ebuild +++ b/net-dns/knot/knot-3.4.2-r2.ebuild @@ -77,6 +77,10 @@ BDEPEND=" ) " +# Used to check cpuset_t in sched.h with NetBSD. +# False positive because linux have sched.h too but with cpu_set_t +QA_CONFIG_IMPL_DECL_SKIP=( cpuset_create cpuset_destroy ) + src_prepare() { default diff --git a/net-dns/knot/knot-3.4.3-r1.ebuild b/net-dns/knot/knot-3.4.3-r1.ebuild index 40e3b8bd878c..3de295a89f70 100644 --- a/net-dns/knot/knot-3.4.3-r1.ebuild +++ b/net-dns/knot/knot-3.4.3-r1.ebuild @@ -77,6 +77,10 @@ BDEPEND=" ) " +# Used to check cpuset_t in sched.h with NetBSD. +# False positive because linux have sched.h too but with cpu_set_t +QA_CONFIG_IMPL_DECL_SKIP=( cpuset_create cpuset_destroy ) + src_prepare() { # https://gitlab.nic.cz/knot/knot-dns/-/issues/946 cat > tests/contrib/test_atomic.c <<-_EOF_ || die