[SCM] PostGIS branch master updated. 3.5.0alpha2-54-gdea96e48c
git at osgeo.org
git at osgeo.org
Wed Sep 4 02:09:47 PDT 2024
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 dea96e48cbc12117593b4c09222d13bdcb63e4d5 (commit)
from e33e9c32199df85c7fa40c337fde5e6d15b75ad1 (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 dea96e48cbc12117593b4c09222d13bdcb63e4d5
Author: Loïc Bartoletti <loic.bartoletti at oslandia.com>
Date: Tue Sep 3 06:56:41 2024 +0200
utils/check_all_upgrades.sh: Improve shell compatibility and OS detection
- Add OS detection to use gmake on FreeBSD, Darwin, and OpenBSD
- Replace 'make' with '${MAKE}' to use the correct make command
- Fix CURRENTVERSION extraction using tr instead of paste
diff --git a/utils/check_all_upgrades.sh b/utils/check_all_upgrades.sh
index 587ea3eff..ee01e344e 100755
--- a/utils/check_all_upgrades.sh
+++ b/utils/check_all_upgrades.sh
@@ -8,7 +8,7 @@ PGVER=`pg_config --version | awk '{print $2}'`
PGVER_MAJOR=$(echo "${PGVER}" | sed 's/\.[^\.]*//' | sed 's/\(alpha\|beta\|rc\).*//' )
SKIP_LABEL_REGEXP=
echo "INFO: PostgreSQL version: ${PGVER} [${PGVER_MAJOR}]"
-
+MAKE=$(which gmake make | head -1)
BUILDDIR=$PWD # TODO: allow override ?
cd $(dirname $0)/..
@@ -252,7 +252,7 @@ for EXT in ${INSTALLED_EXTENSIONS}; do #{
fi
echo "Testing ${test_label}"
RUNTESTFLAGS="-v --extension --upgrade-path=${UPGRADE_PATH} ${USERTESTFLAGS}" \
- make -C ${REGDIR} check ${MAKE_ARGS} && {
+ ${MAKE} -C ${REGDIR} check ${MAKE_ARGS} && {
echo "PASS: ${test_label}"
} || {
echo "FAIL: ${test_label}"
@@ -286,7 +286,7 @@ for EXT in ${INSTALLED_EXTENSIONS}; do #{
fi
echo "Testing ${test_label}"
RUNTESTFLAGS="-v --extension --upgrade-path=${UPGRADE_PATH} ${USERTESTFLAGS}" \
- make -C ${REGDIR} check ${MAKE_ARGS} && {
+ ${MAKE} -C ${REGDIR} check ${MAKE_ARGS} && {
echo "PASS: ${test_label}"
} || {
echo "FAIL: ${test_label}"
@@ -295,7 +295,8 @@ for EXT in ${INSTALLED_EXTENSIONS}; do #{
done
# Check unpackaged->unpackaged upgrades (if target version == current version)
- CURRENTVERSION=`grep '^POSTGIS_' ${SRCDIR}/Version.config | cut -d= -f2 | paste -sd '.'`
+# CURRENTVERSION=`grep '^POSTGIS_' ${SRCDIR}/Version.config | cut -d= -f2 | paste -sd '.'`
+ CURRENTVERSION=$(grep '^POSTGIS_' ${SRCDIR}/Version.config | cut -d= -f2 | tr '\n' '.')
if test "${to_version}" != "${CURRENTVERSION}"; then #{
echo "SKIP: ${EXT} script-based upgrades (${to_version_param} [${to_version}] does not match built version ${CURRENTVERSION})"
@@ -315,7 +316,7 @@ for EXT in ${INSTALLED_EXTENSIONS}; do #{
if kept_label "${test_label}"; then #{
echo "Testing ${test_label}"
RUNTESTFLAGS="-v --upgrade-path=${UPGRADE_PATH} ${USERTESTFLAGS}" \
- make -C ${REGDIR} check ${MAKE_ARGS} && {
+ ${MAKE} -C ${REGDIR} check ${MAKE_ARGS} && {
echo "PASS: ${test_label}"
} || {
echo "FAIL: ${test_label}"
@@ -327,7 +328,7 @@ for EXT in ${INSTALLED_EXTENSIONS}; do #{
if kept_label "${test_label}"; then #{
echo "Testing ${test_label}"
RUNTESTFLAGS="-v --dumprestore --upgrade-path=${UPGRADE_PATH} ${USERTESTFLAGS}" \
- make -C ${REGDIR} check ${MAKE_ARGS} && {
+ ${MAKE} -C ${REGDIR} check ${MAKE_ARGS} && {
echo "PASS: ${test_label}"
} || {
echo "FAIL: ${test_label}"
-----------------------------------------------------------------------
Summary of changes:
utils/check_all_upgrades.sh | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list