net-misc/streamlink: add 8.2.1

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2026-04-03 23:33:15 +01:00
parent 78f85dcd1d
commit 068a29fe88
2 changed files with 79 additions and 0 deletions

View File

@@ -1,2 +1,4 @@
DIST streamlink-8.1.2.tar.gz 823590 BLAKE2B 23c39d0e532f17e33cd8367a61f8cf39950fbdb00dc820954c34a93474ef08c1347ab53ac459eff0043907a5886e1b643dd52a847f2968c1aa2d061ba3e37a26 SHA512 ce57617ba1de2fbb62e67abb406ae2550f9fd92ed20422480d8b0f8deb8fc7a9af1498de03d299259b983d4467fb323c4a600e16aed9d44b7b81581d9c3f3b55
DIST streamlink-8.1.2.tar.gz.asc 228 BLAKE2B c1a196fea2ada8bd04367da3a3ab8bee8af64f86a7e1f67edcb497aa1b77dfd1214a39d646b43eddeeb8676fb9d6e15752e4f1d6f67f8b9c3ed545e88e159ad8 SHA512 cde4fdf12778bd62b19e10f22d406467a7741818a56abc03ee8be2654a2a9ddfdabc7b6bbe3537963821f52cda726689ba87da9f48e39d9aba6f7d43533bb58a
DIST streamlink-8.2.1.tar.gz 832283 BLAKE2B 322727c3d5a64c9ab73392236b469bfb10d21393a039df25f55c4a7bc01f487d1679922dbe078d4c566147718b3aae9b83522847f61e699c4d95f40ab15825df SHA512 83cd644138b9d7968dc2b318c91dd041488065dbd748c9f25d98fa25d57b297c3aa4a7efbc658a9a808be566a52ac5ea8e9f33c09879193456acca49d493d1a8
DIST streamlink-8.2.1.tar.gz.asc 228 BLAKE2B ad776fbcf92fa776c7629cfa48352adb10ebd2a263a2ca50755498eda27475e04edf990bcb1e470103312b6ca056a69a89de20861e7877ac1b3f700b30c947aa SHA512 a117c222e29be2c906e590bbc83b56ce5c91714f37f57c302fa7ed251de61659016cf8842d0a15deeb6d73e6060a74fc6928347245751f10eccccba5866832f8

View File

@@ -0,0 +1,77 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_SINGLE_IMPL=1
# >= 6.2.1 uses a bunch of setuptools hooks instead of vanilla setuptools
# https://github.com/streamlink/streamlink/commit/194d9bc193f5285bc1ba33af5fd89209a96ad3a7
DISTUTILS_USE_PEP517=standalone
PYTHON_COMPAT=( python3_{11..14} )
PYTHON_REQ_USE='xml(+),threads(+)'
inherit distutils-r1
DESCRIPTION="CLI for extracting streams from websites to a video player of your choice"
HOMEPAGE="https://streamlink.github.io/"
if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/streamlink/${PN}.git"
inherit git-r3
BDEPEND+="
$(python_gen_cond_dep '
>=dev-python/versioningit-2.0.0[${PYTHON_USEDEP}]
')
"
else
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/streamlink.asc
inherit verify-sig
SRC_URI="
https://github.com/streamlink/${PN}/releases/download/${PV}/${P}.tar.gz
verify-sig? ( https://github.com/streamlink/${PN}/releases/download/${PV}/${P}.tar.gz.asc )
"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
BDEPEND+=" verify-sig? ( sec-keys/openpgp-keys-streamlink )"
fi
LICENSE="BSD-2 Apache-2.0"
SLOT="0"
# See https://github.com/streamlink/streamlink/commit/9d8156dd794ee0919297cd90d85bcc11b8a28358 for chardet/charset-normalizer dep
RDEPEND="
media-video/ffmpeg
$(python_gen_cond_dep '
dev-python/certifi[${PYTHON_USEDEP}]
|| (
dev-python/chardet[${PYTHON_USEDEP}]
dev-python/charset-normalizer[${PYTHON_USEDEP}]
)
>=dev-python/requests-2.30.0[${PYTHON_USEDEP}]
dev-python/isodate[${PYTHON_USEDEP}]
>=dev-python/lxml-4.6.4[${PYTHON_USEDEP}]
>=dev-python/websocket-client-1.2.1[${PYTHON_USEDEP}]
dev-python/pycountry[${PYTHON_USEDEP}]
>=dev-python/pycryptodome-3.4.3[${PYTHON_USEDEP}]
>dev-python/pysocks-1.5.7-r9999[${PYTHON_USEDEP}]
>=dev-python/trio-0.22.0[${PYTHON_USEDEP}]
>=dev-python/trio-websocket-0.9.0[${PYTHON_USEDEP}]
>=dev-python/urllib3-2.0.0[${PYTHON_USEDEP}]
')
"
BDEPEND+="
$(python_gen_cond_dep '
>=dev-python/setuptools-77[${PYTHON_USEDEP}]
test? (
>=dev-python/freezegun-1.5.0[${PYTHON_USEDEP}]
dev-python/pytest-trio[${PYTHON_USEDEP}]
dev-python/requests-mock[${PYTHON_USEDEP}]
)
')
"
EPYTEST_PLUGINS=( pytest-trio freezegun requests-mock )
distutils_enable_tests pytest