summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron W. Swenson <titanofold@gentoo.org>2020-12-18 06:10:16 -0500
committerAaron W. Swenson <titanofold@gentoo.org>2020-12-18 06:14:27 -0500
commit4f00e13509f303ca4abe20ace8d88ac84ae092a0 (patch)
tree0941ad8a0a6a439330fc3a3fd3f3241182c12f16 /sci-libs/geos
parentdev-python/pytest-xdist: add dependency on pytest >= 6 (diff)
downloadgentoo-4f00e13509f303ca4abe20ace8d88ac84ae092a0.tar.gz
gentoo-4f00e13509f303ca4abe20ace8d88ac84ae092a0.tar.bz2
gentoo-4f00e13509f303ca4abe20ace8d88ac84ae092a0.zip
sci-libs/geos:
Upstream mistakenly released rc1 as 3.9.0. So, we need a new Manifest entry to get the real 3.9.0. Additionally, did some minor cleanup of the ebuild itself. Signed-off-by: Aaron W. Swenson <titanofold@gentoo.org>
Diffstat (limited to 'sci-libs/geos')
-rw-r--r--sci-libs/geos/Manifest2
-rw-r--r--sci-libs/geos/geos-3.9.0-r2.ebuild (renamed from sci-libs/geos/geos-3.9.0-r1.ebuild)19
2 files changed, 8 insertions, 13 deletions
diff --git a/sci-libs/geos/Manifest b/sci-libs/geos/Manifest
index 7ba340960fc8..c486bce0963a 100644
--- a/sci-libs/geos/Manifest
+++ b/sci-libs/geos/Manifest
@@ -1,2 +1,2 @@
DIST geos-3.8.1.tar.bz2 2505407 BLAKE2B 43053ea9e29d190f41c37d5d382b689ef477e0256cfd5705f4f2f316cac21a1674660bcf0900c51db72909c41d46be7a41d297958de48e108ae6d6bd1ca9d247 SHA512 1d8d8b3ece70eb388ea128f4135c7455899f01828223b23890ad3a2401e27104efce03987676794273a9b9d4907c0add2be381ff14b8420aaa9a858cc5941056
-DIST geos-3.9.0.tar.bz2 4760200 BLAKE2B f4d610ac4693fea1c10bbb3b9d328b3d4eded15efc740cb1577a516f399f23e42e22d88130479d94722a2867c1b787c7c266d5e976ec823ea17f63045db2ae54 SHA512 518be112b2e05063d97c09d0e568b784e6c65b0a7be1368cefbd481b3f4ac2d8fc89611e6e205a95f4d1740ab4f47b3929fb4c801bcf9a9e9b6ae86a54e62933
+DIST geos-3.9.0-r1.tar.bz2 4710957 BLAKE2B dab0f4e0bfb1bd244c2faf5ee6149b65d142eea78e87490025f90b672eee0d25d4ba9bc4c3b223e78ea0c9d34625b4750c7ba03852e5ea9540ad5c479d84b995 SHA512 1081f2aa20e671450953f7bb53b17c703804a1c9f4987c9da0987ff24339af5811b2c8b79c8e438d04ca38e4d06164dc5a4206f266f7efc19af3f9d9ea8f71f8
diff --git a/sci-libs/geos/geos-3.9.0-r1.ebuild b/sci-libs/geos/geos-3.9.0-r2.ebuild
index 91568ebe4553..94ad94ae2629 100644
--- a/sci-libs/geos/geos-3.9.0-r1.ebuild
+++ b/sci-libs/geos/geos-3.9.0-r2.ebuild
@@ -5,28 +5,23 @@ EAPI=7
DESCRIPTION="Geometry engine library for Geographic Information Systems"
HOMEPAGE="https://trac.osgeo.org/geos/"
-SRC_URI="http://download.osgeo.org/geos/${PN}-${PV}.tar.bz2"
+
+# Arrow can be removed at next version bump. Upstream mistakenly
+# released rc1 as 3.9.0. So, we need(ed) a new Manifest entry to get the
+# real 3.9.0
+SRC_URI="http://download.osgeo.org/geos/${PN}-${PV}.tar.bz2 -> ${PN}-${PV}-r1.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
IUSE="doc static-libs"
-BDEPEND="
- doc? ( app-doc/doxygen )
-"
+BDEPEND="doc? ( app-doc/doxygen )"
RESTRICT="test"
-src_prepare() {
- default
- echo "#!${EPREFIX}/bin/bash" > py-compile
-}
-
src_configure() {
- local myeconfargs=(
- $(use_enable static-libs static)
- )
+ local myeconfargs=( $(use_enable static-libs static) )
use arm && myeconfargs+=( --disable-inline ) # bug 709368
econf "${myeconfargs[@]}"