bump coronavirus-1.1.0

This commit is contained in:
Andreas Billmeier 2020-03-13 18:32:10 +01:00
parent 6a18fd38ff
commit c9952938e7
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -5,6 +5,7 @@
* bump aiounifi-15
* bump bellows-homeassistant-0.14.0
* bump bomradarloop-0.1.4
* bump coronavirus-1.1.0
2020-03-08
* bump frontend-20200306.0, remove olds

View File

@ -1,3 +1,5 @@
DIST coronavirus-1.0.1.tar.gz 2733 BLAKE2B 54844d28877f404a673849758c7adb194a9e0262cdc125b1af6a4a080cccb291b2c485adafb448cc9cef055e71ae04dad002966524fb53873fe996e98ace333f SHA512 a12707c86929b6bc9b190c5be20399af57e238d7a92344569c8d4ea3ab89686d1a77eb9dcb91b467c9c314ef0cdacb51a443ebd13728b154460ecdece4aa3c86
DIST coronavirus-1.1.0.tar.gz 3068 BLAKE2B ffbc6b76d0284a9c1f5bf5f95289becb44316171f57bf020ced425b61eea3b34afff00be8b4fb5d514a6f6818d357a3ca423ebbd1cfe6e99c5b3dd2dba4f9e27 SHA512 102769168288bae20b96343a8687d5f007e06241a77be06964d53427531ba48fba971e80ec2ac9f9e169164b477f9b14b8fc74ec64b9a86b5d8bc29a2a61a17d
EBUILD coronavirus-1.0.1.ebuild 703 BLAKE2B f6d7c95c144b81ffbd5abd5d595a803ac3979439151b2355746a7084824cad5b57a0892e3c2ab88a9f3fe55e162e78a7ff932d4d43fdf18bd9935bdf60e5764b SHA512 df6c73758e6de3817c29941273eaef4aa0b27cce7b8c5d02991ecf82318a74661aebb0e85e819c6a53d9f417f8740783ff9546240077d53f46e56f369c09c3d5
EBUILD coronavirus-1.1.0.ebuild 703 BLAKE2B f6d7c95c144b81ffbd5abd5d595a803ac3979439151b2355746a7084824cad5b57a0892e3c2ab88a9f3fe55e162e78a7ff932d4d43fdf18bd9935bdf60e5764b SHA512 df6c73758e6de3817c29941273eaef4aa0b27cce7b8c5d02991ecf82318a74661aebb0e85e819c6a53d9f417f8740783ff9546240077d53f46e56f369c09c3d5
MISC metadata.xml 456 BLAKE2B a0a342a501dd65ca7ec5ead633bf644f797c32a6ca6484ebf1abc7a156d80b50d964b575b21f6920b9924e35361da97d931203187913d8ef62dc0a243028b67c SHA512 3c0aff16b126c2039c615f3b65bbcda66be5c0a1171a436fb55e1c0bfac379e2ae1fd0f56ee9b3bf6e3cd835a2f3ac4bfeeb20b86d8f8a4a2a1eb1c0172505ee

View File

@ -0,0 +1,30 @@
# 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 getting Corona virus info."
HOMEPAGE="https://github.com/nabucasa/coronavirus https://pypi.org/project/coronavirus/"
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=""
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
}