Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/libarchive/
Date: Tue, 28 Feb 2023 17:08:46
Message-Id: 1677604118.d51663a8453424cd5c57800066309e48a16361bd.mgorny@gentoo
1 commit: d51663a8453424cd5c57800066309e48a16361bd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 28 17:07:53 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 28 17:08:38 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d51663a8
7
8 app-arch/libarchive: Silence implicit function decl false positives
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-arch/libarchive/libarchive-3.6.2-r1.ebuild | 7 +++++++
13 1 file changed, 7 insertions(+)
14
15 diff --git a/app-arch/libarchive/libarchive-3.6.2-r1.ebuild b/app-arch/libarchive/libarchive-3.6.2-r1.ebuild
16 index 66242292e6c3..513c6d16e2f5 100644
17 --- a/app-arch/libarchive/libarchive-3.6.2-r1.ebuild
18 +++ b/app-arch/libarchive/libarchive-3.6.2-r1.ebuild
19 @@ -48,6 +48,13 @@ BDEPEND="
20 verify-sig? ( >=sec-keys/openpgp-keys-libarchive-20221209 )
21 "
22
23 +# false positives (checks for libc-defined hash functions)
24 +QA_CONFIG_IMPL_DECL_SKIP=(
25 + SHA256_Init SHA256_Update SHA256_Final
26 + SHA384_Init SHA384_Update SHA384_Final
27 + SHA512_Init SHA512_Update SHA512_Final
28 +)
29 +
30 multilib_src_configure() {
31 export ac_cv_header_ext2fs_ext2_fs_h=$(usex e2fsprogs) #354923