Skip to content
Commits on Source (3)
......@@ -4,7 +4,9 @@ pyshp (1.2.12+ds-2) UNRELEASED; urgency=medium
* Strip trailing whitespace from changelog.
* Update copyright-format URL to use HTTPS.
* Update Vcs-* URLs for Salsa.
* Bump Standards-Version to 4.1.3, no changes.
* Bump Standards-Version to 4.1.4, no changes.
* Add module import tests to autopkgtest configuration.
* Update watch file to use HTTPS.
-- Bas Couwenberg <sebastic@debian.org> Wed, 15 Nov 2017 22:08:49 +0100
......
......@@ -10,7 +10,7 @@ Build-Depends: debhelper (>= 9),
python-setuptools,
python3-all,
python3-setuptools
Standards-Version: 4.1.3
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/debian-gis-team/pyshp
Vcs-Git: https://salsa.debian.org/debian-gis-team/pyshp.git
Homepage: https://github.com/GeospatialPython/pyshp
......
# Test installability
Depends: @
Test-Command: /bin/true
# Test module import (Python 2)
Depends: python-all, python-pyshp
Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import shapefile; print(shapefile)" ; done
# Test module import (Python 3)
Depends: python3-all, python3-pyshp
Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import shapefile; print(shapefile)" ; done
......@@ -3,4 +3,4 @@ opts=\
dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\
uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/,\
repacksuffix=+ds \
http://pypi.debian.net/pyshp/pyshp-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
https://pypi.debian.net/pyshp/pyshp-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))