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 2C81C1581D3 for ; Sun, 26 May 2024 23:12:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A630E29F8; Sun, 26 May 2024 23:12:54 +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 456E4E29F7 for ; Sun, 26 May 2024 23:12:54 +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 3EE6834302F for ; Sun, 26 May 2024 23:12:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D0261736 for ; Sun, 26 May 2024 23:12:51 +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: <1716765064.58c1209445f2a301076c966ffe14972eaaaa1438.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/audit/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/audit/audit-3.1.1.ebuild sys-process/audit/audit-3.1.2.ebuild X-VCS-Directories: sys-process/audit/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 58c1209445f2a301076c966ffe14972eaaaa1438 X-VCS-Branch: master Date: Sun, 26 May 2024 23:12:51 +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: 5d93c3a6-015e-435b-b598-eb596f44f2f0 X-Archives-Hash: 4dcfa76221c6395a18826fb7b8dfda60 commit: 58c1209445f2a301076c966ffe14972eaaaa1438 Author: Eli Schwartz gmail com> AuthorDate: Sun May 26 06:51:16 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun May 26 23:11:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58c12094 sys-process/audit: add whitelist for false positive configure implicit decls Only fails on musl, but does so consistently regardless of -Werror=*. Closes: https://bugs.gentoo.org/898828 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> sys-process/audit/audit-3.1.1.ebuild | 8 +++++++- sys-process/audit/audit-3.1.2.ebuild | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/sys-process/audit/audit-3.1.1.ebuild b/sys-process/audit/audit-3.1.1.ebuild index ab8e362008db..ffb298d10bcd 100644 --- a/sys-process/audit/audit-3.1.1.ebuild +++ b/sys-process/audit/audit-3.1.1.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 @@ -45,6 +45,12 @@ PATCHES=( "${FILESDIR}"/${PN}-3.0.8-musl-malloc.patch ) +QA_CONFIG_IMPL_DECL_SKIP=( + # missing on musl. Uses handrolled AC_LINK_IFELSE but fails at link time + # for older compilers regardless. bug #898828 + strndupa +) + src_prepare() { # audisp-remote moved in multilib_src_install_all sed -i \ diff --git a/sys-process/audit/audit-3.1.2.ebuild b/sys-process/audit/audit-3.1.2.ebuild index d2b9730673da..c599682bae4c 100644 --- a/sys-process/audit/audit-3.1.2.ebuild +++ b/sys-process/audit/audit-3.1.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 @@ -42,6 +42,12 @@ PATCHES=( "${FILESDIR}"/${PN}-3.0.8-musl-malloc.patch ) +QA_CONFIG_IMPL_DECL_SKIP=( + # missing on musl. Uses handrolled AC_LINK_IFELSE but fails at link time + # for older compilers regardless. bug #898828 + strndupa +) + src_prepare() { # audisp-remote moved in multilib_src_install_all sed -i \