]>
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 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;
57 my $sep = $4 ? $4 : "";
61 # If there was a second argument, it contains years, so update them.
64 $b4_copyright_line .= ',';
65 if ($final_year != $this_year)
68 if ($sep eq '-' && $final_year + 1 == $this_year)
70 $year_lines =~ s/$final_year/$this_year/;
72 elsif ($sep ne '-' && $final_year + 1 == $this_year)
74 $year_lines =~ s/$final_year/$final_year-$this_year/;
78 $year_lines =~ s/$final_year/$final_year, $this_year/;
82 # Normalize all whitespace.
83 $year_lines =~ s/\s+/ /g;
85 # Put spaces after commas.
86 $year_lines =~ s/, ?/, /g;
88 # Format within margin.
90 my $indent = index ($b4_copyright_line, '[');
91 --$indent if ($b4_copyright_line =~ m/^\n/);
92 while (length $year_lines)
94 my $text_margin = $margin - $indent;
95 if (($year_lines =~ s/^(.{1,$text_margin})(?: |$)//)
96 || ($year_lines =~ s/^([\S]+)(?: |$)//))
98 my $line = "\n" . (' 'x
$indent) . $1;
99 ++$indent if (!$year_lines_new);
100 $year_lines_new .= $line;
104 # Should be unreachable, but we don't want an infinite
105 # loop if it can be reached.
110 # Replace the old invocation. Should never die.
111 die if (!s/$old_re\G/$b4_copyright_line$year_lines_new/x);
113 # Prepare for the next search.
114 pos () = $start + length ("$b4_copyright_line$year_lines_new");
118 while (/(\bb4_copyright\()/g)
121 pos () -= length ($1);
123 $re =~ s/\#BEFORE/\\G/;
127 "$ARGV: warning: failed to update a b4_copyright before char"
133 while (/\[b4_copyright_years]/g)
137 $re =~ s/\#AFTER/\\G/;
141 "$ARGV: warning: failed to update a b4_copyright_years before"