aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-shapely/APKBUILD
blob: b11243d79fb813366b0887ca88401d578d3b300a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Contributor: Holger Jaekel <holger.jaekel@gmx.de>
# Maintainer: Holger Jaekel <holger.jaekel@gmx.de>
pkgname=py3-shapely
pkgver=1.7.0
pkgrel=0
pkgdesc="Manipulation and analysis of geometric objects in the Cartesian plane"
url="https://pypi.python.org/pypi/Shapely"
arch="all !s390x"  # geos availability
license="BSD-3-Clause"
depends="
	py3-numpy
	"
makedepends="
	geos-dev
	py3-matplotlib
	py3-numpy-dev
	py3-packaging
	py3-setuptools
	python3-dev
	cython
	"
checkdepends="
	py3-pytest
	"
source="
	https://pypi.io/packages/source/S/Shapely/Shapely-$pkgver.tar.gz
	10-packaging.patch
	"
builddir="$srcdir/Shapely-$pkgver"

build() {
	rm -r _vendor  # This is provided by py3-packaging

	cython shapely/speedups/_speedups.pyx
	cython shapely/vectorized/_vectorized.pyx

	python3 setup.py build
}

check() {
	# Tests fail on s390x
	case "$CARCH" in
		s390x) return 0 ;;
	esac

	# These examples are executed during test, but they depend on pylab, which is not in Alpine
	rm -r shapely/examples/*

	python3 setup.py test
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=2
}

sha512sums="ff7a14f20c05e3949c1e689175b80ec1f8248a0f45370a6313dbf4319ec018a8fafcfd171efbaa81bd8ceaab9c54488feca61bb03067e22a275da2b8663dc8bc  Shapely-1.7.0.tar.gz
7cebaf4e059d71e1cd374539eb056491afbf736e05bf369a3c6533306885940d108340ada56ec7662e30aac04d2bd3ac4019ccf2fc447151d2274009d93d00fe  10-packaging.patch"