Skip to content
Commits on Source (2)
mapnik-vector-tile (1.6.1+dfsg-8) UNRELEASED; urgency=medium
mapnik-vector-tile (1.6.1+dfsg-8) unstable; urgency=medium
* Team upload.
* Update gbp.conf to use --source-only-changes by default.
* Bump Standards-Version to 4.4.0, no changes.
* Switch to Python 3.
(closes: #936991)
-- Bas Couwenberg <sebastic@debian.org> Sun, 07 Jul 2019 08:39:49 +0200
-- Bas Couwenberg <sebastic@debian.org> Fri, 30 Aug 2019 11:00:14 +0200
mapnik-vector-tile (1.6.1+dfsg-7) unstable; urgency=medium
......
......@@ -11,8 +11,8 @@ Build-Depends: debhelper (>= 9),
libprotobuf-dev,
libprotozero-dev (>= 1.5.1),
protobuf-compiler,
python-all,
python-gdal
python3-all,
python3-gdal
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/debian-gis-team/mapnik-vector-tile
Vcs-Git: https://salsa.debian.org/debian-gis-team/mapnik-vector-tile.git
......
#!/usr/bin/env python
#!/usr/bin/python3
try:
from osgeo import gdal
......
......@@ -24,7 +24,7 @@ override_dh_auto_build:
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
python debian/create-raster.py
python3 debian/create-raster.py
dh_auto_test || echo "Ignoring test failures"
endif
......