| eval '(exit $?0)' && eval 'exec perl -w "$0" ${1+"$@"}' |
| & eval 'exec perl -w "$0" $argv:q' |
| if 0; |
|
|
| use strict; |
| use warnings; |
| (my $ME = $0) =~ s|.*/||; |
|
|
| |
| chomp (my $editor = `git var GIT_EDITOR`); |
| |
| $editor = "vi" if $? != 0 or $editor =~ /^\s*\z/; |
|
|
| |
| |
| my @valid = qw( |
| arch b2sum base32 base64 basenc basename cat chcon chgrp chmod chown |
| chroot cksum comm cp csplit cut date dd df dir dircolors dirname du echo |
| env expand expr factor false fmt fold groups head hostid hostname id |
| install join kill link ln logname ls md5sum mkdir mkfifo mknod mktemp |
| mv nice nl nohup nproc numfmt od paste pathchk pinky pr printenv printf |
| ptx pwd readlink realpath rm rmdir runcon seq sha1sum sha224sum sha256sum |
| sha384sum sha512sum shred shuf sleep sort split stat stdbuf stty |
| sum sync tac tail tee test timeout touch tr true truncate tsort |
| tty uname unexpand uniq unlink uptime users vdir wc who whoami yes |
|
|
| all copy gnulib tests maint doc build scripts sha\*sum digest |
| ); |
| my $v_or = join '|', @valid; |
| my $valid_regex = qr/^(?:$v_or)$/; |
|
|
| |
| |
| sub rewrite($$$) |
| { |
| my ($log_file, $err, $line_ref) = @_; |
| local *LOG; |
| open LOG, '>', $log_file |
| or die "$ME: $log_file: failed to open for writing: $!"; |
| print LOG "# $err"; |
| print LOG @$line_ref; |
| close LOG |
| or die "$ME: $log_file: failed to rewrite: $!\n"; |
| } |
|
|
| sub re_edit($) |
| { |
| my ($log_file) = @_; |
|
|
| warn "Interrupt (Ctrl-C) to abort...\n"; |
|
|
| system 'sh', '-c', "$editor $log_file"; |
| ($? & 127) || ($? >> 8) |
| and die "$ME: $log_file: the editor ($editor) failed, aborting\n"; |
| } |
|
|
| sub bad_first_line($) |
| { |
| my ($line) = @_; |
|
|
| $line =~ /^[Vv]ersion \d/ |
| and return ''; |
|
|
| $line =~ /:/ |
| or return 'missing colon on first line of log message'; |
|
|
| $line =~ /\.$/ |
| and return 'do not use a period "." at the end of the first line'; |
|
|
| |
| |
| (my $pre_colon = $line) =~ s/:.*//; |
| my @word = split (/[ ,]/, $pre_colon); |
| my @bad = grep !/$valid_regex/, @word; |
| @bad |
| and return 'invalid first word(s) of summary line: ' . join (', ', @bad); |
|
|
| return ''; |
| } |
|
|
| |
| |
| |
| |
| sub check_msg($$) |
| { |
| my ($log_file, $line_ref) = @_; |
|
|
| local *LOG; |
| open LOG, '<:utf8', $log_file |
| or return "failed to open for reading: $!"; |
| @$line_ref = <LOG>; |
| close LOG; |
|
|
| my @line = @$line_ref; |
| chomp @line; |
|
|
| |
| |
| |
|
|
| |
| |
|
|
| |
| |
|
|
| @line == 0 |
| and return 'no log message'; |
|
|
| my $bad = bad_first_line $line[0]; |
| $bad |
| and return $bad; |
|
|
| |
| 2 <= @line && length $line[1] |
| and return 'second line must be empty'; |
|
|
| |
| my $max_len = 72; |
| foreach my $line (@line) |
| { |
| last if $line =~ '.*-{24} >8 -{24}$'; |
| my $len = length $line; |
| $max_len < $len && $line =~ /^[^ |
| and return "line length ($len) greater than than max: $max_len"; |
| } |
|
|
| my $buf = join ("\n", @line) . "\n"; |
| $buf =~ m!https?://bugzilla\.redhat\.com/show_bug\.cgi\?id=(\d+)!s |
| and return "use shorter https://bugzilla.redhat.com/$1"; |
|
|
| $buf =~ m!https?://debbugs\.gnu\.org/(?:cgi/bugreport\.cgi\?bug=)?(\d+)!s |
| and return "use shorter https://bugs.gnu.org/$1"; |
|
|
| $buf =~ m!https://lists\.gnu\.org/archive/html/!s |
| and return "use '/r/' in place of '/archive/html/' in lists.gnu.org URLs"; |
|
|
| $buf =~ m!https?://(?:.*\.)?sourceware\.org/bugzilla/show_bug\.cgi\?id=(\d+)!s |
| and return "use shorter https://sourceware.org/PR$1"; |
|
|
| $buf =~ m!https?://gcc\.gnu\.org/bugzilla/show_bug\.cgi\?id=(\d+)!s |
| and return "use shorter https://gcc.gnu.org/PR$1"; |
|
|
| return ''; |
| } |
|
|
| { |
| @ARGV == 1 |
| or die; |
|
|
| my $log_file = $ARGV[0]; |
|
|
| while (1) |
| { |
| my @line; |
| my $err = check_msg $log_file, \@line; |
| $err eq '' |
| and last; |
| $err = "$ME: $err\n"; |
| -t STDOUT or die $err; |
| warn $err; |
| |
| rewrite $log_file, $err, \@line; |
| re_edit $log_file; |
|
|
| |
| getppid() == 1 |
| and last; |
| } |
| } |
|
|