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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7F7C1138359 for ; Wed, 19 Aug 2020 13:57:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC8D5E0940; Wed, 19 Aug 2020 13:57:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9344BE0940 for ; Wed, 19 Aug 2020 13:57:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 11BE034F35B for ; Wed, 19 Aug 2020 13:57:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 736152D1 for ; Wed, 19 Aug 2020 13:57:15 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1597845431.0e2c5b910bf3067d91d357a68d5b7a185a7a32be.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pinfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/pinfo/pinfo-0.6.13.ebuild app-text/pinfo/pinfo-99999.ebuild X-VCS-Directories: app-text/pinfo/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 0e2c5b910bf3067d91d357a68d5b7a185a7a32be X-VCS-Branch: master Date: Wed, 19 Aug 2020 13:57:15 +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: 99886e27-6399-4b55-9d28-8c3d2e498a93 X-Archives-Hash: 6757867f1d332ddca9a20dbb827d606c commit: 0e2c5b910bf3067d91d357a68d5b7a185a7a32be Author: Jeroen Roovers gentoo org> AuthorDate: Wed Aug 19 13:53:46 2020 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Wed Aug 19 13:57:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e2c5b91 app-text/pinfo: Filter out -Werror Package-Manager: Portage-3.0.3, Repoman-3.0.0 Closes: https://bugs.gentoo.org/692366 Closes: https://bugs.gentoo.org/722414 Signed-off-by: Jeroen Roovers gentoo.org> app-text/pinfo/pinfo-0.6.13.ebuild | 3 +++ app-text/pinfo/pinfo-99999.ebuild | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/app-text/pinfo/pinfo-0.6.13.ebuild b/app-text/pinfo/pinfo-0.6.13.ebuild index 1edae9c02d3..65a73c599ed 100644 --- a/app-text/pinfo/pinfo-0.6.13.ebuild +++ b/app-text/pinfo/pinfo-0.6.13.ebuild @@ -34,6 +34,9 @@ PATCHES=( src_prepare() { default + + sed -i -e 's| -Werror||g' configure.ac || die + eautoreconf } diff --git a/app-text/pinfo/pinfo-99999.ebuild b/app-text/pinfo/pinfo-99999.ebuild index 697760bc7fc..94bcef91cbb 100644 --- a/app-text/pinfo/pinfo-99999.ebuild +++ b/app-text/pinfo/pinfo-99999.ebuild @@ -29,11 +29,13 @@ DEPEND=" PATCHES=( "${FILESDIR}"/${PN}-0.6.9-GROFF_NO_SGR.patch "${FILESDIR}"/${PN}-0.6.9-lzma-xz.patch - "${FILESDIR}"/${PN}-0.6.13-fno-common.patch ) src_prepare() { default + + sed -i -e 's| -Werror||g' configure.ac || die + eautoreconf }