[postgis-tickets] [SCM] PostGIS branch stable-2.5 updated. 2.5.5-34-gb121e7fa1

git at osgeo.org git at osgeo.org
Tue Apr 19 13:40:29 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, stable-2.5 has been updated
       via  b121e7fa1b0f70677ffd83597cfd0873117c41b4 (commit)
      from  38579816fbb178604001d8a89fa98018ca6c6b7e (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 b121e7fa1b0f70677ffd83597cfd0873117c41b4
Author: Regina Obe <lr at pcorp.us>
Date:   Mon Apr 18 00:08:00 2022 -0400

    Fix packing slip and update proj and GDAL

diff --git a/ci/winnie/build_postgis.sh b/ci/winnie/build_postgis.sh
index a7470f555..f370ab0a3 100644
--- a/ci/winnie/build_postgis.sh
+++ b/ci/winnie/build_postgis.sh
@@ -14,8 +14,8 @@ set -e
 #export GCC_TYPE=gcc48  #for pre-4.8.0 compiles this is blank
 if  [[ "${OVERRIDE}" == '' ]] ; then
 export GEOS_VER=3.8.2
-export GDAL_VER=2.4.4
-export PROJ_VER=5.2.0
+export GDAL_VER=3.4.2
+export PROJ_VER=7.2.1
 export SFCGAL_VER=1.4.1
 export PCRE_VER=8.33
 export PROTOBUF_VER=3.2.0
diff --git a/ci/winnie/package_postgis.sh b/ci/winnie/package_postgis.sh
index 5928a6be8..606a824d7 100644
--- a/ci/winnie/package_postgis.sh
+++ b/ci/winnie/package_postgis.sh
@@ -14,8 +14,8 @@
 #export GCC_TYPE=
 if  [[ "${OVERRIDE}" == '' ]] ; then
 export GEOS_VER=3.8.2
-export GDAL_VER=2.4.4
-export PROJ_VER=5.2.0
+export GDAL_VER=3.4.2
+export PROJ_VER=7.2.1
 export SFCGAL_VER=1.4.1
 export PCRE_VER=8.33
 export PROTOBUF_VER=3.2.0
@@ -172,7 +172,7 @@ cp -p ${PROJECTS}/geos/rel-${GEOS_VER}w${OS_BUILD}${GCC_TYPE}/bin/*.dll $outdir/
 #for protobuf
 cp ${PROJECTS}/protobuf/rel-${PROTOBUF_VER}w${OS_BUILD}${GCC_TYPE}/bin/libprotobuf-c-*.dll $outdir/bin
 
-echo "POSTGIS: ${POSTGIS_MINOR_VER} r${POSTGIS_SVN_REVISION} https://postgis.net/source" > $verfile
+echo "POSTGIS: ${POSTGIS_MICRO_VER} https://postgis.net/source" > $verfile
 
 if [ "$POSTGIS_MAJOR_VERSION" == "2" ] ; then
   ## only copy gdal components if 2+.  1.5 doesn't have raster support
@@ -189,8 +189,8 @@ fi;
 
 if [ -n "$SFCGAL_VER"  ]; then
 	## only copy cgal and sfcgal stuff if sfcgal is packaged
-	export BOOST_VER=1.59.0
-	export BOOST_VER_WU=1_59_0
+	export BOOST_VER=1.78.0
+	export BOOST_VER_WU=1_78_0
 	export GMP_VER=5.1.2
 	export MPFR_VER=3.1.2
 	echo "CGAL VERSION: ${CGAL_VER} http://www.cgal.org" >> $verfile
@@ -251,14 +251,12 @@ cp -r extensions/*/*.dll ${RELDIR}/${RELVERDIR}/lib #only address_standardizer i
 cp -r ${RELDIR}/packaging_notes/* ${RELDIR}/${RELVERDIR}/
 
 
-echo "GEOS VERSION: ${GEOS_VER} http://trac.osgeo.org/geos" >> $verfile
-echo "GDAL VERSION: ${GDAL_VER} http://trac.osgeo.org/gdal" >> $verfile
-echo "PROJ VERSION: ${PROJ_VER} http://trac.osgeo.org/proj" >> $verfile
+echo "GEOS VERSION: ${GEOS_VER} https://libgeos.org/usage/download/" >> $verfile
+echo "GDAL VERSION: ${GDAL_VER} https://proj.org/download.html" >> $verfile
+echo "PROJ VERSION: ${PROJ_VER} https://proj.org/download.html" >> $verfile
 
 if [ -n "$SFCGAL_VER"  ]; then
-    echo "CGAL VERSION: ${CGAL_VER} http://www.cgal.org" >> $verfile
-    echo "BOOST VERSION: ${BOOST_VER} http://www.boost.org" >> $verfile
-    echo "SFCGAL VERSION: ${SFCGAL_VER} http://www.sfcgal.org https://github.com/Oslandia/SFCGAL" >> $verfile
+    echo "SFCGAL VERSION: ${SFCGAL_VER} http://www.sfcgal.org https://gitlab.com/Oslandia/SFCGAL" >> $verfile
 fi;
 #echo "PAGC ADDRESS STANDARDIZER: http://sourceforge.net/p/pagc/code/HEAD/tree/branches/sew-refactor/postgresql " >> $verfile
 cd ${RELDIR}
diff --git a/ci/winnie/regress_postgis.sh b/ci/winnie/regress_postgis.sh
index 623bd8529..d91b43c07 100644
--- a/ci/winnie/regress_postgis.sh
+++ b/ci/winnie/regress_postgis.sh
@@ -2,8 +2,8 @@
 set -e
 if  [[ "${OVERRIDE}" == '' ]] ; then
 export GEOS_VER=3.8.2
-export GDAL_VER=2.2.4
-export PROJ_VER=5.2.0
+export GDAL_VER=3.4.2
+export PROJ_VER=7.2.1
 export SFCGAL_VER=1.4.1
 export ICONV_VER=1.13.1
 if [["${OS_BUILD}" == '64']] ; then

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

Summary of changes:
 ci/winnie/build_postgis.sh   |  4 ++--
 ci/winnie/package_postgis.sh | 20 +++++++++-----------
 ci/winnie/regress_postgis.sh |  4 ++--
 3 files changed, 13 insertions(+), 15 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list