dev-python/tplink-omada-client: new package, add 1.1.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-03-01 21:48:35 +01:00 committed by Andreas Billmeier
parent bf225ad904
commit 921fbf874d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 43 additions and 2 deletions

View File

@ -573,11 +573,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 1782 Ebuilds in total, 1771 of them have in total 1775 (34 different) licenses assigned.
There are 1783 Ebuilds in total, 1772 of them have in total 1776 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1039|
|MIT|1040|
|Apache-2.0|386|
|GPL-3|109|
|BSD|93|

View File

@ -0,0 +1,3 @@
DIST tplink_omada_client-1.1.0.tar.gz 12926 BLAKE2B 1fb73d206cb1f833a93d2e09ba88a5f7cc5b75ff43fb04d62b13ec2ad16119f3c8487ec2f23988cefd64fda019b5b5eca6d16ffa81679cf7043138a3182a53b1 SHA512 c6133ce2b4ef8f4d9672e97f00ad8f0c18f7e6a594714b397c2a0245f78af1b0971c40340335348f24b08f64fae1017ca6c7361297db2ffefeecc8f53582f825
EBUILD tplink-omada-client-1.1.0.ebuild 597 BLAKE2B 348447277e461318ea4fcac50d1057a19dcdbe270cba3bb90be11678ba2e011d27a92fa9c10b85a617f67cfdc671f73ab269c9a38bb55963bc1b65d4ae6b3344 SHA512 20af35e98eec1e2c030907dc5976de5a225522ace548cac4abeed8ba47deeaced79b8a1c591014448127fb0e5e5b2d51f763750d6d1c4737640e4d6a0d39668e
MISC metadata.xml 530 BLAKE2B 56c771d1302fd2a1b3021b5470b0f5d2e8de64b6a852ec1bd2f55c2383d0fcd3dbc2987846abf5cf562dbeeae7ec8b678cada1f0d25037b6430f8fe986238856 SHA512 b9a8b73a841b148212dbaf9b1d504eb5f5fb600b2f2bb1f6738f40e5127ee04fe00007f9f239c4a45762e41c2fa46f2be5055b2d8c94a3a8ec4f5f356f5e1480

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">tplink-omada-client</remote-id>
<remote-id type="github">MarkGodwin/tplink-omada-api</remote-id>
<maintainer status="unknown">
<email>author@example.com</email>
<name>Mark Godwin</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,22 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
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/"
SRC_URI="$(pypi_sdist_url)"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"