diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2021-10-24 08:07:15 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2021-10-24 08:13:01 +0300 |
commit | cf8627998040b708cfcd27bad7ec9603e889854b (patch) | |
tree | 2ba4d41a0a76bb017c5cdbd591f233245b1e6c04 /dev-python/owslib | |
parent | dev-python/mechanize: drop 0.4.6 (diff) | |
download | gentoo-cf8627998040b708cfcd27bad7ec9603e889854b.tar.gz gentoo-cf8627998040b708cfcd27bad7ec9603e889854b.tar.bz2 gentoo-cf8627998040b708cfcd27bad7ec9603e889854b.zip |
dev-python/owslib: drop 0.20.0
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/owslib')
-rw-r--r-- | dev-python/owslib/Manifest | 1 | ||||
-rw-r--r-- | dev-python/owslib/owslib-0.20.0.ebuild | 49 |
2 files changed, 0 insertions, 50 deletions
diff --git a/dev-python/owslib/Manifest b/dev-python/owslib/Manifest index 052cb195f61d..7ddc8b754659 100644 --- a/dev-python/owslib/Manifest +++ b/dev-python/owslib/Manifest @@ -1,2 +1 @@ -DIST owslib-0.20.0.tar.gz 912319 BLAKE2B 9f6e44f76554d67756839bfad1cdce6e2e7a4db6c3517ed308256745a3ea1df77488718f307bcd59dfcae7bab7801ba1974131f358db1bd070846640ccf08ada SHA512 c30e14d0a310617d2dbcca436f38d4a942b8c5efb96506554e650b20b34580fd0119ae6bf17892bb09ceff7141b9cbfd32deb582d14d81b6518dbbc223116d07 DIST owslib-0.25.0.tar.gz 936550 BLAKE2B 9cb34a6c7c93dc89a466c13351d457c9372d405055fa3f6cec9c05c231e76762168c6813085523037b3a6439100500c46c1044569bd2bb598c3e2e63757d8b86 SHA512 058108cf77197ce24793608869d56bf0467230f5f231ac9ba48445f2e02d07ea1e26be03ad6967504a1e625008ae2768ed2a663f3b7a49dcea410ee4a8b40cec diff --git a/dev-python/owslib/owslib-0.20.0.ebuild b/dev-python/owslib/owslib-0.20.0.ebuild deleted file mode 100644 index cbb73ccd6a1a..000000000000 --- a/dev-python/owslib/owslib-0.20.0.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Library for client programming with Open Geospatial Consortium web service" -HOMEPAGE="https://geopython.github.io/OWSLib/" -SRC_URI="https://github.com/geopython/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -S="${WORKDIR}/OWSLib-${PV}" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="test" - -RDEPEND=" - dev-python/lxml[${PYTHON_USEDEP}] - dev-python/pyproj[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - dev-python/pytz[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] -" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - ) -" - -RESTRICT="test" # tests require WAN access -PROPERTIES="test_network" - -PATCHES=( "${FILESDIR}/${P}-no-privacybreach.patch" ) - -src_prepare() { - sed -e '/addopts/d' -i tox.ini || die - distutils-r1_src_prepare -} - -python_test() { - epytest --tb=native --ignore=setup.py --doctest-modules --doctest-glob 'tests/**/*.txt' - #"${EPYTHON}" "${S}/setup.py" test || die -} |