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 11229158041 for ; Sun, 24 Mar 2024 22:41:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1ECC9E29E8; Sun, 24 Mar 2024 22:41:14 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E204AE29E8 for ; Sun, 24 Mar 2024 22:41:13 +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 B6BA4335CB4 for ; Sun, 24 Mar 2024 22:41:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC0C2B6F for ; Sun, 24 Mar 2024 22:41:10 +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: <1711320050.2a319f2040df45d3132ae21191906b6ee404d458.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/pixz/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/pixz/pixz-1.0.7-r1.ebuild app-arch/pixz/pixz-9999.ebuild X-VCS-Directories: app-arch/pixz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2a319f2040df45d3132ae21191906b6ee404d458 X-VCS-Branch: master Date: Sun, 24 Mar 2024 22:41:10 +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: 9e383887-f912-4d97-b8ad-b7955e7fcb4c X-Archives-Hash: e71cbff94504174edde70dc92bae628f commit: 2a319f2040df45d3132ae21191906b6ee404d458 Author: Sam James gentoo org> AuthorDate: Sun Mar 24 21:03:41 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 24 22:40:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a319f20 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 gentoo.org> app-arch/pixz/pixz-1.0.7-r1.ebuild | 8 +++++++- 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 }