dev-python/blebox-uniapi: update blebox-uniapi-2.1.3

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2022-10-30 13:38:07 +01:00 committed by Andreas Billmeier
parent 83e340a63c
commit ae1c9b09e5
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 38 additions and 2 deletions

View File

@ -548,12 +548,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 1447 Ebuilds in total, 1440 of them have in total 1449 (34 different) licenses assigned.
There are 1448 Ebuilds in total, 1441 of them have in total 1450 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|842|
|Apache-2.0|291|
|Apache-2.0|292|
|GPL-3|91|
|BSD|86|
|LGPL-3|22|

View File

@ -1,3 +1,5 @@
DIST blebox-uniapi-2.0.2.tar.gz 24245 BLAKE2B e7b471c2944f36d9e5b422c75f60839d4d97ea91f781985992753213952a61a97ba6bc821d02ed84db4ac92fe5f6b6f26393c85646c58fc471b6b21c656b0f19 SHA512 4349dd6a870d36412dd79f7d68d67d979c06d04f82251bc85cd0357f3b63f42a6e3bf0dd3692738e6c35b9770a0c793142ff9a3a3761f24f603c9f117ebee55b
DIST blebox-uniapi-2.1.3.tar.gz 27356 BLAKE2B 97c2553bef8194ba618774f91a742b68793382ee57b122dec49fc37b99f4d15dc7f990bc56bd26c2c2541128fd9d5f4ccec0d3248955b63122e96683e24c89f9 SHA512 d0d61a233bf5f3ecbb10185fc116f54ff8dffe57a616aef42ae33edef93d1f32eaed7b72c3d3816e02ab2d9a671e418bf23eecd350ed36cfac255f6719a6c380
EBUILD blebox-uniapi-2.0.2-r1.ebuild 836 BLAKE2B 4f3456f5d9b32a0d32401668a739e953e1ad819da1fdf1a4d212e575e3d799debb6186b53aec621137d6688d8af655eb42784f8461f9e932239eda5eb4c517d0 SHA512 29a07ca69f80ddc8e1bc55f558c28dd05e5f338f21bde6730ccc1f0960ec60bf6664499528801c748ec50443c70992d565bceb8b8c481daf04266f9f9ecfafdd
EBUILD blebox-uniapi-2.1.3.ebuild 882 BLAKE2B 320887b8a8adb450eff8c2b7d870cdf529e2cfcae4c23d6ca6473e892b5612f414e56f60f52c37f9abbcaae2742d47ff3c8c654d9327433cf2f40f4fdccccea8 SHA512 bac37491211bc73faa40783dbfb0ecadc61f2523b23f673941224916ceb6160f79b3a918d856d7c0d986a94a52a0f5d0c7b89bab0cb744f5e01967e98d1e76a4
MISC metadata.xml 452 BLAKE2B d528976d70a69cf3e3b345800d6e4ea0bc5405195f318f8b8b9bd15c230ee45e7d89d28fd6f68fa1b1c48842f7a8d4cb6af9e81dd264c1fcdccdcbceebb2a16e SHA512 193dd2ba31cd48b59e8bc7c124ee3c0c730ff0abc0ad95f93e2bd9edaa9b5eb3dddfed1f46a86cfbe1d7daabc51e7c6d2974723f775418580c736616cb2ad0f5

View File

@ -0,0 +1,34 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="Python API for accessing BleBox smart home devices"
HOMEPAGE="https://github.com/blebox/blebox_uniapi/ https://pypi.org/project/blebox-uniapi/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/pytest-runner[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/deepmerge[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest