dev-python/zwave-js-server-python: add 0.56.0
Closes: #3465 Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
1d6ea2c875
commit
7fc2d54c00
@ -606,12 +606,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 1861 Ebuilds in total, 1850 of them have in total 1873 (42 different) licenses assigned.
|
||||
There are 1862 Ebuilds in total, 1851 of them have in total 1874 (42 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1068|
|
||||
|Apache-2.0|414|
|
||||
|Apache-2.0|415|
|
||||
|BSD|108|
|
||||
|GPL-3|107|
|
||||
|LGPL-3|25|
|
||||
|
@ -1,5 +1,7 @@
|
||||
DIST zwave-js-server-python-0.55.3.tar.gz 83818 BLAKE2B 3e840c13e6c46e93c043c947af4a096bbfaf6af7af0e55cd4439fffb3737c5b8b27b9fed1ec168daae809be5c2d49da3d758906716343ebf27635ff909b2ff80 SHA512 bfa9d97ae20075148e3d2d5998936f24e0e9e283e884488ed056b171099521112f4d01bef4ced8a2086371544951bc9fe563c8a123babff5b77bbec7f8d20292
|
||||
DIST zwave_js_server_python-0.55.4.tar.gz 84008 BLAKE2B a3457be650bed4177ce579d9953e13e14e0546bea7ddfc538b5c4472bc57a4e4d130c4b9cbf9297dbb00a21d7716358e3e84a1f6a194277d519332b1979d39e0 SHA512 2f0615a564f090535a0b79b1f0ffc099d87f42fd8101085b8e99071db1b79470eb765f2baa43b030304aa8099616952d897e64b88cdc6575e90acf2e9fdfbd5a
|
||||
DIST zwave_js_server_python-0.56.0.tar.gz 84135 BLAKE2B 4b28c035e631252efbd6aa50f93a5204323503dc95be4c24e01aefe49ec258e01f5e5159175359ada7b56b292cdebe1027e05c15c1553d7e95ef573945380eaf SHA512 e4c009f12a03463a5de5db27d98427c7fe733b567a4a7b56fe33f154f589721f4077a520977dc16089ad7ce3802275677fd157ac8227860f5a95a629a89a651a
|
||||
EBUILD zwave-js-server-python-0.55.3.ebuild 981 BLAKE2B e7145e22f2a3f8abff616977a4713389396d9c310119fd93d2454fe625afb66d1f909d05b5c7f151e30e7e52151ab5d18de6fb830654cd07c556839f6dea5dcb SHA512 7bd1e665372dccc37f3902ecdcfcbb9fded51fbe67070d075faaf19cc9f205fe516eca488acd30e5e31f1029546815ac941c7811fd6a3da479a2c2827f502480
|
||||
EBUILD zwave-js-server-python-0.55.4.ebuild 961 BLAKE2B 6650bc4c3b0f5f47d9863980c1c83a04ac0e1e3bad062f4568ec63f49eae09a67e476f0dfbe7e984a4f6a4d4a566e3378e7585e816bf62e2c01ac86979f9dcf6 SHA512 2f1c90c7fe5fa531396e45792f49715b0f0fd58a83d448dbc1abffd21b6231511f99c51f7c4c308bde45cdd9072df55d6bea56dc69e8b9e2f8b5fb2e2ed6fe40
|
||||
EBUILD zwave-js-server-python-0.56.0.ebuild 923 BLAKE2B ceb450c511365b050ae60012e4702b86d335816a870342a51252600cbb88498d4d5557ac95fdf4060d523beb8338723a198f91f2bc8b6620b850b4d48335549c SHA512 c5588f4e31cc33dfe7e939b340effdaf378e0c9ac47a1ba463bcdfaa40e4aa208097466a5daee85622a333685f51e9f1be1681be7bcbbd8199443a349d6579dc
|
||||
MISC metadata.xml 561 BLAKE2B 318a1a8da676808f21bca94ac329671fc288e280a058ef5d08c25f2c3a7780d337cbffc810cb697c4abf48ba7b285858b1e153a6c35acbfe7b9ca83759fa6079 SHA512 af524e380904ee6f25cc3dc5f10eefa4c788b4bebecd06817fdbd3c72379b7eda67dabbd2546219a322b71d138fdb0b35b1e9116e4a7f78d281faa0537393986
|
||||
|
@ -0,0 +1,35 @@
|
||||
# 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=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Python wrapper for zwave-js-server"
|
||||
HOMEPAGE="https://github.com/home-assistant-libs/zwave-js-server-python https://pypi.org/project/zwave-js-server-python/"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
|
||||
>=dev-python/pydantic-1.10.0[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-cov[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-timeout[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
src_prepare() {
|
||||
# remove dynamic-versioning
|
||||
sed 's/dynamic = \["version"\]/version = \"'${PV}'\"/g' -i pyproject.toml || die
|
||||
eapply_user
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
Loading…
x
Reference in New Issue
Block a user