[SCM] PostGIS branch stable-3.6 updated. 3.6.4-141-g6a8b5a8ce
git at osgeo.org
git at osgeo.org
Fri Aug 21 11:02:02 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.6 has been updated
via 6a8b5a8ce8939ef68878f4f9f98e846fd99081de (commit)
via 362ea86d638d780af995cbb069e9badcfa13245d (commit)
from 304fb41ff9ed03c4acdb4667b46c794a0131911f (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 6a8b5a8ce8939ef68878f4f9f98e846fd99081de
Merge: 304fb41ff 362ea86d6
Author: Darafei Praliaskouski <komzpa at gmail.com>
Date: Fri Aug 21 11:02:01 2026 -0700
Merge pull request '[3.6] winnie: allow absent packaging notes' (!763) from Komzpa/postgis:fix/winnie-optional-packaging-notes-20260821-stable36 into stable-3.6
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/763
commit 362ea86d638d780af995cbb069e9badcfa13245d
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