]> git.saurik.com Git - bison.git/commitdiff
maint: fix use of copyright year intervals.
authorJoel E. Denny <jdenny@clemson.edu>
Fri, 14 Aug 2009 21:05:06 +0000 (17:05 -0400)
committerJoel E. Denny <jdenny@clemson.edu>
Fri, 14 Aug 2009 22:50:49 +0000 (18:50 -0400)
* gnulib: Update.
* bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
as now recommended in gnulib/NEWS.
* build-aux/update-b4-copyright: Fix.
* cfg.mk (update-copyright-env): Configure update-copyright.
(cherry picked from commit 75ac158b82be1fab5157b140287368165a50ec82)

ChangeLog
bootstrap.conf
build-aux/update-b4-copyright
cfg.mk
gnulib
lib/.cvsignore
lib/.gitignore
m4/.cvsignore
m4/.gitignore

index e115b835cdaea9791eefa46707ab6730d85b7763..14d2d08f2daf492fc08d479da762a3df5b293fc1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
+
+       maint: fix use of copyright year intervals.
+       * gnulib: Update.
+       * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
+       as now recommended in gnulib/NEWS.
+       * build-aux/update-b4-copyright: Fix.
+       * cfg.mk (update-copyright-env): Configure update-copyright.
+
 2009-08-13  Joel E. Denny  <jdenny@clemson.edu>
 
        Make it easier to write deterministic tests.
 2009-08-13  Joel E. Denny  <jdenny@clemson.edu>
 
        Make it easier to write deterministic tests.
index ee7b8733b404f906aede51f7d56aca7e97339cbf..1cef2f0d3cd6e81f3ccfb2c424ade93bcf5b9ae8 100644 (file)
@@ -18,7 +18,7 @@
 # gnulib modules used by this package.
 gnulib_modules='
   announce-gen argmatch config-h c-strcase configmake dirname error
 # gnulib modules used by this package.
 gnulib_modules='
   announce-gen argmatch config-h c-strcase configmake dirname error
-  extensions fopen-safer gendocs getopt gettext git-version-gen hash
+  extensions fopen-safer gendocs getopt-gnu gettext git-version-gen hash
   inttypes javacomp-script javaexec-script maintainer-makefile malloc
   mbswidth obstack quote quotearg stdbool stpcpy strerror strtoul
   strverscmp unistd unistd-safer unlocked-io update-copyright unsetenv
   inttypes javacomp-script javaexec-script maintainer-makefile malloc
   mbswidth obstack quote quotearg stdbool stpcpy strerror strtoul
   strverscmp unistd unistd-safer unlocked-io update-copyright unsetenv
index af43407d71c7ee584122cce8e102ac355cae3f51..30c380134950c1090e45958dea13a3b152f0214d 100755 (executable)
@@ -42,7 +42,7 @@ my $old_re = <<'EOF'
   (?:
     ,\s*
     (
   (?:
     ,\s*
     (
-      \[\s* (?:\d{4}(,\s*|-))* (\d{4}) \s*]
+      \[\s* (?:\d{4}(?:,\s*|-))* (\d{4}) \s*]
     )
   )?
   \)
     )
   )?
   \)
@@ -54,8 +54,7 @@ while (/($old_re)/gx)
     my $start = pos() - length ($1);
     my $b4_copyright_line = $2;
     my $year_lines = $3;
     my $start = pos() - length ($1);
     my $b4_copyright_line = $2;
     my $year_lines = $3;
-    my $sep = $4 ? $4 : "";
-    my $final_year = $5;
+    my $final_year = $4;
     $year_lines .= ')';
 
     # If there was a second argument, it contains years, so update them.
     $year_lines .= ')';
 
     # If there was a second argument, it contains years, so update them.
@@ -65,18 +64,7 @@ while (/($old_re)/gx)
         if ($final_year != $this_year)
           {
             # Update the year.
         if ($final_year != $this_year)
           {
             # Update the year.
-            if ($sep eq '-' && $final_year + 1 == $this_year)
-              {
-                $year_lines =~ s/$final_year/$this_year/;
-              }
-            elsif ($sep ne '-' && $final_year + 1 == $this_year)
-              {
-                $year_lines =~ s/$final_year/$final_year-$this_year/;
-              }
-            else
-              {
-                $year_lines =~ s/$final_year/$final_year, $this_year/;
-              }
+            $year_lines =~ s/$final_year/$final_year, $this_year/;
           }
 
         # Normalize all whitespace.
           }
 
         # Normalize all whitespace.
@@ -85,6 +73,20 @@ while (/($old_re)/gx)
         # Put spaces after commas.
         $year_lines =~ s/, ?/, /g;
 
         # Put spaces after commas.
         $year_lines =~ s/, ?/, /g;
 
+        # Compress to intervals.
+        $year_lines =~
+          s/
+            (\d{4})
+            (?:
+              (,\ |-)
+              ((??{
+                if    ($2 eq '-') { '\d{4}'; }
+                elsif (!$3)       { $1 + 1;  }
+                else              { $3 + 1;  }
+              }))
+            )+
+          /$1-$3/gx;
+
         # Format within margin.
         my $year_lines_new;
         my $indent = index ($b4_copyright_line, '[');
         # Format within margin.
         my $year_lines_new;
         my $indent = index ($b4_copyright_line, '[');
diff --git a/cfg.mk b/cfg.mk
index 66a2bc6fc059176053089617f1df1e8db4b8039f..501e8dce2ca46a658adbffecc8bee199495ffa6f 100644 (file)
--- a/cfg.mk
+++ b/cfg.mk
@@ -44,3 +44,5 @@ gnulib_dir = $(srcdir)/../../gnulib
 bootstrap-tools = autoconf,automake,flex,gnulib
 
 update-copyright-local = update-b4-copyright
 bootstrap-tools = autoconf,automake,flex,gnulib
 
 update-copyright-local = update-b4-copyright
+update-copyright-env = \
+  UPDATE_COPYRIGHT_FORCE=1 UPDATE_COPYRIGHT_USE_INTERVALS=1
diff --git a/gnulib b/gnulib
index 109f2942075bba4454bd92141b1803cf1b79684c..e98f3a0b6bb91ab0a1bc71b66b92611f9c3d9546 160000 (submodule)
--- a/gnulib
+++ b/gnulib
@@ -1 +1 @@
-Subproject commit 109f2942075bba4454bd92141b1803cf1b79684c
+Subproject commit e98f3a0b6bb91ab0a1bc71b66b92611f9c3d9546
index a9d58230debfcb63eb8c56a4e903324abba97525..9cf8ec51983d978c081b940cab914d4900fa5550 100644 (file)
@@ -64,6 +64,7 @@ stamp-h1
 stdbool.h
 stdbool.in.h
 stdbool_.h
 stdbool.h
 stdbool.in.h
 stdbool_.h
+stddef.in.h
 stdint.h
 stdint.in.h
 stdint_.h
 stdint.h
 stdint.in.h
 stdint_.h
index d3f4a0ac4b81b25c2fa1dac97389bc92d9eaefa9..61afc481d65fb1bb3641a85e7717262753645a86 100644 (file)
@@ -67,6 +67,7 @@
 /stdbool.h
 /stdbool.in.h
 /stdbool_.h
 /stdbool.h
 /stdbool.in.h
 /stdbool_.h
+/stddef.in.h
 /stdint.h
 /stdint.in.h
 /stdint_.h
 /stdint.h
 /stdint.in.h
 /stdint_.h
index eb2f1732990044a7f7fa99e7dc329c6c8bf8e4f1..e8cf4d85eb328ec1abe194af8b4c73da08823b49 100644 (file)
@@ -50,6 +50,7 @@ quote.m4
 quotearg.m4
 setenv.m4
 stdbool.m4
 quotearg.m4
 setenv.m4
 stdbool.m4
+stddef_h.m4
 stdint.m4
 stdint_h.m4
 stdio-safer.m4
 stdint.m4
 stdint_h.m4
 stdio-safer.m4
index 16ced35a6069610ffb0dcdd4468d8ec151b37931..810868c1a33399e45b05aef168565f4bd3e83eda 100644 (file)
@@ -50,6 +50,7 @@
 /quotearg.m4
 /setenv.m4
 /stdbool.m4
 /quotearg.m4
 /setenv.m4
 /stdbool.m4
+/stddef_h.m4
 /stdint.m4
 /stdint_h.m4
 /stdio-safer.m4
 /stdint.m4
 /stdint_h.m4
 /stdio-safer.m4