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: Thu, 28 Feb 2019 18:49:36
Message-Id: 1551379768.6c6aede002d5814e350cffb46bb3f3c0a1179c2b.jer@gentoo
1 commit: 6c6aede002d5814e350cffb46bb3f3c0a1179c2b
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 28 18:47:15 2019 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 28 18:49:28 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c6aede0
7
8 net-misc/youtube-dl: Version 2019.03.01
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 net-misc/youtube-dl/Manifest | 1 +
14 net-misc/youtube-dl/youtube-dl-2019.03.01.ebuild | 64 ++++++++++++++++++++++++
15 2 files changed, 65 insertions(+)
16
17 diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
18 index e697e5a6cd5..5f057f75991 100644
19 --- a/net-misc/youtube-dl/Manifest
20 +++ b/net-misc/youtube-dl/Manifest
21 @@ -1 +1,2 @@
22 DIST youtube-dl-2019.02.18.tar.gz 3114830 BLAKE2B f948fc68d9bc2b7e400d22b4d2980b7f56bf734476a54b3e30b6ee33d5e4a0950233dfd74b0db26108a5759e3589acde4fe104d41ea856c88f68e165f330132b SHA512 86a321003b9e0bdc852294c8ac75d601141177f3469330c6ab01fa821758ee848dfcdf0e9dd514ca2da7b7e3c2a7f2dcddab9929f7fa8be2ab3c86d6eccbd5e3
23 +DIST youtube-dl-2019.03.01.tar.gz 3117441 BLAKE2B 92beb16920b6d9c3ead89d5ff930b73635f74d7aeba62a4ee8159e28b448931810f340857bc223ab587610704405083768137a62d7c92814a7525825adc60919 SHA512 ff037b2288b937ebc70bfa880a4c0cd10cb4a615725e25f8db998c828d4b505461088b5aaa926aa47f148189496275f1a70e03e187325c15d6ff425ed4da2dc7
24
25 diff --git a/net-misc/youtube-dl/youtube-dl-2019.03.01.ebuild b/net-misc/youtube-dl/youtube-dl-2019.03.01.ebuild
26 new file mode 100644
27 index 00000000000..2cb0551f3e3
28 --- /dev/null
29 +++ b/net-misc/youtube-dl/youtube-dl-2019.03.01.ebuild
30 @@ -0,0 +1,64 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="7"
35 +PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
36 +inherit bash-completion-r1 distutils-r1 readme.gentoo-r1
37 +
38 +DESCRIPTION="Download videos from YouTube.com (and more sites...)"
39 +HOMEPAGE="https://rg3.github.com/youtube-dl/"
40 +SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz"
41 +LICENSE="public-domain"
42 +
43 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
44 +RESTRICT="test"
45 +SLOT="0"
46 +RDEPEND="
47 + dev-python/setuptools[${PYTHON_USEDEP}]
48 +"
49 +DEPEND="
50 + ${RDEPEND}
51 +"
52 +S="${WORKDIR}/${PN}"
53 +
54 +src_compile() {
55 + distutils-r1_src_compile
56 +}
57 +
58 +python_install_all() {
59 + dodoc README.txt
60 + doman ${PN}.1
61 +
62 + newbashcomp ${PN}.bash-completion ${PN}
63 +
64 + insinto /usr/share/zsh/site-functions
65 + newins ${PN}.zsh _${PN}
66 +
67 + insinto /usr/share/fish/vendor_completions.d
68 + doins ${PN}.fish
69 +
70 + distutils-r1_python_install_all
71 +
72 + rm -r "${ED}"/usr/etc || die
73 + rm -r "${ED}"/usr/share/doc/youtube_dl || die
74 +}
75 +
76 +pkg_postinst() {
77 + elog "${PN}(1) / https://bugs.gentoo.org/355661 /"
78 + elog "https://github.com/rg3/${PN}/blob/master/README.md#faq :"
79 + elog
80 + elog "${PN} works fine on its own on most sites. However, if you want"
81 + elog "to convert video/audio, you'll need avconf (media-video/libav) or"
82 + elog "ffmpeg (media-video/ffmpeg). On some sites - most notably YouTube -"
83 + elog "videos can be retrieved in a higher quality format without sound."
84 + elog "${PN} will detect whether avconv/ffmpeg is present and"
85 + elog "automatically pick the best option."
86 + elog
87 + elog "Videos or video formats streamed via RTMP protocol can only be"
88 + elog "downloaded when rtmpdump (media-video/rtmpdump) is installed."
89 + elog "Downloading MMS and RTSP videos requires either mplayer"
90 + elog "(media-video/mplayer) or mpv (media-video/mpv) to be installed."
91 + elog
92 + elog "If you want ${PN} to embed thumbnails from the metadata into the"
93 + elog "resulting MP4 files, consider installing media-video/atomicparsley"
94 +}