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