[SCM] PostGIS branch master updated. 3.7.0beta2-8-g8b55c63cf
git at osgeo.org
git at osgeo.org
Mon Aug 10 01:32:46 PDT 2026
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, master has been updated
via 8b55c63cfa65a37dd0cabdf51782d589b62f8773 (commit)
from 8c59690f60446d9659a254dc99c3d59103169a99 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 8b55c63cfa65a37dd0cabdf51782d589b62f8773
Author: Regina Obe <lr at pcorp.us>
Date: Mon Aug 10 04:32:39 2026 -0400
Fix winnie generation of upgrade extension files
diff --git a/ci/winnie/package_postgis.sh b/ci/winnie/package_postgis.sh
index 177606c05..a73d68bf3 100644
--- a/ci/winnie/package_postgis.sh
+++ b/ci/winnie/package_postgis.sh
@@ -177,7 +177,7 @@ for EXTNAME in postgis postgis_raster postgis_topology postgis_sfcgal; do
cp extensions/$EXTNAME/sql/$EXTNAME--ANY--${POSTGIS_MICRO_VER}.sql ${RELDIR}/${RELVERDIR}/share/extension/$EXTNAME--${POSTGIS_MINOR_MAX_VER}--${POSTGIS_MICRO_VER}.sql
for OLD_VERSION in $UPGRADEABLE_VERSIONS; do \
- if [ "$OLD_VERSION" > "2.5" ] || [ "$OLD_VERSION" in $WIN_RELEASED_VERSIONS ]; then
+ if [[ "$OLD_VERSION" > "2.5" ]] || [[ " $WIN_RELEASED_VERSIONS " == *" $OLD_VERSION "* ]]; then
cp extensions/$EXTNAME/sql/$EXTNAME--TEMPLATED--TO--ANY.sql ${RELDIR}/${RELVERDIR}/share/extension/$EXTNAME--$OLD_VERSION--${POSTGIS_MINOR_MAX_VER}.sql; \
fi
done
diff --git a/ci/winnie/regress_postgis.sh b/ci/winnie/regress_postgis.sh
index ea5777631..a51319b89 100644
--- a/ci/winnie/regress_postgis.sh
+++ b/ci/winnie/regress_postgis.sh
@@ -161,7 +161,7 @@ for EXTNAME in $extensions_to_install; do
cp extensions/$EXTNAME/sql/$EXTNAME--TEMPLATED--TO--ANY.sql ${PGPATHEDB}/share/extension/$EXTNAME--$POSTGIS_MICRO_VER--${POSTGIS_MINOR_MAX_VER}.sql;
for OLD_VERSION in $UPGRADEABLE_VERSIONS; do \
- if [ "$OLD_VERSION" > "2.5" ] || [ "$OLD_VERSION" in $WIN_RELEASED_VERSIONS ]; then
+ if [[ "$OLD_VERSION" > "2.5" ]] || [[ " $WIN_RELEASED_VERSIONS " == *" $OLD_VERSION "* ]]; then
cp extensions/$EXTNAME/sql/$EXTNAME--TEMPLATED--TO--ANY.sql ${PGPATHEDB}/share/extension/$EXTNAME--$OLD_VERSION--${POSTGIS_MINOR_MAX_VER}.sql; \
fi
done
-----------------------------------------------------------------------
Summary of changes:
ci/winnie/package_postgis.sh | 2 +-
ci/winnie/regress_postgis.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list