diff options
-rw-r--r-- | community/py-netifaces/APKBUILD (renamed from testing/py-netifaces/APKBUILD) | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/testing/py-netifaces/APKBUILD b/community/py-netifaces/APKBUILD index 541a2b3e9d..b8797fd6ec 100644 --- a/testing/py-netifaces/APKBUILD +++ b/community/py-netifaces/APKBUILD @@ -1,9 +1,9 @@ -# Contributor: Francesco Colista <francesco.colista@gmail.com> -# Maintainer: Francesco Colista <francesco.colista@gmail.com> +# Contributor: Francesco Colista <fcolista@alpinelinux.org> +# Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=py-netifaces _pkgname=netifaces pkgver=0.10.5 -pkgrel=2 +pkgrel=3 pkgdesc="Portable module to access network interface information in Python" url="http://alastairs-place.net/netifaces/" arch="all" @@ -13,10 +13,16 @@ subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir/$_pkgname-$pkgver" +check() { + cd "$builddir" + python2 setup.py check + python3 setup.py check +} + build() { cd "$builddir" - python2 setup.py build || return 1 - python3 setup.py build || return 1 + python2 setup.py build + python3 setup.py build } package() { @@ -41,6 +47,4 @@ _py() { $python setup.py install --prefix=/usr --root="$subpkgdir" } -md5sums="5b4d1f1310ed279e6df27ef3a9b71519 netifaces-0.10.5.tar.gz" -sha256sums="59d8ad52dd3116fcb6635e175751b250dc783fb011adba539558bd764e5d628b netifaces-0.10.5.tar.gz" sha512sums="736bb985b444e78676dc10533a7597e750cadf41033196c4be49c4f33e91d46eba33a1f485e07e9f70aec2170c958564a6f54bbaa1ab193bfaca04b1fb07b3a1 netifaces-0.10.5.tar.gz" |