dev-python/kaiterra-async-client: drop 0.0.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 17:28:48 +01:00 committed by Andreas Billmeier
parent 059af7959f
commit 25f4289faa
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 36 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 1684 Ebuilds in total, 1673 of them have in total 1691 (42 different) licenses assigned.
There are 1683 Ebuilds in total, 1672 of them have in total 1690 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|978|
|MIT|977|
|Apache-2.0|352|
|GPL-3|108|
|BSD|92|

View File

@ -1,5 +1,3 @@
DIST kaiterra-async-client-0.0.2.tar.gz 8362 BLAKE2B 34339a832bbdb7a8cc8655ce34a1c998d05ec594a80fc421e3df0d78ca97880c8a49b8b7d6d2e2eece3666267bcf58d619c99e3f7ea6ec83f9fd7df51258ce63 SHA512 63e41c32b45f5b3abca2fa5eeb3c925d12bf48fbfb55159a190a9db1ffbaf5ed24c07b07c5875b5a97f3891f67d830a9237b84066d9174b04330a89fb725a9a0
DIST kaiterra-async-client-1.0.0.tar.gz 6125 BLAKE2B a50f0504a7f15021f0dc0447b0929834d029e8bb67cd73f2420094ed7f15937e9809e58dc8fd6e2ce9a16e1c80d434c289cf0a2d92756f3505dfc671c776ad24 SHA512 451a921bce21b60442aea5513679d2e776e843d4cbcbe74a2892466dfa231a3758996c32c30cce0f3f6730b84f5d876390c6ef73369fa2f67a56526c49e91d37
EBUILD kaiterra-async-client-0.0.2.ebuild 743 BLAKE2B 2cd947e8415914335b2cd659a8260b2a1c0cdbaaae7ade33908e7549b40d0321577ed8b1be794bd60a62f8980bc627ab593c96a9b6c6b785539b82b62bb791c4 SHA512 ab7410dd390bb35cffe3f91b924387ee6e2eb4a99e68270b6358302fcbb3ff6bfbc4f025fcfaf805d063fb0a04ae63774fc4739c79a0c6fe3453dfc2120840db
EBUILD kaiterra-async-client-1.0.0.ebuild 774 BLAKE2B 0a3a467997ae37d4dbd940f973607166bb8e155ea2068cf10c23984bb2f5392a9bef75a337bb0e27a3081617a696c249dd9580ee5750c98035244d4e56793f33 SHA512 6f728e69b0c9769df3b643f7090af2c29e7fc25e7ac72dd27a9d4fa97bba9c759729978d0ee435a6a7e8c3735e800dd4668c4a46ef7266307e23815ef6e9df6e
MISC metadata.xml 421 BLAKE2B bcc561786fc36cd8dcb941e8fc026f333bf21477bd9971fe3c3168eec2ad89f72c46398d7065c94aabf0352a596e29a30278a453d51d6169032d6ab5387f2837 SHA512 6ead375d817e9b3185c9d4416cdf1d8ed6beda4195c41672e0c24099dca60c398a1dbe4eea1db9ec7208c337e61138acce907e1389e705bfe4efef06a8be5ab6

View File

@ -1,32 +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
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi
DESCRIPTION="Kaiterra API Async Client"
HOMEPAGE="https://github.com/Michsior14/python-kaiterra-async-client https://pypi.org/project/kaiterra-async-client/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/aiohttp-3.6.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/aioresponses[${PYTHON_USEDEP}]
dev-python/aiounittest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}