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 7E6071392E8 for ; Sun, 4 Jul 2021 02:59:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7746AE082B; Sun, 4 Jul 2021 02:59:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 5704FE082B for ; Sun, 4 Jul 2021 02:59:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 CF1DF342AE4 for ; Sun, 4 Jul 2021 02:59:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 19EAB2B for ; Sun, 4 Jul 2021 02:59:23 +0000 (UTC) From: "Sam Jorna" 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 Jorna" Message-ID: <1625367514.f9577541a2ffa66f62ad5d734bc228d11825effc.wraeth@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/the_silver_searcher/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/the_silver_searcher/the_silver_searcher-2.2.0_p20201217-r1.ebuild sys-apps/the_silver_searcher/the_silver_searcher-2.2.0_p20201217.ebuild X-VCS-Directories: sys-apps/the_silver_searcher/ X-VCS-Committer: wraeth X-VCS-Committer-Name: Sam Jorna X-VCS-Revision: f9577541a2ffa66f62ad5d734bc228d11825effc X-VCS-Branch: master Date: Sun, 4 Jul 2021 02:59:23 +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: becb2511-4744-44c6-b7a2-22cf52166e3c X-Archives-Hash: f91ee11643c428da12e75afec6c8923e commit: f9577541a2ffa66f62ad5d734bc228d11825effc Author: Sam Jorna gentoo org> AuthorDate: Sun Jul 4 02:58:34 2021 +0000 Commit: Sam Jorna gentoo org> CommitDate: Sun Jul 4 02:58:34 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9577541 sys-apps/the_silver_searcher: append -fPIC, #797355 Closes: https://bugs.gentoo.org/797355 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Sam Jorna gentoo.org> ...0201217.ebuild => the_silver_searcher-2.2.0_p20201217-r1.ebuild} | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys-apps/the_silver_searcher/the_silver_searcher-2.2.0_p20201217.ebuild b/sys-apps/the_silver_searcher/the_silver_searcher-2.2.0_p20201217-r1.ebuild similarity index 87% rename from sys-apps/the_silver_searcher/the_silver_searcher-2.2.0_p20201217.ebuild rename to sys-apps/the_silver_searcher/the_silver_searcher-2.2.0_p20201217-r1.ebuild index d91cc784c82..fc7e2d49571 100644 --- a/sys-apps/the_silver_searcher/the_silver_searcher-2.2.0_p20201217.ebuild +++ b/sys-apps/the_silver_searcher/the_silver_searcher-2.2.0_p20201217-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit autotools bash-completion-r1 vcs-snapshot +inherit autotools bash-completion-r1 flag-o-matic vcs-snapshot COMMIT="a61f1780b64266587e7bc30f0f5f71c6cca97c0f" @@ -40,6 +40,10 @@ src_prepare() { } src_configure() { + # false positive TEXTRELs on riscv + # https://bugs.gentoo.org/797355 + append-flags -fPIC + econf \ $(use_enable lzma) \ $(use_enable zlib)