dev-python/hassil: add 1.5.1

Closes: #2430
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-10 09:13:06 +01:00 committed by Andreas Billmeier
parent 34c010575b
commit a0e1502913
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 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 1661 Ebuilds in total, 1650 of them have in total 1671 (43 different) licenses assigned.
There are 1662 Ebuilds in total, 1651 of them have in total 1672 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|973|
|Apache-2.0|343|
|Apache-2.0|344|
|BSD|96|
|GPL-3|95|
|GPL-2|24|

View File

@ -1,5 +1,7 @@
DIST hassil-1.0.6.tar.gz 27300 BLAKE2B 53f620288d97aa1b5b3481da6bdf501d4a9b7a953bc2f813e835dcca59eca808947138b4e7f38b3a0977dd68a6fb707f7113576b1d55d9dd2b3b0cfd233fdfff SHA512 4dffb174d08bf64fec3387159dfb378814402e4f57ea77b54f61d55e52e11fa6d5820debbf5ca6aa2035dbc24506389877bfbcc58f51a7a808ab7091c0741d04
DIST hassil-1.2.5.tar.gz 32005 BLAKE2B a1b4dc36581948715309c15ac99843b1ed03cdd165fb2d04a73f8a3e1fe0e80e13d44e5ba3a7e2153ea60768798cca3ddd4238652e1520aeeeb0d5a9cc4ee4af SHA512 a496f657d3552b8c0e9067e9e6570b30d0f4bd0f3c78069c3a0a319b2893811d4bfef50ad9076fb117ef2496475c392641af54d5dfad899a6217a77aa9db554e
DIST hassil-1.5.1.tar.gz 36483 BLAKE2B c43a9c1aed01b555263d41fab78d8ef2487cf130d69f5be035e99152a26f045f00b34bebda7e13b63cda1e5181f1d55faa962ea9a1895763c0f44671363cd549 SHA512 424fedc27aa694b6fa7b006a660e318f8e44777dc2eae87808cd3a75a615af7549f79eda0e2d272076f6b33760809624ca16190586372a2e6916b171cffb6946
EBUILD hassil-1.0.6.ebuild 646 BLAKE2B a7f0b5e9ef7dbf0d6b1bb1802e5564e9984e6ee857e34fff19c72dcd74d551076f64bdab59271e2fc3c9473cb68cbf91170daf908254cdf2be6e479bae20dfc9 SHA512 92cd4acb2338911c2a1f4f39cb44645eb10701e552c01a2e6e47e930d10fc6d65572a0580d37121a2bb814821e79fd20f0c18a9005968120a756d31a80cfcc80
EBUILD hassil-1.2.5.ebuild 646 BLAKE2B a7f0b5e9ef7dbf0d6b1bb1802e5564e9984e6ee857e34fff19c72dcd74d551076f64bdab59271e2fc3c9473cb68cbf91170daf908254cdf2be6e479bae20dfc9 SHA512 92cd4acb2338911c2a1f4f39cb44645eb10701e552c01a2e6e47e930d10fc6d65572a0580d37121a2bb814821e79fd20f0c18a9005968120a756d31a80cfcc80
EBUILD hassil-1.5.1.ebuild 646 BLAKE2B a7f0b5e9ef7dbf0d6b1bb1802e5564e9984e6ee857e34fff19c72dcd74d551076f64bdab59271e2fc3c9473cb68cbf91170daf908254cdf2be6e479bae20dfc9 SHA512 92cd4acb2338911c2a1f4f39cb44645eb10701e552c01a2e6e47e930d10fc6d65572a0580d37121a2bb814821e79fd20f0c18a9005968120a756d31a80cfcc80
MISC metadata.xml 512 BLAKE2B e361c7aec3667efbe7ee48174946ce5da1d3ba6eeaec4cff1e0dcd2789e0d351fd2a9fd9397702d8a4db3a9b50e3a749ac04c1bb5d2885a64e359b47f2110945 SHA512 c20a56d820ebc21fbc3089876194685bab4ea7eeb1a654f4b3261aa418b42d8257f350e98dc7b0b4bbf01885bd9ef7f6f676562b1b32f98c494f3a34cc7a3caf

View File

@ -0,0 +1,31 @@
# 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=setuptools
inherit distutils-r1 pypi
DESCRIPTION="The Home Assistant Intent Language parser"
HOMEPAGE="http://github.com/home-assistant/hassil https://pypi.org/project/hassil/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest