diff options
| author | prspkt <prspkt@protonmail.com> | 2019-04-26 21:10:37 +0300 |
|---|---|---|
| committer | prspkt <prspkt@protonmail.com> | 2019-04-26 21:25:38 +0300 |
| commit | 12a1037cb0575f356c6621f970283d4b4e65a45b (patch) | |
| tree | 3d5fd715c16635ca41801e83d03c8cf670f41470 /testing | |
| parent | b8229586a20eea5fc0f782a383ef666b6a60e054 (diff) | |
| download | aports-12a1037cb0575f356c6621f970283d4b4e65a45b.tar.bz2 aports-12a1037cb0575f356c6621f970283d4b4e65a45b.tar.xz | |
testing/py3-port-for: new aport
Diffstat (limited to 'testing')
| -rw-r--r-- | testing/py3-port-for/APKBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/py3-port-for/APKBUILD b/testing/py3-port-for/APKBUILD new file mode 100644 index 0000000000..3eff3c0ff7 --- /dev/null +++ b/testing/py3-port-for/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: prspkt <prspkt@protonmail.com> +# Maintainer: prspkt <prspkt@protonmail.com> +pkgname=py3-port-for +_pkgname=port-for +pkgver=0.4 +pkgrel=0 +pkgdesc="Utility and library that helps with local TCP ports management" +url="https://github.com/kmike/port-for" +arch="noarch" +license="MIT" +depends="python3" +makedepends="py3-setuptools" +checkdepends="py3-tox" +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" +builddir="$srcdir/$_pkgname-$pkgver" + +build() { + cd "$builddir" + python3 setup.py build +} + +check() { + cd "$builddir" + tox -e py3 +} + +package() { + cd "$builddir" + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="476b7273d868c84d7a0a6f49f93b4d0c8d4cd449adc800c7f587e5201d52234c89d6f768f9c20dbf61a55fc52d884146ab3b02db313ab2b4c6afd2f046b03c98 port-for-0.4.tar.gz" |
