1 eval '(exit $?0)' && eval 'exec perl -wS -0777 -pi "$0" "$@"'
2 & eval 'exec perl -wS -0777 -pi "$0" $argv:q'
4 # Update an FSF copyright year list to include the current year.
6 my $VERSION = '2018-01-04.14:48'; # UTC
8 # Copyright (C) 2009-2018 Free Software Foundation, Inc.
10 # This program is free software: you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3, or (at your option)
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with this program. If not, see <https://www.gnu.org/licenses/>.
23 # Written by Jim Meyering and Joel E. Denny
25 # The arguments to this script should be names of files that contain
26 # copyright statements to be updated. The copyright holder's name
27 # defaults to "Free Software Foundation, Inc." but may be changed to
28 # any other name by using the "UPDATE_COPYRIGHT_HOLDER" environment
31 # For example, you might wish to use the update-copyright target rule
32 # in maint.mk from gnulib's maintainer-makefile module.
34 # Iff a copyright statement is recognized in a file and the final
35 # year is not the current year, then the statement is updated for the
36 # new year and it is reformatted to:
38 # 1. Fit within 72 columns.
39 # 2. Convert 2-digit years to 4-digit years by prepending "19".
40 # 3. Expand copyright year intervals. (See "Environment variables"
43 # A warning is printed for every file for which no copyright
44 # statement is recognized.
46 # Each file's copyright statement must be formatted correctly in
47 # order to be recognized. For example, each of these is fine:
49 # Copyright @copyright{} 1990-2005, 2007-2009 Free Software
52 # # Copyright (C) 1990-2005, 2007-2009 Free Software
56 # * Copyright © 90,2005,2007-2009
57 # * Free Software Foundation, Inc.
60 # However, the following format is not recognized because the line
61 # prefix changes after the first line:
63 # ## Copyright (C) 1990-2005, 2007-2009 Free Software
66 # However, any correctly formatted copyright statement following
67 # a non-matching copyright statements would be recognized.
69 # The exact conditions that a file's copyright statement must meet
70 # to be recognized are:
72 # 1. It is the first copyright statement that meets all of the
73 # following conditions. Subsequent copyright statements are
75 # 2. Its format is "Copyright (C)", then a list of copyright years,
76 # and then the name of the copyright holder.
77 # 3. The "(C)" takes one of the following forms or is omitted
86 # 4. The "Copyright" appears at the beginning of a line, except that it
87 # may be prefixed by any sequence (e.g., a comment) of no more than
88 # 5 characters -- including white space.
89 # 5. Iff such a prefix is present, the same prefix appears at the
90 # beginning of each remaining line within the FSF copyright
91 # statement. There is one exception in order to support C-style
92 # comments: if the first line's prefix contains nothing but
93 # whitespace surrounding a "/*", then the prefix for all subsequent
94 # lines is the same as the first line's prefix except with each of
95 # "/" and possibly "*" replaced by a " ". The replacement of "*"
96 # by " " is consistent throughout all subsequent lines.
97 # 6. Blank lines, even if preceded by the prefix, do not appear
98 # within the FSF copyright statement.
99 # 7. Each copyright year is 2 or 4 digits, and years are separated by
100 # commas or dashes. Whitespace may appear after commas.
102 # Environment variables:
104 # 1. If UPDATE_COPYRIGHT_FORCE=1, a recognized FSF copyright statement
105 # is reformatted even if it does not need updating for the new
106 # year. If unset or set to 0, only updated FSF copyright
107 # statements are reformatted.
108 # 2. If UPDATE_COPYRIGHT_USE_INTERVALS=1, every series of consecutive
109 # copyright years (such as 90, 1991, 1992-2007, 2008) in a
110 # reformatted FSF copyright statement is collapsed to a single
111 # interval (such as 1990-2008). If unset or set to 0, all existing
112 # copyright year intervals in a reformatted FSF copyright statement
113 # are expanded instead.
114 # If UPDATE_COPYRIGHT_USE_INTERVALS=2, convert a sequence with gaps
115 # to the minimal containing range. For example, convert
116 # 2000, 2004-2007, 2009 to 2000-2009.
117 # 3. For testing purposes, you can set the assumed current year in
118 # UPDATE_COPYRIGHT_YEAR.
119 # 4. The default maximum line length for a copyright line is 72.
120 # Set UPDATE_COPYRIGHT_MAX_LINE_LENGTH to use a different length.
121 # 5. Set UPDATE_COPYRIGHT_HOLDER if the copyright holder is other
122 # than "Free Software Foundation, Inc.".
127 my $copyright_re = 'Copyright';
128 my $circle_c_re = '(?:\([cC]\)|@copyright\{}|\\\\\(co|©|©)';
129 my $holder = $ENV{UPDATE_COPYRIGHT_HOLDER};
130 $holder ||= 'Free Software Foundation, Inc.';
132 my $margin = $ENV{UPDATE_COPYRIGHT_MAX_LINE_LENGTH};
133 !$margin || $margin !~ m/^\d+$/
138 my $this_year = $ENV{UPDATE_COPYRIGHT_YEAR};
139 if (!$this_year || $this_year !~ m/^\d{4}$/)
141 my ($sec, $min, $hour, $mday, $month, $year) = localtime (time ());
142 $this_year = $year + 1900;
145 # Unless the file consistently uses "\r\n" as the EOL, use "\n" instead.
146 my $eol = /(?:^|[^\r])\n/ ? "\n" : "\r\n";
152 while (/(^|\n)(.{0,$prefix_max})$copyright_re/g)
156 if ($prefix =~ /^(\s*\/)\*(\s*)$/)
159 my $prefix_ws = $prefix;
160 $prefix_ws =~ s/\*/ /; # Only whitespace.
161 if (/\G(?:[^*\n]|\*[^\/\n])*\*?\n$prefix_ws/)
163 $prefix = $prefix_ws;
166 $ws_re = '[ \t\r\f]'; # \s without \n
168 "(?:$ws_re*(?:$ws_re|\\n" . quotemeta($prefix) . ")$ws_re*)";
169 my $holder_re = $holder;
170 $holder_re =~ s/\s/$ws_re/g;
171 my $stmt_remainder_re =
172 "(?:$ws_re$circle_c_re)?"
173 . "$ws_re(?:(?:\\d\\d)?\\d\\d(?:,$ws_re?|-))*"
174 . "((?:\\d\\d)?\\d\\d)$ws_re$holder_re";
175 if (/\G$stmt_remainder_re/)
178 quotemeta($leading) . "($copyright_re$stmt_remainder_re)";
182 if (defined $stmt_re)
184 /$stmt_re/ or die; # Should never die.
186 my $final_year_orig = $2;
188 # Handle two-digit year numbers like "98" and "99".
189 my $final_year = $final_year_orig;
191 and $final_year += 1900;
193 if ($final_year != $this_year)
196 $stmt =~ s/\b$final_year_orig\b/$final_year, $this_year/;
198 if ($final_year != $this_year || $ENV{'UPDATE_COPYRIGHT_FORCE'})
200 # Normalize all whitespace including newline-prefix sequences.
201 $stmt =~ s/$ws_re/ /g;
203 # Put spaces after commas.
206 # Convert 2-digit to 4-digit years.
207 $stmt =~ s/(\b\d\d\b)/19$1/g;
209 # Make the use of intervals consistent.
210 if (!$ENV{UPDATE_COPYRIGHT_USE_INTERVALS})
212 $stmt =~ s/(\d{4})-(\d{4})/join(', ', $1..$2)/eg;
222 if ($2 eq '-') { '\d{4}'; }
223 elsif (!$3) { $1 + 1; }
229 # When it's 2, emit a single range encompassing all year numbers.
230 $ENV{UPDATE_COPYRIGHT_USE_INTERVALS} == 2
231 and $stmt =~ s/\b(\d{4})\b.*\b(\d{4})\b/$1-$2/;
234 # Format within margin.
236 my $text_margin = $margin - length($prefix);
237 if ($prefix =~ /^(\t+)/)
239 $text_margin -= length($1) * ($tab_width - 1);
243 if (($stmt =~ s/^(.{1,$text_margin})(?: |$)//)
244 || ($stmt =~ s/^([\S]+)(?: |$)//))
247 $stmt_wrapped .= $stmt_wrapped ? "$eol$prefix" : $leading;
248 $stmt_wrapped .= $line;
252 # Should be unreachable, but we don't want an infinite
253 # loop if it can be reached.
258 # Replace the old copyright statement.
259 s/$stmt_re/$stmt_wrapped/;
264 print STDERR "$ARGV: warning: copyright statement not found\n";
271 # indent-tabs-mode: nil
272 # eval: (add-hook 'write-file-hooks 'time-stamp)
273 # time-stamp-start: "my $VERSION = '"
274 # time-stamp-format: "%:y-%02m-%02d.%02H:%02M"
275 # time-stamp-time-zone: "UTC0"
276 # time-stamp-end: "'; # UTC"