[SCM] PostGIS branch stable-3.4 updated. 3.4.2-57-gf81e686aa
git at osgeo.org
git at osgeo.org
Sat Aug 24 14:10:53 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, stable-3.4 has been updated
via f81e686aab2982c813cd19b6cfb6a086347f8dc6 (commit)
via d37133e48766bd5de92ac18de352cc78ca0a6fae (commit)
from 948ed383732bc90ab4eb57e4f04de28416187278 (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 f81e686aab2982c813cd19b6cfb6a086347f8dc6
Author: Regina Obe <lr at pcorp.us>
Date: Wed Jul 24 12:27:54 2024 -0400
FIX install is when PostgreSQL is built with meson
- PGXS giving bad install / install_data so override
Closes #5764 for PostGIS 3.4.3
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 799fdf925..21d072b27 100644
--- a/extensions/postgis/Makefile.in
+++ b/extensions/postgis/Makefile.in
@@ -150,6 +150,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 4a2af9502..25ade7d21 100644
--- a/extensions/postgis_raster/Makefile.in
+++ b/extensions/postgis_raster/Makefile.in
@@ -131,6 +131,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 28f00a99c..0b9bcb7fc 100644
--- a/extensions/postgis_sfcgal/Makefile.in
+++ b/extensions/postgis_sfcgal/Makefile.in
@@ -103,6 +103,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 2225f3734..53de35f65 100644
--- a/extensions/postgis_tiger_geocoder/Makefile.in
+++ b/extensions/postgis_tiger_geocoder/Makefile.in
@@ -215,6 +215,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 f5c9c9920..040fc4606 100644
--- a/extensions/postgis_topology/Makefile.in
+++ b/extensions/postgis_topology/Makefile.in
@@ -108,6 +108,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 d37133e48766bd5de92ac18de352cc78ca0a6fae
Author: Regina Obe <lr at pcorp.us>
Date: Sat Aug 24 17:09:00 2024 -0400
Start testing PG17 on 3.4
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 00a95afd0..6bc061033 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -17,6 +17,7 @@ jobs:
matrix:
ci:
# Use the last stable releases to run more tests
+ - { tag: pg17-geosmain-gdal39-proj94, mode: coverage }
- { tag: pg16-geos312-gdal37-proj921, mode: coverage }
- { tag: pg15-geos311-gdal35-proj90, mode: coverage }
- { tag: pg15-clang-geos311-gdal35-proj90, mode: usan_clang }
-----------------------------------------------------------------------
Summary of changes:
.github/workflows/ci.yml | 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