diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-09-13 20:40:32 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-09-13 20:40:32 +0200 |
commit | b597e0ce66b4778b30c80087036e45550600fcfc (patch) | |
tree | 808de6d10b66bbe775e75f32e8cfa747e38b235e /community/youtube-dl | |
parent | 1bfcfb905d961ba964207398fa61c21690f058f1 (diff) | |
download | aports-b597e0ce66b4778b30c80087036e45550600fcfc.tar.bz2 aports-b597e0ce66b4778b30c80087036e45550600fcfc.tar.xz |
community/youtube-dl: depend on py3-setuptools
Otherwise youtube-dl will fail with the following error message:
Traceback (most recent call last):
File "/usr/bin/youtube-dl", line 6, in <module>
from pkg_resources import load_entry_point
ImportError: cannot import name 'load_entry_point'
See also: https://bugs.archlinux.org/task/37544
Diffstat (limited to 'community/youtube-dl')
-rw-r--r-- | community/youtube-dl/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/community/youtube-dl/APKBUILD b/community/youtube-dl/APKBUILD index 09502030cc..1737f28bbb 100644 --- a/community/youtube-dl/APKBUILD +++ b/community/youtube-dl/APKBUILD @@ -4,12 +4,12 @@ # Maintainer: Timo Teräs <timo.teras@iki.fi> pkgname=youtube-dl pkgver=2018.09.08 -pkgrel=0 +pkgrel=1 pkgdesc="Command-line program to download videos from YouTube" url="https://youtube-dl.org" arch="noarch" license="Unlicense" -depends="ffmpeg python3" +depends="ffmpeg python3 py3-setuptools" options="!check" # FIXME: run provided tests subpackages="$pkgname-doc $pkgname-zsh-completion:zshcomp |