Skip to content

Commit 0b17853

Browse files
committed
dev-python/yt-dlp: new package, add 2023.10.13
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/2410 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent d99f6d1 commit 0b17853

File tree

4 files changed

+61
-2
lines changed

4 files changed

+61
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ There are 1659 Ebuilds in total, 1648 of them have in total 1669 (43 different)
617617
|License| Ebuilds using it|
618618
|-------|-----|
619619
|MIT|966|
620-
|Apache-2.0|344|
620+
|Apache-2.0|343|
621621
|BSD|97|
622622
|GPL-3|95|
623623
|GPL-2|27|
@@ -626,7 +626,7 @@ There are 1659 Ebuilds in total, 1648 of them have in total 1669 (43 different)
626626
|BSD-2|12|
627627
|GPL-3+|11|
628628
|LGPL-3+|11|
629-
|Unlicense|9|
629+
|Unlicense|10|
630630
|ISC|5|
631631
|MPL-2.0|5|
632632
|LGPL-2.1|5|

dev-python/yt-dlp/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST yt-dlp-2023.10.13.tar.gz 2808331 BLAKE2B 6de74efb6ef6dacdc0ad972e17c6d636a13ba442fb514b74ca56d1f3b486c3d7e7c7c597e3eaa165fafe3af802fe2e1fe80b6956ce857f99bfffa488f27da7dc SHA512 60e669fa89e3d989392f11517b845e6df9774fc3d8b53172f489842ca12b74365a0284ae878e40bac58a2b6be26fb4abda50ee65b22ed0507487e132900ce00d
2+
EBUILD yt-dlp-2023.10.13.ebuild 1019 BLAKE2B 17c03b491cbc0d22bc30e9977bdf838aeff6dd4b514487161e657ce3a5b1e6c153a6cecb540290963544a28c9800fffe44ac329e9d68c5c1fa1705f52ab056fa SHA512 d222e67a8e253ca11ba5b799dac8665fc133e01bb006b50da24887e3d266197cb63f818044ef5361f7e73acb622d2195e95229bad73fa0d4f2a75d26ed45edbf
3+
MISC metadata.xml 508 BLAKE2B 21d7714827de27566946d208f7aa30b908f1b4dcc85cbe8f8e743f40a58a1be742047139adeedccffa28b6996877543cb11393a77e19f3e473e8420ed09a4d1c SHA512 5995ac642d9c24614b1bb5d9e3d35d886c1cae214fadde19c99a57a8a2953b3abf4d187cb4c527fb4e173bbe67a6b89a259cdc4729437f17b4e1ee9726cf4bc5

dev-python/yt-dlp/metadata.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
3+
<pkgmetadata>
4+
<maintainer type="project">
5+
<email>[email protected]</email>
6+
<name>Andreas Billmeier</name>
7+
</maintainer>
8+
<upstream>
9+
<remote-id type="pypi">yt-dlp</remote-id>
10+
<remote-id type="github">yt-dlp/yt-dlp</remote-id>
11+
<maintainer status="unknown">
12+
<email>[email protected]</email>
13+
<name>pukkandan</name>
14+
</maintainer>
15+
</upstream>
16+
</pkgmetadata>
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Copyright 1999-2023 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{10..12} )
7+
DISTUTILS_USE_PEP517=setuptools
8+
PYPI_NO_NORMALIZE=1
9+
inherit distutils-r1 pypi
10+
11+
DESCRIPTION="A youtube-dl fork with additional features and patches"
12+
HOMEPAGE="https://github.com/yt-dlp/yt-dlp https://pypi.org/project/yt-dlp/"
13+
14+
LICENSE="Unlicense"
15+
SLOT="0"
16+
KEYWORDS="amd64 arm arm64 x86"
17+
IUSE="test"
18+
RESTRICT="!test? ( test )"
19+
20+
DOCS="README.md"
21+
22+
RDEPEND="media-libs/mutagen[${PYTHON_USEDEP}]
23+
dev-python/pycryptodomex[${PYTHON_USEDEP}]
24+
dev-python/websockets[${PYTHON_USEDEP}]
25+
dev-python/brotlipy[${PYTHON_USEDEP}]
26+
dev-python/brotlicffi[${PYTHON_USEDEP}]
27+
dev-python/certifi[${PYTHON_USEDEP}]
28+
>=dev-python/requests-2.31.0[${PYTHON_USEDEP}]
29+
>=dev-python/urllib3-1.26.17[${PYTHON_USEDEP}]
30+
>=dev-python/websockets-12.0[${PYTHON_USEDEP}]"
31+
BDEPEND="
32+
test? (
33+
dev-python/pytest[${PYTHON_USEDEP}]
34+
)"
35+
36+
python_test() {
37+
py.test -v -v || die
38+
}
39+
40+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)