Skip to content

Commit a08a40c

Browse files
committed
dev-python/home-assistant-chip-clusters: add 2023.12.0
Signed-off-by: Andreas Billmeier <[email protected]>
1 parent febf1cb commit a08a40c

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -612,12 +612,12 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
612612

613613
## Licenses
614614
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.
615-
There are 1604 Ebuilds in total, 1593 of them have in total 1608 (42 different) licenses assigned.
615+
There are 1606 Ebuilds in total, 1595 of them have in total 1610 (42 different) licenses assigned.
616616

617617
|License| Ebuilds using it|
618618
|-------|-----|
619619
|MIT|922|
620-
|Apache-2.0|341|
620+
|Apache-2.0|343|
621621
|GPL-3|102|
622622
|BSD|88|
623623
|LGPL-3|22|
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
DIST home_assistant_chip_clusters-2023.10.2-py3-none-any.whl 122185 BLAKE2B 6e40446e4da2de953aec6391ea2220e93cee48d84182880dc583579bb0e5d2f7940ddf344b007669fd540ed87c5965baacc1ba8b92f142bb10c795e6a48e6341 SHA512 27f566b89f1e18b7e1edc8f8898c87e8b600669d42b8b4e6f230fa76f1bcbff693ef6459f5645de5aefedc705716e4663bfdae503a8d757003464cd6d8274fef
2+
DIST home_assistant_chip_clusters-2023.12.0-py3-none-any.whl 122188 BLAKE2B f6d5cafd89ef80c28b9fc995bf69180d6cbe71de1adfff2f1596edb815a90c551783d89adf137c72173cd4722a25c05da06344ca8465b86590fe2790a7894c6a SHA512 f75b2a13ee3c7dd9d3157c70072d212cb35b160c744cf25034c517d0a9c53c7a358e07672c2165c94cee4c5c79531e31af148a390621a25ea25a937ed43226da
23
EBUILD home-assistant-chip-clusters-2023.10.2.ebuild 799 BLAKE2B 9b3aa95fe85895a97a8d98f9116e8f300880273310211c3e786fd367eeb3994f247ac143a77070d852820536a2354e13915923bdb20ae03e31eea43f94bdda21 SHA512 240a28f7ca75c0384fe410f9f0171ff7935147a79836620217f84416a84ad57d5981b2d3ca1e0d37e8752506454a96582de1a130d7317890e4b1af6be2621b66
4+
EBUILD home-assistant-chip-clusters-2023.12.0.ebuild 790 BLAKE2B 7ca3d1a06c51d8c205b4e8a87d3d594edc5f7f80b1f827305905839b905ee14f9822c888aa545a1eee062055c713ff6fd76e26f902c99f089611d227a1f7fc4f SHA512 9e2adc592c22d72508cab6788515404e2859899d1e3fd438f98000910c5e8d91ee7a50d17a43f7ad2d2de7b272a254bc59d95794dd852999bf46746b7f9207f8
35
MISC metadata.xml 417 BLAKE2B bbbb557b5121cf6a63d6ebef83663a913e960b67832c10e6e1effc7b008b02cc72ef07c160fc9a265bee24b657444eca022f89b8aa36ee47e6103bf9c7d1ec60 SHA512 c1ca4152604c4d874bb2a3966ffbb46e562d06d1c0454603a3de82040253686db4714db602cb425a22d31cbc4f67b1f35b89a2b7d4b98e3feae5778df8382199
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Copyright 1999-2023 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{10..12} )
7+
DISTUTILS_USE_PEP517=standalone
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="Python-base APIs and tools for CHIP."
11+
HOMEPAGE="https://github.com/project-chip/connectedhomeip https://pypi.org/project/home-assistant-chip-clusters/"
12+
SRC_URI="$(pypi_wheel_url)"
13+
S=${WORKDIR}
14+
15+
LICENSE="Apache-2.0"
16+
SLOT="0"
17+
KEYWORDS="amd64 arm arm64 x86"
18+
19+
RDEPEND="
20+
~dev-python/unicode-rbnf-1.0.0[${PYTHON_USEDEP}]
21+
~dev-python/aenum-3.1.15[${PYTHON_USEDEP}]
22+
~dev-python/aiorun-2023.7.2[${PYTHON_USEDEP}]
23+
~dev-python/dacite-1.8.1[${PYTHON_USEDEP}]
24+
"
25+
26+
python_compile() {
27+
distutils_wheel_install "${BUILD_DIR}/install" "${DISTDIR}/${PN//-/_}-${PV}-py3-none-any.whl"
28+
}

0 commit comments

Comments
 (0)