diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2012-01-03 15:12:25 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2012-01-03 15:12:25 +0000 |
commit | 91781b2b3ecfc0adba085d771b79029439fb1ad5 (patch) | |
tree | 8af4fde602243f0e36dd02d6bdd1577a12546434 /net-misc/youtube-dl | |
parent | Version bump, remove old. Fixes build with >=media-libs/audiofile-0.3.1. (diff) | |
download | gentoo-2-91781b2b3ecfc0adba085d771b79029439fb1ad5.tar.gz gentoo-2-91781b2b3ecfc0adba085d771b79029439fb1ad5.tar.bz2 gentoo-2-91781b2b3ecfc0adba085d771b79029439fb1ad5.zip |
Bump to latest, use https for SRC_URI which saves one redirect; also dodoc README.md
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/youtube-dl')
-rw-r--r-- | net-misc/youtube-dl/ChangeLog | 11 | ||||
-rw-r--r-- | net-misc/youtube-dl/youtube-dl-2011.12.18.ebuild | 26 |
2 files changed, 35 insertions, 2 deletions
diff --git a/net-misc/youtube-dl/ChangeLog b/net-misc/youtube-dl/ChangeLog index 83a0942e8a62..e519428466fe 100644 --- a/net-misc/youtube-dl/ChangeLog +++ b/net-misc/youtube-dl/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-misc/youtube-dl -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.98 2011/12/11 00:42:03 floppym Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.99 2012/01/03 15:12:25 nirbheek Exp $ + +*youtube-dl-2011.12.18 (03 Jan 2012) + + 03 Jan 2012; Nirbheek Chauhan <nirbheek@gentoo.org> + +youtube-dl-2011.12.18.ebuild: + Bump to latest, use https for SRC_URI which saves one redirect; also dodoc + README.md 11 Dec 2011; Mike Gilbert <floppym@gentoo.org> youtube-dl-2011.08.04.ebuild, youtube-dl-2011.09.30.ebuild, youtube-dl-2011.11.22.ebuild, diff --git a/net-misc/youtube-dl/youtube-dl-2011.12.18.ebuild b/net-misc/youtube-dl/youtube-dl-2011.12.18.ebuild new file mode 100644 index 000000000000..66a3e9b26a61 --- /dev/null +++ b/net-misc/youtube-dl/youtube-dl-2011.12.18.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/youtube-dl-2011.12.18.ebuild,v 1.1 2012/01/03 15:12:25 nirbheek Exp $ + +EAPI=3 +PYTHON_DEPEND=2:2.5 + +inherit python + +DESCRIPTION="A small command-line program to download videos from YouTube." +HOMEPAGE="https://rg3.github.com/youtube-dl/" +SRC_URI="https://github.com/rg3/${PN}/tarball/${PV} -> ${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +IUSE="" + +pkg_setup() { :; } + +src_install() { + newbin rg3-${PN}*/${PN} ${PN} || die + # Installed with .md to denote markdown format + dodoc rg3-${PN}*/README.md || die + python_convert_shebangs -r 2 "${D}" +} |