Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
mapnik-vector-tile
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian GIS Project
mapnik-vector-tile
Compare revisions
216743e125f8138229222ef5f10d44a6d60ad953 to 34cba445a60c792daf344b8c19ed799b21bea9cf
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
debian-gis-team/mapnik-vector-tile
Select target project
No results found
34cba445a60c792daf344b8c19ed799b21bea9cf
Select Git revision
Swap
Target
debian-gis-team/mapnik-vector-tile
Select target project
debian-gis-team/mapnik-vector-tile
1 result
216743e125f8138229222ef5f10d44a6d60ad953
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Switch to Python 3. (closes: #936991)
· 658582fe
Bas Couwenberg
authored
5 years ago
658582fe
Set distribution to unstable.
· 34cba445
Bas Couwenberg
authored
5 years ago
34cba445
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
debian/changelog
+5
-2
5 additions, 2 deletions
debian/changelog
debian/control
+2
-2
2 additions, 2 deletions
debian/control
debian/create-raster.py
+1
-1
1 addition, 1 deletion
debian/create-raster.py
debian/rules
+1
-1
1 addition, 1 deletion
debian/rules
with
9 additions
and
6 deletions
debian/changelog
View file @
34cba445
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
...
...
This diff is collapsed.
Click to expand it.
debian/control
View file @
34cba445
...
...
@@ -11,8 +11,8 @@ Build-Depends: debhelper (>= 9),
libprotobuf-dev,
libprotozero-dev (>= 1.5.1),
protobuf-compiler,
python-all,
python-gdal
python
3
-all,
python
3
-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
...
...
This diff is collapsed.
Click to expand it.
debian/create-raster.py
View file @
34cba445
#!/usr/bin/
env
python
#!/usr/bin/python
3
try
:
from
osgeo
import
gdal
...
...
This diff is collapsed.
Click to expand it.
debian/rules
View file @
34cba445
...
...
@@ -24,7 +24,7 @@ override_dh_auto_build:
override_dh_auto_test
:
ifeq
(,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
python debian/create-raster.py
python
3
debian/create-raster.py
dh_auto_test
||
echo
"Ignoring test failures"
endif
...
...
This diff is collapsed.
Click to expand it.