aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-geoip2/APKBUILD
blob: 7240bb920a8867ff3223a8e6b839b63fb0fecde1 (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
# Contributor: Kevin Daudt <kdaudt@alpinelinux.org>
# Maintainer: Kevin Daudt <kdaudt@alpinelinux.org>
pkgname=py3-geoip2
pkgver=2.9.0
pkgrel=2
pkgdesc="An API for the GeoIP2 web services and databases"
url="https://www.maxmind.com/en/home"
arch="noarch"
license="Apache-2.0"
depends="py3-requests py3-maxminddb"
makedepends="python3 py3-setuptools"
checkdepends="py3-nose py3-mock"
_test_data_commit=f6ed981c23b0eb33d7c07568e2177236252afda6
source="$pkgname-$pkgver.tar.gz::https://github.com/maxmind/GeoIP2-python/archive/v${pkgver}.tar.gz
	MaxMind-DB-test-data-$_test_data_commit.tar.gz::https://github.com/maxmind/MaxMind-DB/archive/$_test_data_commit.tar.gz"
builddir="$srcdir/GeoIP2-python-$pkgver"

prepare() {
	cd "$srcdir"

	# Submodule required for tests
	cp -r "MaxMind-DB-$_test_data_commit/"* "$builddir/tests/data"

        default_prepare
}

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

check() {
	cd "$builddir"

        python3 setup.py test
}

package() {
	cd "$builddir"

        python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="8631a41d9644887d0149678e40a5f9d03bba660853c308c43bf358cd49b3f021566b9d6f65b670c0c1c78bcb4cb7cb007ad2db6f3c032749afa454fc9e06d74c  py3-geoip2-2.9.0.tar.gz
f7b9d370c330980d9419c7bea486b258aef3fa8ab49f83b860ef73036fc577c402e2f631090c5d1d23f2a8e34f927030a8fc6dc15edcd8002136673685aecb12  MaxMind-DB-test-data-f6ed981c23b0eb33d7c07568e2177236252afda6.tar.gz"