bump coronavirus-1.1.1

This commit is contained in:
Andreas Billmeier 2020-06-11 09:08:24 +02:00 committed by Andreas Billmeier
parent b6547b5dcb
commit 7ddbd1e407
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -10,6 +10,7 @@
* bump pre-commit-2.4.0
* bump pre-commit-2.5.0
* bump hass-nabucasa-0.34.6
* bump coronavirus-1.1.1
2020-06-07 homeassistant-0.110.5
* fix crashed gitea 3:)

View File

@ -1,5 +1,7 @@
DIST coronavirus-1.0.1.tar.gz 2733 BLAKE2B 54844d28877f404a673849758c7adb194a9e0262cdc125b1af6a4a080cccb291b2c485adafb448cc9cef055e71ae04dad002966524fb53873fe996e98ace333f SHA512 a12707c86929b6bc9b190c5be20399af57e238d7a92344569c8d4ea3ab89686d1a77eb9dcb91b467c9c314ef0cdacb51a443ebd13728b154460ecdece4aa3c86
DIST coronavirus-1.1.0.tar.gz 3068 BLAKE2B ffbc6b76d0284a9c1f5bf5f95289becb44316171f57bf020ced425b61eea3b34afff00be8b4fb5d514a6f6818d357a3ca423ebbd1cfe6e99c5b3dd2dba4f9e27 SHA512 102769168288bae20b96343a8687d5f007e06241a77be06964d53427531ba48fba971e80ec2ac9f9e169164b477f9b14b8fc74ec64b9a86b5d8bc29a2a61a17d
DIST coronavirus-1.1.1.tar.gz 3102 BLAKE2B 6eb35a3c478b2d6b0f93b1459e67d7324ba2db6e31c5a4b207bc6d849e1af76ea87497229bed5ce8e5f667c5ca09ee38b290dc2e683d5ec6f5ceac19237fabcd SHA512 3b290081f508b97b8ad4a29c534bd7312ba1cbbf0f55966596c31c67d976654431aa943a3c24cbedfe6271dd68c7ccccd174bf2545eee1152d316f4396e7d0d9
EBUILD coronavirus-1.0.1.ebuild 703 BLAKE2B f6d7c95c144b81ffbd5abd5d595a803ac3979439151b2355746a7084824cad5b57a0892e3c2ab88a9f3fe55e162e78a7ff932d4d43fdf18bd9935bdf60e5764b SHA512 df6c73758e6de3817c29941273eaef4aa0b27cce7b8c5d02991ecf82318a74661aebb0e85e819c6a53d9f417f8740783ff9546240077d53f46e56f369c09c3d5
EBUILD coronavirus-1.1.0.ebuild 703 BLAKE2B f6d7c95c144b81ffbd5abd5d595a803ac3979439151b2355746a7084824cad5b57a0892e3c2ab88a9f3fe55e162e78a7ff932d4d43fdf18bd9935bdf60e5764b SHA512 df6c73758e6de3817c29941273eaef4aa0b27cce7b8c5d02991ecf82318a74661aebb0e85e819c6a53d9f417f8740783ff9546240077d53f46e56f369c09c3d5
EBUILD coronavirus-1.1.1.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
}