dev-python/radios: add 0.2.0

Closes: #2480
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-10 13:49:09 +01:00 committed by Andreas Billmeier
parent 0dd025fae8
commit d8dac74da6
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 46 additions and 2 deletions

View File

@ -612,11 +612,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1713 Ebuilds in total, 1702 of them have in total 1722 (43 different) licenses assigned.
There are 1714 Ebuilds in total, 1703 of them have in total 1723 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|998|
|MIT|999|
|Apache-2.0|363|
|GPL-3|98|
|BSD|96|

View File

@ -1,3 +1,5 @@
DIST radios-0.1.1.tar.gz 12772 BLAKE2B 3074626d67d375e6940f0a2b0b18862722d59f27c1e7f11863870344a0320c4c9fce9c8191ecb36c4833e3bace7ff7b83587f88b7d0b0fbeb12a9544caad501d SHA512 23b9e279b256aed22347da2229db861dc7c5ef57c228c6e1f5cbafe74107ee35e19d23fffa7d272933e92f3f762107cd7a3733df65509a5597b0d302e8738a1a
DIST radios-0.2.0.tar.gz 12264 BLAKE2B 6dc1a095cc221afe68f3daf27d7ea6a0b7b99becc7db9d73899333004d73e20eaef81e522ccb1f7c15dffc8d56e259517b8cef22e72eaead67d95dfdc296c221 SHA512 127d0c34e504bd02662fe0aa31f16936bc9eed5876571ae044f3ebcb6623caf717e5bb427fa7344100d1e5ea60932db8ebe12d2dee821f32492da3f137e9c74d
EBUILD radios-0.1.1.ebuild 1116 BLAKE2B b55f88a4eb31fc4ad3a3754340769e0810ee124bf22d72b4087c080f73287d498efe4c76e892989438aa57b6872c1e167c3e343b20c306c829bbcd1b4b45b49f SHA512 3bd99c354e818dd9499f0d4ee414dc57b39efeed5b9c89e45181023a1dda23beb8b774f3781027d03befaeb05f4a1d829162c5db56f50d0f344e2b1ee7a62b2e
EBUILD radios-0.2.0.ebuild 1162 BLAKE2B 5185def4a71e91656b6962c2237e9af5fb839b3dc3289328f8c59018cebb4366d30da6a1f6b24ab02173a28e224fa32bd788f9b4b8d189d7237bef6698fa0ae5 SHA512 d4cf6173c12e0d8eede52f75888e577e15ec1943167e1688bc2b5f99692b32c774bd2bbc249f0a665eea9d9a31d46dc0c79a07ab5166ec4c22ba9443cc6f1c3c
MISC metadata.xml 515 BLAKE2B 6cbfd4a5d31e5d28cd4a86dc69de838f49a08601102960642afd662e61c217b0ffad5df56e9073d968d3fc4c5f88f68100036098aa5b9c12aea5208ee50fe93e SHA512 9c37386123889ffed86a507ee246e2faa21148e7041268ee7cbff3d91bf46ba639b38094d9931943043ee13815e704236604bde2cf322a139a7563f351229bad

View File

@ -0,0 +1,42 @@
# 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=poetry
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous Python client for the Radio Browser API"
HOMEPAGE="https://github.com/frenck/python-radios https://pypi.org/project/radios/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiodns-3.0[${PYTHON_USEDEP}]
>=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
>=dev-python/awesomeversion-21.10.1[${PYTHON_USEDEP}]
>=dev-python/backoff-1.9.0[${PYTHON_USEDEP}]
>=dev-python/cachetools-4.0.0[${PYTHON_USEDEP}]
>=dev-python/mashumaro-3.10[${PYTHON_USEDEP}]
>=dev-python/orjson-3.9.8[${PYTHON_USEDEP}]
>=dev-python/yarl-1.6.0[${PYTHON_USEDEP}]
>=dev-python/pycountry-23.0.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/aresponses[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest