update aio-georss-gdacs-0.4

This commit is contained in:
Andreas Billmeier 2020-11-09 21:17:18 +01:00 committed by Andreas Billmeier
parent 3c93b5fc89
commit fea11a121c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 39 additions and 0 deletions

View File

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

View File

@ -1,3 +1,5 @@
DIST aio-georss-gdacs-0.3.tar.gz 7063 BLAKE2B 72041b40074aba4c833f0b923adc79dee88a1527075a29d10f99dbac7af8a5fc367397a1c59e87feed44264e5140089383dc35bab76ee8c37a5dac2671ed0db1 SHA512 cb523347b8f5520c52a7c89a8ff45b3de331455b873abf7cc51952b72a0cefeb063b1fe2c3030050e52f2c66213a1b5a935080468c16ee597b38fd8d911ec39c
DIST aio-georss-gdacs-0.4.tar.gz 7175 BLAKE2B 1c8117a846b02aef4085900658255ac7ef0e2dd25c81b942b3a7a2090114da453d0a4d27d1c74551da5aed3bc0fb518935c06e92982d50df166515907695c9f5 SHA512 dec49543051777d2e66afe18df471bba4fa342f1f4f5fba9269aeddf3399935b7a93a734fb40fef864027bf8530e75a962082bbfec6a5e0ac2246e830af15be1
EBUILD aio-georss-gdacs-0.3.ebuild 910 BLAKE2B d6b216ede1bb97be0b4bf936f072e95172a637cbfd2ab711b39c5d4fdd7751b435fe022a1b128a8ff34595a10a825845f4a83bc8f56a0535156973fcf3ec668d SHA512 dab3e0f4f684478fb748fbbd4b21e05947a72f7c66590692206a7e423b9862f5003d89e6b50678455a70353920b39a47890f57344d55bc6e6f6bc9ac9d42e360
EBUILD aio-georss-gdacs-0.4.ebuild 899 BLAKE2B 0a603f0b1425194ea71f3d594997368ebfb827f46d42704bd258f923c639a471462dc12efef647d068939d8eda9160ee04a5858594b030e8b4a8eafb47cd17b9 SHA512 32ea5f02843774df5a5de817bfbf9b260619145ddbcb088a38f31e9ea3f3783acd0cb751b94d93dd40d4c7d87ea01ccea30b8f2c943b1864364a5dacfe840d4a
MISC metadata.xml 460 BLAKE2B 1d394318faf8d165bba2dc9ac7a1500bc280d56755f4a049df9ca79b182f5fb1c817fe9a722f7b8bf9ed3a04ea5a59e8f1abb81a680d156fd5fcce8aeb97464c SHA512 a5b206bbd672e174d5f48c24c13c44d39aa52f43cff771ecbdba1b4e17c79ffaf4023527697476a8c56bb93bcc7d16dde6a4ced141b45a948e4ed5eea567bf29

View File

@ -0,0 +1,36 @@
# 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
MY_PN=${PN//-/_}
DESCRIPTION="An async GeoRSS client library for GDACS feeds."
HOMEPAGE="https://github.com/exxamalte/python-aio-georss-gdacs https://pypi.org/project/aio-georss-gdacs/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/aio-georss-client-0.6[${PYTHON_USEDEP}]
>=dev-python/dateparser-0.7.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
S="${WORKDIR}/${MY_PN}-${PV}"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}