dev-python/twinkly-client: remove unused twinkly-client

This commit is contained in:
Andreas Billmeier 2022-10-18 01:02:37 +02:00 committed by Andreas Billmeier
parent 92df7d75d9
commit 8a4b9900a7
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 53 deletions

View File

@ -547,12 +547,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 1466 Ebuilds in total, 1459 of them have in total 1469 (34 different) licenses assigned.
There are 1465 Ebuilds in total, 1458 of them have in total 1468 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|854|
|Apache-2.0|298|
|Apache-2.0|297|
|GPL-3|91|
|BSD|87|
|LGPL-3|22|

View File

@ -1,3 +0,0 @@
DIST twinkly-client-0.0.2.tar.gz 2648 BLAKE2B 3e79900f29dac3ec22bf89343c61321f645f62481a7e87f6710512643601a25a2542341a19fdc25da617c52dd19ee08948b887e3511a53bef7700bd84459e1ee SHA512 94df6abf42a7d72c54e618eafb776860414c8261af5b2329e80fac6409c00119a0fde6a0c1d60a037d5bc9c965211499703a32f0d0bd7d4bb9228061cf800f3a
EBUILD twinkly-client-0.0.2.ebuild 783 BLAKE2B 42757689717414800e342e0b3fdc3f69b8c17e2cb7bd52e7322fea1eeac83075a12d9bf5014f366523b3431e4ea80ad79f6699afd5c847209ce43d7941c0b829 SHA512 7b074f9316cbca7bb877354a0913d417293bcf538116a1402fa4a1afde3c6c29cad0ab827e48d26eaada477981199d9ae0a3adf105738140c292b48ea993c6b7
MISC metadata.xml 461 BLAKE2B cc1d7cfa586df8a8e0c4a715907a6e0b0e252571d808065fc6a09a1cd4499c581f9e6a4cb4e0747705f84ca73cac68b02359cf82e45e3673dfe8e57fe087b0fc SHA512 db389af67be06413de7dc1ea085f04b4b37f215ac5d72beb3833d3677da24affa34af4f08789807a137b7871ee9e2882072aab6f82d539307b536ba273f7886a

View File

@ -1,15 +0,0 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">twinkly-client</remote-id>
<maintainer status="unknown">
<email>py-twinkly-client@torick.net</email>
<name>dr1rrb</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -1,33 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="A package to communicate with Twinkly LED strings"
HOMEPAGE="https://github.com/dr1rrb/py-twinkly-client https://pypi.org/project/twinkly-client/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${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
}