dev-python/pynetgear: drop 0.10.9

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 17:54:18 +01:00 committed by Andreas Billmeier
parent cff6172dae
commit dad507b74f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 41 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 1633 Ebuilds in total, 1622 of them have in total 1640 (42 different) licenses assigned.
There are 1632 Ebuilds in total, 1621 of them have in total 1639 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|945|
|MIT|944|
|Apache-2.0|343|
|GPL-3|105|
|BSD|88|

View File

@ -1,5 +1,3 @@
DIST pynetgear-0.10.10.gh.tar.gz 18384 BLAKE2B 0f21030ae29f6717cf5626fb04aacd4e801707f4a58ed8d7085269f121f42d80037dcf8aa9ceea4c0c2f05c96680c36cf5ca45f956a3f3d5ba9a05c619c39fec SHA512 d33dee51edb9044cd18711a97d8f6388da8f0bc28d62b13955393ed0bbd0e9f6990713362c8b8fb30757d11a397cc63bc205e35fb843082c35ac0ceeb380af6c
DIST pynetgear-0.10.9.gh.tar.gz 18062 BLAKE2B f2f0d8476102909f752c196534dcb8ff559b3ac33c1dd453349afdf4611c7a5f88acc29fa54c0d99ce753136bbe12d35ad76e32082731317fab90bc08524357a SHA512 73084e999d45275af0222c6517417c1f988378916173c509f2842a0d70f98f9dccc7b6b81ad68ce4e785feea304357d016a4339689e0854da1d3612a496e984c
EBUILD pynetgear-0.10.10.ebuild 817 BLAKE2B 2cfa43ad24134ec84dcc3286130c0c66c0ddd034355b9844883371c360196b79e53b57ba9201b587642ff03f5e8d592543abdd974dec5fb02a33735626d67a91 SHA512 088e4770fe18a895fbdd8c0d7773b8692e880f00fec73863f2f8dcfd429125d85c4fdc6eab3bf887448373833e545303714823a9ceb81271a04a3e9eacac12a5
EBUILD pynetgear-0.10.9.ebuild 817 BLAKE2B 2cfa43ad24134ec84dcc3286130c0c66c0ddd034355b9844883371c360196b79e53b57ba9201b587642ff03f5e8d592543abdd974dec5fb02a33735626d67a91 SHA512 088e4770fe18a895fbdd8c0d7773b8692e880f00fec73863f2f8dcfd429125d85c4fdc6eab3bf887448373833e545303714823a9ceb81271a04a3e9eacac12a5
MISC metadata.xml 522 BLAKE2B 28a41445d674b32151a7aa1a9c7f8a785e9706b3b70c86e5b9e4ab40e77018bbe7facf93b022f1f89c2e16cd4f31cb079741b1d02607348c461aa88e5c6902a7 SHA512 7f6a4e66aff73a63df67d4c1a5c5458afbc552b5ab74b057c9e28d21ed65b3988a7d2b50723c0fa75b61b9d9e42b07851d9ea0ff773a0c7d667bba5da53456ea

View File

@ -1,37 +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
DESCRIPTION="Access Netgear routers using their SOAP API"
HOMEPAGE="https://github.com/MatMaul/pynetgear https://pypi.org/project/pynetgear/"
SRC_URI="https://github.com/MatMaul/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/requests-2.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
src_prepare() {
echo "requests>=2.0" >> requirements.txt || die
eapply_user
}
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest