Skip to content
Commits on Source (2)
pyspatialite (3.0.1-13) UNRELEASED; urgency=medium
* Update copyright-format URL to use HTTPS.
* Bump Standards-Version to 4.1.3, no changes.
* Bump Standards-Version to 4.1.4, no changes.
* Add override for python-foo-but-no-python3-foo.
* Fix deprecated source override location.
* Update Vcs-* URLs for Salsa.
* Add module import tests to autopkgtest configuration.
-- Bas Couwenberg <sebastic@debian.org> Sun, 21 Jan 2018 10:33:24 +0100
......
......@@ -10,7 +10,7 @@ Build-Depends: debhelper (>= 9),
libgeos-dev,
libproj-dev,
python-all-dev (>= 2.6.6-3~)
Standards-Version: 4.1.3
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/debian-gis-team/pyspatialite
Vcs-Git: https://salsa.debian.org/debian-gis-team/pyspatialite.git
Homepage: https://github.com/lokkju/pyspatialite/
......
# Test installability
Depends: @
Test-Command: /bin/true
# Test module import (Python 2)
Depends: python-all, python-pyspatialite
Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import pyspatialite; print(pyspatialite)" ; done