dev-python/dwdwfsapi: add 1.0.6, fix 1.0.5
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
DIST dwdwfsapi-1.0.5.tar.gz 9638 BLAKE2B 7135d78155010ace26941d7324daf511d8aa96e1fe6f64fdc8aa6252b5ea7814cbda9ff0dd2fdaceb6aea0a7de01b7a768e124f02648256b5063df74600f2102 SHA512 bc2e95411e1255d3a1626940a3676280ff087a5c58c2c502844e26587626bcc9ddfe08527254502e616e9511c99cb7f72bb18cc4d9e9bca95d47d81e7401e753
|
||||
EBUILD dwdwfsapi-1.0.5.ebuild 960 BLAKE2B ea031e95958000f73831f39b81e082e3b00315a9e889428124013e49d2f8de55dc716339d19af03f70f59076f1483b57dc5dfc7d6ba5d2f63d9428c32212fef1 SHA512 42f243f1af57baf700918f2026bd2d6f3bda1fdfbd4aabd351e0ecec337ceafa16938c476d3af4bf5fb4a2a954d2a69f39e8cc8363a16fb1eab1ad6f0fa82776
|
||||
DIST dwdwfsapi-1.0.6.tar.gz 9053 BLAKE2B 8c70bf2147a92e05b5a59a7f40714f430ac87938a9d3409bf92d97f4b6d1222311da415fa53e8e0f5e9eb0517db2c28591e4c9547ad8ff625f40080ef81c2ce9 SHA512 e9f417c11081d15bc489492c21e92f9d1e230ea171a68aa27361b56014455793d8b5f4f489d460f0d265cfee586f080a1a63fc335044d935d290af2b51a0d082
|
||||
EBUILD dwdwfsapi-1.0.5.ebuild 905 BLAKE2B e51140dd5a56fc6830d65ae505ee480e562078d52f1553bfdb5e3407de2703c5441b243a709e23cd4e25da4ff32e9e2de4204c5afe82a8493968c9b615791762 SHA512 da26296059bd127b81bb852123e42975d4567b180175d64bd4cd0d0ac47b5b78d3f8b44e3d840683f7b3216085823b7a8db1f4f9828948f74b0fad06504cad86
|
||||
EBUILD dwdwfsapi-1.0.6.ebuild 905 BLAKE2B e51140dd5a56fc6830d65ae505ee480e562078d52f1553bfdb5e3407de2703c5441b243a709e23cd4e25da4ff32e9e2de4204c5afe82a8493968c9b615791762 SHA512 da26296059bd127b81bb852123e42975d4567b180175d64bd4cd0d0ac47b5b78d3f8b44e3d840683f7b3216085823b7a8db1f4f9828948f74b0fad06504cad86
|
||||
MISC metadata.xml 516 BLAKE2B c66e0570e600fdfa81f4f3c97b58e814542aa0bbb52e97188fdd0dc35503dd83e5107bb6442b45dbf58a1e640e907e4f30d0a644fd01b35df43dea4cfa8cb1dd SHA512 4e2f8a75588d614a3d8c35eaabb9778d5c6e56fa1c3bb2e483a4d457f96038c2fefc4af80b08697fb0af885af168a5fffb6159a22162df8a93f109feac4618bc
|
||||
|
||||
@@ -1,15 +1,14 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Python client to retrieve data provided by DWD via their geoserver WFS API"
|
||||
HOMEPAGE="https://github.com/stephan192/dwdwfsapi https://pypi.org/project/dwdwfsapi/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
@@ -26,7 +25,6 @@ RDEPEND=">=dev-python/requests-2.23.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/urllib3-1.25.8[${PYTHON_USEDEP}]
|
||||
<dev-python/urllib3-2[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
36
dev-python/dwdwfsapi/dwdwfsapi-1.0.6.ebuild
Normal file
36
dev-python/dwdwfsapi/dwdwfsapi-1.0.6.ebuild
Normal file
@@ -0,0 +1,36 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Python client to retrieve data provided by DWD via their geoserver WFS API"
|
||||
HOMEPAGE="https://github.com/stephan192/dwdwfsapi https://pypi.org/project/dwdwfsapi/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND=">=dev-python/requests-2.23.0[${PYTHON_USEDEP}]
|
||||
<dev-python/requests-3[${PYTHON_USEDEP}]
|
||||
>=dev-python/ciso8601-2.1.3[${PYTHON_USEDEP}]
|
||||
<dev-python/ciso8601-3[${PYTHON_USEDEP}]
|
||||
>=dev-python/urllib3-1.25.8[${PYTHON_USEDEP}]
|
||||
<dev-python/urllib3-2[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
Reference in New Issue
Block a user