[postgis-tickets] [SCM] PostGIS branch out-of-tree-builds updated. 3.2.0-330-ge9411dae7

git at osgeo.org git at osgeo.org
Thu Jan 20 12:29:07 PST 2022


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, out-of-tree-builds has been updated
  discards  f964f6f2ad72d58cc534f318f36f2d84a4024539 (commit)
  discards  d9948dc9929d3c96bf09e48ebde221f748582fcb (commit)
  discards  bd233ac1489c69678eebd6dd94acca394973c76e (commit)
  discards  dde0fce1bd6d8f32b65d719983cb97fa811b83cf (commit)
  discards  2b210f4a9a2d9400f90ad37d927bec8a893acf1e (commit)
       via  e9411dae787a0f7792302f091d918e950aa629de (commit)
       via  91eb4c577b842978e37294871a91952765448749 (commit)
       via  2e7c205c1590015d36119e0fb516dbc42e63a32a (commit)
       via  5c970f355b655d09846695d34da5aca3b84431e5 (commit)
       via  4d2757695a0a1d3ee4b7db07a0c5e5577d4b3ce8 (commit)
       via  ae320031d06f4cc663c70e634b8823c81ff3245a (commit)
       via  2e6f56fdbd7f61f0b9650a23db2ed7f24a51b457 (commit)
       via  fe2d4058fbf9f2ea742a65a377c299fdafbc4c2a (commit)
       via  bf4e5f916a8b18f94d446314787ad930a583d29d (commit)
       via  b4b4cdb0425b98970961ed61713e35d39dc8b01b (commit)
       via  c32e5c759682067a697c1aead6626ab08bc4914f (commit)
       via  d6919c15663fc3968f95d151d8c15f48bb5cc8eb (commit)

This update added new revisions after undoing existing revisions.  That is
to say, the old revision is not a strict subset of the new revision.  This
situation occurs when you --force push a change and generate a repository
containing something like this:

 * -- * -- B -- O -- O -- O (f964f6f2ad72d58cc534f318f36f2d84a4024539)
            \
             N -- N -- N (e9411dae787a0f7792302f091d918e950aa629de)

When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.

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 e9411dae787a0f7792302f091d918e950aa629de
Author: Sandro Santilli <strk at kbt.io>
Date:   Thu Jan 20 21:28:34 2022 +0100

    Fix check-news and check-tests-enabled in out-of-tree builds

diff --git a/GNUmakefile.in b/GNUmakefile.in
index f2e8c058c..371c56543 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -49,7 +49,7 @@ staged-install: all
 	$(MAKE) -C regress staged-install
 
 check-news:
-	utils/check_news.sh
+	$(top_srcdir)/utils/check_news.sh $(top_srcdir)
 
 check-unit check-regress docs-check: all
 
@@ -212,7 +212,7 @@ include $(top_srcdir)/regress/runtest.mk
 check-regress: staged-install check-regress-deps
 
 check-tests-enabled:
-	utils/check_tests_enabled.sh
+	$(top_srcdir)/utils/check_tests_enabled.sh $(top_srcdir)
 
 check-regress-deps:
 ifeq (@TOPOLOGY@,topology)
diff --git a/utils/check_tests_enabled.sh b/utils/check_tests_enabled.sh
index 9bb7a9f09..d62fbaaa5 100755
--- a/utils/check_tests_enabled.sh
+++ b/utils/check_tests_enabled.sh
@@ -2,7 +2,7 @@
 #!/bin/sh
 
 usage() {
-  echo "Usage: $0"
+  echo "Usage: $0 [<sourcedir>]"
 }
 
 TMPDIR=/tmp/postgis_check_tests_enabled_$$
@@ -47,6 +47,28 @@ check_enabled() {
   fi
 }
 
+### COMMAND LINE PARSING
+RD= # Root source dir
+while [ $# -gt 0 ]; do
+  if [ "$1" = "--help" ]; then
+    usage
+    exit 0
+  elif [ -z "${RD}" ]; then
+    RD=$1
+  else
+    echo "ERROR: unrecognized extra argument $1" >&2
+    usage >&2
+    exit 1
+  fi
+  shift
+done
+
+
+if [ -z "${RD}" ]; then
+  RD=`dirname $0`/..
+fi
+
+cd ${RD}
 check_enabled topology/test/tests.mk regress &&
 check_enabled regress/real/tests.mk &&
 check_enabled regress/loader/tests.mk &&

-----------------------------------------------------------------------

Summary of changes:
 GNUmakefile.in                          |   4 +-
 doc/administration.xml                  |   4 +-
 doc/po/de/administration.xml.po         |   6 +-
 doc/po/es/administration.xml.po         |   6 +-
 doc/po/fr/administration.xml.po         |   6 +-
 doc/po/fr/postgis.xml.po                |  20 ++-
 doc/po/it_IT/administration.xml.po      |  14 +-
 doc/po/ja/administration.xml.po         | 294 +++++++++++++++++++++++---------
 doc/po/ja/extras_topology.xml.po        |  13 +-
 doc/po/ja/reference_raster.xml.po       |  11 +-
 doc/po/ja/reference_type.xml.po         |  11 +-
 doc/po/ko_KR/administration.xml.po      |   6 +-
 doc/po/pl/administration.xml.po         |   6 +-
 doc/po/pt_BR/administration.xml.po      |   6 +-
 doc/po/ru/administration.xml.po         |  16 +-
 doc/po/templates/administration.xml.pot |   6 +-
 utils/check_tests_enabled.sh            |  24 ++-
 17 files changed, 313 insertions(+), 140 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list