dev-python/aiolifx: drop 0.8.10

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-09 19:06:47 +02:00
parent d0dff74c16
commit 111b6b61db
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 5 additions and 40 deletions

View File

@ -617,11 +617,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 2002 Ebuilds in total, 1991 of them have in total 2010 (42 different) licenses assigned.
There are 2001 Ebuilds in total, 1990 of them have in total 2009 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1133|
|MIT|1132|
|Apache-2.0|456|
|GPL-3|130|
|BSD|113|

View File

@ -1,5 +1,3 @@
DIST aiolifx-0.8.10.tar.gz 35087 BLAKE2B b27bc86d092f64addc3257d53022c8d413f1091b83d009bf7e3ced6c7cc1b4aca5537a4915677eccc6754867f3216240d8bf3f2832e55d626107fe4a24cb383c SHA512 f4a4c049efca466f97fc29fc017be2264f91cc0df3ed15b42b1dcc00562cb9a513ae9c2678d77c171ee29910e076c1a3e5236e6fb3e7ed234d1705bc7cff97d4
DIST aiolifx-1.0.0.tar.gz 39567 BLAKE2B 0bbc416769c07916313054009158240202148698289adab0d17c7e51bb4810cfb74fb0588d7038ac442b0a85d6c28e4964b8ad6ff94dd6733bcc14f2371d1054 SHA512 941967ba9f0f4c0ebadf5ba56605dea562ce5c28c94cb803baa8e8ad8931a09515a838fb89f9531b3bb2d24141670003ebb37bf43326f466fb30f38b7ab99c85
EBUILD aiolifx-0.8.10.ebuild 747 BLAKE2B bb3c396350e6022fb7c7fbb3b6bd18129d5fc8e6539762ec4358324670f206369a97f8ad6e20167ffc93aba86685a3d95c89736fe7645fa9bb862c41e4d8ee11 SHA512 240848d19ea70136d14e099646debba67405deff48deb41a3172df5c7ba0a2c716eafc4b6d40dd6b6343358463b7883e982746af01a8cec88873c0d02ac8c986
EBUILD aiolifx-1.0.0.ebuild 860 BLAKE2B fcb43ed33d2c50d2e76a0f99774d97c367e6c3c9636464741d8ac45c13d04b389dad8de237480d4ccf213f1e74de61c34ab0bca1dcf7044050f4eb432a4cf601 SHA512 4cba3cc46b9509f18acaed301fa0bef034a7bfb8e4940382b1cecca2129c44b75fa4ec87c7354fb565a49ad0beb5287d7b8b2b019cbf6411941badadc5fc6059
EBUILD aiolifx-1.0.0.ebuild 860 BLAKE2B e4ddfe43022d4002ac03a3b67a205d18730bfd85abc93408d2c80788c2996271db851ecba704fd3dab703d647f1c73104ec64a56e5827cf8e38d965453670ace SHA512 95555d7329a79a35cd2fc3a63421fed14325655636a3e17290e4bd62a67682878055deb96294b436dec4fec422cce61a97ce39c365c70f549cf74b4f0afa6b19
MISC metadata.xml 512 BLAKE2B 8e3b5fe76995c2cd9b16ca04007fbe81d3f109547789aef25114e2a5118a9836891279a4a90be401e076748167b239bfd4144ce6ac8e97279b692ea67ad47a5f SHA512 1cf59ecf3eb7636121f7e6e44952a27fadc8425047289b4f89608c372ef3d259201cbf56ad6212582596b6d699f86bb32ab466007f63d7668683905103cd27bf

View File

@ -1,33 +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="API for local communication with LIFX devices over a LAN with asyncio."
HOMEPAGE="https://github.com/frawau/aiolifx https://pypi.org/project/aiolifx/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/async-timeout[${PYTHON_USEDEP}]
dev-python/bitstring[${PYTHON_USEDEP}]
dev-python/ifaddr[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

View File

@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi