[Git][debian-gis-team/gdal-grass][master] Drop autopkgtest, it hinders testing migration during gdal transitions.
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Thu Nov 13 12:51:10 GMT 2025
Bas Couwenberg pushed to branch master at Debian GIS Project / gdal-grass
Commits:
a759c4a4 by Bas Couwenberg at 2025-11-13T13:50:49+01:00
Drop autopkgtest, it hinders testing migration during gdal transitions.
- - - - -
3 changed files:
- debian/changelog
- − debian/tests/control
- − debian/tests/gdalinfo-ogrinfo
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,9 @@
+gdal-grass (2.0.0-2) UNRELEASED; urgency=medium
+
+ * Drop autopkgtest, it hinders testing migration during gdal transitions.
+
+ -- Bas Couwenberg <sebastic at debian.org> Thu, 13 Nov 2025 13:50:01 +0100
+
gdal-grass (2.0.0-1) unstable; urgency=medium
* Move from experimental to unstable.
=====================================
debian/tests/control deleted
=====================================
@@ -1,6 +0,0 @@
-Tests: gdalinfo-ogrinfo
-Depends: ca-certificates,
- gdal-bin,
- libgdal-plugin-grass,
- wget
-Restrictions: needs-internet, skippable
=====================================
debian/tests/gdalinfo-ogrinfo deleted
=====================================
@@ -1,74 +0,0 @@
-#!/bin/bash
-
-DATASET_URL="https://grass.osgeo.org/sampledata/spearfish_grass70data-0.3.tar.gz"
-DATASET_FILE="spearfish.tar.gz"
-
-TEMPDIR="$(mktemp -d)"
-
-cd "${TEMPDIR}" || exit 1
-
-CMD=("wget" "-q" "${DATASET_URL}" "-O" "${DATASET_FILE}")
-
-echo "Downloading dataset: ${CMD[@]}"
-${CMD[@]}
-RC=$?
-
-if [ "${RC}" -ne 0 ]; then
- cd "${OLDPWD}" || exit 1
- rm -rf "${TEMPDIR}"
-
- exit "${RC}"
-fi
-
-echo
-
-CMD=(tar xaf "${DATASET_FILE}")
-
-echo "Unpacking dataset: ${CMD[@]}"
-${CMD[@]}
-RC=$?
-
-if [ "${RC}" -ne 0 ]; then
- cd "${OLDPWD}" || exit 1
- rm -rf "${TEMPDIR}"
-
- exit "${RC}"
-fi
-
-echo
-
-CMD=("gdalinfo" ./spearfish*/PERMANENT/cellhd/geology)
-
-echo "Executing: GISBASE="$(ls -d /usr/lib/grass??)" PROJ_NETWORK=ON ${CMD[@]}"
-GISBASE="$(ls -d /usr/lib/grass??)" \
-PROJ_NETWORK=ON \
-${CMD[@]}
-RC=$?
-
-if [ "${RC}" -ne 0 ]; then
- cd "${OLDPWD}" || exit 1
- rm -rf "${TEMPDIR}"
-
- exit "${RC}"
-fi
-
-echo
-
-CMD=("ogrinfo" "-so" "-al" ./spearfish*/PERMANENT/vector/roads/head)
-
-echo "Executing: GISBASE="$(ls -d /usr/lib/grass??)" PROJ_NETWORK=ON ${CMD[@]}"
-GISBASE="$(ls -d /usr/lib/grass??)" \
-PROJ_NETWORK=ON \
-${CMD[@]}
-RC=$?
-
-cd "${OLDPWD}" || exit 1
-rm -rf "${TEMPDIR}"
-
-# ogrinfo fails on 32bit architectures: https://github.com/OSGeo/grass/issues/2631
-if [ "${RC}" -ne 0 ] && [ "$(dpkg-architecture -qDEB_HOST_ARCH_BITS 2> /dev/null)" = "32" ]; then
- echo "Ignoring test failures on 32 bit architecture"
- RC=77
-fi
-
-exit "${RC}"
View it on GitLab: https://salsa.debian.org/debian-gis-team/gdal-grass/-/commit/a759c4a44457cb968516a896af4ec95edc2947e1
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/gdal-grass/-/commit/a759c4a44457cb968516a896af4ec95edc2947e1
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20251113/a2878128/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list