Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/youtube-dl/
Date: Tue, 01 Dec 2020 18:59:24
Message-Id: 1606849157.e2e97dbcbacb25f50dc2f2dc20736c0305adf9ee.mgorny@gentoo
1 commit: e2e97dbcbacb25f50dc2f2dc20736c0305adf9ee
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 1 18:42:54 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 1 18:59:17 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2e97dbc
7
8 net-misc/youtube-dl: Bump to 2020.12.02
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 net-misc/youtube-dl/Manifest | 1 +
13 net-misc/youtube-dl/youtube-dl-2020.12.02.ebuild | 71 ++++++++++++++++++++++++
14 2 files changed, 72 insertions(+)
15
16 diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
17 index 8de8a940187..c6f6769e86a 100644
18 --- a/net-misc/youtube-dl/Manifest
19 +++ b/net-misc/youtube-dl/Manifest
20 @@ -1,3 +1,4 @@
21 DIST youtube-dl-2020.09.20.tar.gz 3188480 BLAKE2B c12ee589d112155207b59da9f710b2c776c07464d5c64a5d8355b963a81765b0dbc65df4f9564504fb963f30d5a11dc7e662c14d58ddf9fe6347352363cf70a5 SHA512 ed511016d0cfcbbee0cd651f793cb31cdb46d80243f86186de1cc54cb2a2055fae2f5cc3e16f838fc2ba47f3ff6f3b484219c8a707904fbc30193a2b28a1e30c
22 DIST youtube-dl-2020.11.26.tar.gz 3218922 BLAKE2B 4e8ac926a7cef9d8a9f53de1002464e4d3a632d09c6564e1451a7bc49fe4cdf72e206f98df58a4025d55718f46d84fe4f1f6e23268ef19ad3ebd11725d5a0fcc SHA512 126c299c3db654ad3c88ced44bfc1a34bd73a439d8d3fd64720bb5d06fe84df817182a9e0b38d1def2eb4f1de26c7e2b8b6d3d6b4282f973db548c9868938a41
23 DIST youtube-dl-2020.11.29.tar.gz 3222467 BLAKE2B 6b699689f55fb5b24d9a3fa9b500461076d9cac58a111fde5f07f4df45113d40cb2cfbec2b86777b92277fbe16467c1516fdd5bb49e30f8361dd7fe3479eca57 SHA512 e3b4e7e7a776a608d2ee34c5395108445ea43fc999b0364a686eddb5d5977591d2c625b2a97955fd565631da070921f3196cd98ce58cf9aebf4e504636645a3d
24 +DIST youtube-dl-2020.12.02.tar.gz 3225560 BLAKE2B 953de14c6801a853091625753c0f918e7c6f88b1631ed2d41427fc36cc615830161f860e043ca784b31b1845ecfd0f5a88afcaeca40dc797cd89d36d4762d637 SHA512 5e48e272d957be391cb18960e0b1864b0f2202e26a53491f5c15f6c40bc36e720d80e95955a5a2f889e05f11a999fd311d095b18e5082bb951739c63ffe7565a
25
26 diff --git a/net-misc/youtube-dl/youtube-dl-2020.12.02.ebuild b/net-misc/youtube-dl/youtube-dl-2020.12.02.ebuild
27 new file mode 100644
28 index 00000000000..47f8343b521
29 --- /dev/null
30 +++ b/net-misc/youtube-dl/youtube-dl-2020.12.02.ebuild
31 @@ -0,0 +1,71 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=(python3_{6..9})
38 +
39 +DISTUTILS_USE_SETUPTOOLS=rdepend
40 +
41 +inherit bash-completion-r1 distutils-r1 readme.gentoo-r1
42 +
43 +DESCRIPTION="Download videos from YouTube.com (and more sites...)"
44 +HOMEPAGE="https://youtube-dl.org/ https://github.com/ytdl-org/youtube-dl/"
45 +SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz"
46 +S=${WORKDIR}/${PN}
47 +
48 +LICENSE="public-domain"
49 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
50 +SLOT="0"
51 +
52 +RDEPEND="
53 + dev-python/pycryptodome[${PYTHON_USEDEP}]
54 +"
55 +
56 +distutils_enable_tests nose
57 +
58 +src_prepare() {
59 + sed -i -e '/flake8/d' Makefile || die
60 + distutils-r1_src_prepare
61 +}
62 +
63 +python_test() {
64 + emake offlinetest
65 +}
66 +
67 +python_install_all() {
68 + doman ${PN}.1
69 +
70 + newbashcomp ${PN}.bash-completion ${PN}
71 +
72 + insinto /usr/share/zsh/site-functions
73 + newins ${PN}.zsh _${PN}
74 +
75 + insinto /usr/share/fish/vendor_completions.d
76 + doins ${PN}.fish
77 +
78 + distutils-r1_python_install_all
79 +
80 + rm -r "${ED}"/usr/etc || die
81 + rm -r "${ED}"/usr/share/doc/youtube_dl || die
82 +}
83 +
84 +pkg_postinst() {
85 + elog "${PN}(1) / https://bugs.gentoo.org/355661 /"
86 + elog "https://github.com/rg3/${PN}/blob/master/README.md#faq :"
87 + elog
88 + elog "${PN} works fine on its own on most sites. However, if you want"
89 + elog "to convert video/audio, you'll need ffmpeg (media-video/ffmpeg)."
90 + elog "On some sites - most notably YouTube - videos can be retrieved in"
91 + elog "a higher quality format without sound. ${PN} will detect whether"
92 + elog "ffmpeg is present and automatically pick the best option."
93 + elog
94 + elog "Videos or video formats streamed via RTMP protocol can only be"
95 + elog "downloaded when rtmpdump (media-video/rtmpdump) is installed."
96 + elog
97 + elog "Downloading MMS and RTSP videos requires either mplayer"
98 + elog "(media-video/mplayer) or mpv (media-video/mpv) to be installed."
99 + elog
100 + elog "If you want ${PN} to embed thumbnails from the metadata into the"
101 + elog "resulting MP4 files, consider installing media-video/atomicparsley"
102 +}