dev-python/aioairq: drop 0.3.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2025-02-20 09:03:41 +01:00
parent 4d71fb2815
commit 1d5626820e
3 changed files with 2 additions and 36 deletions

View File

@@ -606,12 +606,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 2363 Ebuilds in total, 2349 of them have in total 2391 (43 different) licenses assigned.
There are 2362 Ebuilds in total, 2348 of them have in total 2390 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1339|
|Apache-2.0|565|
|Apache-2.0|564|
|GPL-3|144|
|BSD|125|
|GPL-2|27|

View File

@@ -1,7 +1,5 @@
DIST aioairq-0.3.1.tar.gz 9625 BLAKE2B 8966b94135007cef66fd261377a4c790b69f9412f016de2b794f13de5f7ce1296ada82d70f2cf9db7172dcaf967fb6cfb952029501442ce613b1888fc14c78f2 SHA512 384c6cf61f86884b11ed02921e20fe5c7bfb4ab275b9996837832c3d0f3afb09481e4517419f82289bc12e469ecf183354b2f70d6340e1b2bdc2163e84e3c326
DIST aioairq-0.3.2.tar.gz 9153 BLAKE2B 94cd093294fdd52fc1bdcfc8aea846d40a2224854d99f09c4b5ef9474469fe32cca7135e2448d052d029d6727e153e611046c5e6c7ed5c15e7f3c8ab61c8c56a SHA512 676aa1968c19f4eb2b9e40fdcf42f35c7491732e050e6343b4a1a3f8b82126ec009fe4483a8eb6149c0f266dbb7e05d61b0b86ed965993d3279cdd7333427c5b
DIST aioairq-0.4.3.tar.gz 18049 BLAKE2B 2fc052624ef3bf54e2c710e050e75e3130117199135515d8adc7b2b5ae74c471abeafaf2acab7c3cf217be3e4caa1a5e77ee2da6ba1c2ce9884796d7b7885533 SHA512 61553f7c30b5c11016602fa63b8b1b04ac5445ed1016750c19aa41661aecac87564047d3c51c958c7fbafb674b07266c0a6fe90e04f6494971f273ba5bfcfc4e
EBUILD aioairq-0.3.1.ebuild 750 BLAKE2B 0c27bf8d73689f1a9017c6101de78d189e637f9b02b29e9453877393f8458b0601327aec04554988f2f813d51f691c578be100f9fcadf30779fa10322d36a06c SHA512 16ebb2a7348254b2d948490e70090293e545aca59a357a9a49ce35df7032c0c8079baaf6915145380195e4b0a5bf8813f4fdf12e717201bbe043e54046c67b66
EBUILD aioairq-0.3.2.ebuild 750 BLAKE2B 0c27bf8d73689f1a9017c6101de78d189e637f9b02b29e9453877393f8458b0601327aec04554988f2f813d51f691c578be100f9fcadf30779fa10322d36a06c SHA512 16ebb2a7348254b2d948490e70090293e545aca59a357a9a49ce35df7032c0c8079baaf6915145380195e4b0a5bf8813f4fdf12e717201bbe043e54046c67b66
EBUILD aioairq-0.4.3.ebuild 671 BLAKE2B cd00031d939fa1ccea8778d482272a9e4156b9364eaaf241d17ab1e6bdc6ede33f417f0f50e7e4f56254cbfd8f396e68971d5a02e6da2f998969cc6bf84dcdaa SHA512 6f015abbb1dd361b971c8b8440f6aa35a28bfcb2f8e34b14f51629d41da6fb6d7ab16c8c3ee4c77177218512262f2cc858554776f4f17395769d232895218ce3
MISC metadata.xml 518 BLAKE2B 693a3e7a75cd57299629ee188a1dd2e71d69d4eed2c1a5a621f35dba9df2624054b36329eb4433dbbc26addf8411e4ebffcd3f25c8669057bda066aa8954513e SHA512 f0a91b2a7537571e3aa0c9cfadbdc226487585d8e299b5bde6aa1534d3c26f7cd11c99c22ed5a8ad567a715418e18c61be4b05c53967084c0b1a5a12189ebcb3

View File

@@ -1,32 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous library to retrieve data from air-Q devices."
HOMEPAGE="https://github.com/CorantGmbH/aioairq https://pypi.org/project/aioairq/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/pycryptodome[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest