commit:     74f08d699c81c21f64ea43c6ccc7e47d8871e5ed
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 14 13:09:20 2016 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Wed Sep 14 13:10:45 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74f08d69

net-misc/youtube-dl: Version bump.

Package-Manager: portage-2.3.0

 net-misc/youtube-dl/Manifest                       |  1 +
 net-misc/youtube-dl/youtube-dl-2016.09.11.1.ebuild | 97 ++++++++++++++++++++++
 2 files changed, 98 insertions(+)

diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
index 03b11eb..355aef1 100644
--- a/net-misc/youtube-dl/Manifest
+++ b/net-misc/youtube-dl/Manifest
@@ -1,2 +1,3 @@
 DIST youtube-dl-2016.01.01.tar.gz 1874602 SHA256 
732f37c99d71b4239d72d61dd32214b5a5a618671fb0629c8f8deb28209a172c SHA512 
fdb022bed426250e5ee1c2bcc1354dd195c0f9793ca479ca8ca4cfe2f71e07ba100b0dbcda2fb9f310308ab130587d06b16a6a86f9036f0d196b317d2e5b5e92
 WHIRLPOOL 
152e709ba15264c35a89644ea0d4793bb47c82b317e54043ccfff72e40bdf95e42d76605e801233632d3863537a945cfb9ecc2f75245171b8de31b51ce6af801
 DIST youtube-dl-2016.09.08.tar.gz 2373179 SHA256 
c45af2fb1041c25ee9b2283f5c0bd32106943844425541d684e17310e216b8b7 SHA512 
06c0d2b733decd06b035c0381cce806fb9889f2a5d8829d58c21bd5aece5326fef1f3289f467dddf74571d4da966edfca68e697a3f4e2a9caaed98bac3c5b005
 WHIRLPOOL 
275bff1e7931ee2333d07b05813d0c2ab1c17f7ef18ee6eef26fd6f3213b002883b2073085f79cf15181e7a9c8f9faa433db747f99cce38b7359ee749d4daed3
+DIST youtube-dl-2016.09.11.1.tar.gz 2382851 SHA256 
6cdeb0876295bef0325b8433c47c1ed13ebab3b108ef5ee27171e06b6958cb35 SHA512 
d15e15e7091eafd0fa53a554908afb54b46a9d81ef9b3e7551959b6e5b778b712be5a76f2c0539fb72619f4179898c3fc8a47c87bc3173a8cf17d9613176574c
 WHIRLPOOL 
d2106d3a83de95acd0d99921c86a3c42d1b37bd431103b0bf892051be4b16545ae2c3bf221a993fc41600cff5996eb9cc5d66c1a6c8fbc5d298a7a65df21074f

diff --git a/net-misc/youtube-dl/youtube-dl-2016.09.11.1.ebuild 
b/net-misc/youtube-dl/youtube-dl-2016.09.11.1.ebuild
new file mode 100644
index 00000000..be4ed48
--- /dev/null
+++ b/net-misc/youtube-dl/youtube-dl-2016.09.11.1.ebuild
@@ -0,0 +1,97 @@
+# 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"
+
+RDEPEND="
+       dev-python/setuptools[${PYTHON_USEDEP}]
+"
+DEPEND="
+       ${RDEPEND}
+       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 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
+}

Reply via email to