Gentoo Archives: gentoo-commits

From: Piotr Karbowski <slashbeast@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/yt-dlp/
Date: Mon, 27 Sep 2021 21:18:40
Message-Id: 1632777511.b55ee5100260aaecc5a42353dd0a8c5d2ff625fd.slashbeast@gentoo
1 commit: b55ee5100260aaecc5a42353dd0a8c5d2ff625fd
2 Author: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 27 21:11:48 2021 +0000
4 Commit: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 27 21:18:31 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b55ee510
7
8 net-misc/yt-dlp: 2021.9.25 version bump
9
10 Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>
11
12 net-misc/yt-dlp/Manifest | 1 +
13 net-misc/yt-dlp/yt-dlp-2021.9.25.ebuild | 47 +++++++++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/net-misc/yt-dlp/Manifest b/net-misc/yt-dlp/Manifest
17 index 54ca73008f4..b6c33e163d1 100644
18 --- a/net-misc/yt-dlp/Manifest
19 +++ b/net-misc/yt-dlp/Manifest
20 @@ -1,2 +1,3 @@
21 DIST yt-dlp-2021.8.10.tar.gz 1807968 BLAKE2B 664f9f5680c18531bb1c194e6e26a31b6be62894a88c6748bf146fbba79164fec6f5e6db017785daf6c8f5a2c1b7cfc0c2ee6c0d437b9d7bb4e1835eff73650f SHA512 fb321d308e634f6358f046762cc3e827b036083b4764d495bbcef253d06ce445152f4a330c51b5aac1eb3b21a8a345fc791f0fdbdc01089ea2a414b1cd457f20
22 DIST yt-dlp-2021.9.1.tar.gz 1846252 BLAKE2B 2cb056b89d1c3f5dfe442c96e983b2500185ade621c285669ef513d0fe9af9aabea3ad121344d1c521b6c89eddc77bf7698edb48d92f6f5f7b58b8939c80817d SHA512 26f778bf63b9be9e487b96f098e56abf65c7c7a89e9c5754755cf73d55e441638174d7b0e7220e994e40c0740edbd792e1fee28b44946cab8197dfaae2eee26e
23 +DIST yt-dlp-2021.9.25.tar.gz 1890559 BLAKE2B 9573fc4214fa8654a4b1ca44dd40b81f590f08ffe56225d8ad9923e4c3d188be406a59443e9ec134a1eef523e39e33cecba9ba76ef05edb908713d72d1ac233d SHA512 2c1fc18f05108420caaae9ca4072fc1ee0c67932ac144ee69c3e412850e1f1873938e302b9e0953bea29678bd2c512e58c124088243818ce0662449bcfa92175
24
25 diff --git a/net-misc/yt-dlp/yt-dlp-2021.9.25.ebuild b/net-misc/yt-dlp/yt-dlp-2021.9.25.ebuild
26 new file mode 100644
27 index 00000000000..4c0bfc7cd61
28 --- /dev/null
29 +++ b/net-misc/yt-dlp/yt-dlp-2021.9.25.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +inherit bash-completion-r1 distutils-r1 readme.gentoo-r1
38 +
39 +DESCRIPTION="A youtube-dl fork with additional features and fixes"
40 +HOMEPAGE="https://github.com/yt-dlp/yt-dlp"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +KEYWORDS="~amd64 ~riscv ~x86"
43 +LICENSE="public-domain"
44 +SLOT="0"
45 +
46 +RDEPEND="
47 + dev-python/pycryptodome[${PYTHON_USEDEP}]
48 + media-libs/mutagen[${PYTHON_USEDEP}]
49 + dev-python/websockets[${PYTHON_USEDEP}]
50 + dev-python/keyring[${PYTHON_USEDEP}]
51 + media-video/ffmpeg
52 +
53 +"
54 +
55 +distutils_enable_tests nose
56 +
57 +python_test() {
58 + # make_lazy_extractors.py tries to rename it out, so fails if it does not exists.
59 + mkdir ytdlp_plugins
60 + epytest -k 'not download'
61 +}
62 +
63 +python_install_all() {
64 + doman yt-dlp.1
65 +
66 + newbashcomp completions/bash/yt-dlp yt-dlp
67 +
68 + insinto /usr/share/zsh/site-functions
69 + newins completions/zsh/_yt-dlp _yt-dlp
70 +
71 + insinto /usr/share/fish/vendor_completions.d
72 + doins completions/fish/yt-dlp.fish
73 +
74 + distutils-r1_python_install_all
75 +
76 + rm -rf "${ED}"/usr/share/doc/yt_dlp || die
77 +}