diff options
author | Sam James <sam@gentoo.org> | 2024-03-24 21:03:41 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-03-24 22:40:50 +0000 |
commit | 2a319f2040df45d3132ae21191906b6ee404d458 (patch) | |
tree | 7ed42534f8e9a1180b77bf46647840510e4cbff4 /app-arch | |
parent | sys-kernel/git-sources: drop 6.8_rc7 (diff) | |
download | gentoo-2a319f2040df45d3132ae21191906b6ee404d458.tar.gz gentoo-2a319f2040df45d3132ae21191906b6ee404d458.tar.bz2 gentoo-2a319f2040df45d3132ae21191906b6ee404d458.zip |
app-arch/pixz: skip lint test (cppcheck)
We don't care for these wrt packaging.
Closes: https://bugs.gentoo.org/915008
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/pixz/pixz-1.0.7-r1.ebuild | 8 | ||||
-rw-r--r-- | app-arch/pixz/pixz-9999.ebuild | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/app-arch/pixz/pixz-1.0.7-r1.ebuild b/app-arch/pixz/pixz-1.0.7-r1.ebuild index 7e591aaa8701..42b11e22d697 100644 --- a/app-arch/pixz/pixz-1.0.7-r1.ebuild +++ b/app-arch/pixz/pixz-1.0.7-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -36,6 +36,12 @@ DEPEND=" src_prepare() { default + # We're not interested in linting tests for our purposes (bug #915008) + cat > test/cppcheck-src.sh <<-EOF || die + #!/bin/sh + exit 77 + EOF + [[ ${PV} == "9999" ]] && eautoreconf } diff --git a/app-arch/pixz/pixz-9999.ebuild b/app-arch/pixz/pixz-9999.ebuild index 2fbeeaf35fe3..10a369c58a13 100644 --- a/app-arch/pixz/pixz-9999.ebuild +++ b/app-arch/pixz/pixz-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -36,6 +36,12 @@ DEPEND=" src_prepare() { default + # We're not interested in linting tests for our purposes (bug #915008) + cat > test/cppcheck-src.sh <<-EOF || die + #!/bin/sh + exit 77 + EOF + [[ ${PV} == "9999" ]] && eautoreconf } |