[SCM] PostGIS branch master updated. 3.7.0beta2-104-g4e6669870
git at osgeo.org
git at osgeo.org
Fri Aug 21 11:02:19 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, master has been updated
via 4e66698701c8411b63ac9b6c27defce05fbab13a (commit)
via ffa726977f4aa31fea2ee7169415bbd60fcd4f53 (commit)
from 8c2127c5f2f50824fdcdba20a71edf74134290a6 (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 4e66698701c8411b63ac9b6c27defce05fbab13a
Merge: 8c2127c5f ffa726977
Author: Darafei Praliaskouski <komzpa at gmail.com>
Date: Fri Aug 21 11:02:17 2026 -0700
Merge pull request 'winnie: allow absent packaging notes' (!758) from Komzpa/postgis:fix/winnie-optional-packaging-notes-20260821-master into master
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/758
commit ffa726977f4aa31fea2ee7169415bbd60fcd4f53
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 a73d68bf3..54ec34672 100644
--- a/ci/winnie/package_postgis.sh
+++ b/ci/winnie/package_postgis.sh
@@ -190,7 +190,9 @@ cp -r extensions/*/*.control ${RELDIR}/${RELVERDIR}/share/extension
#cp -r extensions/*/*.dll ${RELDIR}/${RELVERDIR}/lib
#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