diff options
Diffstat (limited to 'testing/py-h2/APKBUILD')
-rw-r--r-- | testing/py-h2/APKBUILD | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/testing/py-h2/APKBUILD b/testing/py-h2/APKBUILD new file mode 100644 index 0000000000..651ca84a23 --- /dev/null +++ b/testing/py-h2/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: André Klitzing <aklitzing@gmail.com> +# Maintainer: André Klitzing <aklitzing@gmail.com> +pkgname=py-h2 +_pkgname=hyper-h2 +pkgver=3.0.0 +pkgrel=0 +pkgdesc="HTTP/2 State-Machine based protocol implementation" +url="https://python-hyper.org/h2/" +arch="noarch" +license="MIT" +makedepends="python2-dev py-setuptools python3-dev" +subpackages="py3-${pkgname#py-}:_py3 py2-${pkgname#py-}:_py2" +source="$pkgname-$pkgver.tar.gz::https://github.com/python-hyper/$_pkgname/archive/v$pkgver.tar.gz" +builddir="$srcdir/$_pkgname-$pkgver" + +build() { + cd "$builddir" + python2 setup.py build || return 1 + python3 setup.py build || return 1 +} + +package() { + mkdir -p "$pkgdir" +} + +_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" +} + +_py2() { + replaces="$pkgname" + _py python2 +} + +_py3() { + _py python3 +} + +sha512sums="33fbc08d28b347ed5be6257ea8ba45b59642951e6c716a27bdae86c1c5ccc388dd9bc5beaa62f6f59326f0fa0c39176bb4c8d7ab1c9ae3e2c056000ac2c3f75a py-h2-3.0.0.tar.gz" |