diff options
author | Holger Jaekel <holger.jaekel@gmx.de> | 2019-11-19 20:05:55 +0100 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-11-21 21:16:29 +0000 |
commit | 7140c8638ec4cb910e32f40e2b2867e0ba46d9ee (patch) | |
tree | 1de570097b3254caea167fb60ba550e5c2fa1ea1 | |
parent | 81d391f3b3dc1fa83f38e80abc2ff70724ce2bfa (diff) | |
download | aports-7140c8638ec4cb910e32f40e2b2867e0ba46d9ee.tar.bz2 aports-7140c8638ec4cb910e32f40e2b2867e0ba46d9ee.tar.xz |
testing/geos: upgrade to 3.8.0
Closes !1348
-rw-r--r-- | testing/geos/APKBUILD | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/testing/geos/APKBUILD b/testing/geos/APKBUILD index db09714406..6e46436817 100644 --- a/testing/geos/APKBUILD +++ b/testing/geos/APKBUILD @@ -1,11 +1,11 @@ # Contributor: Eric Kidd <git@randomhacks.net> # Maintainer: Holger Jaekel <holger.jaekel@gmx.de> pkgname=geos -pkgver=3.7.2 -pkgrel=3 +pkgver=3.8.0 +pkgrel=0 pkgdesc="GEOS is a library providing OpenGIS and JTS spatial operations in C++." url="https://trac.osgeo.org/geos/" -arch="all" +arch="all !s390x" license="LGPL-2.1-or-later" makedepends=" swig @@ -23,9 +23,8 @@ source=" " build() { - local CXXFLAGS= case "$CARCH" in - aarch64*) CXXFLAGS=-ffp-contract=off ;; + aarch64*|ppc64le) CXXFLAGS="$CXXFLAGS -ffp-contract=off" ;; esac ./configure \ --build=$CBUILD \ @@ -40,9 +39,6 @@ build() { } check() { - case "$CARCH" in - ppc64le|s390x) return 0 ;; - esac make check } @@ -63,7 +59,7 @@ ruby() { install -d "$subpkgdir"/usr/lib/ruby/vendor_ruby mv "$pkgdir"/usr/local/lib/site_ruby/* "$subpkgdir"/usr/lib/ruby/vendor_ruby - rm -rf "$pkgdir"/usr/local + rm -rf "${pkgdir:?}"/usr/local } -sha512sums="ff0fde2e21ed9d2770c139aa50c6efd22d9cff3c6bfd8f1ef86b064efd1ad318b08dec66e34661bc1c7a341b0837978853494f27d63988be865a8ee4f7611d38 geos-3.7.2.tar.bz2 +sha512sums="c89b25b42092152ef261090f25ff64b229f30f67d42fdf44c2871e78b66bb2c42e23b9ae21f9aea0e48823bdb0267d609ab2ee77d310abcb76fa672c6614d8f1 geos-3.8.0.tar.bz2 a76aceadb30c6a078ef9c671d8335647bd6b94094bd4bdda5958f0d50271552e8f1f7b4e9d4295986f4371a446071c3cc3a446ef520543e820bde83833fea18e 10-configure-python3.patch" |