dev-python/sonarr: remove unused sonarr

This commit is contained in:
Andreas Billmeier 2022-10-17 23:56:14 +02:00 committed by Andreas Billmeier
parent 5730eed710
commit 7e9bf812f1
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 54 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 1483 Ebuilds in total, 1476 of them have in total 1486 (34 different) licenses assigned.
There are 1482 Ebuilds in total, 1475 of them have in total 1485 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|865|
|MIT|864|
|Apache-2.0|301|
|GPL-3|91|
|BSD|89|

View File

@ -1,3 +0,0 @@
DIST sonarr-0.3.0.tar.gz 8799 BLAKE2B 106afeda266eeb9baae7ad0bb52f8f5507ccc35378fd45edca1dcbf50d505170ab8925037ebe0c42c3c6c0e779d62ede6f2015a6f733d7ac81675f1a1ff4dc5b SHA512 8b0ca2a681fcb0063f3ee40661c36093e1dd9999db34a6b3507ad1a19132ee29e9a7808e28ac53f7be94fa127ffb0662fe525c499dbfeca5c1ba7f4ee4aafafe
EBUILD sonarr-0.3.0.ebuild 813 BLAKE2B c61bc8ae489aceddc45dd87925d3215857659cd70823e444d5ec5759d7477ada1924291bb4be6d7884a2e6ac41d9f32e037206029d4d423660f1b41379a9d56f SHA512 24a0f4c24238892df87096a3acfdef6e6452992f7b38696b2c002f05f8975e2d96d79c7ebe6fac5f0d1a9ed4f2460e20431098a3e32a09e7491dc00d256ef369
MISC metadata.xml 459 BLAKE2B 394bd1af6a986f2bdfb9600fc10c8cd7ed18db7f597b1d2e466ac200846ad09d455bd47b84147ec8a99340074921adbebcc2ba6212f4814754559a6b3307ef85 SHA512 e6ed87679c4194d11b4fb25b98f06086263dbf41d5e040255737ed6a195e762cf2e0733be3fb448511659c282d3a3f996f2d80789c76f8bf158f841406cdac18

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">sonarr</remote-id>
<maintainer status="unknown">
<email>chris@talkingtontech.com</email>
<name>Chris Talkington</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -1,34 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Asynchronous Python client for the Sonarr API."
HOMEPAGE="https://github.com/ctalkington/python-sonarr https://pypi.org/project/sonarr/"
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.md"
RDEPEND=">=dev-python/aiohttp-3.6.2[${PYTHON_USEDEP}]
>=dev-python/yarl-1.4.2[${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
}