diff options
author | prspkt <prspkt@protonmail.com> | 2018-04-12 19:40:21 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2018-05-08 09:26:56 +0000 |
commit | 77ed4d989d78f98af4b8629c34f606cedcfe4017 (patch) | |
tree | a4e9934da446ac86e3e16972e45fc860e84d6b52 /testing/py-pykka | |
parent | b41e4058183210bd59ea5046f932cf5a50265934 (diff) | |
download | aports-77ed4d989d78f98af4b8629c34f606cedcfe4017.tar.bz2 aports-77ed4d989d78f98af4b8629c34f606cedcfe4017.tar.xz |
testing/py-pykka: clarify license, improve abuild
Diffstat (limited to 'testing/py-pykka')
-rw-r--r-- | testing/py-pykka/APKBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/testing/py-pykka/APKBUILD b/testing/py-pykka/APKBUILD index 52aa1b692d..4fca8eb361 100644 --- a/testing/py-pykka/APKBUILD +++ b/testing/py-pykka/APKBUILD @@ -3,10 +3,10 @@ pkgname=py-pykka pkgver=1.2.1 pkgrel=1 -pkgdesc="Easy to use concurrency abstractions for Python using the actor model" -url="http://pykka.readthedocs.org/" +pkgdesc="Concurrency abstractions for Python using the actor model" +url="http://pykka.readthedocs.org" arch="noarch" -license="Apache" +license="Apache-2.0" depends="python2 python3" depends_dev="" makedepends="python2-dev python3-dev py-setuptools" @@ -14,10 +14,10 @@ install="" subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" source="https://files.pythonhosted.org/packages/source/P/Pykka/Pykka-$pkgver.tar.gz" -_builddir="$srcdir"/Pykka-$pkgver +builddir="$srcdir"/Pykka-$pkgver build() { - cd "$_builddir" + cd "$builddir" python2 setup.py build python3 setup.py build } @@ -41,7 +41,7 @@ _py() { depends="$depends $python" install_if="$pkgname=$pkgver-r$pkgrel $python" - cd "$_builddir" + cd "$builddir" $python setup.py install --prefix=/usr --root="$subpkgdir" } |