aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py-sortedcontainers/APKBUILD
blob: 77591439ef981c9669a8ce73d49f0a62786d8888 (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
# Contributor: André Klitzing <aklitzing@gmail.com>
# Maintainer: André Klitzing <aklitzing@gmail.com>
pkgname=py-sortedcontainers
_pkgname=sortedcontainers
pkgver=2.0.2
pkgrel=0
pkgdesc="Python library for sorting collections and containers"
url="http://www.grantjenks.com/docs/sortedcontainers"
arch="noarch"
license="Apache-2.0"
makedepends="py-setuptools python2-dev python3-dev"
checkdepends="py-nose pytest"
subpackages="py2-$_pkgname:_py2 py3-$_pkgname:_py3"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver

build() {
	cd "$builddir"
	python2 setup.py build
	python3 setup.py build
}

check() {
	cd "$builddir"
	nosetests-2.7
	nosetests-3.6
}

package() {
	mkdir -p "$pkgdir"
}

_py2() {
	replaces="$pkgname"
	_py python2
}

_py3() {
	_py python3
}

_py() {
	local python="$1"
	pkgdesc="$pkgdesc (for $python)"
	depends="$python"
	install_if="$pkgname=$pkgver-r$pkgrel $python"

	cd "$builddir"
	$python setup.py install --prefix=/usr --root="$subpkgdir"
}

sha512sums="cc4686ad8487d2d7e51969f3132e8b6d12d7b20c0918830874e89f2e7330fcb6972e6243e9d8addf9e0c035ada6a4e2ccdfbcecd30794bae28f0fb36c548ddf3  sortedcontainers-2.0.2.tar.gz"