]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
post-release administrivia
authorEric Blake <eblake@redhat.com>
Fri, 2 Jul 2010 22:54:35 +0000 (16:54 -0600)
committerEric Blake <eblake@redhat.com>
Fri, 2 Jul 2010 23:23:27 +0000 (17:23 -0600)
* maint.mk (NEWS_hash): Define.
* NEWS: Add header line for next release.
* .prev-version: Record previous version.
* cfg.mk (old_NEWS_hash): Auto-update.

.prev-version
ChangeLog
NEWS
cfg.mk
maint.mk

index 081c0d8553d82124b2035e7647911f30a8af65bd..a01a6e467e3dd2bfe0ea4a06a728f88a2213c8c2 100644 (file)
@@ -1 +1 @@
-2.65
+2.66
index 35a44314a7392677b860d9b8d39bf6af565cf12d..ac17d8cdba0ba24e52d4f04d27542c339750ad2f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2010-07-02  Eric Blake  <eblake@redhat.com>
 
+       Post-release administrivia.
+       * maint.mk (NEWS_hash): Define.
+       * NEWS: Add header line for next release.
+       * .prev-version: Record previous version.
+       * cfg.mk (old_NEWS_hash): Auto-update.
+
        Release Version 2.66.
        * NEWS: Mention the release.
 
diff --git a/NEWS b/NEWS
index e013624f97c07ad7dfed9f1787a8ce0c91dbc49c..7282697572f02e4d05a5d58071f35e9a2b21545b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,8 @@
 GNU Autoconf NEWS - User visible changes.
 
+* Noteworthy changes in release ?.? (????-??-??) [?]
+
+
 * Major changes in Autoconf 2.66 (2010-07-02) [stable]
   Released by Eric Blake, based on git versions 2.65.*.
 
diff --git a/cfg.mk b/cfg.mk
index 6ba0e14e8906581c2670dff4820bb5f5dcf20b5a..e3c5800f3f773ffae47a233e29dddb4ce110648a 100644 (file)
--- a/cfg.mk
+++ b/cfg.mk
@@ -108,3 +108,6 @@ local-checks-to-skip ?= \
 update-copyright-env = \
   UPDATE_COPYRIGHT_USE_INTERVALS=0 \
   UPDATE_COPYRIGHT_MAX_LINE_LENGTH=72
+
+# Prevent incorrect NEWS edits.
+old_NEWS_hash = d41d8cd98f00b204e9800998ecf8427e
index 43d07591d4b0260d5af2336a3f2f0cd9c5b3ad84..efc5062c734f4dee4591d31debb26b258fda4832 100644 (file)
--- a/maint.mk
+++ b/maint.mk
@@ -383,6 +383,14 @@ strftime-check:
 check-AUTHORS:
        test ! -d src || $(MAKE) -C src $@
 
+NEWS_hash =                                                            \
+  $$(sed -n '/^\*.* $(PREV_VERSION_REGEXP) ([0-9-]*)/,$$p'             \
+       $(srcdir)/NEWS                                                  \
+     | perl -0777 -pe                                                  \
+       's/^Copyright.+?Free\sSoftware\sFoundation,\sInc\.\n//ms'       \
+     | md5sum -                                                                \
+     | sed 's/ .*//')
+
 # Ensure that we don't accidentally insert an entry into an old NEWS block.
 sc_immutable_NEWS:
        @if test -f $(srcdir)/NEWS; then                                \