]>
git.saurik.com Git - bison.git/blob - build-aux/update-b4-copyright
1 #!/usr/bin/perl -0777 -pi
3 # Update b4_copyright invocations or b4_copyright_years definitions to
4 # include the current year.
6 # Copyright (C) 2009-2012 Free Software Foundation, Inc.
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)
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.
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/>.
26 my $this_year = $ENV{UPDATE_COPYRIGHT_YEAR
};
27 if (!$this_year || $this_year !~ m/^\d{4}$/)
29 my ($sec, $min, $hour, $mday, $month, $year) = localtime (time ());
30 $this_year = $year + 1900;
37 b4_copyright\(\[[^][]*]
38 | m4_(?:push|pop)def\(\[b4_copyright_years]
45 \[\s* (?:\d{4}(?:,\s*|-))* (\d{4}) \s*]
54 my $start = pos() - length ($1);
55 my $b4_copyright_line = $2;
60 # If there was a second argument, it contains years, so update them.
63 $b4_copyright_line .= ',';
64 if ($final_year != $this_year)
67 $year_lines =~ s/$final_year/$final_year, $this_year/;
70 # Normalize all whitespace.
71 $year_lines =~ s/\s+/ /g;
73 # Put spaces after commas.
74 $year_lines =~ s/, ?/, /g;
76 # Compress to intervals.
83 if ($2 eq '-') { '\d{4}'; }
84 elsif (!$3) { $1 + 1; }
90 # Format within margin.
92 my $indent = index ($b4_copyright_line, '[');
93 --$indent if ($b4_copyright_line =~ m/^\n/);
94 while (length $year_lines)
96 my $text_margin = $margin - $indent;
97 if (($year_lines =~ s/^(.{1,$text_margin})(?: |$)//)
98 || ($year_lines =~ s/^([\S]+)(?: |$)//))
100 my $line = "\n" . (' 'x
$indent) . $1;
101 ++$indent if (!$year_lines_new);
102 $year_lines_new .= $line;
106 # Should be unreachable, but we don't want an infinite
107 # loop if it can be reached.
112 # Replace the old invocation. Should never die.
113 die if (!s/$old_re\G/$b4_copyright_line$year_lines_new/x);
115 # Prepare for the next search.
116 pos () = $start + length ("$b4_copyright_line$year_lines_new");
120 while (/(\bb4_copyright\()/g)
122 my $start = pos () - length ($1);
126 $re =~ s/\#BEFORE/\\G/;
129 my $line = (substr ($_, 0, $start) =~ s/\n/\n/g) + 1;
131 "$ARGV:$line: warning: failed to update a b4_copyright\n";
136 while (/(\[b4_copyright_years])/g)
138 my $start = pos () - length ($1);
141 $re =~ s/\#AFTER/\\G/;
144 # The substr operation blows away pos (), so restoring pos ()
145 # at the end is necessary.
146 my $line = (substr ($_, 0, $start) =~ s/\n/\n/g) + 1;
148 "$ARGV:$line: warning: failed to update a"
149 . " b4_copyright_years\n";