dev-python/tplink-omada-client: add 1.3.11

Closes: #3026
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-03-10 18:54:51 +01:00
parent 54a98bbf5b
commit fe728d0b50
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 29 additions and 5 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 1887 Ebuilds in total, 1876 of them have in total 1895 (42 different) licenses assigned.
There are 1888 Ebuilds in total, 1877 of them have in total 1896 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1065|
|MIT|1066|
|Apache-2.0|434|
|GPL-3|124|
|BSD|104|

View File

@ -1,3 +1,5 @@
DIST tplink_omada_client-1.3.11.tar.gz 28705 BLAKE2B 9954b500576e22d1b9855f761accf27a683cee2d3a621db4fe12b083d65dde6f3c4a9d13cf2d2d946e6a3fe6bcb2749963d8ac1f3ec25b9f69fea707e2a712ec SHA512 9abf52453c06ab93a42dfe1024c49ca0bd4eeaa94c146e616d502c96f38594da36e25cb3f62b27a738550ad6e3de4029aa65d4adba2294adc4931466bb4b3296
DIST tplink_omada_client-1.3.2.tar.gz 24649 BLAKE2B 57b22f67e5e24f3bc2ed1ec6aeb462af19a5144a68c17b29b1aa76b630a5b4ddec5f9ed0ce12cb3dd0ad5b0379cd5905c004c5b11d7cafcb16d97de27d2a3dbc SHA512 a0a7c6415dfdc536b4955315f00627f16fae4e2b002e2ba4f5fda19b49408020ed310eeb4ff479d5b1916acd77b860ce65dfc7935394d95ae8af6f831209d3b6
EBUILD tplink-omada-client-1.3.2.ebuild 624 BLAKE2B b83c6fbf2108dc0bb89ae2928e3c7100270184eeb5f517e1e0e0c3764dff859d6dbcba09207d2938cccb76db198e1618172a67eae5158feae275e5287dae18bb SHA512 e0fb92b397d6ea3687eff78f4960672179cf0db73c7fc6decca4f07e27506fc1cc4eb432f3ea3bad02cd1c610adce654cea1a2dd9331754288d9eeb953acac93
EBUILD tplink-omada-client-1.3.11.ebuild 624 BLAKE2B e4851cfd15c91df57904bacfccc15dfdbb0ee87a0b7bff3dd2412f81276db101477053b43bf6b6e50a206108fdcb93064479ed0d865f3e28cafd3ba62434457e SHA512 68f55a372fca2e7ebc7a9b792273fc206588671bbe525334b3a58fd589033e3686a5e403534a1c7da61fd52ee3dd5ba7528f0cafaf74c6a856bc88416b90fd88
EBUILD tplink-omada-client-1.3.2.ebuild 624 BLAKE2B e4851cfd15c91df57904bacfccc15dfdbb0ee87a0b7bff3dd2412f81276db101477053b43bf6b6e50a206108fdcb93064479ed0d865f3e28cafd3ba62434457e SHA512 68f55a372fca2e7ebc7a9b792273fc206588671bbe525334b3a58fd589033e3686a5e403534a1c7da61fd52ee3dd5ba7528f0cafaf74c6a856bc88416b90fd88
MISC metadata.xml 530 BLAKE2B 56c771d1302fd2a1b3021b5470b0f5d2e8de64b6a852ec1bd2f55c2383d0fcd3dbc2987846abf5cf562dbeeae7ec8b678cada1f0d25037b6430f8fe986238856 SHA512 b9a8b73a841b148212dbaf9b1d504eb5f5fb600b2f2bb1f6738f40e5127ee04fe00007f9f239c4a45762e41c2fa46f2be5055b2d8c94a3a8ec4f5f356f5e1480

View File

@ -0,0 +1,22 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=hatchling
inherit distutils-r1 pypi
DESCRIPTION="Python wrapper for TP-Link Omada SDN Controller API (OC200/OC300/Software Controller)"
HOMEPAGE="https://github.com/MarkGodwin/tplink-omada-api https://pypi.org/project/tplink-omada-client/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
>=dev-python/awesomeversion-22.9.0[${PYTHON_USEDEP}]"

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=hatchling
inherit distutils-r1 pypi