dev-python/aiopyarr: rework, remove olds

This commit is contained in:
Andreas Billmeier 2022-10-15 12:47:47 +02:00 committed by Andreas Billmeier
parent baf8884176
commit 5774062dbb
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 37 deletions

View File

@ -538,11 +538,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 1722 Ebuilds in total, 1715 of them have in total 1727 (35 different) licenses assigned.
There are 1721 Ebuilds in total, 1714 of them have in total 1726 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1026|
|MIT|1025|
|Apache-2.0|334|
|GPL-3|104|
|BSD|98|

View File

@ -1,7 +1,5 @@
DIST aiopyarr-22.6.0.tar.gz 57106 BLAKE2B 6268de5ae029d7c37aadce9ba7945be39ecd7eaf2e9009379df9f8eb32a2531503342c86fc7353766a748449e49d063546ea5d8e87920d7f21d33141884dee5f SHA512 556e887db6c00a4a8a13608da63c91cedaeff986b3f026b48a17630a25e5ec52bd8c9994984b14b400092d19c945cff8a71c618445ea2d120cf2ee6d1e68bef5
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.6.0.ebuild 756 BLAKE2B d0c037a766fc8eecb6d2921ae0870ac6b51446e12630bce889325309533b085581c77346a634e07e76a304df0cc63ee10816c58cce476765be670a8934f27c18 SHA512 39f0de19e6ea082b7c61d0afb0cee90f5e2dc4bb7acbbb6c83cb32c48f3a7b0e789bdd0181ff915185bd3aa0e899bbf3d8ba181eec0f35494d520fe4e06b67e2
EBUILD aiopyarr-22.7.0.ebuild 787 BLAKE2B 90a903239090b36c22467fb1d43cb07c5ff356a18422c611110e352669e3c4b6cf76bd8d6ffdc8c3cba835934fde4bacf48ba06aa0d72af3fa983d51d425002c SHA512 09e67a351fdd657bd3082b161894e3746756ffbc811637e5f7cdae6275d98a58644088f0b9c1f59aff7f4fd8be226009a55b9855b3d1e1aedaefd1327874a0c9
EBUILD aiopyarr-22.9.0.ebuild 787 BLAKE2B 90a903239090b36c22467fb1d43cb07c5ff356a18422c611110e352669e3c4b6cf76bd8d6ffdc8c3cba835934fde4bacf48ba06aa0d72af3fa983d51d425002c SHA512 09e67a351fdd657bd3082b161894e3746756ffbc811637e5f7cdae6275d98a58644088f0b9c1f59aff7f4fd8be226009a55b9855b3d1e1aedaefd1327874a0c9
MISC metadata.xml 454 BLAKE2B d85065368a9381c32ef9e5ff9a2d599dab50d60f509190f06a78a794d59ad99743ee9d2a6b6371eab6cea803a4c489096f041eacbd95f0ef6e96cf4e39ab149c SHA512 9c7a291cfd2d68ff06c7c6f5bd10fc2385affc39d4ea0c111032cef79e81e5afd90873abcc57da3553af2f4ba0f173d73e0480be5cf5ab5eee7ff10245d8d722

View File

@ -1,33 +0,0 @@
# 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/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}