dev-python/hassil: add 1.0.5

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-02-28 19:26:42 +01:00 committed by Andreas Billmeier
parent df46cd8489
commit 4a1ada84fc
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 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 1742 Ebuilds in total, 1731 of them have in total 1735 (34 different) licenses assigned.
There are 1743 Ebuilds in total, 1732 of them have in total 1736 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1017|
|Apache-2.0|374|
|Apache-2.0|375|
|GPL-3|107|
|BSD|91|
|LGPL-3|23|

View File

@ -1,5 +1,7 @@
DIST hassil-0.2.6.tar.gz 32326 BLAKE2B 931fee7bf3f37d444a8146bf4c67806fcd56c5152814a07807d487098231abaa3951616316f52b561a5ce5afc40c53194d436b57306a227f4b1dc7dab2b9b92f SHA512 1aa4ac8a71e958bdf2b3a225b084c27c22ffa64140619a78d0abf5fa76c7d8f92733eb5dd30a8522ab5308f7bc22b1ab56aaa1e5f2443263af4d4c70e0120d7d
DIST hassil-1.0.1.tar.gz 26237 BLAKE2B d9732ee62300e9d11e49d254ecad200213cac63d9654d3be8ad681a873e3b10ec19fa5151491169d2977946530a58a992def4a1936dbcf16194322c8a4bde87d SHA512 17147683f0bb5d7ed4bdac5d78195786bac83a86253dac4897ba7675f73005d36af4aa6133b42d0ee32634f54085932cbb256819bf7fb71803bdd2d27d22bd55
DIST hassil-1.0.5.tar.gz 26925 BLAKE2B 14081c39e12329cc40ce861431423adc1a431b54a2f088ee6ad009165f37a6e8563fee369bdb19db253daeef771ada69a836c51eafbee07bf1f8a60ddcae104a SHA512 8a0d7a897a09826381940872b6fc832d9ff53219cd8856d5427f4585608bca6d4dfdbfc3eb67bcad06f0fe066c43eae55407b2791753538fb05bc10a24a8fd4d
EBUILD hassil-0.2.6.ebuild 896 BLAKE2B 6b8f02d9c82970a1c2daddbd2bfad9beda71324147ac91fe7a21db68bab18c218487aa255fee8c7c471d2fb13aa3b968e83c8f51824c1b9ce8b6e316ca21e549 SHA512 2d6fc353d6a07e80d42dffc68a7eeeeeac97b97ec87620e8c671f2dbbf95666e8574ea77d73496ee8025c873d076d6ac2bcc4db345bc5f88f53c38d8ca8cead0
EBUILD hassil-1.0.1.ebuild 896 BLAKE2B 6b8f02d9c82970a1c2daddbd2bfad9beda71324147ac91fe7a21db68bab18c218487aa255fee8c7c471d2fb13aa3b968e83c8f51824c1b9ce8b6e316ca21e549 SHA512 2d6fc353d6a07e80d42dffc68a7eeeeeac97b97ec87620e8c671f2dbbf95666e8574ea77d73496ee8025c873d076d6ac2bcc4db345bc5f88f53c38d8ca8cead0
EBUILD hassil-1.0.5.ebuild 714 BLAKE2B afd5b9b19ec0b9cbce839269d642489d3009834ad43df234094db94bd70ff1704ad42838a378e91a4de382818f9cd21874b06ec25726d845a5de1fe2fa7f6f57 SHA512 fff5f2ccffeb75d0eeae770d548174c7e5fb3d32058163c6bde84e7247ada92ca015accd879c15aa3ea42f83ee77ca218b82c376133670fb59db073f39580682
MISC metadata.xml 512 BLAKE2B e361c7aec3667efbe7ee48174946ce5da1d3ba6eeaec4cff1e0dcd2789e0d351fd2a9fd9397702d8a4db3a9b50e3a749ac04c1bb5d2885a64e359b47f2110945 SHA512 c20a56d820ebc21fbc3089876194685bab4ea7eeb1a654f4b3261aa418b42d8257f350e98dc7b0b4bbf01885bd9ef7f6f676562b1b32f98c494f3a34cc7a3caf

View File

@ -0,0 +1,33 @@
# 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 pypi
DESCRIPTION="The Home Assistant Intent Language parser"
HOMEPAGE="http://github.com/home-assistant/hassil https://pypi.org/project/hassil/"
SRC_URI="$(pypi_sdist_url)"
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="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest