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, 17 Feb 2019 19:21:45
Message-Id: 1550431298.0b4fec5403f01e7c173ba2ebf2423131c4c7e05b.jer@gentoo
1 commit: 0b4fec5403f01e7c173ba2ebf2423131c4c7e05b
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 17 19:20:40 2019 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 17 19:21:38 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b4fec54
7
8 net-misc/youtube-dl: Version 2019.02.18
9
10 Package-Manager: Portage-2.3.60, 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.02.18.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 be7dc0181fa..8aa1dda4dcc 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.08.tar.gz 3104780 BLAKE2B e89a9950de84c3d2c5530ca229f2dfb39bb372454a6a1d67c0d1c966f68f2372008556ffda32c042eca6d3c0aee3ace0c1cabdf1d65cb16efc80326b821a3624 SHA512 4fc027ec6d9d7059c34a3c16f1265989ec000c131e6a937f667928531dd2a6d9f56592d367f08ec5e3b1900b3e191aa36bcc997db04b77b95850a43ed1272640
23 +DIST youtube-dl-2019.02.18.tar.gz 3114830 BLAKE2B f948fc68d9bc2b7e400d22b4d2980b7f56bf734476a54b3e30b6ee33d5e4a0950233dfd74b0db26108a5759e3589acde4fe104d41ea856c88f68e165f330132b SHA512 86a321003b9e0bdc852294c8ac75d601141177f3469330c6ab01fa821758ee848dfcdf0e9dd514ca2da7b7e3c2a7f2dcddab9929f7fa8be2ab3c86d6eccbd5e3
24
25 diff --git a/net-misc/youtube-dl/youtube-dl-2019.02.18.ebuild b/net-misc/youtube-dl/youtube-dl-2019.02.18.ebuild
26 new file mode 100644
27 index 00000000000..2cb0551f3e3
28 --- /dev/null
29 +++ b/net-misc/youtube-dl/youtube-dl-2019.02.18.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 +}