[SCM] PostGIS branch stable-3.3 updated. 3.3.10-134-g6f7bf676d
git at osgeo.org
git at osgeo.org
Fri Aug 21 11:02:13 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.3 has been updated
via 6f7bf676d71179c4b3b3eab9cf492ab7a7380300 (commit)
via 27fffbe65d64a6ab4ae21b6cc61e17f1254b8a7a (commit)
from 47098a123eb435ea5f249df0808e6731756677d2 (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 6f7bf676d71179c4b3b3eab9cf492ab7a7380300
Merge: 47098a123 27fffbe65
Author: Darafei Praliaskouski <komzpa at gmail.com>
Date: Fri Aug 21 11:02:12 2026 -0700
Merge pull request '[3.3] winnie: allow absent packaging notes' (!760) from Komzpa/postgis:fix/winnie-optional-packaging-notes-20260821-stable33 into stable-3.3
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/760
commit 27fffbe65d64a6ab4ae21b6cc61e17f1254b8a7a
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 7324ab7ee..ad915fb56 100644
--- a/ci/winnie/package_postgis.sh
+++ b/ci/winnie/package_postgis.sh
@@ -193,7 +193,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