[SCM] PostGIS branch master updated. 3.5.0alpha2-16-g87a34bf2f

git at osgeo.org git at osgeo.org
Wed Jul 24 10:14:09 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  87a34bf2fe13c48c3fd6c026bdb7989c66d5e162 (commit)
       via  4b674d33fc0529e0ebe1ea585a12e39585c63e1f (commit)
      from  e9bdc32d9c58fc82dca365a5d94c170dcba93918 (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 87a34bf2fe13c48c3fd6c026bdb7989c66d5e162
Author: Regina Obe <lr at pcorp.us>
Date:   Wed Jul 24 12:27:54 2024 -0400

    TRY TO FIX install of postgresql meson built
    
     - PGXS giving bad install / install_data so override
    
    References #5764 for PostGIS 3.5.0

diff --git a/extensions/address_standardizer/Makefile.in b/extensions/address_standardizer/Makefile.in
index 0941ed562..f4929b010 100644
--- a/extensions/address_standardizer/Makefile.in
+++ b/extensions/address_standardizer/Makefile.in
@@ -206,6 +206,8 @@ PG_CONFIG := @PG_CONFIG@
 PGXS := @PGXS@
 include $(PGXS)
 PERL = @PERL@
+INSTALL=@INSTALL@
+INSTALL_DATA=@INSTALL_DATA@
 ifneq (@MKDIR_P@,)
 	MKDIR_P = @MKDIR_P@
 endif
diff --git a/extensions/postgis/Makefile.in b/extensions/postgis/Makefile.in
index 972dc3e8a..537a501a7 100644
--- a/extensions/postgis/Makefile.in
+++ b/extensions/postgis/Makefile.in
@@ -145,6 +145,9 @@ PG_CONFIG := @PG_CONFIG@
 PGXS := @PGXS@
 include $(PGXS)
 PERL = @PERL@
+INSTALL=@INSTALL@
+INSTALL_DATA=@INSTALL_DATA@
+
 
 ifneq (@MKDIR_P@,)
 	MKDIR_P = @MKDIR_P@
diff --git a/extensions/postgis_raster/Makefile.in b/extensions/postgis_raster/Makefile.in
index be4d08df0..b174746f9 100644
--- a/extensions/postgis_raster/Makefile.in
+++ b/extensions/postgis_raster/Makefile.in
@@ -123,6 +123,8 @@ PG_CONFIG := @PG_CONFIG@
 PGXS := @PGXS@
 include $(PGXS)
 PERL = @PERL@
+INSTALL=@INSTALL@
+INSTALL_DATA=@INSTALL_DATA@
 ifneq (@MKDIR_P@,)
 	MKDIR_P = @MKDIR_P@
 endif
diff --git a/extensions/postgis_sfcgal/Makefile.in b/extensions/postgis_sfcgal/Makefile.in
index 3480dcb39..5b2fc98cc 100644
--- a/extensions/postgis_sfcgal/Makefile.in
+++ b/extensions/postgis_sfcgal/Makefile.in
@@ -96,6 +96,8 @@ PG_CONFIG := @PG_CONFIG@
 PGXS := @PGXS@
 include $(PGXS)
 PERL = @PERL@
+INSTALL=@INSTALL@
+INSTALL_DATA=@INSTALL_DATA@
 ifneq (@MKDIR_P@,)
 	MKDIR_P = @MKDIR_P@
 endif
diff --git a/extensions/postgis_tiger_geocoder/Makefile.in b/extensions/postgis_tiger_geocoder/Makefile.in
index d3443ee5f..e1ef7c0cb 100644
--- a/extensions/postgis_tiger_geocoder/Makefile.in
+++ b/extensions/postgis_tiger_geocoder/Makefile.in
@@ -208,6 +208,8 @@ PG_CONFIG := @PG_CONFIG@
 PGXS := @PGXS@
 include $(PGXS)
 PERL=@PERL@
+INSTALL=@INSTALL@
+INSTALL_DATA=@INSTALL_DATA@
 ifneq (@MKDIR_P@,)
 	MKDIR_P = @MKDIR_P@
 endif
diff --git a/extensions/postgis_topology/Makefile.in b/extensions/postgis_topology/Makefile.in
index 3247605fe..852ca1d12 100644
--- a/extensions/postgis_topology/Makefile.in
+++ b/extensions/postgis_topology/Makefile.in
@@ -100,6 +100,8 @@ PG_CONFIG := @PG_CONFIG@
 PGXS := @PGXS@
 include $(PGXS)
 PERL=@PERL@
+INSTALL=@INSTALL@
+INSTALL_DATA=@INSTALL_DATA@
 ifneq (@MKDIR_P@,)
 	MKDIR_P = @MKDIR_P@
 endif

commit 4b674d33fc0529e0ebe1ea585a12e39585c63e1f
Author: Regina Obe <lr at pcorp.us>
Date:   Wed Jul 24 09:30:01 2024 -0400

    Add missing NEWS note for ST_length curvepolygon
    behavior change
    References #5747 for PostGIS 3.5.0
    References https://github.com/postgis/postgis/pull/776

diff --git a/NEWS b/NEWS
index 0fa2b9216..0b07f1dab 100644
--- a/NEWS
+++ b/NEWS
@@ -37,6 +37,7 @@ Andreas Schild (German Team)
   - #5659, ST_DFullyWithin behaviour has changed to
            be ST_Contains(ST_Buffer(A, R), B) (Paul Ramsey)
   - Remove the WFS_locks extra package. (Paul Ramsey)
+  - #5747, GH-776, ST_Length: Return 0 for CurvePolygon (Dan Baston)
 
 * Deprecated signatures *
   - GH-761, ST_StraightSkeleton => CG_StraightSkeleton (Loïc Bartoletti)

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

Summary of changes:
 NEWS                                          | 1 +
 extensions/address_standardizer/Makefile.in   | 2 ++
 extensions/postgis/Makefile.in                | 3 +++
 extensions/postgis_raster/Makefile.in         | 2 ++
 extensions/postgis_sfcgal/Makefile.in         | 2 ++
 extensions/postgis_tiger_geocoder/Makefile.in | 2 ++
 extensions/postgis_topology/Makefile.in       | 2 ++
 7 files changed, 14 insertions(+)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list