diff options
author | 2013-09-17 13:35:40 +0000 | |
---|---|---|
committer | 2013-09-17 13:35:40 +0000 | |
commit | 7c8e41607945a158e38c78e853cc6724e896e13e (patch) | |
tree | 3ff16551c434f44e0b26215bc43e695f0ff2589f /net-misc/youtube-dl | |
parent | Support python-exec:2. (diff) | |
download | gentoo-2-7c8e41607945a158e38c78e853cc6724e896e13e.tar.gz gentoo-2-7c8e41607945a158e38c78e853cc6724e896e13e.tar.bz2 gentoo-2-7c8e41607945a158e38c78e853cc6724e896e13e.zip |
Version bump.
(Portage version: 2.2.6/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-misc/youtube-dl')
-rw-r--r-- | net-misc/youtube-dl/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/youtube-dl/youtube-dl-2013.09.16.ebuild | 50 |
2 files changed, 56 insertions, 1 deletions
diff --git a/net-misc/youtube-dl/ChangeLog b/net-misc/youtube-dl/ChangeLog index 6151b6e8783c..b27afc2cbaf6 100644 --- a/net-misc/youtube-dl/ChangeLog +++ b/net-misc/youtube-dl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/youtube-dl # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.226 2013/09/10 14:07:56 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.227 2013/09/17 13:35:40 jer Exp $ + +*youtube-dl-2013.09.16 (17 Sep 2013) + + 17 Sep 2013; Jeroen Roovers <jer@gentoo.org> +youtube-dl-2013.09.16.ebuild: + Version bump. *youtube-dl-2013.09.10 (10 Sep 2013) diff --git a/net-misc/youtube-dl/youtube-dl-2013.09.16.ebuild b/net-misc/youtube-dl/youtube-dl-2013.09.16.ebuild new file mode 100644 index 000000000000..553d9e52dbab --- /dev/null +++ b/net-misc/youtube-dl/youtube-dl-2013.09.16.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/youtube-dl-2013.09.16.ebuild,v 1.1 2013/09/17 13:35:40 jer Exp $ + +EAPI=5 + +PYTHON_COMPAT=(python{2_6,2_7,3_3}) +DISTUTILS_SINGLE_IMPL=true +inherit bash-completion-r1 distutils-r1 eutils + +DESCRIPTION="Download videos from YouTube.com (and mores sites...)" +HOMEPAGE="http://rg3.github.com/youtube-dl/" +SRC_URI="http://youtube-dl.org/downloads/${PV}/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +IUSE="offensive test" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[coverage(+)] ) +" + +S="${WORKDIR}/${PN}" + +src_prepare() { + if ! use offensive; then + local xxx=( pornotube redtube thisav xhamster xnxx xvideos youjizz youporn ) + sed -i -e $( printf '/%s/d;' ${xxx[@]} ) youtube_dl/extractor/__init__.py || die + rm $( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) || die + fi +} + +src_compile() { + distutils-r1_src_compile +} + +src_test() { + emake test +} + +src_install() { + python_domodule youtube_dl + dobin bin/${PN} + dodoc CHANGELOG README.txt + doman ${PN}.1 + newbashcomp ${PN}.bash-completion ${PN} + python_fix_shebang "${ED}" +} |