]>
Commit | Line | Data |
---|---|---|
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 | |
ea0a7676 | 6 | # Copyright (C) 2009-2011 Free Software Foundation, Inc. |
6e30ede8 | 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 | ||
21 | use strict; | |
22 | use warnings; | |
23 | ||
d0caad01 JD |
24 | my $margin = 72; |
25 | ||
ac2def56 | 26 | my $this_year = $ENV{UPDATE_COPYRIGHT_YEAR}; |
d0caad01 | 27 | if (!$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 |
32 | my $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 | \) | |
49 | EOF | |
50 | ; | |
51 | ||
d0caad01 | 52 | while (/($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 | |
f52e1e5e JD |
76 | # Compress to intervals. |
77 | $year_lines =~ | |
78 | s/ | |
79 | (\d{4}) | |
80 | (?: | |
81 | (,\ |-) | |
82 | ((??{ | |
83 | if ($2 eq '-') { '\d{4}'; } | |
84 | elsif (!$3) { $1 + 1; } | |
85 | else { $3 + 1; } | |
86 | })) | |
87 | )+ | |
88 | /$1-$3/gx; | |
314542f9 | 89 | |
d0caad01 JD |
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) | |
95 | { | |
96 | my $text_margin = $margin - $indent; | |
97 | if (($year_lines =~ s/^(.{1,$text_margin})(?: |$)//) | |
98 | || ($year_lines =~ s/^([\S]+)(?: |$)//)) | |
99 | { | |
100 | my $line = "\n" . (' 'x$indent) . $1; | |
101 | ++$indent if (!$year_lines_new); | |
102 | $year_lines_new .= $line; | |
103 | } | |
104 | else | |
105 | { | |
106 | # Should be unreachable, but we don't want an infinite | |
107 | # loop if it can be reached. | |
108 | die; | |
109 | } | |
110 | } | |
111 | ||
112 | # Replace the old invocation. Should never die. | |
113 | die if (!s/$old_re\G/$b4_copyright_line$year_lines_new/x); | |
ac2def56 | 114 | |
d0caad01 JD |
115 | # Prepare for the next search. |
116 | pos () = $start + length ("$b4_copyright_line$year_lines_new"); | |
117 | } | |
ac2def56 JD |
118 | } |
119 | ||
d0caad01 | 120 | while (/(\bb4_copyright\()/g) |
ac2def56 | 121 | { |
642f240e JD |
122 | my $start = pos () - length ($1); |
123 | my $end = pos (); | |
d0caad01 | 124 | my $re = $old_re; |
642f240e | 125 | pos () = $start; |
d0caad01 JD |
126 | $re =~ s/\#BEFORE/\\G/; |
127 | if (!/$re/x) | |
128 | { | |
642f240e | 129 | my $line = (substr ($_, 0, $start) =~ s/\n/\n/g) + 1; |
d0caad01 | 130 | print STDERR |
642f240e | 131 | "$ARGV:$line: warning: failed to update a b4_copyright\n"; |
d0caad01 | 132 | } |
642f240e | 133 | pos () = $end; |
ac2def56 | 134 | } |
d0caad01 | 135 | |
642f240e | 136 | while (/(\[b4_copyright_years])/g) |
ac2def56 | 137 | { |
642f240e JD |
138 | my $start = pos () - length ($1); |
139 | my $end = pos (); | |
d0caad01 JD |
140 | my $re = $old_re; |
141 | $re =~ s/\#AFTER/\\G/; | |
142 | if (!/$re/x) | |
143 | { | |
642f240e JD |
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; | |
d0caad01 | 147 | print STDERR |
642f240e JD |
148 | "$ARGV:$line: warning: failed to update a" |
149 | . " b4_copyright_years\n"; | |
d0caad01 | 150 | } |
642f240e | 151 | pos () = $end; |
ac2def56 | 152 | } |