41 lines
1019 B
Bash
41 lines
1019 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYPI_NO_NORMALIZE=1
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="A youtube-dl fork with additional features and patches"
|
|
HOMEPAGE="https://github.com/yt-dlp/yt-dlp https://pypi.org/project/yt-dlp/"
|
|
|
|
LICENSE="Unlicense"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm arm64 x86"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
DOCS="README.md"
|
|
|
|
RDEPEND="media-libs/mutagen[${PYTHON_USEDEP}]
|
|
dev-python/pycryptodomex[${PYTHON_USEDEP}]
|
|
dev-python/websockets[${PYTHON_USEDEP}]
|
|
dev-python/brotlipy[${PYTHON_USEDEP}]
|
|
dev-python/brotlicffi[${PYTHON_USEDEP}]
|
|
dev-python/certifi[${PYTHON_USEDEP}]
|
|
>=dev-python/requests-2.31.0[${PYTHON_USEDEP}]
|
|
>=dev-python/urllib3-1.26.17[${PYTHON_USEDEP}]
|
|
>=dev-python/websockets-12.0[${PYTHON_USEDEP}]"
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/pytest[${PYTHON_USEDEP}]
|
|
)"
|
|
|
|
python_test() {
|
|
py.test -v -v || die
|
|
}
|
|
|
|
distutils_enable_tests pytest
|