This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
FAQ sync.
[perl5.git] / Porting / check83.pl
CommitLineData
8c284f99
JH
1#!/usr/local/bin/perl
2
3# Check whether there are naming conflicts when names are truncated
4# to the DOSish case-ignoring 8.3 format
5
9e371ce5
JH
6sub eight_dot_three {
7 my ($dir, $base, $ext) = ($_[0] =~ m!^(?:(.+)/)?([^/.]+)(?:\.([^/.]+))?$!);
8 $base = substr($base, 0, 8);
9 $ext = substr($ext, 0, 3) if defined $ext;
10 if (defined $dir) {
11 return ($dir, defined $ext ? "$dir/$base.$ext" : "$dir/$base");
12 } else {
13 return ('.', defined $ext ? "$base.$ext" : $base);
14 }
15}
16
17my %dir;
18
19if (open(MANIFEST, "MANIFEST")) {
20 while (<MANIFEST>) {
21 chomp;
22 s/\s.+//;
23 unless (-f) {
24 warn "$_: missing\n";
25 next;
26 }
27 if (tr/././ > 1) {
8c284f99 28 print "$_: more than one dot\n";
9e371ce5
JH
29 next;
30 }
31 my ($dir, $edt) = eight_dot_three($_);
8c284f99 32 ($dir, $edt) = map { lc } ($dir, $edt);
9e371ce5
JH
33 push @{$dir{$dir}->{$edt}}, $_;
34 }
35} else {
36 die "$0: MANIFEST: $!\n";
37}
38
39for my $dir (sort keys %dir) {
40 for my $edt (keys %{$dir{$dir}}) {
41 my @files = @{$dir{$dir}->{$edt}};
42 if (@files > 1) {
8c284f99 43 print "@files: directory $dir conflict $edt\n";
9e371ce5
JH
44 }
45 }
46}