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: Sun, 20 Jan 2019 19:59:22
Message-Id: 1548014354.0c16a194251f56d228e70f34a6b376f41e14f785.jer@gentoo
1 commit: 0c16a194251f56d228e70f34a6b376f41e14f785
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 20 19:58:58 2019 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 20 19:59:14 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c16a194
7
8 net-misc/youtube-dl: Old
9
10 Package-Manager: Portage-2.3.56, Repoman-2.3.12
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 net-misc/youtube-dl/Manifest | 2 -
14 net-misc/youtube-dl/youtube-dl-2019.01.10.ebuild | 117 -----------------------
15 net-misc/youtube-dl/youtube-dl-2019.01.16.ebuild | 117 -----------------------
16 3 files changed, 236 deletions(-)
17
18 diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
19 index d858837404d..4b877077246 100644
20 --- a/net-misc/youtube-dl/Manifest
21 +++ b/net-misc/youtube-dl/Manifest
22 @@ -1,3 +1 @@
23 -DIST youtube-dl-2019.01.10.tar.gz 3085961 BLAKE2B 938fe458a22f1c02c5e420ed43bc65247b7992e90d224891e2f5c8fb6410a0fba62dedd035a37b0e8c42a7dadc8082a26c97fb3f192a02df8795c9cfac6c6a42 SHA512 86c86688bf9120b56a0cda54ca4c8fef20f7afeea38a80b44d5aa77958b80ac4605b8de9666668297d0a9244693b17dcdfd85ddacc8990b179bd942c4d7158f2
24 -DIST youtube-dl-2019.01.16.tar.gz 3089080 BLAKE2B 9d4038565582bc63cf45eef97ea81ba86268f98d7a2230632bc300da8fd06432f90466a6efb2d7c43f13728af30f1df5b170c3fa710093e16b47f05257bcd6e3 SHA512 fafcd820248bdfbd70eddf98ab545fc6587ccbd64a3fac498985514ac7021a9635f32a5d0e52a5d46eb78b25b38b67a01b4d5bf3181bfadecd68b08b55e13ace
25 DIST youtube-dl-2019.01.17.tar.gz 3088912 BLAKE2B 6cd46442d78126b3428135fcb820eb02bb2d567fe41fbfefcd80fc68a9ece0faaf2aa4981e31c619c3be1f789a9539236b1a71e72490c4ee667953837b25f0e5 SHA512 b8e81c2b2ec284033a5a92f49a965375d681d92435bc0402bb891b443f94d1321716a15717fe4e3c1fbc54ec610445282c52c18c046e140dd53731560230bd3f
26
27 diff --git a/net-misc/youtube-dl/youtube-dl-2019.01.10.ebuild b/net-misc/youtube-dl/youtube-dl-2019.01.10.ebuild
28 deleted file mode 100644
29 index c26955b4088..00000000000
30 --- a/net-misc/youtube-dl/youtube-dl-2019.01.10.ebuild
31 +++ /dev/null
32 @@ -1,117 +0,0 @@
33 -# Copyright 1999-2019 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI="7"
37 -PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
38 -inherit bash-completion-r1 distutils-r1 readme.gentoo-r1
39 -
40 -DESCRIPTION="Download videos from YouTube.com (and more sites...)"
41 -HOMEPAGE="https://rg3.github.com/youtube-dl/"
42 -SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz"
43 -
44 -LICENSE="public-domain"
45 -SLOT="0"
46 -KEYWORDS="amd64 arm ~arm64 hppa ppc ppc64 x86 ~amd64-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 foxgay goshgay hellporno hentaistigma
67 - hornbunny keezmovies lovehomeporn mofosex myvidster porn91 porncom
68 - pornflip pornhd pornotube pornovoisines pornoxo ruleporn sexu
69 - slutload spankbang spankwire sunporno thisav vporn watchindianporn
70 - xbef xnxx xtube xvideos xxxymovies youjizz youporn
71 - )
72 - # these have multi-line import statements
73 - local mxxx=(
74 - drtuber fourtube motherless pornhub redtube tnaflix tube8 xhamster
75 - )
76 - # do single line imports
77 - sed -i \
78 - -e $( printf '/%s/d;' ${xxx[@]} ) \
79 - youtube_dl/extractor/extractors.py \
80 - || die
81 -
82 - # do multiple line imports
83 - sed -i \
84 - -e $( printf '/%s/,/)/d;' ${mxxx[@]} ) \
85 - youtube_dl/extractor/extractors.py \
86 - || die
87 -
88 - sed -i \
89 - -e $( printf '/%s/d;' ${mxxx[@]} ) \
90 - youtube_dl/extractor/generic.py \
91 - || die
92 -
93 - rm \
94 - $( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) \
95 - $( printf 'youtube_dl/extractor/%s.py ' ${mxxx[@]} ) \
96 - test/test_age_restriction.py \
97 - || die
98 - fi
99 -
100 - eapply_user
101 -
102 - distutils-r1_python_prepare_all
103 -}
104 -
105 -src_compile() {
106 - distutils-r1_src_compile
107 -}
108 -
109 -python_test() {
110 - emake test
111 -}
112 -
113 -python_install_all() {
114 - dodoc README.txt
115 - doman ${PN}.1
116 -
117 - newbashcomp ${PN}.bash-completion ${PN}
118 -
119 - insinto /usr/share/zsh/site-functions
120 - newins ${PN}.zsh _${PN}
121 -
122 - insinto /usr/share/fish/vendor_completions.d
123 - doins ${PN}.fish
124 -
125 - distutils-r1_python_install_all
126 -
127 - rm -r "${ED}"/usr/etc || die
128 - rm -r "${ED}"/usr/share/doc/youtube_dl || die
129 -}
130 -
131 -pkg_postinst() {
132 - elog "${PN}(1) / https://bugs.gentoo.org/355661 /"
133 - elog "https://github.com/rg3/${PN}/blob/master/README.md#faq :"
134 - elog
135 - elog "${PN} works fine on its own on most sites. However, if you want"
136 - elog "to convert video/audio, you'll need avconf (media-video/libav) or"
137 - elog "ffmpeg (media-video/ffmpeg). On some sites - most notably YouTube -"
138 - elog "videos can be retrieved in a higher quality format without sound."
139 - elog "${PN} will detect whether avconv/ffmpeg is present and"
140 - elog "automatically pick the best option."
141 - elog
142 - elog "Videos or video formats streamed via RTMP protocol can only be"
143 - elog "downloaded when rtmpdump (media-video/rtmpdump) is installed."
144 - elog "Downloading MMS and RTSP videos requires either mplayer"
145 - elog "(media-video/mplayer) or mpv (media-video/mpv) to be installed."
146 - elog
147 - elog "If you want ${PN} to embed thumbnails from the metadata into the"
148 - elog "resulting MP4 files, consider installing media-video/atomicparsley"
149 -}
150
151 diff --git a/net-misc/youtube-dl/youtube-dl-2019.01.16.ebuild b/net-misc/youtube-dl/youtube-dl-2019.01.16.ebuild
152 deleted file mode 100644
153 index 6ef55f59a57..00000000000
154 --- a/net-misc/youtube-dl/youtube-dl-2019.01.16.ebuild
155 +++ /dev/null
156 @@ -1,117 +0,0 @@
157 -# Copyright 1999-2019 Gentoo Authors
158 -# Distributed under the terms of the GNU General Public License v2
159 -
160 -EAPI="7"
161 -PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
162 -inherit bash-completion-r1 distutils-r1 readme.gentoo-r1
163 -
164 -DESCRIPTION="Download videos from YouTube.com (and more sites...)"
165 -HOMEPAGE="https://rg3.github.com/youtube-dl/"
166 -SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz"
167 -
168 -LICENSE="public-domain"
169 -SLOT="0"
170 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
171 -IUSE="+offensive test"
172 -
173 -RDEPEND="
174 - dev-python/setuptools[${PYTHON_USEDEP}]
175 -"
176 -DEPEND="
177 - ${RDEPEND}
178 - test? ( dev-python/nose[coverage(+)] )
179 -"
180 -
181 -S="${WORKDIR}/${PN}"
182 -
183 -python_prepare_all() {
184 - if ! use offensive; then
185 - sed -i -e "/..version../s|'$|+gentoo.no.offensive.sites'|g" \
186 - youtube_dl/version.py || die
187 - # these have single line import statements
188 - local xxx=(
189 - alphaporno anysex behindkink camwithher chaturbate eporner
190 - eroprofile extremetube foxgay goshgay hellporno hentaistigma
191 - hornbunny keezmovies lovehomeporn mofosex myvidster porn91 porncom
192 - pornflip pornhd pornotube pornovoisines pornoxo ruleporn sexu
193 - slutload spankbang spankwire sunporno thisav vporn watchindianporn
194 - xbef xnxx xtube xvideos xxxymovies youjizz youporn
195 - )
196 - # these have multi-line import statements
197 - local mxxx=(
198 - drtuber fourtube motherless pornhub redtube tnaflix tube8 xhamster
199 - )
200 - # do single line imports
201 - sed -i \
202 - -e $( printf '/%s/d;' ${xxx[@]} ) \
203 - youtube_dl/extractor/extractors.py \
204 - || die
205 -
206 - # do multiple line imports
207 - sed -i \
208 - -e $( printf '/%s/,/)/d;' ${mxxx[@]} ) \
209 - youtube_dl/extractor/extractors.py \
210 - || die
211 -
212 - sed -i \
213 - -e $( printf '/%s/d;' ${mxxx[@]} ) \
214 - youtube_dl/extractor/generic.py \
215 - || die
216 -
217 - rm \
218 - $( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) \
219 - $( printf 'youtube_dl/extractor/%s.py ' ${mxxx[@]} ) \
220 - test/test_age_restriction.py \
221 - || die
222 - fi
223 -
224 - eapply_user
225 -
226 - distutils-r1_python_prepare_all
227 -}
228 -
229 -src_compile() {
230 - distutils-r1_src_compile
231 -}
232 -
233 -python_test() {
234 - emake test
235 -}
236 -
237 -python_install_all() {
238 - dodoc README.txt
239 - doman ${PN}.1
240 -
241 - newbashcomp ${PN}.bash-completion ${PN}
242 -
243 - insinto /usr/share/zsh/site-functions
244 - newins ${PN}.zsh _${PN}
245 -
246 - insinto /usr/share/fish/vendor_completions.d
247 - doins ${PN}.fish
248 -
249 - distutils-r1_python_install_all
250 -
251 - rm -r "${ED}"/usr/etc || die
252 - rm -r "${ED}"/usr/share/doc/youtube_dl || die
253 -}
254 -
255 -pkg_postinst() {
256 - elog "${PN}(1) / https://bugs.gentoo.org/355661 /"
257 - elog "https://github.com/rg3/${PN}/blob/master/README.md#faq :"
258 - elog
259 - elog "${PN} works fine on its own on most sites. However, if you want"
260 - elog "to convert video/audio, you'll need avconf (media-video/libav) or"
261 - elog "ffmpeg (media-video/ffmpeg). On some sites - most notably YouTube -"
262 - elog "videos can be retrieved in a higher quality format without sound."
263 - elog "${PN} will detect whether avconv/ffmpeg is present and"
264 - elog "automatically pick the best option."
265 - elog
266 - elog "Videos or video formats streamed via RTMP protocol can only be"
267 - elog "downloaded when rtmpdump (media-video/rtmpdump) is installed."
268 - elog "Downloading MMS and RTSP videos requires either mplayer"
269 - elog "(media-video/mplayer) or mpv (media-video/mpv) to be installed."
270 - elog
271 - elog "If you want ${PN} to embed thumbnails from the metadata into the"
272 - elog "resulting MP4 files, consider installing media-video/atomicparsley"
273 -}