From ee1d97a742bd8facbe149d7a5d160b05f555fd60 Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Thu, 7 Apr 2016 16:52:03 +0200 Subject: [PATCH] pathon-pafy: python-youtube-dl -> youtube-dl As of 0.5, youtube-dl is an optional dependency again, but recommended. So, leave it as is. Install the ytdl command line tool to the python3.4 flavor too. --- srcpkgs/python-pafy/template | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/srcpkgs/python-pafy/template b/srcpkgs/python-pafy/template index 735439b80a9..3cd200588af 100644 --- a/srcpkgs/python-pafy/template +++ b/srcpkgs/python-pafy/template @@ -1,14 +1,14 @@ # Template file for 'python-pafy' pkgname=python-pafy version=0.5.0 -revision=1 +revision=2 wrksrc="pafy-${version}" noarch=yes python_versions="2.7 3.4" pycompile_module="pafy" build_style=python-module hostmakedepends="python-setuptools python3.4-setuptools" -depends="python-youtube-dl" +depends="youtube-dl" short_desc="Python2 library to download YouTube content and retrieve metadata" maintainer="Juan RP " license="LGPL-3" @@ -16,13 +16,18 @@ homepage="https://github.com/np1/pafy" distfiles="https://github.com/np1/pafy/archive/v${version}.tar.gz" checksum=f69709e07e7612eb57c3c9565c76fa5c3c44a1e232b8b1803892aa0828df53e3 +post_install() { + vbin build-3.4/scripts-3.4/ytdl ytdl3.4 +} + python3.4-pafy_package() { - short_desc="${short_desc/2/3/}" - depends="python3.4-youtube-dl" noarch=yes pycompile_version="3.4" pycompile_module="pafy" + depends="python3.4-youtube-dl" + short_desc="${short_desc/2/3.4/}" pkg_install() { + vmove usr/bin/ytdl3.4 vmove usr/lib/python3.4 } }