diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-02-20 15:58:27 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-02-20 16:22:10 +0100 |
commit | f9c14d7e8806c9fc6bc93f89e1e239bb9c8c6492 (patch) | |
tree | c5acf759547958c31c070c72f43e1f01f43fc91c /dev-python/owslib | |
parent | dev-python/python-swiftclient: Bump to 4.2.0 (diff) | |
download | gentoo-f9c14d7e8806c9fc6bc93f89e1e239bb9c8c6492.tar.gz gentoo-f9c14d7e8806c9fc6bc93f89e1e239bb9c8c6492.tar.bz2 gentoo-f9c14d7e8806c9fc6bc93f89e1e239bb9c8c6492.zip |
dev-python/owslib: Bump to 0.28.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/owslib')
-rw-r--r-- | dev-python/owslib/Manifest | 1 | ||||
-rw-r--r-- | dev-python/owslib/owslib-0.28.0.ebuild | 47 |
2 files changed, 48 insertions, 0 deletions
diff --git a/dev-python/owslib/Manifest b/dev-python/owslib/Manifest index ecaeb3f7dd0c..0d441a46522b 100644 --- a/dev-python/owslib/Manifest +++ b/dev-python/owslib/Manifest @@ -1 +1,2 @@ +DIST OWSLib-0.28.0.gh.tar.gz 951384 BLAKE2B f3c69f9a2526d54c650fd37dd6e7d55b37b6cbc503d08105a1c7e685ebea76cb7471f6de634947b42a080535fbdbb5262b30771d22e32c977f2a579fe2bdb62c SHA512 4a5002a05c1616ca382aa85561cee950c707488feb37f0f29232758159abcef8545980361cb976240e9026937557ab349764f84c95091f9f3df8698498f47fde DIST owslib-0.27.2.gh.tar.gz 949148 BLAKE2B 2e12b43de3c3c362b03af15c93fe268e9ad8dd8647a18a8ef978203db896db65dd26cd20d6d58214880248593589604f764887b50c9eb8695d8e51accef3dfe8 SHA512 02c70731ef92783d53b8f0dff2cec7d28d14ac08b0a4b5090183f9eacf156d539c823fcd2ae480c07447e901697de498cdf2aaf27c8b6d46fa4cf8eb3679ceee diff --git a/dev-python/owslib/owslib-0.28.0.ebuild b/dev-python/owslib/owslib-0.28.0.ebuild new file mode 100644 index 000000000000..18d5984e0d59 --- /dev/null +++ b/dev-python/owslib/owslib-0.28.0.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) + +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" +RESTRICT="test" +PROPERTIES="test_network" + +RDEPEND=" + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/pillow[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_test() { + epytest -o addopts= +} |