dev-python/go2rtc-client: 0.1.0: unpin webrtc-models~=0.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2025-02-20 00:06:46 +01:00
parent c0c6ac9d69
commit ef1e456d0a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 5 additions and 4 deletions

View File

@ -654,9 +654,9 @@ There are 2362 Ebuilds in total, 2348 of them have in total 2390 (43 different)
|GPL-2+|1|
|GPL-2-with-linking-exception|1|
(Last counted: 19/02/2025)
(Last counted: 20/02/2025)
I did my best to keep these clean. If a valid license was published on PyPI, it has been automatically merged. Otherwise I took it from GitHub or alternatively from comments/files in the source. Sometimes these differed and have been not unique. All license strings are adjusted to the list in `/usr/portage/gentoo/licenses/`. Some packages do not have any license published. In this case, Authors have been asked for clarification, some did not respond. Following the [official Gentoo Guide](https://devmanual.gentoo.org/general-concepts/licenses/index.html), these then were added with an `all-rights-reserved` license and `RESTRICT="mirror"` was set. Find the appropriate licenses referenced in the Ebuild files and in the corresponding homepages or sources.
A big thanks goes to Iris for reviewing this README.
Last updated: 19/02/2025
Last updated: 20/02/2025

View File

@ -1,5 +1,5 @@
DIST go2rtc_client-0.0.1b3.tar.gz 12938 BLAKE2B 32e22dfd75f296c23a1980ce942c57008a47ac43d8980f4bb718155224ec5ea01735c275d24cbf898764fc8636026824b5ca5115c9563bc96cba46ecb81ec71c SHA512 6c23edf49ee45e1b420c1a2406f8873663c6228b0f718928e1cf9a9cad7485d891d8675067e15e6ba0ddfcd71c29aa8ccfe03bc0452334d9994a0abad54d2489
DIST go2rtc_client-0.1.0.tar.gz 13010 BLAKE2B ba7668878bdf8d839b1f4455214da130bfeb02a8747f18e70853a526b8c778218f0091a4efc28c56f1a137ecdfdef8f36572eb3d8a976b2a88206deee23b0715 SHA512 cb482c2144fee91176d19e6ba203e1838c2ce9d0a214fdc2181e3cd57b2e0d2ce1208a6e0c9b524c114128b76434c7fe140ff1e7ba9ce0a7b0d274a8da05d10a
EBUILD go2rtc-client-0.0.1_beta3.ebuild 1231 BLAKE2B 99c66f229f5e535fb361519bc940d0006a4d1a70afc740f40063d773eed3f00fcf62e22f737bc8c9ee795586ea3a21002ae52c5812794fca2fec474187d15baa SHA512 967e3da937aee27dd4af6daf99405d241930d7aeda3cb31783cd67f6be0d9105ea5d23b95cfb3912326b014e4cc488bef288735200856cccd9fdc3a7f66a4228
EBUILD go2rtc-client-0.1.0.ebuild 1231 BLAKE2B 99c66f229f5e535fb361519bc940d0006a4d1a70afc740f40063d773eed3f00fcf62e22f737bc8c9ee795586ea3a21002ae52c5812794fca2fec474187d15baa SHA512 967e3da937aee27dd4af6daf99405d241930d7aeda3cb31783cd67f6be0d9105ea5d23b95cfb3912326b014e4cc488bef288735200856cccd9fdc3a7f66a4228
EBUILD go2rtc-client-0.1.0-r1.ebuild 1293 BLAKE2B 301162e778ff0bd0906b831a70f5168928750448aba6c323336e65cba436aa030a1bbc2efac63c78ccc56c43ec2013181d01decfa5b50f28084eb62ed077bc68 SHA512 2b5e2080c19ff5786d7dbc158dadde4ab762a239d55827c5d8531ee3c17988f014362b55175036de366c17777134fda0423c5330df8b47e3f4e0d3a6193f7101
MISC metadata.xml 536 BLAKE2B 8a1db35acb992cc117d2fa792e87329514f885012aec0f8969e8d9e3dd3e53d41bce139f2c5e763b594d65e0e9015ba74583942401f7c52b0a7bdbfd3e40b03e SHA512 25626b7d270c86878ab98bdb13fb40521e689a787d6d6f5ab7b4f46da578e8ea4cc9b5a3046d3d3efe980aa5f638038568da70a080168063fbdbc40ca38e5547

View File

@ -23,7 +23,7 @@ RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/awesomeversion[${PYTHON_USEDEP}]
dev-python/mashumaro[${PYTHON_USEDEP}]
dev-python/orjson[${PYTHON_USEDEP}]
~dev-python/webrtc-models-0.1.0[${PYTHON_USEDEP}]"
dev-python/webrtc-models[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/aioresponses[${PYTHON_USEDEP}]
@ -37,6 +37,7 @@ src_prepare() {
sed 's/awesomeversion~=24.6/awesomeversion/g' -i pyproject.toml || die
sed 's/mashumaro~=3.13/mashumaro/g' -i pyproject.toml || die
sed 's/orjson~=3.10/orjson/g' -i pyproject.toml || die
sed 's/webrtc-models~=0.1/webrtc-models/g' -i pyproject.toml || die
eapply_user
}