mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-18 08:45:22 +03:00
29 lines
911 B
Text
29 lines
911 B
Text
# Contributor: Dmitry Romanenko <dmitry@romanenko.in>
|
|
# Maintainer: Dmitry Romanenko <dmitry@romanenko.in>
|
|
pkgname=py3-python-gssapi
|
|
_pkgname=gssapi
|
|
pkgver=1.5.1
|
|
pkgrel=1
|
|
pkgdesc="A Python interface to RFC 2743/2744 (plus common extensions)"
|
|
url="https://github.com/pythongssapi/python-gssapi"
|
|
arch="all"
|
|
license="ISC"
|
|
depends="python3"
|
|
#checkdepends="py-nose py-shouldbe py-k5test" # Tests are missing alpine packages
|
|
makedepends="python3-dev krb5-dev py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/g/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
#check() {
|
|
# python3 setup.py test
|
|
#}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="d0c27360e1f54a322f311f102ad498a3794e5f22aa9e07f917fa074d02f1643932ba34d630761c62500e5f780a5c6b207ee4662507ca88f99fcfd4563d7241b0 gssapi-1.5.1.tar.gz"
|