diff options
author | Yitzchak Scott-Thoennes <sthoenna@efn.org> | 2005-12-10 23:19:58 -0800 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-12-13 11:20:16 +0000 |
commit | a9b610e983e597edf8d9f9d6eeb62f1e3a3db482 (patch) | |
tree | 0378ea71c07c2e7d41579dd3fa1c72c2d31298d2 /Porting | |
parent | 8974ce1ee942c407c5080e83810eaada482b2f0f (diff) | |
download | perl-a9b610e983e597edf8d9f9d6eeb62f1e3a3db482.tar.gz |
Re: check83.pl
Message-ID: <20051211151958.GA6188@efn.org>
p4raw-id: //depot/perl@26338
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/check83.pl | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/Porting/check83.pl b/Porting/check83.pl index 5851d9ffb6..be6b9826ac 100644 --- a/Porting/check83.pl +++ b/Porting/check83.pl @@ -9,25 +9,22 @@ # "no filename shall be longer than eight and a suffix if present # not longer than three". -# TODO: this doesn't actually check for *directory entries*, what this -# does is to check for *MANIFEST entries*, which are only files, not -# directories. In other words, a 8.3 conflict between a directory -# "abcdefghx" and a file "abcdefghy" wouldn't be noticed-- or even for -# a directory "abcdefgh" and a file "abcdefghy". +my %seen; sub eight_dot_three { + next if $seen{$_[0]}++; my ($dir, $base, $ext) = ($_[0] =~ m!^(?:(.+)/)?([^/.]+)(?:\.([^/.]+))?$!); - my $file = $base . defined $ext ? ".$ext" : ""; + my $file = $base . ( defined $ext ? ".$ext" : "" ); $base = substr($base, 0, 8); $ext = substr($ext, 0, 3) if defined $ext; if ($dir =~ /\./) { - warn "$dir: directory name contains '.'\n"; + print "directory name contains '.': $dir\n"; } if ($file =~ /[^A-Za-z0-9\._-]/) { - warn "$file: filename contains non-portable characters\n"; + print "filename contains non-portable characters: $_[0]\n"; } if (length $file > 30) { - warn "$file: filename longer than 30 characters\n"; # make up a limit + print "filename longer than 30 characters: $_[0]\n"; # make up a limit } if (defined $dir) { return ($dir, defined $ext ? "$dir/$base.$ext" : "$dir/$base"); @@ -43,16 +40,18 @@ if (open(MANIFEST, "MANIFEST")) { chomp; s/\s.+//; unless (-f) { - warn "$_: missing\n"; + print "missing: $_\n"; next; } if (tr/././ > 1) { - print "$_: more than one dot\n"; + print "more than one dot: $_\n"; next; } - my ($dir, $edt) = eight_dot_three($_); - ($dir, $edt) = map { lc } ($dir, $edt); - push @{$dir{$dir}->{$edt}}, $_; + while (m!/|\z!g) { + my ($dir, $edt) = eight_dot_three($`); + ($dir, $edt) = map { lc } ($dir, $edt); + push @{$dir{$dir}->{$edt}}, $_; + } } } else { die "$0: MANIFEST: $!\n"; @@ -62,7 +61,7 @@ for my $dir (sort keys %dir) { for my $edt (keys %{$dir{$dir}}) { my @files = @{$dir{$dir}->{$edt}}; if (@files > 1) { - print "@files: directory $dir conflict $edt\n"; + print "directory $dir conflict $edt: @files\n"; } } } |