bump aio-georss-client-0.6

This commit is contained in:
Andreas Billmeier 2020-11-09 21:15:28 +01:00 committed by Andreas Billmeier
parent 1e3e00d638
commit 3c93b5fc89
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 40 additions and 0 deletions

View File

@ -9,6 +9,7 @@
* update pytest-6.1.2
* bump aioshelly-0.5.1
* update epson-projector-0.2.3
* bump aio-georss-client-0.6
2020-11-07
* update xknx-0.15.0-r1 (add a dep for standalone installation)

View File

@ -1,3 +1,5 @@
DIST aio-georss-client-0.5.tar.gz 17381 BLAKE2B 1c59019b85a20def7d4adb338e2e13c4c558f166b95eab0b8e00a2fa974715c61388ca3c8c01bba14dc2ca8ccc7fce407f38acb7c252a92eb92b0f6c2e719478 SHA512 5389d3f73e1a8ebbcd80ad3be10536b9575de5bced060ae1b26d1a1bd948081d1539f99d305915f27aa297ee8d6cbefed84f4485760622dded9399950749a656
DIST aio-georss-client-0.6.tar.gz 17785 BLAKE2B 91f6296f8781d6b3f8ee870d386a18613c4f1fd95a206adfbeadbada0a8f7e7bea48b83d02874e0a76c0d4a9376278afa567eeee2069501427c1b4208c1db08e SHA512 db15eb32d3a4c9521dcec8c4d0ba15a8b598251efe85249bcbe96f47957e900486b6b6b91d71e4de5fa3d0a9c903caf882ec2e71f8f8a7abe0a55dbc2e090001
EBUILD aio-georss-client-0.5.ebuild 976 BLAKE2B 5e6a59c6abb1e1e08e6c38403123588af8d97d8d14a9ca56e5c2916a9ed3df462c60af72fb96c865c65bac534e33aa6a7cec5727112103b092b817a325dda385 SHA512 73717f49d84153df66e868be0bbccf62fb29a624c4d9266ccbe47c22d759ae33bac9c20f87d7a06c3de54ce8fb4903f84a3cff84eec786fc79f921801d5d0d77
EBUILD aio-georss-client-0.6.ebuild 976 BLAKE2B 5e6a59c6abb1e1e08e6c38403123588af8d97d8d14a9ca56e5c2916a9ed3df462c60af72fb96c865c65bac534e33aa6a7cec5727112103b092b817a325dda385 SHA512 73717f49d84153df66e868be0bbccf62fb29a624c4d9266ccbe47c22d759ae33bac9c20f87d7a06c3de54ce8fb4903f84a3cff84eec786fc79f921801d5d0d77
MISC metadata.xml 461 BLAKE2B 01b236eef845a1c23654eb92fc09c948b8c1a3dbd3daba3c2ee153e8513c84967e694e10e147035fcf7381ea1f98fce2fb6c750315d079391d71f087df99902f SHA512 371f0d93717d67be47ee10f646f6d343fba1ebdc3a46a1862aa42abc1922779a785c929e5b9e3bffede139ef3e352a916190b2ec45b7f6083e2f5fcbce4eb52f

View File

@ -0,0 +1,37 @@
# 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="An async GeoRSS client library."
HOMEPAGE="https://github.com/exxamalte/python-aio-georss-client https://pypi.org/project/aio-georss-client/"
MY_PN=${PN//-/_}
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
>=dev-python/haversine-1.0.1[${PYTHON_USEDEP}]
>=dev-python/xmltodict-0.12.0[${PYTHON_USEDEP}]
>=dev-python/dateparser-0.7.0[${PYTHON_USEDEP}]"
BDEPEND="${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
}