bump sonarr-0.2.3

This commit is contained in:
Andreas Billmeier 2020-07-11 11:08:21 +02:00 committed by Andreas Billmeier
parent b1ad2028f2
commit 0ebf7c6582
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 0 deletions

View File

@ -13,6 +13,7 @@
* bump pre-commit-2.6.0
* update pytile-4.0.0
* bump aresponses-2.0.0
* bump sonarr-0.2.3
2020-06-29
* bump aioguardian-1.0.0

View File

@ -1,5 +1,7 @@
DIST sonarr-0.2.1.tar.gz 7390 BLAKE2B 07f6c298f76a24207a6c434436ec2bcee15b4f84203f26e62f1b6be4ff80a71155534b38889dffc136782f99f7a3318b5edb6f91f39505d81420f6482c4cd6f9 SHA512 a9969a84c0fbfd893ff227386e0151788de6fc166a39031b1e7e522686300be3325bc4b6bc2fef53b16636fd47bfeb950332ec5023f7b76d61cac00cd8c2bb0d
DIST sonarr-0.2.2.tar.gz 8261 BLAKE2B 4c38eb973b9be4e002b1c3f83154d6da4994cc1df4e60f9f016efe588ba7b3b405843a8bf1d130b592e5dda2dbaff0bc61500c4ceb88760f8ddca1337e3ac422 SHA512 800ca8199c06e7a079ef356050c4740873236682a18277aa3d9527f4f50944efd67010004e505385c35dac43e59299aa2ffd8fb18c3e54c2d6e30680854f7aab
DIST sonarr-0.2.3.tar.gz 8226 BLAKE2B 443257a1a7fbb1c85630e7042b10e80a0eb0906006f56dd0e5054c1ffa8337c2f6bedec069b8dc8a53dd27db9c12b4f6e4502a29a8354daa5b888939d6181961 SHA512 3916b62de3be0a5ba56863730858bfdcda7b68c5e3381dcc86f41b53366d1d59a8aa5e95651901cd0aaa20ebf7eb98025904baa29179f34d7f1e5621305f948e
EBUILD sonarr-0.2.1.ebuild 777 BLAKE2B 4d059551fcdae21c5684eb67b69a689f5bfc8d4a44d75a076ca1eefe32185d133d915f9c7168c8f534d5089c456329955644e1d804ddac9d555025d7d5f242ba SHA512 ba1946bba79d5804fb9686aa907515951cf948e25cb27375fcaee248b970a57324661c664af9ba6b36aeb972674e111080fd8d507052c46dfb0b0bfb9f08b173
EBUILD sonarr-0.2.2.ebuild 777 BLAKE2B 4d059551fcdae21c5684eb67b69a689f5bfc8d4a44d75a076ca1eefe32185d133d915f9c7168c8f534d5089c456329955644e1d804ddac9d555025d7d5f242ba SHA512 ba1946bba79d5804fb9686aa907515951cf948e25cb27375fcaee248b970a57324661c664af9ba6b36aeb972674e111080fd8d507052c46dfb0b0bfb9f08b173
EBUILD sonarr-0.2.3.ebuild 777 BLAKE2B 4d059551fcdae21c5684eb67b69a689f5bfc8d4a44d75a076ca1eefe32185d133d915f9c7168c8f534d5089c456329955644e1d804ddac9d555025d7d5f242ba SHA512 ba1946bba79d5804fb9686aa907515951cf948e25cb27375fcaee248b970a57324661c664af9ba6b36aeb972674e111080fd8d507052c46dfb0b0bfb9f08b173
MISC metadata.xml 459 BLAKE2B 394bd1af6a986f2bdfb9600fc10c8cd7ed18db7f597b1d2e466ac200846ad09d455bd47b84147ec8a99340074921adbebcc2ba6212f4814754559a6b3307ef85 SHA512 e6ed87679c4194d11b4fb25b98f06086263dbf41d5e040255737ed6a195e762cf2e0733be3fb448511659c282d3a3f996f2d80789c76f8bf158f841406cdac18

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
}