[SCM] PostGIS branch master updated. 3.4.0rc1-1016-g94e382f00
git at osgeo.org
git at osgeo.org
Wed Mar 13 16:19:43 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 94e382f007403bea1822d281299c050252287ec1 (commit)
via 089c07e1ee7f5bf8ed1a4d7e2108298c003eb725 (commit)
from 2c4abb3f268b1e806e59337bf737fbcc04d9b31e (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 94e382f007403bea1822d281299c050252287ec1
Author: Regina Obe <lr at pcorp.us>
Date: Wed Mar 13 19:18:52 2024 -0400
Add Jay Addison to credits
References #5666 for PostGIS 3.5.0
diff --git a/doc/introduction.xml b/doc/introduction.xml
index 1a19c4f2b..bf9864b56 100644
--- a/doc/introduction.xml
+++ b/doc/introduction.xml
@@ -275,6 +275,7 @@
<member>Jan Katins</member>
<member>Jan Tojnar</member>
<member>Jason Smith</member>
+ <member>Jay Addison</member>
<member>Jeff Adams</member>
<member>Jelte Fennema</member>
<member>Jim Jones</member>
commit 089c07e1ee7f5bf8ed1a4d7e2108298c003eb725
Author: jayaddison <jay+osgeo at jp-hosting.net>
Date: Sun Mar 10 09:27:07 2024 -0700
Apply extension-upgrade-sql-reproducible.patch from trac ticket #5666
This patch is intended to remove a source of non-deterministic build
output, by reading the SOURCE_DATE_EPOCH[1] build-time-indicator
variable and using the resulting value instead of the build-host's
clock as a timestamp in extension upgrade script comments.
The approach here borrows from a similar pattern[2] used in the
'configure.ac' script.
[1] - https://reproducible-builds.org/docs/source-date-epoch/
[2] - https://git.osgeo.org/gitea/postgis/postgis/src/commit/0418cc0ddfda973ba10aa8cc981b07f25a464bdb/configure.ac#L1120
Signed-off-by: jayaddison <jay+osgeo at jp-hosting.net>
diff --git a/extensions/upgrade-paths-rules.mk b/extensions/upgrade-paths-rules.mk
index c87a4e6c2..794957e8c 100644
--- a/extensions/upgrade-paths-rules.mk
+++ b/extensions/upgrade-paths-rules.mk
@@ -4,6 +4,8 @@ TAG_UPGRADE=$(EXTENSION)--TEMPLATED--TO--ANY.sql
PG_SHAREDIR=$(shell $(PG_CONFIG) --sharedir)
+POSTGIS_BUILD_DATE=$(shell date $${SOURCE_DATE_EPOCH:+-d @$$SOURCE_DATE_EPOCH} -u "+%Y-%m-%d %H:%M:%S")
+
install: install-upgrade-paths
#
@@ -37,7 +39,7 @@ all: sql/$(TAG_UPGRADE)
sql/$(TAG_UPGRADE): $(MAKEFILE_LIST) | sql
echo '-- Just tag extension $(EXTENSION) version as "ANY"' > $@
echo '-- Installed by $(EXTENSION) $(EXTVERSION)' >> $@
- echo '-- Built on $(shell date)' >> $@
+ echo '-- Built on $(POSTGIS_BUILD_DATE)' >> $@
uninstall: uninstall-upgrade-paths
-----------------------------------------------------------------------
Summary of changes:
doc/introduction.xml | 1 +
extensions/upgrade-paths-rules.mk | 4 +++-
2 files changed, 4 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list