[SCM] PostGIS branch stable-3.4 updated. 3.4.6-141-g58adc259c

git at osgeo.org git at osgeo.org
Fri Aug 21 11:02:10 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.4 has been updated
       via  58adc259c3c9c819a890d0a7a93ab4c582d9c70b (commit)
       via  a23bc2ca53e931b4d8aecf9764dd7a9efa3bb808 (commit)
      from  94f95f9c581166f82c3d0551d89ed8f05dec3f45 (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 58adc259c3c9c819a890d0a7a93ab4c582d9c70b
Merge: 94f95f9c5 a23bc2ca5
Author: Darafei Praliaskouski <komzpa at gmail.com>
Date:   Fri Aug 21 11:02:09 2026 -0700

    Merge pull request '[3.4] winnie: allow absent packaging notes' (!761) from Komzpa/postgis:fix/winnie-optional-packaging-notes-20260821-stable34 into stable-3.4
    
    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/761


commit a23bc2ca53e931b4d8aecf9764dd7a9efa3bb808
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 168e68bb3..7d00af4e2 100644
--- a/ci/winnie/package_postgis.sh
+++ b/ci/winnie/package_postgis.sh
@@ -202,7 +202,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://github.com/libgeos/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