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: Fri, 08 Feb 2019 10:32:50
Message-Id: 1549621962.4ac00b02e05510d0aaf6cdac836b19053780ef6c.jer@gentoo
1 commit: 4ac00b02e05510d0aaf6cdac836b19053780ef6c
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 8 10:32:29 2019 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 8 10:32:42 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ac00b02
7
8 net-misc/youtube-dl: Version 2019.02.08
9
10 Package-Manager: Portage-2.3.59, 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.08.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 06a796228fc..0e33c6ac0ce 100644
19 --- a/net-misc/youtube-dl/Manifest
20 +++ b/net-misc/youtube-dl/Manifest
21 @@ -1 +1,2 @@
22 DIST youtube-dl-2019.01.30.1.tar.gz 3105464 BLAKE2B f09cf3e86710f6d3ec6555e18299097800775a44ed336fa54fd5abb8ea753806dc6431894659e51fef43b90f974250dbcce9bb51eed50e1e43b75fe40dd21fbd SHA512 4d1fd2b9cf84dbbbf3a7a84ce9e7b2fe39d34fb29c337c71c4dba598bc3eac9d205399055dbcd7ec964398dafac90d488188c4fbc5083ee0abfd09269dce26b3
23 +DIST youtube-dl-2019.02.08.tar.gz 3104780 BLAKE2B e89a9950de84c3d2c5530ca229f2dfb39bb372454a6a1d67c0d1c966f68f2372008556ffda32c042eca6d3c0aee3ace0c1cabdf1d65cb16efc80326b821a3624 SHA512 4fc027ec6d9d7059c34a3c16f1265989ec000c131e6a937f667928531dd2a6d9f56592d367f08ec5e3b1900b3e191aa36bcc997db04b77b95850a43ed1272640
24
25 diff --git a/net-misc/youtube-dl/youtube-dl-2019.02.08.ebuild b/net-misc/youtube-dl/youtube-dl-2019.02.08.ebuild
26 new file mode 100644
27 index 00000000000..2cb0551f3e3
28 --- /dev/null
29 +++ b/net-misc/youtube-dl/youtube-dl-2019.02.08.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 +}