[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0alpha1-117-g6fa645cd6

git at osgeo.org git at osgeo.org
Sun Jul 3 07:48:47 PDT 2022


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  6fa645cd67fd70ff92e47cb43a74c33558eb6597 (commit)
       via  562715efa91b8f5cecedb09cca821fe37d70d4a2 (commit)
      from  4e36085450b43f56a172e8e760b7f95e9a5eaa9c (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 6fa645cd67fd70ff92e47cb43a74c33558eb6597
Author: Regina Obe <lr at pcorp.us>
Date:   Sun Jul 3 10:48:38 2022 -0400

    Prep for release

diff --git a/HOWTO_RELEASE b/HOWTO_RELEASE
index 848d10828..0d8745185 100644
--- a/HOWTO_RELEASE
+++ b/HOWTO_RELEASE
@@ -112,14 +112,14 @@ Release procedure
      $ git tag -a $rev -m "Tagged release $rev"
      $ git push osgeo --tags
 
-  - Take tar ball from http://postgis.net/stuff/
-     (You might need to wait a few minutes to see it.
+  - Take tar ball and md5 from http://postgis.net/stuff/
+     (You might need to wait a few minutes to see it)
      If impatient check status of job - https://debbie.postgis.net/job/PostGIS_Make_Dist/
      If it fails, sh make_dist.sh $rev)
-  - Documentation should also have been built and should be in http://postgis.net/stuff
+  - Documentation should also have been built and should be in https://postgis.net/stuff
      (this sometimes takes sometime so wait 15 minutes)
   - Test generated tarball (including extension upgrade)
-  - Copy tarball, pdf, doc-html to https://upload.osgeo.org/postgis/ web site.
+  - Copy tarball, md5, pdf, doc-html to https://upload.osgeo.org/postgis/ .
 
   - PostGIS doc release versioned doc - http://postgis.net/documentation/
     - On postgis.net server, change /etc/nginx/sites-enabled/postgis.net (Versionless URL line )
diff --git a/NEWS b/NEWS
index 8db49f196..0c3435454 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
 PostGIS 3.3.0beta1
-2022/07/02
+2022/07/03
 This version requires PostgreSQL 11 or higher, GEOS 3.6 or higher, and Proj 5.2+.
 Additional features are enabled if you are running GEOS 3.9+
 ST_MakeValid enhancements with 3.10+, numerouse additional enhancements with GEOS 3.11+.
diff --git a/README.postgis b/README.postgis
index d827c7614..66a1e8612 100644
--- a/README.postgis
+++ b/README.postgis
@@ -1,8 +1,8 @@
 PostGIS - Geographic Information Systems Extensions to PostgreSQL
 =================================================================
 
-:Version: 3.3.0alpha1
-:Date: 2022-05-21
+:Version: 3.3.0beta1
+:Date: 2022-07-03
 :Website: https://postgis.net
 
 This distribution contains a module which implements GIS simple features, ties
@@ -41,7 +41,7 @@ PostGIS is compatible with PostgreSQL 11 and above.
 You *must* have the full PostgreSQL - including server headers - installed for
 this to work.
 
-* PROJ4 (Required, Version 4.9.0 or higher):
+* PROJ4 (Required, Version 5.2.0 or higher):
 
   The PROJ4 catographic projection library is required if you want to use the
   ST_Transform() function to reproject features within the database.
@@ -49,7 +49,9 @@ this to work.
     https://proj.org
 
 * GEOS (Required, Version 3.6 or higher)
-  - 3/10+ for ST_MakeValid enhancements
+  - 3.11+ for imporved ST_ConcaveHull, ST_lineMerge,
+    and new functions ST_SimplifyPolygonHull, ST_TriangulatePolygon
+  - 3.10+ for ST_MakeValid enhancements
   - 3.9+ is needed to take advantage of
     fixed precision enhancements in overlay functions
   - 3.7+ is needed just for the ST_FrechetDistance function
@@ -90,6 +92,8 @@ this to work.
   must ``./configure --without-raster``
 
 * CGAL 4.1+ and SFCGAL 1.3.2+ (Optional) needed for advanced 3D support
+* SFCGAL 1.4.1+ is requires for additional functionality ST_AlphaShape, ST_OptimalAlphaShape,
+  and ST_3DConvexhull
 
   https://gitlab.com/Oslandia/SFCGAL
 
@@ -135,6 +139,8 @@ If ``pg_config`` can't be found in your ``$PATH`` configure will complain
 and refuse to proceed. You can specify it using the
 ``--with-pgconfig=/path/to/pg_config`` flag.
 
+PostGIS supports pkg-config for most dependencies.
+
 If PROJ4 has been installed but cannot be found, configure will complain and
 refuse to proceed. You can specify an alternative installation directory using
 the ``--with-projdir=DIR`` option.

commit 562715efa91b8f5cecedb09cca821fe37d70d4a2
Author: Regina Obe <lr at pcorp.us>
Date:   Sun Jul 3 10:36:29 2022 -0400

    Add step in debbie's packaging to generate md5

diff --git a/ci/debbie/postgis_make_dist.sh b/ci/debbie/postgis_make_dist.sh
index 3ad963cb9..4ada3c6fe 100644
--- a/ci/debbie/postgis_make_dist.sh
+++ b/ci/debbie/postgis_make_dist.sh
@@ -31,7 +31,9 @@ export newoutdir="postgis-${POSTGIS_MAJOR_VERSION}.${POSTGIS_MINOR_VERSION}.${PO
 
 sh make_dist.sh
 export package=${newoutdir}.tar.gz
+md5sum ${package} > ${package}.md5
 echo "The package name is $package"
 
 cp $package $WEB_DIR
+cp ${package}.md5 $WEB_DIR
 bash ci/debbie/postgis_release_docs.sh

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

Summary of changes:
 HOWTO_RELEASE                  |  8 ++++----
 NEWS                           |  2 +-
 README.postgis                 | 14 ++++++++++----
 ci/debbie/postgis_make_dist.sh |  2 ++
 4 files changed, 17 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list