dev-python/gridnet: drop 4.2.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 17:42:12 +02:00
parent dedf87e547
commit 73c5686c5e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 6 additions and 40 deletions

View File

@ -617,12 +617,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 1953 Ebuilds in total, 1942 of them have in total 1962 (42 different) licenses assigned.
There are 1951 Ebuilds in total, 1940 of them have in total 1960 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1110|
|Apache-2.0|437|
|MIT|1109|
|Apache-2.0|436|
|GPL-3|128|
|BSD|110|
|LGPL-3|26|

View File

@ -1,5 +1,3 @@
DIST gridnet-4.2.0.tar.gz 8311 BLAKE2B 9ad287fbc622596f6bd133b777e2d8f2b16a5a3f40008d92e0618146a6463b97ad05608a756aa08754b3da97a16b6b8363805b097672dbbd62aed7639642d2fd SHA512 ca361711e3f6d1491b0f0a1c506de91a513df426900ddf1cbb1109e2f52a891416223bd856b59f7a9e4781da9b2483038cca5002795804b28eb95f74133d1f62
DIST gridnet-5.0.0.tar.gz 7126 BLAKE2B 981bef9dc68f960316b1a4b192d53f081f0d3aa716e60d02c485ad741a911073630ba169d9b4e76375c3e78242a8fec06df466c7f99f21f21edfda2fb6d32876 SHA512 f0d0fc5c0e30175a8c723769e7b085c5517154d581a559e3cf8b32d047bd272358262ff307493d32e065b4f0dc58bdee23960d9c2dae7b942a58764e425c5f4e
EBUILD gridnet-4.2.0.ebuild 704 BLAKE2B b12dd1aaba74e7d746225989fde53b43e7c4d669fac63df791732f39284e41c8715793d754c97178e1850084cb88fba6fbfce0517663fe9f4b3774d30b9dc558 SHA512 abcf61ced6fe5d2167d0e6a386a050934f8bbbf46235b8ce20084b0b681b5fb5468ccc3097ee60a906f6465e663a882e4311593200d8e4f05b91789ac48430b6
EBUILD gridnet-5.0.0.ebuild 825 BLAKE2B 5345c4e420a368ffdd334120d60f3f393bc48944d9b6b707f14e4f4db9bd8ff2368201ae0f21825ac5dbbf95fc9e915f34a3bbbde76ed022cd71a5e5f913e993 SHA512 ab7df4b3117d562634ea9b0046b260eb2c97ceca9efbd08c5152ce60597366aee0813f3601d62a184458bee3a1e22d87db8f3172dd786ce57ae1886a7cfaa1c2
EBUILD gridnet-5.0.0.ebuild 825 BLAKE2B 4679520e1f338b4775a01c82d4cd2939054f505c719ab5dad1e137b1c324322654998ca7025aec11edf380afddc44f25c6a59827380c29833e14c16326cc1fa8 SHA512 b1b89eda6365062686c03526cd6c53ee2c09ba768607fc07c944154eb84c62edfe77a9b33b984448e868d23371db0d6cf1ccc5bd19e76dac9462d999d7975a9e
MISC metadata.xml 529 BLAKE2B 7abf3c24f3d80052095f3f53db3a3322f20ca712cc603f2fe3bf18c171eb91d3c755a272f050bfff581a3e2b550c049c49e7a46fb4a16815406cf4380a01c20f SHA512 46b133d2310039b9c2eb11c81cd088696c69075b946e3ddd99d0800e561e0386357d80abc3f7e1b828c4a4d81e5a0c5bc9fc2e37d9c7aaeba17c948e444ab20d

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=poetry
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous Python client for a NET2GRID devices"
HOMEPAGE="https://github.com/klaasnicolaas/python-gridnet https://pypi.org/project/gridnet/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
>=dev-python/yarl-1.6.0[${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=poetry
inherit distutils-r1 pypi