dev-python/aioguardian: drop 2022.3.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 17:00:40 +01:00 committed by Andreas Billmeier
parent 8b8a858d16
commit 87a956f121
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 1751 Ebuilds in total, 1740 of them have in total 1764 (43 different) licenses assigned.
There are 1750 Ebuilds in total, 1739 of them have in total 1763 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1021|
|MIT|1020|
|Apache-2.0|368|
|GPL-3|110|
|BSD|98|

View File

@ -1,5 +1,3 @@
DIST aioguardian-2022.3.2.tar.gz 9915 BLAKE2B ce45b0348972d7f0150ba0826048fc731c1992748e1ea11a4aa842bf89ab8c8bb91cc8118057c2b8acd345dfe4f83c90e24ee4a88710dffaf3ecf9621e15a1de SHA512 08b29e25d6fbff8c1a9b8ef35a41f808598b62defe31b9a744b4f0bbf7db87145542da37ee4bb663aa34146dfdf44d0e63378ca161a8d10720e9ca845837b5ec
DIST aioguardian-2022.7.0.tar.gz 10328 BLAKE2B c6cd095a7cd1b4af3e655212539aaf2ce6c2836a87192b9555439a6fa4af4a917563ac1469c88f64ca7cefb9e981e8255904c030303bc5e2072b1f0383cd4bff SHA512 17321a0535faf90e4805424e026f9bf4761827d1472dd698f4c223fb0b086c4c2662d63e8a34658cdd255bbbdd7fd4e058a8a5df37b1780c6efa5657ac05c30e
EBUILD aioguardian-2022.3.2.ebuild 828 BLAKE2B cd82847c18346860fa5b148d1fee7ba2d4f7c13ce01412481cab9cf864d4ef1afd0606bc8bf3089a77aa43ff305e6c9a96ba4ae01844daf1e80a99075d74deae SHA512 d56ba2f34cbd99fb025a2c86215f97ba5e3435276dbc18ff6abef803a541bf5b382beaba1544908005fc7c38134f50a9d7e28c12ba72ad53f408a47ea00bb632
EBUILD aioguardian-2022.7.0.ebuild 855 BLAKE2B 300f769d38a02682e123d99a3d5974335579c9ccd41cd7fb58a7d4c300578fd96be397f82543c745eccce246fa8bea348b2448a1f51cb4a8353ef408807c3c0c SHA512 b85bb6e72dad88936b54662adec6abab88ee48daef30a396b0cd4eb9e02dceefbb0ff2a932c066adc3cad69da966c2675bfebe2c4e2801e79b5a8b2e1cd00ab5
MISC metadata.xml 514 BLAKE2B 3d950535717dd32a8226e23127001b0f13e0ca375065306da6de017feadc56dd3432f1a8b85028ff8f9f00953fa53ec5ad03afdf018abcc8b1368e524d82ceff SHA512 9f33c73ab8e467410ec431502b789851674fe3989e22a040f849cb05285285c7d8bd0aad591f5d0bfaa484ce52ebbcf1067cf58e83a79d848c8f526e4ffa5680

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
inherit distutils-r1 pypi
DESCRIPTION="A Python3 library for Elexa Guardian water valves and sensors"
HOMEPAGE="https://github.com/bachya/aioguardian https://pypi.org/project/aioguardian/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.8.0[${PYTHON_USEDEP}]
>=dev-python/asyncio-dgram-2.0.0[${PYTHON_USEDEP}]
>=dev-python/voluptuous-0.11.7[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/asynctest[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}