diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-06-10 18:17:51 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-06-10 18:17:51 +0000 |
commit | 81ca52039c92028f86fb8507f6da136977f1519a (patch) | |
tree | 44935929b04a31b1e1afa9b88d6d08ef006949d0 /net-misc | |
parent | Fix shebangs. (diff) | |
download | gentoo-2-81ca52039c92028f86fb8507f6da136977f1519a.tar.gz gentoo-2-81ca52039c92028f86fb8507f6da136977f1519a.tar.bz2 gentoo-2-81ca52039c92028f86fb8507f6da136977f1519a.zip |
2010.06.06 version bump. This version supports WebM video formats 43 and
45 (upstream issue #139). Also add ebuild fixes for bug #315849, including
shebang specifying python2.
(Portage version: 2.2_rc67_p165/cvs/Linux i686)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/youtube-dl/ChangeLog | 10 | ||||
-rw-r--r-- | net-misc/youtube-dl/youtube-dl-2010.06.06.ebuild | 26 |
2 files changed, 35 insertions, 1 deletions
diff --git a/net-misc/youtube-dl/ChangeLog b/net-misc/youtube-dl/ChangeLog index 4ad70de2bee7..11da19ccd8bc 100644 --- a/net-misc/youtube-dl/ChangeLog +++ b/net-misc/youtube-dl/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for net-misc/youtube-dl # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.59 2010/04/08 19:29:28 ricmm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.60 2010/06/10 18:17:51 zmedico Exp $ + +*youtube-dl-2010.06.06 (10 Jun 2010) + + 10 Jun 2010; Zac Medico <zmedico@gentoo.org> + +youtube-dl-2010.06.06.ebuild: + 2010.06.06 version bump. This version supports WebM video formats 43 and + 45 (upstream issue #139). Also add ebuild fixes for bug #315849, including + shebang specifying python2. *youtube-dl-2010.04.04 (08 Apr 2010) diff --git a/net-misc/youtube-dl/youtube-dl-2010.06.06.ebuild b/net-misc/youtube-dl/youtube-dl-2010.06.06.ebuild new file mode 100644 index 000000000000..d66b37283468 --- /dev/null +++ b/net-misc/youtube-dl/youtube-dl-2010.06.06.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/youtube-dl-2010.06.06.ebuild,v 1.1 2010/06/10 18:17:51 zmedico Exp $ + +EAPI=3 +PYTHON_DEPEND=2:2.4 + +inherit python + +DESCRIPTION="A small command-line program to download videos from YouTube." +HOMEPAGE="http://bitbucket.org/rg3/youtube-dl/" +SRC_URI="http://bitbucket.org/rg3/${PN}/get/${PV}.bz2 -> ${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +IUSE="" + +pkg_setup() { + python_set_active_version 2 +} + +src_install() { + newbin "${PN}/${PN}" ${PN} + python_convert_shebangs -r 2 "$D" +} |