bump aiounifi-34
This commit is contained in:
@@ -524,11 +524,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 1768 Ebuilds in total, 1761 of them have in total 1770 (35 different) licenses assigned.
|
||||
There are 1769 Ebuilds in total, 1762 of them have in total 1771 (35 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1080|
|
||||
|MIT|1081|
|
||||
|Apache-2.0|317|
|
||||
|GPL-3|106|
|
||||
|BSD|102|
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
DIST aiounifi-31.tar.gz 15066 BLAKE2B 03006430db5ab8afec6382ac9af6a8a6a47db689e6b929ef59e277c9d0869dbf1d853012a13a91903591068331eff06969df5bc20f7b92974e16b7d25c92e287 SHA512 c2f0ba2bdca01843874f32292a7b8a7afd3df2b26b9e0a6489a4e9809ccf8c35fefad8b211db355186055f87dc40677a909a964291c92cad628539248baf7866
|
||||
DIST aiounifi-32.tar.gz 16507 BLAKE2B a33965e425e0fed468df5465b3e0f764ab96788e8a50e76148232fb0a3a8993e33f04328aba9557ba99f8369c7de08c1351bc7076c4434bd9a30ac489453f636 SHA512 6ace8fbce22460a232b43c56ca75d7bdde5eae773f1e8e8ebe043b482841502ac0e6146e2a935d927e0dc87c13f5b073212f1db6ca7e236c7a3a83a708259c12
|
||||
DIST aiounifi-34.tar.gz 16508 BLAKE2B b6fe773779e5d79468d1b3f6cff2643e24c2c8c5c644b50fe6a599d8f4ca287d714889c79ed2b78b6c63408acd7ef32435955b5ddda3974c3f40e8802d7b8158 SHA512 313ff506059dc4460d8cfd80f75de6a8d4aaea73369ad433b6bcc6526d7e27b4e3f3ab7273526cc3161cd88beb21efc8fcee3689682a2a5fe1b76b7164330d7d
|
||||
EBUILD aiounifi-31.ebuild 895 BLAKE2B 613efcc534b34e31354bf06f6cb7258b54ebc388b55e44f42dfd0a8c84bfa419e173783d60a7e388e6de2d02e440d7d53fec5299d713b202d2e56de513c926fb SHA512 9bb2a5c8fd696f5778865667873ba48765d4ed679f9dda9d4aac05bb8e1b2335a0c853cd93fa61997b0de58778a821337f8f61e0f0ff0c1828c6e545f1c6942c
|
||||
EBUILD aiounifi-32.ebuild 970 BLAKE2B 088143fdd05faa6ac8573e4a2f013dfaa0a9ebcfa58923bc76aa800de5c996f6e2f9747fcba63b6a24e9d97ae3c858b44aac744b7fb217d795db177704c710f7 SHA512 7cedcdc373f98089d20e48efd253b93728aa1a20f2defadb23e118a3576483e0dd4cb755f6af25e5a1cdd09be66a3aa8e528b714c8035e779f262c39f96e3eda
|
||||
EBUILD aiounifi-34.ebuild 970 BLAKE2B 088143fdd05faa6ac8573e4a2f013dfaa0a9ebcfa58923bc76aa800de5c996f6e2f9747fcba63b6a24e9d97ae3c858b44aac744b7fb217d795db177704c710f7 SHA512 7cedcdc373f98089d20e48efd253b93728aa1a20f2defadb23e118a3576483e0dd4cb755f6af25e5a1cdd09be66a3aa8e528b714c8035e779f262c39f96e3eda
|
||||
MISC metadata.xml 468 BLAKE2B f13603d908f0daa3e21b284f3d9201a60642c541d2c7c3c18acb77016c40e67f1cf6213ddaccc6f493dfd0845b2bb91827fe6caa8947abb18ec022a3c1f648f9 SHA512 1785aca8f867ae2dc89830fad567d8ad7950f5f1165e54467047343fb0bd9eecfa8c2a37253f6202ed578a1a8cfce39ad579a597cd38667bfbbe0195cf0c61e2
|
||||
|
||||
39
dev-python/aiounifi/aiounifi-34.ebuild
Normal file
39
dev-python/aiounifi/aiounifi-34.ebuild
Normal file
@@ -0,0 +1,39 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="An asynchronous Python library for communicating with Unifi Controller API"
|
||||
HOMEPAGE="https://github.com/Kane610/aiounifi https://pypi.org/project/aiounifi/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
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/async-timeout[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/nose[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
|
||||
dev-python/aioresponses[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
nosetests --verbose || die
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
Reference in New Issue
Block a user