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 0087D15864F for ; Sat, 25 Mar 2023 03:33:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39EC9E07AE; Sat, 25 Mar 2023 03:32:59 +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 1F71DE07AE for ; Sat, 25 Mar 2023 03:32:59 +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 2AC3934105C for ; Sat, 25 Mar 2023 03:32:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96704938 for ; Sat, 25 Mar 2023 03:32:56 +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: <1679715155.a8320b2610a082aa0766200884c69a76f21829b2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/tar/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/tar/tar-1.34-r2.ebuild app-arch/tar/tar-1.34-r3.ebuild X-VCS-Directories: app-arch/tar/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a8320b2610a082aa0766200884c69a76f21829b2 X-VCS-Branch: master Date: Sat, 25 Mar 2023 03:32:56 +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: d838c6be-185b-4b64-a034-8fd2fd0f1b8e X-Archives-Hash: 4952f29e3941f2c47dd8cdc510df0faa commit: a8320b2610a082aa0766200884c69a76f21829b2 Author: Sam James gentoo org> AuthorDate: Sat Mar 25 03:25:25 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 25 03:32:35 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8320b26 app-arch/tar: avoid -Werror and -fanalyzer Signed-off-by: Sam James gentoo.org> app-arch/tar/tar-1.34-r2.ebuild | 5 +++++ app-arch/tar/tar-1.34-r3.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/app-arch/tar/tar-1.34-r2.ebuild b/app-arch/tar/tar-1.34-r2.ebuild index e6c0b272787b..86fdc8e05e20 100644 --- a/app-arch/tar/tar-1.34-r2.ebuild +++ b/app-arch/tar/tar-1.34-r2.ebuild @@ -38,8 +38,13 @@ PDEPEND=" " src_configure() { + # -fanalyzer doesn't make sense for us in ebuilds, as it's for static analysis + export gl_cv_warn_c__fanalyzer=no + local myeconfargs=( --bindir="${EPREFIX}"/bin + # Avoid -Werror + --disable-gcc-warnings --enable-backup-scripts --libexecdir="${EPREFIX}"/usr/sbin $(use_with acl posix-acls) diff --git a/app-arch/tar/tar-1.34-r3.ebuild b/app-arch/tar/tar-1.34-r3.ebuild index abf8af8f3d94..f92891dceff1 100644 --- a/app-arch/tar/tar-1.34-r3.ebuild +++ b/app-arch/tar/tar-1.34-r3.ebuild @@ -42,8 +42,13 @@ PATCHES=( ) src_configure() { + # -fanalyzer doesn't make sense for us in ebuilds, as it's for static analysis + export gl_cv_warn_c__fanalyzer=no + local myeconfargs=( --bindir="${EPREFIX}"/bin + # Avoid -Werror + --disable-gcc-warnings --enable-backup-scripts --libexecdir="${EPREFIX}"/usr/sbin $(use_with acl posix-acls)