[SCM] PostGIS branch master updated. 3.4.0rc1-1147-gf69d77e4e

git at osgeo.org git at osgeo.org
Wed Jun 5 10:54:50 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  f69d77e4e3d7f16aca2797fb53ce5021d7b09e82 (commit)
      from  6cbedb14f4165ed9c1d8b8e3348ef8b8ee9a4418 (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 f69d77e4e3d7f16aca2797fb53ce5021d7b09e82
Author: Sandro Santilli <strk at kbt.io>
Date:   Wed Jun 5 19:54:25 2024 +0200

    Enforce files mode and ownership in tar to make it reproducible

diff --git a/make_dist.sh b/make_dist.sh
index 351f92816..a9047fabd 100755
--- a/make_dist.sh
+++ b/make_dist.sh
@@ -147,7 +147,7 @@ find "${outdir}" -exec touch -d "${date}" {} \;
 echo "Generating $package file"
 
 # Create tar
-tar cf - --sort=name "$outdir" > ${package}.tar || exit 1
+tar cf - --sort=name --mode=a+rwX --owner=0 --group=0 --numeric-owner "$outdir" > ${package}.tar || exit 1
 
 # Compress
 gzip -n9 < ${package}.tar > ${package} || exit 1

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

Summary of changes:
 make_dist.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list