[SCM] PostGIS branch master updated. 3.4.0rc1-1132-g95584316c

git at osgeo.org git at osgeo.org
Fri May 31 12:11:02 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  95584316c1663a0b0c9185b3827b2eee740bba2c (commit)
      from  cc29c7bda4c5153c09a31e641805d5f7ab8a49b1 (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 95584316c1663a0b0c9185b3827b2eee740bba2c
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri May 31 21:10:38 2024 +0200

    Have make_dist.sh automatically create the md5 file

diff --git a/HOWTO_RELEASE b/HOWTO_RELEASE
index cbb1d02c8..05aa66f20 100644
--- a/HOWTO_RELEASE
+++ b/HOWTO_RELEASE
@@ -138,7 +138,6 @@ Release procedure
       $ sh make_dist.sh $rev
 
     - Upload md5 file to https://postgis.net/stuff:
-      $ md5sum postgis-${rev}.tar.gz > postgis-${rev}.tar.gz.md5
       $ scp postgis-${rev}.tar.gz.md5 debbie.postgis.net:/var/www/postgis_stuff
 
     - Create the pdf and epub files:
diff --git a/make_dist.sh b/make_dist.sh
index d71be0e99..25ed1d437 100755
--- a/make_dist.sh
+++ b/make_dist.sh
@@ -137,5 +137,8 @@ fi
 echo "Generating $package file"
 tar czf "$package" "$outdir" || exit 1
 
+echo "Generating ${package}.md5 file"
+md5sum "${package}" > ${package}.md5
+
 #echo "Cleaning up"
 #rm -Rf "$outdir"

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

Summary of changes:
 HOWTO_RELEASE | 1 -
 make_dist.sh  | 3 +++
 2 files changed, 3 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list