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 293BF15852A for ; Fri, 23 Aug 2024 02:08:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E77522BC04E; Fri, 23 Aug 2024 02:08:23 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CF9BC2BC04E for ; Fri, 23 Aug 2024 02:08:23 +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 E4548342FA2 for ; Fri, 23 Aug 2024 02:08:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EAE1E1EFD for ; Fri, 23 Aug 2024 02:08:20 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1724378590.a39464bd78c18108f1b93b64882dfca847fb8149.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/ldns/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/ldns/ldns-1.8.3-r3.ebuild X-VCS-Directories: net-libs/ldns/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: a39464bd78c18108f1b93b64882dfca847fb8149 X-VCS-Branch: master Date: Fri, 23 Aug 2024 02:08:20 +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: fde6efc9-d429-420f-ac57-1270f06dee49 X-Archives-Hash: 8db97796ad2227d179db19c80e142744 commit: a39464bd78c18108f1b93b64882dfca847fb8149 Author: Eli Schwartz gentoo org> AuthorDate: Fri Aug 23 00:19:44 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Fri Aug 23 02:03:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a39464bd net-libs/ldns: ignore implicit decl false positive Closes: https://bugs.gentoo.org/898658 Signed-off-by: Eli Schwartz gentoo.org> net-libs/ldns/ldns-1.8.3-r3.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/net-libs/ldns/ldns-1.8.3-r3.ebuild b/net-libs/ldns/ldns-1.8.3-r3.ebuild index 1c0a0c3058a2..a7f5067f7cc5 100644 --- a/net-libs/ldns/ldns-1.8.3-r3.ebuild +++ b/net-libs/ldns/ldns-1.8.3-r3.ebuild @@ -34,6 +34,11 @@ RDEPEND=" ${DEPEND} " +# False positive, always fails, bug #898658 +QA_CONFIG_IMPL_DECL_SKIP+=( + ioctlsocket +) + MULTILIB_CHOST_TOOLS=( /usr/bin/ldns-config )