mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-29 17:02:56 +02:00
youtube-dl: rebuild for Python 3.5
Switch to python3-* pkgs. Convert python3.4-* pkg into dummy pkg.
This commit is contained in:
parent
9580d08189
commit
b43527e982
2 changed files with 19 additions and 13 deletions
1
srcpkgs/python3-youtube-dl
Symbolic link
1
srcpkgs/python3-youtube-dl
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
youtube-dl
|
|
@ -1,21 +1,20 @@
|
||||||
# Template file for 'youtube-dl'
|
# Template file for 'youtube-dl'
|
||||||
pkgname=youtube-dl
|
pkgname=youtube-dl
|
||||||
version=2016.10.16
|
version=2016.10.16
|
||||||
revision=1
|
revision=2
|
||||||
noarch=yes
|
noarch=yes
|
||||||
build_style=python-module
|
|
||||||
wrksrc="${pkgname}"
|
wrksrc="${pkgname}"
|
||||||
hostmakedepends="python python3.4"
|
build_style=python-module
|
||||||
depends="python"
|
|
||||||
python_versions="2.7 3.4"
|
|
||||||
pycompile_module="youtube_dl"
|
pycompile_module="youtube_dl"
|
||||||
|
hostmakedepends="python python3"
|
||||||
|
depends="python"
|
||||||
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 (Python2)"
|
||||||
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
||||||
homepage="http://rg3.github.com/youtube-dl/"
|
homepage="http://rg3.github.com/youtube-dl/"
|
||||||
license="Public Domain"
|
license="Public Domain"
|
||||||
distfiles="https://yt-dl.org/downloads/${version}/${pkgname}-${version}.tar.gz"
|
distfiles="https://yt-dl.org/downloads/${version}/${pkgname}-${version}.tar.gz"
|
||||||
checksum=0ff39cbc17b4a73957238ab94ff5f05de2b7d833b0af3e2caf1df51eeeeacc60
|
checksum=0ff39cbc17b4a73957238ab94ff5f05de2b7d833b0af3e2caf1df51eeeeacc60
|
||||||
alternatives="youtube-dl:youtube-dl:/usr/bin/youtube-dl2.7"
|
alternatives="youtube-dl:youtube-dl:/usr/bin/youtube-dl2"
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
rm -rf ${DESTDIR}/usr/etc
|
rm -rf ${DESTDIR}/usr/etc
|
||||||
|
@ -24,15 +23,21 @@ post_install() {
|
||||||
vinstall ${pkgname}.fish 644 usr/share/fish/completions ${pkgname}
|
vinstall ${pkgname}.fish 644 usr/share/fish/completions ${pkgname}
|
||||||
}
|
}
|
||||||
|
|
||||||
python3.4-youtube-dl_package() {
|
python3-youtube-dl_package() {
|
||||||
noarch=yes
|
noarch=yes
|
||||||
depends="python3.4"
|
depends="python3"
|
||||||
pycompile_version="3.4"
|
|
||||||
pycompile_module="youtube_dl"
|
pycompile_module="youtube_dl"
|
||||||
alternatives="youtube-dl:youtube-dl:/usr/bin/youtube-dl3.4"
|
replaces="python3.4-youtube-dl>=0"
|
||||||
short_desc="${short_desc/2/3.4}"
|
alternatives="youtube-dl:youtube-dl:/usr/bin/youtube-dl3"
|
||||||
|
short_desc="${short_desc/2/3}"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/bin/youtube-dl3.4
|
vmove usr/bin/youtube-dl3
|
||||||
vmove usr/lib/python3.4
|
vmove usr/lib/python3*
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
python3.4-youtube-dl_package() {
|
||||||
|
noarch=yes
|
||||||
|
build_style=meta
|
||||||
|
short_desc="${short_desc/2/3.4} (transitional dummy package)"
|
||||||
|
depends="python3-youtube-dl>=${version}_${revision}"
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue