dev-python/pyControl4: add 1.1.0
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
@@ -576,12 +576,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 1819 Ebuilds in total, 1808 of them have in total 1824 (36 different) licenses assigned.
|
||||
There are 1820 Ebuilds in total, 1809 of them have in total 1825 (36 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1063|
|
||||
|Apache-2.0|392|
|
||||
|Apache-2.0|393|
|
||||
|GPL-3|115|
|
||||
|BSD|96|
|
||||
|LGPL-3|26|
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
DIST pyControl4-0.0.6.tar.gz 7572 BLAKE2B 25313361e03a81facd4c9534952ab3088e1dbc04f6be21beb0289437d3cdd7ea9029a2c5187381f902626a51420b22970f394794b14e9c328bc647e4e091ae09 SHA512 b2cf2da6200c9858458081fe123020e6a3af81a8bc9e376dd0274be341ab80a3bb5d7ca2e473f75d9897fec3538a3d003f91003d2b46238ed482da7287983850
|
||||
DIST pyControl4-1.1.0.tar.gz 17777 BLAKE2B eb7efdec13389f2baea97afed9170b02bd2736c41639fd88bc9a446bc441ff85781283bd7f159af4b0a51a3851fafbfe7a6306353894a2f685a74b0415eb5f3e SHA512 459b73aed08922f4594c1cb02e7af647f7dedee67899732c56c17d63c9f142d3762206983efb84bd33a36361f553084f052fda0c7b7e5b70bc5d64ad5fb76dfe
|
||||
EBUILD pyControl4-0.0.6.ebuild 768 BLAKE2B addcf84ff1eb35476ad4513cab01cc0dbeeb263bd455f7ac3aea8b642d41a20349c77eaa4afc6c99bcd7653877f6bd14893a6e90d8a34a9a1a9d40f435cbf1a2 SHA512 24006141bade7ff11abf383ae0c38fc6bd3de212497fca813de7e3a9286e1ac78f75b1291fe1d2778bdbd9b7d87d43a30c5f62e1b9a5f091c9d26eecb54a9c3a
|
||||
EBUILD pyControl4-1.1.0.ebuild 825 BLAKE2B cbadbfba140926c832ab0a2544d82020540dda5ecb5254d2bfd939ac089a81237e0e8cb0194835b0dbd9205920b0cfe0edf213f872ffc801a4f3bf7250841966 SHA512 04f669c35ec3b24b43ec260a45880dd0d38af5fc9aa8841d2fab96877e6dd23e9e5f11a7710db12336bfc922ccafd6e786dbbc43852cd2d95b15ace0747a8dcd
|
||||
MISC metadata.xml 518 BLAKE2B 5fe62f30270155723c2b6c484921bd87bbf758fa0087dece6cf2e11d1157a79cecbfc2ebc1a087a8ca9b2fa42bf2ab4bbeebdda1ba572aacebe7f747d9589594 SHA512 cfce36553cebe8dcd37e3966336919c37c3cbc29ac9697132b76eac9f5987341d5ef9c08ca728596ac72e29295148223ac447afbb40acaef354ebb07ee6cbf6f
|
||||
|
||||
35
dev-python/pyControl4/pyControl4-1.1.0.ebuild
Normal file
35
dev-python/pyControl4/pyControl4-1.1.0.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# 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
|
||||
PYPI_NO_NORMALIZE=1
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Python 3 asyncio package for interacting with Control4 systems"
|
||||
HOMEPAGE="https://github.com/lawtancool/pyControl4 https://pypi.org/project/pyControl4/"
|
||||
|
||||
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/python-socketio[${PYTHON_USEDEP}]
|
||||
dev-python/websocket-client[${PYTHON_USEDEP}]
|
||||
dev-python/xmltodict[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
Reference in New Issue
Block a user