dev-python/python-homeassistant-analytics: add 0.8.0
Closes: #3983 Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
28adc3b43b
commit
6b2a911fb5
@ -606,11 +606,11 @@ 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 2269 Ebuilds in total, 2255 of them have in total 2294 (43 different) licenses assigned.
|
||||
There are 2270 Ebuilds in total, 2256 of them have in total 2295 (43 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1285|
|
||||
|MIT|1286|
|
||||
|Apache-2.0|528|
|
||||
|GPL-3|144|
|
||||
|BSD|124|
|
||||
|
@ -1,5 +1,7 @@
|
||||
DIST python_homeassistant_analytics-0.6.0.tar.gz 6531 BLAKE2B 4defda9717437360705b984fc5097a050cf159b9d7242dc6e41af638a452a5975663a1e18c16db3e9becdfd1cdd970fd16b686cee586edb49f8c865619463d3c SHA512 a557527a31ed5164a9aef6ca7f95fd196f861e75dd81bd7d2ee7aee1caeb58fb4d1bc8c0a1cff83d9d97de66d67d80a21356199d1226853d75c5cc301cf12f16
|
||||
DIST python_homeassistant_analytics-0.7.0.tar.gz 6577 BLAKE2B ae82420e76eea044f1cc8881f0f04d3365978c740d219b889ebdc9ef217ac09df2322392c9203a277548d35c347de011fe82e6efa7f48a4bd6db92a1f4ccecf6 SHA512 507490c350da2f9265a2de3bec998da6d65b08e50be2b59b4ae5af9210effa2f554f550635d171e1f9cbcc3f1e1e5f6228b6585b287a34e8de378958436e3d50
|
||||
DIST python_homeassistant_analytics-0.8.0.tar.gz 6600 BLAKE2B 241003332efd021c9cf043e31d42ec21e3cf698ff237376d467e3d7958936655433011d272bae7b1ecb432a2d9de7504e3b95e5009265769da5a6e7d75458e08 SHA512 0ec475c4190f3f40b75d1b448132db71b5d47b6330be0c5a03a1600ef8b271c6a98f29ecbead643f66853601e0c8a8bdbb81d76dd1b576807fe29275cdbe1219
|
||||
EBUILD python-homeassistant-analytics-0.6.0.ebuild 795 BLAKE2B d0685d55eeddfc65e2966b1f862642ba9650408e6bf197d0cce45ae6b33ba2d36b59368a71d202e2aa80d18cb73ddae3a418730fd18bfcf97a45811ee660fbcf SHA512 62372ed289aa5311e602d0c73548070dbce7ba24309d8abb7b2f65e3a08fedab251544234fa3f288944c37cac82ddc819639f41a0acf79105e48c76dd66400b1
|
||||
EBUILD python-homeassistant-analytics-0.7.0.ebuild 734 BLAKE2B 5536cd5c7cdd599e7ccab96dd010623714d87a3b6da3781da06d117672294ba5131f77423261bdaf2356ef9c416287913596d0d6d10b406d765370ff2d814d71 SHA512 3dfe4f1fc70826ecaecb76542c69b77e1ec9cd91787129fe6418a4b65a7dd3fc665b07e856043036119328d849340fd4fbe1e4bce325fc6692fd5afcfe902eb7
|
||||
EBUILD python-homeassistant-analytics-0.8.0.ebuild 734 BLAKE2B 5536cd5c7cdd599e7ccab96dd010623714d87a3b6da3781da06d117672294ba5131f77423261bdaf2356ef9c416287913596d0d6d10b406d765370ff2d814d71 SHA512 3dfe4f1fc70826ecaecb76542c69b77e1ec9cd91787129fe6418a4b65a7dd3fc665b07e856043036119328d849340fd4fbe1e4bce325fc6692fd5afcfe902eb7
|
||||
MISC metadata.xml 562 BLAKE2B 59002962e5e2ac552c6ec868cc8206dcd66903f56b95aeca976be2df5e192ed261fe3451002678bb1a77e8aa2d9bb822cecdb023e4d6f90ea92efc6109153dc1 SHA512 13a32939c024b63f5c1d6fa88bd2b67aadae17ffd7b305da8f3a86091833fb5aec5a60c3fe64ff436349d92ea384aa00fa6869677f4f3f13073339548d24d8ff
|
||||
|
@ -0,0 +1,26 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{11..13} )
|
||||
DISTUTILS_USE_PEP517=poetry
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Asynchronous Python client for Homeassistant Analytics."
|
||||
HOMEPAGE="https://github.com/joostlek/python-homeassistant-analytics https://pypi.org/project/python-homeassistant-analytics/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/yarl-1.6.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/mashumaro-3.11[${PYTHON_USEDEP}]
|
||||
>=dev-python/orjson-3.9.0[${PYTHON_USEDEP}]"
|
||||
|
||||
distutils_enable_tests pytest
|
Loading…
x
Reference in New Issue
Block a user