update accuweather-0.0.10

This commit is contained in:
Andreas Billmeier 2020-09-05 14:37:58 +02:00 committed by Andreas Billmeier
parent 1157d73db2
commit 5db34eb07c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 38 additions and 0 deletions

View File

@ -37,6 +37,7 @@
* bump home-assistant-frontend-20200904.0 (new EAPI="7" build)
* rework the older home-assistant-frontend to EAPI="7" DEPS
* update gios-0.1.4
* update accuweather-0.0.10
2020-09-01
* bump xknx-0.13.0

View File

@ -1,3 +1,5 @@
DIST accuweather-0.0.10.tar.gz 9109 BLAKE2B d7551852b71870f219d4c560bc9f88be4b1ed13986e9e3eded55dc814beb1d7da101ca773eae8389328ce57442f2f5d8591db72df78c35dd7b4aa25d43ae3ec6 SHA512 9adba6470a2c573235136e5f59908492412022750c55f10e9bc863bed2099ffc54c1b80b9a36f953c092272099055ba2e0ce801526ebee1ff6eaac3e61175bb1
DIST accuweather-0.0.9.tar.gz 5033 BLAKE2B 6343abc14e9872133634fb9e05f96409259154282fa6203528261a87d171e67b9de45e27a57d6333222de65d0e2b75573f6be8e7dbb3055492e4cb7076e52b55 SHA512 3d033586c153446a0c47003f85f5be5a68ce60c915c182dd2c0fd5cce18fd3d561117dd4df1c99315a1e7e61a1ba364eea6d859d50b84479b6b35b49e98d7621
EBUILD accuweather-0.0.10.ebuild 967 BLAKE2B 534a1549862056ed73b07e772aa10b3d9257ce767d4aff040c16bbd306f06a90e08c8ac56ae3969d082f9de34cda6c0023efdf631d314d9adaee1f265132e83f SHA512 fa1a2300db5de374fde07c685c792521afd8e71aef631f6a625853462cf5c86f23619ab87d42bcffaf5deef84815df73131dbe6ac47ad9d1b8932492464d66d4
EBUILD accuweather-0.0.9.ebuild 972 BLAKE2B 273a06d684bae29b627652aea09c30b1fb10d4afa6d8d67e8747ee66e849ebb1eca5f97f0c0614195ec54b2e401db78b695e289c1b10d97f7765ded7125961c9 SHA512 e98eb63eb1972cfcef25cc0b4684721b7eeafaec2cf299083853bb14177421e3e850f8ae732e5c135da2e852bd1c1179266b5417d731863c593157ad65714f09
MISC metadata.xml 462 BLAKE2B 4759dcb7911d04c23aa27c347d213f8c8d27feb685de4e3671248e6a02cc91dcaccbb474651d78dd7b5ead3412c607426e411157db1f3d864f126745e0e4c299 SHA512 6a659ba2d37cde2e49b8db68294c280742fb0539921d7af6fdde59ea4c1fe8f6c661ba6c1e4b0bf28fc7c0c5d7c6da8fbb779c0e74f62efe93d23e8acdb1da04

View File

@ -0,0 +1,35 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="Python wrapper for getting weather data from AccuWeather servers."
HOMEPAGE="https://github.com/bieniu/accuweather https://pypi.org/project/accuweather/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="${REDEPEND}
dev-python/asynctest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-trio[${PYTHON_USEDEP}]
dev-python/pytest-tornasync[${PYTHON_USEDEP}]
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
}