dev-python/pyControl4: drop 0.0.6

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 17:46:47 +01:00 committed by Andreas Billmeier
parent 1b55fd6c4a
commit 33fbff9ee8
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 2 additions and 34 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 1655 Ebuilds in total, 1644 of them have in total 1662 (42 different) licenses assigned.
There are 1654 Ebuilds in total, 1643 of them have in total 1661 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|959|
|Apache-2.0|346|
|Apache-2.0|345|
|GPL-3|106|
|BSD|90|
|LGPL-3|23|

View File

@ -1,32 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
PYPI_NO_NORMALIZE=1
inherit distutils-r1
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/xmltodict[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest