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 "GNU gsasl".

http://git.savannah.gnu.org/cgit/gsasl.git/commit/?id=516e30006ee5b243de84ddd6c56a6b4d802e08fd

The branch, master has been updated
       via  516e30006ee5b243de84ddd6c56a6b4d802e08fd (commit)
      from  48baeaf4d8b6b5c657cc215c73a4f34c30b5a27f (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 516e30006ee5b243de84ddd6c56a6b4d802e08fd
Author: Simon Josefsson <[email protected]>
Date:   Tue Jan 12 20:26:24 2010 +0100

    Improve syntax-check exception stuff.

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

Summary of changes:
 cfg.mk       |    2 +-
 lib/maint.mk |    7 ++++++-
 maint.mk     |    9 ++++++---
 3 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/cfg.mk b/cfg.mk
index 8129da2..8ca74c2 100644
--- a/cfg.mk
+++ b/cfg.mk
@@ -31,7 +31,7 @@ local-checks-to-skip = sc_prohibit_strcmp 
sc_error_message_uppercase  \
        sc_prohibit_have_config_h sc_require_config_h                   \
        sc_require_config_h_first sc_unmarked_diagnostics               \
        sc_GPL_version sc_immutable_NEWS sc_copyright_check
-VC_LIST_NEVER = ^((lib/)?(gl|gltests|build-aux))/.*
+VC_LIST_ALWAYS_EXCLUDE_REGEX = ^((lib/)?(gl|gltests|build-aux))/.*
 
 autoreconf:
        for f in po/*.po.in lib/po/*.po.in; do \
diff --git a/lib/maint.mk b/lib/maint.mk
index 3651543..366d12a 100644
--- a/lib/maint.mk
+++ b/lib/maint.mk
@@ -36,9 +36,14 @@ VC-tag = git tag -s -m '$(VERSION)' -u '$(gpg_key_ID)'
 
 VC_LIST = $(build_aux)/vc-list-files -C $(srcdir)
 
+# You can override this variable in cfg.mk to set your own regexp
+# matching files to ignore.
+VC_LIST_ALWAYS_EXCLUDE_REGEX ?= ^$$
+
 VC_LIST_EXCEPT = \
   $(VC_LIST) | if test -f $(srcdir)/.x-$@; then grep -vEf $(srcdir)/.x-$@; \
-              else grep -Ev "$${VC_LIST_EXCEPT_DEFAULT-ChangeLog}"; fi
+              else grep -Ev -e "$${VC_LIST_EXCEPT_DEFAULT-ChangeLog}"; fi \
+       | grep -Ev -e '$(VC_LIST_ALWAYS_EXCLUDE_REGEX)'
 
 ifeq ($(origin prev_version_file), undefined)
   prev_version_file = $(srcdir)/.prev-version
diff --git a/maint.mk b/maint.mk
index c91b730..366d12a 100644
--- a/maint.mk
+++ b/maint.mk
@@ -36,11 +36,14 @@ VC-tag = git tag -s -m '$(VERSION)' -u '$(gpg_key_ID)'
 
 VC_LIST = $(build_aux)/vc-list-files -C $(srcdir)
 
+# You can override this variable in cfg.mk to set your own regexp
+# matching files to ignore.
+VC_LIST_ALWAYS_EXCLUDE_REGEX ?= ^$$
+
 VC_LIST_EXCEPT = \
   $(VC_LIST) | if test -f $(srcdir)/.x-$@; then grep -vEf $(srcdir)/.x-$@; \
-              else grep -Ev "$${VC_LIST_EXCEPT_DEFAULT-ChangeLog}"; fi \
-       | if test -n "$(VC_LIST_NEVER)"; then grep -Ev "$(VC_LIST_NEVER)"; \
-       else cat; fi
+              else grep -Ev -e "$${VC_LIST_EXCEPT_DEFAULT-ChangeLog}"; fi \
+       | grep -Ev -e '$(VC_LIST_ALWAYS_EXCLUDE_REGEX)'
 
 ifeq ($(origin prev_version_file), undefined)
   prev_version_file = $(srcdir)/.prev-version


hooks/post-receive
-- 
GNU gsasl


_______________________________________________
Gsasl-commit mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gsasl-commit

Reply via email to