]> git.saurik.com Git - bison.git/blame - build-aux/update-b4-copyright
Sync from upstream gnulib and autoconf.
[bison.git] / build-aux / update-b4-copyright
CommitLineData
ac2def56 1#!/usr/bin/perl -0777 -pi
d0caad01
JD
2
3# Update b4_copyright invocations or b4_copyright_years definitions to
4# include the current year.
ac2def56 5
6e30ede8
PE
6# Copyright (C) 2009, 2010 Free Software Foundation, Inc.
7
ac2def56
JD
8# This program is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 3, or (at your option)
11# any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program. If not, see <http://www.gnu.org/licenses/>.
20
21use strict;
22use warnings;
23
d0caad01
JD
24my $margin = 72;
25
ac2def56 26my $this_year = $ENV{UPDATE_COPYRIGHT_YEAR};
d0caad01 27if (!$this_year || $this_year !~ m/^\d{4}$/)
ac2def56
JD
28 {
29 my ($sec, $min, $hour, $mday, $month, $year) = localtime (time ());
30 $this_year = $year + 1900;
31 }
ac2def56
JD
32my $old_re = <<'EOF'
33 (
34 (?:^|\n)
d0caad01 35 #BEFORE
ac2def56 36 (?:
d0caad01 37 b4_copyright\(\[[^][]*]
ac2def56
JD
38 | m4_(?:push|pop)def\(\[b4_copyright_years]
39 )
d0caad01 40 #AFTER
ac2def56
JD
41 )
42 (?:
43 ,\s*
44 (
314542f9 45 \[\s* (?:\d{4}(?:,\s*|-))* (\d{4}) \s*]
ac2def56
JD
46 )
47 )?
48 \)
49EOF
50 ;
51
d0caad01 52while (/($old_re)/gx)
ac2def56 53 {
d0caad01
JD
54 my $start = pos() - length ($1);
55 my $b4_copyright_line = $2;
56 my $year_lines = $3;
314542f9 57 my $final_year = $4;
ac2def56
JD
58 $year_lines .= ')';
59
ac2def56
JD
60 # If there was a second argument, it contains years, so update them.
61 if ($final_year)
62 {
63 $b4_copyright_line .= ',';
64 if ($final_year != $this_year)
65 {
66 # Update the year.
314542f9 67 $year_lines =~ s/$final_year/$final_year, $this_year/;
ac2def56
JD
68 }
69
d0caad01
JD
70 # Normalize all whitespace.
71 $year_lines =~ s/\s+/ /g;
ac2def56 72
d0caad01
JD
73 # Put spaces after commas.
74 $year_lines =~ s/, ?/, /g;
ac2def56 75
6e30ede8
PE
76 # Do not compress to intervals; for example, do not replace
77 # "2008, 2009, 2010" with "2008-2010". See the Copyright
78 # Notices section in Information for Maintainers of GNU Software, at:
79 # http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices
314542f9 80
d0caad01
JD
81 # Format within margin.
82 my $year_lines_new;
83 my $indent = index ($b4_copyright_line, '[');
84 --$indent if ($b4_copyright_line =~ m/^\n/);
85 while (length $year_lines)
86 {
87 my $text_margin = $margin - $indent;
88 if (($year_lines =~ s/^(.{1,$text_margin})(?: |$)//)
89 || ($year_lines =~ s/^([\S]+)(?: |$)//))
90 {
91 my $line = "\n" . (' 'x$indent) . $1;
92 ++$indent if (!$year_lines_new);
93 $year_lines_new .= $line;
94 }
95 else
96 {
97 # Should be unreachable, but we don't want an infinite
98 # loop if it can be reached.
99 die;
100 }
101 }
102
103 # Replace the old invocation. Should never die.
104 die if (!s/$old_re\G/$b4_copyright_line$year_lines_new/x);
ac2def56 105
d0caad01
JD
106 # Prepare for the next search.
107 pos () = $start + length ("$b4_copyright_line$year_lines_new");
108 }
ac2def56
JD
109 }
110
d0caad01 111while (/(\bb4_copyright\()/g)
ac2def56 112 {
642f240e
JD
113 my $start = pos () - length ($1);
114 my $end = pos ();
d0caad01 115 my $re = $old_re;
642f240e 116 pos () = $start;
d0caad01
JD
117 $re =~ s/\#BEFORE/\\G/;
118 if (!/$re/x)
119 {
642f240e 120 my $line = (substr ($_, 0, $start) =~ s/\n/\n/g) + 1;
d0caad01 121 print STDERR
642f240e 122 "$ARGV:$line: warning: failed to update a b4_copyright\n";
d0caad01 123 }
642f240e 124 pos () = $end;
ac2def56 125 }
d0caad01 126
642f240e 127while (/(\[b4_copyright_years])/g)
ac2def56 128 {
642f240e
JD
129 my $start = pos () - length ($1);
130 my $end = pos ();
d0caad01
JD
131 my $re = $old_re;
132 $re =~ s/\#AFTER/\\G/;
133 if (!/$re/x)
134 {
642f240e
JD
135 # The substr operation blows away pos (), so restoring pos ()
136 # at the end is necessary.
137 my $line = (substr ($_, 0, $start) =~ s/\n/\n/g) + 1;
d0caad01 138 print STDERR
642f240e
JD
139 "$ARGV:$line: warning: failed to update a"
140 . " b4_copyright_years\n";
d0caad01 141 }
642f240e 142 pos () = $end;
ac2def56 143 }