summaryrefslogtreecommitdiff
path: root/dev-python/owslib
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-10-29 07:07:59 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-10-29 07:07:59 +0000
commit7b3196ae40be194e76de4ffc8b62f2c0faecd410 (patch)
tree15bbabb6ffbf686d8a8e5a63e6b1904a3fe3336d /dev-python/owslib
parentae93b32c928808b6976440052ec33868e6f55f88 (diff)
downloadbaldeagleos-repo-7b3196ae40be194e76de4ffc8b62f2c0faecd410.tar.gz
baldeagleos-repo-7b3196ae40be194e76de4ffc8b62f2c0faecd410.tar.xz
baldeagleos-repo-7b3196ae40be194e76de4ffc8b62f2c0faecd410.zip
Adding metadata
Diffstat (limited to 'dev-python/owslib')
-rw-r--r--dev-python/owslib/Manifest1
-rw-r--r--dev-python/owslib/owslib-0.35.0.ebuild45
2 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/owslib/Manifest b/dev-python/owslib/Manifest
index a1fe7f499194..d3f54d7ad4c2 100644
--- a/dev-python/owslib/Manifest
+++ b/dev-python/owslib/Manifest
@@ -1 +1,2 @@
DIST OWSLib-0.34.1.gh.tar.gz 1083473 BLAKE2B 7ebcaf9bc68f827a0c51670ef84b0de63bf4ed1d34271b236c50b2f97e72c637cbd9e7f57ad1044f3a74968d461cd1f1e2d1b2bdd360279870da6891c248aff4 SHA512 4e5eb97170ae49f63122b89922b50e34adcb992e6ebd0a99c22ec7a90fefab0ff77d120a78883bb804d1df0f17de88b2204c82be01c93f173735a8dbe65dd33a
+DIST OWSLib-0.35.0.gh.tar.gz 1083891 BLAKE2B e05c29e61f7e8810a847151c86e3e8e675b38fbc65fe0380d9096bbf7e3d42b43c5d13c2374d56be6ed39427c90dd4345c743c18656abadf623fed91e42af741 SHA512 d9b9075739e8a684ffd6ab738f857ef2cd6e17efbc368afb56f8b88f49368bf1ec52922ce9fa89fb5935bc5d11c23532175fd38baf74627a0eba3beabf0e658c
diff --git a/dev-python/owslib/owslib-0.35.0.ebuild b/dev-python/owslib/owslib-0.35.0.ebuild
new file mode 100644
index 000000000000..de836d46e6ed
--- /dev/null
+++ b/dev-python/owslib/owslib-0.35.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..14} )
+
+inherit distutils-r1
+
+MY_P=OWSLib-${PV}
+DESCRIPTION="Library for client programming with Open Geospatial Consortium web service"
+HOMEPAGE="
+ https://geopython.github.io/OWSLib/
+ https://github.com/geopython/owslib/
+ https://pypi.org/project/OWSLib/
+"
+SRC_URI="
+ https://github.com/geopython/${PN}/archive/${PV}.tar.gz
+ -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ dev-python/lxml[${PYTHON_USEDEP}]
+ dev-python/python-dateutil[${PYTHON_USEDEP}]
+ dev-python/pyyaml[${PYTHON_USEDEP}]
+ dev-python/requests[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/pillow[${PYTHON_USEDEP}]
+ )
+"
+
+EPYTEST_PLUGINS=( pytest-httpserver )
+distutils_enable_tests pytest
+
+python_test() {
+ epytest -o addopts= -m "not online"
+}