glr2.cc: semantic_option: use a symbol
[bison.git] / build-aux / update-b4-copyright
blobd83b807266ab8fbf3f84d60e78fac8c015785e0e
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-2015, 2018-2021 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)
11 # any later version.
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 <https://www.gnu.org/licenses/>.
21 use strict;
22 use warnings;
24 my $margin = 72;
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;
32 my $old_re = <<'EOF'
34 (?:^|\n)
35 #BEFORE
36 (?:
37 b4_copyright\(\[[^][]*]
38 | m4_(?:push|pop)def\(\[b4_copyright_years]
40 #AFTER
42 (?:
43 ,\s*
45 \[\s* (?:\d{4}(?:,\s*|-))* (\d{4}) \s*]
49 EOF
52 while (/($old_re)/gx)
54 my $start = pos() - length ($1);
55 my $b4_copyright_line = $2;
56 my $year_lines = $3;
57 my $final_year = $4;
58 $year_lines .= ')';
60 # If there was a second argument, it contains years, so update them.
61 if ($final_year)
63 $b4_copyright_line .= ',';
64 if ($final_year != $this_year)
66 # Update the 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.
77 $year_lines =~
79 (\d{4})
80 (?:
81 (,\ |-)
82 ((??{
83 if ($2 eq '-') { '\d{4}'; }
84 elsif (!$3) { $1 + 1; }
85 else { $3 + 1; }
86 }))
88 /$1-$3/gx;
90 # Format within margin.
91 my $year_lines_new;
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;
104 else
106 # Should be unreachable, but we don't want an infinite
107 # loop if it can be reached.
108 die;
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);
123 my $end = pos ();
124 my $re = $old_re;
125 pos () = $start;
126 $re =~ s/\#BEFORE/\\G/;
127 if (!/$re/x)
129 my $line = (substr ($_, 0, $start) =~ s/\n/\n/g) + 1;
130 print STDERR
131 "$ARGV:$line: warning: failed to update a b4_copyright\n";
133 pos () = $end;
136 while (/(\[b4_copyright_years])/g)
138 my $start = pos () - length ($1);
139 my $end = pos ();
140 my $re = $old_re;
141 $re =~ s/\#AFTER/\\G/;
142 if (!/$re/x)
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;
147 print STDERR
148 "$ARGV:$line: warning: failed to update a"
149 . " b4_copyright_years\n";
151 pos () = $end;