aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorBart Ribbers <bribbers@disroot.org>2020-03-27 13:11:16 +0100
committerRasmus Thomsen <oss@cogitri.dev>2020-05-06 20:36:42 +0000
commitf32b981b37d98ef87570a5a5eb4fec537395b4e7 (patch)
treec61288650cab8ebf86f90d52addb5270f8f95b8d /testing
parent36dd174f6f344c2dc56ca8ba8e67a22aef92b488 (diff)
downloadaports-f32b981b37d98ef87570a5a5eb4fec537395b4e7.tar.bz2
aports-f32b981b37d98ef87570a5a5eb4fec537395b4e7.tar.xz
testing/py3-joblib: new aport
Diffstat (limited to 'testing')
-rw-r--r--testing/py3-joblib/APKBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/py3-joblib/APKBUILD b/testing/py3-joblib/APKBUILD
new file mode 100644
index 0000000000..af84d37ec3
--- /dev/null
+++ b/testing/py3-joblib/APKBUILD
@@ -0,0 +1,29 @@
+# Contributor: Bart Ribbers <bribbers@disroot.org>
+# Maintainer: Bart Ribbers <bribbers@disroot.org>
+pkgname=py3-joblib
+pkgver=0.14.1
+pkgrel=0
+pkgdesc="Computing with Python functions"
+url="http://joblib.readthedocs.org/"
+arch="noarch !mips !mips64 !s390x" # Blocked by py3-distributed
+license="BSD-3-Clause"
+depends="python3 py3-distributed"
+makedepends="py3-setuptools cython"
+checkdepends="py3-pytest"
+source="https://pypi.python.org/packages/source/j/joblib/joblib-$pkgver.tar.gz"
+options="!check" # Tests broken
+builddir="$srcdir/joblib-$pkgver"
+
+build() {
+ python3 setup.py build
+}
+
+check() {
+ python3 setup.py test
+}
+
+package() {
+ python3 setup.py install --prefix=/usr --root="$pkgdir"
+}
+
+sha512sums="fa3807ea0c746b6e229c1b2f1451d10526bfbed542f5e503ae9ad396d61b8a67e1057feb36775545816f040925169555fd20b880e955983a09f3aa80286330c8 joblib-0.14.1.tar.gz"