From 9ed023ec4255fa104cf8b98d48c2fdcb88325764 Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Sat, 27 Jul 2019 20:19:59 -0500 Subject: [PATCH] youtube-dl: drop python2 package Closes #13111. --- srcpkgs/youtube-dl/template | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/srcpkgs/youtube-dl/template b/srcpkgs/youtube-dl/template index c75bf278060..cbaafa95349 100644 --- a/srcpkgs/youtube-dl/template +++ b/srcpkgs/youtube-dl/template @@ -1,21 +1,21 @@ # Template file for 'youtube-dl' pkgname=youtube-dl version=2019.07.27 -revision=1 +revision=2 archs=noarch wrksrc="$pkgname" -build_style=python-module +build_style=python3-module pycompile_module="youtube_dl" -hostmakedepends="python python3" -depends="python" -short_desc="CLI program to download videos from YouTube and other sites (Python2)" +hostmakedepends="python3" +depends="python3" +short_desc="CLI program to download videos from YouTube and other sites" maintainer="Juan RP " license="Unlicense" homepage="https://rg3.github.io/youtube-dl/" changelog="https://raw.githubusercontent.com/rg3/youtube-dl/master/ChangeLog" distfiles="https://yt-dl.org/downloads/${version}/${pkgname}-${version}.tar.gz" checksum=cdfc691ca9dcc63addb52dbbadb1b9e86325dd2d53d38ac844d504f482468bcc -alternatives="youtube-dl:youtube-dl:/usr/bin/youtube-dl2" +replaces="python3-youtube-dl>=0" post_install() { rm -rf ${DESTDIR}/usr/etc @@ -25,13 +25,7 @@ post_install() { } python3-youtube-dl_package() { - archs=noarch - depends="python3" - pycompile_module="youtube_dl" - 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* - } + depends="youtube-dl" + short_desc+=" - transitional dummy package" + build_style=meta }