youtube-dl: update to 2019.08.02

- Also remove python2 package.

Closes #13111.
This commit is contained in:
Andrew Benson 2019-07-27 20:19:59 -05:00 committed by Juan RP
parent ded1269d09
commit 0786b87f6c

View file

@ -1,21 +1,20 @@
# Template file for 'youtube-dl' # Template file for 'youtube-dl'
pkgname=youtube-dl pkgname=youtube-dl
version=2019.07.27 version=2019.08.02
revision=1 revision=1
archs=noarch archs=noarch
wrksrc="$pkgname" wrksrc="$pkgname"
build_style=python-module build_style=python3-module
pycompile_module="youtube_dl" pycompile_module="youtube_dl"
hostmakedepends="python python3" hostmakedepends="python3"
depends="python" depends="python3"
short_desc="CLI program to download videos from YouTube and other sites (Python2)" short_desc="CLI program to download videos from YouTube and other sites"
maintainer="Juan RP <xtraeme@voidlinux.org>" maintainer="Juan RP <xtraeme@voidlinux.org>"
license="Unlicense" license="Unlicense"
homepage="https://rg3.github.io/youtube-dl/" homepage="https://rg3.github.io/youtube-dl/"
changelog="https://raw.githubusercontent.com/rg3/youtube-dl/master/ChangeLog" changelog="https://raw.githubusercontent.com/rg3/youtube-dl/master/ChangeLog"
distfiles="https://yt-dl.org/downloads/${version}/${pkgname}-${version}.tar.gz" distfiles="https://yt-dl.org/downloads/${version}/${pkgname}-${version}.tar.gz"
checksum=cdfc691ca9dcc63addb52dbbadb1b9e86325dd2d53d38ac844d504f482468bcc checksum=573c37add3e6107bf0c3c8ce43443bb788957d7bfb5e736cee6b32e3b2342b80
alternatives="youtube-dl:youtube-dl:/usr/bin/youtube-dl2"
post_install() { post_install() {
rm -rf ${DESTDIR}/usr/etc rm -rf ${DESTDIR}/usr/etc
@ -25,13 +24,7 @@ post_install() {
} }
python3-youtube-dl_package() { python3-youtube-dl_package() {
archs=noarch depends="youtube-dl"
depends="python3" short_desc+=" - transitional dummy package"
pycompile_module="youtube_dl" build_style=meta
alternatives="youtube-dl:youtube-dl:/usr/bin/youtube-dl3"
short_desc="${short_desc/2/3}"
pkg_install() {
vmove usr/bin/youtube-dl3
vmove usr/lib/python3*
}
} }