[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-644-g8de396392

git at osgeo.org git at osgeo.org
Mon Feb 20 15:51:23 PST 2023


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  8de396392c0e892c00e9cf04f8599c6e91d4c7e9 (commit)
       via  a1f513f0c467d7ebd6861f2b36c19d3cea5fc21b (commit)
      from  69e546bb5cd9a3d0c0e55d93163300a1bc4687f7 (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 8de396392c0e892c00e9cf04f8599c6e91d4c7e9
Author: Sandro Santilli <strk at kbt.io>
Date:   Tue Feb 21 00:50:55 2023 +0100

    run_test.pl: streamline name of tests being run (strip top-srcdir)

diff --git a/regress/run_test.pl b/regress/run_test.pl
index edbc7b56f..f1e883c93 100755
--- a/regress/run_test.pl
+++ b/regress/run_test.pl
@@ -49,7 +49,9 @@ BEGIN {
 
 our $DB = $ENV{"POSTGIS_REGRESS_DB"} || "postgis_reg";
 our $REGDIR = $ENV{"POSTGIS_REGRESS_DIR"} || abs_path(dirname($0));
-our $TOP_BUILDDIR = $ENV{"POSTGIS_TOP_BUILD_DIR"} || ${REGDIR} . '/..';
+our $TOP_SOURCEDIR = ${REGDIR} . '/..';
+our $ABS_TOP_SOURCEDIR = abs_path(${TOP_SOURCEDIR});
+our $TOP_BUILDDIR = $ENV{"POSTGIS_TOP_BUILD_DIR"} || ${TOP_SOURCEDIR};
 our $sysdiff = !system("diff --strip-trailing-cr $0 $0 2> /dev/null");
 
 ##################################################################
@@ -707,6 +709,12 @@ Options:
 sub start_test
 {
     my $test = shift;
+    my $abstest = abs_path($test);
+    if ( defined($abstest) )
+    {
+        $test = $abstest;
+    }
+    $test =~ s|${ABS_TOP_SOURCEDIR}/||;
     print " $test ";
 	$RUN++;
     show_progress();

commit a1f513f0c467d7ebd6861f2b36c19d3cea5fc21b
Author: Sandro Santilli <strk at kbt.io>
Date:   Tue Feb 21 00:11:44 2023 +0100

    Skip restore of st_clusterkmeans(geom,int) comment

diff --git a/utils/postgis_restore.pl.in b/utils/postgis_restore.pl.in
index a61c33f37..e40043d3c 100644
--- a/utils/postgis_restore.pl.in
+++ b/utils/postgis_restore.pl.in
@@ -824,6 +824,7 @@ COMMENT FUNCTION st_clip(rast raster, nband integer[], geom geometry, nodataval
 COMMENT FUNCTION st_closestpoint(geom1 geometry, geom2 geometry)
 COMMENT FUNCTION st_closestpointofapproach(geometry, geometry)
 COMMENT FUNCTION st_clusterdbscan(geometry, eps double precision, minpoints integer)
+COMMENT FUNCTION st_clusterkmeans(geom geometry, k integer)
 COMMENT FUNCTION st_clusterkmeans(geom geometry, k integer, max_radius double precision)
 COMMENT FUNCTION st_collect(geom1 geometry, geom2 geometry)
 COMMENT FUNCTION st_collect(geometry[])

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

Summary of changes:
 regress/run_test.pl         | 10 +++++++++-
 utils/postgis_restore.pl.in |  1 +
 2 files changed, 10 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list