Skip to content

Commit 15e5323

Browse files
committed
dev-python/aiohasupervisor: new package, add 0.1.0
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3865 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 6c8fc7e commit 15e5323

File tree

4 files changed

+47
-2
lines changed

4 files changed

+47
-2
lines changed

README.md

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

607607
## Licenses
608608
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.
609-
There are 2096 Ebuilds in total, 2085 of them have in total 2112 (42 different) licenses assigned.
609+
There are 2097 Ebuilds in total, 2086 of them have in total 2113 (42 different) licenses assigned.
610610

611611
|License| Ebuilds using it|
612612
|-------|-----|
613613
|MIT|1213|
614-
|Apache-2.0|471|
614+
|Apache-2.0|472|
615615
|GPL-3|128|
616616
|BSD|111|
617617
|LGPL-3|24|

dev-python/aiohasupervisor/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST aiohasupervisor-0.1.0.tar.gz 20350 BLAKE2B c1f23a0bdaf6cb1187858c9bbb392cdd10d3e15c1f3e2d918bafcbe46179ece8bced82b1e2c3dc71ff068726277694d41a478c29c4e45ca000256f1c6e3b136c SHA512 54001496dae1c17a3ca645316f75fb0ebe0cd5c48f02b3c3fe970e152488d158e99f14e5bc6def393e0687c2eb64be6467a7085ced0f9e986a7c53d7bde17331
2+
EBUILD aiohasupervisor-0.1.0.ebuild 737 BLAKE2B 1fbbc5f3ae2fe247430479a1aaac56b6fb6c83f484e9cb99ecccdaf306873bb46c7f3b88517d92367dedbdb4fa988ab577e1207e958ef9d2cd5263e608c15c3a SHA512 c438cfaebacbca8973392f7c24249ff3180cfa7bbacf66f4d3c9783673c726edd36512520e0fffdec6ba9e9a4071f0fa24c41a011bd844d89d10ecf7dc51e916
3+
MISC metadata.xml 563 BLAKE2B 2083ff7258589808be25ae4ac9cde5fe67a814ef421a3bee966642646b6ea6345ebb5a35a468d236b381fd82970c9d32f8187006378c08142c5c76f39a28593a SHA512 1a089101d7f5240c8e094afa61adb0c3e3683f8e8b680badb1f2c39bd2356101ab1617bea55c61369b0d7d28f16f20fca5e37ff2cca2fd739211c080beeb66ac
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Copyright 1999-2024 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{11..13} )
7+
DISTUTILS_USE_PEP517=setuptools
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="Asynchronous python client for Home Assistant Supervisor."
11+
HOMEPAGE="https://github.com/home-assistant-libs/python-supervisor-client https://pypi.org/project/aiohasupervisor/"
12+
13+
LICENSE="Apache-2.0"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.md"
20+
21+
RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
22+
>=dev-python/yarl-1.6.0[${PYTHON_USEDEP}]
23+
>=dev-python/mashumaro-3.11[${PYTHON_USEDEP}]
24+
>=dev-python/orjson-3.9.0[${PYTHON_USEDEP}]"
25+
26+
distutils_enable_tests pytest
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
3+
<pkgmetadata>
4+
<maintainer type="project">
5+
<email>[email protected]</email>
6+
<name>Andreas Billmeier</name>
7+
</maintainer>
8+
<upstream>
9+
<remote-id type="pypi">aiohasupervisor</remote-id>
10+
<remote-id type="github">home-assistant-libs/python-supervisor-client</remote-id>
11+
<maintainer status="unknown">
12+
<email>[email protected]</email>
13+
<name>The Home Assistant Authors</name>
14+
</maintainer>
15+
</upstream>
16+
</pkgmetadata>

0 commit comments

Comments
 (0)