]> git.saurik.com Git - bison.git/blame - build-aux/update-b4-copyright
Do not use date ranges in copyright notices.
[bison.git] / build-aux / update-b4-copyright
CommitLineData
c9e0a880 1#!/usr/bin/perl -0777 -pi
ae509723
JD
2
3# Update b4_copyright invocations or b4_copyright_years definitions to
4# include the current year.
c9e0a880 5
31f8b787
PE
6# Copyright (C) 2009, 2010 Free Software Foundation, Inc.
7
c9e0a880
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
21use strict;
22use warnings;
23
ae509723
JD
24my $margin = 72;
25
c9e0a880 26my $this_year = $ENV{UPDATE_COPYRIGHT_YEAR};
ae509723 27if (!$this_year || $this_year !~ m/^\d{4}$/)
c9e0a880
JD
28 {
29 my ($sec, $min, $hour, $mday, $month, $year) = localtime (time ());
30 $this_year = $year + 1900;
31 }
c9e0a880
JD
32my $old_re = <<'EOF'
33 (
34 (?:^|\n)
ae509723 35 #BEFORE
c9e0a880 36 (?:
ae509723 37 b4_copyright\(\[[^][]*]
c9e0a880
JD
38 | m4_(?:push|pop)def\(\[b4_copyright_years]
39 )
ae509723 40 #AFTER
c9e0a880
JD
41 )
42 (?:
43 ,\s*
44 (
75ac158b 45 \[\s* (?:\d{4}(?:,\s*|-))* (\d{4}) \s*]
c9e0a880
JD
46 )
47 )?
48 \)
49EOF
50 ;
51
ae509723 52while (/($old_re)/gx)
c9e0a880 53 {
ae509723
JD
54 my $start = pos() - length ($1);
55 my $b4_copyright_line = $2;
56 my $year_lines = $3;
75ac158b 57 my $final_year = $4;
c9e0a880
JD
58 $year_lines .= ')';
59
c9e0a880
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.
75ac158b 67 $year_lines =~ s/$final_year/$final_year, $this_year/;
c9e0a880
JD
68 }
69
ae509723
JD
70 # Normalize all whitespace.
71 $year_lines =~ s/\s+/ /g;
c9e0a880 72
ae509723
JD
73 # Put spaces after commas.
74 $year_lines =~ s/, ?/, /g;
c9e0a880 75
31f8b787
PE
76 # Do not compress to intervals; for example, do not replace
77 # "2008, 2009, 2010" with "2008-2010". See the Copyright
78 # Notices section in Information for Maintainers of GNU Software, at:
79 # http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices
75ac158b 80
ae509723
JD
81 # Format within margin.
82 my $year_lines_new;
83 my $indent = index ($b4_copyright_line, '[');
84 --$indent if ($b4_copyright_line =~ m/^\n/);
85 while (length $year_lines)
86 {
87 my $text_margin = $margin - $indent;
88 if (($year_lines =~ s/^(.{1,$text_margin})(?: |$)//)
89 || ($year_lines =~ s/^([\S]+)(?: |$)//))
90 {
91 my $line = "\n" . (' 'x$indent) . $1;
92 ++$indent if (!$year_lines_new);
93 $year_lines_new .= $line;
94 }
95 else
96 {
97 # Should be unreachable, but we don't want an infinite
98 # loop if it can be reached.
99 die;
100 }
101 }
102
103 # Replace the old invocation. Should never die.
104 die if (!s/$old_re\G/$b4_copyright_line$year_lines_new/x);
c9e0a880 105
ae509723
JD
106 # Prepare for the next search.
107 pos () = $start + length ("$b4_copyright_line$year_lines_new");
108 }
c9e0a880
JD
109 }
110
ae509723 111while (/(\bb4_copyright\()/g)
c9e0a880 112 {
915becaa
JD
113 my $start = pos () - length ($1);
114 my $end = pos ();
ae509723 115 my $re = $old_re;
915becaa 116 pos () = $start;
ae509723
JD
117 $re =~ s/\#BEFORE/\\G/;
118 if (!/$re/x)
119 {
915becaa 120 my $line = (substr ($_, 0, $start) =~ s/\n/\n/g) + 1;
ae509723 121 print STDERR
915becaa 122 "$ARGV:$line: warning: failed to update a b4_copyright\n";
ae509723 123 }
915becaa 124 pos () = $end;
c9e0a880 125 }
ae509723 126
915becaa 127while (/(\[b4_copyright_years])/g)
c9e0a880 128 {
915becaa
JD
129 my $start = pos () - length ($1);
130 my $end = pos ();
ae509723
JD
131 my $re = $old_re;
132 $re =~ s/\#AFTER/\\G/;
133 if (!/$re/x)
134 {
915becaa
JD
135 # The substr operation blows away pos (), so restoring pos ()
136 # at the end is necessary.
137 my $line = (substr ($_, 0, $start) =~ s/\n/\n/g) + 1;
ae509723 138 print STDERR
915becaa
JD
139 "$ARGV:$line: warning: failed to update a"
140 . " b4_copyright_years\n";
ae509723 141 }
915becaa 142 pos () = $end;
c9e0a880 143 }