Skip to content
Commits on Source (3)
python-rtree (0.8.3+ds-2) UNRELEASED; urgency=medium
* Add python3-sphinx to build dependencies.
* Bump Standards-Version to 4.1.3, no changes.
* Bump Standards-Version to 4.1.4, no changes.
* Add autopkgtest to test installability.
* Update copyright-format URL to use HTTPS.
* Update Vcs-* URLs for Salsa.
* Add module import tests to autopkgtest configuration.
* Update watch file to use HTTPS.
-- Bas Couwenberg <sebastic@debian.org> Wed, 27 Sep 2017 15:03:32 +0200
......
......@@ -14,7 +14,7 @@ Build-Depends: debhelper (>= 9),
python3-numpy,
python3-setuptools,
python3-sphinx
Standards-Version: 4.1.3
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/debian-gis-team/python-rtree
Vcs-Git: https://salsa.debian.org/debian-gis-team/python-rtree.git
Homepage: http://toblerity.org/rtree/
......
# Test installability
Depends: @
Test-Command: /bin/true
# Test module import (Python 2)
Depends: python-all, python-rtree
Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import rtree; print(rtree)" ; done
# Test module import (Python 3)
Depends: python3-all, python3-rtree
Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import rtree; print(rtree)" ; 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/Rtree/Rtree-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
https://pypi.debian.net/Rtree/Rtree-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))