dev-python/aioairzone-cloud: add 0.3.5

Closes: #2377
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-11-10 18:36:01 +01:00
committed by Andreas Billmeier
parent 3d47bef7fc
commit 065208eeb6
3 changed files with 36 additions and 2 deletions

View File

@@ -612,12 +612,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 1625 Ebuilds in total, 1614 of them have in total 1627 (40 different) licenses assigned.
There are 1626 Ebuilds in total, 1615 of them have in total 1628 (40 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|946|
|Apache-2.0|329|
|Apache-2.0|330|
|GPL-3|96|
|BSD|94|
|GPL-2|27|

View File

@@ -1,5 +1,7 @@
DIST aioairzone-cloud-0.2.3.tar.gz 21753 BLAKE2B 4da8ca6306a816e2e02913ff628c26f3d07eabb48595ead7fa8ad5add639a0c0fc54e171246d56f8caa783a0c879e7e2764d2f5bc02e4c620362c5625f3d5d5e SHA512 cebb536c2a1cee8e7105fad008e9837a33e06c2825108f0ef8f415b1ba8ca74776c3052c27001fc9e4872c1a726156ae85ffea04ca7512f7ce48c8d19f9484db
DIST aioairzone-cloud-0.3.1.tar.gz 22516 BLAKE2B 5b8df8f203b9b7d3c90e1742c0a904ba7e37170cc3d92809824906cec1bf5dc9c7b9b11701a4ab934ca31c67507868f5c12e1ca6d09a57ec0edd07db208bc9c8 SHA512 72100d28cae0ac769ebf9a4aa3495bd1b10560db53e40e3cfd1c9b3b72557a4d844a5c058f418aaca314b965a3693750c5165bbd387f2803e1fd922ea33fc42c
DIST aioairzone-cloud-0.3.5.tar.gz 22651 BLAKE2B dc891152bba2b376e2dc7151c0fc511c5b3a67ab53f2fa31ea05cfdc8e4013f39dadf6172078eefbaec890e37c289cdce7054a14a95eb6f9105a84dafb99c9bf SHA512 32515f5609772f702645ad4ec081dbc8fe02ef9ea7c2afab06079a340f91b02e93cca3f0c5476372a4c92f48065480a60125e76ded122a426253fd0109d67305
EBUILD aioairzone-cloud-0.2.3.ebuild 680 BLAKE2B f319a50807f7f8d6c5ad2831149bfa033c9071aaf8c40301fac8419667ed073026b9ef8bb0af47946381c40f3c0d1f28680f9d44dae47a495d7e2342cc6e9e0a SHA512 a5ce7026828f251e9f5f793ed2b5501522ed5aa9bff9dfc2684669aea437494f35f596b22f2d1bdc339c576025adb1a06731c07293fb322904f07ce4e141a8df
EBUILD aioairzone-cloud-0.3.1.ebuild 680 BLAKE2B f319a50807f7f8d6c5ad2831149bfa033c9071aaf8c40301fac8419667ed073026b9ef8bb0af47946381c40f3c0d1f28680f9d44dae47a495d7e2342cc6e9e0a SHA512 a5ce7026828f251e9f5f793ed2b5501522ed5aa9bff9dfc2684669aea437494f35f596b22f2d1bdc339c576025adb1a06731c07293fb322904f07ce4e141a8df
EBUILD aioairzone-cloud-0.3.5.ebuild 680 BLAKE2B f319a50807f7f8d6c5ad2831149bfa033c9071aaf8c40301fac8419667ed073026b9ef8bb0af47946381c40f3c0d1f28680f9d44dae47a495d7e2342cc6e9e0a SHA512 a5ce7026828f251e9f5f793ed2b5501522ed5aa9bff9dfc2684669aea437494f35f596b22f2d1bdc339c576025adb1a06731c07293fb322904f07ce4e141a8df
MISC metadata.xml 536 BLAKE2B 655a921050c2970edd55895601375873be01d53e5a357039893177771e81932c920620b6ec334312c7f796838f0a1b7001454758ca2401da0fe8bfe4d8af220b SHA512 89a9983915e6aa5abfed539f2627091363b4ebbfa4fd04759a93e435eea469ac1a2be06990d14b2bff646db1adba9d1a5a3c422f9992a2ee785c5e0f896624d9

View File

@@ -0,0 +1,32 @@
# 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
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi
DESCRIPTION="Library to control Airzone Cloud devices"
HOMEPAGE="https://github.com/Noltari/aioairzone-cloud https://pypi.org/project/aioairzone-cloud/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest