[Git][debian-gis-team/vtzero][master] 5 commits: Fix Salsa CI config to match to convention.
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Sat May 2 04:53:59 BST 2026
Bas Couwenberg pushed to branch master at Debian GIS Project / vtzero
Commits:
a6c688ab by Bas Couwenberg at 2026-05-02T05:46:21+02:00
Fix Salsa CI config to match to convention.
- - - - -
4221011b by Bas Couwenberg at 2026-05-02T05:46:50+02:00
Use wrap-and-sort to match team convention.
- - - - -
0a4b0e21 by Bas Couwenberg at 2026-05-02T05:47:11+02:00
Update watch file to handle common issues.
- - - - -
e5842167 by Bas Couwenberg at 2026-05-02T05:49:01+02:00
Add gbp.conf to use pristine-tar & --source-only-changes by default.
- - - - -
11845aa3 by Bas Couwenberg at 2026-05-02T05:53:35+02:00
Update lintian overrides.
- - - - -
8 changed files:
- + debian/.gitlab-ci.yml
- debian/changelog
- debian/control
- + debian/gbp.conf
- − debian/salsa-ci.yml
- + debian/source/lintian-overrides
- debian/tests/control
- debian/watch
Changes:
=====================================
debian/.gitlab-ci.yml
=====================================
@@ -0,0 +1,16 @@
+---
+include:
+ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/recipes/debian.yml
+
+variables:
+ SALSA_CI_ENABLE_BUILD_PACKAGE_PROFILES: 1
+ SALSA_CI_ENABLE_LICENSERECON: 1
+ SALSA_CI_ENABLE_VALIDATE_PACKAGE_CLEAN_UP: 1
+
+test-build-profiles:
+ extends: .test-build-package-profiles
+ parallel:
+ matrix:
+ - BUILD_PROFILES:
+ - nocheck
+ - nodoc
=====================================
debian/changelog
=====================================
@@ -1,3 +1,14 @@
+vtzero (1.2.0-2) UNRELEASED; urgency=medium
+
+ * Team upload.
+ * Fix Salsa CI config to match to convention.
+ * Use wrap-and-sort to match team convention.
+ * Update watch file to handle common issues.
+ * Add gbp.conf to use pristine-tar & --source-only-changes by default.
+ * Update lintian overrides.
+
+ -- Bas Couwenberg <sebastic at debian.org> Sat, 02 May 2026 05:46:09 +0200
+
vtzero (1.2.0-1) unstable; urgency=medium
* Initial release. (Closes: #1135341)
=====================================
debian/control
=====================================
@@ -3,10 +3,9 @@ Standards-Version: 4.7.4
Maintainer: Debian GIS Project <pkg-grass-devel at lists.alioth.debian.org>
Uploaders: Anton Gladky <gladk at debian.org>
Section: libs
-Build-Depends:
- cmake,
- debhelper-compat (= 13),
- libprotozero-dev,
+Build-Depends: debhelper-compat (= 13),
+ cmake,
+ libprotozero-dev
Vcs-Browser: https://salsa.debian.org/debian-gis-team/vtzero
Vcs-Git: https://salsa.debian.org/debian-gis-team/vtzero.git
Homepage: https://github.com/mapbox/vtzero
@@ -15,9 +14,8 @@ Package: libvtzero-dev
Architecture: all
Multi-Arch: foreign
Section: libdevel
-Depends:
- libprotozero-dev,
- ${misc:Depends},
+Depends: libprotozero-dev,
+ ${misc:Depends}
Description: tiny and fast vector tile decoder and encoder in C++
vtzero is a minimalist library implementing the Mapbox Vector Tile
Specification 2.x. It allows reading and writing of vector tiles,
=====================================
debian/gbp.conf
=====================================
@@ -0,0 +1,19 @@
+[DEFAULT]
+
+# The default name for the upstream branch is "upstream".
+# Change it if the name is different (for instance, "master").
+upstream-branch = upstream
+
+# The default name for the Debian branch is "master".
+# Change it if the name is different (for instance, "debian/unstable").
+debian-branch = master
+
+# git-import-orig uses the following names for the upstream tags.
+# Change the value if you are not using git-import-orig
+upstream-tag = upstream/%(version)s
+
+# Always use pristine-tar.
+pristine-tar = True
+
+[buildpackage]
+pbuilder-options = --source-only-changes
=====================================
debian/salsa-ci.yml deleted
=====================================
@@ -1,5 +0,0 @@
----
-include:
- - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/recipes/debian.yml
-variables:
- SALSA_CI_DISABLE_LICENSERECON: 0
=====================================
debian/source/lintian-overrides
=====================================
@@ -0,0 +1,3 @@
+# Not supported by devscripts in trixie
+older-debian-watch-file-standard 4 *
+
=====================================
debian/tests/control
=====================================
@@ -1,2 +1,6 @@
-Tests: compile, test-geometry, test-properties, test-roundtrip
-Depends: build-essential, @
+Tests: compile,
+ test-geometry,
+ test-properties,
+ test-roundtrip
+Depends: build-essential,
+ @
=====================================
debian/watch
=====================================
@@ -1,3 +1,7 @@
version=4
-opts="filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/vtzero-$1\.tar\.gz/" \
- https://github.com/mapbox/vtzero/tags .*/archive/refs/tags/v?(\d\S+)\.tar\.gz
+opts=\
+dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\
+uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/,\
+filenamemangle=s/(?:.*\/)?(?:rel|v|vtzero)[\-\_]?(\d[\d\-\.]*)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/vtzero-$1.$2/ \
+https://github.com/mapbox/vtzero/tags \
+(?:.*?/archive/(?:.*?/)?)?(?:rel|v|vtzero)[\-\_]?(\d[\d\-\.]+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
View it on GitLab: https://salsa.debian.org/debian-gis-team/vtzero/-/compare/6f5a9b2cb42aa2a60691637edcaef43435960c7c...11845aa38cc14c2c804ccce5b6dfcb02a4138849
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/vtzero/-/compare/6f5a9b2cb42aa2a60691637edcaef43435960c7c...11845aa38cc14c2c804ccce5b6dfcb02a4138849
You're receiving this email because of your account on salsa.debian.org. Manage all notifications: https://salsa.debian.org/-/profile/notifications | Help: https://salsa.debian.org/help
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20260502/c84ca221/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list