Skip to content
Commits on Source (2)
geolinks (0.2.0-3) UNRELEASED; urgency=medium
* Team upload.
* Bump Standards-Version to 4.1.3, no changes.
* Bump Standards-Version to 4.1.4, no changes.
* Strip trailing whitespace from control file.
* Update copyright-format URL to use HTTPS.
* Update Vcs-* URLs for Salsa.
* Add module import tests to autopkgtest configuration.
-- Bas Couwenberg <sebastic@debian.org> Mon, 02 Oct 2017 13:00:00 +0200
......
......@@ -10,7 +10,7 @@ Build-Depends: debhelper (>= 9),
python-all,
python3-setuptools,
python3-all,
Standards-Version: 4.1.3
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/debian-gis-team/geolinks
Vcs-Git: https://salsa.debian.org/debian-gis-team/geolinks.git
Homepage: https://pypi.python.org/pypi/geolinks
......
# Test installability
Depends: @
Test-Command: /bin/true
# Test module import (Python 2)
Depends: python-all, python-geolinks
Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import geolinks; print(geolinks)" ; done
# Test module import (Python 3)
Depends: python3-all, python3-geolinks
Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import geolinks; print(geolinks)" ; done