update zwave-me-ws-0.3.0

This commit is contained in:
Andreas Billmeier 2022-10-06 09:43:34 +02:00 committed by Andreas Billmeier
parent aeb932e035
commit a567e477a0
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 42 additions and 2 deletions

View File

@ -538,11 +538,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 1930 Ebuilds in total, 1923 of them have in total 1935 (35 different) licenses assigned.
There are 1931 Ebuilds in total, 1924 of them have in total 1936 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1163|
|MIT|1164|
|Apache-2.0|364|
|GPL-3|120|
|BSD|106|

View File

@ -1,3 +1,5 @@
DIST zwave-me-ws-0.2.4.tar.gz 3742 BLAKE2B 25fb7849945b8364ad7f44875e79b6f687c56118bd02fe4ad2d2eb9ee1a18e3b1594a6a18cf75ec771f7a62778ee716538e0543adff1f83113a07a21f8f9229e SHA512 bd067b0bc7bf8c527a046ee9440c55bd0fea924143a28e8eacee4050e7db6882217a989f7d2e3d32b4dd0fa72a24540832e2545b9c8c48c3416f7773884345c0
DIST zwave-me-ws-0.3.0.tar.gz 4092 BLAKE2B a1ef9f10136af2569d025085302de83f976010dfc4d176049d4e60a6a630fb33dff878cb673f3d0a9ac34e1907d4649fe57304289157e14aa03cdcb528fbfd0f SHA512 185b249e9cbb7bb5b1121037a1e6cd1e9d49147f704ea4d6b6799ed87c28973f4b4e80082d5024411c70e7b598dd92a02f13394b091eb252c03ef2230bc1acdc
EBUILD zwave-me-ws-0.2.4.ebuild 837 BLAKE2B 9c2e472a379625cafbe49ac99785edb93028cb56dfe6b28b16c65078ee90d3588b743fde85d208c85c80b76ead6271cfda550d5c2f3f706eadd2ba05957515fc SHA512 17adaa7183a443799961ec55af05361203f805d77f5462948f4e718658a7d54e9b688a7b4019f239f8db0ab92c69d9bd5959392979e58bceca1d905c660147cc
EBUILD zwave-me-ws-0.3.0.ebuild 896 BLAKE2B 722707c26428039e79800f00260a09669cdb5b0041f19d7964a546c0122427c229a71fefda6ebf2f4bb588f4567096fe539ab684a0160e30041b674753f90ff4 SHA512 ab7a4d7ceb32e5189c163f5d5b79c19c132aade01efa4cfffc36b8051d669c10e84837835386828c03aeaba06170806f80f772b4b6d43bbbe9ab78b723fcf8f4
MISC metadata.xml 460 BLAKE2B 2c3c22b02664b40cf13df22852b51d4a0bfe76c18e0fd09c91e005a6bdd2f4673475a59a7d245318b892f7a5b0f013ccd18494e71f26f6c7b468c00e322146a6 SHA512 72459e3e0ae554eacd58264596523471a8890eb6a662b5d7fd4e7c31fb9a210775934d6690c2b5f9fa45c08bcd2b77ce68d05ef22e65c55dfa47e019a39534aa

View File

@ -0,0 +1,38 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
DESCRIPTION="Library, implementing websocket connection to ZWave-Me"
HOMEPAGE="https://github.com/Z-Wave-Me/zwave-me-ws https://pypi.org/project/zwave-me-ws/"
MY_PN=${PN//-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/websocket-client-1.2.1[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest