diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-04-29 06:02:50 -0300 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-07 17:22:45 +0000 |
commit | f0669cef1ef97ccf0dc0bc9c324c891993286991 (patch) | |
tree | 233ca7da59ca788ca691a3f85913e29ad26d8925 | |
parent | 830d465f0c9c7fb13028d455d12fe834fe6c9054 (diff) | |
download | aports-f0669cef1ef97ccf0dc0bc9c324c891993286991.tar.bz2 aports-f0669cef1ef97ccf0dc0bc9c324c891993286991.tar.xz |
community/py3-pyrsistent: don't require net in abuild
By using py3-pytest-runner, a network connection is no longer required for building
Closes GH-7435
-rw-r--r-- | community/py3-pyrsistent/APKBUILD | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/community/py3-pyrsistent/APKBUILD b/community/py3-pyrsistent/APKBUILD index 41cfdd3b42..aae74a8fc7 100644 --- a/community/py3-pyrsistent/APKBUILD +++ b/community/py3-pyrsistent/APKBUILD @@ -4,13 +4,12 @@ pkgname=py3-pyrsistent pkgver=0.15.1 pkgrel=0 pkgdesc="Persistent/Functional/Immutable data structures" -options="net" # Needs to fetch pytest-runner url="https://github.com/tobgu/pyrsistent" arch="all" license="MIT" depends="py3-six" makedepends="py3-setuptools python3-dev" -checkdepends="py3-hypothesis py3-pytest" +checkdepends="py3-hypothesis py3-pytest py3-pytest-runner" source="$pkgname-$pkgver.tar.gz::https://github.com/tobgu/pyrsistent/archive/v${pkgver}.tar.gz" builddir="$srcdir/pyrsistent-$pkgver" |