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 40AA91382C5 for ; Sun, 21 Jun 2020 16:06:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74F43E0899; Sun, 21 Jun 2020 16:06:30 +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 6166BE0899 for ; Sun, 21 Jun 2020 16:06:30 +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 829ED34FA5D for ; Sun, 21 Jun 2020 16:06:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C77A1AC for ; Sun, 21 Jun 2020 16:06:28 +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: <1592755567.e6315dbcaef78e41316a0ee08db6efc77810f08a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/proj/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/proj/proj-7.0.0.ebuild X-VCS-Directories: sci-libs/proj/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e6315dbcaef78e41316a0ee08db6efc77810f08a X-VCS-Branch: master Date: Sun, 21 Jun 2020 16:06:28 +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: ef8fbc91-4ed5-4574-a1b2-712668b6b555 X-Archives-Hash: fdeac066e35a0470b672f1292a23185e commit: e6315dbcaef78e41316a0ee08db6efc77810f08a Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jun 21 15:46:58 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jun 21 16:06:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6315dbc sci-libs/proj: [QA] Drop unrecognised configure option --without-jni Upstream commit e55bb1933c4319d1a3146612613f31ed3bba82f6 Closes: https://bugs.gentoo.org/720018 Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/proj/proj-7.0.0.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/sci-libs/proj/proj-7.0.0.ebuild b/sci-libs/proj/proj-7.0.0.ebuild index 1864512c1dc..3f8a132182f 100644 --- a/sci-libs/proj/proj-7.0.0.ebuild +++ b/sci-libs/proj/proj-7.0.0.ebuild @@ -18,9 +18,10 @@ LICENSE="MIT" SLOT="0/19" KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="europe static-libs test" -RESTRICT="!test? ( test )" REQUIRED_USE="test? ( !europe )" +RESTRICT="!test? ( test )" + RDEPEND="dev-db/sqlite:3" DEPEND="${RDEPEND}" @@ -33,9 +34,7 @@ src_unpack() { } src_configure() { - econf \ - $(use_enable static-libs static) \ - --without-jni + econf $(use_enable static-libs static) } src_install() { @@ -43,5 +42,5 @@ src_install() { cd data || die dodoc README.{DATA,DATUMGRID} use europe && dodoc README.EUROPE - find "${D}" -name '*.la' -delete || die + find "${D}" -name '*.la' -type f -delete || die }