autoconf-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Autoconf source repository branch, master, updated. v2.67-1-g7


From: Eric Blake
Subject: [SCM] GNU Autoconf source repository branch, master, updated. v2.67-1-g7ab1f40
Date: Thu, 22 Jul 2010 13:50:06 +0000

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 Autoconf source repository".

http://git.sv.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=7ab1f403bd22edb32fea164fe4b24061d552b153

The branch, master has been updated
       via  7ab1f403bd22edb32fea164fe4b24061d552b153 (commit)
       via  7c405b33831b908b5d0cfcb09466c211e28f4d1b (commit)
       via  6b16d0ac0408b4bbbca9e8b652e382ee806394fb (commit)
      from  9571a4b32323cfd52f8f47f54ecfe5868b43e17d (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 7ab1f403bd22edb32fea164fe4b24061d552b153
Author: Eric Blake <address@hidden>
Date:   Wed Jul 21 16:19:14 2010 -0600

    post-release administrivia
    
    * NEWS: Add header line for next release.
    * .prev-version: Record previous version.
    * cfg.mk (old_NEWS_hash): Auto-update.

commit 7c405b33831b908b5d0cfcb09466c211e28f4d1b
Author: Eric Blake <address@hidden>
Date:   Tue Jul 20 09:39:43 2010 -0600

    Release Version 2.67.
    
    * NEWS: Mention the release.
    
    Signed-off-by: Eric Blake <address@hidden>

commit 6b16d0ac0408b4bbbca9e8b652e382ee806394fb
Author: Eric Blake <address@hidden>
Date:   Wed Jul 21 10:31:52 2010 -0600

    Prepare for release.
    
    * maint.mk (PREV_VERSION_REGEXP): New macro, missed when
    backporting update-NEWS_hash from gnulib.
    * cfg.mk (old_NEWS_hash): Correctly generate.
    * build-aux/gendocs.sh: Temporarily break sync from upstream, to
    avoid including spurious directories in info source tarball.
    
    Signed-off-by: Eric Blake <address@hidden>

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

Summary of changes:
 .prev-version        |    2 +-
 ChangeLog            |   10 ++++++++++
 NEWS                 |    4 ++++
 build-aux/gendocs.sh |    7 +++++--
 cfg.mk               |    2 +-
 maint.mk             |    1 +
 6 files changed, 22 insertions(+), 4 deletions(-)

diff --git a/.prev-version b/.prev-version
index a01a6e4..6d1c159 100644
--- a/.prev-version
+++ b/.prev-version
@@ -1 +1 @@
-2.66
+2.67
diff --git a/ChangeLog b/ChangeLog
index d435c19..46ddfe2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
 2010-07-21  Eric Blake  <address@hidden>
 
+       Release Version 2.67.
+       * NEWS: Mention the release.
+
+       Prepare for release.
+       * maint.mk (PREV_VERSION_REGEXP): New macro, missed when
+       backporting update-NEWS_hash from gnulib.
+       * cfg.mk (old_NEWS_hash): Correctly generate.
+       * build-aux/gendocs.sh: Temporarily break sync from upstream, to
+       avoid including spurious directories in info source tarball.
+
        Avoid spurious testsuite failures.
        * doc/autoconf.texi (Generating Sources): Don't mix gcc '-E' and
        '-o -', since the former already implies stdout, while the latter
diff --git a/NEWS b/NEWS
index e2ae2a7..b59716c 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,10 @@ GNU Autoconf NEWS - User visible changes.
 
 * Noteworthy changes in release ?.? (????-??-??) [?]
 
+
+* Major changes in Autoconf 2.67 (2010-07-21) [stable]
+  Released by Eric Blake, based on git versions 2.66.*.
+
 ** AC_CONFIG_SUBDIRS with more than one subdirectory at a time works again.
    Regression introduced in 2.66.
 
diff --git a/build-aux/gendocs.sh b/build-aux/gendocs.sh
index 8cab8f6..7cb2524 100755
--- a/build-aux/gendocs.sh
+++ b/build-aux/gendocs.sh
@@ -2,7 +2,7 @@
 # gendocs.sh -- generate a GNU manual in many formats.  This script is
 #   mentioned in maintain.texi.  See the help message below for usage details.
 
-scriptversion=2010-05-04.09
+scriptversion=2010-07-21.10
 
 # Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
 # Free Software Foundation, Inc.
@@ -282,8 +282,11 @@ fi
 
 echo Making .tar.gz for sources...
 d=`dirname $srcfile`
-srcfiles=`ls $d/*.texinfo $d/*.texi $d/*.txi $d/*.eps 2>/dev/null` || true
+(
+cd "$d"
+srcfiles=`ls *.texinfo *.texi *.txi *.eps 2>/dev/null` || true
 tar cvzfh $outdir/$PACKAGE.texi.tar.gz $srcfiles
+)
 texi_tgz_size=`calcsize $outdir/$PACKAGE.texi.tar.gz`
 
 if test -n "$docbook"; then
diff --git a/cfg.mk b/cfg.mk
index e3c5800..7ba8e04 100644
--- a/cfg.mk
+++ b/cfg.mk
@@ -110,4 +110,4 @@ update-copyright-env = \
   UPDATE_COPYRIGHT_MAX_LINE_LENGTH=72
 
 # Prevent incorrect NEWS edits.
-old_NEWS_hash = d41d8cd98f00b204e9800998ecf8427e
+old_NEWS_hash = 2ddcbbdee88e191370a07c8d73d8680c
diff --git a/maint.mk b/maint.mk
index efc5062..99af2ff 100644
--- a/maint.mk
+++ b/maint.mk
@@ -51,6 +51,7 @@ endif
 
 PREV_VERSION := $(shell cat $(prev_version_file) 2>/dev/null)
 VERSION_REGEXP = $(subst .,\.,$(VERSION))
+PREV_VERSION_REGEXP = $(subst .,\.,$(PREV_VERSION))
 
 this-vc-tag = v$(VERSION)
 this-vc-tag-regexp = v$(VERSION_REGEXP)


hooks/post-receive
-- 
GNU Autoconf source repository



reply via email to

[Prev in Thread] Current Thread [Next in Thread]