[SCM] PostGIS branch stable-3.5 updated. 3.5.7-140-gda7602bad
git at osgeo.org
git at osgeo.org
Fri Aug 21 11:02:06 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.5 has been updated
via da7602bad94e1ba6de48571f16fed93aef32c3ce (commit)
via 7e224057dc9cb8a519d9c5158f56ab04e2adebdf (commit)
from 9d9957c325c8e41e2cf8bfc4c937b47aaccc5e60 (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 da7602bad94e1ba6de48571f16fed93aef32c3ce
Merge: 9d9957c32 7e224057d
Author: Darafei Praliaskouski <komzpa at gmail.com>
Date: Fri Aug 21 11:02:05 2026 -0700
Merge pull request '[3.5] winnie: allow absent packaging notes' (!762) from Komzpa/postgis:fix/winnie-optional-packaging-notes-20260821-stable35 into stable-3.5
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/762
commit 7e224057dc9cb8a519d9c5158f56ab04e2adebdf
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 bcaa2435e..859028fa7 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