[SCM] PostGIS branch stable-3.2 updated. 3.2.10-123-g33aa84aca

git at osgeo.org git at osgeo.org
Fri Aug 21 11:02:16 PDT 2026


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-3.2 has been updated
       via  33aa84aca21938a1f0ca74067627b225e6ce77d5 (commit)
       via  3b2965abd5275664a310ee97223dcba0bed3ecac (commit)
      from  4e8fa661191b71d814951d15ca13f6ab6dfa5cc0 (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 33aa84aca21938a1f0ca74067627b225e6ce77d5
Merge: 4e8fa6611 3b2965abd
Author: Darafei Praliaskouski <komzpa at gmail.com>
Date:   Fri Aug 21 11:02:15 2026 -0700

    Merge pull request '[3.2] winnie: allow absent packaging notes' (!759) from Komzpa/postgis:fix/winnie-optional-packaging-notes-20260821-stable32 into stable-3.2
    
    Winnie packaging may not have a `packaging_notes` directory. The current unconditional copy then fails after the build itself has completed.
    
    Copy that directory only when it exists. When present, copy its contents, including dotfiles.
    
    Reviewed-on: https://gitea.osgeo.org/postgis/postgis/pulls/759


commit 3b2965abd5275664a310ee97223dcba0bed3ecac
Author: Darafei Praliaskouski <me at komzpa.net>
Date:   Fri Aug 21 21:55:36 2026 +0400

    winnie: allow absent packaging notes

diff --git a/ci/winnie/package_postgis.sh b/ci/winnie/package_postgis.sh
index 85c427386..6b44acc8b 100644
--- a/ci/winnie/package_postgis.sh
+++ b/ci/winnie/package_postgis.sh
@@ -167,7 +167,9 @@ cp -r extensions/*/*.control ${RELDIR}/${RELVERDIR}/share/extension
 cp -r extensions/*/*.dll ${RELDIR}/${RELVERDIR}/lib #only address_standardizer in theory has this
 #cp extensions/postgis_topology/sql/* ${RELDIR}/${RELVERDIR}/share/extension
 #cp extensions/postgis_topology/*.control ${RELDIR}/${RELVERDIR}/share/extension
-cp -r ${RELDIR}/packaging_notes/* ${RELDIR}/${RELVERDIR}/
+if [ -d "${RELDIR}/packaging_notes" ]; then
+	cp -r "${RELDIR}/packaging_notes/." "${RELDIR}/${RELVERDIR}/"
+fi
 
 
 echo "GEOS VERSION: ${GEOS_VER} https://trac.osgeo.org/geos" >> $verfile

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

Summary of changes:
 ci/winnie/package_postgis.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list