Skip to content
Commits on Source (2)
owslib (0.18.0-2) UNRELEASED; urgency=medium
owslib (0.18.0-2) unstable; urgency=medium
* Team upload.
* Bump Standards-Version to 4.4.0, no changes.
* Drop Python 2 support.
(closes: #937226)
-- Bas Couwenberg <sebastic@debian.org> Wed, 10 Jul 2019 18:47:53 +0200
-- Bas Couwenberg <sebastic@debian.org> Fri, 13 Sep 2019 18:26:23 +0200
owslib (0.18.0-1) unstable; urgency=medium
......
......@@ -6,47 +6,23 @@ Section: python
Priority: optional
Build-Depends: debhelper (>= 9),
dh-python,
python-setuptools,
python-dateutil,
python-pytest,
python-tz,
python-all,
python-requests,
python3-setuptools,
python3-all,
python3-dateutil,
python3-pytest,
python3-tz,
python3-all,
python3-requests,
python3-sphinx
python3-setuptools,
python3-sphinx,
python3-tz
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/debian-gis-team/owslib
Vcs-Git: https://salsa.debian.org/debian-gis-team/owslib.git
Homepage: https://geopython.github.com/OWSLib/
Package: python-owslib
Architecture: all
Depends: ${python:Depends},
${misc:Depends},
python-lxml
Suggests: owslib-doc
Description: Client library for Open Geospatial (OGC) web services (Python 2)
OWSLib is a Python package for client programming with Open Geospatial
Consortium (OGC) web service (hence OWS) interface standards, and their
related content models.
.
Full documentation is available at https://geopython.github.io/OWSLib
.
OWSLib provides a common API for accessing service metadata and wrappers
for numerous OGC Web Service interfaces.
.
This package provides the Python 2 version of the library.
Package: python3-owslib
Architecture: all
Depends: ${python3:Depends},
${misc:Depends},
python3-lxml
Depends: python3-lxml,
${python3:Depends},
${misc:Depends}
Suggests: owslib-doc
Description: Client library for Open Geospatial (OGC) web services (Python 3)
OWSLib is a Python package for client programming with Open Geospatial
......
......@@ -2,7 +2,6 @@
# -*- makefile -*-
export PYBUILD_NAME=owslib
export PYBUILD_AFTER_BUILD_python3 = cd docs;make html
include /usr/share/dpkg/pkg-info.mk
......@@ -10,10 +9,15 @@ BUILD_DATE = $(shell LC_ALL=C date -u "+%B %d, %Y" -d "@$(SOURCE_DATE_EPOCH)")
SPHINXOPTS = -D today="$(BUILD_DATE)"
%:
dh $@ --with python2,python3,sphinxdoc --buildsystem pybuild --parallel
override_dh_auto_test:
#skipping tests as they require internet access
dh $@ --with python3,sphinxdoc --buildsystem pybuild --parallel
override_dh_auto_clean:
rm -rf docs/build
override_dh_auto_build:
dh_auto_build
cd docs && make html
override_dh_auto_test:
#skipping tests as they require internet access