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 21600138350 for ; Sat, 28 Mar 2020 12:56:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D27EE0D68; Sat, 28 Mar 2020 12:56:16 +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 4547FE0D68 for ; Sat, 28 Mar 2020 12:56:16 +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 AA5E834F9B8 for ; Sat, 28 Mar 2020 12:56:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4002154 for ; Sat, 28 Mar 2020 12:56:12 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1585400159.4c209a2af3ab2ed1e8ed5d75e05171cab73da82f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/geos/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/geos/geos-3.8.0-r1.ebuild sci-libs/geos/geos-3.8.1.ebuild X-VCS-Directories: sci-libs/geos/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4c209a2af3ab2ed1e8ed5d75e05171cab73da82f X-VCS-Branch: master Date: Sat, 28 Mar 2020 12:56:12 +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: 2223face-0305-4ad1-bda6-3c6647b40a70 X-Archives-Hash: 66a1ee3bcd6af25a905cd82e7847ba6e commit: 4c209a2af3ab2ed1e8ed5d75e05171cab73da82f Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Mar 28 12:54:04 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Mar 28 12:55:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c209a2a sci-libs/geos: --disable-inline with arm Bug: https://bugs.gentoo.org/709368 Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/geos/geos-3.8.0-r1.ebuild | 10 +++++++--- sci-libs/geos/geos-3.8.1.ebuild | 2 ++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/sci-libs/geos/geos-3.8.0-r1.ebuild b/sci-libs/geos/geos-3.8.0-r1.ebuild index 3992d7a58cf..e8fc86859c7 100644 --- a/sci-libs/geos/geos-3.8.0-r1.ebuild +++ b/sci-libs/geos/geos-3.8.0-r1.ebuild @@ -33,10 +33,14 @@ src_prepare() { } src_configure() { - econf \ - --disable-python \ - $(use_enable ruby) \ + local myeconfargs=( + --disable-python + $(use_enable ruby) $(use_enable static-libs static) + ) + use arm && myeconfargs+=( --disable-inline ) # bug 709368 + + econf "${myeconfargs[@]}" } src_compile() { diff --git a/sci-libs/geos/geos-3.8.1.ebuild b/sci-libs/geos/geos-3.8.1.ebuild index ad70d2dd21c..f19227d4b28 100644 --- a/sci-libs/geos/geos-3.8.1.ebuild +++ b/sci-libs/geos/geos-3.8.1.ebuild @@ -34,6 +34,8 @@ src_configure() { $(use_enable ruby) $(use_enable static-libs static) ) + use arm && myeconfargs+=( --disable-inline ) # bug 709368 + econf "${myeconfargs[@]}" }