aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Fontaine <antoine.fontaine@epfl.ch>2020-03-16 08:19:51 +0100
committerAntoine Fontaine <antoine.fontaine@epfl.ch>2020-03-17 23:01:11 +0000
commit61a725799baf1888c3d940fdfaf8e65ab01049a2 (patch)
tree299dc01af51c4e87ad5213b0934c9c02ee6feec8
parentf2eddf8d285773a8a0192f8e02742d9146acbd22 (diff)
downloadaports-61a725799baf1888c3d940fdfaf8e65ab01049a2.tar.bz2
aports-61a725799baf1888c3d940fdfaf8e65ab01049a2.tar.xz
testing/deluge: fix dependencies
fixes https://gitlab.alpinelinux.org/alpine/aports/issues/11305.
-rw-r--r--testing/deluge/APKBUILD7
1 files changed, 5 insertions, 2 deletions
diff --git a/testing/deluge/APKBUILD b/testing/deluge/APKBUILD
index fda4e4c16a..bee14dc22d 100644
--- a/testing/deluge/APKBUILD
+++ b/testing/deluge/APKBUILD
@@ -1,12 +1,14 @@
# Contributor: August Klein <amatcoder@gmail.com>
+# Contributor: Antoine Fontaine <antoine.fontaine@epfl.ch>
# Maintainer: August Klein <amatcoder@gmail.com>
pkgname=deluge
pkgver=2.0.3
-pkgrel=3
+pkgrel=4
pkgdesc="A lightweight, Free Software, cross-platform BitTorrent client"
url="https://deluge-torrent.org/"
arch="noarch"
license="GPL-3.0-or-later"
+options="!check" # `setup.py check` run no test
depends="
py3-setuptools
py3-twisted
@@ -22,11 +24,12 @@ depends="
py3-asn1
py3-markupsafe
py3-service_identity
- py3-hamcrest
+ py3-pyhamcrest
py3-hyperlink
py3-libtorrent-rasterbar
py3-gobject3
py3-cairo
+ py3-wheel
"
subpackages="$pkgname-doc"
source="http://download.deluge-torrent.org/source/${pkgver%.*}/deluge-$pkgver.tar.xz"