dev-python/aiokafka: drop 0.6.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 17:01:47 +01:00 committed by Andreas Billmeier
parent cdca1f6120
commit 872f9bf747
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 29 deletions

View File

@ -612,12 +612,12 @@ 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 1747 Ebuilds in total, 1736 of them have in total 1760 (43 different) licenses assigned.
There are 1746 Ebuilds in total, 1735 of them have in total 1759 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1020|
|Apache-2.0|365|
|Apache-2.0|364|
|GPL-3|110|
|BSD|98|
|LGPL-3|24|

View File

@ -1,5 +1,3 @@
DIST aiokafka-0.6.0.tar.gz 359608 BLAKE2B acb7c7d7e1407573f1694980a4192376b91d16546133eeb3a7cb5dfe6b11930306310bad734139a318698cc24be55163cb2e319c980078f9c065b515f60554c9 SHA512 cb3ee368d2c153a80615df0f2ed2b04534135b73eabdb190c3b03c35df97be7c0d2a63f0e6b15b0c1a0d5442c23040448f084a495acf4421d2bd5802b871c98f
DIST aiokafka-0.7.2.tar.gz 366633 BLAKE2B 81f5b399ddad15b50d0bfd8864fe9c6686ba145044b624bab2aade8352b042c21b5efedc8bdef5e690fc55f73fdcf8022cedabf950edc2a74f6be2ffd8646a5c SHA512 81f7da0cc4187f3353bbb5c42d1466206914b14a1879c55186eeab49f1eb01f8b60dcf5a10150b4f3505c4c5d2a7d1ec0d680609d09969501c6067db93b9c6fe
EBUILD aiokafka-0.6.0.ebuild 572 BLAKE2B 58e9817ba8f08936ff3f9f4de3fa6ec3450ca88c4632da412f07b509981a92315ae1ab7f4673cf2af6d4f0159621aeb5568cfd398f6d00636df8f5a5d87855c0 SHA512 97e8bbf608fa661d19837c4a4578551931615bf5b31b7cb2e808b5a2c6527d822a2bd274ca5c3132a2dec984a9d0007fd5083538303fa2ec2bd5b47f3da15ca3
EBUILD aiokafka-0.7.2.ebuild 707 BLAKE2B c01298066d952c7e3c2ba4c7d3626f5e83933a639e1129a367b9984d3b4965928f26e2a67c55a8c5061c08675838a1e4f61522ec7826b6a170a12f2070f38ac7 SHA512 c6cb12305aacf350075776a74117b9fd41b66f0419e0433547d75a3d4a71901fe3e36f5d798f8b8f2d9b032424bdd09e53fe1f366e0eaed83343e476f462eb50
MISC metadata.xml 518 BLAKE2B d5b41bfd9d31d744563da936342d1b5c48884a4265dfaac41c77abcd4d04b7f22f5a1e068cf81420c18fc7e455f8f8ea2c1f5e7aa41ce61f281b4a58f118217d SHA512 7b0006e60ac4bcf463056ddf9dbdf6b40a347b7694142fc04b1a6e13bf262211a875d4dbdb768d41153755c94115e1bf6e4b253e61aa3eb52b9c71b0d0bfd9e4

View File

@ -1,25 +0,0 @@
# 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=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Kafka integration with asyncio."
HOMEPAGE="https://github.com/aio-libs/aiokafka https://aiokafka.readthedocs.org https://pypi.org/project/aiokafka/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}