dev-python/aiopyarr: add 22.10.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2022-10-30 16:26:55 +01:00 committed by Andreas Billmeier
parent acf84b0ac0
commit 6ed471f683
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 2 deletions

View File

@ -548,11 +548,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 1472 Ebuilds in total, 1465 of them have in total 1474 (34 different) licenses assigned.
There are 1473 Ebuilds in total, 1466 of them have in total 1475 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|856|
|MIT|857|
|Apache-2.0|298|
|GPL-3|93|
|BSD|87|

View File

@ -1,5 +1,7 @@
DIST aiopyarr-22.10.0.tar.gz 57254 BLAKE2B 7653b26e98929c835280b8461a9777284d35ea8f43e046cbd4da045d22f9bf16993dd30e8d7714a012749ce92c3f3b8e238e31cb29951ad3635bed34ce214d1a SHA512 75065804e1afcecdca9a460b703197bd67dafe426f51e315a5173bb9e2f8ed9d649f32bccea56f138803b908035eefeb83f764170dc228734c3c11613aa99ec9
DIST aiopyarr-22.7.0.tar.gz 57269 BLAKE2B 6125c0efd3e627bae4126a70932b7b0027368ae335547d49b659b321e681d0d47b1748711d08798428da988b58b68ee58f720486eec99f2909f8273219ad73e9 SHA512 a4b15c600861c84837ebc9bb8dbe6b5bdb0c1c1a51d7a2aff43b497c08d0c668f2ed2874a504086bdc0cf199ea5e1b1dbef4a7b2f203fbe276c259c43f3ef6af
DIST aiopyarr-22.9.0.tar.gz 57266 BLAKE2B 5340e36079faa57921bf2c54dfd23e77cd72eef0c13b3d588ab265c7d3b2b689e8692779ec03ffe2dd46abe4b5803add5986ad499de691181780b057426ba33d SHA512 4bccc5253484a374527bd7218e84964ddbea76f912744065f3474e065a479e4924d934bc27ec7403a851940649aa9bcb0f2f7a563652c4ef3d7c235758677d63
EBUILD aiopyarr-22.10.0.ebuild 723 BLAKE2B 0cf5489074cd39913a3eb42d40ff7d732c4e2f5fc52bdf254552fe69cbb7753f279cfd7fd883ecea07cbc38b1e390836eb9d8495632040adaa8fe7eb353737b8 SHA512 1dc250cb37e10b079ca474075a37ce05b7177ae68a3bca454db64e108c7abf09ab41bcd88c9086e11f87615473a5bf145d5d5848b47f9da5f2373b8f2bb0a13d
EBUILD aiopyarr-22.7.0.ebuild 723 BLAKE2B 0cf5489074cd39913a3eb42d40ff7d732c4e2f5fc52bdf254552fe69cbb7753f279cfd7fd883ecea07cbc38b1e390836eb9d8495632040adaa8fe7eb353737b8 SHA512 1dc250cb37e10b079ca474075a37ce05b7177ae68a3bca454db64e108c7abf09ab41bcd88c9086e11f87615473a5bf145d5d5848b47f9da5f2373b8f2bb0a13d
EBUILD aiopyarr-22.9.0.ebuild 723 BLAKE2B 0cf5489074cd39913a3eb42d40ff7d732c4e2f5fc52bdf254552fe69cbb7753f279cfd7fd883ecea07cbc38b1e390836eb9d8495632040adaa8fe7eb353737b8 SHA512 1dc250cb37e10b079ca474075a37ce05b7177ae68a3bca454db64e108c7abf09ab41bcd88c9086e11f87615473a5bf145d5d5848b47f9da5f2373b8f2bb0a13d
MISC metadata.xml 454 BLAKE2B d85065368a9381c32ef9e5ff9a2d599dab50d60f509190f06a78a794d59ad99743ee9d2a6b6371eab6cea803a4c489096f041eacbd95f0ef6e96cf4e39ab149c SHA512 9c7a291cfd2d68ff06c7c6f5bd10fc2385affc39d4ea0c111032cef79e81e5afd90873abcc57da3553af2f4ba0f173d73e0480be5cf5ab5eee7ff10245d8d722

View File

@ -0,0 +1,33 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="An Asynchronous Lidarr, Radarr, Readarr, Sonarr APIs for Python."
HOMEPAGE="https://github.com/tkdrob/aiopyarr https://pypi.org/project/aiopyarr/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.6.1[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest