From 207c7f2d022be5beaf8934602ff2190518e88be7 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 5 Feb 2023 09:34:41 +0100 Subject: [PATCH] dev-python/aio-geojson-client: add 0.18 Signed-off-by: Andreas Billmeier --- dev-python/aio-geojson-client/Manifest | 2 + .../aio-geojson-client-0.18.ebuild | 37 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 dev-python/aio-geojson-client/aio-geojson-client-0.18.ebuild diff --git a/dev-python/aio-geojson-client/Manifest b/dev-python/aio-geojson-client/Manifest index 23c048b11..329de156e 100644 --- a/dev-python/aio-geojson-client/Manifest +++ b/dev-python/aio-geojson-client/Manifest @@ -1,3 +1,5 @@ DIST aio-geojson-client-0.17.tar.gz 16496 BLAKE2B 5ba523f3cb4f907e4060c6fab12c1172f2bb0fb32794e6fd8ee2e916e26951e578afa45d2b45aae5f0c12ac992de323ae95e1e28bbf32a02110b919cf0f4bf27 SHA512 4959c512d5ca0c2046f95226f6ed6baebc53f84486aac9557417e02aa55b47d2e99cfda3d478cc987542f13caa2ed28364cd4717d590872b0053613b6221ab77 +DIST aio-geojson-client-0.18.tar.gz 16532 BLAKE2B d1e19e5ec06355918f4b1da728b6ddf65b2a194ba0e95393915de2dfb416cefcbb1a7b4dca9ab4b12a22ba9fb3df2f846018c541b8ad2ecc88541b3a63366571 SHA512 d440fa8051909d12eac762b34407a214229d66b70b45f3c3754c6a0ced498f50819d4ac72024e7a6c6b9d4c9d519eb1c8992b33c4eccebe26a096d03233beffe EBUILD aio-geojson-client-0.17.ebuild 894 BLAKE2B a3ba8fe8b71d999bc10ea126056d4140adc47d9e90b6748c47011c53e0529e59281a0c3f5b3858820c6d6ba3b8c437ebbb2180bbc9aa328c68631a0c155441f4 SHA512 f4e81d5fd8621f9cdea684929334812213e59b78a47288db768aa92504b6a2f838194c7eb3296575d1915317b5559138f905d6e5ded7da449ade52974068f4fb +EBUILD aio-geojson-client-0.18.ebuild 925 BLAKE2B 0dc0ac928875ee9b62b429870ccd29bb236b8a1a13b6f98a6d91b49416409b6231eaa9769831b3eb1b74c4c66b32f9630c4798d78988d33f1d64215194d604ba SHA512 1324f479caa0c7cc598ff6b1f01378d78e1dabba105d657c20f02f7620e7183e73db6b899a6bfe37f39b3bf68f5b2e7db0ff68cab459ee965955461b2ea13919 MISC metadata.xml 539 BLAKE2B 28131f1837484d4d7f0e0e8a234656fccbdd03ea3b249ecaa7d629e9f4ffc20d0096858288c1922d5ffb4b7a168346a11c7490a80cf7bc0796d6fd8a8e86e94c SHA512 28c759be7a5bb86d90bc77a4684be8c09309e668f9083eb1a1eb9cf4c1e969e4ee3dc1cf82a122226914c231ca2e29d3bc8ba102108bd30bda53095f6585aeab diff --git a/dev-python/aio-geojson-client/aio-geojson-client-0.18.ebuild b/dev-python/aio-geojson-client/aio-geojson-client-0.18.ebuild new file mode 100644 index 000000000..e228afdf4 --- /dev/null +++ b/dev-python/aio-geojson-client/aio-geojson-client-0.18.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="An async GeoJSON client library." +HOMEPAGE="https://github.com/exxamalte/python-aio-geojson-client https://pypi.org/project/aio-geojson-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 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND=">=dev-python/aiohttp-3.7.4[${PYTHON_USEDEP}] + >=dev-python/geojson-2.4.0[${PYTHON_USEDEP}] + >=dev-python/haversine-1.0.1[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + py.test -v -v || die +} + +distutils_enable_tests pytest