countries: rename ez title to eurozone
[sheet.git] / tools / mkfontinfo
index 84e7a25147bb80a886c3fcf7f42daef6dc2b16ed..cdd508d3cd5a5cf300474d9ac73a8aba85282809 100755 (executable)
@@ -64,12 +64,17 @@ eval {
 } or warn "Could not include count for html entities: $@";
 
 eval {
 } or warn "Could not include count for html entities: $@";
 
 eval {
+       my $agemap = do 'unicode-age.inc.pl'
+               or warn "Could not include unicode version data: $!";
+
        use Unicode::UCD 'charinfo';
        for my $code (0 .. 256**2*2) {
                my $charinfo = charinfo($code) or next;
                next if $charinfo->{category} =~ /^[MC]/;  # ignore Marks and "other" Control chars
                push @{ $charlist{$_}->{ $charinfo->{$_} } }, chr $code
                        for qw( script category block );
        use Unicode::UCD 'charinfo';
        for my $code (0 .. 256**2*2) {
                my $charinfo = charinfo($code) or next;
                next if $charinfo->{category} =~ /^[MC]/;  # ignore Marks and "other" Control chars
                push @{ $charlist{$_}->{ $charinfo->{$_} } }, chr $code
                        for qw( script category block );
+               push @{ $charlist{version}->{$_} }, (chr $code) x ($agemap->{$code} <= $_)
+                       for 11, 30, 63;
        }
        1;
 } or warn "Could not include unicode groups: $@";
        }
        1;
 } or warn "Could not include unicode groups: $@";
@@ -109,7 +114,7 @@ for my $chars (values %{$_}) {
 $charlist{fonts} = \@fontlist;
 
 my %osfonts = (
 $charlist{fonts} = \@fontlist;
 
 my %osfonts = (
-       win95   => [qw( arial.win95 arialuni lucidau verdana.win95 times.win95 cour.win95 )],  # microsoft
+       win2k   => [qw( arial.win2k arialuni lucidau verdana.win2k times.win2k cour.win2k )],  # microsoft
        win8    => [map {"$_.win8"} qw( arial verdana times georgia pala cour )],
        mac109  => [map {"$_.mac109"} qw( helv lucida times pala )],  # apple
        android => [qw( roboto droidmono notosans )],  # google
        win8    => [map {"$_.win8"} qw( arial verdana times georgia pala cour )],
        mac109  => [map {"$_.mac109"} qw( helv lucida times pala )],  # apple
        android => [qw( roboto droidmono notosans )],  # google
@@ -125,12 +130,12 @@ my %fontnum = map { ($fontlist[$_]->{file} => $_) } 0 .. $#fontlist;
 while (my ($os, $fontids) = each %osfonts) {
        $charlist{os}->{$os} = [ map { $fontnum{$_} // () } @{$fontids} ];
 }
 while (my ($os, $fontids) = each %osfonts) {
        $charlist{os}->{$os} = [ map { $fontnum{$_} // () } @{$fontids} ];
 }
-$charlist{osdefault} = [qw( win95 win8 mac109 android oss )];
+$charlist{osdefault} = [qw( win2k win8 mac109 android oss )];
 
 say "# automatically generated by $0";
 say 'use utf8;';
 say '+', pp(\%charlist) =~ s{
 
 say "# automatically generated by $0";
 say 'use utf8;';
 say '+', pp(\%charlist) =~ s{
-       ( \[ \s* \d [^]]* ) ,\s*  # arrays of numbers, excluding trailing comma
+       ( \[ \s* \d [^]]* ) ,\s* (?= \] )  # arrays of numbers, excluding trailing comma
 }{ $1 =~ s/\s+//gr }msxgre;  # strip whitespace
 
 __END__
 }{ $1 =~ s/\s+//gr }msxgre;  # strip whitespace
 
 __END__