[postgis-tickets] [SCM] PostGIS branch master updated. d895b223780fe72f9e14082f0f256b01ff71d054

git at osgeo.org git at osgeo.org
Thu Dec 19 04:56:25 PST 2019


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  d895b223780fe72f9e14082f0f256b01ff71d054 (commit)
      from  f35288ebd43299a1d1a3adf2e87acefa4254a92f (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 d895b223780fe72f9e14082f0f256b01ff71d054
Author: Sandro Santilli <strk at kbt.io>
Date:   Thu Dec 19 13:51:42 2019 +0100

    Filter commits earlier in the process

diff --git a/utils/check_news.sh b/utils/check_news.sh
index 7fa7d23..d356d9e 100755
--- a/utils/check_news.sh
+++ b/utils/check_news.sh
@@ -65,10 +65,9 @@ if test "${TICKET_REFS}" = "yes"; then
   # If git is available, check that every ticket reference in
   # commit logs is also found in the NEWS file
   if which git > /dev/null && test -e .git; then
-    git log --grep '#[0-9]\+' --pretty='format:%H%n%w(800,1,1)%B' |
-      grep -v 'git-svn-id:' |
-      awk 'NR > 1 && /^[^ ]/ { printf "\n" } 1 { printf "%s", $0 }' |
-      grep -wvf $TICKET_REFS_SKIP_COMMITS |
+    git log --grep '#[0-9]\+' --pretty='format:%H' |
+      grep -vwf $TICKET_REFS_SKIP_COMMITS |
+      xargs git log --no-walk --pretty='format:%B' |
       sed -En 's|#([0-9]+)|\a\1\n|;/\n/!b;s|.*\a||;P;D' |
       sort -nru |
     while read ref; do

-----------------------------------------------------------------------

Summary of changes:
 utils/check_news.sh | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list