dev-python/pysonos: remove unused pysonos

This commit is contained in:
Andreas Billmeier 2022-10-17 07:23:38 +02:00 committed by Andreas Billmeier
parent bacf26f331
commit d55b469a6b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 56 deletions

View File

@ -547,11 +547,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 1523 Ebuilds in total, 1516 of them have in total 1527 (34 different) licenses assigned.
There are 1522 Ebuilds in total, 1515 of them have in total 1526 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|892|
|MIT|891|
|Apache-2.0|307|
|GPL-3|93|
|BSD|89|

View File

@ -1,3 +0,0 @@
DIST pysonos-0.0.53.tar.gz 691550 BLAKE2B 24cbda15f2f2f860074d77d71620192d802d26680612d1c929db72f5746c35193aa6ef638be92fa002f78bd29372039b2fc03f92889d091c30fb11ffec93dbfd SHA512 9959b21cce2659852e02607d3d68fd48e83bbe7788e0c88ce05bc5ec83631d62507d47ff5a7aed683f8648fed978fe3c2dfd7623499082e7ecee77c06c7c1c2a
EBUILD pysonos-0.0.53.ebuild 876 BLAKE2B c1d5820a93e042198e899add274fd21cfc4382a363c2e630c26331db4359b091288c847922c634a6f9b70f86ba93bdfd4e089ff0d445f98a53ec7a49d914758e SHA512 a171f6e4500fd8fce739605bd397fed58a6447d8937a66691a5c94eb06d9aa38471fcc1c28d26bddcdebba11b1fb1b55cccf065e817229d0941961ccbee620f0
MISC metadata.xml 457 BLAKE2B 7b7f36b326f70aaf508b4541c4ae79e67d793f56a752feb2c50a4d5eb1e34d03d9788d0edb5899dd7e28f74c3e9e4fa3920d73d924568c4ba2d0769f50d9f973 SHA512 9a2f505602dab7863b319a093764c0bade7467e36cbb30e0cf1e0af04e2ca7ab30674d7d3f65f40d9788e831f1791b59473dc6a7ea35b90e3738049e37a2572a

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">pysonos</remote-id>
<maintainer status="unknown">
<email>amelchio@nogoto.net</email>
<name>Anders Melchiorsen</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -1,36 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="A SoCo fork with fixes for Home Assistant."
HOMEPAGE="https://github.com/amelchio/pysonos https://pypi.org/project/pysonos/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 x86 amd64-linux x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND="dev-python/ifaddr[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/xmltodict[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/requests-mock[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}