diff options
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/youtube-dl/Manifest | 1 | ||||
-rw-r--r-- | net-misc/youtube-dl/youtube-dl-2016.08.07.ebuild | 94 |
2 files changed, 95 insertions, 0 deletions
diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest index 4464661358ab..b42d8e833923 100644 --- a/net-misc/youtube-dl/Manifest +++ b/net-misc/youtube-dl/Manifest @@ -1,3 +1,4 @@ DIST youtube-dl-2016.01.01.tar.gz 1874602 SHA256 732f37c99d71b4239d72d61dd32214b5a5a618671fb0629c8f8deb28209a172c SHA512 fdb022bed426250e5ee1c2bcc1354dd195c0f9793ca479ca8ca4cfe2f71e07ba100b0dbcda2fb9f310308ab130587d06b16a6a86f9036f0d196b317d2e5b5e92 WHIRLPOOL 152e709ba15264c35a89644ea0d4793bb47c82b317e54043ccfff72e40bdf95e42d76605e801233632d3863537a945cfb9ecc2f75245171b8de31b51ce6af801 DIST youtube-dl-2016.07.30.tar.gz 2295943 SHA256 c3a1e9732e2c44eccd97297f460a011d9822d068ba484156bf25cf11d1053ae9 SHA512 689cce8c898328b29b6ff47936d40435ca9035f26d329207af752bcee469bffe282553d5cfe45ab99b98aa6227d768c53ae3c4a0720382ee311c36bfb60cfa30 WHIRLPOOL 7772164f9528938fe5fe73659d6203fda4d6ebd46df09680a40375ff3287a092446b4c118e9afeb7ce1228ff9c2e8b9d43f350b1774bfa4d590bac3279106da3 DIST youtube-dl-2016.08.01.tar.gz 2297058 SHA256 b11f9abcfcad4ea7bf370bd80a7f8751a85e26e840337a9df60a6e9e73a6d7a1 SHA512 82c20c600967df3268b0cfb12a7ecf3b7a334e8b98a081f45ae1325774c362b94459d45e0f64b4353227c259cfd0000a17a8582b48dad3a016a978f03eafa9ed WHIRLPOOL 85a7bcc1f02cff9ee696a137e418757dd60b961e17afe67b638ca450436b1977512d2474af6c294385ac160ff50385ec82402bec3d8edbd377e2c2170ba57c9e +DIST youtube-dl-2016.08.07.tar.gz 2309777 SHA256 6f42477c562291cd392b7a034a7b828bbf1e209a48de7629848ba82a3aacdc1f SHA512 4ead7dc1714b005b391dd5aebb2132e48fb1a2017d4e4db3f96c7c9bb9a60d93bafea1d36a15e5dcedf98bb33233fb6b9a33d7922b35578f37d028610649c621 WHIRLPOOL b06401f21d274a275c216b46f1503a281acb721948303a574794f54f380cd6c5d34315607df1efadff57c334749c518dce598a1e4bf445e785a7193db0a81109 diff --git a/net-misc/youtube-dl/youtube-dl-2016.08.07.ebuild b/net-misc/youtube-dl/youtube-dl-2016.08.07.ebuild new file mode 100644 index 000000000000..9d7ca82d0e68 --- /dev/null +++ b/net-misc/youtube-dl/youtube-dl-2016.08.07.ebuild @@ -0,0 +1,94 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=(python{2_7,3_3,3_4,3_5}) +inherit bash-completion-r1 distutils-r1 eutils + +DESCRIPTION="Download videos from YouTube.com (and more sites...)" +HOMEPAGE="https://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}" + +python_prepare_all() { + if ! use offensive; then + sed -i -e "/__version__/s|'$|-gentoo_no_offensive_sites'|g" \ + youtube_dl/version.py || die + # these have single line import statements + local xxx=( + alphaporno anysex behindkink camwithher chaturbate drtuber eporner + eroprofile extremetube fourtube foxgay goshgay hellporno + hentaistigma hornbunny keezmovies lovehomeporn mofosex motherless + myvidster porn91 pornhd pornotube pornovoisines pornoxo redtube + ruleporn sexu slutload spankbang spankwire sunporno thisav trutube + tube8 vporn watchindianporn xbef xnxx xtube xvideos xxxymovies + youjizz youporn + ) + # these have multi-line import statements + local mxxx=( + pornhub xhamster tnaflix + ) + # do single line imports + sed -i \ + -e $( printf '/%s/d;' ${xxx[@]} ) \ + youtube_dl/extractor/extractors.py \ + || die + + # do multiple line imports + sed -i \ + -e $( printf '/%s/,/)/d;' ${mxxx[@]} ) \ + youtube_dl/extractor/extractors.py \ + || die + + sed -i \ + -e $( printf '/%s/d;' ${mxxx[@]} ) \ + youtube_dl/extractor/generic.py \ + || die + + rm \ + $( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) \ + $( printf 'youtube_dl/extractor/%s.py ' ${mxxx[@]} ) \ + test/test_age_restriction.py \ + || die + fi + + epatch_user + + distutils-r1_python_prepare_all +} + +src_compile() { + distutils-r1_src_compile +} + +python_test() { + emake test +} + +python_install_all() { + dodoc README.txt + doman ${PN}.1 + + newbashcomp ${PN}.bash-completion ${PN} + + insinto /usr/share/zsh/site-functions + newins youtube-dl.zsh _youtube-dl + + insinto /usr/share/fish/completions + doins youtube-dl.fish + + distutils-r1_python_install_all +} |