aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-pykka
diff options
context:
space:
mode:
Diffstat (limited to 'community/py3-pykka')
-rw-r--r--community/py3-pykka/APKBUILD45
1 files changed, 10 insertions, 35 deletions
diff --git a/community/py3-pykka/APKBUILD b/community/py3-pykka/APKBUILD
index a9e2cd41a4..6d0e0e9ac5 100644
--- a/community/py3-pykka/APKBUILD
+++ b/community/py3-pykka/APKBUILD
@@ -1,55 +1,30 @@
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
-pkgname=py-pykka
+pkgname=py3-pykka
pkgver=2.0.0
-pkgrel=1
-pkgdesc="Concurrency abstractions for Python using the actor model"
+pkgrel=2
+pkgdesc="Concurrency abstractions for Python3 using the actor model"
url="https://pykka.readthedocs.org/"
arch="noarch"
license="Apache-2.0"
-depends="python2 python3"
-depends_dev=""
-makedepends="python2-dev python3-dev py-setuptools"
-install=""
-subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
+depends="python3"
+makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/P/Pykka/Pykka-$pkgver.tar.gz"
-
builddir="$srcdir"/Pykka-$pkgver
+replaces="py-pykka" # Backwards compatibility
+provides="py-pykka=$pkgver-r$pkgrel" # Backwards compatibility
+
build() {
- cd "$builddir"
- python2 setup.py build
python3 setup.py build
}
-package() {
- mkdir -p "$pkgdir"
-}
-
check() {
- cd "$builddir"
- python2 setup.py check
python3 setup.py check
}
-
-_py2() {
- replaces="$pkgname"
- _py python2
-}
-
-_py3() {
- _py python3
-}
-
-_py() {
- local python="$1"
- pkgdesc="$pkgdesc (for $python)"
- depends="$depends $python"
- install_if="$pkgname=$pkgver-r$pkgrel $python"
-
- cd "$builddir"
- $python setup.py install --prefix=/usr --root="$subpkgdir"
+package() {
+ python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="f45789fe8e86f95bbff2e69b3e14d46ff25de400147e1d72fc766188975f66efbe00238fc56e36b5e0c1716369d15d236759be1adf69e01ef9b81ef443d24852 Pykka-2.0.0.tar.gz"