dev-python/home-assistant-intents: add 2023.2.22

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-02-28 19:32:17 +01:00 committed by Andreas Billmeier
parent 4a1ada84fc
commit f17c0196a7
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 41 additions and 2 deletions

View File

@ -573,12 +573,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 1743 Ebuilds in total, 1732 of them have in total 1736 (34 different) licenses assigned.
There are 1744 Ebuilds in total, 1733 of them have in total 1737 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1017|
|Apache-2.0|375|
|Apache-2.0|376|
|GPL-3|107|
|BSD|91|
|LGPL-3|23|

View File

@ -1,3 +1,5 @@
DIST home-assistant-intents-2023.1.31.tar.gz 52942 BLAKE2B d295484bd01d0f9f80d584e9ae6672359794e490d7e390570732febc653365a14633e59cae83d881098d004c4a0add724f72f914c3a97c187e927a72ea8aae5a SHA512 1254dffbb3790a76c216b27ba5c21ed68b6c8b1530eea6e90f3ddd0769da46d124ae71aa686c9f9dcbcf5d151e989c2a67d3c066c4151d2982bce9815cd7ad12
DIST home-assistant-intents-2023.2.22.tar.gz 71716 BLAKE2B 448dbf2db544925db1f2256231e82129680726e073fb788f0e916f6873557051ace1db9d33a24959820834744d2c949bb66f700394270d48248ec5aab6feec8c SHA512 7892cfc8100d23e90f5bb3ca191689b91266d34af722b7603c5468b9dee68714f2a2c4866225eb4bb7601a316e0f86cfc86a9fd82d9c95669bef3c19f4b9258a
EBUILD home-assistant-intents-2023.1.31-r1.ebuild 876 BLAKE2B 1621d754e2c6651f4eb6320dbdd22f6016c5af5c9f90060eb67f15e196fb6fa3d62dd2ab29fdbe09f20dee26a7abfa5666cab14f165780952dc5a1586b25372c SHA512 fe984586d9d4da5faa9c1db106b264fe7b373ee68a80b870414c9761b3f2f35b55a4822d5529989874209cf1e49c53f362d4d00e7d0def9842b3f1015e3cc501
EBUILD home-assistant-intents-2023.2.22.ebuild 876 BLAKE2B 1621d754e2c6651f4eb6320dbdd22f6016c5af5c9f90060eb67f15e196fb6fa3d62dd2ab29fdbe09f20dee26a7abfa5666cab14f165780952dc5a1586b25372c SHA512 fe984586d9d4da5faa9c1db106b264fe7b373ee68a80b870414c9761b3f2f35b55a4822d5529989874209cf1e49c53f362d4d00e7d0def9842b3f1015e3cc501
MISC metadata.xml 548 BLAKE2B beb76c5ba7562b43d406087c616788d11428a56bdaea3fb1eb32134675ad0444802f897babc60fe101a34d1f95e5d5b0ca4684a38f48d8686b574d2279afa296 SHA512 5e4cd71f3e0f46a3b1bc1f1ebc94f5c46ed5ac859f63d4f213ed2101ca4998dffabac68d9f3f4d71f50a82f7757fd4e62d116216854d23cbb67d183ad2e7f66c

View File

@ -0,0 +1,37 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Intents for Home Assistant"
HOMEPAGE="https://github.com/home-assistant/intents https://pypi.org/project/home-assistant-intents/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS=""
RDEPEND="dev-python/hassil[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/voluptuous[${PYTHON_USEDEP}]
dev-python/regex[${PYTHON_USEDEP}]
dev-python/jinja[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest