dev-python/home-assistant-chip-clusters: add 2023.12.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-01-04 11:49:13 +01:00
parent febf1cb40b
commit a08a40c821
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 32 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 1604 Ebuilds in total, 1593 of them have in total 1608 (42 different) licenses assigned.
There are 1606 Ebuilds in total, 1595 of them have in total 1610 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|922|
|Apache-2.0|341|
|Apache-2.0|343|
|GPL-3|102|
|BSD|88|
|LGPL-3|22|

View File

@ -1,3 +1,5 @@
DIST home_assistant_chip_clusters-2023.10.2-py3-none-any.whl 122185 BLAKE2B 6e40446e4da2de953aec6391ea2220e93cee48d84182880dc583579bb0e5d2f7940ddf344b007669fd540ed87c5965baacc1ba8b92f142bb10c795e6a48e6341 SHA512 27f566b89f1e18b7e1edc8f8898c87e8b600669d42b8b4e6f230fa76f1bcbff693ef6459f5645de5aefedc705716e4663bfdae503a8d757003464cd6d8274fef
DIST home_assistant_chip_clusters-2023.12.0-py3-none-any.whl 122188 BLAKE2B f6d5cafd89ef80c28b9fc995bf69180d6cbe71de1adfff2f1596edb815a90c551783d89adf137c72173cd4722a25c05da06344ca8465b86590fe2790a7894c6a SHA512 f75b2a13ee3c7dd9d3157c70072d212cb35b160c744cf25034c517d0a9c53c7a358e07672c2165c94cee4c5c79531e31af148a390621a25ea25a937ed43226da
EBUILD home-assistant-chip-clusters-2023.10.2.ebuild 799 BLAKE2B 9b3aa95fe85895a97a8d98f9116e8f300880273310211c3e786fd367eeb3994f247ac143a77070d852820536a2354e13915923bdb20ae03e31eea43f94bdda21 SHA512 240a28f7ca75c0384fe410f9f0171ff7935147a79836620217f84416a84ad57d5981b2d3ca1e0d37e8752506454a96582de1a130d7317890e4b1af6be2621b66
EBUILD home-assistant-chip-clusters-2023.12.0.ebuild 790 BLAKE2B 7ca3d1a06c51d8c205b4e8a87d3d594edc5f7f80b1f827305905839b905ee14f9822c888aa545a1eee062055c713ff6fd76e26f902c99f089611d227a1f7fc4f SHA512 9e2adc592c22d72508cab6788515404e2859899d1e3fd438f98000910c5e8d91ee7a50d17a43f7ad2d2de7b272a254bc59d95794dd852999bf46746b7f9207f8
MISC metadata.xml 417 BLAKE2B bbbb557b5121cf6a63d6ebef83663a913e960b67832c10e6e1effc7b008b02cc72ef07c160fc9a265bee24b657444eca022f89b8aa36ee47e6103bf9c7d1ec60 SHA512 c1ca4152604c4d874bb2a3966ffbb46e562d06d1c0454603a3de82040253686db4714db602cb425a22d31cbc4f67b1f35b89a2b7d4b98e3feae5778df8382199

View File

@ -0,0 +1,28 @@
# 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=standalone
inherit distutils-r1 pypi
DESCRIPTION="Python-base APIs and tools for CHIP."
HOMEPAGE="https://github.com/project-chip/connectedhomeip https://pypi.org/project/home-assistant-chip-clusters/"
SRC_URI="$(pypi_wheel_url)"
S=${WORKDIR}
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
RDEPEND="
~dev-python/unicode-rbnf-1.0.0[${PYTHON_USEDEP}]
~dev-python/aenum-3.1.15[${PYTHON_USEDEP}]
~dev-python/aiorun-2023.7.2[${PYTHON_USEDEP}]
~dev-python/dacite-1.8.1[${PYTHON_USEDEP}]
"
python_compile() {
distutils_wheel_install "${BUILD_DIR}/install" "${DISTDIR}/${PN//-/_}-${PV}-py3-none-any.whl"
}