add sonarr-0.2.1

This commit is contained in:
Andreas Billmeier 2020-05-30 19:17:52 +02:00 committed by Andreas Billmeier
parent 250c2105e5
commit df00042d6e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -6,6 +6,7 @@
* update elkm1-lib-0.7.18
* bump youtube_dl-2020.5.29
* bump plexwebsocket-0.0.10
* add sonarr-0.2.1
2020-06-29
* fix netifaces version typo in xknx

View File

@ -0,0 +1,3 @@
DIST sonarr-0.2.1.tar.gz 7390 BLAKE2B 07f6c298f76a24207a6c434436ec2bcee15b4f84203f26e62f1b6be4ff80a71155534b38889dffc136782f99f7a3318b5edb6f91f39505d81420f6482c4cd6f9 SHA512 a9969a84c0fbfd893ff227386e0151788de6fc166a39031b1e7e522686300be3325bc4b6bc2fef53b16636fd47bfeb950332ec5023f7b76d61cac00cd8c2bb0d
EBUILD sonarr-0.2.1.ebuild 777 BLAKE2B 4d059551fcdae21c5684eb67b69a689f5bfc8d4a44d75a076ca1eefe32185d133d915f9c7168c8f534d5089c456329955644e1d804ddac9d555025d7d5f242ba SHA512 ba1946bba79d5804fb9686aa907515951cf948e25cb27375fcaee248b970a57324661c664af9ba6b36aeb972674e111080fd8d507052c46dfb0b0bfb9f08b173
MISC metadata.xml 459 BLAKE2B 394bd1af6a986f2bdfb9600fc10c8cd7ed18db7f597b1d2e466ac200846ad09d455bd47b84147ec8a99340074921adbebcc2ba6212f4814754559a6b3307ef85 SHA512 e6ed87679c4194d11b4fb25b98f06086263dbf41d5e040255737ed6a195e762cf2e0733be3fb448511659c282d3a3f996f2d80789c76f8bf158f841406cdac18

View File

@ -0,0 +1,15 @@
<?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

@ -0,0 +1,31 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
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 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="~dev-python/aiohttp-3.6.2[${PYTHON_USEDEP}]
~dev-python/yarl-1.4.2[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
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
}