[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0alpha2-111-gd781ecf

git at osgeo.org git at osgeo.org
Thu Oct 29 03:22:49 PDT 2020


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  d781ecf29220b0a09ec3484db7f24f3ed08d7d2d (commit)
       via  7bab04b6bbb3e4a973f48128a85a55974460df64 (commit)
      from  8d3cf31a3a13c0ce2e4d5025389d6a023dd63848 (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 d781ecf29220b0a09ec3484db7f24f3ed08d7d2d
Author: Sandro Santilli <strk at kbt.io>
Date:   Thu Oct 29 11:21:39 2020 +0100

    Have probin test support more than a single letter versioning
    
    Fixes #4778

diff --git a/regress/core/regress.sql b/regress/core/regress.sql
index 4babc22..5e049c7 100644
--- a/regress/core/regress.sql
+++ b/regress/core/regress.sql
@@ -334,11 +334,11 @@ SELECT DISTINCT 'unexpected probin', proname || ':' || probin
 FROM pg_proc
 WHERE probin like '%postgis%'
   AND
-regexp_replace(probin, '(rt)?postgis(_[^-]*)?(-[0-9.])$', '\3')
+regexp_replace(probin, '(rt)?postgis(_[^-]*)?(-[0-9.]*)$', '\3')
 	!=
 (
 	SELECT
-regexp_replace(probin, '(rt)?postgis(_[^-]*)?(-[0-9.])$', '\3')
+regexp_replace(probin, '(rt)?postgis(_[^-]*)?(-[0-9.]*)$', '\3')
 	FROM pg_proc WHERE proname = 'postgis_lib_version'
 )
 ORDER BY 2;

commit 7bab04b6bbb3e4a973f48128a85a55974460df64
Author: Sandro Santilli <strk at kbt.io>
Date:   Thu Oct 29 11:20:15 2020 +0100

    Add a top-level `staged-install` Makefile target

diff --git a/GNUmakefile.in b/GNUmakefile.in
index 7562648..3daf08b 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -41,6 +41,9 @@ test: check
 
 check: check-no-trailing-blanks check-unit check-regress docs-check check-news
 
+staged-install:
+	$(MAKE) -C regress staged-install
+
 check-news:
 	utils/check_news.sh
 

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

Summary of changes:
 GNUmakefile.in           | 3 +++
 regress/core/regress.sql | 4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list