Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Add module import tests to autopkgtest configuration.
· 7dbb95bd
Bas Couwenberg
authored
Apr 16, 2018
7dbb95bd
Bump Standards-Version to 4.1.4, no changes.
· 4a114df1
Bas Couwenberg
authored
Apr 16, 2018
4a114df1
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
4a114df1
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
...
...
debian/control
View file @
4a114df1
...
...
@@ -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/
...
...
debian/tests/control
View file @
4a114df1
# 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