Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/youtube-dl/
Date: Mon, 02 Jan 2017 00:25:05
Message-Id: 1483316700.b48999776fe19244fcfb836ad39be7b51cbac55e.jer@gentoo
1 commit: b48999776fe19244fcfb836ad39be7b51cbac55e
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 2 00:24:46 2017 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 2 00:25:00 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4899977
7
8 net-misc/youtube-dl: Version bump.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 net-misc/youtube-dl/Manifest | 1 +
13 net-misc/youtube-dl/youtube-dl-2016.12.31.ebuild | 99 ++++++++++++++++++++++++
14 2 files changed, 100 insertions(+)
15
16 diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
17 index 7f58a30..f01cd74 100644
18 --- a/net-misc/youtube-dl/Manifest
19 +++ b/net-misc/youtube-dl/Manifest
20 @@ -1,2 +1,3 @@
21 DIST youtube-dl-2016.09.19.tar.gz 2395739 SHA256 276637e83525778a83d0457f6b9fbc29d6109bc8366d43125432ce835d28545e SHA512 a8fb1ce054e25180eab3969c898d976dec157901931b66cddde0fecd55ef322e64c13a70d50de945849cbc4ccbf8be0aede845cbb8ea390bba34f51fec0533bf WHIRLPOOL e58d38e49d58b86d8eb25b40427046955e011bf57b0862c433ebe459c0268905bff67188c03bb612593d15b3d1f3408a95b510ad6f863d0144ee4307ed012aba
22 DIST youtube-dl-2016.12.22.tar.gz 2502964 SHA256 f5bc5eb1af17391b7a1da795f4181c3702fb2c1da2668b25f1260dbdba882524 SHA512 87fee134da660a4feb4cfcd2cbb35cb9682e6ed08c766e3c89f6c986f991cac78c64f5bf8a1d15c4080e4df0909c6a360137407a7896b93f8f41cf4493f341cb WHIRLPOOL 6909d34958e4152be3334723c68d207bb34db2996d90908829ebd3ee45d28768d7f6cba8ce0fb19de440b34fb96b46b3d5b8bf830c998037c4f4d59e574206c3
23 +DIST youtube-dl-2016.12.31.tar.gz 2508506 SHA256 94d9f6cb99a1f5c27a8885f1bffe1f36c7e89feef961a83f78d8093284cf1ec9 SHA512 10e04d2579ce555125aa4f9ffc64a1648b6245643e42eac30428a165037172fe1b59b12830c88e1f88c1dd621ebe59a9ab2136e9da45e20a205b1543c5da2212 WHIRLPOOL 88161cc147ae4d045662945f10b0bd9e261ed7a300dba61aeaa917cefaa5341c7d126fe2e726d48cfdf98ade1f6384d0f7bf6a1c0ec5458ded9278e74d06e484
24
25 diff --git a/net-misc/youtube-dl/youtube-dl-2016.12.31.ebuild b/net-misc/youtube-dl/youtube-dl-2016.12.31.ebuild
26 new file mode 100644
27 index 00000000..6cb3331
28 --- /dev/null
29 +++ b/net-misc/youtube-dl/youtube-dl-2016.12.31.ebuild
30 @@ -0,0 +1,99 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +PYTHON_COMPAT=(python{2_7,3_4,3_5})
38 +inherit bash-completion-r1 distutils-r1 eutils
39 +
40 +DESCRIPTION="Download videos from YouTube.com (and more sites...)"
41 +HOMEPAGE="https://rg3.github.com/youtube-dl/"
42 +SRC_URI="http://youtube-dl.org/downloads/${PV}/${P}.tar.gz"
43 +
44 +LICENSE="public-domain"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
47 +IUSE="offensive test"
48 +
49 +RDEPEND="
50 + dev-python/setuptools[${PYTHON_USEDEP}]
51 +"
52 +DEPEND="
53 + ${RDEPEND}
54 + test? ( dev-python/nose[coverage(+)] )
55 +"
56 +
57 +S="${WORKDIR}/${PN}"
58 +
59 +python_prepare_all() {
60 + if ! use offensive; then
61 + sed -i -e "/__version__/s|'$|-gentoo_no_offensive_sites'|g" \
62 + youtube_dl/version.py || die
63 + # these have single line import statements
64 + local xxx=(
65 + alphaporno anysex behindkink camwithher chaturbate eporner
66 + eroprofile extremetube fourtube foxgay goshgay hellporno
67 + hentaistigma hornbunny keezmovies lovehomeporn mofosex motherless
68 + myvidster porn91 porncom pornhd pornotube pornovoisines pornoxo
69 + ruleporn sexu slutload spankbang spankwire sunporno thisav tube8
70 + vporn watchindianporn xbef xnxx xtube xvideos xxxymovies youjizz
71 + youporn
72 + )
73 + # these have multi-line import statements
74 + local mxxx=(
75 + drtuber pornhub redtube xhamster tnaflix
76 + )
77 + # do single line imports
78 + sed -i \
79 + -e $( printf '/%s/d;' ${xxx[@]} ) \
80 + youtube_dl/extractor/extractors.py \
81 + || die
82 +
83 + # do multiple line imports
84 + sed -i \
85 + -e $( printf '/%s/,/)/d;' ${mxxx[@]} ) \
86 + youtube_dl/extractor/extractors.py \
87 + || die
88 +
89 + sed -i \
90 + -e $( printf '/%s/d;' ${mxxx[@]} ) \
91 + youtube_dl/extractor/generic.py \
92 + || die
93 +
94 + rm \
95 + $( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) \
96 + $( printf 'youtube_dl/extractor/%s.py ' ${mxxx[@]} ) \
97 + test/test_age_restriction.py \
98 + || die
99 + fi
100 +
101 + epatch_user
102 +
103 + distutils-r1_python_prepare_all
104 +}
105 +
106 +src_compile() {
107 + distutils-r1_src_compile
108 +}
109 +
110 +python_test() {
111 + emake test
112 +}
113 +
114 +python_install_all() {
115 + dodoc README.txt
116 + doman ${PN}.1
117 +
118 + newbashcomp ${PN}.bash-completion ${PN}
119 +
120 + insinto /usr/share/zsh/site-functions
121 + newins youtube-dl.zsh _youtube-dl
122 +
123 + insinto /usr/share/fish/completions
124 + doins youtube-dl.fish
125 +
126 + distutils-r1_python_install_all
127 +
128 + rm -r "${ED}"/usr/etc || die
129 +}