diff options
| author | Manuel Traut <manut@mecka.net> | 2013-03-10 12:13:49 +0100 |
|---|---|---|
| committer | Manuel Traut <manut@mecka.net> | 2013-03-10 12:13:49 +0100 |
| commit | 9c0f862749f30800837a45aff5abdcb529867dbc (patch) | |
| tree | b0ca51fff64f12fac03aea4afaa1fa722376844b /beagle/debian-rfs/usr/share/perl | |
| parent | 33b79c725448efd2c9a72e2ae9a1fb04270492f5 (diff) | |
| parent | cea5039322781f6085dd47954af5584ca3f78911 (diff) | |
Merge branch 'schulung'
updates from current linutronix schulung.git
Conflicts:
Makefile
configpres.tex
flash-memory/ubi/handout_ubi_de.tex
handout.tex
index.txt
pres_master.tex
vorl.tex
vorl1.tex
vorl2.tex
vorl3.tex
vorl4.tex
vorl5.tex
Signed-off-by: Manuel Traut <manut@mecka.net>
Diffstat (limited to 'beagle/debian-rfs/usr/share/perl')
543 files changed, 0 insertions, 42223 deletions
diff --git a/beagle/debian-rfs/usr/share/perl/5.10 b/beagle/debian-rfs/usr/share/perl/5.10 deleted file mode 120000 index a620310..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10 +++ /dev/null @@ -1 +0,0 @@ -5.10.1
\ No newline at end of file diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/AutoLoader.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/AutoLoader.pm deleted file mode 100644 index 89ac88d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/AutoLoader.pm +++ /dev/null @@ -1,198 +0,0 @@ -package AutoLoader; - -use strict; -use 5.006_001; - -our($VERSION, $AUTOLOAD); - -my $is_dosish; -my $is_epoc; -my $is_vms; -my $is_macos; - -BEGIN { - $is_dosish = $^O eq 'dos' || $^O eq 'os2' || $^O eq 'MSWin32' || $^O eq 'NetWare'; - $is_epoc = $^O eq 'epoc'; - $is_vms = $^O eq 'VMS'; - $is_macos = $^O eq 'MacOS'; - $VERSION = '5.68'; -} - -AUTOLOAD { - my $sub = $AUTOLOAD; - my $filename = AutoLoader::find_filename( $sub ); - - my $save = $@; - local $!; # Do not munge the value. - eval { local $SIG{__DIE__}; require $filename }; - if ($@) { - if (substr($sub,-9) eq '::DESTROY') { - no strict 'refs'; - *$sub = sub {}; - $@ = undef; - } elsif ($@ =~ /^Can't locate/) { - # The load might just have failed because the filename was too - # long for some old SVR3 systems which treat long names as errors. - # If we can successfully truncate a long name then it's worth a go. - # There is a slight risk that we could pick up the wrong file here - # but autosplit should have warned about that when splitting. - if ($filename =~ s/(\w{12,})\.al$/substr($1,0,11).".al"/e){ - eval { local $SIG{__DIE__}; require $filename }; - } - } - if ($@){ - $@ =~ s/ at .*\n//; - my $error = $@; - require Carp; - Carp::croak($error); - } - } - $@ = $save; - goto &$sub; -} - -sub find_filename { - my $sub = shift; - my $filename; - # Braces used to preserve $1 et al. - { - # Try to find the autoloaded file from the package-qualified - # name of the sub. e.g., if the sub needed is - # Getopt::Long::GetOptions(), then $INC{Getopt/Long.pm} is - # something like '/usr/lib/perl5/Getopt/Long.pm', and the - # autoload file is '/usr/lib/perl5/auto/Getopt/Long/GetOptions.al'. - # - # However, if @INC is a relative path, this might not work. If, - # for example, @INC = ('lib'), then $INC{Getopt/Long.pm} is - # 'lib/Getopt/Long.pm', and we want to require - # 'auto/Getopt/Long/GetOptions.al' (without the leading 'lib'). - # In this case, we simple prepend the 'auto/' and let the - # C<require> take care of the searching for us. - - my ($pkg,$func) = ($sub =~ /(.*)::([^:]+)$/); - $pkg =~ s#::#/#g; - if (defined($filename = $INC{"$pkg.pm"})) { - if ($is_macos) { - $pkg =~ tr#/#:#; - $filename = undef - unless $filename =~ s#^(.*)$pkg\.pm\z#$1auto:$pkg:$func.al#s; - } else { - $filename = undef - unless $filename =~ s#^(.*)$pkg\.pm\z#$1auto/$pkg/$func.al#s; - } - - # if the file exists, then make sure that it is a - # a fully anchored path (i.e either '/usr/lib/auto/foo/bar.al', - # or './lib/auto/foo/bar.al'. This avoids C<require> searching - # (and failing) to find the 'lib/auto/foo/bar.al' because it - # looked for 'lib/lib/auto/foo/bar.al', given @INC = ('lib'). - - if (defined $filename and -r $filename) { - unless ($filename =~ m|^/|s) { - if ($is_dosish) { - unless ($filename =~ m{^([a-z]:)?[\\/]}is) { - if ($^O ne 'NetWare') { - $filename = "./$filename"; - } else { - $filename = "$filename"; - } - } - } - elsif ($is_epoc) { - unless ($filename =~ m{^([a-z?]:)?[\\/]}is) { - $filename = "./$filename"; - } - } - elsif ($is_vms) { - # XXX todo by VMSmiths - $filename = "./$filename"; - } - elsif (!$is_macos) { - $filename = "./$filename"; - } - } - } - else { - $filename = undef; - } - } - unless (defined $filename) { - # let C<require> do the searching - $filename = "auto/$sub.al"; - $filename =~ s#::#/#g; - } - } - return $filename; -} - -sub import { - my $pkg = shift; - my $callpkg = caller; - - # - # Export symbols, but not by accident of inheritance. - # - - if ($pkg eq 'AutoLoader') { - if ( @_ and $_[0] =~ /^&?AUTOLOAD$/ ) { - no strict 'refs'; - *{ $callpkg . '::AUTOLOAD' } = \&AUTOLOAD; - } - } - - # - # Try to find the autosplit index file. Eg., if the call package - # is POSIX, then $INC{POSIX.pm} is something like - # '/usr/local/lib/perl5/POSIX.pm', and the autosplit index file is in - # '/usr/local/lib/perl5/auto/POSIX/autosplit.ix', so we require that. - # - # However, if @INC is a relative path, this might not work. If, - # for example, @INC = ('lib'), then - # $INC{POSIX.pm} is 'lib/POSIX.pm', and we want to require - # 'auto/POSIX/autosplit.ix' (without the leading 'lib'). - # - - (my $calldir = $callpkg) =~ s#::#/#g; - my $path = $INC{$calldir . '.pm'}; - if (defined($path)) { - # Try absolute path name, but only eval it if the - # transformation from module path to autosplit.ix path - # succeeded! - my $replaced_okay; - if ($is_macos) { - (my $malldir = $calldir) =~ tr#/#:#; - $replaced_okay = ($path =~ s#^(.*)$malldir\.pm\z#$1auto:$malldir:autosplit.ix#s); - } else { - $replaced_okay = ($path =~ s#^(.*)$calldir\.pm\z#$1auto/$calldir/autosplit.ix#); - } - - eval { require $path; } if $replaced_okay; - # If that failed, try relative path with normal @INC searching. - if (!$replaced_okay or $@) { - $path ="auto/$calldir/autosplit.ix"; - eval { require $path; }; - } - if ($@) { - my $error = $@; - require Carp; - Carp::carp($error); - } - } -} - -sub unimport { - my $callpkg = caller; - - no strict 'refs'; - - for my $exported (qw( AUTOLOAD )) { - my $symname = $callpkg . '::' . $exported; - undef *{ $symname } if \&{ $symname } == \&{ $exported }; - *{ $symname } = \&{ $symname }; - } -} - -1; - -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/Carp.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/Carp.pm deleted file mode 100644 index cd97564..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/Carp.pm +++ /dev/null @@ -1,51 +0,0 @@ -package Carp; - -our $VERSION = '1.11'; -# this file is an utra-lightweight stub. The first time a function is -# called, Carp::Heavy is loaded, and the real short/longmessmess_jmp -# subs are installed - -our $MaxEvalLen = 0; -our $Verbose = 0; -our $CarpLevel = 0; -our $MaxArgLen = 64; # How much of each argument to print. 0 = all. -our $MaxArgNums = 8; # How many arguments to print. 0 = all. - -require Exporter; -our @ISA = ('Exporter'); -our @EXPORT = qw(confess croak carp); -our @EXPORT_OK = qw(cluck verbose longmess shortmess); -our @EXPORT_FAIL = qw(verbose); # hook to enable verbose mode - -# if the caller specifies verbose usage ("perl -MCarp=verbose script.pl") -# then the following method will be called by the Exporter which knows -# to do this thanks to @EXPORT_FAIL, above. $_[1] will contain the word -# 'verbose'. - -sub export_fail { shift; $Verbose = shift if $_[0] eq 'verbose'; @_ } - -# fixed hooks for stashes to point to -sub longmess { goto &longmess_jmp } -sub shortmess { goto &shortmess_jmp } -# these two are replaced when Carp::Heavy is loaded -sub longmess_jmp { - local($@, $!); - eval { require Carp::Heavy }; - return $@ if $@; - goto &longmess_real; -} -sub shortmess_jmp { - local($@, $!); - eval { require Carp::Heavy }; - return $@ if $@; - goto &shortmess_real; -} - -sub croak { die shortmess @_ } -sub confess { die longmess @_ } -sub carp { warn shortmess @_ } -sub cluck { warn longmess @_ } - -1; -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/Carp/Heavy.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/Carp/Heavy.pm deleted file mode 100644 index 04ec106..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/Carp/Heavy.pm +++ /dev/null @@ -1,297 +0,0 @@ -# Carp::Heavy uses some variables in common with Carp. -package Carp; - -# On one line so MakeMaker will see it. -use Carp; our $VERSION = $Carp::VERSION; -# use strict; # not yet - -# 'use Carp' just installs some very lightweight stubs; the first time -# these are called, they require Carp::Heavy which installs the real -# routines. - -# The members of %Internal are packages that are internal to perl. -# Carp will not report errors from within these packages if it -# can. The members of %CarpInternal are internal to Perl's warning -# system. Carp will not report errors from within these packages -# either, and will not report calls *to* these packages for carp and -# croak. They replace $CarpLevel, which is deprecated. The -# $Max(EvalLen|(Arg(Len|Nums)) variables are used to specify how the eval -# text and function arguments should be formatted when printed. - -# disable these by default, so they can live w/o require Carp -$CarpInternal{Carp}++; -$CarpInternal{warnings}++; -$Internal{Exporter}++; -$Internal{'Exporter::Heavy'}++; - -our ($CarpLevel, $MaxArgNums, $MaxEvalLen, $MaxArgLen, $Verbose); - -# XXX longmess_real and shortmess_real should really be merged into -# XXX {long|sort}mess_heavy at some point - -sub longmess_real { - # Icky backwards compatibility wrapper. :-( - # - # The story is that the original implementation hard-coded the - # number of call levels to go back, so calls to longmess were off - # by one. Other code began calling longmess and expecting this - # behaviour, so the replacement has to emulate that behaviour. - my $call_pack = caller(); - if ($Internal{$call_pack} or $CarpInternal{$call_pack}) { - return longmess_heavy(@_); - } - else { - local $CarpLevel = $CarpLevel + 1; - return longmess_heavy(@_); - } -}; - -sub shortmess_real { - # Icky backwards compatibility wrapper. :-( - local @CARP_NOT = caller(); - shortmess_heavy(@_); -}; - -# replace the two hooks added by Carp - -# aliasing the whole glob rather than just the CV slot avoids 'redefined' -# warnings, even in the presence of perl -W (as used by lib/warnings.t !) -# However it has the potential to create infinite loops, if somehow Carp -# is forcibly reloaded, but $INC{"Carp/Heavy.pm"} remains true. -# Hence the extra hack of deleting the previous typeglob first. - -delete $Carp::{shortmess_jmp}; -delete $Carp::{longmess_jmp}; -*longmess_jmp = *longmess_real; -*shortmess_jmp = *shortmess_real; - -sub caller_info { - my $i = shift(@_) + 1; - package DB; - my %call_info; - @call_info{ - qw(pack file line sub has_args wantarray evaltext is_require) - } = caller($i); - - unless (defined $call_info{pack}) { - return (); - } - - my $sub_name = Carp::get_subname(\%call_info); - if ($call_info{has_args}) { - my @args = map {Carp::format_arg($_)} @DB::args; - if ($MaxArgNums and @args > $MaxArgNums) { # More than we want to show? - $#args = $MaxArgNums; - push @args, '...'; - } - # Push the args onto the subroutine - $sub_name .= '(' . join (', ', @args) . ')'; - } - $call_info{sub_name} = $sub_name; - return wantarray() ? %call_info : \%call_info; -} - -# Transform an argument to a function into a string. -sub format_arg { - my $arg = shift; - if (ref($arg)) { - $arg = defined($overload::VERSION) ? overload::StrVal($arg) : "$arg"; - } - if (defined($arg)) { - $arg =~ s/'/\\'/g; - $arg = str_len_trim($arg, $MaxArgLen); - - # Quote it? - $arg = "'$arg'" unless $arg =~ /^-?[\d.]+\z/; - } else { - $arg = 'undef'; - } - - # The following handling of "control chars" is direct from - # the original code - it is broken on Unicode though. - # Suggestions? - utf8::is_utf8($arg) - or $arg =~ s/([[:cntrl:]]|[[:^ascii:]])/sprintf("\\x{%x}",ord($1))/eg; - return $arg; -} - -# Takes an inheritance cache and a package and returns -# an anon hash of known inheritances and anon array of -# inheritances which consequences have not been figured -# for. -sub get_status { - my $cache = shift; - my $pkg = shift; - $cache->{$pkg} ||= [{$pkg => $pkg}, [trusts_directly($pkg)]]; - return @{$cache->{$pkg}}; -} - -# Takes the info from caller() and figures out the name of -# the sub/require/eval -sub get_subname { - my $info = shift; - if (defined($info->{evaltext})) { - my $eval = $info->{evaltext}; - if ($info->{is_require}) { - return "require $eval"; - } - else { - $eval =~ s/([\\\'])/\\$1/g; - return "eval '" . str_len_trim($eval, $MaxEvalLen) . "'"; - } - } - - return ($info->{sub} eq '(eval)') ? 'eval {...}' : $info->{sub}; -} - -# Figures out what call (from the point of view of the caller) -# the long error backtrace should start at. -sub long_error_loc { - my $i; - my $lvl = $CarpLevel; - { - my $pkg = caller(++$i); - unless(defined($pkg)) { - # This *shouldn't* happen. - if (%Internal) { - local %Internal; - $i = long_error_loc(); - last; - } - else { - # OK, now I am irritated. - return 2; - } - } - redo if $CarpInternal{$pkg}; - redo unless 0 > --$lvl; - redo if $Internal{$pkg}; - } - return $i - 1; -} - -sub longmess_heavy { - return @_ if ref($_[0]); # don't break references as exceptions - my $i = long_error_loc(); - return ret_backtrace($i, @_); -} - -# Returns a full stack backtrace starting from where it is -# told. -sub ret_backtrace { - my ($i, @error) = @_; - my $mess; - my $err = join '', @error; - $i++; - - my $tid_msg = ''; - if (defined &threads::tid) { - my $tid = threads->tid; - $tid_msg = " thread $tid" if $tid; - } - - my %i = caller_info($i); - $mess = "$err at $i{file} line $i{line}$tid_msg\n"; - - while (my %i = caller_info(++$i)) { - $mess .= "\t$i{sub_name} called at $i{file} line $i{line}$tid_msg\n"; - } - - return $mess; -} - -sub ret_summary { - my ($i, @error) = @_; - my $err = join '', @error; - $i++; - - my $tid_msg = ''; - if (defined &threads::tid) { - my $tid = threads->tid; - $tid_msg = " thread $tid" if $tid; - } - - my %i = caller_info($i); - return "$err at $i{file} line $i{line}$tid_msg\n"; -} - -sub short_error_loc { - # You have to create your (hash)ref out here, rather than defaulting it - # inside trusts *on a lexical*, as you want it to persist across calls. - # (You can default it on $_[2], but that gets messy) - my $cache = {}; - my $i = 1; - my $lvl = $CarpLevel; - { - my $called = caller($i++); - my $caller = caller($i); - - return 0 unless defined($caller); # What happened? - redo if $Internal{$caller}; - redo if $CarpInternal{$caller}; - redo if $CarpInternal{$called}; - redo if trusts($called, $caller, $cache); - redo if trusts($caller, $called, $cache); - redo unless 0 > --$lvl; - } - return $i - 1; -} - -sub shortmess_heavy { - return longmess_heavy(@_) if $Verbose; - return @_ if ref($_[0]); # don't break references as exceptions - my $i = short_error_loc(); - if ($i) { - ret_summary($i, @_); - } - else { - longmess_heavy(@_); - } -} - -# If a string is too long, trims it with ... -sub str_len_trim { - my $str = shift; - my $max = shift || 0; - if (2 < $max and $max < length($str)) { - substr($str, $max - 3) = '...'; - } - return $str; -} - -# Takes two packages and an optional cache. Says whether the -# first inherits from the second. -# -# Recursive versions of this have to work to avoid certain -# possible endless loops, and when following long chains of -# inheritance are less efficient. -sub trusts { - my $child = shift; - my $parent = shift; - my $cache = shift; - my ($known, $partial) = get_status($cache, $child); - # Figure out consequences until we have an answer - while (@$partial and not exists $known->{$parent}) { - my $anc = shift @$partial; - next if exists $known->{$anc}; - $known->{$anc}++; - my ($anc_knows, $anc_partial) = get_status($cache, $anc); - my @found = keys %$anc_knows; - @$known{@found} = (); - push @$partial, @$anc_partial; - } - return exists $known->{$parent}; -} - -# Takes a package and gives a list of those trusted directly -sub trusts_directly { - my $class = shift; - no strict 'refs'; - no warnings 'once'; - return @{"$class\::CARP_NOT"} - ? @{"$class\::CARP_NOT"} - : @{"$class\::ISA"}; -} - -1; - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/Exporter.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/Exporter.pm deleted file mode 100644 index 9c751cf..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/Exporter.pm +++ /dev/null @@ -1,99 +0,0 @@ -package Exporter; - -require 5.006; - -# Be lean. -#use strict; -#no strict 'refs'; - -our $Debug = 0; -our $ExportLevel = 0; -our $Verbose ||= 0; -our $VERSION = '5.63'; -our (%Cache); - -# Carp 1.05+ does this now for us, but we may be running with an old Carp -$Carp::Internal{Exporter}++; - -sub as_heavy { - require Exporter::Heavy; - # Unfortunately, this does not work if the caller is aliased as *name = \&foo - # Thus the need to create a lot of identical subroutines - my $c = (caller(1))[3]; - $c =~ s/.*:://; - \&{"Exporter::Heavy::heavy_$c"}; -} - -sub export { - goto &{as_heavy()}; -} - -sub import { - my $pkg = shift; - my $callpkg = caller($ExportLevel); - - if ($pkg eq "Exporter" and @_ and $_[0] eq "import") { - *{$callpkg."::import"} = \&import; - return; - } - - # We *need* to treat @{"$pkg\::EXPORT_FAIL"} since Carp uses it :-( - my($exports, $fail) = (\@{"$pkg\::EXPORT"}, \@{"$pkg\::EXPORT_FAIL"}); - return export $pkg, $callpkg, @_ - if $Verbose or $Debug or @$fail > 1; - my $export_cache = ($Cache{$pkg} ||= {}); - my $args = @_ or @_ = @$exports; - - local $_; - if ($args and not %$export_cache) { - s/^&//, $export_cache->{$_} = 1 - foreach (@$exports, @{"$pkg\::EXPORT_OK"}); - } - my $heavy; - # Try very hard not to use {} and hence have to enter scope on the foreach - # We bomb out of the loop with last as soon as heavy is set. - if ($args or $fail) { - ($heavy = (/\W/ or $args and not exists $export_cache->{$_} - or @$fail and $_ eq $fail->[0])) and last - foreach (@_); - } else { - ($heavy = /\W/) and last - foreach (@_); - } - return export $pkg, $callpkg, ($args ? @_ : ()) if $heavy; - local $SIG{__WARN__} = - sub {require Carp; &Carp::carp}; - # shortcut for the common case of no type character - *{"$callpkg\::$_"} = \&{"$pkg\::$_"} foreach @_; -} - -# Default methods - -sub export_fail { - my $self = shift; - @_; -} - -# Unfortunately, caller(1)[3] "does not work" if the caller is aliased as -# *name = \&foo. Thus the need to create a lot of identical subroutines -# Otherwise we could have aliased them to export(). - -sub export_to_level { - goto &{as_heavy()}; -} - -sub export_tags { - goto &{as_heavy()}; -} - -sub export_ok_tags { - goto &{as_heavy()}; -} - -sub require_version { - goto &{as_heavy()}; -} - -1; -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/Exporter/Heavy.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/Exporter/Heavy.pm deleted file mode 100644 index 78dba39..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/Exporter/Heavy.pm +++ /dev/null @@ -1,237 +0,0 @@ -package Exporter::Heavy; - -use strict; -no strict 'refs'; - -# On one line so MakeMaker will see it. -require Exporter; our $VERSION = $Exporter::VERSION; - -# Carp 1.05+ does this now for us, but we may be running with an old Carp -$Carp::Internal{'Exporter::Heavy'}++; - -# -# We go to a lot of trouble not to 'require Carp' at file scope, -# because Carp requires Exporter, and something has to give. -# - -sub _rebuild_cache { - my ($pkg, $exports, $cache) = @_; - s/^&// foreach @$exports; - @{$cache}{@$exports} = (1) x @$exports; - my $ok = \@{"${pkg}::EXPORT_OK"}; - if (@$ok) { - s/^&// foreach @$ok; - @{$cache}{@$ok} = (1) x @$ok; - } -} - -sub heavy_export { - - # First make import warnings look like they're coming from the "use". - local $SIG{__WARN__} = sub { - my $text = shift; - if ($text =~ s/ at \S*Exporter\S*.pm line \d+.*\n//) { - require Carp; - local $Carp::CarpLevel = 1; # ignore package calling us too. - Carp::carp($text); - } - else { - warn $text; - } - }; - local $SIG{__DIE__} = sub { - require Carp; - local $Carp::CarpLevel = 1; # ignore package calling us too. - Carp::croak("$_[0]Illegal null symbol in \@${1}::EXPORT") - if $_[0] =~ /^Unable to create sub named "(.*?)::"/; - }; - - my($pkg, $callpkg, @imports) = @_; - my($type, $sym, $cache_is_current, $oops); - my($exports, $export_cache) = (\@{"${pkg}::EXPORT"}, - $Exporter::Cache{$pkg} ||= {}); - - if (@imports) { - if (!%$export_cache) { - _rebuild_cache ($pkg, $exports, $export_cache); - $cache_is_current = 1; - } - - if (grep m{^[/!:]}, @imports) { - my $tagsref = \%{"${pkg}::EXPORT_TAGS"}; - my $tagdata; - my %imports; - my($remove, $spec, @names, @allexports); - # negated first item implies starting with default set: - unshift @imports, ':DEFAULT' if $imports[0] =~ m/^!/; - foreach $spec (@imports){ - $remove = $spec =~ s/^!//; - - if ($spec =~ s/^://){ - if ($spec eq 'DEFAULT'){ - @names = @$exports; - } - elsif ($tagdata = $tagsref->{$spec}) { - @names = @$tagdata; - } - else { - warn qq["$spec" is not defined in %${pkg}::EXPORT_TAGS]; - ++$oops; - next; - } - } - elsif ($spec =~ m:^/(.*)/$:){ - my $patn = $1; - @allexports = keys %$export_cache unless @allexports; # only do keys once - @names = grep(/$patn/, @allexports); # not anchored by default - } - else { - @names = ($spec); # is a normal symbol name - } - - warn "Import ".($remove ? "del":"add").": @names " - if $Exporter::Verbose; - - if ($remove) { - foreach $sym (@names) { delete $imports{$sym} } - } - else { - @imports{@names} = (1) x @names; - } - } - @imports = keys %imports; - } - - my @carp; - foreach $sym (@imports) { - if (!$export_cache->{$sym}) { - if ($sym =~ m/^\d/) { - $pkg->VERSION($sym); # inherit from UNIVERSAL - # If the version number was the only thing specified - # then we should act as if nothing was specified: - if (@imports == 1) { - @imports = @$exports; - last; - } - # We need a way to emulate 'use Foo ()' but still - # allow an easy version check: "use Foo 1.23, ''"; - if (@imports == 2 and !$imports[1]) { - @imports = (); - last; - } - } elsif ($sym !~ s/^&// || !$export_cache->{$sym}) { - # Last chance - see if they've updated EXPORT_OK since we - # cached it. - - unless ($cache_is_current) { - %$export_cache = (); - _rebuild_cache ($pkg, $exports, $export_cache); - $cache_is_current = 1; - } - - if (!$export_cache->{$sym}) { - # accumulate the non-exports - push @carp, - qq["$sym" is not exported by the $pkg module\n]; - $oops++; - } - } - } - } - if ($oops) { - require Carp; - Carp::croak("@{carp}Can't continue after import errors"); - } - } - else { - @imports = @$exports; - } - - my($fail, $fail_cache) = (\@{"${pkg}::EXPORT_FAIL"}, - $Exporter::FailCache{$pkg} ||= {}); - - if (@$fail) { - if (!%$fail_cache) { - # Build cache of symbols. Optimise the lookup by adding - # barewords twice... both with and without a leading &. - # (Technique could be applied to $export_cache at cost of memory) - my @expanded = map { /^\w/ ? ($_, '&'.$_) : $_ } @$fail; - warn "${pkg}::EXPORT_FAIL cached: @expanded" if $Exporter::Verbose; - @{$fail_cache}{@expanded} = (1) x @expanded; - } - my @failed; - foreach $sym (@imports) { push(@failed, $sym) if $fail_cache->{$sym} } - if (@failed) { - @failed = $pkg->export_fail(@failed); - foreach $sym (@failed) { - require Carp; - Carp::carp(qq["$sym" is not implemented by the $pkg module ], - "on this architecture"); - } - if (@failed) { - require Carp; - Carp::croak("Can't continue after import errors"); - } - } - } - - warn "Importing into $callpkg from $pkg: ", - join(", ",sort @imports) if $Exporter::Verbose; - - foreach $sym (@imports) { - # shortcut for the common case of no type character - (*{"${callpkg}::$sym"} = \&{"${pkg}::$sym"}, next) - unless $sym =~ s/^(\W)//; - $type = $1; - no warnings 'once'; - *{"${callpkg}::$sym"} = - $type eq '&' ? \&{"${pkg}::$sym"} : - $type eq '$' ? \${"${pkg}::$sym"} : - $type eq '@' ? \@{"${pkg}::$sym"} : - $type eq '%' ? \%{"${pkg}::$sym"} : - $type eq '*' ? *{"${pkg}::$sym"} : - do { require Carp; Carp::croak("Can't export symbol: $type$sym") }; - } -} - -sub heavy_export_to_level -{ - my $pkg = shift; - my $level = shift; - (undef) = shift; # XXX redundant arg - my $callpkg = caller($level); - $pkg->export($callpkg, @_); -} - -# Utility functions - -sub _push_tags { - my($pkg, $var, $syms) = @_; - my @nontag = (); - my $export_tags = \%{"${pkg}::EXPORT_TAGS"}; - push(@{"${pkg}::$var"}, - map { $export_tags->{$_} ? @{$export_tags->{$_}} - : scalar(push(@nontag,$_),$_) } - (@$syms) ? @$syms : keys %$export_tags); - if (@nontag and $^W) { - # This may change to a die one day - require Carp; - Carp::carp(join(", ", @nontag)." are not tags of $pkg"); - } -} - -sub heavy_require_version { - my($self, $wanted) = @_; - my $pkg = ref $self || $self; - return ${pkg}->VERSION($wanted); -} - -sub heavy_export_tags { - _push_tags((caller)[0], "EXPORT", \@_); -} - -sub heavy_export_ok_tags { - _push_tags((caller)[0], "EXPORT_OK", \@_); -} - -1; diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/File/Spec.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/File/Spec.pm deleted file mode 100644 index a417d27..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/File/Spec.pm +++ /dev/null @@ -1,27 +0,0 @@ -package File::Spec; - -use strict; -use vars qw(@ISA $VERSION); - -$VERSION = '3.30'; -$VERSION = eval $VERSION; - -my %module = (MacOS => 'Mac', - MSWin32 => 'Win32', - os2 => 'OS2', - VMS => 'VMS', - epoc => 'Epoc', - NetWare => 'Win32', # Yes, File::Spec::Win32 works on NetWare. - symbian => 'Win32', # Yes, File::Spec::Win32 works on symbian. - dos => 'OS2', # Yes, File::Spec::OS2 works on DJGPP. - cygwin => 'Cygwin'); - -my $module = $module{$^O} || 'Unix'; - -require "File/Spec/$module.pm"; -@ISA = ("File::Spec::$module"); - -1; - -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/File/Spec/Unix.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/File/Spec/Unix.pm deleted file mode 100644 index 7beae08..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/File/Spec/Unix.pm +++ /dev/null @@ -1,269 +0,0 @@ -package File::Spec::Unix; - -use strict; -use vars qw($VERSION); - -$VERSION = '3.30'; -$VERSION = eval $VERSION; - -sub canonpath { - my ($self,$path) = @_; - return unless defined $path; - - # Handle POSIX-style node names beginning with double slash (qnx, nto) - # (POSIX says: "a pathname that begins with two successive slashes - # may be interpreted in an implementation-defined manner, although - # more than two leading slashes shall be treated as a single slash.") - my $node = ''; - my $double_slashes_special = $^O eq 'qnx' || $^O eq 'nto'; - - if ( $double_slashes_special - && ( $path =~ s{^(//[^/]+)/?\z}{}s || $path =~ s{^(//[^/]+)/}{/}s ) ) { - $node = $1; - } - # This used to be - # $path =~ s|/+|/|g unless ($^O eq 'cygwin'); - # but that made tests 29, 30, 35, 46, and 213 (as of #13272) to fail - # (Mainly because trailing "" directories didn't get stripped). - # Why would cygwin avoid collapsing multiple slashes into one? --jhi - $path =~ s|/{2,}|/|g; # xx////xx -> xx/xx - $path =~ s{(?:/\.)+(?:/|\z)}{/}g; # xx/././xx -> xx/xx - $path =~ s|^(?:\./)+||s unless $path eq "./"; # ./xx -> xx - $path =~ s|^/(?:\.\./)+|/|; # /../../xx -> xx - $path =~ s|^/\.\.$|/|; # /.. -> / - $path =~ s|/\z|| unless $path eq "/"; # xx/ -> xx - return "$node$path"; -} - -sub catdir { - my $self = shift; - - $self->canonpath(join('/', @_, '')); # '' because need a trailing '/' -} - -sub catfile { - my $self = shift; - my $file = $self->canonpath(pop @_); - return $file unless @_; - my $dir = $self->catdir(@_); - $dir .= "/" unless substr($dir,-1) eq "/"; - return $dir.$file; -} - -sub curdir { '.' } - -sub devnull { '/dev/null' } - -sub rootdir { '/' } - -my $tmpdir; -sub _tmpdir { - return $tmpdir if defined $tmpdir; - my $self = shift; - my @dirlist = @_; - { - no strict 'refs'; - if (${"\cTAINT"}) { # Check for taint mode on perl >= 5.8.0 - require Scalar::Util; - @dirlist = grep { ! Scalar::Util::tainted($_) } @dirlist; - } - } - foreach (@dirlist) { - next unless defined && -d && -w _; - $tmpdir = $_; - last; - } - $tmpdir = $self->curdir unless defined $tmpdir; - $tmpdir = defined $tmpdir && $self->canonpath($tmpdir); - return $tmpdir; -} - -sub tmpdir { - return $tmpdir if defined $tmpdir; - $tmpdir = $_[0]->_tmpdir( $ENV{TMPDIR}, "/tmp" ); -} - -sub updir { '..' } - -sub no_upwards { - my $self = shift; - return grep(!/^\.{1,2}\z/s, @_); -} - -sub case_tolerant { 0 } - -sub file_name_is_absolute { - my ($self,$file) = @_; - return scalar($file =~ m:^/:s); -} - -sub path { - return () unless exists $ENV{PATH}; - my @path = split(':', $ENV{PATH}); - foreach (@path) { $_ = '.' if $_ eq '' } - return @path; -} - -sub join { - my $self = shift; - return $self->catfile(@_); -} - -sub splitpath { - my ($self,$path, $nofile) = @_; - - my ($volume,$directory,$file) = ('','',''); - - if ( $nofile ) { - $directory = $path; - } - else { - $path =~ m|^ ( (?: .* / (?: \.\.?\z )? )? ) ([^/]*) |xs; - $directory = $1; - $file = $2; - } - - return ($volume,$directory,$file); -} - -sub splitdir { - return split m|/|, $_[1], -1; # Preserve trailing fields -} - -sub catpath { - my ($self,$volume,$directory,$file) = @_; - - if ( $directory ne '' && - $file ne '' && - substr( $directory, -1 ) ne '/' && - substr( $file, 0, 1 ) ne '/' - ) { - $directory .= "/$file" ; - } - else { - $directory .= $file ; - } - - return $directory ; -} - -sub abs2rel { - my($self,$path,$base) = @_; - $base = $self->_cwd() unless defined $base and length $base; - - ($path, $base) = map $self->canonpath($_), $path, $base; - - if (grep $self->file_name_is_absolute($_), $path, $base) { - ($path, $base) = map $self->rel2abs($_), $path, $base; - } - else { - # save a couple of cwd()s if both paths are relative - ($path, $base) = map $self->catdir('/', $_), $path, $base; - } - - my ($path_volume) = $self->splitpath($path, 1); - my ($base_volume) = $self->splitpath($base, 1); - - # Can't relativize across volumes - return $path unless $path_volume eq $base_volume; - - my $path_directories = ($self->splitpath($path, 1))[1]; - my $base_directories = ($self->splitpath($base, 1))[1]; - - # For UNC paths, the user might give a volume like //foo/bar that - # strictly speaking has no directory portion. Treat it as if it - # had the root directory for that volume. - if (!length($base_directories) and $self->file_name_is_absolute($base)) { - $base_directories = $self->rootdir; - } - - # Now, remove all leading components that are the same - my @pathchunks = $self->splitdir( $path_directories ); - my @basechunks = $self->splitdir( $base_directories ); - - if ($base_directories eq $self->rootdir) { - shift @pathchunks; - return $self->canonpath( $self->catpath('', $self->catdir( @pathchunks ), '') ); - } - - while (@pathchunks && @basechunks && $self->_same($pathchunks[0], $basechunks[0])) { - shift @pathchunks ; - shift @basechunks ; - } - return $self->curdir unless @pathchunks || @basechunks; - - # $base now contains the directories the resulting relative path - # must ascend out of before it can descend to $path_directory. - my $result_dirs = $self->catdir( ($self->updir) x @basechunks, @pathchunks ); - return $self->canonpath( $self->catpath('', $result_dirs, '') ); -} - -sub _same { - $_[1] eq $_[2]; -} - -sub rel2abs { - my ($self,$path,$base ) = @_; - - # Clean up $path - if ( ! $self->file_name_is_absolute( $path ) ) { - # Figure out the effective $base and clean it up. - if ( !defined( $base ) || $base eq '' ) { - $base = $self->_cwd(); - } - elsif ( ! $self->file_name_is_absolute( $base ) ) { - $base = $self->rel2abs( $base ) ; - } - else { - $base = $self->canonpath( $base ) ; - } - - # Glom them together - $path = $self->catdir( $base, $path ) ; - } - - return $self->canonpath( $path ) ; -} - -# Internal routine to File::Spec, no point in making this public since -# it is the standard Cwd interface. Most of the platform-specific -# File::Spec subclasses use this. -sub _cwd { - require Cwd; - Cwd::getcwd(); -} - -# Internal method to reduce xx\..\yy -> yy -sub _collapse { - my($fs, $path) = @_; - - my $updir = $fs->updir; - my $curdir = $fs->curdir; - - my($vol, $dirs, $file) = $fs->splitpath($path); - my @dirs = $fs->splitdir($dirs); - pop @dirs if @dirs && $dirs[-1] eq ''; - - my @collapsed; - foreach my $dir (@dirs) { - if( $dir eq $updir and # if we have an updir - @collapsed and # and something to collapse - length $collapsed[-1] and # and its not the rootdir - $collapsed[-1] ne $updir and # nor another updir - $collapsed[-1] ne $curdir # nor the curdir - ) - { # then - pop @collapsed; # collapse - } - else { # else - push @collapsed, $dir; # just hang onto it - } - } - - return $fs->catpath($vol, - $fs->catdir(@collapsed), - $file - ); -} - -1; diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/FileHandle.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/FileHandle.pm deleted file mode 100644 index 6761340..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/FileHandle.pm +++ /dev/null @@ -1,105 +0,0 @@ -package FileHandle; - -use 5.006; -use strict; -our($VERSION, @ISA, @EXPORT, @EXPORT_OK); - -$VERSION = "2.02"; - -require IO::File; -@ISA = qw(IO::File); - -@EXPORT = qw(_IOFBF _IOLBF _IONBF); - -@EXPORT_OK = qw( - pipe - - autoflush - output_field_separator - output_record_separator - input_record_separator - input_line_number - format_page_number - format_lines_per_page - format_lines_left - format_name - format_top_name - format_line_break_characters - format_formfeed - - print - printf - getline - getlines -); - -# -# Everything we're willing to export, we must first import. -# -import IO::Handle grep { !defined(&$_) } @EXPORT, @EXPORT_OK; - -# -# Some people call "FileHandle::function", so all the functions -# that were in the old FileHandle class must be imported, too. -# -{ - no strict 'refs'; - - my %import = ( - 'IO::Handle' => - [qw(DESTROY new_from_fd fdopen close fileno getc ungetc gets - eof flush error clearerr setbuf setvbuf _open_mode_string)], - 'IO::Seekable' => - [qw(seek tell getpos setpos)], - 'IO::File' => - [qw(new new_tmpfile open)] - ); - for my $pkg (keys %import) { - for my $func (@{$import{$pkg}}) { - my $c = *{"${pkg}::$func"}{CODE} - or die "${pkg}::$func missing"; - *$func = $c; - } - } -} - -# -# Specialized importer for Fcntl magic. -# -sub import { - my $pkg = shift; - my $callpkg = caller; - require Exporter; - Exporter::export($pkg, $callpkg, @_); - - # - # If the Fcntl extension is available, - # export its constants. - # - eval { - require Fcntl; - Exporter::export('Fcntl', $callpkg); - }; -} - -################################################ -# This is the only exported function we define; -# the rest come from other classes. -# - -sub pipe { - my $r = new IO::Handle; - my $w = new IO::Handle; - CORE::pipe($r, $w) or return undef; - ($r, $w); -} - -# Rebless standard file handles -bless *STDIN{IO}, "FileHandle" if ref *STDIN{IO} eq "IO::Handle"; -bless *STDOUT{IO}, "FileHandle" if ref *STDOUT{IO} eq "IO::Handle"; -bless *STDERR{IO}, "FileHandle" if ref *STDERR{IO} eq "IO::Handle"; - -1; - -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/Getopt/Long.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/Getopt/Long.pm deleted file mode 100644 index 4574d46..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/Getopt/Long.pm +++ /dev/null @@ -1,1495 +0,0 @@ -# Getopt::Long.pm -- Universal options parsing - -package Getopt::Long; - -# RCS Status : $Id: Long.pm,v 2.76 2009/03/30 20:54:30 jv Exp $ -# Author : Johan Vromans -# Created On : Tue Sep 11 15:00:12 1990 -# Last Modified By: Johan Vromans -# Last Modified On: Mon Mar 30 22:51:17 2009 -# Update Count : 1601 -# Status : Released - -################ Module Preamble ################ - -use 5.004; - -use strict; - -use vars qw($VERSION); -$VERSION = 2.38; -# For testing versions only. -#use vars qw($VERSION_STRING); -#$VERSION_STRING = "2.38"; - -use Exporter; -use vars qw(@ISA @EXPORT @EXPORT_OK); -@ISA = qw(Exporter); - -# Exported subroutines. -sub GetOptions(@); # always -sub GetOptionsFromArray(@); # on demand -sub GetOptionsFromString(@); # on demand -sub Configure(@); # on demand -sub HelpMessage(@); # on demand -sub VersionMessage(@); # in demand - -BEGIN { - # Init immediately so their contents can be used in the 'use vars' below. - @EXPORT = qw(&GetOptions $REQUIRE_ORDER $PERMUTE $RETURN_IN_ORDER); - @EXPORT_OK = qw(&HelpMessage &VersionMessage &Configure - &GetOptionsFromArray &GetOptionsFromString); -} - -# User visible variables. -use vars @EXPORT, @EXPORT_OK; -use vars qw($error $debug $major_version $minor_version); -# Deprecated visible variables. -use vars qw($autoabbrev $getopt_compat $ignorecase $bundling $order - $passthrough); -# Official invisible variables. -use vars qw($genprefix $caller $gnu_compat $auto_help $auto_version $longprefix); - -# Public subroutines. -sub config(@); # deprecated name - -# Private subroutines. -sub ConfigDefaults(); -sub ParseOptionSpec($$); -sub OptCtl($); -sub FindOption($$$$$); -sub ValidValue ($$$$$); - -################ Local Variables ################ - -# $requested_version holds the version that was mentioned in the 'use' -# or 'require', if any. It can be used to enable or disable specific -# features. -my $requested_version = 0; - -################ Resident subroutines ################ - -sub ConfigDefaults() { - # Handle POSIX compliancy. - if ( defined $ENV{"POSIXLY_CORRECT"} ) { - $genprefix = "(--|-)"; - $autoabbrev = 0; # no automatic abbrev of options - $bundling = 0; # no bundling of single letter switches - $getopt_compat = 0; # disallow '+' to start options - $order = $REQUIRE_ORDER; - } - else { - $genprefix = "(--|-|\\+)"; - $autoabbrev = 1; # automatic abbrev of options - $bundling = 0; # bundling off by default - $getopt_compat = 1; # allow '+' to start options - $order = $PERMUTE; - } - # Other configurable settings. - $debug = 0; # for debugging - $error = 0; # error tally - $ignorecase = 1; # ignore case when matching options - $passthrough = 0; # leave unrecognized options alone - $gnu_compat = 0; # require --opt=val if value is optional - $longprefix = "(--)"; # what does a long prefix look like -} - -# Override import. -sub import { - my $pkg = shift; # package - my @syms = (); # symbols to import - my @config = (); # configuration - my $dest = \@syms; # symbols first - for ( @_ ) { - if ( $_ eq ':config' ) { - $dest = \@config; # config next - next; - } - push(@$dest, $_); # push - } - # Hide one level and call super. - local $Exporter::ExportLevel = 1; - push(@syms, qw(&GetOptions)) if @syms; # always export GetOptions - $pkg->SUPER::import(@syms); - # And configure. - Configure(@config) if @config; -} - -################ Initialization ################ - -# Values for $order. See GNU getopt.c for details. -($REQUIRE_ORDER, $PERMUTE, $RETURN_IN_ORDER) = (0..2); -# Version major/minor numbers. -($major_version, $minor_version) = $VERSION =~ /^(\d+)\.(\d+)/; - -ConfigDefaults(); - -################ OO Interface ################ - -package Getopt::Long::Parser; - -# Store a copy of the default configuration. Since ConfigDefaults has -# just been called, what we get from Configure is the default. -my $default_config = do { - Getopt::Long::Configure () -}; - -sub new { - my $that = shift; - my $class = ref($that) || $that; - my %atts = @_; - - # Register the callers package. - my $self = { caller_pkg => (caller)[0] }; - - bless ($self, $class); - - # Process config attributes. - if ( defined $atts{config} ) { - my $save = Getopt::Long::Configure ($default_config, @{$atts{config}}); - $self->{settings} = Getopt::Long::Configure ($save); - delete ($atts{config}); - } - # Else use default config. - else { - $self->{settings} = $default_config; - } - - if ( %atts ) { # Oops - die(__PACKAGE__.": unhandled attributes: ". - join(" ", sort(keys(%atts)))."\n"); - } - - $self; -} - -sub configure { - my ($self) = shift; - - # Restore settings, merge new settings in. - my $save = Getopt::Long::Configure ($self->{settings}, @_); - - # Restore orig config and save the new config. - $self->{settings} = Getopt::Long::Configure ($save); -} - -sub getoptions { - my ($self) = shift; - - # Restore config settings. - my $save = Getopt::Long::Configure ($self->{settings}); - - # Call main routine. - my $ret = 0; - $Getopt::Long::caller = $self->{caller_pkg}; - - eval { - # Locally set exception handler to default, otherwise it will - # be called implicitly here, and again explicitly when we try - # to deliver the messages. - local ($SIG{__DIE__}) = 'DEFAULT'; - $ret = Getopt::Long::GetOptions (@_); - }; - - # Restore saved settings. - Getopt::Long::Configure ($save); - - # Handle errors and return value. - die ($@) if $@; - return $ret; -} - -package Getopt::Long; - -################ Back to Normal ################ - -# Indices in option control info. -# Note that ParseOptions uses the fields directly. Search for 'hard-wired'. -use constant CTL_TYPE => 0; -#use constant CTL_TYPE_FLAG => ''; -#use constant CTL_TYPE_NEG => '!'; -#use constant CTL_TYPE_INCR => '+'; -#use constant CTL_TYPE_INT => 'i'; -#use constant CTL_TYPE_INTINC => 'I'; -#use constant CTL_TYPE_XINT => 'o'; -#use constant CTL_TYPE_FLOAT => 'f'; -#use constant CTL_TYPE_STRING => 's'; - -use constant CTL_CNAME => 1; - -use constant CTL_DEFAULT => 2; - -use constant CTL_DEST => 3; - use constant CTL_DEST_SCALAR => 0; - use constant CTL_DEST_ARRAY => 1; - use constant CTL_DEST_HASH => 2; - use constant CTL_DEST_CODE => 3; - -use constant CTL_AMIN => 4; -use constant CTL_AMAX => 5; - -# FFU. -#use constant CTL_RANGE => ; -#use constant CTL_REPEAT => ; - -# Rather liberal patterns to match numbers. -use constant PAT_INT => "[-+]?_*[0-9][0-9_]*"; -use constant PAT_XINT => - "(?:". - "[-+]?_*[1-9][0-9_]*". - "|". - "0x_*[0-9a-f][0-9a-f_]*". - "|". - "0b_*[01][01_]*". - "|". - "0[0-7_]*". - ")"; -use constant PAT_FLOAT => "[-+]?[0-9._]+(\.[0-9_]+)?([eE][-+]?[0-9_]+)?"; - -sub GetOptions(@) { - # Shift in default array. - unshift(@_, \@ARGV); - # Try to keep caller() and Carp consitent. - goto &GetOptionsFromArray; -} - -sub GetOptionsFromString(@) { - my ($string) = shift; - require Text::ParseWords; - my $args = [ Text::ParseWords::shellwords($string) ]; - $caller ||= (caller)[0]; # current context - my $ret = GetOptionsFromArray($args, @_); - return ( $ret, $args ) if wantarray; - if ( @$args ) { - $ret = 0; - warn("GetOptionsFromString: Excess data \"@$args\" in string \"$string\"\n"); - } - $ret; -} - -sub GetOptionsFromArray(@) { - - my ($argv, @optionlist) = @_; # local copy of the option descriptions - my $argend = '--'; # option list terminator - my %opctl = (); # table of option specs - my $pkg = $caller || (caller)[0]; # current context - # Needed if linkage is omitted. - my @ret = (); # accum for non-options - my %linkage; # linkage - my $userlinkage; # user supplied HASH - my $opt; # current option - my $prefix = $genprefix; # current prefix - - $error = ''; - - if ( $debug ) { - # Avoid some warnings if debugging. - local ($^W) = 0; - print STDERR - ("Getopt::Long $Getopt::Long::VERSION (", - '$Revision: 2.76 $', ") ", - "called from package \"$pkg\".", - "\n ", - "argv: (@$argv)", - "\n ", - "autoabbrev=$autoabbrev,". - "bundling=$bundling,", - "getopt_compat=$getopt_compat,", - "gnu_compat=$gnu_compat,", - "order=$order,", - "\n ", - "ignorecase=$ignorecase,", - "requested_version=$requested_version,", - "passthrough=$passthrough,", - "genprefix=\"$genprefix\",", - "longprefix=\"$longprefix\".", - "\n"); - } - - # Check for ref HASH as first argument. - # First argument may be an object. It's OK to use this as long - # as it is really a hash underneath. - $userlinkage = undef; - if ( @optionlist && ref($optionlist[0]) and - UNIVERSAL::isa($optionlist[0],'HASH') ) { - $userlinkage = shift (@optionlist); - print STDERR ("=> user linkage: $userlinkage\n") if $debug; - } - - # See if the first element of the optionlist contains option - # starter characters. - # Be careful not to interpret '<>' as option starters. - if ( @optionlist && $optionlist[0] =~ /^\W+$/ - && !($optionlist[0] eq '<>' - && @optionlist > 0 - && ref($optionlist[1])) ) { - $prefix = shift (@optionlist); - # Turn into regexp. Needs to be parenthesized! - $prefix =~ s/(\W)/\\$1/g; - $prefix = "([" . $prefix . "])"; - print STDERR ("=> prefix=\"$prefix\"\n") if $debug; - } - - # Verify correctness of optionlist. - %opctl = (); - while ( @optionlist ) { - my $opt = shift (@optionlist); - - unless ( defined($opt) ) { - $error .= "Undefined argument in option spec\n"; - next; - } - - # Strip leading prefix so people can specify "--foo=i" if they like. - $opt = $+ if $opt =~ /^$prefix+(.*)$/s; - - if ( $opt eq '<>' ) { - if ( (defined $userlinkage) - && !(@optionlist > 0 && ref($optionlist[0])) - && (exists $userlinkage->{$opt}) - && ref($userlinkage->{$opt}) ) { - unshift (@optionlist, $userlinkage->{$opt}); - } - unless ( @optionlist > 0 - && ref($optionlist[0]) && ref($optionlist[0]) eq 'CODE' ) { - $error .= "Option spec <> requires a reference to a subroutine\n"; - # Kill the linkage (to avoid another error). - shift (@optionlist) - if @optionlist && ref($optionlist[0]); - next; - } - $linkage{'<>'} = shift (@optionlist); - next; - } - - # Parse option spec. - my ($name, $orig) = ParseOptionSpec ($opt, \%opctl); - unless ( defined $name ) { - # Failed. $orig contains the error message. Sorry for the abuse. - $error .= $orig; - # Kill the linkage (to avoid another error). - shift (@optionlist) - if @optionlist && ref($optionlist[0]); - next; - } - - # If no linkage is supplied in the @optionlist, copy it from - # the userlinkage if available. - if ( defined $userlinkage ) { - unless ( @optionlist > 0 && ref($optionlist[0]) ) { - if ( exists $userlinkage->{$orig} && - ref($userlinkage->{$orig}) ) { - print STDERR ("=> found userlinkage for \"$orig\": ", - "$userlinkage->{$orig}\n") - if $debug; - unshift (@optionlist, $userlinkage->{$orig}); - } - else { - # Do nothing. Being undefined will be handled later. - next; - } - } - } - - # Copy the linkage. If omitted, link to global variable. - if ( @optionlist > 0 && ref($optionlist[0]) ) { - print STDERR ("=> link \"$orig\" to $optionlist[0]\n") - if $debug; - my $rl = ref($linkage{$orig} = shift (@optionlist)); - - if ( $rl eq "ARRAY" ) { - $opctl{$name}[CTL_DEST] = CTL_DEST_ARRAY; - } - elsif ( $rl eq "HASH" ) { - $opctl{$name}[CTL_DEST] = CTL_DEST_HASH; - } - elsif ( $rl eq "SCALAR" || $rl eq "REF" ) { -# if ( $opctl{$name}[CTL_DEST] == CTL_DEST_ARRAY ) { -# my $t = $linkage{$orig}; -# $$t = $linkage{$orig} = []; -# } -# elsif ( $opctl{$name}[CTL_DEST] == CTL_DEST_HASH ) { -# } -# else { - # Ok. -# } - } - elsif ( $rl eq "CODE" ) { - # Ok. - } - else { - $error .= "Invalid option linkage for \"$opt\"\n"; - } - } - else { - # Link to global $opt_XXX variable. - # Make sure a valid perl identifier results. - my $ov = $orig; - $ov =~ s/\W/_/g; - if ( $opctl{$name}[CTL_DEST] == CTL_DEST_ARRAY ) { - print STDERR ("=> link \"$orig\" to \@$pkg","::opt_$ov\n") - if $debug; - eval ("\$linkage{\$orig} = \\\@".$pkg."::opt_$ov;"); - } - elsif ( $opctl{$name}[CTL_DEST] == CTL_DEST_HASH ) { - print STDERR ("=> link \"$orig\" to \%$pkg","::opt_$ov\n") - if $debug; - eval ("\$linkage{\$orig} = \\\%".$pkg."::opt_$ov;"); - } - else { - print STDERR ("=> link \"$orig\" to \$$pkg","::opt_$ov\n") - if $debug; - eval ("\$linkage{\$orig} = \\\$".$pkg."::opt_$ov;"); - } - } - - if ( $opctl{$name}[CTL_TYPE] eq 'I' - && ( $opctl{$name}[CTL_DEST] == CTL_DEST_ARRAY - || $opctl{$name}[CTL_DEST] == CTL_DEST_HASH ) - ) { - $error .= "Invalid option linkage for \"$opt\"\n"; - } - - } - - # Bail out if errors found. - die ($error) if $error; - $error = 0; - - # Supply --version and --help support, if needed and allowed. - if ( defined($auto_version) ? $auto_version : ($requested_version >= 2.3203) ) { - if ( !defined($opctl{version}) ) { - $opctl{version} = ['','version',0,CTL_DEST_CODE,undef]; - $linkage{version} = \&VersionMessage; - } - $auto_version = 1; - } - if ( defined($auto_help) ? $auto_help : ($requested_version >= 2.3203) ) { - if ( !defined($opctl{help}) && !defined($opctl{'?'}) ) { - $opctl{help} = $opctl{'?'} = ['','help',0,CTL_DEST_CODE,undef]; - $linkage{help} = \&HelpMessage; - } - $auto_help = 1; - } - - # Show the options tables if debugging. - if ( $debug ) { - my ($arrow, $k, $v); - $arrow = "=> "; - while ( ($k,$v) = each(%opctl) ) { - print STDERR ($arrow, "\$opctl{$k} = $v ", OptCtl($v), "\n"); - $arrow = " "; - } - } - - # Process argument list - my $goon = 1; - while ( $goon && @$argv > 0 ) { - - # Get next argument. - $opt = shift (@$argv); - print STDERR ("=> arg \"", $opt, "\"\n") if $debug; - - # Double dash is option list terminator. - if ( $opt eq $argend ) { - push (@ret, $argend) if $passthrough; - last; - } - - # Look it up. - my $tryopt = $opt; - my $found; # success status - my $key; # key (if hash type) - my $arg; # option argument - my $ctl; # the opctl entry - - ($found, $opt, $ctl, $arg, $key) = - FindOption ($argv, $prefix, $argend, $opt, \%opctl); - - if ( $found ) { - - # FindOption undefines $opt in case of errors. - next unless defined $opt; - - my $argcnt = 0; - while ( defined $arg ) { - - # Get the canonical name. - print STDERR ("=> cname for \"$opt\" is ") if $debug; - $opt = $ctl->[CTL_CNAME]; - print STDERR ("\"$ctl->[CTL_CNAME]\"\n") if $debug; - - if ( defined $linkage{$opt} ) { - print STDERR ("=> ref(\$L{$opt}) -> ", - ref($linkage{$opt}), "\n") if $debug; - - if ( ref($linkage{$opt}) eq 'SCALAR' - || ref($linkage{$opt}) eq 'REF' ) { - if ( $ctl->[CTL_TYPE] eq '+' ) { - print STDERR ("=> \$\$L{$opt} += \"$arg\"\n") - if $debug; - if ( defined ${$linkage{$opt}} ) { - ${$linkage{$opt}} += $arg; - } - else { - ${$linkage{$opt}} = $arg; - } - } - elsif ( $ctl->[CTL_DEST] == CTL_DEST_ARRAY ) { - print STDERR ("=> ref(\$L{$opt}) auto-vivified", - " to ARRAY\n") - if $debug; - my $t = $linkage{$opt}; - $$t = $linkage{$opt} = []; - print STDERR ("=> push(\@{\$L{$opt}, \"$arg\")\n") - if $debug; - push (@{$linkage{$opt}}, $arg); - } - elsif ( $ctl->[CTL_DEST] == CTL_DEST_HASH ) { - print STDERR ("=> ref(\$L{$opt}) auto-vivified", - " to HASH\n") - if $debug; - my $t = $linkage{$opt}; - $$t = $linkage{$opt} = {}; - print STDERR ("=> \$\$L{$opt}->{$key} = \"$arg\"\n") - if $debug; - $linkage{$opt}->{$key} = $arg; - } - else { - print STDERR ("=> \$\$L{$opt} = \"$arg\"\n") - if $debug; - ${$linkage{$opt}} = $arg; - } - } - elsif ( ref($linkage{$opt}) eq 'ARRAY' ) { - print STDERR ("=> push(\@{\$L{$opt}, \"$arg\")\n") - if $debug; - push (@{$linkage{$opt}}, $arg); - } - elsif ( ref($linkage{$opt}) eq 'HASH' ) { - print STDERR ("=> \$\$L{$opt}->{$key} = \"$arg\"\n") - if $debug; - $linkage{$opt}->{$key} = $arg; - } - elsif ( ref($linkage{$opt}) eq 'CODE' ) { - print STDERR ("=> &L{$opt}(\"$opt\"", - $ctl->[CTL_DEST] == CTL_DEST_HASH ? ", \"$key\"" : "", - ", \"$arg\")\n") - if $debug; - my $eval_error = do { - local $@; - local $SIG{__DIE__} = 'DEFAULT'; - eval { - &{$linkage{$opt}} - (Getopt::Long::CallBack->new - (name => $opt, - ctl => $ctl, - opctl => \%opctl, - linkage => \%linkage, - prefix => $prefix, - ), - $ctl->[CTL_DEST] == CTL_DEST_HASH ? ($key) : (), - $arg); - }; - $@; - }; - print STDERR ("=> die($eval_error)\n") - if $debug && $eval_error ne ''; - if ( $eval_error =~ /^!/ ) { - if ( $eval_error =~ /^!FINISH\b/ ) { - $goon = 0; - } - } - elsif ( $eval_error ne '' ) { - warn ($eval_error); - $error++; - } - } - else { - print STDERR ("Invalid REF type \"", ref($linkage{$opt}), - "\" in linkage\n"); - die("Getopt::Long -- internal error!\n"); - } - } - # No entry in linkage means entry in userlinkage. - elsif ( $ctl->[CTL_DEST] == CTL_DEST_ARRAY ) { - if ( defined $userlinkage->{$opt} ) { - print STDERR ("=> push(\@{\$L{$opt}}, \"$arg\")\n") - if $debug; - push (@{$userlinkage->{$opt}}, $arg); - } - else { - print STDERR ("=>\$L{$opt} = [\"$arg\"]\n") - if $debug; - $userlinkage->{$opt} = [$arg]; - } - } - elsif ( $ctl->[CTL_DEST] == CTL_DEST_HASH ) { - if ( defined $userlinkage->{$opt} ) { - print STDERR ("=> \$L{$opt}->{$key} = \"$arg\"\n") - if $debug; - $userlinkage->{$opt}->{$key} = $arg; - } - else { - print STDERR ("=>\$L{$opt} = {$key => \"$arg\"}\n") - if $debug; - $userlinkage->{$opt} = {$key => $arg}; - } - } - else { - if ( $ctl->[CTL_TYPE] eq '+' ) { - print STDERR ("=> \$L{$opt} += \"$arg\"\n") - if $debug; - if ( defined $userlinkage->{$opt} ) { - $userlinkage->{$opt} += $arg; - } - else { - $userlinkage->{$opt} = $arg; - } - } - else { - print STDERR ("=>\$L{$opt} = \"$arg\"\n") if $debug; - $userlinkage->{$opt} = $arg; - } - } - - $argcnt++; - last if $argcnt >= $ctl->[CTL_AMAX] && $ctl->[CTL_AMAX] != -1; - undef($arg); - - # Need more args? - if ( $argcnt < $ctl->[CTL_AMIN] ) { - if ( @$argv ) { - if ( ValidValue($ctl, $argv->[0], 1, $argend, $prefix) ) { - $arg = shift(@$argv); - $arg =~ tr/_//d if $ctl->[CTL_TYPE] =~ /^[iIo]$/; - ($key,$arg) = $arg =~ /^([^=]+)=(.*)/ - if $ctl->[CTL_DEST] == CTL_DEST_HASH; - next; - } - warn("Value \"$$argv[0]\" invalid for option $opt\n"); - $error++; - } - else { - warn("Insufficient arguments for option $opt\n"); - $error++; - } - } - - # Any more args? - if ( @$argv && ValidValue($ctl, $argv->[0], 0, $argend, $prefix) ) { - $arg = shift(@$argv); - $arg =~ tr/_//d if $ctl->[CTL_TYPE] =~ /^[iIo]$/; - ($key,$arg) = $arg =~ /^([^=]+)=(.*)/ - if $ctl->[CTL_DEST] == CTL_DEST_HASH; - next; - } - } - } - - # Not an option. Save it if we $PERMUTE and don't have a <>. - elsif ( $order == $PERMUTE ) { - # Try non-options call-back. - my $cb; - if ( (defined ($cb = $linkage{'<>'})) ) { - print STDERR ("=> &L{$tryopt}(\"$tryopt\")\n") - if $debug; - my $eval_error = do { - local $@; - local $SIG{__DIE__} = 'DEFAULT'; - eval { - &$cb - (Getopt::Long::CallBack->new - (name => $tryopt, - ctl => $ctl, - opctl => \%opctl, - linkage => \%linkage, - prefix => $prefix, - )); - }; - $@; - }; - print STDERR ("=> die($eval_error)\n") - if $debug && $eval_error ne ''; - if ( $eval_error =~ /^!/ ) { - if ( $eval_error =~ /^!FINISH\b/ ) { - $goon = 0; - } - } - elsif ( $eval_error ne '' ) { - warn ($eval_error); - $error++; - } - } - else { - print STDERR ("=> saving \"$tryopt\" ", - "(not an option, may permute)\n") if $debug; - push (@ret, $tryopt); - } - next; - } - - # ...otherwise, terminate. - else { - # Push this one back and exit. - unshift (@$argv, $tryopt); - return ($error == 0); - } - - } - - # Finish. - if ( @ret && $order == $PERMUTE ) { - # Push back accumulated arguments - print STDERR ("=> restoring \"", join('" "', @ret), "\"\n") - if $debug; - unshift (@$argv, @ret); - } - - return ($error == 0); -} - -# A readable representation of what's in an optbl. -sub OptCtl ($) { - my ($v) = @_; - my @v = map { defined($_) ? ($_) : ("<undef>") } @$v; - "[". - join(",", - "\"$v[CTL_TYPE]\"", - "\"$v[CTL_CNAME]\"", - "\"$v[CTL_DEFAULT]\"", - ("\$","\@","\%","\&")[$v[CTL_DEST] || 0], - $v[CTL_AMIN] || '', - $v[CTL_AMAX] || '', -# $v[CTL_RANGE] || '', -# $v[CTL_REPEAT] || '', - ). "]"; -} - -# Parse an option specification and fill the tables. -sub ParseOptionSpec ($$) { - my ($opt, $opctl) = @_; - - # Match option spec. - if ( $opt !~ m;^ - ( - # Option name - (?: \w+[-\w]* ) - # Alias names, or "?" - (?: \| (?: \? | \w[-\w]* ) )* - )? - ( - # Either modifiers ... - [!+] - | - # ... or a value/dest/repeat specification - [=:] [ionfs] [@%]? (?: \{\d*,?\d*\} )? - | - # ... or an optional-with-default spec - : (?: -?\d+ | \+ ) [@%]? - )? - $;x ) { - return (undef, "Error in option spec: \"$opt\"\n"); - } - - my ($names, $spec) = ($1, $2); - $spec = '' unless defined $spec; - - # $orig keeps track of the primary name the user specified. - # This name will be used for the internal or external linkage. - # In other words, if the user specifies "FoO|BaR", it will - # match any case combinations of 'foo' and 'bar', but if a global - # variable needs to be set, it will be $opt_FoO in the exact case - # as specified. - my $orig; - - my @names; - if ( defined $names ) { - @names = split (/\|/, $names); - $orig = $names[0]; - } - else { - @names = (''); - $orig = ''; - } - - # Construct the opctl entries. - my $entry; - if ( $spec eq '' || $spec eq '+' || $spec eq '!' ) { - # Fields are hard-wired here. - $entry = [$spec,$orig,undef,CTL_DEST_SCALAR,0,0]; - } - elsif ( $spec =~ /^:(-?\d+|\+)([@%])?$/ ) { - my $def = $1; - my $dest = $2; - my $type = $def eq '+' ? 'I' : 'i'; - $dest ||= '$'; - $dest = $dest eq '@' ? CTL_DEST_ARRAY - : $dest eq '%' ? CTL_DEST_HASH : CTL_DEST_SCALAR; - # Fields are hard-wired here. - $entry = [$type,$orig,$def eq '+' ? undef : $def, - $dest,0,1]; - } - else { - my ($mand, $type, $dest) = - $spec =~ /^([=:])([ionfs])([@%])?(\{(\d+)?(,)?(\d+)?\})?$/; - return (undef, "Cannot repeat while bundling: \"$opt\"\n") - if $bundling && defined($4); - my ($mi, $cm, $ma) = ($5, $6, $7); - return (undef, "{0} is useless in option spec: \"$opt\"\n") - if defined($mi) && !$mi && !defined($ma) && !defined($cm); - - $type = 'i' if $type eq 'n'; - $dest ||= '$'; - $dest = $dest eq '@' ? CTL_DEST_ARRAY - : $dest eq '%' ? CTL_DEST_HASH : CTL_DEST_SCALAR; - # Default minargs to 1/0 depending on mand status. - $mi = $mand eq '=' ? 1 : 0 unless defined $mi; - # Adjust mand status according to minargs. - $mand = $mi ? '=' : ':'; - # Adjust maxargs. - $ma = $mi ? $mi : 1 unless defined $ma || defined $cm; - return (undef, "Max must be greater than zero in option spec: \"$opt\"\n") - if defined($ma) && !$ma; - return (undef, "Max less than min in option spec: \"$opt\"\n") - if defined($ma) && $ma < $mi; - - # Fields are hard-wired here. - $entry = [$type,$orig,undef,$dest,$mi,$ma||-1]; - } - - # Process all names. First is canonical, the rest are aliases. - my $dups = ''; - foreach ( @names ) { - - $_ = lc ($_) - if $ignorecase > (($bundling && length($_) == 1) ? 1 : 0); - - if ( exists $opctl->{$_} ) { - $dups .= "Duplicate specification \"$opt\" for option \"$_\"\n"; - } - - if ( $spec eq '!' ) { - $opctl->{"no$_"} = $entry; - $opctl->{"no-$_"} = $entry; - $opctl->{$_} = [@$entry]; - $opctl->{$_}->[CTL_TYPE] = ''; - } - else { - $opctl->{$_} = $entry; - } - } - - if ( $dups && $^W ) { - foreach ( split(/\n+/, $dups) ) { - warn($_."\n"); - } - } - ($names[0], $orig); -} - -# Option lookup. -sub FindOption ($$$$$) { - - # returns (1, $opt, $ctl, $arg, $key) if okay, - # returns (1, undef) if option in error, - # returns (0) otherwise. - - my ($argv, $prefix, $argend, $opt, $opctl) = @_; - - print STDERR ("=> find \"$opt\"\n") if $debug; - - return (0) unless $opt =~ /^$prefix(.*)$/s; - return (0) if $opt eq "-" && !defined $opctl->{''}; - - $opt = $+; - my $starter = $1; - - print STDERR ("=> split \"$starter\"+\"$opt\"\n") if $debug; - - my $optarg; # value supplied with --opt=value - my $rest; # remainder from unbundling - - # If it is a long option, it may include the value. - # With getopt_compat, only if not bundling. - if ( ($starter=~/^$longprefix$/ - || ($getopt_compat && ($bundling == 0 || $bundling == 2))) - && $opt =~ /^([^=]+)=(.*)$/s ) { - $opt = $1; - $optarg = $2; - print STDERR ("=> option \"", $opt, - "\", optarg = \"$optarg\"\n") if $debug; - } - - #### Look it up ### - - my $tryopt = $opt; # option to try - - if ( $bundling && $starter eq '-' ) { - - # To try overrides, obey case ignore. - $tryopt = $ignorecase ? lc($opt) : $opt; - - # If bundling == 2, long options can override bundles. - if ( $bundling == 2 && length($tryopt) > 1 - && defined ($opctl->{$tryopt}) ) { - print STDERR ("=> $starter$tryopt overrides unbundling\n") - if $debug; - } - else { - $tryopt = $opt; - # Unbundle single letter option. - $rest = length ($tryopt) > 0 ? substr ($tryopt, 1) : ''; - $tryopt = substr ($tryopt, 0, 1); - $tryopt = lc ($tryopt) if $ignorecase > 1; - print STDERR ("=> $starter$tryopt unbundled from ", - "$starter$tryopt$rest\n") if $debug; - $rest = undef unless $rest ne ''; - } - } - - # Try auto-abbreviation. - elsif ( $autoabbrev && $opt ne "" ) { - # Sort the possible long option names. - my @names = sort(keys (%$opctl)); - # Downcase if allowed. - $opt = lc ($opt) if $ignorecase; - $tryopt = $opt; - # Turn option name into pattern. - my $pat = quotemeta ($opt); - # Look up in option names. - my @hits = grep (/^$pat/, @names); - print STDERR ("=> ", scalar(@hits), " hits (@hits) with \"$pat\" ", - "out of ", scalar(@names), "\n") if $debug; - - # Check for ambiguous results. - unless ( (@hits <= 1) || (grep ($_ eq $opt, @hits) == 1) ) { - # See if all matches are for the same option. - my %hit; - foreach ( @hits ) { - my $hit = $_; - $hit = $opctl->{$hit}->[CTL_CNAME] - if defined $opctl->{$hit}->[CTL_CNAME]; - $hit{$hit} = 1; - } - # Remove auto-supplied options (version, help). - if ( keys(%hit) == 2 ) { - if ( $auto_version && exists($hit{version}) ) { - delete $hit{version}; - } - elsif ( $auto_help && exists($hit{help}) ) { - delete $hit{help}; - } - } - # Now see if it really is ambiguous. - unless ( keys(%hit) == 1 ) { - return (0) if $passthrough; - warn ("Option ", $opt, " is ambiguous (", - join(", ", @hits), ")\n"); - $error++; - return (1, undef); - } - @hits = keys(%hit); - } - - # Complete the option name, if appropriate. - if ( @hits == 1 && $hits[0] ne $opt ) { - $tryopt = $hits[0]; - $tryopt = lc ($tryopt) if $ignorecase; - print STDERR ("=> option \"$opt\" -> \"$tryopt\"\n") - if $debug; - } - } - - # Map to all lowercase if ignoring case. - elsif ( $ignorecase ) { - $tryopt = lc ($opt); - } - - # Check validity by fetching the info. - my $ctl = $opctl->{$tryopt}; - unless ( defined $ctl ) { - return (0) if $passthrough; - # Pretend one char when bundling. - if ( $bundling == 1 && length($starter) == 1 ) { - $opt = substr($opt,0,1); - unshift (@$argv, $starter.$rest) if defined $rest; - } - if ( $opt eq "" ) { - warn ("Missing option after ", $starter, "\n"); - } - else { - warn ("Unknown option: ", $opt, "\n"); - } - $error++; - return (1, undef); - } - # Apparently valid. - $opt = $tryopt; - print STDERR ("=> found ", OptCtl($ctl), - " for \"", $opt, "\"\n") if $debug; - - #### Determine argument status #### - - # If it is an option w/o argument, we're almost finished with it. - my $type = $ctl->[CTL_TYPE]; - my $arg; - - if ( $type eq '' || $type eq '!' || $type eq '+' ) { - if ( defined $optarg ) { - return (0) if $passthrough; - warn ("Option ", $opt, " does not take an argument\n"); - $error++; - undef $opt; - } - elsif ( $type eq '' || $type eq '+' ) { - # Supply explicit value. - $arg = 1; - } - else { - $opt =~ s/^no-?//i; # strip NO prefix - $arg = 0; # supply explicit value - } - unshift (@$argv, $starter.$rest) if defined $rest; - return (1, $opt, $ctl, $arg); - } - - # Get mandatory status and type info. - my $mand = $ctl->[CTL_AMIN]; - - # Check if there is an option argument available. - if ( $gnu_compat && defined $optarg && $optarg eq '' ) { - return (1, $opt, $ctl, $type eq 's' ? '' : 0) ;#unless $mand; - $optarg = 0 unless $type eq 's'; - } - - # Check if there is an option argument available. - if ( defined $optarg - ? ($optarg eq '') - : !(defined $rest || @$argv > 0) ) { - # Complain if this option needs an argument. -# if ( $mand && !($type eq 's' ? defined($optarg) : 0) ) { - if ( $mand ) { - return (0) if $passthrough; - warn ("Option ", $opt, " requires an argument\n"); - $error++; - return (1, undef); - } - if ( $type eq 'I' ) { - # Fake incremental type. - my @c = @$ctl; - $c[CTL_TYPE] = '+'; - return (1, $opt, \@c, 1); - } - return (1, $opt, $ctl, - defined($ctl->[CTL_DEFAULT]) ? $ctl->[CTL_DEFAULT] : - $type eq 's' ? '' : 0); - } - - # Get (possibly optional) argument. - $arg = (defined $rest ? $rest - : (defined $optarg ? $optarg : shift (@$argv))); - - # Get key if this is a "name=value" pair for a hash option. - my $key; - if ($ctl->[CTL_DEST] == CTL_DEST_HASH && defined $arg) { - ($key, $arg) = ($arg =~ /^([^=]*)=(.*)$/s) ? ($1, $2) - : ($arg, defined($ctl->[CTL_DEFAULT]) ? $ctl->[CTL_DEFAULT] : - ($mand ? undef : ($type eq 's' ? "" : 1))); - if (! defined $arg) { - warn ("Option $opt, key \"$key\", requires a value\n"); - $error++; - # Push back. - unshift (@$argv, $starter.$rest) if defined $rest; - return (1, undef); - } - } - - #### Check if the argument is valid for this option #### - - my $key_valid = $ctl->[CTL_DEST] == CTL_DEST_HASH ? "[^=]+=" : ""; - - if ( $type eq 's' ) { # string - # A mandatory string takes anything. - return (1, $opt, $ctl, $arg, $key) if $mand; - - # Same for optional string as a hash value - return (1, $opt, $ctl, $arg, $key) - if $ctl->[CTL_DEST] == CTL_DEST_HASH; - - # An optional string takes almost anything. - return (1, $opt, $ctl, $arg, $key) - if defined $optarg || defined $rest; - return (1, $opt, $ctl, $arg, $key) if $arg eq "-"; # ?? - - # Check for option or option list terminator. - if ($arg eq $argend || - $arg =~ /^$prefix.+/) { - # Push back. - unshift (@$argv, $arg); - # Supply empty value. - $arg = ''; - } - } - - elsif ( $type eq 'i' # numeric/integer - || $type eq 'I' # numeric/integer w/ incr default - || $type eq 'o' ) { # dec/oct/hex/bin value - - my $o_valid = $type eq 'o' ? PAT_XINT : PAT_INT; - - if ( $bundling && defined $rest - && $rest =~ /^($key_valid)($o_valid)(.*)$/si ) { - ($key, $arg, $rest) = ($1, $2, $+); - chop($key) if $key; - $arg = ($type eq 'o' && $arg =~ /^0/) ? oct($arg) : 0+$arg; - unshift (@$argv, $starter.$rest) if defined $rest && $rest ne ''; - } - elsif ( $arg =~ /^$o_valid$/si ) { - $arg =~ tr/_//d; - $arg = ($type eq 'o' && $arg =~ /^0/) ? oct($arg) : 0+$arg; - } - else { - if ( defined $optarg || $mand ) { - if ( $passthrough ) { - unshift (@$argv, defined $rest ? $starter.$rest : $arg) - unless defined $optarg; - return (0); - } - warn ("Value \"", $arg, "\" invalid for option ", - $opt, " (", - $type eq 'o' ? "extended " : '', - "number expected)\n"); - $error++; - # Push back. - unshift (@$argv, $starter.$rest) if defined $rest; - return (1, undef); - } - else { - # Push back. - unshift (@$argv, defined $rest ? $starter.$rest : $arg); - if ( $type eq 'I' ) { - # Fake incremental type. - my @c = @$ctl; - $c[CTL_TYPE] = '+'; - return (1, $opt, \@c, 1); - } - # Supply default value. - $arg = defined($ctl->[CTL_DEFAULT]) ? $ctl->[CTL_DEFAULT] : 0; - } - } - } - - elsif ( $type eq 'f' ) { # real number, int is also ok - # We require at least one digit before a point or 'e', - # and at least one digit following the point and 'e'. - # [-]NN[.NN][eNN] - my $o_valid = PAT_FLOAT; - if ( $bundling && defined $rest && - $rest =~ /^($key_valid)($o_valid)(.*)$/s ) { - $arg =~ tr/_//d; - ($key, $arg, $rest) = ($1, $2, $+); - chop($key) if $key; - unshift (@$argv, $starter.$rest) if defined $rest && $rest ne ''; - } - elsif ( $arg =~ /^$o_valid$/ ) { - $arg =~ tr/_//d; - } - else { - if ( defined $optarg || $mand ) { - if ( $passthrough ) { - unshift (@$argv, defined $rest ? $starter.$rest : $arg) - unless defined $optarg; - return (0); - } - warn ("Value \"", $arg, "\" invalid for option ", - $opt, " (real number expected)\n"); - $error++; - # Push back. - unshift (@$argv, $starter.$rest) if defined $rest; - return (1, undef); - } - else { - # Push back. - unshift (@$argv, defined $rest ? $starter.$rest : $arg); - # Supply default value. - $arg = 0.0; - } - } - } - else { - die("Getopt::Long internal error (Can't happen)\n"); - } - return (1, $opt, $ctl, $arg, $key); -} - -sub ValidValue ($$$$$) { - my ($ctl, $arg, $mand, $argend, $prefix) = @_; - - if ( $ctl->[CTL_DEST] == CTL_DEST_HASH ) { - return 0 unless $arg =~ /[^=]+=(.*)/; - $arg = $1; - } - - my $type = $ctl->[CTL_TYPE]; - - if ( $type eq 's' ) { # string - # A mandatory string takes anything. - return (1) if $mand; - - return (1) if $arg eq "-"; - - # Check for option or option list terminator. - return 0 if $arg eq $argend || $arg =~ /^$prefix.+/; - return 1; - } - - elsif ( $type eq 'i' # numeric/integer - || $type eq 'I' # numeric/integer w/ incr default - || $type eq 'o' ) { # dec/oct/hex/bin value - - my $o_valid = $type eq 'o' ? PAT_XINT : PAT_INT; - return $arg =~ /^$o_valid$/si; - } - - elsif ( $type eq 'f' ) { # real number, int is also ok - # We require at least one digit before a point or 'e', - # and at least one digit following the point and 'e'. - # [-]NN[.NN][eNN] - my $o_valid = PAT_FLOAT; - return $arg =~ /^$o_valid$/; - } - die("ValidValue: Cannot happen\n"); -} - -# Getopt::Long Configuration. -sub Configure (@) { - my (@options) = @_; - - my $prevconfig = - [ $error, $debug, $major_version, $minor_version, - $autoabbrev, $getopt_compat, $ignorecase, $bundling, $order, - $gnu_compat, $passthrough, $genprefix, $auto_version, $auto_help, - $longprefix ]; - - if ( ref($options[0]) eq 'ARRAY' ) { - ( $error, $debug, $major_version, $minor_version, - $autoabbrev, $getopt_compat, $ignorecase, $bundling, $order, - $gnu_compat, $passthrough, $genprefix, $auto_version, $auto_help, - $longprefix ) = @{shift(@options)}; - } - - my $opt; - foreach $opt ( @options ) { - my $try = lc ($opt); - my $action = 1; - if ( $try =~ /^no_?(.*)$/s ) { - $action = 0; - $try = $+; - } - if ( ($try eq 'default' or $try eq 'defaults') && $action ) { - ConfigDefaults (); - } - elsif ( ($try eq 'posix_default' or $try eq 'posix_defaults') ) { - local $ENV{POSIXLY_CORRECT}; - $ENV{POSIXLY_CORRECT} = 1 if $action; - ConfigDefaults (); - } - elsif ( $try eq 'auto_abbrev' or $try eq 'autoabbrev' ) { - $autoabbrev = $action; - } - elsif ( $try eq 'getopt_compat' ) { - $getopt_compat = $action; - $genprefix = $action ? "(--|-|\\+)" : "(--|-)"; - } - elsif ( $try eq 'gnu_getopt' ) { - if ( $action ) { - $gnu_compat = 1; - $bundling = 1; - $getopt_compat = 0; - $genprefix = "(--|-)"; - $order = $PERMUTE; - } - } - elsif ( $try eq 'gnu_compat' ) { - $gnu_compat = $action; - } - elsif ( $try =~ /^(auto_?)?version$/ ) { - $auto_version = $action; - } - elsif ( $try =~ /^(auto_?)?help$/ ) { - $auto_help = $action; - } - elsif ( $try eq 'ignorecase' or $try eq 'ignore_case' ) { - $ignorecase = $action; - } - elsif ( $try eq 'ignorecase_always' or $try eq 'ignore_case_always' ) { - $ignorecase = $action ? 2 : 0; - } - elsif ( $try eq 'bundling' ) { - $bundling = $action; - } - elsif ( $try eq 'bundling_override' ) { - $bundling = $action ? 2 : 0; - } - elsif ( $try eq 'require_order' ) { - $order = $action ? $REQUIRE_ORDER : $PERMUTE; - } - elsif ( $try eq 'permute' ) { - $order = $action ? $PERMUTE : $REQUIRE_ORDER; - } - elsif ( $try eq 'pass_through' or $try eq 'passthrough' ) { - $passthrough = $action; - } - elsif ( $try =~ /^prefix=(.+)$/ && $action ) { - $genprefix = $1; - # Turn into regexp. Needs to be parenthesized! - $genprefix = "(" . quotemeta($genprefix) . ")"; - eval { '' =~ /$genprefix/; }; - die("Getopt::Long: invalid pattern \"$genprefix\"") if $@; - } - elsif ( $try =~ /^prefix_pattern=(.+)$/ && $action ) { - $genprefix = $1; - # Parenthesize if needed. - $genprefix = "(" . $genprefix . ")" - unless $genprefix =~ /^\(.*\)$/; - eval { '' =~ m"$genprefix"; }; - die("Getopt::Long: invalid pattern \"$genprefix\"") if $@; - } - elsif ( $try =~ /^long_prefix_pattern=(.+)$/ && $action ) { - $longprefix = $1; - # Parenthesize if needed. - $longprefix = "(" . $longprefix . ")" - unless $longprefix =~ /^\(.*\)$/; - eval { '' =~ m"$longprefix"; }; - die("Getopt::Long: invalid long prefix pattern \"$longprefix\"") if $@; - } - elsif ( $try eq 'debug' ) { - $debug = $action; - } - else { - die("Getopt::Long: unknown config parameter \"$opt\"") - } - } - $prevconfig; -} - -# Deprecated name. -sub config (@) { - Configure (@_); -} - -# Issue a standard message for --version. -# -# The arguments are mostly the same as for Pod::Usage::pod2usage: -# -# - a number (exit value) -# - a string (lead in message) -# - a hash with options. See Pod::Usage for details. -# -sub VersionMessage(@) { - # Massage args. - my $pa = setup_pa_args("version", @_); - - my $v = $main::VERSION; - my $fh = $pa->{-output} || - ($pa->{-exitval} eq "NOEXIT" || $pa->{-exitval} < 2) ? \*STDOUT : \*STDERR; - - print $fh (defined($pa->{-message}) ? $pa->{-message} : (), - $0, defined $v ? " version $v" : (), - "\n", - "(", __PACKAGE__, "::", "GetOptions", - " version ", - defined($Getopt::Long::VERSION_STRING) - ? $Getopt::Long::VERSION_STRING : $VERSION, ";", - " Perl version ", - $] >= 5.006 ? sprintf("%vd", $^V) : $], - ")\n"); - exit($pa->{-exitval}) unless $pa->{-exitval} eq "NOEXIT"; -} - -# Issue a standard message for --help. -# -# The arguments are the same as for Pod::Usage::pod2usage: -# -# - a number (exit value) -# - a string (lead in message) -# - a hash with options. See Pod::Usage for details. -# -sub HelpMessage(@) { - eval { - require Pod::Usage; - import Pod::Usage; - 1; - } || die("Cannot provide help: cannot load Pod::Usage\n"); - - # Note that pod2usage will issue a warning if -exitval => NOEXIT. - pod2usage(setup_pa_args("help", @_)); - -} - -# Helper routine to set up a normalized hash ref to be used as -# argument to pod2usage. -sub setup_pa_args($@) { - my $tag = shift; # who's calling - - # If called by direct binding to an option, it will get the option - # name and value as arguments. Remove these, if so. - @_ = () if @_ == 2 && $_[0] eq $tag; - - my $pa; - if ( @_ > 1 ) { - $pa = { @_ }; - } - else { - $pa = shift || {}; - } - - # At this point, $pa can be a number (exit value), string - # (message) or hash with options. - - if ( UNIVERSAL::isa($pa, 'HASH') ) { - # Get rid of -msg vs. -message ambiguity. - $pa->{-message} = $pa->{-msg}; - delete($pa->{-msg}); - } - elsif ( $pa =~ /^-?\d+$/ ) { - $pa = { -exitval => $pa }; - } - else { - $pa = { -message => $pa }; - } - - # These are _our_ defaults. - $pa->{-verbose} = 0 unless exists($pa->{-verbose}); - $pa->{-exitval} = 0 unless exists($pa->{-exitval}); - $pa; -} - -# Sneak way to know what version the user requested. -sub VERSION { - $requested_version = $_[1]; - shift->SUPER::VERSION(@_); -} - -package Getopt::Long::CallBack; - -sub new { - my ($pkg, %atts) = @_; - bless { %atts }, $pkg; -} - -sub name { - my $self = shift; - ''.$self->{name}; -} - -use overload - # Treat this object as an ordinary string for legacy API. - '""' => \&name, - fallback => 1; - -1; - -################ Documentation ################ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/IPC/Open2.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/IPC/Open2.pm deleted file mode 100644 index 358a21e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/IPC/Open2.pm +++ /dev/null @@ -1,39 +0,0 @@ -package IPC::Open2; - -use strict; -our ($VERSION, @ISA, @EXPORT); - -require 5.000; -require Exporter; - -$VERSION = 1.03; -@ISA = qw(Exporter); -@EXPORT = qw(open2); - -# &open2: tom christiansen, <tchrist@convex.com> -# -# usage: $pid = open2('rdr', 'wtr', 'some cmd and args'); -# or $pid = open2('rdr', 'wtr', 'some', 'cmd', 'and', 'args'); -# -# spawn the given $cmd and connect $rdr for -# reading and $wtr for writing. return pid -# of child, or 0 on failure. -# -# WARNING: this is dangerous, as you may block forever -# unless you are very careful. -# -# $wtr is left unbuffered. -# -# abort program if -# rdr or wtr are null -# a system call fails - -require IPC::Open3; - -sub open2 { - local $Carp::CarpLevel = $Carp::CarpLevel + 1; - return IPC::Open3::_open3('open2', scalar caller, - $_[1], $_[0], '>&STDERR', @_[2 .. $#_]); -} - -1 diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/IPC/Open3.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/IPC/Open3.pm deleted file mode 100644 index 3cdc496..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/IPC/Open3.pm +++ /dev/null @@ -1,274 +0,0 @@ -package IPC::Open3; - -use strict; -no strict 'refs'; # because users pass me bareword filehandles -our ($VERSION, @ISA, @EXPORT); - -require Exporter; - -use Carp; -use Symbol qw(gensym qualify); - -$VERSION = 1.04; -@ISA = qw(Exporter); -@EXPORT = qw(open3); - -# &open3: Marc Horowitz <marc@mit.edu> -# derived mostly from &open2 by tom christiansen, <tchrist@convex.com> -# fixed for 5.001 by Ulrich Kunitz <kunitz@mai-koeln.com> -# ported to Win32 by Ron Schmidt, Merrill Lynch almost ended my career -# fixed for autovivving FHs, tchrist again -# allow fd numbers to be used, by Frank Tobin -# allow '-' as command (c.f. open "-|"), by Adam Spiers <perl@adamspiers.org> -# -# $Id: open3.pl,v 1.1 1993/11/23 06:26:15 marc Exp $ -# -# usage: $pid = open3('wtr', 'rdr', 'err' 'some cmd and args', 'optarg', ...); -# -# spawn the given $cmd and connect rdr for -# reading, wtr for writing, and err for errors. -# if err is '', or the same as rdr, then stdout and -# stderr of the child are on the same fh. returns pid -# of child (or dies on failure). - -# if wtr begins with '<&', then wtr will be closed in the parent, and -# the child will read from it directly. if rdr or err begins with -# '>&', then the child will send output directly to that fd. In both -# cases, there will be a dup() instead of a pipe() made. - -# WARNING: this is dangerous, as you may block forever -# unless you are very careful. -# -# $wtr is left unbuffered. -# -# abort program if -# rdr or wtr are null -# a system call fails - -our $Me = 'open3 (bug)'; # you should never see this, it's always localized - -# Fatal.pm needs to be fixed WRT prototypes. - -sub xfork { - my $pid = fork; - defined $pid or croak "$Me: fork failed: $!"; - return $pid; -} - -sub xpipe { - pipe $_[0], $_[1] or croak "$Me: pipe($_[0], $_[1]) failed: $!"; -} - -# I tried using a * prototype character for the filehandle but it still -# disallows a bearword while compiling under strict subs. - -sub xopen { - open $_[0], $_[1] or croak "$Me: open($_[0], $_[1]) failed: $!"; -} - -sub xclose { - close $_[0] or croak "$Me: close($_[0]) failed: $!"; -} - -sub fh_is_fd { - return $_[0] =~ /\A=?(\d+)\z/; -} - -sub xfileno { - return $1 if $_[0] =~ /\A=?(\d+)\z/; # deal with fh just being an fd - return fileno $_[0]; -} - -my $do_spawn = $^O eq 'os2' || $^O eq 'MSWin32'; - -sub _open3 { - local $Me = shift; - my($package, $dad_wtr, $dad_rdr, $dad_err, @cmd) = @_; - my($dup_wtr, $dup_rdr, $dup_err, $kidpid); - - if (@cmd > 1 and $cmd[0] eq '-') { - croak "Arguments don't make sense when the command is '-'" - } - - # simulate autovivification of filehandles because - # it's too ugly to use @_ throughout to make perl do it for us - # tchrist 5-Mar-00 - - unless (eval { - $dad_wtr = $_[1] = gensym unless defined $dad_wtr && length $dad_wtr; - $dad_rdr = $_[2] = gensym unless defined $dad_rdr && length $dad_rdr; - 1; }) - { - # must strip crud for croak to add back, or looks ugly - $@ =~ s/(?<=value attempted) at .*//s; - croak "$Me: $@"; - } - - $dad_err ||= $dad_rdr; - - $dup_wtr = ($dad_wtr =~ s/^[<>]&//); - $dup_rdr = ($dad_rdr =~ s/^[<>]&//); - $dup_err = ($dad_err =~ s/^[<>]&//); - - # force unqualified filehandles into caller's package - $dad_wtr = qualify $dad_wtr, $package unless fh_is_fd($dad_wtr); - $dad_rdr = qualify $dad_rdr, $package unless fh_is_fd($dad_rdr); - $dad_err = qualify $dad_err, $package unless fh_is_fd($dad_err); - - my $kid_rdr = gensym; - my $kid_wtr = gensym; - my $kid_err = gensym; - - xpipe $kid_rdr, $dad_wtr if !$dup_wtr; - xpipe $dad_rdr, $kid_wtr if !$dup_rdr; - xpipe $dad_err, $kid_err if !$dup_err && $dad_err ne $dad_rdr; - - $kidpid = $do_spawn ? -1 : xfork; - if ($kidpid == 0) { # Kid - # A tie in the parent should not be allowed to cause problems. - untie *STDIN; - untie *STDOUT; - # If she wants to dup the kid's stderr onto her stdout I need to - # save a copy of her stdout before I put something else there. - if ($dad_rdr ne $dad_err && $dup_err - && xfileno($dad_err) == fileno(STDOUT)) { - my $tmp = gensym; - xopen($tmp, ">&$dad_err"); - $dad_err = $tmp; - } - - if ($dup_wtr) { - xopen \*STDIN, "<&$dad_wtr" if fileno(STDIN) != xfileno($dad_wtr); - } else { - xclose $dad_wtr; - xopen \*STDIN, "<&=" . fileno $kid_rdr; - } - if ($dup_rdr) { - xopen \*STDOUT, ">&$dad_rdr" if fileno(STDOUT) != xfileno($dad_rdr); - } else { - xclose $dad_rdr; - xopen \*STDOUT, ">&=" . fileno $kid_wtr; - } - if ($dad_rdr ne $dad_err) { - if ($dup_err) { - # I have to use a fileno here because in this one case - # I'm doing a dup but the filehandle might be a reference - # (from the special case above). - xopen \*STDERR, ">&" . xfileno($dad_err) - if fileno(STDERR) != xfileno($dad_err); - } else { - xclose $dad_err; - xopen \*STDERR, ">&=" . fileno $kid_err; - } - } else { - xopen \*STDERR, ">&STDOUT" if fileno(STDERR) != fileno(STDOUT); - } - return 0 if ($cmd[0] eq '-'); - local($")=(" "); - exec @cmd or do { - carp "$Me: exec of @cmd failed"; - eval { require POSIX; POSIX::_exit(255); }; - exit 255; - }; - } elsif ($do_spawn) { - # All the bookkeeping of coincidence between handles is - # handled in spawn_with_handles. - - my @close; - if ($dup_wtr) { - $kid_rdr = \*{$dad_wtr}; - push @close, $kid_rdr; - } else { - push @close, \*{$dad_wtr}, $kid_rdr; - } - if ($dup_rdr) { - $kid_wtr = \*{$dad_rdr}; - push @close, $kid_wtr; - } else { - push @close, \*{$dad_rdr}, $kid_wtr; - } - if ($dad_rdr ne $dad_err) { - if ($dup_err) { - $kid_err = \*{$dad_err}; - push @close, $kid_err; - } else { - push @close, \*{$dad_err}, $kid_err; - } - } else { - $kid_err = $kid_wtr; - } - require IO::Pipe; - $kidpid = eval { - spawn_with_handles( [ { mode => 'r', - open_as => $kid_rdr, - handle => \*STDIN }, - { mode => 'w', - open_as => $kid_wtr, - handle => \*STDOUT }, - { mode => 'w', - open_as => $kid_err, - handle => \*STDERR }, - ], \@close, @cmd); - }; - die "$Me: $@" if $@; - } - - xclose $kid_rdr if !$dup_wtr; - xclose $kid_wtr if !$dup_rdr; - xclose $kid_err if !$dup_err && $dad_rdr ne $dad_err; - # If the write handle is a dup give it away entirely, close my copy - # of it. - xclose $dad_wtr if $dup_wtr; - - select((select($dad_wtr), $| = 1)[0]); # unbuffer pipe - $kidpid; -} - -sub open3 { - if (@_ < 4) { - local $" = ', '; - croak "open3(@_): not enough arguments"; - } - return _open3 'open3', scalar caller, @_ -} - -sub spawn_with_handles { - my $fds = shift; # Fields: handle, mode, open_as - my $close_in_child = shift; - my ($fd, $pid, @saved_fh, $saved, %saved, @errs); - require Fcntl; - - foreach $fd (@$fds) { - $fd->{tmp_copy} = IO::Handle->new_from_fd($fd->{handle}, $fd->{mode}); - $saved{fileno $fd->{handle}} = $fd->{tmp_copy}; - } - foreach $fd (@$fds) { - bless $fd->{handle}, 'IO::Handle' - unless eval { $fd->{handle}->isa('IO::Handle') } ; - # If some of handles to redirect-to coincide with handles to - # redirect, we need to use saved variants: - $fd->{handle}->fdopen($saved{fileno $fd->{open_as}} || $fd->{open_as}, - $fd->{mode}); - } - unless ($^O eq 'MSWin32') { - # Stderr may be redirected below, so we save the err text: - foreach $fd (@$close_in_child) { - fcntl($fd, Fcntl::F_SETFD(), 1) or push @errs, "fcntl $fd: $!" - unless $saved{fileno $fd}; # Do not close what we redirect! - } - } - - unless (@errs) { - $pid = eval { system 1, @_ }; # 1 == P_NOWAIT - push @errs, "IO::Pipe: Can't spawn-NOWAIT: $!" if !$pid || $pid < 0; - } - - foreach $fd (@$fds) { - $fd->{handle}->fdopen($fd->{tmp_copy}, $fd->{mode}); - $fd->{tmp_copy}->close or croak "Can't close: $!"; - } - croak join "\n", @errs if @errs; - return $pid; -} - -1; # so require is happy diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/SelectSaver.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/SelectSaver.pm deleted file mode 100644 index 4ccb837..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/SelectSaver.pm +++ /dev/null @@ -1,22 +0,0 @@ -package SelectSaver; - -our $VERSION = '1.02'; - -require 5.000; -use Carp; -use Symbol; - -sub new { - @_ >= 1 && @_ <= 2 or croak 'usage: SelectSaver->new( [FILEHANDLE] )'; - my $fh = select; - my $self = bless \$fh, $_[0]; - select qualify($_[1], caller) if @_ > 1; - $self; -} - -sub DESTROY { - my $self = $_[0]; - select $$self; -} - -1; diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/Symbol.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/Symbol.pm deleted file mode 100644 index 72ef599..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/Symbol.pm +++ /dev/null @@ -1,91 +0,0 @@ -package Symbol; - -BEGIN { require 5.005; } - -require Exporter; -@ISA = qw(Exporter); -@EXPORT = qw(gensym ungensym qualify qualify_to_ref); -@EXPORT_OK = qw(delete_package geniosym); - -$VERSION = '1.07'; - -my $genpkg = "Symbol::"; -my $genseq = 0; - -my %global = map {$_ => 1} qw(ARGV ARGVOUT ENV INC SIG STDERR STDIN STDOUT); - -# -# Note that we never _copy_ the glob; we just make a ref to it. -# If we did copy it, then SVf_FAKE would be set on the copy, and -# glob-specific behaviors (e.g. C<*$ref = \&func>) wouldn't work. -# -sub gensym () { - my $name = "GEN" . $genseq++; - my $ref = \*{$genpkg . $name}; - delete $$genpkg{$name}; - $ref; -} - -sub geniosym () { - my $sym = gensym(); - # force the IO slot to be filled - select(select $sym); - *$sym{IO}; -} - -sub ungensym ($) {} - -sub qualify ($;$) { - my ($name) = @_; - if (!ref($name) && index($name, '::') == -1 && index($name, "'") == -1) { - my $pkg; - # Global names: special character, "^xyz", or other. - if ($name =~ /^(([^a-z])|(\^[a-z_]+))\z/i || $global{$name}) { - # RGS 2001-11-05 : translate leading ^X to control-char - $name =~ s/^\^([a-z_])/'qq(\c'.$1.')'/eei; - $pkg = "main"; - } - else { - $pkg = (@_ > 1) ? $_[1] : caller; - } - $name = $pkg . "::" . $name; - } - $name; -} - -sub qualify_to_ref ($;$) { - return \*{ qualify $_[0], @_ > 1 ? $_[1] : caller }; -} - -# -# of Safe.pm lineage -# -sub delete_package ($) { - my $pkg = shift; - - # expand to full symbol table name if needed - - unless ($pkg =~ /^main::.*::$/) { - $pkg = "main$pkg" if $pkg =~ /^::/; - $pkg = "main::$pkg" unless $pkg =~ /^main::/; - $pkg .= '::' unless $pkg =~ /::$/; - } - - my($stem, $leaf) = $pkg =~ m/(.*::)(\w+::)$/; - my $stem_symtab = *{$stem}{HASH}; - return unless defined $stem_symtab and exists $stem_symtab->{$leaf}; - - # free all the symbols in the package - - my $leaf_symtab = *{$stem_symtab->{$leaf}}{HASH}; - foreach my $name (keys %$leaf_symtab) { - undef *{$pkg . $name}; - } - - # delete the symbol table - - %$leaf_symtab = (); - delete $stem_symtab->{$leaf}; -} - -1; diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/Text/ParseWords.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/Text/ParseWords.pm deleted file mode 100644 index 1b7312a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/Text/ParseWords.pm +++ /dev/null @@ -1,166 +0,0 @@ -package Text::ParseWords; - -use strict; -require 5.006; -our $VERSION = "3.27"; - -use Exporter; -our @ISA = qw(Exporter); -our @EXPORT = qw(shellwords quotewords nested_quotewords parse_line); -our @EXPORT_OK = qw(old_shellwords); -our $PERL_SINGLE_QUOTE; - -sub shellwords { - my (@lines) = @_; - my @allwords; - - foreach my $line (@lines) { - $line =~ s/^\s+//; - my @words = parse_line('\s+', 0, $line); - pop @words if (@words and !defined $words[-1]); - return() unless (@words || !length($line)); - push(@allwords, @words); - } - return(@allwords); -} - -sub quotewords { - my($delim, $keep, @lines) = @_; - my($line, @words, @allwords); - - foreach $line (@lines) { - @words = parse_line($delim, $keep, $line); - return() unless (@words || !length($line)); - push(@allwords, @words); - } - return(@allwords); -} - -sub nested_quotewords { - my($delim, $keep, @lines) = @_; - my($i, @allwords); - - for ($i = 0; $i < @lines; $i++) { - @{$allwords[$i]} = parse_line($delim, $keep, $lines[$i]); - return() unless (@{$allwords[$i]} || !length($lines[$i])); - } - return(@allwords); -} - -sub parse_line { - my($delimiter, $keep, $line) = @_; - my($word, @pieces); - - no warnings 'uninitialized'; # we will be testing undef strings - - while (length($line)) { - # This pattern is optimised to be stack conservative on older perls. - # Do not refactor without being careful and testing it on very long strings. - # See Perl bug #42980 for an example of a stack busting input. - $line =~ s/^ - (?: - # double quoted string - (") # $quote - ((?>[^\\"]*(?:\\.[^\\"]*)*))" # $quoted - | # --OR-- - # singe quoted string - (') # $quote - ((?>[^\\']*(?:\\.[^\\']*)*))' # $quoted - | # --OR-- - # unquoted string - ( # $unquoted - (?:\\.|[^\\"'])*? - ) - # followed by - ( # $delim - \Z(?!\n) # EOL - | # --OR-- - (?-x:$delimiter) # delimiter - | # --OR-- - (?!^)(?=["']) # a quote - ) - )//xs or return; # extended layout - my ($quote, $quoted, $unquoted, $delim) = (($1 ? ($1,$2) : ($3,$4)), $5, $6); - - return() unless( defined($quote) || length($unquoted) || length($delim)); - - if ($keep) { - $quoted = "$quote$quoted$quote"; - } - else { - $unquoted =~ s/\\(.)/$1/sg; - if (defined $quote) { - $quoted =~ s/\\(.)/$1/sg if ($quote eq '"'); - $quoted =~ s/\\([\\'])/$1/g if ( $PERL_SINGLE_QUOTE && $quote eq "'"); - } - } - $word .= substr($line, 0, 0); # leave results tainted - $word .= defined $quote ? $quoted : $unquoted; - - if (length($delim)) { - push(@pieces, $word); - push(@pieces, $delim) if ($keep eq 'delimiters'); - undef $word; - } - if (!length($line)) { - push(@pieces, $word); - } - } - return(@pieces); -} - -sub old_shellwords { - - # Usage: - # use ParseWords; - # @words = old_shellwords($line); - # or - # @words = old_shellwords(@lines); - # or - # @words = old_shellwords(); # defaults to $_ (and clobbers it) - - no warnings 'uninitialized'; # we will be testing undef strings - local *_ = \join('', @_) if @_; - my (@words, $snippet); - - s/\A\s+//; - while ($_ ne '') { - my $field = substr($_, 0, 0); # leave results tainted - for (;;) { - if (s/\A"(([^"\\]|\\.)*)"//s) { - ($snippet = $1) =~ s#\\(.)#$1#sg; - } - elsif (/\A"/) { - require Carp; - Carp::carp("Unmatched double quote: $_"); - return(); - } - elsif (s/\A'(([^'\\]|\\.)*)'//s) { - ($snippet = $1) =~ s#\\(.)#$1#sg; - } - elsif (/\A'/) { - require Carp; - Carp::carp("Unmatched single quote: $_"); - return(); - } - elsif (s/\A\\(.?)//s) { - $snippet = $1; - } - elsif (s/\A([^\s\\'"]+)//) { - $snippet = $1; - } - else { - s/\A\s+//; - last; - } - $field .= $snippet; - } - push(@words, $field); - } - return @words; -} - -1; - -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/Text/Tabs.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/Text/Tabs.pm deleted file mode 100644 index b20d98b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/Text/Tabs.pm +++ /dev/null @@ -1,89 +0,0 @@ -package Text::Tabs; - -require Exporter; - -@ISA = (Exporter); -@EXPORT = qw(expand unexpand $tabstop); - -use vars qw($VERSION $tabstop $debug); -$VERSION = 2009.0305; - -use strict; - -BEGIN { - $tabstop = 8; - $debug = 0; -} - -sub expand { - my @l; - my $pad; - for ( @_ ) { - my $s = ''; - for (split(/^/m, $_, -1)) { - my $offs = 0; - s{\t}{ - $pad = $tabstop - (pos() + $offs) % $tabstop; - $offs += $pad - 1; - " " x $pad; - }eg; - $s .= $_; - } - push(@l, $s); - } - return @l if wantarray; - return $l[0]; -} - -sub unexpand -{ - my (@l) = @_; - my @e; - my $x; - my $line; - my @lines; - my $lastbit; - my $ts_as_space = " "x$tabstop; - for $x (@l) { - @lines = split("\n", $x, -1); - for $line (@lines) { - $line = expand($line); - @e = split(/(.{$tabstop})/,$line,-1); - $lastbit = pop(@e); - $lastbit = '' - unless defined $lastbit; - $lastbit = "\t" - if $lastbit eq $ts_as_space; - for $_ (@e) { - if ($debug) { - my $x = $_; - $x =~ s/\t/^I\t/gs; - print "sub on '$x'\n"; - } - s/ +$/\t/; - } - $line = join('',@e, $lastbit); - } - $x = join("\n", @lines); - } - return @l if wantarray; - return $l[0]; -} - -1; -__END__ - -sub expand -{ - my (@l) = @_; - for $_ (@l) { - 1 while s/(^|\n)([^\t\n]*)(\t+)/ - $1. $2 . (" " x - ($tabstop * length($3) - - (length($2) % $tabstop))) - /sex; - } - return @l if wantarray; - return $l[0]; -} - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/Text/Wrap.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/Text/Wrap.pm deleted file mode 100644 index 72551c4..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/Text/Wrap.pm +++ /dev/null @@ -1,122 +0,0 @@ -package Text::Wrap; - -use warnings::register; -require Exporter; - -@ISA = qw(Exporter); -@EXPORT = qw(wrap fill); -@EXPORT_OK = qw($columns $break $huge); - -$VERSION = 2009.0305; - -use vars qw($VERSION $columns $debug $break $huge $unexpand $tabstop - $separator $separator2); -use strict; - -BEGIN { - $columns = 76; # <= screen width - $debug = 0; - $break = '\s'; - $huge = 'wrap'; # alternatively: 'die' or 'overflow' - $unexpand = 1; - $tabstop = 8; - $separator = "\n"; - $separator2 = undef; -} - -use Text::Tabs qw(expand unexpand); - -sub wrap -{ - my ($ip, $xp, @t) = @_; - - local($Text::Tabs::tabstop) = $tabstop; - my $r = ""; - my $tail = pop(@t); - my $t = expand(join("", (map { /\s+\z/ ? ( $_ ) : ($_, ' ') } @t), $tail)); - my $lead = $ip; - my $nll = $columns - length(expand($xp)) - 1; - if ($nll <= 0 && $xp ne '') { - my $nc = length(expand($xp)) + 2; - warnings::warnif "Increasing \$Text::Wrap::columns from $columns to $nc to accommodate length of subsequent tab"; - $columns = $nc; - $nll = 1; - } - my $ll = $columns - length(expand($ip)) - 1; - $ll = 0 if $ll < 0; - my $nl = ""; - my $remainder = ""; - - use re 'taint'; - - pos($t) = 0; - while ($t !~ /\G(?:$break)*\Z/gc) { - if ($t =~ /\G([^\n]{0,$ll})($break|\n+|\z)/xmgc) { - $r .= $unexpand - ? unexpand($nl . $lead . $1) - : $nl . $lead . $1; - $remainder = $2; - } elsif ($huge eq 'wrap' && $t =~ /\G([^\n]{$ll})/gc) { - $r .= $unexpand - ? unexpand($nl . $lead . $1) - : $nl . $lead . $1; - $remainder = defined($separator2) ? $separator2 : $separator; - } elsif ($huge eq 'overflow' && $t =~ /\G([^\n]*?)($break|\n+|\z)/xmgc) { - $r .= $unexpand - ? unexpand($nl . $lead . $1) - : $nl . $lead . $1; - $remainder = $2; - } elsif ($huge eq 'die') { - die "couldn't wrap '$t'"; - } elsif ($columns < 2) { - warnings::warnif "Increasing \$Text::Wrap::columns from $columns to 2"; - $columns = 2; - return ($ip, $xp, @t); - } else { - die "This shouldn't happen"; - } - - $lead = $xp; - $ll = $nll; - $nl = defined($separator2) - ? ($remainder eq "\n" - ? "\n" - : $separator2) - : $separator; - } - $r .= $remainder; - - print "-----------$r---------\n" if $debug; - - print "Finish up with '$lead'\n" if $debug; - - $r .= $lead . substr($t, pos($t), length($t)-pos($t)) - if pos($t) ne length($t); - - print "-----------$r---------\n" if $debug;; - - return $r; -} - -sub fill -{ - my ($ip, $xp, @raw) = @_; - my @para; - my $pp; - - for $pp (split(/\n\s+/, join("\n",@raw))) { - $pp =~ s/\s+/ /g; - my $x = wrap($ip, $xp, $pp); - push(@para, $x); - } - - # if paragraph_indent is the same as line_indent, - # separate paragraphs with blank lines - - my $ps = ($ip eq $xp) ? "\n\n" : "\n"; - return join ($ps, @para); -} - -1; -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/Tie/Hash.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/Tie/Hash.pm deleted file mode 100644 index e3e8a24..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/Tie/Hash.pm +++ /dev/null @@ -1,74 +0,0 @@ -package Tie::Hash; - -our $VERSION = '1.03'; - -use Carp; -use warnings::register; - -sub new { - my $pkg = shift; - $pkg->TIEHASH(@_); -} - -# Grandfather "new" - -sub TIEHASH { - my $pkg = shift; - if (defined &{"${pkg}::new"}) { - warnings::warnif("WARNING: calling ${pkg}->new since ${pkg}->TIEHASH is missing"); - $pkg->new(@_); - } - else { - croak "$pkg doesn't define a TIEHASH method"; - } -} - -sub EXISTS { - my $pkg = ref $_[0]; - croak "$pkg doesn't define an EXISTS method"; -} - -sub CLEAR { - my $self = shift; - my $key = $self->FIRSTKEY(@_); - my @keys; - - while (defined $key) { - push @keys, $key; - $key = $self->NEXTKEY(@_, $key); - } - foreach $key (@keys) { - $self->DELETE(@_, $key); - } -} - -# The Tie::StdHash package implements standard perl hash behaviour. -# It exists to act as a base class for classes which only wish to -# alter some parts of their behaviour. - -package Tie::StdHash; -# @ISA = qw(Tie::Hash); # would inherit new() only - -sub TIEHASH { bless {}, $_[0] } -sub STORE { $_[0]->{$_[1]} = $_[2] } -sub FETCH { $_[0]->{$_[1]} } -sub FIRSTKEY { my $a = scalar keys %{$_[0]}; each %{$_[0]} } -sub NEXTKEY { each %{$_[0]} } -sub EXISTS { exists $_[0]->{$_[1]} } -sub DELETE { delete $_[0]->{$_[1]} } -sub CLEAR { %{$_[0]} = () } -sub SCALAR { scalar %{$_[0]} } - -package Tie::ExtraHash; - -sub TIEHASH { my $p = shift; bless [{}, @_], $p } -sub STORE { $_[0][0]{$_[1]} = $_[2] } -sub FETCH { $_[0][0]{$_[1]} } -sub FIRSTKEY { my $a = scalar keys %{$_[0][0]}; each %{$_[0][0]} } -sub NEXTKEY { each %{$_[0][0]} } -sub EXISTS { exists $_[0][0]->{$_[1]} } -sub DELETE { delete $_[0][0]->{$_[1]} } -sub CLEAR { %{$_[0][0]} = () } -sub SCALAR { scalar %{$_[0][0]} } - -1; diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/attributes.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/attributes.pm deleted file mode 100644 index e9eebd9..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/attributes.pm +++ /dev/null @@ -1,93 +0,0 @@ -package attributes; - -our $VERSION = 0.09; - -@EXPORT_OK = qw(get reftype); -@EXPORT = (); -%EXPORT_TAGS = (ALL => [@EXPORT, @EXPORT_OK]); - -use strict; - -sub croak { - require Carp; - goto &Carp::croak; -} - -sub carp { - require Carp; - goto &Carp::carp; -} - -## forward declaration(s) rather than wrapping the bootstrap call in BEGIN{} -#sub reftype ($) ; -#sub _fetch_attrs ($) ; -#sub _guess_stash ($) ; -#sub _modify_attrs ; -# -# The extra trips through newATTRSUB in the interpreter wipe out any savings -# from avoiding the BEGIN block. Just do the bootstrap now. -BEGIN { bootstrap attributes } - -sub import { - @_ > 2 && ref $_[2] or do { - require Exporter; - goto &Exporter::import; - }; - my (undef,$home_stash,$svref,@attrs) = @_; - - my $svtype = uc reftype($svref); - my $pkgmeth; - $pkgmeth = UNIVERSAL::can($home_stash, "MODIFY_${svtype}_ATTRIBUTES") - if defined $home_stash && $home_stash ne ''; - my @badattrs; - if ($pkgmeth) { - my @pkgattrs = _modify_attrs($svref, @attrs); - @badattrs = $pkgmeth->($home_stash, $svref, @pkgattrs); - if (!@badattrs && @pkgattrs) { - require warnings; - return unless warnings::enabled('reserved'); - @pkgattrs = grep { m/\A[[:lower:]]+(?:\z|\()/ } @pkgattrs; - if (@pkgattrs) { - for my $attr (@pkgattrs) { - $attr =~ s/\(.+\z//s; - } - my $s = ((@pkgattrs == 1) ? '' : 's'); - carp "$svtype package attribute$s " . - "may clash with future reserved word$s: " . - join(' : ' , @pkgattrs); - } - } - } - else { - @badattrs = _modify_attrs($svref, @attrs); - } - if (@badattrs) { - croak "Invalid $svtype attribute" . - (( @badattrs == 1 ) ? '' : 's') . - ": " . - join(' : ', @badattrs); - } -} - -sub get ($) { - @_ == 1 && ref $_[0] or - croak 'Usage: '.__PACKAGE__.'::get $ref'; - my $svref = shift; - my $svtype = uc reftype $svref; - my $stash = _guess_stash $svref; - $stash = caller unless defined $stash; - my $pkgmeth; - $pkgmeth = UNIVERSAL::can($stash, "FETCH_${svtype}_ATTRIBUTES") - if defined $stash && $stash ne ''; - return $pkgmeth ? - (_fetch_attrs($svref), $pkgmeth->($stash, $svref)) : - (_fetch_attrs($svref)) - ; -} - -sub require_version { goto &UNIVERSAL::VERSION } - -1; -__END__ -#The POD goes here - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/base.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/base.pm deleted file mode 100644 index 98a388c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/base.pm +++ /dev/null @@ -1,181 +0,0 @@ -package base; - -use strict 'vars'; -use vars qw($VERSION); -$VERSION = '2.14'; -$VERSION = eval $VERSION; - -# constant.pm is slow -sub SUCCESS () { 1 } - -sub PUBLIC () { 2**0 } -sub PRIVATE () { 2**1 } -sub INHERITED () { 2**2 } -sub PROTECTED () { 2**3 } - -my $Fattr = \%fields::attr; - -sub has_fields { - my($base) = shift; - my $fglob = ${"$base\::"}{FIELDS}; - return( ($fglob && 'GLOB' eq ref($fglob) && *$fglob{HASH}) ? 1 : 0 ); -} - -sub has_version { - my($base) = shift; - my $vglob = ${$base.'::'}{VERSION}; - return( ($vglob && *$vglob{SCALAR}) ? 1 : 0 ); -} - -sub has_attr { - my($proto) = shift; - my($class) = ref $proto || $proto; - return exists $Fattr->{$class}; -} - -sub get_attr { - $Fattr->{$_[0]} = [1] unless $Fattr->{$_[0]}; - return $Fattr->{$_[0]}; -} - -if ($] < 5.009) { - *get_fields = sub { - # Shut up a possible typo warning. - () = \%{$_[0].'::FIELDS'}; - my $f = \%{$_[0].'::FIELDS'}; - - # should be centralized in fields? perhaps - # fields::mk_FIELDS_be_OK. Peh. As long as %{ $package . '::FIELDS' } - # is used here anyway, it doesn't matter. - bless $f, 'pseudohash' if (ref($f) ne 'pseudohash'); - - return $f; - } -} -else { - *get_fields = sub { - # Shut up a possible typo warning. - () = \%{$_[0].'::FIELDS'}; - return \%{$_[0].'::FIELDS'}; - } -} - -sub import { - my $class = shift; - - return SUCCESS unless @_; - - # List of base classes from which we will inherit %FIELDS. - my $fields_base; - - my $inheritor = caller(0); - my @isa_classes; - - my @bases; - foreach my $base (@_) { - if ( $inheritor eq $base ) { - warn "Class '$inheritor' tried to inherit from itself\n"; - } - - next if grep $_->isa($base), ($inheritor, @bases); - - if (has_version($base)) { - ${$base.'::VERSION'} = '-1, set by base.pm' - unless defined ${$base.'::VERSION'}; - } - else { - my $sigdie; - { - local $SIG{__DIE__}; - eval "require $base"; - # Only ignore "Can't locate" errors from our eval require. - # Other fatal errors (syntax etc) must be reported. - die if $@ && $@ !~ /^Can't locate .*? at \(eval /; - unless (%{"$base\::"}) { - require Carp; - local $" = " "; - Carp::croak(<<ERROR); -Base class package "$base" is empty. - (Perhaps you need to 'use' the module which defines that package first, - or make that module available in \@INC (\@INC contains: @INC). -ERROR - } - $sigdie = $SIG{__DIE__} || undef; - } - # Make sure a global $SIG{__DIE__} makes it out of the localization. - $SIG{__DIE__} = $sigdie if defined $sigdie; - ${$base.'::VERSION'} = "-1, set by base.pm" - unless defined ${$base.'::VERSION'}; - } - push @bases, $base; - - if ( has_fields($base) || has_attr($base) ) { - # No multiple fields inheritance *suck* - if ($fields_base) { - require Carp; - Carp::croak("Can't multiply inherit fields"); - } else { - $fields_base = $base; - } - } - } - # Save this until the end so it's all or nothing if the above loop croaks. - push @{"$inheritor\::ISA"}, @isa_classes; - - push @{"$inheritor\::ISA"}, @bases; - - if( defined $fields_base ) { - inherit_fields($inheritor, $fields_base); - } -} - -sub inherit_fields { - my($derived, $base) = @_; - - return SUCCESS unless $base; - - my $battr = get_attr($base); - my $dattr = get_attr($derived); - my $dfields = get_fields($derived); - my $bfields = get_fields($base); - - $dattr->[0] = @$battr; - - if( keys %$dfields ) { - warn <<"END"; -$derived is inheriting from $base but already has its own fields! -This will cause problems. Be sure you use base BEFORE declaring fields. -END - - } - - # Iterate through the base's fields adding all the non-private - # ones to the derived class. Hang on to the original attribute - # (Public, Private, etc...) and add Inherited. - # This is all too complicated to do efficiently with add_fields(). - while (my($k,$v) = each %$bfields) { - my $fno; - if ($fno = $dfields->{$k} and $fno != $v) { - require Carp; - Carp::croak ("Inherited fields can't override existing fields"); - } - - if( $battr->[$v] & PRIVATE ) { - $dattr->[$v] = PRIVATE | INHERITED; - } - else { - $dattr->[$v] = INHERITED | $battr->[$v]; - $dfields->{$k} = $v; - } - } - - foreach my $idx (1..$#{$battr}) { - next if defined $dattr->[$idx]; - $dattr->[$idx] = $battr->[$idx] & INHERITED; - } -} - -1; - -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/bytes.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/bytes.pm deleted file mode 100644 index 7da5512..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/bytes.pm +++ /dev/null @@ -1,31 +0,0 @@ -package bytes; - -our $VERSION = '1.03'; - -$bytes::hint_bits = 0x00000008; - -sub import { - $^H |= $bytes::hint_bits; -} - -sub unimport { - $^H &= ~$bytes::hint_bits; -} - -sub AUTOLOAD { - require "bytes_heavy.pl"; - goto &$AUTOLOAD if defined &$AUTOLOAD; - require Carp; - Carp::croak("Undefined subroutine $AUTOLOAD called"); -} - -sub length (_); -sub chr (_); -sub ord (_); -sub substr ($$;$$); -sub index ($$;$); -sub rindex ($$;$); - -1; -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/bytes_heavy.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/bytes_heavy.pl deleted file mode 100644 index 680c66c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/bytes_heavy.pl +++ /dev/null @@ -1,40 +0,0 @@ -package bytes; - -sub length (_) { - BEGIN { bytes::import() } - return CORE::length($_[0]); -} - -sub substr ($$;$$) { - BEGIN { bytes::import() } - return - @_ == 2 ? CORE::substr($_[0], $_[1]) : - @_ == 3 ? CORE::substr($_[0], $_[1], $_[2]) : - CORE::substr($_[0], $_[1], $_[2], $_[3]) ; -} - -sub ord (_) { - BEGIN { bytes::import() } - return CORE::ord($_[0]); -} - -sub chr (_) { - BEGIN { bytes::import() } - return CORE::chr($_[0]); -} - -sub index ($$;$) { - BEGIN { bytes::import() } - return - @_ == 2 ? CORE::index($_[0], $_[1]) : - CORE::index($_[0], $_[1], $_[2]) ; -} - -sub rindex ($$;$) { - BEGIN { bytes::import() } - return - @_ == 2 ? CORE::rindex($_[0], $_[1]) : - CORE::rindex($_[0], $_[1], $_[2]) ; -} - -1; diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/constant.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/constant.pm deleted file mode 100644 index b960676..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/constant.pm +++ /dev/null @@ -1,130 +0,0 @@ -package constant; -use 5.005; -use strict; -use warnings::register; - -use vars qw($VERSION %declared); -$VERSION = '1.17'; - -#======================================================================= - -# Some names are evil choices. -my %keywords = map +($_, 1), qw{ BEGIN INIT CHECK END DESTROY AUTOLOAD }; -$keywords{UNITCHECK}++ if $] > 5.009; - -my %forced_into_main = map +($_, 1), - qw{ STDIN STDOUT STDERR ARGV ARGVOUT ENV INC SIG }; - -my %forbidden = (%keywords, %forced_into_main); - -#======================================================================= -# import() - import symbols into user's namespace -# -# What we actually do is define a function in the caller's namespace -# which returns the value. The function we create will normally -# be inlined as a constant, thereby avoiding further sub calling -# overhead. -#======================================================================= -sub import { - my $class = shift; - return unless @_; # Ignore 'use constant;' - my $constants; - my $multiple = ref $_[0]; - my $pkg = caller; - my $symtab; - my $str_end = $] >= 5.006 ? "\\z" : "\\Z"; - - if ($] > 5.009002) { - no strict 'refs'; - $symtab = \%{$pkg . '::'}; - }; - - if ( $multiple ) { - if (ref $_[0] ne 'HASH') { - require Carp; - Carp::croak("Invalid reference type '".ref(shift)."' not 'HASH'"); - } - $constants = shift; - } else { - $constants->{+shift} = undef; - } - - foreach my $name ( keys %$constants ) { - unless (defined $name) { - require Carp; - Carp::croak("Can't use undef as constant name"); - } - - # Normal constant name - if ($name =~ /^_?[^\W_0-9]\w*$str_end/ and !$forbidden{$name}) { - # Everything is okay - - # Name forced into main, but we're not in main. Fatal. - } elsif ($forced_into_main{$name} and $pkg ne 'main') { - require Carp; - Carp::croak("Constant name '$name' is forced into main::"); - - # Starts with double underscore. Fatal. - } elsif ($name =~ /^__/) { - require Carp; - Carp::croak("Constant name '$name' begins with '__'"); - - # Maybe the name is tolerable - } elsif ($name =~ /^[A-Za-z_]\w*$str_end/) { - # Then we'll warn only if you've asked for warnings - if (warnings::enabled()) { - if ($keywords{$name}) { - warnings::warn("Constant name '$name' is a Perl keyword"); - } elsif ($forced_into_main{$name}) { - warnings::warn("Constant name '$name' is " . - "forced into package main::"); - } - } - - # Looks like a boolean - # use constant FRED == fred; - } elsif ($name =~ /^[01]?$str_end/) { - require Carp; - if (@_) { - Carp::croak("Constant name '$name' is invalid"); - } else { - Carp::croak("Constant name looks like boolean value"); - } - - } else { - # Must have bad characters - require Carp; - Carp::croak("Constant name '$name' has invalid characters"); - } - - { - no strict 'refs'; - my $full_name = "${pkg}::$name"; - $declared{$full_name}++; - if ($multiple || @_ == 1) { - my $scalar = $multiple ? $constants->{$name} : $_[0]; - if ($symtab && !exists $symtab->{$name}) { - # No typeglob yet, so we can use a reference as space- - # efficient proxy for a constant subroutine - # The check in Perl_ck_rvconst knows that inlinable - # constants from cv_const_sv are read only. So we have to: - Internals::SvREADONLY($scalar, 1); - $symtab->{$name} = \$scalar; - mro::method_changed_in($pkg); - } else { - *$full_name = sub () { $scalar }; - } - } elsif (@_) { - my @list = @_; - *$full_name = sub () { @list }; - } else { - *$full_name = sub () { }; - } - } - } -} - -1; - -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/fields.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/fields.pm deleted file mode 100644 index 8cc942b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/fields.pm +++ /dev/null @@ -1,177 +0,0 @@ -package fields; - -require 5.005; -use strict; -no strict 'refs'; -unless( eval q{require warnings::register; warnings::register->import; 1} ) { - *warnings::warnif = sub { - require Carp; - Carp::carp(@_); - } -} -use vars qw(%attr $VERSION); - -$VERSION = '2.14'; - -# constant.pm is slow -sub PUBLIC () { 2**0 } -sub PRIVATE () { 2**1 } -sub INHERITED () { 2**2 } -sub PROTECTED () { 2**3 } - -# The %attr hash holds the attributes of the currently assigned fields -# per class. The hash is indexed by class names and the hash value is -# an array reference. The first element in the array is the lowest field -# number not belonging to a base class. The remaining elements' indices -# are the field numbers. The values are integer bit masks, or undef -# in the case of base class private fields (which occupy a slot but are -# otherwise irrelevant to the class). - -sub import { - my $class = shift; - return unless @_; - my $package = caller(0); - # avoid possible typo warnings - %{"$package\::FIELDS"} = () unless %{"$package\::FIELDS"}; - my $fields = \%{"$package\::FIELDS"}; - my $fattr = ($attr{$package} ||= [1]); - my $next = @$fattr; - - # Quiet pseudo-hash deprecation warning for uses of fields::new. - bless \%{"$package\::FIELDS"}, 'pseudohash'; - - if ($next > $fattr->[0] - and ($fields->{$_[0]} || 0) >= $fattr->[0]) - { - # There are already fields not belonging to base classes. - # Looks like a possible module reload... - $next = $fattr->[0]; - } - foreach my $f (@_) { - my $fno = $fields->{$f}; - - # Allow the module to be reloaded so long as field positions - # have not changed. - if ($fno and $fno != $next) { - require Carp; - if ($fno < $fattr->[0]) { - if ($] < 5.006001) { - warn("Hides field '$f' in base class") if $^W; - } else { - warnings::warnif("Hides field '$f' in base class") ; - } - } else { - Carp::croak("Field name '$f' already in use"); - } - } - $fields->{$f} = $next; - $fattr->[$next] = ($f =~ /^_/) ? PRIVATE : PUBLIC; - $next += 1; - } - if (@$fattr > $next) { - # Well, we gave them the benefit of the doubt by guessing the - # module was reloaded, but they appear to be declaring fields - # in more than one place. We can't be sure (without some extra - # bookkeeping) that the rest of the fields will be declared or - # have the same positions, so punt. - require Carp; - Carp::croak ("Reloaded module must declare all fields at once"); - } -} - -sub inherit { - require base; - goto &base::inherit_fields; -} - -sub _dump # sometimes useful for debugging -{ - for my $pkg (sort keys %attr) { - print "\n$pkg"; - if (@{"$pkg\::ISA"}) { - print " (", join(", ", @{"$pkg\::ISA"}), ")"; - } - print "\n"; - my $fields = \%{"$pkg\::FIELDS"}; - for my $f (sort {$fields->{$a} <=> $fields->{$b}} keys %$fields) { - my $no = $fields->{$f}; - print " $no: $f"; - my $fattr = $attr{$pkg}[$no]; - if (defined $fattr) { - my @a; - push(@a, "public") if $fattr & PUBLIC; - push(@a, "private") if $fattr & PRIVATE; - push(@a, "inherited") if $fattr & INHERITED; - print "\t(", join(", ", @a), ")"; - } - print "\n"; - } - } -} - -if ($] < 5.009) { - *new = sub { - my $class = shift; - $class = ref $class if ref $class; - return bless [\%{$class . "::FIELDS"}], $class; - } -} else { - *new = sub { - my $class = shift; - $class = ref $class if ref $class; - require Hash::Util; - my $self = bless {}, $class; - - # The lock_keys() prototype won't work since we require Hash::Util :( - &Hash::Util::lock_keys(\%$self, _accessible_keys($class)); - return $self; - } -} - -sub _accessible_keys { - my ($class) = @_; - return ( - keys %{$class.'::FIELDS'}, - map(_accessible_keys($_), @{$class.'::ISA'}), - ); -} - -sub phash { - die "Pseudo-hashes have been removed from Perl" if $] >= 5.009; - my $h; - my $v; - if (@_) { - if (ref $_[0] eq 'ARRAY') { - my $a = shift; - @$h{@$a} = 1 .. @$a; - if (@_) { - $v = shift; - unless (! @_ and ref $v eq 'ARRAY') { - require Carp; - Carp::croak ("Expected at most two array refs\n"); - } - } - } - else { - if (@_ % 2) { - require Carp; - Carp::croak ("Odd number of elements initializing pseudo-hash\n"); - } - my $i = 0; - @$h{grep ++$i % 2, @_} = 1 .. @_ / 2; - $i = 0; - $v = [grep $i++ % 2, @_]; - } - } - else { - $h = {}; - $v = []; - } - [ $h, @$v ]; - -} - -1; - -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/integer.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/integer.pm deleted file mode 100644 index 482d0cf..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/integer.pm +++ /dev/null @@ -1,15 +0,0 @@ -package integer; - -our $VERSION = '1.00'; - -$integer::hint_bits = 0x1; - -sub import { - $^H |= $integer::hint_bits; -} - -sub unimport { - $^H &= ~$integer::hint_bits; -} - -1; diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/locale.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/locale.pm deleted file mode 100644 index 4c30eda..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/locale.pm +++ /dev/null @@ -1,15 +0,0 @@ -package locale; - -our $VERSION = '1.00'; - -$locale::hint_bits = 0x4; - -sub import { - $^H |= $locale::hint_bits; -} - -sub unimport { - $^H &= ~$locale::hint_bits; -} - -1; diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/overload.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/overload.pm deleted file mode 100644 index cf4a590..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/overload.pm +++ /dev/null @@ -1,178 +0,0 @@ -package overload; - -our $VERSION = '1.07'; - -sub nil {} - -sub OVERLOAD { - $package = shift; - my %arg = @_; - my ($sub, $fb); - $ {$package . "::OVERLOAD"}{dummy}++; # Register with magic by touching. - *{$package . "::()"} = \&nil; # Make it findable via fetchmethod. - for (keys %arg) { - if ($_ eq 'fallback') { - $fb = $arg{$_}; - } else { - $sub = $arg{$_}; - if (not ref $sub and $sub !~ /::/) { - $ {$package . "::(" . $_} = $sub; - $sub = \&nil; - } - #print STDERR "Setting `$ {'package'}::\cO$_' to \\&`$sub'.\n"; - *{$package . "::(" . $_} = \&{ $sub }; - } - } - ${$package . "::()"} = $fb; # Make it findable too (fallback only). -} - -sub import { - $package = (caller())[0]; - # *{$package . "::OVERLOAD"} = \&OVERLOAD; - shift; - $package->overload::OVERLOAD(@_); -} - -sub unimport { - $package = (caller())[0]; - ${$package . "::OVERLOAD"}{dummy}++; # Upgrade the table - shift; - for (@_) { - if ($_ eq 'fallback') { - undef $ {$package . "::()"}; - } else { - delete $ {$package . "::"}{"(" . $_}; - } - } -} - -sub Overloaded { - my $package = shift; - $package = ref $package if ref $package; - $package->can('()'); -} - -sub ov_method { - my $globref = shift; - return undef unless $globref; - my $sub = \&{*$globref}; - return $sub if $sub ne \&nil; - return shift->can($ {*$globref}); -} - -sub OverloadedStringify { - my $package = shift; - $package = ref $package if ref $package; - #$package->can('(""') - ov_method mycan($package, '(""'), $package - or ov_method mycan($package, '(0+'), $package - or ov_method mycan($package, '(bool'), $package - or ov_method mycan($package, '(nomethod'), $package; -} - -sub Method { - my $package = shift; - if(ref $package) { - local $@; - local $!; - require Scalar::Util; - $package = Scalar::Util::blessed($package); - return undef if !defined $package; - } - #my $meth = $package->can('(' . shift); - ov_method mycan($package, '(' . shift), $package; - #return $meth if $meth ne \&nil; - #return $ {*{$meth}}; -} - -sub AddrRef { - my $package = ref $_[0]; - return "$_[0]" unless $package; - - local $@; - local $!; - require Scalar::Util; - my $class = Scalar::Util::blessed($_[0]); - my $class_prefix = defined($class) ? "$class=" : ""; - my $type = Scalar::Util::reftype($_[0]); - my $addr = Scalar::Util::refaddr($_[0]); - return sprintf("$class_prefix$type(0x%x)", $addr); -} - -*StrVal = *AddrRef; - -sub mycan { # Real can would leave stubs. - my ($package, $meth) = @_; - - my $mro = mro::get_linear_isa($package); - foreach my $p (@$mro) { - my $fqmeth = $p . q{::} . $meth; - return \*{$fqmeth} if defined &{$fqmeth}; - } - - return undef; -} - -%constants = ( - 'integer' => 0x1000, # HINT_NEW_INTEGER - 'float' => 0x2000, # HINT_NEW_FLOAT - 'binary' => 0x4000, # HINT_NEW_BINARY - 'q' => 0x8000, # HINT_NEW_STRING - 'qr' => 0x10000, # HINT_NEW_RE - ); - -%ops = ( with_assign => "+ - * / % ** << >> x .", - assign => "+= -= *= /= %= **= <<= >>= x= .=", - num_comparison => "< <= > >= == !=", - '3way_comparison'=> "<=> cmp", - str_comparison => "lt le gt ge eq ne", - binary => '& &= | |= ^ ^=', - unary => "neg ! ~", - mutators => '++ --', - func => "atan2 cos sin exp abs log sqrt int", - conversion => 'bool "" 0+', - iterators => '<>', - dereferencing => '${} @{} %{} &{} *{}', - matching => '~~', - special => 'nomethod fallback ='); - -use warnings::register; -sub constant { - # Arguments: what, sub - while (@_) { - if (@_ == 1) { - warnings::warnif ("Odd number of arguments for overload::constant"); - last; - } - elsif (!exists $constants {$_ [0]}) { - warnings::warnif ("`$_[0]' is not an overloadable type"); - } - elsif (!ref $_ [1] || "$_[1]" !~ /(^|=)CODE\(0x[0-9a-f]+\)$/) { - # Can't use C<ref $_[1] eq "CODE"> above as code references can be - # blessed, and C<ref> would return the package the ref is blessed into. - if (warnings::enabled) { - $_ [1] = "undef" unless defined $_ [1]; - warnings::warn ("`$_[1]' is not a code reference"); - } - } - else { - $^H{$_[0]} = $_[1]; - $^H |= $constants{$_[0]}; - } - shift, shift; - } -} - -sub remove_constant { - # Arguments: what, sub - while (@_) { - delete $^H{$_[0]}; - $^H &= ~ $constants{$_[0]}; - shift, shift; - } -} - -1; - -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/strict.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/strict.pm deleted file mode 100644 index 7928712..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/strict.pm +++ /dev/null @@ -1,46 +0,0 @@ -package strict; - -$strict::VERSION = "1.04"; - -# Verify that we're called correctly so that strictures will work. -unless ( __FILE__ =~ /(^|[\/\\])\Q${\__PACKAGE__}\E\.pmc?$/ ) { - # Can't use Carp, since Carp uses us! - my (undef, $f, $l) = caller; - die("Incorrect use of pragma '${\__PACKAGE__}' at $f line $l.\n"); -} - -my %bitmask = ( -refs => 0x00000002, -subs => 0x00000200, -vars => 0x00000400 -); - -sub bits { - my $bits = 0; - my @wrong; - foreach my $s (@_) { - push @wrong, $s unless exists $bitmask{$s}; - $bits |= $bitmask{$s} || 0; - } - if (@wrong) { - require Carp; - Carp::croak("Unknown 'strict' tag(s) '@wrong'"); - } - $bits; -} - -my $default_bits = bits(qw(refs subs vars)); - -sub import { - shift; - $^H |= @_ ? bits(@_) : $default_bits; -} - -sub unimport { - shift; - $^H &= ~ (@_ ? bits(@_) : $default_bits); -} - -1; -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/Canonical.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/Canonical.pl deleted file mode 100644 index 9a49000..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/Canonical.pl +++ /dev/null @@ -1,1178 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -## -## Data in this file used by ../utf8_heavy.pl -## - -## Mapping from lc(canonical name) to filename in ./lib -%utf8::Canonical = ( - - # InAegeanNumbers - aegeannumbers => 'InAegean', - - alphabetic => 'Alphabet', - - # InAlphabeticPresentationForms - alphabeticpresentationforms => 'InAlphab', - - # InAncientGreekMusicalNotation - ancientgreekmusicalnotation => 'InAncie3', - - # InAncientGreekNumbers - ancientgreeknumbers => 'InAncie2', - - # InAncientSymbols - ancientsymbols => 'InAncien', - - arabic => 'Arab', - - # InArabicPresentationFormsA - arabicpresentationformsa => 'InArabi4', - - # InArabicPresentationFormsB - arabicpresentationformsb => 'InArabi3', - - # InArabicSupplement - arabicsupplement => 'InArabi2', - - armenian => 'Armn', - - # InArrows - arrows => 'InArrows', - - # AsciiHexDigit - asciihexdigit => 'AsciiHex', - - balinese => 'Bali', - - # InBasicLatin - basiclatin => 'InBasicL', - - bengali => 'Beng', - - # BidiControl - bidicontrol => 'BidiCont', - - # InBlockElements - blockelements => 'InBlockE', - - bopomofo => 'Bopo', - - # InBopomofoExtended - bopomofoextended => 'InBopom2', - - # InBoxDrawing - boxdrawing => 'InBoxDra', - - braille => 'Brai', - - # InBraillePatterns - braillepatterns => 'InBraill', - - buginese => 'Bugi', - buhid => 'Buhd', - - # InByzantineMusicalSymbols - byzantinemusicalsymbols => 'InByzant', - - # CanadianAboriginal - canadianaboriginal => 'Canadian', - - carian => 'Cari', - - # CasedLetter - casedletter => 'LC', - - cham => 'Cham', - cherokee => 'Cher', - - # InCjkCompatibility - cjkcompatibility => 'InCjkCom', - - # InCjkCompatibilityForms - cjkcompatibilityforms => 'InCjkCo2', - - # InCjkCompatibilityIdeographs - cjkcompatibilityideographs => 'InCjkCo3', - - # InCjkCompatibilityIdeographsSupplement - cjkcompatibilityideographssupplement => 'InCjkCo4', - - # InCjkRadicalsSupplement - cjkradicalssupplement => 'InCjkRad', - - # InCjkStrokes - cjkstrokes => 'InCjkStr', - - # InCjkSymbolsAndPunctuation - cjksymbolsandpunctuation => 'InCjkSym', - - # InCjkUnifiedIdeographs - cjkunifiedideographs => 'InCjkUni', - - # InCjkUnifiedIdeographsExtensionA - cjkunifiedideographsextensiona => 'InCjkUn3', - - # InCjkUnifiedIdeographsExtensionB - cjkunifiedideographsextensionb => 'InCjkUn2', - - # ClosePunctuation - closepunctuation => 'Pe', - - # InCombiningDiacriticalMarks - combiningdiacriticalmarks => 'InCombi2', - - # InCombiningDiacriticalMarksForSymbols - combiningdiacriticalmarksforsymbols => 'InCombi4', - - # InCombiningDiacriticalMarksSupplement - combiningdiacriticalmarkssupplement => 'InCombi3', - - # InCombiningHalfMarks - combininghalfmarks => 'InCombin', - - common => 'Zyyy', - - # ConnectorPunctuation - connectorpunctuation => 'Pc', - - control => 'Cc', - - # InControlPictures - controlpictures => 'InContro', - - coptic => 'Copt', - - # InCountingRodNumerals - countingrodnumerals => 'InCounti', - - cuneiform => 'Xsux', - - # InCuneiformNumbersAndPunctuation - cuneiformnumbersandpunctuation => 'InCunei2', - - # CurrencySymbol - currencysymbol => 'Sc', - - # InCurrencySymbols - currencysymbols => 'InCurren', - - cypriot => 'Cprt', - - # InCypriotSyllabary - cypriotsyllabary => 'InCyprio', - - cyrillic => 'Cyrl', - - # InCyrillicExtendedA - cyrillicextendeda => 'InCyril3', - - # InCyrillicExtendedB - cyrillicextendedb => 'InCyril2', - - # InCyrillicSupplement - cyrillicsupplement => 'InCyril4', - - dash => 'Dash2', - - # DashPunctuation - dashpunctuation => 'Pd', - - # DecimalNumber - decimalnumber => 'Nd', - - # DefaultIgnorableCodePoint - defaultignorablecodepoint => 'DefaultI', - - deprecated => 'Deprecat', - deseret => 'Dsrt', - devanagari => 'Deva', - diacritic => 'Diacriti', - - # InDingbats - dingbats => 'InDingba', - - # InDominoTiles - dominotiles => 'InDomino', - - # InEnclosedAlphanumerics - enclosedalphanumerics => 'InEnclos', - - # InEnclosedCjkLettersAndMonths - enclosedcjklettersandmonths => 'InEnclo2', - - # EnclosingMark - enclosingmark => 'Me', - - ethiopic => 'Ethi', - - # InEthiopicExtended - ethiopicextended => 'InEthio2', - - # InEthiopicSupplement - ethiopicsupplement => 'InEthio3', - - extender => 'Extender', - - # FinalPunctuation - finalpunctuation => 'Pf', - - format => 'Cf', - - # InGeneralPunctuation - generalpunctuation => 'InGenera', - - # InGeometricShapes - geometricshapes => 'InGeomet', - - georgian => 'Geor', - - # InGeorgianSupplement - georgiansupplement => 'InGeorg2', - - glagolitic => 'Glag', - gothic => 'Goth', - greek => 'Grek', - - # InGreekAndCoptic - greekandcoptic => 'InGreekA', - - # InGreekExtended - greekextended => 'InGreekE', - - gujarati => 'Gujr', - gurmukhi => 'Guru', - - # InHalfwidthAndFullwidthForms - halfwidthandfullwidthforms => 'InHalfwi', - - han => 'Hani', - hangul => 'Hang', - - # InHangulCompatibilityJamo - hangulcompatibilityjamo => 'InHangu3', - - # InHangulJamo - hanguljamo => 'InHangul', - - # InHangulSyllables - hangulsyllables => 'InHangu2', - - hanunoo => 'Hano', - hebrew => 'Hebr', - - # HexDigit - hexdigit => 'HexDigit', - - # InHighPrivateUseSurrogates - highprivateusesurrogates => 'InHighPr', - - # InHighSurrogates - highsurrogates => 'InHighSu', - - hiragana => 'Hira', - hyphen => 'Hyphen2', - - # IdContinue - idcontinue => 'IdContin', - - ideographic => 'Ideograp', - - # InIdeographicDescriptionCharacters - ideographicdescriptioncharacters => 'InIdeogr', - - # IdsBinaryOperator - idsbinaryoperator => 'IdsBinar', - - # IdStart - idstart => 'IdStart', - - # IdsTrinaryOperator - idstrinaryoperator => 'IdsTrina', - - # InAegeanNumbers - inaegeannumbers => 'InAegean', - - # InAlphabeticPresentationForms - inalphabeticpresentationforms => 'InAlphab', - - # InAncientGreekMusicalNotation - inancientgreekmusicalnotation => 'InAncie3', - - # InAncientGreekNumbers - inancientgreeknumbers => 'InAncie2', - - # InAncientSymbols - inancientsymbols => 'InAncien', - - # InArabic - inarabic => 'InArabic', - - # InArabicPresentationFormsA - inarabicpresentationformsa => 'InArabi4', - - # InArabicPresentationFormsB - inarabicpresentationformsb => 'InArabi3', - - # InArabicSupplement - inarabicsupplement => 'InArabi2', - - # InArmenian - inarmenian => 'InArmeni', - - # InArrows - inarrows => 'InArrows', - - # InBalinese - inbalinese => 'InBaline', - - # InBasicLatin - inbasiclatin => 'InBasicL', - - # InBengali - inbengali => 'InBengal', - - # InBlockElements - inblockelements => 'InBlockE', - - # InBopomofo - inbopomofo => 'InBopomo', - - # InBopomofoExtended - inbopomofoextended => 'InBopom2', - - # InBoxDrawing - inboxdrawing => 'InBoxDra', - - # InBraillePatterns - inbraillepatterns => 'InBraill', - - # InBuginese - inbuginese => 'InBugine', - - # InBuhid - inbuhid => 'InBuhid', - - # InByzantineMusicalSymbols - inbyzantinemusicalsymbols => 'InByzant', - - # InCarian - incarian => 'InCarian', - - # InCham - incham => 'InCham', - - # InCherokee - incherokee => 'InCherok', - - # InCjkCompatibility - incjkcompatibility => 'InCjkCom', - - # InCjkCompatibilityForms - incjkcompatibilityforms => 'InCjkCo2', - - # InCjkCompatibilityIdeographs - incjkcompatibilityideographs => 'InCjkCo3', - - # InCjkCompatibilityIdeographsSupplement - incjkcompatibilityideographssupplement => 'InCjkCo4', - - # InCjkRadicalsSupplement - incjkradicalssupplement => 'InCjkRad', - - # InCjkStrokes - incjkstrokes => 'InCjkStr', - - # InCjkSymbolsAndPunctuation - incjksymbolsandpunctuation => 'InCjkSym', - - # InCjkUnifiedIdeographs - incjkunifiedideographs => 'InCjkUni', - - # InCjkUnifiedIdeographsExtensionA - incjkunifiedideographsextensiona => 'InCjkUn3', - - # InCjkUnifiedIdeographsExtensionB - incjkunifiedideographsextensionb => 'InCjkUn2', - - # InCombiningDiacriticalMarks - incombiningdiacriticalmarks => 'InCombi2', - - # InCombiningDiacriticalMarksForSymbols - incombiningdiacriticalmarksforsymbols => 'InCombi4', - - # InCombiningDiacriticalMarksSupplement - incombiningdiacriticalmarkssupplement => 'InCombi3', - - # InCombiningHalfMarks - incombininghalfmarks => 'InCombin', - - # InControlPictures - incontrolpictures => 'InContro', - - # InCoptic - incoptic => 'InCoptic', - - # InCountingRodNumerals - incountingrodnumerals => 'InCounti', - - # InCuneiform - incuneiform => 'InCuneif', - - # InCuneiformNumbersAndPunctuation - incuneiformnumbersandpunctuation => 'InCunei2', - - # InCurrencySymbols - incurrencysymbols => 'InCurren', - - # InCypriotSyllabary - incypriotsyllabary => 'InCyprio', - - # InCyrillic - incyrillic => 'InCyrill', - - # InCyrillicExtendedA - incyrillicextendeda => 'InCyril3', - - # InCyrillicExtendedB - incyrillicextendedb => 'InCyril2', - - # InCyrillicSupplement - incyrillicsupplement => 'InCyril4', - - # InDeseret - indeseret => 'InDesere', - - # InDevanagari - indevanagari => 'InDevana', - - # InDingbats - indingbats => 'InDingba', - - # InDominoTiles - indominotiles => 'InDomino', - - # InEnclosedAlphanumerics - inenclosedalphanumerics => 'InEnclos', - - # InEnclosedCjkLettersAndMonths - inenclosedcjklettersandmonths => 'InEnclo2', - - # InEthiopic - inethiopic => 'InEthiop', - - # InEthiopicExtended - inethiopicextended => 'InEthio2', - - # InEthiopicSupplement - inethiopicsupplement => 'InEthio3', - - # InGeneralPunctuation - ingeneralpunctuation => 'InGenera', - - # InGeometricShapes - ingeometricshapes => 'InGeomet', - - # InGeorgian - ingeorgian => 'InGeorgi', - - # InGeorgianSupplement - ingeorgiansupplement => 'InGeorg2', - - # InGlagolitic - inglagolitic => 'InGlagol', - - # InGothic - ingothic => 'InGothic', - - # InGreekAndCoptic - ingreekandcoptic => 'InGreekA', - - # InGreekExtended - ingreekextended => 'InGreekE', - - # InGujarati - ingujarati => 'InGujara', - - # InGurmukhi - ingurmukhi => 'InGurmuk', - - # InHalfwidthAndFullwidthForms - inhalfwidthandfullwidthforms => 'InHalfwi', - - # InHangulCompatibilityJamo - inhangulcompatibilityjamo => 'InHangu3', - - # InHangulJamo - inhanguljamo => 'InHangul', - - # InHangulSyllables - inhangulsyllables => 'InHangu2', - - # InHanunoo - inhanunoo => 'InHanuno', - - # InHebrew - inhebrew => 'InHebrew', - - inherited => 'Qaai', - - # InHighPrivateUseSurrogates - inhighprivateusesurrogates => 'InHighPr', - - # InHighSurrogates - inhighsurrogates => 'InHighSu', - - # InHiragana - inhiragana => 'InHiraga', - - # InIdeographicDescriptionCharacters - inideographicdescriptioncharacters => 'InIdeogr', - - # InIpaExtensions - inipaextensions => 'InIpaExt', - - # InitialPunctuation - initialpunctuation => 'Pi', - - # InKanbun - inkanbun => 'InKanbun', - - # InKangxiRadicals - inkangxiradicals => 'InKangxi', - - # InKannada - inkannada => 'InKannad', - - # InKatakana - inkatakana => 'InKataka', - - # InKatakanaPhoneticExtensions - inkatakanaphoneticextensions => 'InKatak2', - - # InKayahLi - inkayahli => 'InKayahL', - - # InKharoshthi - inkharoshthi => 'InKharos', - - # InKhmer - inkhmer => 'InKhmer', - - # InKhmerSymbols - inkhmersymbols => 'InKhmerS', - - # InLao - inlao => 'InLao', - - # InLatin1Supplement - inlatin1supplement => 'InLatin1', - - # InLatinExtendedA - inlatinextendeda => 'InLatin2', - - # InLatinExtendedAdditional - inlatinextendedadditional => 'InLatin5', - - # InLatinExtendedB - inlatinextendedb => 'InLatinE', - - # InLatinExtendedC - inlatinextendedc => 'InLatin4', - - # InLatinExtendedD - inlatinextendedd => 'InLatin3', - - # InLepcha - inlepcha => 'InLepcha', - - # InLetterlikeSymbols - inletterlikesymbols => 'InLetter', - - # InLimbu - inlimbu => 'InLimbu', - - # InLinearBIdeograms - inlinearbideograms => 'InLinear', - - # InLinearBSyllabary - inlinearbsyllabary => 'InLinea2', - - # InLowSurrogates - inlowsurrogates => 'InLowSur', - - # InLycian - inlycian => 'InLycian', - - # InLydian - inlydian => 'InLydian', - - # InMahjongTiles - inmahjongtiles => 'InMahjon', - - # InMalayalam - inmalayalam => 'InMalaya', - - # InMathematicalAlphanumericSymbols - inmathematicalalphanumericsymbols => 'InMathe2', - - # InMathematicalOperators - inmathematicaloperators => 'InMathem', - - # InMiscellaneousMathematicalSymbolsA - inmiscellaneousmathematicalsymbolsa => 'InMisce4', - - # InMiscellaneousMathematicalSymbolsB - inmiscellaneousmathematicalsymbolsb => 'InMisce5', - - # InMiscellaneousSymbols - inmiscellaneoussymbols => 'InMiscel', - - # InMiscellaneousSymbolsAndArrows - inmiscellaneoussymbolsandarrows => 'InMisce3', - - # InMiscellaneousTechnical - inmiscellaneoustechnical => 'InMisce2', - - # InModifierToneLetters - inmodifiertoneletters => 'InModifi', - - # InMongolian - inmongolian => 'InMongol', - - # InMusicalSymbols - inmusicalsymbols => 'InMusica', - - # InMyanmar - inmyanmar => 'InMyanma', - - # InNewTaiLue - innewtailue => 'InNewTai', - - # InNko - innko => 'InNko', - - # InNumberForms - innumberforms => 'InNumber', - - # InOgham - inogham => 'InOgham', - - # InOlChiki - inolchiki => 'InOlChik', - - # InOldItalic - inolditalic => 'InOldIta', - - # InOldPersian - inoldpersian => 'InOldPer', - - # InOpticalCharacterRecognition - inopticalcharacterrecognition => 'InOptica', - - # InOriya - inoriya => 'InOriya', - - # InOsmanya - inosmanya => 'InOsmany', - - # InPhagsPa - inphagspa => 'InPhagsP', - - # InPhaistosDisc - inphaistosdisc => 'InPhaist', - - # InPhoenician - inphoenician => 'InPhoeni', - - # InPhoneticExtensions - inphoneticextensions => 'InPhonet', - - # InPhoneticExtensionsSupplement - inphoneticextensionssupplement => 'InPhone2', - - # InPrivateUseArea - inprivateusearea => 'InPrivat', - - # InRejang - inrejang => 'InRejang', - - # InRunic - inrunic => 'InRunic', - - # InSaurashtra - insaurashtra => 'InSauras', - - # InShavian - inshavian => 'InShavia', - - # InSinhala - insinhala => 'InSinhal', - - # InSmallFormVariants - insmallformvariants => 'InSmallF', - - # InSpacingModifierLetters - inspacingmodifierletters => 'InSpacin', - - # InSpecials - inspecials => 'InSpecia', - - # InSundanese - insundanese => 'InSundan', - - # InSuperscriptsAndSubscripts - insuperscriptsandsubscripts => 'InSupers', - - # InSupplementalArrowsA - insupplementalarrowsa => 'InSuppl2', - - # InSupplementalArrowsB - insupplementalarrowsb => 'InSupple', - - # InSupplementalMathematicalOperators - insupplementalmathematicaloperators => 'InSuppl6', - - # InSupplementalPunctuation - insupplementalpunctuation => 'InSuppl3', - - # InSupplementaryPrivateUseAreaA - insupplementaryprivateuseareaa => 'InSuppl4', - - # InSupplementaryPrivateUseAreaB - insupplementaryprivateuseareab => 'InSuppl5', - - # InSylotiNagri - insylotinagri => 'InSyloti', - - # InSyriac - insyriac => 'InSyriac', - - # InTagalog - intagalog => 'InTagalo', - - # InTagbanwa - intagbanwa => 'InTagban', - - # InTags - intags => 'InTags', - - # InTaiLe - intaile => 'InTaiLe', - - # InTaiXuanJingSymbols - intaixuanjingsymbols => 'InTaiXua', - - # InTamil - intamil => 'InTamil', - - # InTelugu - intelugu => 'InTelugu', - - # InThaana - inthaana => 'InThaana', - - # InThai - inthai => 'InThai', - - # InTibetan - intibetan => 'InTibeta', - - # InTifinagh - intifinagh => 'InTifina', - - # InUgaritic - inugaritic => 'InUgarit', - - # InUnifiedCanadianAboriginalSyllabics - inunifiedcanadianaboriginalsyllabics => 'InUnifie', - - # InVai - invai => 'InVai', - - # InVariationSelectors - invariationselectors => 'InVariat', - - # InVariationSelectorsSupplement - invariationselectorssupplement => 'InVaria2', - - # InVerticalForms - inverticalforms => 'InVertic', - - # InYijingHexagramSymbols - inyijinghexagramsymbols => 'InYijing', - - # InYiRadicals - inyiradicals => 'InYiRadi', - - # InYiSyllables - inyisyllables => 'InYiSyll', - - # InIpaExtensions - ipaextensions => 'InIpaExt', - - # JoinControl - joincontrol => 'JoinCont', - - # InKanbun - kanbun => 'InKanbun', - - # InKangxiRadicals - kangxiradicals => 'InKangxi', - - kannada => 'Knda', - katakana => 'Kana', - - # InKatakanaPhoneticExtensions - katakanaphoneticextensions => 'InKatak2', - - # KayahLi - kayahli => 'KayahLi', - - kharoshthi => 'Khar', - khmer => 'Khmr', - - # InKhmerSymbols - khmersymbols => 'InKhmerS', - - lao => 'Laoo', - latin => 'Latn', - - # InLatin1Supplement - latin1supplement => 'InLatin1', - - # InLatinExtendedA - latinextendeda => 'InLatin2', - - # InLatinExtendedAdditional - latinextendedadditional => 'InLatin5', - - # InLatinExtendedB - latinextendedb => 'InLatinE', - - # InLatinExtendedC - latinextendedc => 'InLatin4', - - # InLatinExtendedD - latinextendedd => 'InLatin3', - - lepcha => 'Lepc', - letter => 'L', - - # InLetterlikeSymbols - letterlikesymbols => 'InLetter', - - # LetterNumber - letternumber => 'Nl', - - limbu => 'Limb', - - # LinearB - linearb => 'LinearB', - - # InLinearBIdeograms - linearbideograms => 'InLinear', - - # InLinearBSyllabary - linearbsyllabary => 'InLinea2', - - # LineSeparator - lineseparator => 'Zl', - - # LogicalOrderException - logicalorderexception => 'LogicalO', - - lowercase => 'Lowercas', - - # LowercaseLetter - lowercaseletter => 'Ll', - - # InLowSurrogates - lowsurrogates => 'InLowSur', - - lycian => 'Lyci', - lydian => 'Lydi', - - # InMahjongTiles - mahjongtiles => 'InMahjon', - - malayalam => 'Mlym', - mark => 'M', - math => 'Math', - - # InMathematicalAlphanumericSymbols - mathematicalalphanumericsymbols => 'InMathe2', - - # InMathematicalOperators - mathematicaloperators => 'InMathem', - - # MathSymbol - mathsymbol => 'Sm', - - # InMiscellaneousMathematicalSymbolsA - miscellaneousmathematicalsymbolsa => 'InMisce4', - - # InMiscellaneousMathematicalSymbolsB - miscellaneousmathematicalsymbolsb => 'InMisce5', - - # InMiscellaneousSymbols - miscellaneoussymbols => 'InMiscel', - - # InMiscellaneousSymbolsAndArrows - miscellaneoussymbolsandarrows => 'InMisce3', - - # InMiscellaneousTechnical - miscellaneoustechnical => 'InMisce2', - - # ModifierLetter - modifierletter => 'Lm', - - # ModifierSymbol - modifiersymbol => 'Sk', - - # InModifierToneLetters - modifiertoneletters => 'InModifi', - - mongolian => 'Mong', - - # InMusicalSymbols - musicalsymbols => 'InMusica', - - myanmar => 'Mymr', - - # NewTaiLue - newtailue => 'NewTaiLu', - - nko => 'Nkoo', - - # NoncharacterCodePoint - noncharactercodepoint => 'Nonchara', - - # NonspacingMark - nonspacingmark => 'Mn', - - number => 'N', - - # InNumberForms - numberforms => 'InNumber', - - ogham => 'Ogam', - - # OlChiki - olchiki => 'OlChiki', - - # OldItalic - olditalic => 'OldItali', - - # OldPersian - oldpersian => 'OldPersi', - - # OpenPunctuation - openpunctuation => 'Ps', - - # InOpticalCharacterRecognition - opticalcharacterrecognition => 'InOptica', - - oriya => 'Orya', - osmanya => 'Osma', - other => 'C', - - # OtherAlphabetic - otheralphabetic => 'OtherAlp', - - # OtherDefaultIgnorableCodePoint - otherdefaultignorablecodepoint => 'OtherDef', - - # OtherGraphemeExtend - othergraphemeextend => 'OtherGra', - - # OtherIdContinue - otheridcontinue => 'OtherIdC', - - # OtherIdStart - otheridstart => 'OtherIdS', - - # OtherLetter - otherletter => 'Lo', - - # OtherLowercase - otherlowercase => 'OtherLow', - - # OtherMath - othermath => 'OtherMat', - - # OtherNumber - othernumber => 'No', - - # OtherPunctuation - otherpunctuation => 'Po', - - # OtherSymbol - othersymbol => 'So', - - # OtherUppercase - otheruppercase => 'OtherUpp', - - # ParagraphSeparator - paragraphseparator => 'Zp', - - # PatternSyntax - patternsyntax => 'PatternS', - - # PatternWhiteSpace - patternwhitespace => 'PatternW', - - # PhagsPa - phagspa => 'PhagsPa', - - # InPhaistosDisc - phaistosdisc => 'InPhaist', - - phoenician => 'Phnx', - - # InPhoneticExtensions - phoneticextensions => 'InPhonet', - - # InPhoneticExtensionsSupplement - phoneticextensionssupplement => 'InPhone2', - - # PrivateUse - privateuse => 'Co', - - # InPrivateUseArea - privateusearea => 'InPrivat', - - punctuation => 'P', - - # QuotationMark - quotationmark => 'Quotatio', - - radical => 'Radical2', - rejang => 'Rjng', - runic => 'Runr', - saurashtra => 'Saur', - separator => 'Z', - shavian => 'Shaw', - sinhala => 'Sinh', - - # InSmallFormVariants - smallformvariants => 'InSmallF', - - # SoftDotted - softdotted => 'SoftDott', - - # SpaceSeparator - spaceseparator => 'Zs', - - # SpacingMark - spacingmark => 'Mc', - - # InSpacingModifierLetters - spacingmodifierletters => 'InSpacin', - - # InSpecials - specials => 'InSpecia', - - sterm => 'Sterm2', - sundanese => 'Sund', - - # InSuperscriptsAndSubscripts - superscriptsandsubscripts => 'InSupers', - - # InSupplementalArrowsA - supplementalarrowsa => 'InSuppl2', - - # InSupplementalArrowsB - supplementalarrowsb => 'InSupple', - - # InSupplementalMathematicalOperators - supplementalmathematicaloperators => 'InSuppl6', - - # InSupplementalPunctuation - supplementalpunctuation => 'InSuppl3', - - # InSupplementaryPrivateUseAreaA - supplementaryprivateuseareaa => 'InSuppl4', - - # InSupplementaryPrivateUseAreaB - supplementaryprivateuseareab => 'InSuppl5', - - surrogate => 'Cs', - - # SylotiNagri - sylotinagri => 'SylotiNa', - - symbol => 'S', - syriac => 'Syrc', - tagalog => 'Tglg', - tagbanwa => 'Tagb', - - # InTags - tags => 'InTags', - - # TaiLe - taile => 'TaiLe', - - # InTaiXuanJingSymbols - taixuanjingsymbols => 'InTaiXua', - - tamil => 'Taml', - telugu => 'Telu', - - # TerminalPunctuation - terminalpunctuation => 'Terminal', - - thaana => 'Thaa', - thai => 'Thai', - tibetan => 'Tibt', - tifinagh => 'Tfng', - - # TitlecaseLetter - titlecaseletter => 'Lt', - - ugaritic => 'Ugar', - unassigned => 'Cn', - - # InUnifiedCanadianAboriginalSyllabics - unifiedcanadianaboriginalsyllabics => 'InUnifie', - - # UnifiedIdeograph - unifiedideograph => 'UnifiedI', - - uppercase => 'Uppercas', - - # UppercaseLetter - uppercaseletter => 'Lu', - - vai => 'Vaii', - - # VariationSelector - variationselector => 'Variatio', - - # InVariationSelectors - variationselectors => 'InVariat', - - # InVariationSelectorsSupplement - variationselectorssupplement => 'InVaria2', - - # InVerticalForms - verticalforms => 'InVertic', - - # WhiteSpace - whitespace => 'WhiteSpa', - - yi => 'Yiii', - - # InYijingHexagramSymbols - yijinghexagramsymbols => 'InYijing', - - # InYiRadicals - yiradicals => 'InYiRadi', - - # InYiSyllables - yisyllables => 'InYiSyll', - -); -1 diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/Exact.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/Exact.pl deleted file mode 100644 index 5d4e993..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/Exact.pl +++ /dev/null @@ -1,88 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -## -## Data in this file used by ../utf8_heavy.pl -## - -## Mapping from name to filename in ./lib/gc_sc -%utf8::Exact = ( - ASCII => 'ASCII', - All => 'Any', - Alnum => 'Alnum', - Alpha => 'Alpha', - Any => 'Any', - Assigned => 'Assigned', - Blank => 'Blank', - C => 'C', - Cc => 'Cc', - Cf => 'Cf', - Cn => 'Cn', - Cntrl => 'Cntrl', - Co => 'Co', - Cs => 'Cs', - Digit => 'Digit', - Graph => 'Graph', - HorizSpace => 'HorizSpa', - InGreek => 'InGreekA', - L => 'L', - LC => 'LC', - Ll => 'Ll', - Lm => 'Lm', - Lo => 'Lo', - Lower => 'Lower', - Lt => 'Lt', - Lu => 'Lu', - M => 'M', - Mc => 'Mc', - Me => 'Me', - Mn => 'Mn', - N => 'N', - Nd => 'Nd', - Nl => 'Nl', - No => 'No', - P => 'P', - Pc => 'Pc', - Pd => 'Pd', - Pe => 'Pe', - PerlSpace => 'PerlSpac', - PerlWord => 'PerlWord', - Pf => 'Pf', - Pi => 'Pi', - Po => 'Po', - PosixAlnum => 'PosixAln', - PosixAlpha => 'PosixAlp', - PosixBlank => 'PosixBla', - PosixCntrl => 'PosixCnt', - PosixDigit => 'PosixDig', - PosixGraph => 'PosixGra', - PosixLower => 'PosixLow', - PosixPrint => 'PosixPri', - PosixPunct => 'PosixPun', - PosixSpace => 'PosixSpa', - PosixUpper => 'PosixUpp', - Print => 'Print', - Ps => 'Ps', - Punct => 'Punct', - S => 'S', - Sc => 'Sc', - Sk => 'Sk', - Sm => 'Sm', - So => 'So', - Space => 'Space', - SpacePerl => 'SpacePer', - Title => 'Title', - Upper => 'Upper', - VertSpace => 'VertSpac', - Word => 'Word', - XDigit => 'XDigit', - Z => 'Z', - Zl => 'Zl', - Zp => 'Zp', - Zs => 'Zs', - _CanonDCIJ => '_CanonDC', - _CaseIgnorable => '_CaseIgn', - _CombAbove => '_CombAbo', -); -1; diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/PVA.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/PVA.pl deleted file mode 100644 index 952fe90..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/PVA.pl +++ /dev/null @@ -1,3604 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - - -%utf8::PropertyAlias = ( -'sc', -'Script', -'xonfkd', -'ExpandsOnNFKD', -'patsyn', -'PatternSyntax', -'nfkcqc', -'NFKCQuickCheck', -'oalpha', -'OtherAlphabetic', -'gcb', -'GraphemeClusterBreak', -'nfcqc', -'NFCQuickCheck', -'ids', -'IDStart', -'lb', -'LineBreak', -'stc', -'SimpleTitlecaseMapping', -'xonfkc', -'ExpandsOnNFKC', -'patws', -'PatternWhiteSpace', -'tc', -'TitlecaseMapping', -'lower', -'Lowercase', -'idst', -'IDSTrinaryOperator', -'radical', -'Radical', -'fcnfkc', -'FCNFKCClosure', -'dm', -'DecompositionMapping', -'slc', -'SimpleLowercaseMapping', -'wspace', -'WhiteSpace', -'di', -'DefaultIgnorableCodePoint', -'jsn', -'JamoShortName', -'nt', -'NumericType', -'ea', -'EastAsianWidth', -'ahex', -'ASCIIHexDigit', -'alpha', -'Alphabetic', -'uc', -'UppercaseMapping', -'dia', -'Diacritic', -'gc', -'GeneralCategory', -'xids', -'XIDStart', -'oupper', -'OtherUppercase', -'wb', -'WordBreak', -'math', -'Math', -'sb', -'SentenceBreak', -'qmark', -'QuotationMark', -'nfdqc', -'NFDQuickCheck', -'ideo', -'Ideographic', -'blk', -'Block', -'odi', -'OtherDefaultIgnorableCodePoint', -'hst', -'HangulSyllableType', -'bidim', -'BidiMirrored', -'olower', -'OtherLowercase', -'na', -'Name', -'hyphen', -'Hyphen', -'xidc', -'XIDContinue', -'oidc', -'OtherIDContinue', -'bidic', -'BidiControl', -'scf', -'SimpleCaseFolding', -'na1', -'Unicode1Name', -'compex', -'FullCompositionExclusion', -'ext', -'Extender', -'cf', -'CaseFolding', -'grlink', -'GraphemeLink', -'xonfc', -'ExpandsOnNFC', -'sd', -'SoftDotted', -'ccc', -'CanonicalCombiningClass', -'dash', -'Dash', -'hex', -'HexDigit', -'grbase', -'GraphemeBase', -'dt', -'DecompositionType', -'xonfd', -'ExpandsOnNFD', -'idsb', -'IDSBinaryOperator', -'age', -'Age', -'loe', -'LogicalOrderException', -'term', -'TerminalPunctuation', -'ce', -'CompositionExclusion', -'isc', -'ISOComment', -'dep', -'Deprecated', -'bc', -'BidiClass', -'nchar', -'NoncharacterCodePoint', -'jt', -'JoiningType', -'upper', -'Uppercase', -'uideo', -'UnifiedIdeograph', -'sterm', -'STerm', -'nfkdqc', -'NFKDQuickCheck', -'oids', -'OtherIDStart', -'joinc', -'JoinControl', -'urs', -'UnicodeRadicalStroke', -'nv', -'NumericValue', -'suc', -'SimpleUppercaseMapping', -'bmg', -'BidiMirroringGlyph', -'grext', -'GraphemeExtend', -'idc', -'IDContinue', -'vs', -'VariationSelector', -'omath', -'OtherMath', -'lc', -'LowercaseMapping', -'ogrext', -'OtherGraphemeExtend', -'jg', -'JoiningGroup', -); - -%utf8::PA_reverse = ( -'linebreak', -'lb', -'bidiclass', -'bc', -'terminalpunctuation', -'Term', -'expandsonnfkc', -'XONFKC', -'extender', -'Ext', -'simplecasefolding', -'scf', -'patternsyntax', -'PatSyn', -'sentencebreak', -'SB', -'numericvalue', -'nv', -'patternwhitespace', -'PatWS', -'softdotted', -'SD', -'logicalorderexception', -'LOE', -'idstart', -'IDS', -'generalcategory', -'gc', -'decompositiontype', -'dt', -'name', -'na', -'numerictype', -'nt', -'otherlowercase', -'OLower', -'joininggroup', -'jg', -'expandsonnfkd', -'XONFKD', -'deprecated', -'Dep', -'radical', -'Radical', -'idstrinaryoperator', -'IDST', -'xidstart', -'XIDS', -'lowercase', -'Lower', -'unifiedideograph', -'UIdeo', -'othergraphemeextend', -'OGrExt', -'jamoshortname', -'JSN', -'eastasianwidth', -'ea', -'math', -'Math', -'graphemelink', -'GrLink', -'noncharactercodepoint', -'NChar', -'graphemebase', -'GrBase', -'bidimirrored', -'BidiM', -'casefolding', -'cf', -'simpleuppercasemapping', -'suc', -'fullcompositionexclusion', -'CompEx', -'compositionexclusion', -'CE', -'uppercasemapping', -'uc', -'decompositionmapping', -'dm', -'whitespace', -'WSpace', -'hyphen', -'Hyphen', -'ideographic', -'Ideo', -'idcontinue', -'IDC', -'idsbinaryoperator', -'IDSB', -'hangulsyllabletype', -'hst', -'asciihexdigit', -'AHex', -'otheruppercase', -'OUpper', -'nfkdquickcheck', -'NFKDQC', -'simpletitlecasemapping', -'stc', -'nfcquickcheck', -'NFCQC', -'bidicontrol', -'BidiC', -'diacritic', -'Dia', -'joiningtype', -'jt', -'otheralphabetic', -'OAlpha', -'canonicalcombiningclass', -'ccc', -'alphabetic', -'Alpha', -'titlecasemapping', -'tc', -'unicoderadicalstroke', -'URS', -'hexdigit', -'Hex', -'unicode1name', -'na1', -'dash', -'Dash', -'fcnfkcclosure', -'FCNFKC', -'graphemeextend', -'GrExt', -'joincontrol', -'JoinC', -'xidcontinue', -'XIDC', -'quotationmark', -'QMark', -'expandsonnfd', -'XONFD', -'age', -'age', -'otheridcontinue', -'OIDC', -'uppercase', -'Upper', -'expandsonnfc', -'XONFC', -'defaultignorablecodepoint', -'DI', -'nfdquickcheck', -'NFDQC', -'isocomment', -'isc', -'otherdefaultignorablecodepoint', -'ODI', -'variationselector', -'VS', -'script', -'sc', -'otheridstart', -'OIDS', -'sterm', -'STerm', -'graphemeclusterbreak', -'GCB', -'nfkcquickcheck', -'NFKCQC', -'bidimirroringglyph', -'bmg', -'othermath', -'OMath', -'block', -'blk', -'wordbreak', -'WB', -'lowercasemapping', -'lc', -'simplelowercasemapping', -'slc', -); - -%utf8::PropValueAlias = ( -'sc', -{ -'runr', -'Runic', -'osma', -'Osmanya', -'hano', -'Hanunoo', -'cans', -'CanadianAboriginal', -'knda', -'Kannada', -'vaii', -'Vai', -'phnx', -'Phoenician', -'orya', -'Oriya', -'cher', -'Cherokee', -'khmr', -'Khmer', -'ogam', -'Ogham', -'saur', -'Saurashtra', -'cham', -'Cham', -'ital', -'OldItalic', -'tibt', -'Tibetan', -'lydi', -'Lydian', -'kana', -'Katakana', -'lepc', -'Lepcha', -'gujr', -'Gujarati', -'thaa', -'Thaana', -'copt', -'Coptic', -'sylo', -'SylotiNagri', -'talu', -'NewTaiLue', -'laoo', -'Lao', -'sinh', -'Sinhala', -'hira', -'Hiragana', -'cari', -'Carian', -'limb', -'Limbu', -'mymr', -'Myanmar', -'yiii', -'Yi', -'arab', -'Arabic', -'deva', -'Devanagari', -'xpeo', -'OldPersian', -'cprt', -'Cypriot', -'bugi', -'Buginese', -'hebr', -'Hebrew', -'tglg', -'Tagalog', -'sund', -'Sundanese', -'mlym', -'Malayalam', -'tagb', -'Tagbanwa', -'grek', -'Greek', -'ethi', -'Ethiopic', -'phag', -'PhagsPa', -'mong', -'Mongolian', -'hrkt', -'KatakanaOrHiragana', -'armn', -'Armenian', -'hani', -'Han', -'shaw', -'Shavian', -'taml', -'Tamil', -'guru', -'Gurmukhi', -'xsux', -'Cuneiform', -'ugar', -'Ugaritic', -'qaai', -'Inherited', -'cyrl', -'Cyrillic', -'thai', -'Thai', -'zzzz', -'Unknown', -'olck', -'OlChiki', -'beng', -'Bengali', -'bali', -'Balinese', -'kali', -'KayahLi', -'brai', -'Braille', -'telu', -'Telugu', -'geor', -'Georgian', -'hang', -'Hangul', -'glag', -'Glagolitic', -'syrc', -'Syriac', -'tfng', -'Tifinagh', -'dsrt', -'Deseret', -'buhd', -'Buhid', -'bopo', -'Bopomofo', -'khar', -'Kharoshthi', -'linb', -'LinearB', -'goth', -'Gothic', -'lyci', -'Lycian', -'rjng', -'Rejang', -'tale', -'TaiLe', -'zyyy', -'Common', -'latn', -'Latin', -'nkoo', -'Nko', -}, -'JSN', -{ -'gg', -'GG', -'lm', -'LM', -'a', -'A', -'ya', -'YA', -'d', -'D', -'yae', -'YAE', -'nh', -'NH', -'lp', -'LP', -'j', -'J', -'u', -'U', -'jj', -'JJ', -'ss', -'SS', -'k', -'K', -'g', -'G', -'bb', -'BB', -'lb', -'LB', -'t', -'T', -'e', -'E', -'dd', -'DD', -'s', -'S', -'lt', -'LT', -'c', -'C', -'gs', -'GS', -'b', -'B', -'nj', -'NJ', -'lh', -'LH', -'yi', -'YI', -'weo', -'WEO', -'r', -'R', -'ls', -'LS', -'we', -'WE', -'bs', -'BS', -'lg', -'LG', -'yo', -'YO', -'oe', -'OE', -'h', -'H', -'yu', -'YU', -'wi', -'WI', -'eu', -'EU', -'wa', -'WA', -'i', -'I', -'n', -'N', -'ye', -'YE', -'eo', -'EO', -'m', -'M', -'yeo', -'YEO', -'l', -'L', -'p', -'P', -'ng', -'NG', -'wae', -'WAE', -'ae', -'AE', -'o', -'O', -}, -'Pat_Syn', -{ -'y', -'Yes', -'n', -'No', -}, -'IDS', -{ -'y', -'Yes', -'n', -'No', -}, -'Dep', -{ -'y', -'Yes', -'n', -'No', -}, -'OUpper', -{ -'y', -'Yes', -'n', -'No', -}, -'OAlpha', -{ -'y', -'Yes', -'n', -'No', -}, -'Lower', -{ -'y', -'Yes', -'n', -'No', -}, -'GCB', -{ -'cn', -'Control', -'ex', -'Extend', -'v', -'V', -'pp', -'Prepend', -'lv', -'LV', -'xx', -'Other', -'sm', -'SpacingMark', -'l', -'L', -'lvt', -'LVT', -'cr', -'CR', -'lf', -'LF', -'t', -'T', -}, -'lb', -{ -'sp', -'Space', -'ba', -'BreakAfter', -'gl', -'Glue', -'xx', -'Unknown', -'nu', -'Numeric', -'cb', -'ContingentBreak', -'sy', -'BreakSymbols', -'cr', -'CarriageReturn', -'in', -'Inseparable', -'bb', -'BreakBefore', -'sg', -'Surrogate', -'sa', -'ComplexContext', -'po', -'PostfixNumeric', -'jl', -'JL', -'id', -'Ideographic', -'al', -'Alphabetic', -'bk', -'MandatoryBreak', -'pr', -'PrefixNumeric', -'b2', -'BreakBoth', -'op', -'OpenPunctuation', -'cl', -'ClosePunctuation', -'is', -'InfixNumeric', -'qu', -'Quotation', -'hy', -'Hyphen', -'wj', -'WordJoiner', -'zw', -'ZWSpace', -'jt', -'JT', -'ex', -'Exclamation', -'cm', -'CombiningMark', -'h2', -'H2', -'nl', -'NextLine', -'ns', -'Nonstarter', -'h3', -'H3', -'ai', -'Ambiguous', -'lf', -'LineFeed', -'jv', -'JV', -}, -'AHex', -{ -'y', -'Yes', -'n', -'No', -}, -'DI', -{ -'y', -'Yes', -'n', -'No', -}, -'OLower', -{ -'y', -'Yes', -'n', -'No', -}, -'CE', -{ -'y', -'Yes', -'n', -'No', -}, -'XO_NFKC', -{ -'y', -'Yes', -'n', -'No', -}, -'LOE', -{ -'y', -'Yes', -'n', -'No', -}, -'WSpace', -{ -'y', -'Yes', -'n', -'No', -}, -'XO_NFC', -{ -'y', -'Yes', -'n', -'No', -}, -'Bidi_M', -{ -'y', -'Yes', -'n', -'No', -}, -'XIDC', -{ -'y', -'Yes', -'n', -'No', -}, -'Radical', -{ -'y', -'Yes', -'n', -'No', -}, -'Alpha', -{ -'y', -'Yes', -'n', -'No', -}, -'STerm', -{ -'y', -'Yes', -'n', -'No', -}, -'nt', -{ -'none', -'None', -'di', -'Digit', -'de', -'Decimal', -'nu', -'Numeric', -}, -'ea', -{ -'w', -'Wide', -'n', -'Neutral', -'h', -'Halfwidth', -'a', -'Ambiguous', -'f', -'Fullwidth', -'na', -'Narrow', -}, -'Ext', -{ -'y', -'Yes', -'n', -'No', -}, -'XO_NFD', -{ -'y', -'Yes', -'n', -'No', -}, -'OMath', -{ -'y', -'Yes', -'n', -'No', -}, -'ODI', -{ -'y', -'Yes', -'n', -'No', -}, -'gc', -{ -'sc', -'CurrencySymbol', -'mc', -'SpacingMark', -'lm', -'ModifierLetter', -'cn', -'Unassigned', -'pf', -'FinalPunctuation', -'no', -'OtherNumber', -'cc', -'Control', -'lo', -'OtherLetter', -'po', -'OtherPunctuation', -'zs', -'SpaceSeparator', -'co', -'PrivateUse', -'so', -'OtherSymbol', -'ll', -'LowercaseLetter', -'nd', -'DecimalNumber', -'cf', -'Format', -'me', -'EnclosingMark', -'s', -'Symbol', -'zp', -'ParagraphSeparator', -'pd', -'DashPunctuation', -'c', -'Other', -'lt', -'TitlecaseLetter', -'cs', -'Surrogate', -'l&', -'CasedLetter', -'z', -'Separator', -'ps', -'OpenPunctuation', -'zl', -'LineSeparator', -'pc', -'ConnectorPunctuation', -'pi', -'InitialPunctuation', -'n', -'Number', -'m', -'Mark', -'nl', -'LetterNumber', -'sm', -'MathSymbol', -'l', -'Letter', -'mn', -'NonspacingMark', -'p', -'Punctuation', -'lc', -'CasedLetter', -'sk', -'ModifierSymbol', -'lu', -'UppercaseLetter', -'pe', -'ClosePunctuation', -}, -'IDSB', -{ -'y', -'Yes', -'n', -'No', -}, -'NChar', -{ -'y', -'Yes', -'n', -'No', -}, -'UIdeo', -{ -'y', -'Yes', -'n', -'No', -}, -'Term', -{ -'y', -'Yes', -'n', -'No', -}, -'QMark', -{ -'y', -'Yes', -'n', -'No', -}, -'Hyphen', -{ -'y', -'Yes', -'n', -'No', -}, -'XIDS', -{ -'y', -'Yes', -'n', -'No', -}, -'NFC_QC', -{ -'y', -'Yes', -'n', -'No', -'m', -'Maybe', -}, -'Dia', -{ -'y', -'Yes', -'n', -'No', -}, -'Bidi_C', -{ -'y', -'Yes', -'n', -'No', -}, -'hst', -{ -'l', -'LeadingJamo', -'lvt', -'LVTSyllable', -'v', -'VowelJamo', -'lv', -'LVSyllable', -'t', -'TrailingJamo', -'na', -'NotApplicable', -}, -'WB', -{ -'extend', -'Extend', -'ml', -'MidLetter', -'mb', -'MidNumLet', -'le', -'ALetter', -'ex', -'ExtendNumLet', -'xx', -'Other', -'nu', -'Numeric', -'nl', -'Newline', -'mn', -'MidNum', -'fo', -'Format', -'cr', -'CR', -'ka', -'Katakana', -'lf', -'LF', -}, -'Math', -{ -'y', -'Yes', -'n', -'No', -}, -'Pat_WS', -{ -'y', -'Yes', -'n', -'No', -}, -'SD', -{ -'y', -'Yes', -'n', -'No', -}, -'Upper', -{ -'y', -'Yes', -'n', -'No', -}, -'OIDC', -{ -'y', -'Yes', -'n', -'No', -}, -'IDST', -{ -'y', -'Yes', -'n', -'No', -}, -'Gr_Ext', -{ -'y', -'Yes', -'n', -'No', -}, -'Comp_Ex', -{ -'y', -'Yes', -'n', -'No', -}, -'NFD_QC', -{ -'y', -'Yes', -'n', -'No', -}, -'VS', -{ -'y', -'Yes', -'n', -'No', -}, -'Join_C', -{ -'y', -'Yes', -'n', -'No', -}, -'ccc', -{ -'atb', -'AttachedBelow', -'db', -'DoubleBelow', -'a', -'Above', -'r', -'Right', -'da', -'DoubleAbove', -'is', -'IotaSubscript', -'nr', -'NotReordered', -'ov', -'Overlay', -'br', -'BelowRight', -'nk', -'Nukta', -'atbl', -'AttachedBelowLeft', -'al', -'AboveLeft', -'ar', -'AboveRight', -'atar', -'AttachedAboveRight', -'l', -'Left', -'b', -'Below', -'vr', -'Virama', -'kv', -'KanaVoicing', -'bl', -'BelowLeft', -}, -'dt', -{ -'fra', -'Fraction', -'none', -'none', -'sml', -'Small', -'enc', -'Circle', -'font', -'font', -'init', -'Initial', -'nb', -'Nobreak', -'iso', -'Isolated', -'sup', -'Super', -'fin', -'Final', -'wide', -'wide', -'nar', -'Narrow', -'can', -'Canonical', -'med', -'Medial', -'sub', -'sub', -'vert', -'Vertical', -'sqr', -'Square', -'com', -'Compat', -}, -'Ideo', -{ -'y', -'Yes', -'n', -'No', -}, -'Gr_Link', -{ -'y', -'Yes', -'n', -'No', -}, -'OGr_Ext', -{ -'y', -'Yes', -'n', -'No', -}, -'XO_NFKD', -{ -'y', -'Yes', -'n', -'No', -}, -'NFKC_QC', -{ -'y', -'Yes', -'n', -'No', -'m', -'Maybe', -}, -'bc', -{ -'r', -'RightToLeft', -'rlo', -'RightToLeftOverride', -'es', -'EuropeanSeparator', -'ws', -'WhiteSpace', -'rle', -'RightToLeftEmbedding', -'on', -'OtherNeutral', -'bn', -'BoundaryNeutral', -'et', -'EuropeanTerminator', -'pdf', -'PopDirectionalFormat', -'lro', -'LeftToRightOverride', -'s', -'SegmentSeparator', -'al', -'ArabicLetter', -'en', -'EuropeanNumber', -'l', -'LeftToRight', -'b', -'ParagraphSeparator', -'lre', -'LeftToRightEmbedding', -'cs', -'CommonSeparator', -'nsm', -'NonspacingMark', -'an', -'ArabicNumber', -}, -'Dash', -{ -'y', -'Yes', -'n', -'No', -}, -'jt', -{ -'l', -'LeftJoining', -'u', -'NonJoining', -'c', -'JoinCausing', -'r', -'RightJoining', -'d', -'DualJoining', -'t', -'Transparent', -}, -'NFKD_QC', -{ -'y', -'Yes', -'n', -'No', -}, -'IDC', -{ -'y', -'Yes', -'n', -'No', -}, -'OIDS', -{ -'y', -'Yes', -'n', -'No', -}, -'Gr_Base', -{ -'y', -'Yes', -'n', -'No', -}, -'Hex', -{ -'y', -'Yes', -'n', -'No', -}, -'SB', -{ -'sp', -'Sp', -'sc', -'SContinue', -'cl', -'Close', -'le', -'OLetter', -'ex', -'Extend', -'up', -'Upper', -'st', -'STerm', -'xx', -'Other', -'nu', -'Numeric', -'fo', -'Format', -'cr', -'CR', -'se', -'Sep', -'lo', -'Lower', -'at', -'ATerm', -'lf', -'LF', -}, -); - -%utf8::PVA_reverse = ( -'sc', -{ -'newtailue', -'Talu', -'kayahli', -'Kali', -'hebrew', -'Hebr', -'phoenician', -'Phnx', -'linearb', -'Linb', -'cham', -'Cham', -'ugaritic', -'Ugar', -'sundanese', -'Sund', -'armenian', -'Armn', -'myanmar', -'Mymr', -'gurmukhi', -'Guru', -'greek', -'Grek', -'coptic', -'Copt', -'thaana', -'Thaa', -'katakana', -'Kana', -'tibetan', -'Tibt', -'mongolian', -'Mong', -'malayalam', -'Mlym', -'oriya', -'Orya', -'carian', -'Cari', -'buhid', -'Buhd', -'cypriot', -'Cprt', -'bengali', -'Beng', -'katakanaorhiragana', -'Hrkt', -'oldpersian', -'Xpeo', -'tagalog', -'Tglg', -'cherokee', -'Cher', -'ogham', -'Ogam', -'common', -'Zyyy', -'saurashtra', -'Saur', -'vai', -'Vaii', -'ethiopic', -'Ethi', -'han', -'Hani', -'lydian', -'Lydi', -'gothic', -'Goth', -'osmanya', -'Osma', -'devanagari', -'Deva', -'buginese', -'Bugi', -'canadianaboriginal', -'Cans', -'gujarati', -'Gujr', -'latin', -'Latn', -'rejang', -'Rjng', -'hangul', -'Hang', -'deseret', -'Dsrt', -'olchiki', -'Olck', -'inherited', -'Qaai', -'taile', -'Tale', -'tifinagh', -'Tfng', -'cyrillic', -'Cyrl', -'lao', -'Laoo', -'khmer', -'Khmr', -'balinese', -'Bali', -'hiragana', -'Hira', -'lepcha', -'Lepc', -'thai', -'Thai', -'yi', -'Yiii', -'sylotinagri', -'Sylo', -'bopomofo', -'Bopo', -'telugu', -'Telu', -'limbu', -'Limb', -'cuneiform', -'Xsux', -'unknown', -'Zzzz', -'syriac', -'Syrc', -'hanunoo', -'Hano', -'braille', -'Brai', -'tamil', -'Taml', -'lycian', -'Lyci', -'nko', -'Nkoo', -'runic', -'Runr', -'glagolitic', -'Glag', -'georgian', -'Geor', -'kharoshthi', -'Khar', -'kannada', -'Knda', -'arabic', -'Arab', -'tagbanwa', -'Tagb', -'sinhala', -'Sinh', -'olditalic', -'Ital', -'phagspa', -'Phag', -'shavian', -'Shaw', -}, -'JSN', -{ -'gg', -'GG', -'lm', -'LM', -'a', -'A', -'ya', -'YA', -'d', -'D', -'yae', -'YAE', -'nh', -'NH', -'lp', -'LP', -'j', -'J', -'u', -'U', -'jj', -'JJ', -'ss', -'SS', -'k', -'K', -'g', -'G', -'bb', -'BB', -'lb', -'LB', -'t', -'T', -'e', -'E', -'dd', -'DD', -'s', -'S', -'lt', -'LT', -'c', -'C', -'gs', -'GS', -'b', -'B', -'nj', -'NJ', -'lh', -'LH', -'yi', -'YI', -'weo', -'WEO', -'r', -'R', -'ls', -'LS', -'we', -'WE', -'bs', -'BS', -'lg', -'LG', -'yo', -'YO', -'oe', -'OE', -'h', -'H', -'yu', -'YU', -'wi', -'WI', -'eu', -'EU', -'wa', -'WA', -'i', -'I', -'n', -'N', -'ye', -'YE', -'eo', -'EO', -'m', -'M', -'yeo', -'YEO', -'l', -'L', -'p', -'P', -'ng', -'NG', -'wae', -'WAE', -'ae', -'AE', -'o', -'O', -}, -'Pat_Syn', -{ -'yes', -'Y', -'no', -'N', -}, -'IDS', -{ -'yes', -'Y', -'no', -'N', -}, -'Dep', -{ -'yes', -'Y', -'no', -'N', -}, -'OUpper', -{ -'yes', -'Y', -'no', -'N', -}, -'OAlpha', -{ -'yes', -'Y', -'no', -'N', -}, -'Lower', -{ -'yes', -'Y', -'no', -'N', -}, -'GCB', -{ -'extend', -'EX', -'spacingmark', -'SM', -'v', -'V', -'prepend', -'PP', -'lv', -'LV', -'l', -'L', -'lvt', -'LVT', -'cr', -'CR', -'other', -'XX', -'lf', -'LF', -'t', -'T', -'control', -'CN', -}, -'lb', -{ -'carriagereturn', -'CR', -'ideographic', -'ID', -'hyphen', -'HY', -'ambiguous', -'AI', -'contingentbreak', -'CB', -'complexcontext', -'SA', -'prefixnumeric', -'PR', -'jl', -'JL', -'inseparable', -'IN', -'breaksymbols', -'SY', -'breakafter', -'BA', -'breakbefore', -'BB', -'postfixnumeric', -'PO', -'glue', -'GL', -'wordjoiner', -'WJ', -'breakboth', -'B2', -'quotation', -'QU', -'combiningmark', -'CM', -'nonstarter', -'NS', -'linefeed', -'LF', -'alphabetic', -'AL', -'surrogate', -'SG', -'mandatorybreak', -'BK', -'unknown', -'XX', -'exclamation', -'EX', -'openpunctuation', -'OP', -'jt', -'JT', -'closepunctuation', -'CL', -'space', -'SP', -'zwspace', -'ZW', -'h2', -'H2', -'infixnumeric', -'IS', -'nextline', -'NL', -'numeric', -'NU', -'h3', -'H3', -'jv', -'JV', -}, -'AHex', -{ -'yes', -'Y', -'no', -'N', -}, -'DI', -{ -'yes', -'Y', -'no', -'N', -}, -'OLower', -{ -'yes', -'Y', -'no', -'N', -}, -'CE', -{ -'yes', -'Y', -'no', -'N', -}, -'XO_NFKC', -{ -'yes', -'Y', -'no', -'N', -}, -'LOE', -{ -'yes', -'Y', -'no', -'N', -}, -'WSpace', -{ -'yes', -'Y', -'no', -'N', -}, -'XO_NFC', -{ -'yes', -'Y', -'no', -'N', -}, -'Bidi_M', -{ -'yes', -'Y', -'no', -'N', -}, -'XIDC', -{ -'yes', -'Y', -'no', -'N', -}, -'Radical', -{ -'yes', -'Y', -'no', -'N', -}, -'Alpha', -{ -'yes', -'Y', -'no', -'N', -}, -'STerm', -{ -'yes', -'Y', -'no', -'N', -}, -'nt', -{ -'none', -'None', -'digit', -'Di', -'numeric', -'Nu', -'decimal', -'De', -}, -'ea', -{ -'halfwidth', -'H', -'fullwidth', -'F', -'ambiguous', -'A', -'narrow', -'Na', -'wide', -'W', -'neutral', -'N', -}, -'Ext', -{ -'yes', -'Y', -'no', -'N', -}, -'XO_NFD', -{ -'yes', -'Y', -'no', -'N', -}, -'OMath', -{ -'yes', -'Y', -'no', -'N', -}, -'ODI', -{ -'yes', -'Y', -'no', -'N', -}, -'gc', -{ -'modifiersymbol', -'Sk', -'letternumber', -'Nl', -'connectorpunctuation', -'Pc', -'spacingmark', -'Mc', -'mark', -'M', -'unassigned', -'Cn', -'enclosingmark', -'Me', -'lineseparator', -'Zl', -'lowercaseletter', -'Ll', -'symbol', -'S', -'letter', -'L', -'othernumber', -'No', -'paragraphseparator', -'Zp', -'modifierletter', -'Lm', -'titlecaseletter', -'Lt', -'decimalnumber', -'Nd', -'other', -'C', -'mathsymbol', -'Sm', -'surrogate', -'Cs', -'otherletter', -'Lo', -'nonspacingmark', -'Mn', -'number', -'N', -'uppercaseletter', -'Lu', -'spaceseparator', -'Zs', -'privateuse', -'Co', -'openpunctuation', -'Ps', -'punctuation', -'P', -'control', -'Cc', -'casedletter', -'LC', -'closepunctuation', -'Pe', -'otherpunctuation', -'Po', -'finalpunctuation', -'Pf', -'format', -'Cf', -'initialpunctuation', -'Pi', -'separator', -'Z', -'othersymbol', -'So', -'dashpunctuation', -'Pd', -'currencysymbol', -'Sc', -}, -'IDSB', -{ -'yes', -'Y', -'no', -'N', -}, -'NChar', -{ -'yes', -'Y', -'no', -'N', -}, -'UIdeo', -{ -'yes', -'Y', -'no', -'N', -}, -'Term', -{ -'yes', -'Y', -'no', -'N', -}, -'QMark', -{ -'yes', -'Y', -'no', -'N', -}, -'Hyphen', -{ -'yes', -'Y', -'no', -'N', -}, -'XIDS', -{ -'yes', -'Y', -'no', -'N', -}, -'NFC_QC', -{ -'yes', -'Y', -'maybe', -'M', -'no', -'N', -}, -'Dia', -{ -'yes', -'Y', -'no', -'N', -}, -'Bidi_C', -{ -'yes', -'Y', -'no', -'N', -}, -'hst', -{ -'lvtsyllable', -'LVT', -'lvsyllable', -'LV', -'leadingjamo', -'L', -'notapplicable', -'NA', -'voweljamo', -'V', -'trailingjamo', -'T', -}, -'WB', -{ -'extend', -'Extend', -'midletter', -'ML', -'midnumlet', -'MB', -'cr', -'CR', -'format', -'FO', -'katakana', -'KA', -'other', -'XX', -'numeric', -'NU', -'midnum', -'MN', -'extendnumlet', -'EX', -'lf', -'LF', -'newline', -'NL', -'aletter', -'LE', -}, -'Math', -{ -'yes', -'Y', -'no', -'N', -}, -'Pat_WS', -{ -'yes', -'Y', -'no', -'N', -}, -'SD', -{ -'yes', -'Y', -'no', -'N', -}, -'Upper', -{ -'yes', -'Y', -'no', -'N', -}, -'OIDC', -{ -'yes', -'Y', -'no', -'N', -}, -'IDST', -{ -'yes', -'Y', -'no', -'N', -}, -'Gr_Ext', -{ -'yes', -'Y', -'no', -'N', -}, -'Comp_Ex', -{ -'yes', -'Y', -'no', -'N', -}, -'NFD_QC', -{ -'yes', -'Y', -'no', -'N', -}, -'VS', -{ -'yes', -'Y', -'no', -'N', -}, -'Join_C', -{ -'yes', -'Y', -'no', -'N', -}, -'ccc', -{ -'left', -'L', -'attachedbelowleft', -'ATBL', -'belowleft', -'BL', -'aboveright', -'AR', -'kanavoicing', -'KV', -'above', -'A', -'aboveleft', -'AL', -'nukta', -'NK', -'below', -'B', -'doublebelow', -'DB', -'virama', -'VR', -'belowright', -'BR', -'notreordered', -'NR', -'attachedbelow', -'ATB', -'right', -'R', -'iotasubscript', -'IS', -'doubleabove', -'DA', -'attachedaboveright', -'ATAR', -'overlay', -'OV', -}, -'dt', -{ -'small', -'Sml', -'none', -'None', -'isolated', -'Iso', -'narrow', -'Nar', -'square', -'Sqr', -'nobreak', -'Nb', -'fraction', -'Fra', -'font', -'Font', -'medial', -'Med', -'wide', -'Wide', -'canonical', -'Can', -'circle', -'Enc', -'super', -'Sup', -'vertical', -'Vert', -'final', -'Fin', -'compat', -'Com', -'sub', -'Sub', -'initial', -'Init', -}, -'Ideo', -{ -'yes', -'Y', -'no', -'N', -}, -'Gr_Link', -{ -'yes', -'Y', -'no', -'N', -}, -'OGr_Ext', -{ -'yes', -'Y', -'no', -'N', -}, -'XO_NFKD', -{ -'yes', -'Y', -'no', -'N', -}, -'NFKC_QC', -{ -'yes', -'Y', -'maybe', -'M', -'no', -'N', -}, -'bc', -{ -'nonspacingmark', -'NSM', -'whitespace', -'WS', -'righttoleft', -'R', -'lefttoright', -'L', -'boundaryneutral', -'BN', -'segmentseparator', -'S', -'lefttorightembedding', -'LRE', -'europeanterminator', -'ET', -'righttoleftembedding', -'RLE', -'righttoleftoverride', -'RLO', -'lefttorightoverride', -'LRO', -'europeanseparator', -'ES', -'europeannumber', -'EN', -'commonseparator', -'CS', -'arabicletter', -'AL', -'paragraphseparator', -'B', -'otherneutral', -'ON', -'popdirectionalformat', -'PDF', -'arabicnumber', -'AN', -}, -'Dash', -{ -'yes', -'Y', -'no', -'N', -}, -'jt', -{ -'leftjoining', -'L', -'transparent', -'T', -'nonjoining', -'U', -'rightjoining', -'R', -'dualjoining', -'D', -'joincausing', -'C', -}, -'NFKD_QC', -{ -'yes', -'Y', -'no', -'N', -}, -'IDC', -{ -'yes', -'Y', -'no', -'N', -}, -'OIDS', -{ -'yes', -'Y', -'no', -'N', -}, -'Gr_Base', -{ -'yes', -'Y', -'no', -'N', -}, -'Hex', -{ -'yes', -'Y', -'no', -'N', -}, -'SB', -{ -'sp', -'SP', -'extend', -'EX', -'upper', -'UP', -'sterm', -'ST', -'scontinue', -'SC', -'aterm', -'AT', -'close', -'CL', -'oletter', -'LE', -'sep', -'SE', -'cr', -'CR', -'format', -'FO', -'other', -'XX', -'lower', -'LO', -'numeric', -'NU', -'lf', -'LF', -}, -); - -%utf8::PVA_abbr_map = ( -'JSN', -{ -'gg', -'GG', -'lm', -'LM', -'a', -'A', -'ya', -'YA', -'d', -'D', -'yae', -'YAE', -'nh', -'NH', -'lp', -'LP', -'j', -'J', -'u', -'U', -'jj', -'JJ', -'ss', -'SS', -'k', -'K', -'g', -'G', -'bb', -'BB', -'lb', -'LB', -'t', -'T', -'e', -'E', -'dd', -'DD', -'s', -'S', -'lt', -'LT', -'c', -'C', -'gs', -'GS', -'b', -'B', -'nj', -'NJ', -'lh', -'LH', -'yi', -'YI', -'weo', -'WEO', -'r', -'R', -'ls', -'LS', -'we', -'WE', -'bs', -'BS', -'lg', -'LG', -'yo', -'YO', -'oe', -'OE', -'h', -'H', -'yu', -'YU', -'wi', -'WI', -'eu', -'EU', -'wa', -'WA', -'i', -'I', -'n', -'N', -'ye', -'YE', -'eo', -'EO', -'m', -'M', -'yeo', -'YEO', -'l', -'L', -'p', -'P', -'ng', -'NG', -'wae', -'WAE', -'ae', -'AE', -'o', -'O', -}, -'Pat_Syn', -{ -'y', -'Y', -'n', -'N', -}, -'IDS', -{ -'y', -'Y', -'n', -'N', -}, -'gc_sc', -{ -'runr', -'Runr', -'osma', -'Osma', -'sc', -'Sc', -'mc', -'Mc', -'hano', -'Hano', -'cans', -'Cans', -'lm', -'Lm', -'cn', -'Cn', -'knda', -'Knda', -'vaii', -'Vaii', -'phnx', -'Phnx', -'orya', -'Orya', -'cher', -'Cher', -'khmr', -'Khmr', -'ogam', -'Ogam', -'lo', -'Lo', -'saur', -'Saur', -'po', -'Po', -'cham', -'Cham', -'co', -'Co', -'ital', -'Ital', -'ll', -'Ll', -'tibt', -'Tibt', -'lydi', -'Lydi', -'kana', -'Kana', -'zp', -'Zp', -'lepc', -'Lepc', -'gujr', -'Gujr', -'thaa', -'Thaa', -'cs', -'Cs', -'copt', -'Copt', -'z', -'Z', -'ps', -'Ps', -'sylo', -'Sylo', -'talu', -'Talu', -'laoo', -'Laoo', -'sinh', -'Sinh', -'zl', -'Zl', -'pc', -'Pc', -'hira', -'Hira', -'cari', -'Cari', -'limb', -'Limb', -'mymr', -'Mymr', -'yiii', -'Yiii', -'arab', -'Arab', -'deva', -'Deva', -'xpeo', -'Xpeo', -'cprt', -'Cprt', -'bugi', -'Bugi', -'sk', -'Sk', -'hebr', -'Hebr', -'lu', -'Lu', -'pe', -'Pe', -'tglg', -'Tglg', -'sund', -'Sund', -'tagb', -'Tagb', -'mlym', -'Mlym', -'pf', -'Pf', -'no', -'No', -'grek', -'Grek', -'ethi', -'Ethi', -'phag', -'Phag', -'mong', -'Mong', -'cc', -'Cc', -'hrkt', -'Hrkt', -'armn', -'Armn', -'zs', -'Zs', -'so', -'So', -'hani', -'Hani', -'shaw', -'Shaw', -'taml', -'Taml', -'me', -'Me', -'cf', -'Cf', -'nd', -'Nd', -'s', -'S', -'guru', -'Guru', -'xsux', -'Xsux', -'ugar', -'Ugar', -'qaai', -'Qaai', -'lt', -'Lt', -'c', -'C', -'pd', -'Pd', -'cyrl', -'Cyrl', -'l&', -'LC', -'thai', -'Thai', -'zzzz', -'Zzzz', -'olck', -'Olck', -'beng', -'Beng', -'bali', -'Bali', -'kali', -'Kali', -'brai', -'Brai', -'telu', -'Telu', -'pi', -'Pi', -'geor', -'Geor', -'glag', -'Glag', -'hang', -'Hang', -'syrc', -'Syrc', -'tfng', -'Tfng', -'n', -'N', -'dsrt', -'Dsrt', -'buhd', -'Buhd', -'m', -'M', -'khar', -'Khar', -'sm', -'Sm', -'nl', -'Nl', -'bopo', -'Bopo', -'linb', -'Linb', -'mn', -'Mn', -'l', -'L', -'lyci', -'Lyci', -'p', -'P', -'goth', -'Goth', -'rjng', -'Rjng', -'tale', -'Tale', -'lc', -'LC', -'zyyy', -'Zyyy', -'latn', -'Latn', -'nkoo', -'Nkoo', -}, -'Dep', -{ -'y', -'Y', -'n', -'N', -}, -'OUpper', -{ -'y', -'Y', -'n', -'N', -}, -'OAlpha', -{ -'y', -'Y', -'n', -'N', -}, -'Lower', -{ -'y', -'Y', -'n', -'N', -}, -'GCB', -{ -'cn', -'CN', -'ex', -'EX', -'v', -'V', -'pp', -'PP', -'lv', -'LV', -'xx', -'XX', -'sm', -'SM', -'l', -'L', -'lvt', -'LVT', -'cr', -'CR', -'lf', -'LF', -'t', -'T', -}, -'lb', -{ -'sp', -'SP', -'ba', -'BA', -'gl', -'GL', -'xx', -'XX', -'nu', -'NU', -'cb', -'CB', -'sy', -'SY', -'cr', -'CR', -'in', -'IN', -'bb', -'BB', -'sg', -'SG', -'sa', -'SA', -'po', -'PO', -'jl', -'JL', -'id', -'ID', -'al', -'AL', -'bk', -'BK', -'pr', -'PR', -'b2', -'B2', -'op', -'OP', -'cl', -'CL', -'is', -'IS', -'qu', -'QU', -'hy', -'HY', -'wj', -'WJ', -'zw', -'ZW', -'jt', -'JT', -'ex', -'EX', -'cm', -'CM', -'h2', -'H2', -'nl', -'NL', -'ns', -'NS', -'h3', -'H3', -'ai', -'AI', -'lf', -'LF', -'jv', -'JV', -}, -'AHex', -{ -'y', -'Y', -'n', -'N', -}, -'DI', -{ -'y', -'Y', -'n', -'N', -}, -'OLower', -{ -'y', -'Y', -'n', -'N', -}, -'CE', -{ -'y', -'Y', -'n', -'N', -}, -'XO_NFKC', -{ -'y', -'Y', -'n', -'N', -}, -'LOE', -{ -'y', -'Y', -'n', -'N', -}, -'WSpace', -{ -'y', -'Y', -'n', -'N', -}, -'XO_NFC', -{ -'y', -'Y', -'n', -'N', -}, -'Bidi_M', -{ -'y', -'Y', -'n', -'N', -}, -'XIDC', -{ -'y', -'Y', -'n', -'N', -}, -'Radical', -{ -'y', -'Y', -'n', -'N', -}, -'Alpha', -{ -'y', -'Y', -'n', -'N', -}, -'STerm', -{ -'y', -'Y', -'n', -'N', -}, -'nt', -{ -'none', -'None', -'di', -'Di', -'de', -'De', -'nu', -'Nu', -}, -'ea', -{ -'w', -'W', -'n', -'N', -'h', -'H', -'a', -'A', -'f', -'F', -'na', -'Na', -}, -'Ext', -{ -'y', -'Y', -'n', -'N', -}, -'XO_NFD', -{ -'y', -'Y', -'n', -'N', -}, -'OMath', -{ -'y', -'Y', -'n', -'N', -}, -'ODI', -{ -'y', -'Y', -'n', -'N', -}, -'IDSB', -{ -'y', -'Y', -'n', -'N', -}, -'NChar', -{ -'y', -'Y', -'n', -'N', -}, -'UIdeo', -{ -'y', -'Y', -'n', -'N', -}, -'Term', -{ -'y', -'Y', -'n', -'N', -}, -'QMark', -{ -'y', -'Y', -'n', -'N', -}, -'Hyphen', -{ -'y', -'Y', -'n', -'N', -}, -'XIDS', -{ -'y', -'Y', -'n', -'N', -}, -'NFC_QC', -{ -'y', -'Y', -'n', -'N', -'m', -'M', -}, -'Dia', -{ -'y', -'Y', -'n', -'N', -}, -'Bidi_C', -{ -'y', -'Y', -'n', -'N', -}, -'hst', -{ -'l', -'L', -'lvt', -'LVT', -'v', -'V', -'lv', -'LV', -'t', -'T', -'na', -'NA', -}, -'WB', -{ -'extend', -'Extend', -'ml', -'ML', -'mb', -'MB', -'le', -'LE', -'ex', -'EX', -'xx', -'XX', -'nu', -'NU', -'nl', -'NL', -'mn', -'MN', -'fo', -'FO', -'cr', -'CR', -'ka', -'KA', -'lf', -'LF', -}, -'Math', -{ -'y', -'Y', -'n', -'N', -}, -'Pat_WS', -{ -'y', -'Y', -'n', -'N', -}, -'SD', -{ -'y', -'Y', -'n', -'N', -}, -'Upper', -{ -'y', -'Y', -'n', -'N', -}, -'OIDC', -{ -'y', -'Y', -'n', -'N', -}, -'IDST', -{ -'y', -'Y', -'n', -'N', -}, -'Gr_Ext', -{ -'y', -'Y', -'n', -'N', -}, -'Comp_Ex', -{ -'y', -'Y', -'n', -'N', -}, -'NFD_QC', -{ -'y', -'Y', -'n', -'N', -}, -'VS', -{ -'y', -'Y', -'n', -'N', -}, -'Join_C', -{ -'y', -'Y', -'n', -'N', -}, -'ccc', -{ -'atb', -'ATB', -'db', -'DB', -'a', -'A', -'r', -'R', -'da', -'DA', -'is', -'IS', -'nr', -'NR', -'ov', -'OV', -'br', -'BR', -'nk', -'NK', -'atbl', -'ATBL', -'al', -'AL', -'ar', -'AR', -'atar', -'ATAR', -'l', -'L', -'b', -'B', -'vr', -'VR', -'kv', -'KV', -'bl', -'BL', -}, -'dt', -{ -'fra', -'Fra', -'none', -'None', -'sml', -'Sml', -'enc', -'Enc', -'font', -'Font', -'init', -'Init', -'nb', -'Nb', -'iso', -'Iso', -'sup', -'Sup', -'fin', -'Fin', -'wide', -'Wide', -'nar', -'Nar', -'can', -'Can', -'med', -'Med', -'sub', -'Sub', -'vert', -'Vert', -'sqr', -'Sqr', -'com', -'Com', -}, -'Ideo', -{ -'y', -'Y', -'n', -'N', -}, -'Gr_Link', -{ -'y', -'Y', -'n', -'N', -}, -'OGr_Ext', -{ -'y', -'Y', -'n', -'N', -}, -'XO_NFKD', -{ -'y', -'Y', -'n', -'N', -}, -'NFKC_QC', -{ -'y', -'Y', -'n', -'N', -'m', -'M', -}, -'bc', -{ -'r', -'R', -'rlo', -'RLO', -'es', -'ES', -'ws', -'WS', -'rle', -'RLE', -'on', -'ON', -'bn', -'BN', -'et', -'ET', -'pdf', -'PDF', -'lro', -'LRO', -'s', -'S', -'al', -'AL', -'en', -'EN', -'l', -'L', -'b', -'B', -'lre', -'LRE', -'cs', -'CS', -'nsm', -'NSM', -'an', -'AN', -}, -'Dash', -{ -'y', -'Y', -'n', -'N', -}, -'jt', -{ -'l', -'L', -'u', -'U', -'c', -'C', -'r', -'R', -'d', -'D', -'t', -'T', -}, -'NFKD_QC', -{ -'y', -'Y', -'n', -'N', -}, -'IDC', -{ -'y', -'Y', -'n', -'N', -}, -'OIDS', -{ -'y', -'Y', -'n', -'N', -}, -'Gr_Base', -{ -'y', -'Y', -'n', -'N', -}, -'Hex', -{ -'y', -'Y', -'n', -'N', -}, -'SB', -{ -'sp', -'SP', -'sc', -'SC', -'cl', -'CL', -'le', -'LE', -'ex', -'EX', -'up', -'UP', -'st', -'ST', -'xx', -'XX', -'nu', -'NU', -'fo', -'FO', -'cr', -'CR', -'se', -'SE', -'lo', -'LO', -'at', -'AT', -'lf', -'LF', -}, -); -1; diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Digit.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Digit.pl deleted file mode 100644 index 470916a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Digit.pl +++ /dev/null @@ -1,380 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -return <<'END'; -0030 0 -0031 1 -0032 2 -0033 3 -0034 4 -0035 5 -0036 6 -0037 7 -0038 8 -0039 9 -0660 0 -0661 1 -0662 2 -0663 3 -0664 4 -0665 5 -0666 6 -0667 7 -0668 8 -0669 9 -06F0 0 -06F1 1 -06F2 2 -06F3 3 -06F4 4 -06F5 5 -06F6 6 -06F7 7 -06F8 8 -06F9 9 -07C0 0 -07C1 1 -07C2 2 -07C3 3 -07C4 4 -07C5 5 -07C6 6 -07C7 7 -07C8 8 -07C9 9 -0966 0 -0967 1 -0968 2 -0969 3 -096A 4 -096B 5 -096C 6 -096D 7 -096E 8 -096F 9 -09E6 0 -09E7 1 -09E8 2 -09E9 3 -09EA 4 -09EB 5 -09EC 6 -09ED 7 -09EE 8 -09EF 9 -0A66 0 -0A67 1 -0A68 2 -0A69 3 -0A6A 4 -0A6B 5 -0A6C 6 -0A6D 7 -0A6E 8 -0A6F 9 -0AE6 0 -0AE7 1 -0AE8 2 -0AE9 3 -0AEA 4 -0AEB 5 -0AEC 6 -0AED 7 -0AEE 8 -0AEF 9 -0B66 0 -0B67 1 -0B68 2 -0B69 3 -0B6A 4 -0B6B 5 -0B6C 6 -0B6D 7 -0B6E 8 -0B6F 9 -0BE6 0 -0BE7 1 -0BE8 2 -0BE9 3 -0BEA 4 -0BEB 5 -0BEC 6 -0BED 7 -0BEE 8 -0BEF 9 -0C66 0 -0C67 1 -0C68 2 -0C69 3 -0C6A 4 -0C6B 5 -0C6C 6 -0C6D 7 -0C6E 8 -0C6F 9 -0CE6 0 -0CE7 1 -0CE8 2 -0CE9 3 -0CEA 4 -0CEB 5 -0CEC 6 -0CED 7 -0CEE 8 -0CEF 9 -0D66 0 -0D67 1 -0D68 2 -0D69 3 -0D6A 4 -0D6B 5 -0D6C 6 -0D6D 7 -0D6E 8 -0D6F 9 -0E50 0 -0E51 1 -0E52 2 -0E53 3 -0E54 4 -0E55 5 -0E56 6 -0E57 7 -0E58 8 -0E59 9 -0ED0 0 -0ED1 1 -0ED2 2 -0ED3 3 -0ED4 4 -0ED5 5 -0ED6 6 -0ED7 7 -0ED8 8 -0ED9 9 -0F20 0 -0F21 1 -0F22 2 -0F23 3 -0F24 4 -0F25 5 -0F26 6 -0F27 7 -0F28 8 -0F29 9 -1040 0 -1041 1 -1042 2 -1043 3 -1044 4 -1045 5 -1046 6 -1047 7 -1048 8 -1049 9 -1090 0 -1091 1 -1092 2 -1093 3 -1094 4 -1095 5 -1096 6 -1097 7 -1098 8 -1099 9 -17E0 0 -17E1 1 -17E2 2 -17E3 3 -17E4 4 -17E5 5 -17E6 6 -17E7 7 -17E8 8 -17E9 9 -1810 0 -1811 1 -1812 2 -1813 3 -1814 4 -1815 5 -1816 6 -1817 7 -1818 8 -1819 9 -1946 0 -1947 1 -1948 2 -1949 3 -194A 4 -194B 5 -194C 6 -194D 7 -194E 8 -194F 9 -19D0 0 -19D1 1 -19D2 2 -19D3 3 -19D4 4 -19D5 5 -19D6 6 -19D7 7 -19D8 8 -19D9 9 -1B50 0 -1B51 1 -1B52 2 -1B53 3 -1B54 4 -1B55 5 -1B56 6 -1B57 7 -1B58 8 -1B59 9 -1BB0 0 -1BB1 1 -1BB2 2 -1BB3 3 -1BB4 4 -1BB5 5 -1BB6 6 -1BB7 7 -1BB8 8 -1BB9 9 -1C40 0 -1C41 1 -1C42 2 -1C43 3 -1C44 4 -1C45 5 -1C46 6 -1C47 7 -1C48 8 -1C49 9 -1C50 0 -1C51 1 -1C52 2 -1C53 3 -1C54 4 -1C55 5 -1C56 6 -1C57 7 -1C58 8 -1C59 9 -A620 0 -A621 1 -A622 2 -A623 3 -A624 4 -A625 5 -A626 6 -A627 7 -A628 8 -A629 9 -A8D0 0 -A8D1 1 -A8D2 2 -A8D3 3 -A8D4 4 -A8D5 5 -A8D6 6 -A8D7 7 -A8D8 8 -A8D9 9 -A900 0 -A901 1 -A902 2 -A903 3 -A904 4 -A905 5 -A906 6 -A907 7 -A908 8 -A909 9 -AA50 0 -AA51 1 -AA52 2 -AA53 3 -AA54 4 -AA55 5 -AA56 6 -AA57 7 -AA58 8 -AA59 9 -FF10 0 -FF11 1 -FF12 2 -FF13 3 -FF14 4 -FF15 5 -FF16 6 -FF17 7 -FF18 8 -FF19 9 -104A0 0 -104A1 1 -104A2 2 -104A3 3 -104A4 4 -104A5 5 -104A6 6 -104A7 7 -104A8 8 -104A9 9 -1D7CE 0 -1D7CF 1 -1D7D0 2 -1D7D1 3 -1D7D2 4 -1D7D3 5 -1D7D4 6 -1D7D5 7 -1D7D6 8 -1D7D7 9 -1D7D8 0 -1D7D9 1 -1D7DA 2 -1D7DB 3 -1D7DC 4 -1D7DD 5 -1D7DE 6 -1D7DF 7 -1D7E0 8 -1D7E1 9 -1D7E2 0 -1D7E3 1 -1D7E4 2 -1D7E5 3 -1D7E6 4 -1D7E7 5 -1D7E8 6 -1D7E9 7 -1D7EA 8 -1D7EB 9 -1D7EC 0 -1D7ED 1 -1D7EE 2 -1D7EF 3 -1D7F0 4 -1D7F1 5 -1D7F2 6 -1D7F3 7 -1D7F4 8 -1D7F5 9 -1D7F6 0 -1D7F7 1 -1D7F8 2 -1D7F9 3 -1D7FA 4 -1D7FB 5 -1D7FC 6 -1D7FD 7 -1D7FE 8 -1D7FF 9 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Fold.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Fold.pl deleted file mode 100644 index 26563bc..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Fold.pl +++ /dev/null @@ -1,1127 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - - -# The key: UTF-8 _bytes_, the value: UTF-8 (speed hack) -%utf8::ToSpecFold = -( -"\xC3\x9F" => "\x{0073}\x{0073}", -"\xC4\xB0" => "\x{0069}\x{0307}", -"\xC5\x89" => "\x{02BC}\x{006E}", -"\xC7\xB0" => "\x{006A}\x{030C}", -"\xCE\x90" => "\x{03B9}\x{0308}\x{0301}", -"\xCE\xB0" => "\x{03C5}\x{0308}\x{0301}", -"\xD6\x87" => "\x{0565}\x{0582}", -"\xE1\xBA\x96" => "\x{0068}\x{0331}", -"\xE1\xBA\x97" => "\x{0074}\x{0308}", -"\xE1\xBA\x98" => "\x{0077}\x{030A}", -"\xE1\xBA\x99" => "\x{0079}\x{030A}", -"\xE1\xBA\x9A" => "\x{0061}\x{02BE}", -"\xE1\xBA\x9E" => "\x{0073}\x{0073}", -"\xE1\xBD\x90" => "\x{03C5}\x{0313}", -"\xE1\xBD\x92" => "\x{03C5}\x{0313}\x{0300}", -"\xE1\xBD\x94" => "\x{03C5}\x{0313}\x{0301}", -"\xE1\xBD\x96" => "\x{03C5}\x{0313}\x{0342}", -"\xE1\xBE\x80" => "\x{1F00}\x{03B9}", -"\xE1\xBE\x81" => "\x{1F01}\x{03B9}", -"\xE1\xBE\x82" => "\x{1F02}\x{03B9}", -"\xE1\xBE\x83" => "\x{1F03}\x{03B9}", -"\xE1\xBE\x84" => "\x{1F04}\x{03B9}", -"\xE1\xBE\x85" => "\x{1F05}\x{03B9}", -"\xE1\xBE\x86" => "\x{1F06}\x{03B9}", -"\xE1\xBE\x87" => "\x{1F07}\x{03B9}", -"\xE1\xBE\x88" => "\x{1F00}\x{03B9}", -"\xE1\xBE\x89" => "\x{1F01}\x{03B9}", -"\xE1\xBE\x8A" => "\x{1F02}\x{03B9}", -"\xE1\xBE\x8B" => "\x{1F03}\x{03B9}", -"\xE1\xBE\x8C" => "\x{1F04}\x{03B9}", -"\xE1\xBE\x8D" => "\x{1F05}\x{03B9}", -"\xE1\xBE\x8E" => "\x{1F06}\x{03B9}", -"\xE1\xBE\x8F" => "\x{1F07}\x{03B9}", -"\xE1\xBE\x90" => "\x{1F20}\x{03B9}", -"\xE1\xBE\x91" => "\x{1F21}\x{03B9}", -"\xE1\xBE\x92" => "\x{1F22}\x{03B9}", -"\xE1\xBE\x93" => "\x{1F23}\x{03B9}", -"\xE1\xBE\x94" => "\x{1F24}\x{03B9}", -"\xE1\xBE\x95" => "\x{1F25}\x{03B9}", -"\xE1\xBE\x96" => "\x{1F26}\x{03B9}", -"\xE1\xBE\x97" => "\x{1F27}\x{03B9}", -"\xE1\xBE\x98" => "\x{1F20}\x{03B9}", -"\xE1\xBE\x99" => "\x{1F21}\x{03B9}", -"\xE1\xBE\x9A" => "\x{1F22}\x{03B9}", -"\xE1\xBE\x9B" => "\x{1F23}\x{03B9}", -"\xE1\xBE\x9C" => "\x{1F24}\x{03B9}", -"\xE1\xBE\x9D" => "\x{1F25}\x{03B9}", -"\xE1\xBE\x9E" => "\x{1F26}\x{03B9}", -"\xE1\xBE\x9F" => "\x{1F27}\x{03B9}", -"\xE1\xBE\xA0" => "\x{1F60}\x{03B9}", -"\xE1\xBE\xA1" => "\x{1F61}\x{03B9}", -"\xE1\xBE\xA2" => "\x{1F62}\x{03B9}", -"\xE1\xBE\xA3" => "\x{1F63}\x{03B9}", -"\xE1\xBE\xA4" => "\x{1F64}\x{03B9}", -"\xE1\xBE\xA5" => "\x{1F65}\x{03B9}", -"\xE1\xBE\xA6" => "\x{1F66}\x{03B9}", -"\xE1\xBE\xA7" => "\x{1F67}\x{03B9}", -"\xE1\xBE\xA8" => "\x{1F60}\x{03B9}", -"\xE1\xBE\xA9" => "\x{1F61}\x{03B9}", -"\xE1\xBE\xAA" => "\x{1F62}\x{03B9}", -"\xE1\xBE\xAB" => "\x{1F63}\x{03B9}", -"\xE1\xBE\xAC" => "\x{1F64}\x{03B9}", -"\xE1\xBE\xAD" => "\x{1F65}\x{03B9}", -"\xE1\xBE\xAE" => "\x{1F66}\x{03B9}", -"\xE1\xBE\xAF" => "\x{1F67}\x{03B9}", -"\xE1\xBE\xB2" => "\x{1F70}\x{03B9}", -"\xE1\xBE\xB3" => "\x{03B1}\x{03B9}", -"\xE1\xBE\xB4" => "\x{03AC}\x{03B9}", -"\xE1\xBE\xB6" => "\x{03B1}\x{0342}", -"\xE1\xBE\xB7" => "\x{03B1}\x{0342}\x{03B9}", -"\xE1\xBE\xBC" => "\x{03B1}\x{03B9}", -"\xE1\xBF\x82" => "\x{1F74}\x{03B9}", -"\xE1\xBF\x83" => "\x{03B7}\x{03B9}", -"\xE1\xBF\x84" => "\x{03AE}\x{03B9}", -"\xE1\xBF\x86" => "\x{03B7}\x{0342}", -"\xE1\xBF\x87" => "\x{03B7}\x{0342}\x{03B9}", -"\xE1\xBF\x8C" => "\x{03B7}\x{03B9}", -"\xE1\xBF\x92" => "\x{03B9}\x{0308}\x{0300}", -"\xE1\xBF\x93" => "\x{03B9}\x{0308}\x{0301}", -"\xE1\xBF\x96" => "\x{03B9}\x{0342}", -"\xE1\xBF\x97" => "\x{03B9}\x{0308}\x{0342}", -"\xE1\xBF\xA2" => "\x{03C5}\x{0308}\x{0300}", -"\xE1\xBF\xA3" => "\x{03C5}\x{0308}\x{0301}", -"\xE1\xBF\xA4" => "\x{03C1}\x{0313}", -"\xE1\xBF\xA6" => "\x{03C5}\x{0342}", -"\xE1\xBF\xA7" => "\x{03C5}\x{0308}\x{0342}", -"\xE1\xBF\xB2" => "\x{1F7C}\x{03B9}", -"\xE1\xBF\xB3" => "\x{03C9}\x{03B9}", -"\xE1\xBF\xB4" => "\x{03CE}\x{03B9}", -"\xE1\xBF\xB6" => "\x{03C9}\x{0342}", -"\xE1\xBF\xB7" => "\x{03C9}\x{0342}\x{03B9}", -"\xE1\xBF\xBC" => "\x{03C9}\x{03B9}", -"\xEF\xAC\x80" => "\x{0066}\x{0066}", -"\xEF\xAC\x81" => "\x{0066}\x{0069}", -"\xEF\xAC\x82" => "\x{0066}\x{006C}", -"\xEF\xAC\x83" => "\x{0066}\x{0066}\x{0069}", -"\xEF\xAC\x84" => "\x{0066}\x{0066}\x{006C}", -"\xEF\xAC\x85" => "\x{0073}\x{0074}", -"\xEF\xAC\x86" => "\x{0073}\x{0074}", -"\xEF\xAC\x93" => "\x{0574}\x{0576}", -"\xEF\xAC\x94" => "\x{0574}\x{0565}", -"\xEF\xAC\x95" => "\x{0574}\x{056B}", -"\xEF\xAC\x96" => "\x{057E}\x{0576}", -"\xEF\xAC\x97" => "\x{0574}\x{056D}", -); - -return <<'END'; -0041 0061 -0042 0062 -0043 0063 -0044 0064 -0045 0065 -0046 0066 -0047 0067 -0048 0068 -0049 0069 -004A 006A -004B 006B -004C 006C -004D 006D -004E 006E -004F 006F -0050 0070 -0051 0071 -0052 0072 -0053 0073 -0054 0074 -0055 0075 -0056 0076 -0057 0077 -0058 0078 -0059 0079 -005A 007A -00B5 03BC -00C0 00E0 -00C1 00E1 -00C2 00E2 -00C3 00E3 -00C4 00E4 -00C5 00E5 -00C6 00E6 -00C7 00E7 -00C8 00E8 -00C9 00E9 -00CA 00EA -00CB 00EB -00CC 00EC -00CD 00ED -00CE 00EE -00CF 00EF -00D0 00F0 -00D1 00F1 -00D2 00F2 -00D3 00F3 -00D4 00F4 -00D5 00F5 -00D6 00F6 -00D8 00F8 -00D9 00F9 -00DA 00FA -00DB 00FB -00DC 00FC -00DD 00FD -00DE 00FE -0100 0101 -0102 0103 -0104 0105 -0106 0107 -0108 0109 -010A 010B -010C 010D -010E 010F -0110 0111 -0112 0113 -0114 0115 -0116 0117 -0118 0119 -011A 011B -011C 011D -011E 011F -0120 0121 -0122 0123 -0124 0125 -0126 0127 -0128 0129 -012A 012B -012C 012D -012E 012F -0132 0133 -0134 0135 -0136 0137 -0139 013A -013B 013C -013D 013E -013F 0140 -0141 0142 -0143 0144 -0145 0146 -0147 0148 -014A 014B -014C 014D -014E 014F -0150 0151 -0152 0153 -0154 0155 -0156 0157 -0158 0159 -015A 015B -015C 015D -015E 015F -0160 0161 -0162 0163 -0164 0165 -0166 0167 -0168 0169 -016A 016B -016C 016D -016E 016F -0170 0171 -0172 0173 -0174 0175 -0176 0177 -0178 00FF -0179 017A -017B 017C -017D 017E -017F 0073 -0181 0253 -0182 0183 -0184 0185 -0186 0254 -0187 0188 -0189 0256 -018A 0257 -018B 018C -018E 01DD -018F 0259 -0190 025B -0191 0192 -0193 0260 -0194 0263 -0196 0269 -0197 0268 -0198 0199 -019C 026F -019D 0272 -019F 0275 -01A0 01A1 -01A2 01A3 -01A4 01A5 -01A6 0280 -01A7 01A8 -01A9 0283 -01AC 01AD -01AE 0288 -01AF 01B0 -01B1 028A -01B2 028B -01B3 01B4 -01B5 01B6 -01B7 0292 -01B8 01B9 -01BC 01BD -01C4 01C6 -01C5 01C6 -01C7 01C9 -01C8 01C9 -01CA 01CC -01CB 01CC -01CD 01CE -01CF 01D0 -01D1 01D2 -01D3 01D4 -01D5 01D6 -01D7 01D8 -01D9 01DA -01DB 01DC -01DE 01DF -01E0 01E1 -01E2 01E3 -01E4 01E5 -01E6 01E7 -01E8 01E9 -01EA 01EB -01EC 01ED -01EE 01EF -01F1 01F3 -01F2 01F3 -01F4 01F5 -01F6 0195 -01F7 01BF -01F8 01F9 -01FA 01FB -01FC 01FD -01FE 01FF -0200 0201 -0202 0203 -0204 0205 -0206 0207 -0208 0209 -020A 020B -020C 020D -020E 020F -0210 0211 -0212 0213 -0214 0215 -0216 0217 -0218 0219 -021A 021B -021C 021D -021E 021F -0220 019E -0222 0223 -0224 0225 -0226 0227 -0228 0229 -022A 022B -022C 022D -022E 022F -0230 0231 -0232 0233 -023A 2C65 -023B 023C -023D 019A -023E 2C66 -0241 0242 -0243 0180 -0244 0289 -0245 028C -0246 0247 -0248 0249 -024A 024B -024C 024D -024E 024F -0345 03B9 -0370 0371 -0372 0373 -0376 0377 -0386 03AC -0388 03AD -0389 03AE -038A 03AF -038C 03CC -038E 03CD -038F 03CE -0391 03B1 -0392 03B2 -0393 03B3 -0394 03B4 -0395 03B5 -0396 03B6 -0397 03B7 -0398 03B8 -0399 03B9 -039A 03BA -039B 03BB -039C 03BC -039D 03BD -039E 03BE -039F 03BF -03A0 03C0 -03A1 03C1 -03A3 03C3 -03A4 03C4 -03A5 03C5 -03A6 03C6 -03A7 03C7 -03A8 03C8 -03A9 03C9 -03AA 03CA -03AB 03CB -03C2 03C3 -03CF 03D7 -03D0 03B2 -03D1 03B8 -03D5 03C6 -03D6 03C0 -03D8 03D9 -03DA 03DB -03DC 03DD -03DE 03DF -03E0 03E1 -03E2 03E3 -03E4 03E5 -03E6 03E7 -03E8 03E9 -03EA 03EB -03EC 03ED -03EE 03EF -03F0 03BA -03F1 03C1 -03F4 03B8 -03F5 03B5 -03F7 03F8 -03F9 03F2 -03FA 03FB -03FD 037B -03FE 037C -03FF 037D -0400 0450 -0401 0451 -0402 0452 -0403 0453 -0404 0454 -0405 0455 -0406 0456 -0407 0457 -0408 0458 -0409 0459 -040A 045A -040B 045B -040C 045C -040D 045D -040E 045E -040F 045F -0410 0430 -0411 0431 -0412 0432 -0413 0433 -0414 0434 -0415 0435 -0416 0436 -0417 0437 -0418 0438 -0419 0439 -041A 043A -041B 043B -041C 043C -041D 043D -041E 043E -041F 043F -0420 0440 -0421 0441 -0422 0442 -0423 0443 -0424 0444 -0425 0445 -0426 0446 -0427 0447 -0428 0448 -0429 0449 -042A 044A -042B 044B -042C 044C -042D 044D -042E 044E -042F 044F -0460 0461 -0462 0463 -0464 0465 -0466 0467 -0468 0469 -046A 046B -046C 046D -046E 046F -0470 0471 -0472 0473 -0474 0475 -0476 0477 -0478 0479 -047A 047B -047C 047D -047E 047F -0480 0481 -048A 048B -048C 048D -048E 048F -0490 0491 -0492 0493 -0494 0495 -0496 0497 -0498 0499 -049A 049B -049C 049D -049E 049F -04A0 04A1 -04A2 04A3 -04A4 04A5 -04A6 04A7 -04A8 04A9 -04AA 04AB -04AC 04AD -04AE 04AF -04B0 04B1 -04B2 04B3 -04B4 04B5 -04B6 04B7 -04B8 04B9 -04BA 04BB -04BC 04BD -04BE 04BF -04C0 04CF -04C1 04C2 -04C3 04C4 -04C5 04C6 -04C7 04C8 -04C9 04CA -04CB 04CC -04CD 04CE -04D0 04D1 -04D2 04D3 -04D4 04D5 -04D6 04D7 -04D8 04D9 -04DA 04DB -04DC 04DD -04DE 04DF -04E0 04E1 -04E2 04E3 -04E4 04E5 -04E6 04E7 -04E8 04E9 -04EA 04EB -04EC 04ED -04EE 04EF -04F0 04F1 -04F2 04F3 -04F4 04F5 -04F6 04F7 -04F8 04F9 -04FA 04FB -04FC 04FD -04FE 04FF -0500 0501 -0502 0503 -0504 0505 -0506 0507 -0508 0509 -050A 050B -050C 050D -050E 050F -0510 0511 -0512 0513 -0514 0515 -0516 0517 -0518 0519 -051A 051B -051C 051D -051E 051F -0520 0521 -0522 0523 -0531 0561 -0532 0562 -0533 0563 -0534 0564 -0535 0565 -0536 0566 -0537 0567 -0538 0568 -0539 0569 -053A 056A -053B 056B -053C 056C -053D 056D -053E 056E -053F 056F -0540 0570 -0541 0571 -0542 0572 -0543 0573 -0544 0574 -0545 0575 -0546 0576 -0547 0577 -0548 0578 -0549 0579 -054A 057A -054B 057B -054C 057C -054D 057D -054E 057E -054F 057F -0550 0580 -0551 0581 -0552 0582 -0553 0583 -0554 0584 -0555 0585 -0556 0586 -10A0 2D00 -10A1 2D01 -10A2 2D02 -10A3 2D03 -10A4 2D04 -10A5 2D05 -10A6 2D06 -10A7 2D07 -10A8 2D08 -10A9 2D09 -10AA 2D0A -10AB 2D0B -10AC 2D0C -10AD 2D0D -10AE 2D0E -10AF 2D0F -10B0 2D10 -10B1 2D11 -10B2 2D12 -10B3 2D13 -10B4 2D14 -10B5 2D15 -10B6 2D16 -10B7 2D17 -10B8 2D18 -10B9 2D19 -10BA 2D1A -10BB 2D1B -10BC 2D1C -10BD 2D1D -10BE 2D1E -10BF 2D1F -10C0 2D20 -10C1 2D21 -10C2 2D22 -10C3 2D23 -10C4 2D24 -10C5 2D25 -1E00 1E01 -1E02 1E03 -1E04 1E05 -1E06 1E07 -1E08 1E09 -1E0A 1E0B -1E0C 1E0D -1E0E 1E0F -1E10 1E11 -1E12 1E13 -1E14 1E15 -1E16 1E17 -1E18 1E19 -1E1A 1E1B -1E1C 1E1D -1E1E 1E1F -1E20 1E21 -1E22 1E23 -1E24 1E25 -1E26 1E27 -1E28 1E29 -1E2A 1E2B -1E2C 1E2D -1E2E 1E2F -1E30 1E31 -1E32 1E33 -1E34 1E35 -1E36 1E37 -1E38 1E39 -1E3A 1E3B -1E3C 1E3D -1E3E 1E3F -1E40 1E41 -1E42 1E43 -1E44 1E45 -1E46 1E47 -1E48 1E49 -1E4A 1E4B -1E4C 1E4D -1E4E 1E4F -1E50 1E51 -1E52 1E53 -1E54 1E55 -1E56 1E57 -1E58 1E59 -1E5A 1E5B -1E5C 1E5D -1E5E 1E5F -1E60 1E61 -1E62 1E63 -1E64 1E65 -1E66 1E67 -1E68 1E69 -1E6A 1E6B -1E6C 1E6D -1E6E 1E6F -1E70 1E71 -1E72 1E73 -1E74 1E75 -1E76 1E77 -1E78 1E79 -1E7A 1E7B -1E7C 1E7D -1E7E 1E7F -1E80 1E81 -1E82 1E83 -1E84 1E85 -1E86 1E87 -1E88 1E89 -1E8A 1E8B -1E8C 1E8D -1E8E 1E8F -1E90 1E91 -1E92 1E93 -1E94 1E95 -1E9B 1E61 -1EA0 1EA1 -1EA2 1EA3 -1EA4 1EA5 -1EA6 1EA7 -1EA8 1EA9 -1EAA 1EAB -1EAC 1EAD -1EAE 1EAF -1EB0 1EB1 -1EB2 1EB3 -1EB4 1EB5 -1EB6 1EB7 -1EB8 1EB9 -1EBA 1EBB -1EBC 1EBD -1EBE 1EBF -1EC0 1EC1 -1EC2 1EC3 -1EC4 1EC5 -1EC6 1EC7 -1EC8 1EC9 -1ECA 1ECB -1ECC 1ECD -1ECE 1ECF -1ED0 1ED1 -1ED2 1ED3 -1ED4 1ED5 -1ED6 1ED7 -1ED8 1ED9 -1EDA 1EDB -1EDC 1EDD -1EDE 1EDF -1EE0 1EE1 -1EE2 1EE3 -1EE4 1EE5 -1EE6 1EE7 -1EE8 1EE9 -1EEA 1EEB -1EEC 1EED -1EEE 1EEF -1EF0 1EF1 -1EF2 1EF3 -1EF4 1EF5 -1EF6 1EF7 -1EF8 1EF9 -1EFA 1EFB -1EFC 1EFD -1EFE 1EFF -1F08 1F00 -1F09 1F01 -1F0A 1F02 -1F0B 1F03 -1F0C 1F04 -1F0D 1F05 -1F0E 1F06 -1F0F 1F07 -1F18 1F10 -1F19 1F11 -1F1A 1F12 -1F1B 1F13 -1F1C 1F14 -1F1D 1F15 -1F28 1F20 -1F29 1F21 -1F2A 1F22 -1F2B 1F23 -1F2C 1F24 -1F2D 1F25 -1F2E 1F26 -1F2F 1F27 -1F38 1F30 -1F39 1F31 -1F3A 1F32 -1F3B 1F33 -1F3C 1F34 -1F3D 1F35 -1F3E 1F36 -1F3F 1F37 -1F48 1F40 -1F49 1F41 -1F4A 1F42 -1F4B 1F43 -1F4C 1F44 -1F4D 1F45 -1F59 1F51 -1F5B 1F53 -1F5D 1F55 -1F5F 1F57 -1F68 1F60 -1F69 1F61 -1F6A 1F62 -1F6B 1F63 -1F6C 1F64 -1F6D 1F65 -1F6E 1F66 -1F6F 1F67 -1FB8 1FB0 -1FB9 1FB1 -1FBA 1F70 -1FBB 1F71 -1FBE 03B9 -1FC8 1F72 -1FC9 1F73 -1FCA 1F74 -1FCB 1F75 -1FD8 1FD0 -1FD9 1FD1 -1FDA 1F76 -1FDB 1F77 -1FE8 1FE0 -1FE9 1FE1 -1FEA 1F7A -1FEB 1F7B -1FEC 1FE5 -1FF8 1F78 -1FF9 1F79 -1FFA 1F7C -1FFB 1F7D -2126 03C9 -212A 006B -212B 00E5 -2132 214E -2160 2170 -2161 2171 -2162 2172 -2163 2173 -2164 2174 -2165 2175 -2166 2176 -2167 2177 -2168 2178 -2169 2179 -216A 217A -216B 217B -216C 217C -216D 217D -216E 217E -216F 217F -2183 2184 -24B6 24D0 -24B7 24D1 -24B8 24D2 -24B9 24D3 -24BA 24D4 -24BB 24D5 -24BC 24D6 -24BD 24D7 -24BE 24D8 -24BF 24D9 -24C0 24DA -24C1 24DB -24C2 24DC -24C3 24DD -24C4 24DE -24C5 24DF -24C6 24E0 -24C7 24E1 -24C8 24E2 -24C9 24E3 -24CA 24E4 -24CB 24E5 -24CC 24E6 -24CD 24E7 -24CE 24E8 -24CF 24E9 -2C00 2C30 -2C01 2C31 -2C02 2C32 -2C03 2C33 -2C04 2C34 -2C05 2C35 -2C06 2C36 -2C07 2C37 -2C08 2C38 -2C09 2C39 -2C0A 2C3A -2C0B 2C3B -2C0C 2C3C -2C0D 2C3D -2C0E 2C3E -2C0F 2C3F -2C10 2C40 -2C11 2C41 -2C12 2C42 -2C13 2C43 -2C14 2C44 -2C15 2C45 -2C16 2C46 -2C17 2C47 -2C18 2C48 -2C19 2C49 -2C1A 2C4A -2C1B 2C4B -2C1C 2C4C -2C1D 2C4D -2C1E 2C4E -2C1F 2C4F -2C20 2C50 -2C21 2C51 -2C22 2C52 -2C23 2C53 -2C24 2C54 -2C25 2C55 -2C26 2C56 -2C27 2C57 -2C28 2C58 -2C29 2C59 -2C2A 2C5A -2C2B 2C5B -2C2C 2C5C -2C2D 2C5D -2C2E 2C5E -2C60 2C61 -2C62 026B -2C63 1D7D -2C64 027D -2C67 2C68 -2C69 2C6A -2C6B 2C6C -2C6D 0251 -2C6E 0271 -2C6F 0250 -2C72 2C73 -2C75 2C76 -2C80 2C81 -2C82 2C83 -2C84 2C85 -2C86 2C87 -2C88 2C89 -2C8A 2C8B -2C8C 2C8D -2C8E 2C8F -2C90 2C91 -2C92 2C93 -2C94 2C95 -2C96 2C97 -2C98 2C99 -2C9A 2C9B -2C9C 2C9D -2C9E 2C9F -2CA0 2CA1 -2CA2 2CA3 -2CA4 2CA5 -2CA6 2CA7 -2CA8 2CA9 -2CAA 2CAB -2CAC 2CAD -2CAE 2CAF -2CB0 2CB1 -2CB2 2CB3 -2CB4 2CB5 -2CB6 2CB7 -2CB8 2CB9 -2CBA 2CBB -2CBC 2CBD -2CBE 2CBF -2CC0 2CC1 -2CC2 2CC3 -2CC4 2CC5 -2CC6 2CC7 -2CC8 2CC9 -2CCA 2CCB -2CCC 2CCD -2CCE 2CCF -2CD0 2CD1 -2CD2 2CD3 -2CD4 2CD5 -2CD6 2CD7 -2CD8 2CD9 -2CDA 2CDB -2CDC 2CDD -2CDE 2CDF -2CE0 2CE1 -2CE2 2CE3 -A640 A641 -A642 A643 -A644 A645 -A646 A647 -A648 A649 -A64A A64B -A64C A64D -A64E A64F -A650 A651 -A652 A653 -A654 A655 -A656 A657 -A658 A659 -A65A A65B -A65C A65D -A65E A65F -A662 A663 -A664 A665 -A666 A667 -A668 A669 -A66A A66B -A66C A66D -A680 A681 -A682 A683 -A684 A685 -A686 A687 -A688 A689 -A68A A68B -A68C A68D -A68E A68F -A690 A691 -A692 A693 -A694 A695 -A696 A697 -A722 A723 -A724 A725 -A726 A727 -A728 A729 -A72A A72B -A72C A72D -A72E A72F -A732 A733 -A734 A735 -A736 A737 -A738 A739 -A73A A73B -A73C A73D -A73E A73F -A740 A741 -A742 A743 -A744 A745 -A746 A747 -A748 A749 -A74A A74B -A74C A74D -A74E A74F -A750 A751 -A752 A753 -A754 A755 -A756 A757 -A758 A759 -A75A A75B -A75C A75D -A75E A75F -A760 A761 -A762 A763 -A764 A765 -A766 A767 -A768 A769 -A76A A76B -A76C A76D -A76E A76F -A779 A77A -A77B A77C -A77D 1D79 -A77E A77F -A780 A781 -A782 A783 -A784 A785 -A786 A787 -A78B A78C -FF21 FF41 -FF22 FF42 -FF23 FF43 -FF24 FF44 -FF25 FF45 -FF26 FF46 -FF27 FF47 -FF28 FF48 -FF29 FF49 -FF2A FF4A -FF2B FF4B -FF2C FF4C -FF2D FF4D -FF2E FF4E -FF2F FF4F -FF30 FF50 -FF31 FF51 -FF32 FF52 -FF33 FF53 -FF34 FF54 -FF35 FF55 -FF36 FF56 -FF37 FF57 -FF38 FF58 -FF39 FF59 -FF3A FF5A -10400 10428 -10401 10429 -10402 1042A -10403 1042B -10404 1042C -10405 1042D -10406 1042E -10407 1042F -10408 10430 -10409 10431 -1040A 10432 -1040B 10433 -1040C 10434 -1040D 10435 -1040E 10436 -1040F 10437 -10410 10438 -10411 10439 -10412 1043A -10413 1043B -10414 1043C -10415 1043D -10416 1043E -10417 1043F -10418 10440 -10419 10441 -1041A 10442 -1041B 10443 -1041C 10444 -1041D 10445 -1041E 10446 -1041F 10447 -10420 10448 -10421 10449 -10422 1044A -10423 1044B -10424 1044C -10425 1044D -10426 1044E -10427 1044F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Lower.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Lower.pl deleted file mode 100644 index d7b793f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Lower.pl +++ /dev/null @@ -1,1039 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - - -# The key: UTF-8 _bytes_, the value: UTF-8 (speed hack) -%utf8::ToSpecLower = -( -"\xC4\xB0" => "\x{0069}\x{0307}", -"\xE1\xBE\x88" => "\x{1F80}", -"\xE1\xBE\x89" => "\x{1F81}", -"\xE1\xBE\x8A" => "\x{1F82}", -"\xE1\xBE\x8B" => "\x{1F83}", -"\xE1\xBE\x8C" => "\x{1F84}", -"\xE1\xBE\x8D" => "\x{1F85}", -"\xE1\xBE\x8E" => "\x{1F86}", -"\xE1\xBE\x8F" => "\x{1F87}", -"\xE1\xBE\x98" => "\x{1F90}", -"\xE1\xBE\x99" => "\x{1F91}", -"\xE1\xBE\x9A" => "\x{1F92}", -"\xE1\xBE\x9B" => "\x{1F93}", -"\xE1\xBE\x9C" => "\x{1F94}", -"\xE1\xBE\x9D" => "\x{1F95}", -"\xE1\xBE\x9E" => "\x{1F96}", -"\xE1\xBE\x9F" => "\x{1F97}", -"\xE1\xBE\xA8" => "\x{1FA0}", -"\xE1\xBE\xA9" => "\x{1FA1}", -"\xE1\xBE\xAA" => "\x{1FA2}", -"\xE1\xBE\xAB" => "\x{1FA3}", -"\xE1\xBE\xAC" => "\x{1FA4}", -"\xE1\xBE\xAD" => "\x{1FA5}", -"\xE1\xBE\xAE" => "\x{1FA6}", -"\xE1\xBE\xAF" => "\x{1FA7}", -"\xE1\xBE\xBC" => "\x{1FB3}", -"\xE1\xBF\x8C" => "\x{1FC3}", -"\xE1\xBF\xBC" => "\x{1FF3}", -); - -return <<'END'; -0041 0061 -0042 0062 -0043 0063 -0044 0064 -0045 0065 -0046 0066 -0047 0067 -0048 0068 -0049 0069 -004A 006A -004B 006B -004C 006C -004D 006D -004E 006E -004F 006F -0050 0070 -0051 0071 -0052 0072 -0053 0073 -0054 0074 -0055 0075 -0056 0076 -0057 0077 -0058 0078 -0059 0079 -005A 007A -00C0 00E0 -00C1 00E1 -00C2 00E2 -00C3 00E3 -00C4 00E4 -00C5 00E5 -00C6 00E6 -00C7 00E7 -00C8 00E8 -00C9 00E9 -00CA 00EA -00CB 00EB -00CC 00EC -00CD 00ED -00CE 00EE -00CF 00EF -00D0 00F0 -00D1 00F1 -00D2 00F2 -00D3 00F3 -00D4 00F4 -00D5 00F5 -00D6 00F6 -00D8 00F8 -00D9 00F9 -00DA 00FA -00DB 00FB -00DC 00FC -00DD 00FD -00DE 00FE -0100 0101 -0102 0103 -0104 0105 -0106 0107 -0108 0109 -010A 010B -010C 010D -010E 010F -0110 0111 -0112 0113 -0114 0115 -0116 0117 -0118 0119 -011A 011B -011C 011D -011E 011F -0120 0121 -0122 0123 -0124 0125 -0126 0127 -0128 0129 -012A 012B -012C 012D -012E 012F -0132 0133 -0134 0135 -0136 0137 -0139 013A -013B 013C -013D 013E -013F 0140 -0141 0142 -0143 0144 -0145 0146 -0147 0148 -014A 014B -014C 014D -014E 014F -0150 0151 -0152 0153 -0154 0155 -0156 0157 -0158 0159 -015A 015B -015C 015D -015E 015F -0160 0161 -0162 0163 -0164 0165 -0166 0167 -0168 0169 -016A 016B -016C 016D -016E 016F -0170 0171 -0172 0173 -0174 0175 -0176 0177 -0178 00FF -0179 017A -017B 017C -017D 017E -0181 0253 -0182 0183 -0184 0185 -0186 0254 -0187 0188 -0189 0256 -018A 0257 -018B 018C -018E 01DD -018F 0259 -0190 025B -0191 0192 -0193 0260 -0194 0263 -0196 0269 -0197 0268 -0198 0199 -019C 026F -019D 0272 -019F 0275 -01A0 01A1 -01A2 01A3 -01A4 01A5 -01A6 0280 -01A7 01A8 -01A9 0283 -01AC 01AD -01AE 0288 -01AF 01B0 -01B1 028A -01B2 028B -01B3 01B4 -01B5 01B6 -01B7 0292 -01B8 01B9 -01BC 01BD -01C4 01C6 -01C5 01C6 -01C7 01C9 -01C8 01C9 -01CA 01CC -01CB 01CC -01CD 01CE -01CF 01D0 -01D1 01D2 -01D3 01D4 -01D5 01D6 -01D7 01D8 -01D9 01DA -01DB 01DC -01DE 01DF -01E0 01E1 -01E2 01E3 -01E4 01E5 -01E6 01E7 -01E8 01E9 -01EA 01EB -01EC 01ED -01EE 01EF -01F1 01F3 -01F2 01F3 -01F4 01F5 -01F6 0195 -01F7 01BF -01F8 01F9 -01FA 01FB -01FC 01FD -01FE 01FF -0200 0201 -0202 0203 -0204 0205 -0206 0207 -0208 0209 -020A 020B -020C 020D -020E 020F -0210 0211 -0212 0213 -0214 0215 -0216 0217 -0218 0219 -021A 021B -021C 021D -021E 021F -0220 019E -0222 0223 -0224 0225 -0226 0227 -0228 0229 -022A 022B -022C 022D -022E 022F -0230 0231 -0232 0233 -023A 2C65 -023B 023C -023D 019A -023E 2C66 -0241 0242 -0243 0180 -0244 0289 -0245 028C -0246 0247 -0248 0249 -024A 024B -024C 024D -024E 024F -0370 0371 -0372 0373 -0376 0377 -0386 03AC -0388 03AD -0389 03AE -038A 03AF -038C 03CC -038E 03CD -038F 03CE -0391 03B1 -0392 03B2 -0393 03B3 -0394 03B4 -0395 03B5 -0396 03B6 -0397 03B7 -0398 03B8 -0399 03B9 -039A 03BA -039B 03BB -039C 03BC -039D 03BD -039E 03BE -039F 03BF -03A0 03C0 -03A1 03C1 -03A3 03C3 -03A4 03C4 -03A5 03C5 -03A6 03C6 -03A7 03C7 -03A8 03C8 -03A9 03C9 -03AA 03CA -03AB 03CB -03CF 03D7 -03D8 03D9 -03DA 03DB -03DC 03DD -03DE 03DF -03E0 03E1 -03E2 03E3 -03E4 03E5 -03E6 03E7 -03E8 03E9 -03EA 03EB -03EC 03ED -03EE 03EF -03F4 03B8 -03F7 03F8 -03F9 03F2 -03FA 03FB -03FD 037B -03FE 037C -03FF 037D -0400 0450 -0401 0451 -0402 0452 -0403 0453 -0404 0454 -0405 0455 -0406 0456 -0407 0457 -0408 0458 -0409 0459 -040A 045A -040B 045B -040C 045C -040D 045D -040E 045E -040F 045F -0410 0430 -0411 0431 -0412 0432 -0413 0433 -0414 0434 -0415 0435 -0416 0436 -0417 0437 -0418 0438 -0419 0439 -041A 043A -041B 043B -041C 043C -041D 043D -041E 043E -041F 043F -0420 0440 -0421 0441 -0422 0442 -0423 0443 -0424 0444 -0425 0445 -0426 0446 -0427 0447 -0428 0448 -0429 0449 -042A 044A -042B 044B -042C 044C -042D 044D -042E 044E -042F 044F -0460 0461 -0462 0463 -0464 0465 -0466 0467 -0468 0469 -046A 046B -046C 046D -046E 046F -0470 0471 -0472 0473 -0474 0475 -0476 0477 -0478 0479 -047A 047B -047C 047D -047E 047F -0480 0481 -048A 048B -048C 048D -048E 048F -0490 0491 -0492 0493 -0494 0495 -0496 0497 -0498 0499 -049A 049B -049C 049D -049E 049F -04A0 04A1 -04A2 04A3 -04A4 04A5 -04A6 04A7 -04A8 04A9 -04AA 04AB -04AC 04AD -04AE 04AF -04B0 04B1 -04B2 04B3 -04B4 04B5 -04B6 04B7 -04B8 04B9 -04BA 04BB -04BC 04BD -04BE 04BF -04C0 04CF -04C1 04C2 -04C3 04C4 -04C5 04C6 -04C7 04C8 -04C9 04CA -04CB 04CC -04CD 04CE -04D0 04D1 -04D2 04D3 -04D4 04D5 -04D6 04D7 -04D8 04D9 -04DA 04DB -04DC 04DD -04DE 04DF -04E0 04E1 -04E2 04E3 -04E4 04E5 -04E6 04E7 -04E8 04E9 -04EA 04EB -04EC 04ED -04EE 04EF -04F0 04F1 -04F2 04F3 -04F4 04F5 -04F6 04F7 -04F8 04F9 -04FA 04FB -04FC 04FD -04FE 04FF -0500 0501 -0502 0503 -0504 0505 -0506 0507 -0508 0509 -050A 050B -050C 050D -050E 050F -0510 0511 -0512 0513 -0514 0515 -0516 0517 -0518 0519 -051A 051B -051C 051D -051E 051F -0520 0521 -0522 0523 -0531 0561 -0532 0562 -0533 0563 -0534 0564 -0535 0565 -0536 0566 -0537 0567 -0538 0568 -0539 0569 -053A 056A -053B 056B -053C 056C -053D 056D -053E 056E -053F 056F -0540 0570 -0541 0571 -0542 0572 -0543 0573 -0544 0574 -0545 0575 -0546 0576 -0547 0577 -0548 0578 -0549 0579 -054A 057A -054B 057B -054C 057C -054D 057D -054E 057E -054F 057F -0550 0580 -0551 0581 -0552 0582 -0553 0583 -0554 0584 -0555 0585 -0556 0586 -10A0 2D00 -10A1 2D01 -10A2 2D02 -10A3 2D03 -10A4 2D04 -10A5 2D05 -10A6 2D06 -10A7 2D07 -10A8 2D08 -10A9 2D09 -10AA 2D0A -10AB 2D0B -10AC 2D0C -10AD 2D0D -10AE 2D0E -10AF 2D0F -10B0 2D10 -10B1 2D11 -10B2 2D12 -10B3 2D13 -10B4 2D14 -10B5 2D15 -10B6 2D16 -10B7 2D17 -10B8 2D18 -10B9 2D19 -10BA 2D1A -10BB 2D1B -10BC 2D1C -10BD 2D1D -10BE 2D1E -10BF 2D1F -10C0 2D20 -10C1 2D21 -10C2 2D22 -10C3 2D23 -10C4 2D24 -10C5 2D25 -1E00 1E01 -1E02 1E03 -1E04 1E05 -1E06 1E07 -1E08 1E09 -1E0A 1E0B -1E0C 1E0D -1E0E 1E0F -1E10 1E11 -1E12 1E13 -1E14 1E15 -1E16 1E17 -1E18 1E19 -1E1A 1E1B -1E1C 1E1D -1E1E 1E1F -1E20 1E21 -1E22 1E23 -1E24 1E25 -1E26 1E27 -1E28 1E29 -1E2A 1E2B -1E2C 1E2D -1E2E 1E2F -1E30 1E31 -1E32 1E33 -1E34 1E35 -1E36 1E37 -1E38 1E39 -1E3A 1E3B -1E3C 1E3D -1E3E 1E3F -1E40 1E41 -1E42 1E43 -1E44 1E45 -1E46 1E47 -1E48 1E49 -1E4A 1E4B -1E4C 1E4D -1E4E 1E4F -1E50 1E51 -1E52 1E53 -1E54 1E55 -1E56 1E57 -1E58 1E59 -1E5A 1E5B -1E5C 1E5D -1E5E 1E5F -1E60 1E61 -1E62 1E63 -1E64 1E65 -1E66 1E67 -1E68 1E69 -1E6A 1E6B -1E6C 1E6D -1E6E 1E6F -1E70 1E71 -1E72 1E73 -1E74 1E75 -1E76 1E77 -1E78 1E79 -1E7A 1E7B -1E7C 1E7D -1E7E 1E7F -1E80 1E81 -1E82 1E83 -1E84 1E85 -1E86 1E87 -1E88 1E89 -1E8A 1E8B -1E8C 1E8D -1E8E 1E8F -1E90 1E91 -1E92 1E93 -1E94 1E95 -1E9E 00DF -1EA0 1EA1 -1EA2 1EA3 -1EA4 1EA5 -1EA6 1EA7 -1EA8 1EA9 -1EAA 1EAB -1EAC 1EAD -1EAE 1EAF -1EB0 1EB1 -1EB2 1EB3 -1EB4 1EB5 -1EB6 1EB7 -1EB8 1EB9 -1EBA 1EBB -1EBC 1EBD -1EBE 1EBF -1EC0 1EC1 -1EC2 1EC3 -1EC4 1EC5 -1EC6 1EC7 -1EC8 1EC9 -1ECA 1ECB -1ECC 1ECD -1ECE 1ECF -1ED0 1ED1 -1ED2 1ED3 -1ED4 1ED5 -1ED6 1ED7 -1ED8 1ED9 -1EDA 1EDB -1EDC 1EDD -1EDE 1EDF -1EE0 1EE1 -1EE2 1EE3 -1EE4 1EE5 -1EE6 1EE7 -1EE8 1EE9 -1EEA 1EEB -1EEC 1EED -1EEE 1EEF -1EF0 1EF1 -1EF2 1EF3 -1EF4 1EF5 -1EF6 1EF7 -1EF8 1EF9 -1EFA 1EFB -1EFC 1EFD -1EFE 1EFF -1F08 1F00 -1F09 1F01 -1F0A 1F02 -1F0B 1F03 -1F0C 1F04 -1F0D 1F05 -1F0E 1F06 -1F0F 1F07 -1F18 1F10 -1F19 1F11 -1F1A 1F12 -1F1B 1F13 -1F1C 1F14 -1F1D 1F15 -1F28 1F20 -1F29 1F21 -1F2A 1F22 -1F2B 1F23 -1F2C 1F24 -1F2D 1F25 -1F2E 1F26 -1F2F 1F27 -1F38 1F30 -1F39 1F31 -1F3A 1F32 -1F3B 1F33 -1F3C 1F34 -1F3D 1F35 -1F3E 1F36 -1F3F 1F37 -1F48 1F40 -1F49 1F41 -1F4A 1F42 -1F4B 1F43 -1F4C 1F44 -1F4D 1F45 -1F59 1F51 -1F5B 1F53 -1F5D 1F55 -1F5F 1F57 -1F68 1F60 -1F69 1F61 -1F6A 1F62 -1F6B 1F63 -1F6C 1F64 -1F6D 1F65 -1F6E 1F66 -1F6F 1F67 -1FB8 1FB0 -1FB9 1FB1 -1FBA 1F70 -1FBB 1F71 -1FC8 1F72 -1FC9 1F73 -1FCA 1F74 -1FCB 1F75 -1FD8 1FD0 -1FD9 1FD1 -1FDA 1F76 -1FDB 1F77 -1FE8 1FE0 -1FE9 1FE1 -1FEA 1F7A -1FEB 1F7B -1FEC 1FE5 -1FF8 1F78 -1FF9 1F79 -1FFA 1F7C -1FFB 1F7D -2126 03C9 -212A 006B -212B 00E5 -2132 214E -2160 2170 -2161 2171 -2162 2172 -2163 2173 -2164 2174 -2165 2175 -2166 2176 -2167 2177 -2168 2178 -2169 2179 -216A 217A -216B 217B -216C 217C -216D 217D -216E 217E -216F 217F -2183 2184 -24B6 24D0 -24B7 24D1 -24B8 24D2 -24B9 24D3 -24BA 24D4 -24BB 24D5 -24BC 24D6 -24BD 24D7 -24BE 24D8 -24BF 24D9 -24C0 24DA -24C1 24DB -24C2 24DC -24C3 24DD -24C4 24DE -24C5 24DF -24C6 24E0 -24C7 24E1 -24C8 24E2 -24C9 24E3 -24CA 24E4 -24CB 24E5 -24CC 24E6 -24CD 24E7 -24CE 24E8 -24CF 24E9 -2C00 2C30 -2C01 2C31 -2C02 2C32 -2C03 2C33 -2C04 2C34 -2C05 2C35 -2C06 2C36 -2C07 2C37 -2C08 2C38 -2C09 2C39 -2C0A 2C3A -2C0B 2C3B -2C0C 2C3C -2C0D 2C3D -2C0E 2C3E -2C0F 2C3F -2C10 2C40 -2C11 2C41 -2C12 2C42 -2C13 2C43 -2C14 2C44 -2C15 2C45 -2C16 2C46 -2C17 2C47 -2C18 2C48 -2C19 2C49 -2C1A 2C4A -2C1B 2C4B -2C1C 2C4C -2C1D 2C4D -2C1E 2C4E -2C1F 2C4F -2C20 2C50 -2C21 2C51 -2C22 2C52 -2C23 2C53 -2C24 2C54 -2C25 2C55 -2C26 2C56 -2C27 2C57 -2C28 2C58 -2C29 2C59 -2C2A 2C5A -2C2B 2C5B -2C2C 2C5C -2C2D 2C5D -2C2E 2C5E -2C60 2C61 -2C62 026B -2C63 1D7D -2C64 027D -2C67 2C68 -2C69 2C6A -2C6B 2C6C -2C6D 0251 -2C6E 0271 -2C6F 0250 -2C72 2C73 -2C75 2C76 -2C80 2C81 -2C82 2C83 -2C84 2C85 -2C86 2C87 -2C88 2C89 -2C8A 2C8B -2C8C 2C8D -2C8E 2C8F -2C90 2C91 -2C92 2C93 -2C94 2C95 -2C96 2C97 -2C98 2C99 -2C9A 2C9B -2C9C 2C9D -2C9E 2C9F -2CA0 2CA1 -2CA2 2CA3 -2CA4 2CA5 -2CA6 2CA7 -2CA8 2CA9 -2CAA 2CAB -2CAC 2CAD -2CAE 2CAF -2CB0 2CB1 -2CB2 2CB3 -2CB4 2CB5 -2CB6 2CB7 -2CB8 2CB9 -2CBA 2CBB -2CBC 2CBD -2CBE 2CBF -2CC0 2CC1 -2CC2 2CC3 -2CC4 2CC5 -2CC6 2CC7 -2CC8 2CC9 -2CCA 2CCB -2CCC 2CCD -2CCE 2CCF -2CD0 2CD1 -2CD2 2CD3 -2CD4 2CD5 -2CD6 2CD7 -2CD8 2CD9 -2CDA 2CDB -2CDC 2CDD -2CDE 2CDF -2CE0 2CE1 -2CE2 2CE3 -A640 A641 -A642 A643 -A644 A645 -A646 A647 -A648 A649 -A64A A64B -A64C A64D -A64E A64F -A650 A651 -A652 A653 -A654 A655 -A656 A657 -A658 A659 -A65A A65B -A65C A65D -A65E A65F -A662 A663 -A664 A665 -A666 A667 -A668 A669 -A66A A66B -A66C A66D -A680 A681 -A682 A683 -A684 A685 -A686 A687 -A688 A689 -A68A A68B -A68C A68D -A68E A68F -A690 A691 -A692 A693 -A694 A695 -A696 A697 -A722 A723 -A724 A725 -A726 A727 -A728 A729 -A72A A72B -A72C A72D -A72E A72F -A732 A733 -A734 A735 -A736 A737 -A738 A739 -A73A A73B -A73C A73D -A73E A73F -A740 A741 -A742 A743 -A744 A745 -A746 A747 -A748 A749 -A74A A74B -A74C A74D -A74E A74F -A750 A751 -A752 A753 -A754 A755 -A756 A757 -A758 A759 -A75A A75B -A75C A75D -A75E A75F -A760 A761 -A762 A763 -A764 A765 -A766 A767 -A768 A769 -A76A A76B -A76C A76D -A76E A76F -A779 A77A -A77B A77C -A77D 1D79 -A77E A77F -A780 A781 -A782 A783 -A784 A785 -A786 A787 -A78B A78C -FF21 FF41 -FF22 FF42 -FF23 FF43 -FF24 FF44 -FF25 FF45 -FF26 FF46 -FF27 FF47 -FF28 FF48 -FF29 FF49 -FF2A FF4A -FF2B FF4B -FF2C FF4C -FF2D FF4D -FF2E FF4E -FF2F FF4F -FF30 FF50 -FF31 FF51 -FF32 FF52 -FF33 FF53 -FF34 FF54 -FF35 FF55 -FF36 FF56 -FF37 FF57 -FF38 FF58 -FF39 FF59 -FF3A FF5A -10400 10428 -10401 10429 -10402 1042A -10403 1042B -10404 1042C -10405 1042D -10406 1042E -10407 1042F -10408 10430 -10409 10431 -1040A 10432 -1040B 10433 -1040C 10434 -1040D 10435 -1040E 10436 -1040F 10437 -10410 10438 -10411 10439 -10412 1043A -10413 1043B -10414 1043C -10415 1043D -10416 1043E -10417 1043F -10418 10440 -10419 10441 -1041A 10442 -1041B 10443 -1041C 10444 -1041D 10445 -1041E 10446 -1041F 10447 -10420 10448 -10421 10449 -10422 1044A -10423 1044B -10424 1044C -10425 1044D -10426 1044E -10427 1044F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Title.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Title.pl deleted file mode 100644 index 3e6fad5..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Title.pl +++ /dev/null @@ -1,1099 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - - -# The key: UTF-8 _bytes_, the value: UTF-8 (speed hack) -%utf8::ToSpecTitle = -( -"\xC3\x9F" => "\x{0053}\x{0073}", -"\xC5\x89" => "\x{02BC}\x{004E}", -"\xC7\xB0" => "\x{004A}\x{030C}", -"\xCE\x90" => "\x{0399}\x{0308}\x{0301}", -"\xCE\xB0" => "\x{03A5}\x{0308}\x{0301}", -"\xD6\x87" => "\x{0535}\x{0582}", -"\xE1\xBA\x96" => "\x{0048}\x{0331}", -"\xE1\xBA\x97" => "\x{0054}\x{0308}", -"\xE1\xBA\x98" => "\x{0057}\x{030A}", -"\xE1\xBA\x99" => "\x{0059}\x{030A}", -"\xE1\xBA\x9A" => "\x{0041}\x{02BE}", -"\xE1\xBD\x90" => "\x{03A5}\x{0313}", -"\xE1\xBD\x92" => "\x{03A5}\x{0313}\x{0300}", -"\xE1\xBD\x94" => "\x{03A5}\x{0313}\x{0301}", -"\xE1\xBD\x96" => "\x{03A5}\x{0313}\x{0342}", -"\xE1\xBE\x80" => "\x{1F88}", -"\xE1\xBE\x81" => "\x{1F89}", -"\xE1\xBE\x82" => "\x{1F8A}", -"\xE1\xBE\x83" => "\x{1F8B}", -"\xE1\xBE\x84" => "\x{1F8C}", -"\xE1\xBE\x85" => "\x{1F8D}", -"\xE1\xBE\x86" => "\x{1F8E}", -"\xE1\xBE\x87" => "\x{1F8F}", -"\xE1\xBE\x90" => "\x{1F98}", -"\xE1\xBE\x91" => "\x{1F99}", -"\xE1\xBE\x92" => "\x{1F9A}", -"\xE1\xBE\x93" => "\x{1F9B}", -"\xE1\xBE\x94" => "\x{1F9C}", -"\xE1\xBE\x95" => "\x{1F9D}", -"\xE1\xBE\x96" => "\x{1F9E}", -"\xE1\xBE\x97" => "\x{1F9F}", -"\xE1\xBE\xA0" => "\x{1FA8}", -"\xE1\xBE\xA1" => "\x{1FA9}", -"\xE1\xBE\xA2" => "\x{1FAA}", -"\xE1\xBE\xA3" => "\x{1FAB}", -"\xE1\xBE\xA4" => "\x{1FAC}", -"\xE1\xBE\xA5" => "\x{1FAD}", -"\xE1\xBE\xA6" => "\x{1FAE}", -"\xE1\xBE\xA7" => "\x{1FAF}", -"\xE1\xBE\xB2" => "\x{1FBA}\x{0345}", -"\xE1\xBE\xB3" => "\x{1FBC}", -"\xE1\xBE\xB4" => "\x{0386}\x{0345}", -"\xE1\xBE\xB6" => "\x{0391}\x{0342}", -"\xE1\xBE\xB7" => "\x{0391}\x{0342}\x{0345}", -"\xE1\xBF\x82" => "\x{1FCA}\x{0345}", -"\xE1\xBF\x83" => "\x{1FCC}", -"\xE1\xBF\x84" => "\x{0389}\x{0345}", -"\xE1\xBF\x86" => "\x{0397}\x{0342}", -"\xE1\xBF\x87" => "\x{0397}\x{0342}\x{0345}", -"\xE1\xBF\x92" => "\x{0399}\x{0308}\x{0300}", -"\xE1\xBF\x93" => "\x{0399}\x{0308}\x{0301}", -"\xE1\xBF\x96" => "\x{0399}\x{0342}", -"\xE1\xBF\x97" => "\x{0399}\x{0308}\x{0342}", -"\xE1\xBF\xA2" => "\x{03A5}\x{0308}\x{0300}", -"\xE1\xBF\xA3" => "\x{03A5}\x{0308}\x{0301}", -"\xE1\xBF\xA4" => "\x{03A1}\x{0313}", -"\xE1\xBF\xA6" => "\x{03A5}\x{0342}", -"\xE1\xBF\xA7" => "\x{03A5}\x{0308}\x{0342}", -"\xE1\xBF\xB2" => "\x{1FFA}\x{0345}", -"\xE1\xBF\xB3" => "\x{1FFC}", -"\xE1\xBF\xB4" => "\x{038F}\x{0345}", -"\xE1\xBF\xB6" => "\x{03A9}\x{0342}", -"\xE1\xBF\xB7" => "\x{03A9}\x{0342}\x{0345}", -"\xEF\xAC\x80" => "\x{0046}\x{0066}", -"\xEF\xAC\x81" => "\x{0046}\x{0069}", -"\xEF\xAC\x82" => "\x{0046}\x{006C}", -"\xEF\xAC\x83" => "\x{0046}\x{0066}\x{0069}", -"\xEF\xAC\x84" => "\x{0046}\x{0066}\x{006C}", -"\xEF\xAC\x85" => "\x{0053}\x{0074}", -"\xEF\xAC\x86" => "\x{0053}\x{0074}", -"\xEF\xAC\x93" => "\x{0544}\x{0576}", -"\xEF\xAC\x94" => "\x{0544}\x{0565}", -"\xEF\xAC\x95" => "\x{0544}\x{056B}", -"\xEF\xAC\x96" => "\x{054E}\x{0576}", -"\xEF\xAC\x97" => "\x{0544}\x{056D}", -); - -return <<'END'; -0061 0041 -0062 0042 -0063 0043 -0064 0044 -0065 0045 -0066 0046 -0067 0047 -0068 0048 -0069 0049 -006A 004A -006B 004B -006C 004C -006D 004D -006E 004E -006F 004F -0070 0050 -0071 0051 -0072 0052 -0073 0053 -0074 0054 -0075 0055 -0076 0056 -0077 0057 -0078 0058 -0079 0059 -007A 005A -00B5 039C -00E0 00C0 -00E1 00C1 -00E2 00C2 -00E3 00C3 -00E4 00C4 -00E5 00C5 -00E6 00C6 -00E7 00C7 -00E8 00C8 -00E9 00C9 -00EA 00CA -00EB 00CB -00EC 00CC -00ED 00CD -00EE 00CE -00EF 00CF -00F0 00D0 -00F1 00D1 -00F2 00D2 -00F3 00D3 -00F4 00D4 -00F5 00D5 -00F6 00D6 -00F8 00D8 -00F9 00D9 -00FA 00DA -00FB 00DB -00FC 00DC -00FD 00DD -00FE 00DE -00FF 0178 -0101 0100 -0103 0102 -0105 0104 -0107 0106 -0109 0108 -010B 010A -010D 010C -010F 010E -0111 0110 -0113 0112 -0115 0114 -0117 0116 -0119 0118 -011B 011A -011D 011C -011F 011E -0121 0120 -0123 0122 -0125 0124 -0127 0126 -0129 0128 -012B 012A -012D 012C -012F 012E -0131 0049 -0133 0132 -0135 0134 -0137 0136 -013A 0139 -013C 013B -013E 013D -0140 013F -0142 0141 -0144 0143 -0146 0145 -0148 0147 -014B 014A -014D 014C -014F 014E -0151 0150 -0153 0152 -0155 0154 -0157 0156 -0159 0158 -015B 015A -015D 015C -015F 015E -0161 0160 -0163 0162 -0165 0164 -0167 0166 -0169 0168 -016B 016A -016D 016C -016F 016E -0171 0170 -0173 0172 -0175 0174 -0177 0176 -017A 0179 -017C 017B -017E 017D -017F 0053 -0180 0243 -0183 0182 -0185 0184 -0188 0187 -018C 018B -0192 0191 -0195 01F6 -0199 0198 -019A 023D -019E 0220 -01A1 01A0 -01A3 01A2 -01A5 01A4 -01A8 01A7 -01AD 01AC -01B0 01AF -01B4 01B3 -01B6 01B5 -01B9 01B8 -01BD 01BC -01BF 01F7 -01C4 01C5 -01C5 01C5 -01C6 01C5 -01C7 01C8 -01C8 01C8 -01C9 01C8 -01CA 01CB -01CB 01CB -01CC 01CB -01CE 01CD -01D0 01CF -01D2 01D1 -01D4 01D3 -01D6 01D5 -01D8 01D7 -01DA 01D9 -01DC 01DB -01DD 018E -01DF 01DE -01E1 01E0 -01E3 01E2 -01E5 01E4 -01E7 01E6 -01E9 01E8 -01EB 01EA -01ED 01EC -01EF 01EE -01F1 01F2 -01F2 01F2 -01F3 01F2 -01F5 01F4 -01F9 01F8 -01FB 01FA -01FD 01FC -01FF 01FE -0201 0200 -0203 0202 -0205 0204 -0207 0206 -0209 0208 -020B 020A -020D 020C -020F 020E -0211 0210 -0213 0212 -0215 0214 -0217 0216 -0219 0218 -021B 021A -021D 021C -021F 021E -0223 0222 -0225 0224 -0227 0226 -0229 0228 -022B 022A -022D 022C -022F 022E -0231 0230 -0233 0232 -023C 023B -0242 0241 -0247 0246 -0249 0248 -024B 024A -024D 024C -024F 024E -0250 2C6F -0251 2C6D -0253 0181 -0254 0186 -0256 0189 -0257 018A -0259 018F -025B 0190 -0260 0193 -0263 0194 -0268 0197 -0269 0196 -026B 2C62 -026F 019C -0271 2C6E -0272 019D -0275 019F -027D 2C64 -0280 01A6 -0283 01A9 -0288 01AE -0289 0244 -028A 01B1 -028B 01B2 -028C 0245 -0292 01B7 -0345 0399 -0371 0370 -0373 0372 -0377 0376 -037B 03FD -037C 03FE -037D 03FF -03AC 0386 -03AD 0388 -03AE 0389 -03AF 038A -03B1 0391 -03B2 0392 -03B3 0393 -03B4 0394 -03B5 0395 -03B6 0396 -03B7 0397 -03B8 0398 -03B9 0399 -03BA 039A -03BB 039B -03BC 039C -03BD 039D -03BE 039E -03BF 039F -03C0 03A0 -03C1 03A1 -03C2 03A3 -03C3 03A3 -03C4 03A4 -03C5 03A5 -03C6 03A6 -03C7 03A7 -03C8 03A8 -03C9 03A9 -03CA 03AA -03CB 03AB -03CC 038C -03CD 038E -03CE 038F -03D0 0392 -03D1 0398 -03D5 03A6 -03D6 03A0 -03D7 03CF -03D9 03D8 -03DB 03DA -03DD 03DC -03DF 03DE -03E1 03E0 -03E3 03E2 -03E5 03E4 -03E7 03E6 -03E9 03E8 -03EB 03EA -03ED 03EC -03EF 03EE -03F0 039A -03F1 03A1 -03F2 03F9 -03F5 0395 -03F8 03F7 -03FB 03FA -0430 0410 -0431 0411 -0432 0412 -0433 0413 -0434 0414 -0435 0415 -0436 0416 -0437 0417 -0438 0418 -0439 0419 -043A 041A -043B 041B -043C 041C -043D 041D -043E 041E -043F 041F -0440 0420 -0441 0421 -0442 0422 -0443 0423 -0444 0424 -0445 0425 -0446 0426 -0447 0427 -0448 0428 -0449 0429 -044A 042A -044B 042B -044C 042C -044D 042D -044E 042E -044F 042F -0450 0400 -0451 0401 -0452 0402 -0453 0403 -0454 0404 -0455 0405 -0456 0406 -0457 0407 -0458 0408 -0459 0409 -045A 040A -045B 040B -045C 040C -045D 040D -045E 040E -045F 040F -0461 0460 -0463 0462 -0465 0464 -0467 0466 -0469 0468 -046B 046A -046D 046C -046F 046E -0471 0470 -0473 0472 -0475 0474 -0477 0476 -0479 0478 -047B 047A -047D 047C -047F 047E -0481 0480 -048B 048A -048D 048C -048F 048E -0491 0490 -0493 0492 -0495 0494 -0497 0496 -0499 0498 -049B 049A -049D 049C -049F 049E -04A1 04A0 -04A3 04A2 -04A5 04A4 -04A7 04A6 -04A9 04A8 -04AB 04AA -04AD 04AC -04AF 04AE -04B1 04B0 -04B3 04B2 -04B5 04B4 -04B7 04B6 -04B9 04B8 -04BB 04BA -04BD 04BC -04BF 04BE -04C2 04C1 -04C4 04C3 -04C6 04C5 -04C8 04C7 -04CA 04C9 -04CC 04CB -04CE 04CD -04CF 04C0 -04D1 04D0 -04D3 04D2 -04D5 04D4 -04D7 04D6 -04D9 04D8 -04DB 04DA -04DD 04DC -04DF 04DE -04E1 04E0 -04E3 04E2 -04E5 04E4 -04E7 04E6 -04E9 04E8 -04EB 04EA -04ED 04EC -04EF 04EE -04F1 04F0 -04F3 04F2 -04F5 04F4 -04F7 04F6 -04F9 04F8 -04FB 04FA -04FD 04FC -04FF 04FE -0501 0500 -0503 0502 -0505 0504 -0507 0506 -0509 0508 -050B 050A -050D 050C -050F 050E -0511 0510 -0513 0512 -0515 0514 -0517 0516 -0519 0518 -051B 051A -051D 051C -051F 051E -0521 0520 -0523 0522 -0561 0531 -0562 0532 -0563 0533 -0564 0534 -0565 0535 -0566 0536 -0567 0537 -0568 0538 -0569 0539 -056A 053A -056B 053B -056C 053C -056D 053D -056E 053E -056F 053F -0570 0540 -0571 0541 -0572 0542 -0573 0543 -0574 0544 -0575 0545 -0576 0546 -0577 0547 -0578 0548 -0579 0549 -057A 054A -057B 054B -057C 054C -057D 054D -057E 054E -057F 054F -0580 0550 -0581 0551 -0582 0552 -0583 0553 -0584 0554 -0585 0555 -0586 0556 -1D79 A77D -1D7D 2C63 -1E01 1E00 -1E03 1E02 -1E05 1E04 -1E07 1E06 -1E09 1E08 -1E0B 1E0A -1E0D 1E0C -1E0F 1E0E -1E11 1E10 -1E13 1E12 -1E15 1E14 -1E17 1E16 -1E19 1E18 -1E1B 1E1A -1E1D 1E1C -1E1F 1E1E -1E21 1E20 -1E23 1E22 -1E25 1E24 -1E27 1E26 -1E29 1E28 -1E2B 1E2A -1E2D 1E2C -1E2F 1E2E -1E31 1E30 -1E33 1E32 -1E35 1E34 -1E37 1E36 -1E39 1E38 -1E3B 1E3A -1E3D 1E3C -1E3F 1E3E -1E41 1E40 -1E43 1E42 -1E45 1E44 -1E47 1E46 -1E49 1E48 -1E4B 1E4A -1E4D 1E4C -1E4F 1E4E -1E51 1E50 -1E53 1E52 -1E55 1E54 -1E57 1E56 -1E59 1E58 -1E5B 1E5A -1E5D 1E5C -1E5F 1E5E -1E61 1E60 -1E63 1E62 -1E65 1E64 -1E67 1E66 -1E69 1E68 -1E6B 1E6A -1E6D 1E6C -1E6F 1E6E -1E71 1E70 -1E73 1E72 -1E75 1E74 -1E77 1E76 -1E79 1E78 -1E7B 1E7A -1E7D 1E7C -1E7F 1E7E -1E81 1E80 -1E83 1E82 -1E85 1E84 -1E87 1E86 -1E89 1E88 -1E8B 1E8A -1E8D 1E8C -1E8F 1E8E -1E91 1E90 -1E93 1E92 -1E95 1E94 -1E9B 1E60 -1EA1 1EA0 -1EA3 1EA2 -1EA5 1EA4 -1EA7 1EA6 -1EA9 1EA8 -1EAB 1EAA -1EAD 1EAC -1EAF 1EAE -1EB1 1EB0 -1EB3 1EB2 -1EB5 1EB4 -1EB7 1EB6 -1EB9 1EB8 -1EBB 1EBA -1EBD 1EBC -1EBF 1EBE -1EC1 1EC0 -1EC3 1EC2 -1EC5 1EC4 -1EC7 1EC6 -1EC9 1EC8 -1ECB 1ECA -1ECD 1ECC -1ECF 1ECE -1ED1 1ED0 -1ED3 1ED2 -1ED5 1ED4 -1ED7 1ED6 -1ED9 1ED8 -1EDB 1EDA -1EDD 1EDC -1EDF 1EDE -1EE1 1EE0 -1EE3 1EE2 -1EE5 1EE4 -1EE7 1EE6 -1EE9 1EE8 -1EEB 1EEA -1EED 1EEC -1EEF 1EEE -1EF1 1EF0 -1EF3 1EF2 -1EF5 1EF4 -1EF7 1EF6 -1EF9 1EF8 -1EFB 1EFA -1EFD 1EFC -1EFF 1EFE -1F00 1F08 -1F01 1F09 -1F02 1F0A -1F03 1F0B -1F04 1F0C -1F05 1F0D -1F06 1F0E -1F07 1F0F -1F10 1F18 -1F11 1F19 -1F12 1F1A -1F13 1F1B -1F14 1F1C -1F15 1F1D -1F20 1F28 -1F21 1F29 -1F22 1F2A -1F23 1F2B -1F24 1F2C -1F25 1F2D -1F26 1F2E -1F27 1F2F -1F30 1F38 -1F31 1F39 -1F32 1F3A -1F33 1F3B -1F34 1F3C -1F35 1F3D -1F36 1F3E -1F37 1F3F -1F40 1F48 -1F41 1F49 -1F42 1F4A -1F43 1F4B -1F44 1F4C -1F45 1F4D -1F51 1F59 -1F53 1F5B -1F55 1F5D -1F57 1F5F -1F60 1F68 -1F61 1F69 -1F62 1F6A -1F63 1F6B -1F64 1F6C -1F65 1F6D -1F66 1F6E -1F67 1F6F -1F70 1FBA -1F71 1FBB -1F72 1FC8 -1F73 1FC9 -1F74 1FCA -1F75 1FCB -1F76 1FDA -1F77 1FDB -1F78 1FF8 -1F79 1FF9 -1F7A 1FEA -1F7B 1FEB -1F7C 1FFA -1F7D 1FFB -1FB0 1FB8 -1FB1 1FB9 -1FBE 0399 -1FD0 1FD8 -1FD1 1FD9 -1FE0 1FE8 -1FE1 1FE9 -1FE5 1FEC -214E 2132 -2170 2160 -2171 2161 -2172 2162 -2173 2163 -2174 2164 -2175 2165 -2176 2166 -2177 2167 -2178 2168 -2179 2169 -217A 216A -217B 216B -217C 216C -217D 216D -217E 216E -217F 216F -2184 2183 -24D0 24B6 -24D1 24B7 -24D2 24B8 -24D3 24B9 -24D4 24BA -24D5 24BB -24D6 24BC -24D7 24BD -24D8 24BE -24D9 24BF -24DA 24C0 -24DB 24C1 -24DC 24C2 -24DD 24C3 -24DE 24C4 -24DF 24C5 -24E0 24C6 -24E1 24C7 -24E2 24C8 -24E3 24C9 -24E4 24CA -24E5 24CB -24E6 24CC -24E7 24CD -24E8 24CE -24E9 24CF -2C30 2C00 -2C31 2C01 -2C32 2C02 -2C33 2C03 -2C34 2C04 -2C35 2C05 -2C36 2C06 -2C37 2C07 -2C38 2C08 -2C39 2C09 -2C3A 2C0A -2C3B 2C0B -2C3C 2C0C -2C3D 2C0D -2C3E 2C0E -2C3F 2C0F -2C40 2C10 -2C41 2C11 -2C42 2C12 -2C43 2C13 -2C44 2C14 -2C45 2C15 -2C46 2C16 -2C47 2C17 -2C48 2C18 -2C49 2C19 -2C4A 2C1A -2C4B 2C1B -2C4C 2C1C -2C4D 2C1D -2C4E 2C1E -2C4F 2C1F -2C50 2C20 -2C51 2C21 -2C52 2C22 -2C53 2C23 -2C54 2C24 -2C55 2C25 -2C56 2C26 -2C57 2C27 -2C58 2C28 -2C59 2C29 -2C5A 2C2A -2C5B 2C2B -2C5C 2C2C -2C5D 2C2D -2C5E 2C2E -2C61 2C60 -2C65 023A -2C66 023E -2C68 2C67 -2C6A 2C69 -2C6C 2C6B -2C73 2C72 -2C76 2C75 -2C81 2C80 -2C83 2C82 -2C85 2C84 -2C87 2C86 -2C89 2C88 -2C8B 2C8A -2C8D 2C8C -2C8F 2C8E -2C91 2C90 -2C93 2C92 -2C95 2C94 -2C97 2C96 -2C99 2C98 -2C9B 2C9A -2C9D 2C9C -2C9F 2C9E -2CA1 2CA0 -2CA3 2CA2 -2CA5 2CA4 -2CA7 2CA6 -2CA9 2CA8 -2CAB 2CAA -2CAD 2CAC -2CAF 2CAE -2CB1 2CB0 -2CB3 2CB2 -2CB5 2CB4 -2CB7 2CB6 -2CB9 2CB8 -2CBB 2CBA -2CBD 2CBC -2CBF 2CBE -2CC1 2CC0 -2CC3 2CC2 -2CC5 2CC4 -2CC7 2CC6 -2CC9 2CC8 -2CCB 2CCA -2CCD 2CCC -2CCF 2CCE -2CD1 2CD0 -2CD3 2CD2 -2CD5 2CD4 -2CD7 2CD6 -2CD9 2CD8 -2CDB 2CDA -2CDD 2CDC -2CDF 2CDE -2CE1 2CE0 -2CE3 2CE2 -2D00 10A0 -2D01 10A1 -2D02 10A2 -2D03 10A3 -2D04 10A4 -2D05 10A5 -2D06 10A6 -2D07 10A7 -2D08 10A8 -2D09 10A9 -2D0A 10AA -2D0B 10AB -2D0C 10AC -2D0D 10AD -2D0E 10AE -2D0F 10AF -2D10 10B0 -2D11 10B1 -2D12 10B2 -2D13 10B3 -2D14 10B4 -2D15 10B5 -2D16 10B6 -2D17 10B7 -2D18 10B8 -2D19 10B9 -2D1A 10BA -2D1B 10BB -2D1C 10BC -2D1D 10BD -2D1E 10BE -2D1F 10BF -2D20 10C0 -2D21 10C1 -2D22 10C2 -2D23 10C3 -2D24 10C4 -2D25 10C5 -A641 A640 -A643 A642 -A645 A644 -A647 A646 -A649 A648 -A64B A64A -A64D A64C -A64F A64E -A651 A650 -A653 A652 -A655 A654 -A657 A656 -A659 A658 -A65B A65A -A65D A65C -A65F A65E -A663 A662 -A665 A664 -A667 A666 -A669 A668 -A66B A66A -A66D A66C -A681 A680 -A683 A682 -A685 A684 -A687 A686 -A689 A688 -A68B A68A -A68D A68C -A68F A68E -A691 A690 -A693 A692 -A695 A694 -A697 A696 -A723 A722 -A725 A724 -A727 A726 -A729 A728 -A72B A72A -A72D A72C -A72F A72E -A733 A732 -A735 A734 -A737 A736 -A739 A738 -A73B A73A -A73D A73C -A73F A73E -A741 A740 -A743 A742 -A745 A744 -A747 A746 -A749 A748 -A74B A74A -A74D A74C -A74F A74E -A751 A750 -A753 A752 -A755 A754 -A757 A756 -A759 A758 -A75B A75A -A75D A75C -A75F A75E -A761 A760 -A763 A762 -A765 A764 -A767 A766 -A769 A768 -A76B A76A -A76D A76C -A76F A76E -A77A A779 -A77C A77B -A77F A77E -A781 A780 -A783 A782 -A785 A784 -A787 A786 -A78C A78B -FF41 FF21 -FF42 FF22 -FF43 FF23 -FF44 FF24 -FF45 FF25 -FF46 FF26 -FF47 FF27 -FF48 FF28 -FF49 FF29 -FF4A FF2A -FF4B FF2B -FF4C FF2C -FF4D FF2D -FF4E FF2E -FF4F FF2F -FF50 FF30 -FF51 FF31 -FF52 FF32 -FF53 FF33 -FF54 FF34 -FF55 FF35 -FF56 FF36 -FF57 FF37 -FF58 FF38 -FF59 FF39 -FF5A FF3A -10428 10400 -10429 10401 -1042A 10402 -1042B 10403 -1042C 10404 -1042D 10405 -1042E 10406 -1042F 10407 -10430 10408 -10431 10409 -10432 1040A -10433 1040B -10434 1040C -10435 1040D -10436 1040E -10437 1040F -10438 10410 -10439 10411 -1043A 10412 -1043B 10413 -1043C 10414 -1043D 10415 -1043E 10416 -1043F 10417 -10440 10418 -10441 10419 -10442 1041A -10443 1041B -10444 1041C -10445 1041D -10446 1041E -10447 1041F -10448 10420 -10449 10421 -1044A 10422 -1044B 10423 -1044C 10424 -1044D 10425 -1044E 10426 -1044F 10427 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Upper.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Upper.pl deleted file mode 100644 index e2393ee..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/To/Upper.pl +++ /dev/null @@ -1,1122 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - - -# The key: UTF-8 _bytes_, the value: UTF-8 (speed hack) -%utf8::ToSpecUpper = -( -"\xC3\x9F" => "\x{0053}\x{0053}", -"\xC5\x89" => "\x{02BC}\x{004E}", -"\xC7\xB0" => "\x{004A}\x{030C}", -"\xCE\x90" => "\x{0399}\x{0308}\x{0301}", -"\xCE\xB0" => "\x{03A5}\x{0308}\x{0301}", -"\xD6\x87" => "\x{0535}\x{0552}", -"\xE1\xBA\x96" => "\x{0048}\x{0331}", -"\xE1\xBA\x97" => "\x{0054}\x{0308}", -"\xE1\xBA\x98" => "\x{0057}\x{030A}", -"\xE1\xBA\x99" => "\x{0059}\x{030A}", -"\xE1\xBA\x9A" => "\x{0041}\x{02BE}", -"\xE1\xBD\x90" => "\x{03A5}\x{0313}", -"\xE1\xBD\x92" => "\x{03A5}\x{0313}\x{0300}", -"\xE1\xBD\x94" => "\x{03A5}\x{0313}\x{0301}", -"\xE1\xBD\x96" => "\x{03A5}\x{0313}\x{0342}", -"\xE1\xBE\x80" => "\x{1F08}\x{0399}", -"\xE1\xBE\x81" => "\x{1F09}\x{0399}", -"\xE1\xBE\x82" => "\x{1F0A}\x{0399}", -"\xE1\xBE\x83" => "\x{1F0B}\x{0399}", -"\xE1\xBE\x84" => "\x{1F0C}\x{0399}", -"\xE1\xBE\x85" => "\x{1F0D}\x{0399}", -"\xE1\xBE\x86" => "\x{1F0E}\x{0399}", -"\xE1\xBE\x87" => "\x{1F0F}\x{0399}", -"\xE1\xBE\x88" => "\x{1F08}\x{0399}", -"\xE1\xBE\x89" => "\x{1F09}\x{0399}", -"\xE1\xBE\x8A" => "\x{1F0A}\x{0399}", -"\xE1\xBE\x8B" => "\x{1F0B}\x{0399}", -"\xE1\xBE\x8C" => "\x{1F0C}\x{0399}", -"\xE1\xBE\x8D" => "\x{1F0D}\x{0399}", -"\xE1\xBE\x8E" => "\x{1F0E}\x{0399}", -"\xE1\xBE\x8F" => "\x{1F0F}\x{0399}", -"\xE1\xBE\x90" => "\x{1F28}\x{0399}", -"\xE1\xBE\x91" => "\x{1F29}\x{0399}", -"\xE1\xBE\x92" => "\x{1F2A}\x{0399}", -"\xE1\xBE\x93" => "\x{1F2B}\x{0399}", -"\xE1\xBE\x94" => "\x{1F2C}\x{0399}", -"\xE1\xBE\x95" => "\x{1F2D}\x{0399}", -"\xE1\xBE\x96" => "\x{1F2E}\x{0399}", -"\xE1\xBE\x97" => "\x{1F2F}\x{0399}", -"\xE1\xBE\x98" => "\x{1F28}\x{0399}", -"\xE1\xBE\x99" => "\x{1F29}\x{0399}", -"\xE1\xBE\x9A" => "\x{1F2A}\x{0399}", -"\xE1\xBE\x9B" => "\x{1F2B}\x{0399}", -"\xE1\xBE\x9C" => "\x{1F2C}\x{0399}", -"\xE1\xBE\x9D" => "\x{1F2D}\x{0399}", -"\xE1\xBE\x9E" => "\x{1F2E}\x{0399}", -"\xE1\xBE\x9F" => "\x{1F2F}\x{0399}", -"\xE1\xBE\xA0" => "\x{1F68}\x{0399}", -"\xE1\xBE\xA1" => "\x{1F69}\x{0399}", -"\xE1\xBE\xA2" => "\x{1F6A}\x{0399}", -"\xE1\xBE\xA3" => "\x{1F6B}\x{0399}", -"\xE1\xBE\xA4" => "\x{1F6C}\x{0399}", -"\xE1\xBE\xA5" => "\x{1F6D}\x{0399}", -"\xE1\xBE\xA6" => "\x{1F6E}\x{0399}", -"\xE1\xBE\xA7" => "\x{1F6F}\x{0399}", -"\xE1\xBE\xA8" => "\x{1F68}\x{0399}", -"\xE1\xBE\xA9" => "\x{1F69}\x{0399}", -"\xE1\xBE\xAA" => "\x{1F6A}\x{0399}", -"\xE1\xBE\xAB" => "\x{1F6B}\x{0399}", -"\xE1\xBE\xAC" => "\x{1F6C}\x{0399}", -"\xE1\xBE\xAD" => "\x{1F6D}\x{0399}", -"\xE1\xBE\xAE" => "\x{1F6E}\x{0399}", -"\xE1\xBE\xAF" => "\x{1F6F}\x{0399}", -"\xE1\xBE\xB2" => "\x{1FBA}\x{0399}", -"\xE1\xBE\xB3" => "\x{0391}\x{0399}", -"\xE1\xBE\xB4" => "\x{0386}\x{0399}", -"\xE1\xBE\xB6" => "\x{0391}\x{0342}", -"\xE1\xBE\xB7" => "\x{0391}\x{0342}\x{0399}", -"\xE1\xBE\xBC" => "\x{0391}\x{0399}", -"\xE1\xBF\x82" => "\x{1FCA}\x{0399}", -"\xE1\xBF\x83" => "\x{0397}\x{0399}", -"\xE1\xBF\x84" => "\x{0389}\x{0399}", -"\xE1\xBF\x86" => "\x{0397}\x{0342}", -"\xE1\xBF\x87" => "\x{0397}\x{0342}\x{0399}", -"\xE1\xBF\x8C" => "\x{0397}\x{0399}", -"\xE1\xBF\x92" => "\x{0399}\x{0308}\x{0300}", -"\xE1\xBF\x93" => "\x{0399}\x{0308}\x{0301}", -"\xE1\xBF\x96" => "\x{0399}\x{0342}", -"\xE1\xBF\x97" => "\x{0399}\x{0308}\x{0342}", -"\xE1\xBF\xA2" => "\x{03A5}\x{0308}\x{0300}", -"\xE1\xBF\xA3" => "\x{03A5}\x{0308}\x{0301}", -"\xE1\xBF\xA4" => "\x{03A1}\x{0313}", -"\xE1\xBF\xA6" => "\x{03A5}\x{0342}", -"\xE1\xBF\xA7" => "\x{03A5}\x{0308}\x{0342}", -"\xE1\xBF\xB2" => "\x{1FFA}\x{0399}", -"\xE1\xBF\xB3" => "\x{03A9}\x{0399}", -"\xE1\xBF\xB4" => "\x{038F}\x{0399}", -"\xE1\xBF\xB6" => "\x{03A9}\x{0342}", -"\xE1\xBF\xB7" => "\x{03A9}\x{0342}\x{0399}", -"\xE1\xBF\xBC" => "\x{03A9}\x{0399}", -"\xEF\xAC\x80" => "\x{0046}\x{0046}", -"\xEF\xAC\x81" => "\x{0046}\x{0049}", -"\xEF\xAC\x82" => "\x{0046}\x{004C}", -"\xEF\xAC\x83" => "\x{0046}\x{0046}\x{0049}", -"\xEF\xAC\x84" => "\x{0046}\x{0046}\x{004C}", -"\xEF\xAC\x85" => "\x{0053}\x{0054}", -"\xEF\xAC\x86" => "\x{0053}\x{0054}", -"\xEF\xAC\x93" => "\x{0544}\x{0546}", -"\xEF\xAC\x94" => "\x{0544}\x{0535}", -"\xEF\xAC\x95" => "\x{0544}\x{053B}", -"\xEF\xAC\x96" => "\x{054E}\x{0546}", -"\xEF\xAC\x97" => "\x{0544}\x{053D}", -); - -return <<'END'; -0061 0041 -0062 0042 -0063 0043 -0064 0044 -0065 0045 -0066 0046 -0067 0047 -0068 0048 -0069 0049 -006A 004A -006B 004B -006C 004C -006D 004D -006E 004E -006F 004F -0070 0050 -0071 0051 -0072 0052 -0073 0053 -0074 0054 -0075 0055 -0076 0056 -0077 0057 -0078 0058 -0079 0059 -007A 005A -00B5 039C -00E0 00C0 -00E1 00C1 -00E2 00C2 -00E3 00C3 -00E4 00C4 -00E5 00C5 -00E6 00C6 -00E7 00C7 -00E8 00C8 -00E9 00C9 -00EA 00CA -00EB 00CB -00EC 00CC -00ED 00CD -00EE 00CE -00EF 00CF -00F0 00D0 -00F1 00D1 -00F2 00D2 -00F3 00D3 -00F4 00D4 -00F5 00D5 -00F6 00D6 -00F8 00D8 -00F9 00D9 -00FA 00DA -00FB 00DB -00FC 00DC -00FD 00DD -00FE 00DE -00FF 0178 -0101 0100 -0103 0102 -0105 0104 -0107 0106 -0109 0108 -010B 010A -010D 010C -010F 010E -0111 0110 -0113 0112 -0115 0114 -0117 0116 -0119 0118 -011B 011A -011D 011C -011F 011E -0121 0120 -0123 0122 -0125 0124 -0127 0126 -0129 0128 -012B 012A -012D 012C -012F 012E -0131 0049 -0133 0132 -0135 0134 -0137 0136 -013A 0139 -013C 013B -013E 013D -0140 013F -0142 0141 -0144 0143 -0146 0145 -0148 0147 -014B 014A -014D 014C -014F 014E -0151 0150 -0153 0152 -0155 0154 -0157 0156 -0159 0158 -015B 015A -015D 015C -015F 015E -0161 0160 -0163 0162 -0165 0164 -0167 0166 -0169 0168 -016B 016A -016D 016C -016F 016E -0171 0170 -0173 0172 -0175 0174 -0177 0176 -017A 0179 -017C 017B -017E 017D -017F 0053 -0180 0243 -0183 0182 -0185 0184 -0188 0187 -018C 018B -0192 0191 -0195 01F6 -0199 0198 -019A 023D -019E 0220 -01A1 01A0 -01A3 01A2 -01A5 01A4 -01A8 01A7 -01AD 01AC -01B0 01AF -01B4 01B3 -01B6 01B5 -01B9 01B8 -01BD 01BC -01BF 01F7 -01C5 01C4 -01C6 01C4 -01C8 01C7 -01C9 01C7 -01CB 01CA -01CC 01CA -01CE 01CD -01D0 01CF -01D2 01D1 -01D4 01D3 -01D6 01D5 -01D8 01D7 -01DA 01D9 -01DC 01DB -01DD 018E -01DF 01DE -01E1 01E0 -01E3 01E2 -01E5 01E4 -01E7 01E6 -01E9 01E8 -01EB 01EA -01ED 01EC -01EF 01EE -01F2 01F1 -01F3 01F1 -01F5 01F4 -01F9 01F8 -01FB 01FA -01FD 01FC -01FF 01FE -0201 0200 -0203 0202 -0205 0204 -0207 0206 -0209 0208 -020B 020A -020D 020C -020F 020E -0211 0210 -0213 0212 -0215 0214 -0217 0216 -0219 0218 -021B 021A -021D 021C -021F 021E -0223 0222 -0225 0224 -0227 0226 -0229 0228 -022B 022A -022D 022C -022F 022E -0231 0230 -0233 0232 -023C 023B -0242 0241 -0247 0246 -0249 0248 -024B 024A -024D 024C -024F 024E -0250 2C6F -0251 2C6D -0253 0181 -0254 0186 -0256 0189 -0257 018A -0259 018F -025B 0190 -0260 0193 -0263 0194 -0268 0197 -0269 0196 -026B 2C62 -026F 019C -0271 2C6E -0272 019D -0275 019F -027D 2C64 -0280 01A6 -0283 01A9 -0288 01AE -0289 0244 -028A 01B1 -028B 01B2 -028C 0245 -0292 01B7 -0345 0399 -0371 0370 -0373 0372 -0377 0376 -037B 03FD -037C 03FE -037D 03FF -03AC 0386 -03AD 0388 -03AE 0389 -03AF 038A -03B1 0391 -03B2 0392 -03B3 0393 -03B4 0394 -03B5 0395 -03B6 0396 -03B7 0397 -03B8 0398 -03B9 0399 -03BA 039A -03BB 039B -03BC 039C -03BD 039D -03BE 039E -03BF 039F -03C0 03A0 -03C1 03A1 -03C2 03A3 -03C3 03A3 -03C4 03A4 -03C5 03A5 -03C6 03A6 -03C7 03A7 -03C8 03A8 -03C9 03A9 -03CA 03AA -03CB 03AB -03CC 038C -03CD 038E -03CE 038F -03D0 0392 -03D1 0398 -03D5 03A6 -03D6 03A0 -03D7 03CF -03D9 03D8 -03DB 03DA -03DD 03DC -03DF 03DE -03E1 03E0 -03E3 03E2 -03E5 03E4 -03E7 03E6 -03E9 03E8 -03EB 03EA -03ED 03EC -03EF 03EE -03F0 039A -03F1 03A1 -03F2 03F9 -03F5 0395 -03F8 03F7 -03FB 03FA -0430 0410 -0431 0411 -0432 0412 -0433 0413 -0434 0414 -0435 0415 -0436 0416 -0437 0417 -0438 0418 -0439 0419 -043A 041A -043B 041B -043C 041C -043D 041D -043E 041E -043F 041F -0440 0420 -0441 0421 -0442 0422 -0443 0423 -0444 0424 -0445 0425 -0446 0426 -0447 0427 -0448 0428 -0449 0429 -044A 042A -044B 042B -044C 042C -044D 042D -044E 042E -044F 042F -0450 0400 -0451 0401 -0452 0402 -0453 0403 -0454 0404 -0455 0405 -0456 0406 -0457 0407 -0458 0408 -0459 0409 -045A 040A -045B 040B -045C 040C -045D 040D -045E 040E -045F 040F -0461 0460 -0463 0462 -0465 0464 -0467 0466 -0469 0468 -046B 046A -046D 046C -046F 046E -0471 0470 -0473 0472 -0475 0474 -0477 0476 -0479 0478 -047B 047A -047D 047C -047F 047E -0481 0480 -048B 048A -048D 048C -048F 048E -0491 0490 -0493 0492 -0495 0494 -0497 0496 -0499 0498 -049B 049A -049D 049C -049F 049E -04A1 04A0 -04A3 04A2 -04A5 04A4 -04A7 04A6 -04A9 04A8 -04AB 04AA -04AD 04AC -04AF 04AE -04B1 04B0 -04B3 04B2 -04B5 04B4 -04B7 04B6 -04B9 04B8 -04BB 04BA -04BD 04BC -04BF 04BE -04C2 04C1 -04C4 04C3 -04C6 04C5 -04C8 04C7 -04CA 04C9 -04CC 04CB -04CE 04CD -04CF 04C0 -04D1 04D0 -04D3 04D2 -04D5 04D4 -04D7 04D6 -04D9 04D8 -04DB 04DA -04DD 04DC -04DF 04DE -04E1 04E0 -04E3 04E2 -04E5 04E4 -04E7 04E6 -04E9 04E8 -04EB 04EA -04ED 04EC -04EF 04EE -04F1 04F0 -04F3 04F2 -04F5 04F4 -04F7 04F6 -04F9 04F8 -04FB 04FA -04FD 04FC -04FF 04FE -0501 0500 -0503 0502 -0505 0504 -0507 0506 -0509 0508 -050B 050A -050D 050C -050F 050E -0511 0510 -0513 0512 -0515 0514 -0517 0516 -0519 0518 -051B 051A -051D 051C -051F 051E -0521 0520 -0523 0522 -0561 0531 -0562 0532 -0563 0533 -0564 0534 -0565 0535 -0566 0536 -0567 0537 -0568 0538 -0569 0539 -056A 053A -056B 053B -056C 053C -056D 053D -056E 053E -056F 053F -0570 0540 -0571 0541 -0572 0542 -0573 0543 -0574 0544 -0575 0545 -0576 0546 -0577 0547 -0578 0548 -0579 0549 -057A 054A -057B 054B -057C 054C -057D 054D -057E 054E -057F 054F -0580 0550 -0581 0551 -0582 0552 -0583 0553 -0584 0554 -0585 0555 -0586 0556 -1D79 A77D -1D7D 2C63 -1E01 1E00 -1E03 1E02 -1E05 1E04 -1E07 1E06 -1E09 1E08 -1E0B 1E0A -1E0D 1E0C -1E0F 1E0E -1E11 1E10 -1E13 1E12 -1E15 1E14 -1E17 1E16 -1E19 1E18 -1E1B 1E1A -1E1D 1E1C -1E1F 1E1E -1E21 1E20 -1E23 1E22 -1E25 1E24 -1E27 1E26 -1E29 1E28 -1E2B 1E2A -1E2D 1E2C -1E2F 1E2E -1E31 1E30 -1E33 1E32 -1E35 1E34 -1E37 1E36 -1E39 1E38 -1E3B 1E3A -1E3D 1E3C -1E3F 1E3E -1E41 1E40 -1E43 1E42 -1E45 1E44 -1E47 1E46 -1E49 1E48 -1E4B 1E4A -1E4D 1E4C -1E4F 1E4E -1E51 1E50 -1E53 1E52 -1E55 1E54 -1E57 1E56 -1E59 1E58 -1E5B 1E5A -1E5D 1E5C -1E5F 1E5E -1E61 1E60 -1E63 1E62 -1E65 1E64 -1E67 1E66 -1E69 1E68 -1E6B 1E6A -1E6D 1E6C -1E6F 1E6E -1E71 1E70 -1E73 1E72 -1E75 1E74 -1E77 1E76 -1E79 1E78 -1E7B 1E7A -1E7D 1E7C -1E7F 1E7E -1E81 1E80 -1E83 1E82 -1E85 1E84 -1E87 1E86 -1E89 1E88 -1E8B 1E8A -1E8D 1E8C -1E8F 1E8E -1E91 1E90 -1E93 1E92 -1E95 1E94 -1E9B 1E60 -1EA1 1EA0 -1EA3 1EA2 -1EA5 1EA4 -1EA7 1EA6 -1EA9 1EA8 -1EAB 1EAA -1EAD 1EAC -1EAF 1EAE -1EB1 1EB0 -1EB3 1EB2 -1EB5 1EB4 -1EB7 1EB6 -1EB9 1EB8 -1EBB 1EBA -1EBD 1EBC -1EBF 1EBE -1EC1 1EC0 -1EC3 1EC2 -1EC5 1EC4 -1EC7 1EC6 -1EC9 1EC8 -1ECB 1ECA -1ECD 1ECC -1ECF 1ECE -1ED1 1ED0 -1ED3 1ED2 -1ED5 1ED4 -1ED7 1ED6 -1ED9 1ED8 -1EDB 1EDA -1EDD 1EDC -1EDF 1EDE -1EE1 1EE0 -1EE3 1EE2 -1EE5 1EE4 -1EE7 1EE6 -1EE9 1EE8 -1EEB 1EEA -1EED 1EEC -1EEF 1EEE -1EF1 1EF0 -1EF3 1EF2 -1EF5 1EF4 -1EF7 1EF6 -1EF9 1EF8 -1EFB 1EFA -1EFD 1EFC -1EFF 1EFE -1F00 1F08 -1F01 1F09 -1F02 1F0A -1F03 1F0B -1F04 1F0C -1F05 1F0D -1F06 1F0E -1F07 1F0F -1F10 1F18 -1F11 1F19 -1F12 1F1A -1F13 1F1B -1F14 1F1C -1F15 1F1D -1F20 1F28 -1F21 1F29 -1F22 1F2A -1F23 1F2B -1F24 1F2C -1F25 1F2D -1F26 1F2E -1F27 1F2F -1F30 1F38 -1F31 1F39 -1F32 1F3A -1F33 1F3B -1F34 1F3C -1F35 1F3D -1F36 1F3E -1F37 1F3F -1F40 1F48 -1F41 1F49 -1F42 1F4A -1F43 1F4B -1F44 1F4C -1F45 1F4D -1F51 1F59 -1F53 1F5B -1F55 1F5D -1F57 1F5F -1F60 1F68 -1F61 1F69 -1F62 1F6A -1F63 1F6B -1F64 1F6C -1F65 1F6D -1F66 1F6E -1F67 1F6F -1F70 1FBA -1F71 1FBB -1F72 1FC8 -1F73 1FC9 -1F74 1FCA -1F75 1FCB -1F76 1FDA -1F77 1FDB -1F78 1FF8 -1F79 1FF9 -1F7A 1FEA -1F7B 1FEB -1F7C 1FFA -1F7D 1FFB -1FB0 1FB8 -1FB1 1FB9 -1FBE 0399 -1FD0 1FD8 -1FD1 1FD9 -1FE0 1FE8 -1FE1 1FE9 -1FE5 1FEC -214E 2132 -2170 2160 -2171 2161 -2172 2162 -2173 2163 -2174 2164 -2175 2165 -2176 2166 -2177 2167 -2178 2168 -2179 2169 -217A 216A -217B 216B -217C 216C -217D 216D -217E 216E -217F 216F -2184 2183 -24D0 24B6 -24D1 24B7 -24D2 24B8 -24D3 24B9 -24D4 24BA -24D5 24BB -24D6 24BC -24D7 24BD -24D8 24BE -24D9 24BF -24DA 24C0 -24DB 24C1 -24DC 24C2 -24DD 24C3 -24DE 24C4 -24DF 24C5 -24E0 24C6 -24E1 24C7 -24E2 24C8 -24E3 24C9 -24E4 24CA -24E5 24CB -24E6 24CC -24E7 24CD -24E8 24CE -24E9 24CF -2C30 2C00 -2C31 2C01 -2C32 2C02 -2C33 2C03 -2C34 2C04 -2C35 2C05 -2C36 2C06 -2C37 2C07 -2C38 2C08 -2C39 2C09 -2C3A 2C0A -2C3B 2C0B -2C3C 2C0C -2C3D 2C0D -2C3E 2C0E -2C3F 2C0F -2C40 2C10 -2C41 2C11 -2C42 2C12 -2C43 2C13 -2C44 2C14 -2C45 2C15 -2C46 2C16 -2C47 2C17 -2C48 2C18 -2C49 2C19 -2C4A 2C1A -2C4B 2C1B -2C4C 2C1C -2C4D 2C1D -2C4E 2C1E -2C4F 2C1F -2C50 2C20 -2C51 2C21 -2C52 2C22 -2C53 2C23 -2C54 2C24 -2C55 2C25 -2C56 2C26 -2C57 2C27 -2C58 2C28 -2C59 2C29 -2C5A 2C2A -2C5B 2C2B -2C5C 2C2C -2C5D 2C2D -2C5E 2C2E -2C61 2C60 -2C65 023A -2C66 023E -2C68 2C67 -2C6A 2C69 -2C6C 2C6B -2C73 2C72 -2C76 2C75 -2C81 2C80 -2C83 2C82 -2C85 2C84 -2C87 2C86 -2C89 2C88 -2C8B 2C8A -2C8D 2C8C -2C8F 2C8E -2C91 2C90 -2C93 2C92 -2C95 2C94 -2C97 2C96 -2C99 2C98 -2C9B 2C9A -2C9D 2C9C -2C9F 2C9E -2CA1 2CA0 -2CA3 2CA2 -2CA5 2CA4 -2CA7 2CA6 -2CA9 2CA8 -2CAB 2CAA -2CAD 2CAC -2CAF 2CAE -2CB1 2CB0 -2CB3 2CB2 -2CB5 2CB4 -2CB7 2CB6 -2CB9 2CB8 -2CBB 2CBA -2CBD 2CBC -2CBF 2CBE -2CC1 2CC0 -2CC3 2CC2 -2CC5 2CC4 -2CC7 2CC6 -2CC9 2CC8 -2CCB 2CCA -2CCD 2CCC -2CCF 2CCE -2CD1 2CD0 -2CD3 2CD2 -2CD5 2CD4 -2CD7 2CD6 -2CD9 2CD8 -2CDB 2CDA -2CDD 2CDC -2CDF 2CDE -2CE1 2CE0 -2CE3 2CE2 -2D00 10A0 -2D01 10A1 -2D02 10A2 -2D03 10A3 -2D04 10A4 -2D05 10A5 -2D06 10A6 -2D07 10A7 -2D08 10A8 -2D09 10A9 -2D0A 10AA -2D0B 10AB -2D0C 10AC -2D0D 10AD -2D0E 10AE -2D0F 10AF -2D10 10B0 -2D11 10B1 -2D12 10B2 -2D13 10B3 -2D14 10B4 -2D15 10B5 -2D16 10B6 -2D17 10B7 -2D18 10B8 -2D19 10B9 -2D1A 10BA -2D1B 10BB -2D1C 10BC -2D1D 10BD -2D1E 10BE -2D1F 10BF -2D20 10C0 -2D21 10C1 -2D22 10C2 -2D23 10C3 -2D24 10C4 -2D25 10C5 -A641 A640 -A643 A642 -A645 A644 -A647 A646 -A649 A648 -A64B A64A -A64D A64C -A64F A64E -A651 A650 -A653 A652 -A655 A654 -A657 A656 -A659 A658 -A65B A65A -A65D A65C -A65F A65E -A663 A662 -A665 A664 -A667 A666 -A669 A668 -A66B A66A -A66D A66C -A681 A680 -A683 A682 -A685 A684 -A687 A686 -A689 A688 -A68B A68A -A68D A68C -A68F A68E -A691 A690 -A693 A692 -A695 A694 -A697 A696 -A723 A722 -A725 A724 -A727 A726 -A729 A728 -A72B A72A -A72D A72C -A72F A72E -A733 A732 -A735 A734 -A737 A736 -A739 A738 -A73B A73A -A73D A73C -A73F A73E -A741 A740 -A743 A742 -A745 A744 -A747 A746 -A749 A748 -A74B A74A -A74D A74C -A74F A74E -A751 A750 -A753 A752 -A755 A754 -A757 A756 -A759 A758 -A75B A75A -A75D A75C -A75F A75E -A761 A760 -A763 A762 -A765 A764 -A767 A766 -A769 A768 -A76B A76A -A76D A76C -A76F A76E -A77A A779 -A77C A77B -A77F A77E -A781 A780 -A783 A782 -A785 A784 -A787 A786 -A78C A78B -FF41 FF21 -FF42 FF22 -FF43 FF23 -FF44 FF24 -FF45 FF25 -FF46 FF26 -FF47 FF27 -FF48 FF28 -FF49 FF29 -FF4A FF2A -FF4B FF2B -FF4C FF2C -FF4D FF2D -FF4E FF2E -FF4F FF2F -FF50 FF30 -FF51 FF31 -FF52 FF32 -FF53 FF33 -FF54 FF34 -FF55 FF35 -FF56 FF36 -FF57 FF37 -FF58 FF38 -FF59 FF39 -FF5A FF3A -10428 10400 -10429 10401 -1042A 10402 -1042B 10403 -1042C 10404 -1042D 10405 -1042E 10406 -1042F 10407 -10430 10408 -10431 10409 -10432 1040A -10433 1040B -10434 1040C -10435 1040D -10436 1040E -10437 1040F -10438 10410 -10439 10411 -1043A 10412 -1043B 10413 -1043C 10414 -1043D 10415 -1043E 10416 -1043F 10417 -10440 10418 -10441 10419 -10442 1041A -10443 1041B -10444 1041C -10445 1041D -10446 1041E -10447 1041F -10448 10420 -10449 10421 -1044A 10422 -1044B 10423 -1044C 10424 -1044D 10425 -1044E 10426 -1044F 10427 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/AL.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/AL.pl deleted file mode 100644 index e7ec056..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/AL.pl +++ /dev/null @@ -1,35 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Arabic_Letter' -# -return <<'END'; -0608 -060B -060D -061B -061E 061F -0621 064A -066D 066F -0671 06D5 -06E5 06E6 -06EE 06EF -06FA 070D -0710 -0712 072F -074D 07A5 -07B1 -FB50 FBB1 -FBD3 FD3D -FD50 FD8F -FD92 FDC7 -FDF0 FDFC -FE70 FE74 -FE76 FEFC -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/AN.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/AN.pl deleted file mode 100644 index a74fcec..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/AN.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Arabic_Number' -# -return <<'END'; -0600 0603 -0660 0669 -066B 066C -06DD -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/B.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/B.pl deleted file mode 100644 index 6b669ef..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/B.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Paragraph_Separator' -# -return <<'END'; -000A -000D -001C 001E -0085 -2029 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/BN.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/BN.pl deleted file mode 100644 index 9cde85b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/BN.pl +++ /dev/null @@ -1,26 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Boundary_Neutral' -# -return <<'END'; -0000 0008 -000E 001B -007F 0084 -0086 009F -00AD -070F -200B 200D -2060 2064 -206A 206F -FEFF -1D173 1D17A -E0001 -E0020 E007F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/CS.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/CS.pl deleted file mode 100644 index 8cc1b46..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/CS.pl +++ /dev/null @@ -1,26 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Common_Separator' -# -return <<'END'; -002C -002E 002F -003A -00A0 -060C -202F -2044 -FE50 -FE52 -FE55 -FF0C -FF0E FF0F -FF1A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/EN.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/EN.pl deleted file mode 100644 index 17388a9..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/EN.pl +++ /dev/null @@ -1,23 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'European_Number' -# -return <<'END'; -0030 0039 -00B2 00B3 -00B9 -06F0 06F9 -2070 -2074 2079 -2080 2089 -2488 249B -FF10 FF19 -1D7CE 1D7FF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/ES.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/ES.pl deleted file mode 100644 index a6b05df..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/ES.pl +++ /dev/null @@ -1,22 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'European_Separator' -# -return <<'END'; -002B -002D -207A 207B -208A 208B -2212 -FB29 -FE62 FE63 -FF0B -FF0D -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/ET.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/ET.pl deleted file mode 100644 index 6f36728..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/ET.pl +++ /dev/null @@ -1,32 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'European_Terminator' -# -return <<'END'; -0023 0025 -00A2 00A5 -00B0 00B1 -0609 060A -066A -09F2 09F3 -0AF1 -0BF9 -0E3F -17DB -2030 2034 -20A0 20B5 -212E -2213 -FE5F -FE69 FE6A -FF03 FF05 -FFE0 FFE1 -FFE5 FFE6 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/L.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/L.pl deleted file mode 100644 index 3061c7b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/L.pl +++ /dev/null @@ -1,457 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Left_To_Right' -# -return <<'END'; -0041 005A -0061 007A -00AA -00B5 -00BA -00C0 00D6 -00D8 00F6 -00F8 02B8 -02BB 02C1 -02D0 02D1 -02E0 02E4 -02EE -0370 0373 -0376 0377 -037A 037D -0386 -0388 038A -038C -038E 03A1 -03A3 03F5 -03F7 0482 -048A 0523 -0531 0556 -0559 055F -0561 0587 -0589 -0903 0939 -093D 0940 -0949 094C -0950 -0958 0961 -0964 0972 -097B 097F -0982 0983 -0985 098C -098F 0990 -0993 09A8 -09AA 09B0 -09B2 -09B6 09B9 -09BD 09C0 -09C7 09C8 -09CB 09CC -09CE -09D7 -09DC 09DD -09DF 09E1 -09E6 09F1 -09F4 09FA -0A03 -0A05 0A0A -0A0F 0A10 -0A13 0A28 -0A2A 0A30 -0A32 0A33 -0A35 0A36 -0A38 0A39 -0A3E 0A40 -0A59 0A5C -0A5E -0A66 0A6F -0A72 0A74 -0A83 -0A85 0A8D -0A8F 0A91 -0A93 0AA8 -0AAA 0AB0 -0AB2 0AB3 -0AB5 0AB9 -0ABD 0AC0 -0AC9 -0ACB 0ACC -0AD0 -0AE0 0AE1 -0AE6 0AEF -0B02 0B03 -0B05 0B0C -0B0F 0B10 -0B13 0B28 -0B2A 0B30 -0B32 0B33 -0B35 0B39 -0B3D 0B3E -0B40 -0B47 0B48 -0B4B 0B4C -0B57 -0B5C 0B5D -0B5F 0B61 -0B66 0B71 -0B83 -0B85 0B8A -0B8E 0B90 -0B92 0B95 -0B99 0B9A -0B9C -0B9E 0B9F -0BA3 0BA4 -0BA8 0BAA -0BAE 0BB9 -0BBE 0BBF -0BC1 0BC2 -0BC6 0BC8 -0BCA 0BCC -0BD0 -0BD7 -0BE6 0BF2 -0C01 0C03 -0C05 0C0C -0C0E 0C10 -0C12 0C28 -0C2A 0C33 -0C35 0C39 -0C3D -0C41 0C44 -0C58 0C59 -0C60 0C61 -0C66 0C6F -0C7F -0C82 0C83 -0C85 0C8C -0C8E 0C90 -0C92 0CA8 -0CAA 0CB3 -0CB5 0CB9 -0CBD 0CC4 -0CC6 0CC8 -0CCA 0CCB -0CD5 0CD6 -0CDE -0CE0 0CE1 -0CE6 0CEF -0D02 0D03 -0D05 0D0C -0D0E 0D10 -0D12 0D28 -0D2A 0D39 -0D3D 0D40 -0D46 0D48 -0D4A 0D4C -0D57 -0D60 0D61 -0D66 0D75 -0D79 0D7F -0D82 0D83 -0D85 0D96 -0D9A 0DB1 -0DB3 0DBB -0DBD -0DC0 0DC6 -0DCF 0DD1 -0DD8 0DDF -0DF2 0DF4 -0E01 0E30 -0E32 0E33 -0E40 0E46 -0E4F 0E5B -0E81 0E82 -0E84 -0E87 0E88 -0E8A -0E8D -0E94 0E97 -0E99 0E9F -0EA1 0EA3 -0EA5 -0EA7 -0EAA 0EAB -0EAD 0EB0 -0EB2 0EB3 -0EBD -0EC0 0EC4 -0EC6 -0ED0 0ED9 -0EDC 0EDD -0F00 0F17 -0F1A 0F34 -0F36 -0F38 -0F3E 0F47 -0F49 0F6C -0F7F -0F85 -0F88 0F8B -0FBE 0FC5 -0FC7 0FCC -0FCE 0FD4 -1000 102C -1031 -1038 -103B 103C -103F 1057 -105A 105D -1061 1070 -1075 1081 -1083 1084 -1087 108C -108E 1099 -109E 10C5 -10D0 10FC -1100 1159 -115F 11A2 -11A8 11F9 -1200 1248 -124A 124D -1250 1256 -1258 -125A 125D -1260 1288 -128A 128D -1290 12B0 -12B2 12B5 -12B8 12BE -12C0 -12C2 12C5 -12C8 12D6 -12D8 1310 -1312 1315 -1318 135A -1360 137C -1380 138F -13A0 13F4 -1401 1676 -1681 169A -16A0 16F0 -1700 170C -170E 1711 -1720 1731 -1735 1736 -1740 1751 -1760 176C -176E 1770 -1780 17B6 -17BE 17C5 -17C7 17C8 -17D4 17DA -17DC -17E0 17E9 -1810 1819 -1820 1877 -1880 18A8 -18AA -1900 191C -1923 1926 -1929 192B -1930 1931 -1933 1938 -1946 196D -1970 1974 -1980 19A9 -19B0 19C9 -19D0 19D9 -1A00 1A16 -1A19 1A1B -1A1E 1A1F -1B04 1B33 -1B35 -1B3B -1B3D 1B41 -1B43 1B4B -1B50 1B6A -1B74 1B7C -1B82 1BA1 -1BA6 1BA7 -1BAA -1BAE 1BB9 -1C00 1C2B -1C34 1C35 -1C3B 1C49 -1C4D 1C7F -1D00 1DBF -1E00 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FBC -1FBE -1FC2 1FC4 -1FC6 1FCC -1FD0 1FD3 -1FD6 1FDB -1FE0 1FEC -1FF2 1FF4 -1FF6 1FFC -200E -2071 -207F -2090 2094 -2102 -2107 -210A 2113 -2115 -2119 211D -2124 -2126 -2128 -212A 212D -212F 2139 -213C 213F -2145 2149 -214E 214F -2160 2188 -2336 237A -2395 -249C 24E9 -26AC -2800 28FF -2C00 2C2E -2C30 2C5E -2C60 2C6F -2C71 2C7D -2C80 2CE4 -2D00 2D25 -2D30 2D65 -2D6F -2D80 2D96 -2DA0 2DA6 -2DA8 2DAE -2DB0 2DB6 -2DB8 2DBE -2DC0 2DC6 -2DC8 2DCE -2DD0 2DD6 -2DD8 2DDE -3005 3007 -3021 3029 -3031 3035 -3038 303C -3041 3096 -309D 309F -30A1 30FA -30FC 30FF -3105 312D -3131 318E -3190 31B7 -31F0 321C -3220 3243 -3260 327B -327F 32B0 -32C0 32CB -32D0 32FE -3300 3376 -337B 33DD -33E0 33FE -A000 A48C -A500 A60C -A610 A62B -A640 A65F -A662 A66E -A680 A697 -A722 A787 -A789 A78C -A7FB A801 -A803 A805 -A807 A80A -A80C A824 -A827 -A840 A873 -A880 A8C3 -A8CE A8D9 -A900 A925 -A92E A946 -A952 A953 -A95F -AA00 AA28 -AA2F AA30 -AA33 AA34 -AA40 AA42 -AA44 AA4B -AA4D -AA50 AA59 -AA5C AA5F -F900 FA2D -FA30 FA6A -FA70 FAD9 -FB00 FB06 -FB13 FB17 -FF21 FF3A -FF41 FF5A -FF66 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -10000 1000B -1000D 10026 -10028 1003A -1003C 1003D -1003F 1004D -10050 1005D -10080 100FA -10100 -10102 -10107 10133 -10137 1013F -101D0 101FC -10280 1029C -102A0 102D0 -10300 1031E -10320 10323 -10330 1034A -10380 1039D -1039F 103C3 -103C8 103D5 -10400 1049D -104A0 104A9 -12000 1236E -12400 12462 -12470 12473 -1D000 1D0F5 -1D100 1D126 -1D129 1D166 -1D16A 1D172 -1D183 1D184 -1D18C 1D1A9 -1D1AE 1D1DD -1D360 1D371 -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D7CB -2F800 2FA1D -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/LRE.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/LRE.pl deleted file mode 100644 index 5dac857..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/LRE.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Left_To_Right_Embedding' -# -return <<'END'; -202A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/LRO.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/LRO.pl deleted file mode 100644 index 6e83c23..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/LRO.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Left_To_Right_Override' -# -return <<'END'; -202D -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/NSM.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/NSM.pl deleted file mode 100644 index b670669..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/NSM.pl +++ /dev/null @@ -1,169 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Nonspacing_Mark' -# -return <<'END'; -0300 036F -0483 0489 -0591 05BD -05BF -05C1 05C2 -05C4 05C5 -05C7 -0610 061A -064B 065E -0670 -06D6 06DC -06DE 06E4 -06E7 06E8 -06EA 06ED -0711 -0730 074A -07A6 07B0 -07EB 07F3 -0901 0902 -093C -0941 0948 -094D -0951 0954 -0962 0963 -0981 -09BC -09C1 09C4 -09CD -09E2 09E3 -0A01 0A02 -0A3C -0A41 0A42 -0A47 0A48 -0A4B 0A4D -0A51 -0A70 0A71 -0A75 -0A81 0A82 -0ABC -0AC1 0AC5 -0AC7 0AC8 -0ACD -0AE2 0AE3 -0B01 -0B3C -0B3F -0B41 0B44 -0B4D -0B56 -0B62 0B63 -0B82 -0BC0 -0BCD -0C3E 0C40 -0C46 0C48 -0C4A 0C4D -0C55 0C56 -0C62 0C63 -0CBC -0CCC 0CCD -0CE2 0CE3 -0D41 0D44 -0D4D -0D62 0D63 -0DCA -0DD2 0DD4 -0DD6 -0E31 -0E34 0E3A -0E47 0E4E -0EB1 -0EB4 0EB9 -0EBB 0EBC -0EC8 0ECD -0F18 0F19 -0F35 -0F37 -0F39 -0F71 0F7E -0F80 0F84 -0F86 0F87 -0F90 0F97 -0F99 0FBC -0FC6 -102D 1030 -1032 1037 -1039 103A -103D 103E -1058 1059 -105E 1060 -1071 1074 -1082 -1085 1086 -108D -135F -1712 1714 -1732 1734 -1752 1753 -1772 1773 -17B7 17BD -17C6 -17C9 17D3 -17DD -180B 180D -18A9 -1920 1922 -1927 1928 -1932 -1939 193B -1A17 1A18 -1B00 1B03 -1B34 -1B36 1B3A -1B3C -1B42 -1B6B 1B73 -1B80 1B81 -1BA2 1BA5 -1BA8 1BA9 -1C2C 1C33 -1C36 1C37 -1DC0 1DE6 -1DFE 1DFF -20D0 20F0 -2DE0 2DFF -302A 302F -3099 309A -A66F A672 -A67C A67D -A802 -A806 -A80B -A825 A826 -A8C4 -A926 A92D -A947 A951 -AA29 AA2E -AA31 AA32 -AA35 AA36 -AA43 -AA4C -FB1E -FE00 FE0F -FE20 FE26 -101FD -10A01 10A03 -10A05 10A06 -10A0C 10A0F -10A38 10A3A -10A3F -1D167 1D169 -1D17B 1D182 -1D185 1D18B -1D1AA 1D1AD -1D242 1D244 -E0100 E01EF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/ON.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/ON.pl deleted file mode 100644 index 2d7bfc2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/ON.pl +++ /dev/null @@ -1,166 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Other_Neutral' -# -return <<'END'; -0021 0022 -0026 002A -003B 0040 -005B 0060 -007B 007E -00A1 -00A6 00A9 -00AB 00AC -00AE 00AF -00B4 -00B6 00B8 -00BB 00BF -00D7 -00F7 -02B9 02BA -02C2 02CF -02D2 02DF -02E5 02ED -02EF 02FF -0374 0375 -037E -0384 0385 -0387 -03F6 -058A -0606 0607 -060E 060F -06E9 -07F6 07F9 -0BF3 0BF8 -0BFA -0C78 0C7E -0CF1 0CF2 -0F3A 0F3D -1390 1399 -169B 169C -17F0 17F9 -1800 180A -1940 -1944 1945 -19DE 19FF -1FBD -1FBF 1FC1 -1FCD 1FCF -1FDD 1FDF -1FED 1FEF -1FFD 1FFE -2010 2027 -2035 2043 -2045 205E -207C 207E -208C 208E -2100 2101 -2103 2106 -2108 2109 -2114 -2116 2118 -211E 2123 -2125 -2127 -2129 -213A 213B -2140 2144 -214A 214D -2153 215F -2190 2211 -2214 2335 -237B 2394 -2396 23E7 -2400 2426 -2440 244A -2460 2487 -24EA 269D -26A0 26AB -26AD 26BC -26C0 26C3 -2701 2704 -2706 2709 -270C 2727 -2729 274B -274D -274F 2752 -2756 -2758 275E -2761 2794 -2798 27AF -27B1 27BE -27C0 27CA -27CC -27D0 27FF -2900 2B4C -2B50 2B54 -2CE5 2CEA -2CF9 2CFF -2E00 2E30 -2E80 2E99 -2E9B 2EF3 -2F00 2FD5 -2FF0 2FFB -3001 3004 -3008 3020 -3030 -3036 3037 -303D 303F -309B 309C -30A0 -30FB -31C0 31E3 -321D 321E -3250 325F -327C 327E -32B1 32BF -32CC 32CF -3377 337A -33DE 33DF -33FF -4DC0 4DFF -A490 A4C6 -A60D A60F -A673 -A67E A67F -A700 A721 -A788 -A828 A82B -A874 A877 -FD3E FD3F -FDFD -FE10 FE19 -FE30 FE4F -FE51 -FE54 -FE56 FE5E -FE60 FE61 -FE64 FE66 -FE68 -FE6B -FF01 FF02 -FF06 FF0A -FF1B FF20 -FF3B FF40 -FF5B FF65 -FFE2 FFE4 -FFE8 FFEE -FFF9 FFFD -10101 -10140 1018A -10190 1019B -1091F -1D200 1D241 -1D245 -1D300 1D356 -1F000 1F02B -1F030 1F093 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/PDF.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/PDF.pl deleted file mode 100644 index 765eeb1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/PDF.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Pop_Directional_Format' -# -return <<'END'; -202C -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/R.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/R.pl deleted file mode 100644 index 5ef4fb2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/R.pl +++ /dev/null @@ -1,46 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Right_To_Left' -# -return <<'END'; -05BE -05C0 -05C3 -05C6 -05D0 05EA -05F0 05F4 -07C0 07EA -07F4 07F5 -07FA -200F -FB1D -FB1F FB28 -FB2A FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FB4F -10800 10805 -10808 -1080A 10835 -10837 10838 -1083C -1083F -10900 10919 -10920 10939 -1093F -10A00 -10A10 10A13 -10A15 10A17 -10A19 10A33 -10A40 10A47 -10A50 10A58 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/RLE.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/RLE.pl deleted file mode 100644 index 29a9b10..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/RLE.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Right_To_Left_Embedding' -# -return <<'END'; -202B -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/RLO.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/RLO.pl deleted file mode 100644 index 7736447..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/RLO.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Right_To_Left_Override' -# -return <<'END'; -202E -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/S.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/S.pl deleted file mode 100644 index b498265..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/S.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'Segment_Separator' -# -return <<'END'; -0009 -000B -001F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/WS.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/WS.pl deleted file mode 100644 index d71429d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/bc/WS.pl +++ /dev/null @@ -1,21 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# BidiClass category 'White_Space' -# -return <<'END'; -000C -0020 -1680 -180E -2000 200A -2028 -205F -3000 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/A.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/A.pl deleted file mode 100644 index 46cb889..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/A.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Above' -# -return <<'END'; -00E6 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/AL.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/AL.pl deleted file mode 100644 index 5384fcd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/AL.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Above_Left' -# -return <<'END'; -00E4 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/AR.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/AR.pl deleted file mode 100644 index 947f532..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/AR.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Above_Right' -# -return <<'END'; -00E8 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/ATAR.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/ATAR.pl deleted file mode 100644 index 6b377c9..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/ATAR.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Attached_Above_Right' -# -return <<'END'; -00D8 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/ATB.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/ATB.pl deleted file mode 100644 index 205b549..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/ATB.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Attached_Below' -# -return <<'END'; -00CA -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/ATBL.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/ATBL.pl deleted file mode 100644 index 70447c5..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/ATBL.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Attached_Below_Left' -# -return <<'END'; -00C8 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/B.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/B.pl deleted file mode 100644 index 85689e3..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/B.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Below' -# -return <<'END'; -00DC -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/BL.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/BL.pl deleted file mode 100644 index 3d1e5dd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/BL.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Below_Left' -# -return <<'END'; -00DA -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/BR.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/BR.pl deleted file mode 100644 index 43ecb6a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/BR.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Below_Right' -# -return <<'END'; -00DE -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/DA.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/DA.pl deleted file mode 100644 index c251e3f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/DA.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Double_Above' -# -return <<'END'; -00EA -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/DB.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/DB.pl deleted file mode 100644 index ff65ab1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/DB.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Double_Below' -# -return <<'END'; -00E9 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/IS.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/IS.pl deleted file mode 100644 index 2ef59a1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/IS.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Iota_Subscript' -# -return <<'END'; -00F0 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/KV.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/KV.pl deleted file mode 100644 index fc45fb8..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/KV.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Kana_Voicing' -# -return <<'END'; -0008 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/L.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/L.pl deleted file mode 100644 index 23eee94..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/L.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Left' -# -return <<'END'; -00E0 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/NK.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/NK.pl deleted file mode 100644 index 685a062..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/NK.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Nukta' -# -return <<'END'; -0007 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/NR.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/NR.pl deleted file mode 100644 index 67e132c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/NR.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Not_Reordered' -# -return <<'END'; -0000 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/OV.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/OV.pl deleted file mode 100644 index a540c40..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/OV.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Overlay' -# -return <<'END'; -0001 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/R.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/R.pl deleted file mode 100644 index 84e3d95..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/R.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Right' -# -return <<'END'; -00E2 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/VR.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/VR.pl deleted file mode 100644 index 8e57eb2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ccc/VR.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# CombiningClass category 'Virama' -# -return <<'END'; -0009 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Can.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Can.pl deleted file mode 100644 index 8a6aad1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Can.pl +++ /dev/null @@ -1,236 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'Canonical' -# -return <<'END'; -00C0 00C5 -00C7 00CF -00D1 00D6 -00D9 00DD -00E0 00E5 -00E7 00EF -00F1 00F6 -00F9 00FD -00FF 010F -0112 0125 -0128 0130 -0134 0137 -0139 013E -0143 0148 -014C 0151 -0154 0165 -0168 017E -01A0 01A1 -01AF 01B0 -01CD 01DC -01DE 01E3 -01E6 01F0 -01F4 01F5 -01F8 021B -021E 021F -0226 0233 -0340 0341 -0343 0344 -0374 -037E -0385 038A -038C -038E 0390 -03AA 03B0 -03CA 03CE -03D3 03D4 -0400 0401 -0403 -0407 -040C 040E -0419 -0439 -0450 0451 -0453 -0457 -045C 045E -0476 0477 -04C1 04C2 -04D0 04D3 -04D6 04D7 -04DA 04DF -04E2 04E7 -04EA 04F5 -04F8 04F9 -0622 0626 -06C0 -06C2 -06D3 -0929 -0931 -0934 -0958 095F -09CB 09CC -09DC 09DD -09DF -0A33 -0A36 -0A59 0A5B -0A5E -0B48 -0B4B 0B4C -0B5C 0B5D -0B94 -0BCA 0BCC -0C48 -0CC0 -0CC7 0CC8 -0CCA 0CCB -0D4A 0D4C -0DDA -0DDC 0DDE -0F43 -0F4D -0F52 -0F57 -0F5C -0F69 -0F73 -0F75 0F76 -0F78 -0F81 -0F93 -0F9D -0FA2 -0FA7 -0FAC -0FB9 -1026 -1B06 -1B08 -1B0A -1B0C -1B0E -1B12 -1B3B -1B3D -1B40 1B41 -1B43 -1E00 1E99 -1E9B -1EA0 1EF9 -1F00 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FBC -1FBE -1FC1 1FC4 -1FC6 1FD3 -1FD6 1FDB -1FDD 1FEF -1FF2 1FF4 -1FF6 1FFD -2000 2001 -2126 -212A 212B -219A 219B -21AE -21CD 21CF -2204 -2209 -220C -2224 -2226 -2241 -2244 -2247 -2249 -2260 -2262 -226D 2271 -2274 2275 -2278 2279 -2280 2281 -2284 2285 -2288 2289 -22AC 22AF -22E0 22E3 -22EA 22ED -2329 232A -2ADC -304C -304E -3050 -3052 -3054 -3056 -3058 -305A -305C -305E -3060 -3062 -3065 -3067 -3069 -3070 3071 -3073 3074 -3076 3077 -3079 307A -307C 307D -3094 -309E -30AC -30AE -30B0 -30B2 -30B4 -30B6 -30B8 -30BA -30BC -30BE -30C0 -30C2 -30C5 -30C7 -30C9 -30D0 30D1 -30D3 30D4 -30D6 30D7 -30D9 30DA -30DC 30DD -30F4 -30F7 30FA -30FE -F900 FA0D -FA10 -FA12 -FA15 FA1E -FA20 -FA22 -FA25 FA26 -FA2A FA2D -FA30 FA6A -FA70 FAD9 -FB1D -FB1F -FB2A FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FB4E -1D15E 1D164 -1D1BB 1D1C0 -2F800 2FA1D -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Com.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Com.pl deleted file mode 100644 index 13eb6dd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Com.pl +++ /dev/null @@ -1,826 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'Compat' -# -return <<'END'; -00A0 -00A8 -00A8 -00AA -00AF -00AF -00B2 00B4 -00B4 00B5 -00B5 -00B8 -00B8 00BA -00BC 00BE -0132 -0132 0133 -0133 -013F -013F 0140 -0140 -0149 -0149 -017F -017F -01C4 -01C4 01C5 -01C5 01C6 -01C6 01C7 -01C7 01C8 -01C8 01C9 -01C9 01CA -01CA 01CB -01CB 01CC -01CC -01F1 -01F1 01F2 -01F2 01F3 -01F3 -02B0 02B8 -02D8 -02D8 02D9 -02D9 02DA -02DA 02DB -02DB 02DC -02DC 02DD -02DD -02E0 02E4 -037A -037A -0384 -0384 -03D0 -03D0 03D1 -03D1 03D2 -03D2 -03D5 -03D5 03D6 -03D6 -03F0 -03F0 03F1 -03F1 03F2 -03F2 -03F4 -03F4 03F5 -03F5 -03F9 -03F9 -0587 -0587 -0675 -0675 0676 -0676 0677 -0677 0678 -0678 -0E33 -0E33 -0EB3 -0EB3 -0EDC -0EDC 0EDD -0EDD -0F0C -0F77 -0F77 -0F79 -0F79 -10FC -1D2C 1D2E -1D30 1D3A -1D3C 1D4D -1D4F 1D6A -1D78 -1D9B 1DBF -1E9A -1E9A -1FBD -1FBD -1FBF -1FBF 1FC0 -1FC0 -1FFE -1FFE -2002 -2002 2003 -2003 2004 -2004 2005 -2005 2006 -2006 2008 -2008 2009 -2009 200A -200A -2011 -2017 -2017 -2024 -2024 2025 -2025 2026 -2026 -202F -2033 -2033 2034 -2034 -2036 -2036 2037 -2037 -203C -203C -203E -203E -2047 -2047 2048 -2048 2049 -2049 -2057 -2057 -205F -205F -2070 2071 -2074 208E -2090 2094 -20A8 -20A8 -2100 -2100 2101 -2101 2103 -2103 -2105 -2105 2106 -2106 2107 -2107 -2109 -2109 2113 -2115 2116 -2116 -2119 211D -2120 2121 -2121 2122 -2124 -2128 -212C 212D -212F 2131 -2133 2135 -2135 2136 -2136 2137 -2137 2138 -2138 2139 -213B -213B 2140 -2145 2149 -2153 2160 -2160 2161 -2161 2162 -2162 2163 -2163 2164 -2164 2165 -2165 2166 -2166 2167 -2167 2168 -2168 2169 -2169 216A -216A 216B -216B 216C -216C 216D -216D 216E -216E 216F -216F 2170 -2170 2171 -2171 2172 -2172 2173 -2173 2174 -2174 2175 -2175 2176 -2176 2177 -2177 2178 -2178 2179 -2179 217A -217A 217B -217B 217C -217C 217D -217D 217E -217E 217F -217F -222C -222C 222D -222D -222F -222F 2230 -2230 -2460 2474 -2474 2475 -2475 2476 -2476 2477 -2477 2478 -2478 2479 -2479 247A -247A 247B -247B 247C -247C 247D -247D 247E -247E 247F -247F 2480 -2480 2481 -2481 2482 -2482 2483 -2483 2484 -2484 2485 -2485 2486 -2486 2487 -2487 2488 -2488 2489 -2489 248A -248A 248B -248B 248C -248C 248D -248D 248E -248E 248F -248F 2490 -2490 2491 -2491 2492 -2492 2493 -2493 2494 -2494 2495 -2495 2496 -2496 2497 -2497 2498 -2498 2499 -2499 249A -249A 249B -249B 249C -249C 249D -249D 249E -249E 249F -249F 24A0 -24A0 24A1 -24A1 24A2 -24A2 24A3 -24A3 24A4 -24A4 24A5 -24A5 24A6 -24A6 24A7 -24A7 24A8 -24A8 24A9 -24A9 24AA -24AA 24AB -24AB 24AC -24AC 24AD -24AD 24AE -24AE 24AF -24AF 24B0 -24B0 24B1 -24B1 24B2 -24B2 24B3 -24B3 24B4 -24B4 24B5 -24B5 24EA -2A0C -2A0C -2A74 -2A74 2A75 -2A75 2A76 -2A76 -2C7C 2C7D -2D6F -2E9F -2E9F -2EF3 -2EF3 -2F00 -2F00 2F01 -2F01 2F02 -2F02 2F03 -2F03 2F04 -2F04 2F05 -2F05 2F06 -2F06 2F07 -2F07 2F08 -2F08 2F09 -2F09 2F0A -2F0A 2F0B -2F0B 2F0C -2F0C 2F0D -2F0D 2F0E -2F0E 2F0F -2F0F 2F10 -2F10 2F11 -2F11 2F12 -2F12 2F13 -2F13 2F14 -2F14 2F15 -2F15 2F16 -2F16 2F17 -2F17 2F18 -2F18 2F19 -2F19 2F1A -2F1A 2F1B -2F1B 2F1C -2F1C 2F1D -2F1D 2F1E -2F1E 2F1F -2F1F 2F20 -2F20 2F21 -2F21 2F22 -2F22 2F23 -2F23 2F24 -2F24 2F25 -2F25 2F26 -2F26 2F27 -2F27 2F28 -2F28 2F29 -2F29 2F2A -2F2A 2F2B -2F2B 2F2C -2F2C 2F2D -2F2D 2F2E -2F2E 2F2F -2F2F 2F30 -2F30 2F31 -2F31 2F32 -2F32 2F33 -2F33 2F34 -2F34 2F35 -2F35 2F36 -2F36 2F37 -2F37 2F38 -2F38 2F39 -2F39 2F3A -2F3A 2F3B -2F3B 2F3C -2F3C 2F3D -2F3D 2F3E -2F3E 2F3F -2F3F 2F40 -2F40 2F41 -2F41 2F42 -2F42 2F43 -2F43 2F44 -2F44 2F45 -2F45 2F46 -2F46 2F47 -2F47 2F48 -2F48 2F49 -2F49 2F4A -2F4A 2F4B -2F4B 2F4C -2F4C 2F4D -2F4D 2F4E -2F4E 2F4F -2F4F 2F50 -2F50 2F51 -2F51 2F52 -2F52 2F53 -2F53 2F54 -2F54 2F55 -2F55 2F56 -2F56 2F57 -2F57 2F58 -2F58 2F59 -2F59 2F5A -2F5A 2F5B -2F5B 2F5C -2F5C 2F5D -2F5D 2F5E -2F5E 2F5F -2F5F 2F60 -2F60 2F61 -2F61 2F62 -2F62 2F63 -2F63 2F64 -2F64 2F65 -2F65 2F66 -2F66 2F67 -2F67 2F68 -2F68 2F69 -2F69 2F6A -2F6A 2F6B -2F6B 2F6C -2F6C 2F6D -2F6D 2F6E -2F6E 2F6F -2F6F 2F70 -2F70 2F71 -2F71 2F72 -2F72 2F73 -2F73 2F74 -2F74 2F75 -2F75 2F76 -2F76 2F77 -2F77 2F78 -2F78 2F79 -2F79 2F7A -2F7A 2F7B -2F7B 2F7C -2F7C 2F7D -2F7D 2F7E -2F7E 2F7F -2F7F 2F80 -2F80 2F81 -2F81 2F82 -2F82 2F83 -2F83 2F84 -2F84 2F85 -2F85 2F86 -2F86 2F87 -2F87 2F88 -2F88 2F89 -2F89 2F8A -2F8A 2F8B -2F8B 2F8C -2F8C 2F8D -2F8D 2F8E -2F8E 2F8F -2F8F 2F90 -2F90 2F91 -2F91 2F92 -2F92 2F93 -2F93 2F94 -2F94 2F95 -2F95 2F96 -2F96 2F97 -2F97 2F98 -2F98 2F99 -2F99 2F9A -2F9A 2F9B -2F9B 2F9C -2F9C 2F9D -2F9D 2F9E -2F9E 2F9F -2F9F 2FA0 -2FA0 2FA1 -2FA1 2FA2 -2FA2 2FA3 -2FA3 2FA4 -2FA4 2FA5 -2FA5 2FA6 -2FA6 2FA7 -2FA7 2FA8 -2FA8 2FA9 -2FA9 2FAA -2FAA 2FAB -2FAB 2FAC -2FAC 2FAD -2FAD 2FAE -2FAE 2FAF -2FAF 2FB0 -2FB0 2FB1 -2FB1 2FB2 -2FB2 2FB3 -2FB3 2FB4 -2FB4 2FB5 -2FB5 2FB6 -2FB6 2FB7 -2FB7 2FB8 -2FB8 2FB9 -2FB9 2FBA -2FBA 2FBB -2FBB 2FBC -2FBC 2FBD -2FBD 2FBE -2FBE 2FBF -2FBF 2FC0 -2FC0 2FC1 -2FC1 2FC2 -2FC2 2FC3 -2FC3 2FC4 -2FC4 2FC5 -2FC5 2FC6 -2FC6 2FC7 -2FC7 2FC8 -2FC8 2FC9 -2FC9 2FCA -2FCA 2FCB -2FCB 2FCC -2FCC 2FCD -2FCD 2FCE -2FCE 2FCF -2FCF 2FD0 -2FD0 2FD1 -2FD1 2FD2 -2FD2 2FD3 -2FD3 2FD4 -2FD4 2FD5 -2FD5 -3000 -3036 -3036 -3038 -3038 3039 -3039 303A -303A -309B -309B 309C -309C -309F -30FF -3131 -3131 3132 -3132 3133 -3133 3134 -3134 3135 -3135 3136 -3136 3137 -3137 3138 -3138 3139 -3139 313A -313A 313B -313B 313C -313C 313D -313D 313E -313E 313F -313F 3140 -3140 3141 -3141 3142 -3142 3143 -3143 3144 -3144 3145 -3145 3146 -3146 3147 -3147 3148 -3148 3149 -3149 314A -314A 314B -314B 314C -314C 314D -314D 314E -314E 314F -314F 3150 -3150 3151 -3151 3152 -3152 3153 -3153 3154 -3154 3155 -3155 3156 -3156 3157 -3157 3158 -3158 3159 -3159 315A -315A 315B -315B 315C -315C 315D -315D 315E -315E 315F -315F 3160 -3160 3161 -3161 3162 -3162 3163 -3163 3164 -3164 3165 -3165 3166 -3166 3167 -3167 3168 -3168 3169 -3169 316A -316A 316B -316B 316C -316C 316D -316D 316E -316E 316F -316F 3170 -3170 3171 -3171 3172 -3172 3173 -3173 3174 -3174 3175 -3175 3176 -3176 3177 -3177 3178 -3178 3179 -3179 317A -317A 317B -317B 317C -317C 317D -317D 317E -317E 317F -317F 3180 -3180 3181 -3181 3182 -3182 3183 -3183 3184 -3184 3185 -3185 3186 -3186 3187 -3187 3188 -3188 3189 -3189 318A -318A 318B -318B 318C -318C 318D -318D 318E -318E -3192 319F -3200 -3200 3201 -3201 3202 -3202 3203 -3203 3204 -3204 3205 -3205 3206 -3206 3207 -3207 3208 -3208 3209 -3209 320A -320A 320B -320B 320C -320C 320D -320D 320E -320E 320F -320F 3210 -3210 3211 -3211 3212 -3212 3213 -3213 3214 -3214 3215 -3215 3216 -3216 3217 -3217 3218 -3218 3219 -3219 321A -321A 321B -321B 321C -321C 321D -321D 321E -321E -3220 -3220 3221 -3221 3222 -3222 3223 -3223 3224 -3224 3225 -3225 3226 -3226 3227 -3227 3228 -3228 3229 -3229 322A -322A 322B -322B 322C -322C 322D -322D 322E -322E 322F -322F 3230 -3230 3231 -3231 3232 -3232 3233 -3233 3234 -3234 3235 -3235 3236 -3236 3237 -3237 3238 -3238 3239 -3239 323A -323A 323B -323B 323C -323C 323D -323D 323E -323E 323F -323F 3240 -3240 3241 -3241 3242 -3242 3243 -3243 -3250 327E -3280 32C0 -32C0 32C1 -32C1 32C2 -32C2 32C3 -32C3 32C4 -32C4 32C5 -32C5 32C6 -32C6 32C7 -32C7 32C8 -32C8 32C9 -32C9 32CA -32CA 32CB -32CB 32FE -3300 3358 -3358 3359 -3359 335A -335A 335B -335B 335C -335C 335D -335D 335E -335E 335F -335F 3360 -3360 3361 -3361 3362 -3362 3363 -3363 3364 -3364 3365 -3365 3366 -3366 3367 -3367 3368 -3368 3369 -3369 336A -336A 336B -336B 336C -336C 336D -336D 336E -336E 336F -336F 3370 -3370 33E0 -33E0 33E1 -33E1 33E2 -33E2 33E3 -33E3 33E4 -33E4 33E5 -33E5 33E6 -33E6 33E7 -33E7 33E8 -33E8 33E9 -33E9 33EA -33EA 33EB -33EB 33EC -33EC 33ED -33ED 33EE -33EE 33EF -33EF 33F0 -33F0 33F1 -33F1 33F2 -33F2 33F3 -33F3 33F4 -33F4 33F5 -33F5 33F6 -33F6 33F7 -33F7 33F8 -33F8 33F9 -33F9 33FA -33FA 33FB -33FB 33FC -33FC 33FD -33FD 33FE -33FE 33FF -A770 -FB00 -FB00 FB01 -FB01 FB02 -FB02 FB03 -FB03 FB04 -FB04 FB05 -FB05 FB06 -FB06 -FB13 -FB13 FB14 -FB14 FB15 -FB15 FB16 -FB16 FB17 -FB17 -FB20 FB29 -FB4F -FB4F FBB1 -FBD3 FD3D -FD50 FD8F -FD92 FDC7 -FDF0 FDFC -FE10 FE19 -FE30 FE44 -FE47 FE49 -FE49 FE4A -FE4A FE4B -FE4B FE4C -FE4C FE4D -FE4D FE4E -FE4E FE4F -FE4F FE52 -FE54 FE66 -FE68 FE6B -FE70 FE72 -FE74 -FE76 FEFC -FF01 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -FFE0 FFE6 -FFE8 FFEE -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D7CB -1D7CE 1D7FF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Enc.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Enc.pl deleted file mode 100644 index 0fdeb70..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Enc.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'Circle' -# -return <<'END'; -2460 2473 -24B6 24EA -3251 327E -3280 32BF -32D0 32FE -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Fin.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Fin.pl deleted file mode 100644 index 0605fe2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Fin.pl +++ /dev/null @@ -1,126 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'Final' -# -return <<'END'; -FB51 -FB53 -FB57 -FB5B -FB5F -FB63 -FB67 -FB6B -FB6F -FB73 -FB77 -FB7B -FB7F -FB83 -FB85 -FB87 -FB89 -FB8B -FB8D -FB8F -FB93 -FB97 -FB9B -FB9F -FBA1 -FBA5 -FBA7 -FBAB -FBAF -FBB1 -FBD4 -FBD8 -FBDA -FBDC -FBDF -FBE1 -FBE3 -FBE5 -FBEB -FBED -FBEF -FBF1 -FBF3 -FBF5 -FBF7 -FBFA -FBFD -FC64 FC96 -FD11 FD2C -FD3C -FD51 -FD58 -FD5A FD5B -FD5E FD5F -FD62 -FD64 -FD66 FD67 -FD69 FD6A -FD6C -FD6E FD6F -FD71 -FD74 FD76 -FD78 FD7C -FD7E FD82 -FD84 FD85 -FD87 -FD8B -FD96 FD97 -FD99 FD9C -FD9E FDB3 -FDB6 FDB7 -FDB9 -FDBB FDC2 -FDC6 FDC7 -FE82 -FE84 -FE86 -FE88 -FE8A -FE8E -FE90 -FE94 -FE96 -FE9A -FE9E -FEA2 -FEA6 -FEAA -FEAC -FEAE -FEB0 -FEB2 -FEB6 -FEBA -FEBE -FEC2 -FEC6 -FECA -FECE -FED2 -FED6 -FEDA -FEDE -FEE2 -FEE6 -FEEA -FEEE -FEF0 -FEF2 -FEF6 -FEF8 -FEFA -FEFC -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Font.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Font.pl deleted file mode 100644 index e9de630..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Font.pl +++ /dev/null @@ -1,47 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'font' -# -return <<'END'; -2102 -210A 2113 -2115 -2119 211D -2124 -2128 -212C 212D -212F 2131 -2133 2134 -2139 -213C 2140 -2145 2149 -FB20 FB29 -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D7CB -1D7CE 1D7FF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Fra.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Fra.pl deleted file mode 100644 index 2ed9152..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Fra.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'Fraction' -# -return <<'END'; -00BC 00BE -2153 215F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Init.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Init.pl deleted file mode 100644 index 25cc48f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Init.pl +++ /dev/null @@ -1,88 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'Initial' -# -return <<'END'; -FB54 -FB58 -FB5C -FB60 -FB64 -FB68 -FB6C -FB70 -FB74 -FB78 -FB7C -FB80 -FB90 -FB94 -FB98 -FB9C -FBA2 -FBA8 -FBAC -FBD5 -FBE6 -FBE8 -FBF8 -FBFB -FBFE -FC97 FCDE -FD2D FD33 -FD50 -FD52 FD57 -FD59 -FD5C FD5D -FD60 FD61 -FD63 -FD65 -FD68 -FD6B -FD6D -FD70 -FD72 FD73 -FD77 -FD7D -FD83 -FD86 -FD88 FD8A -FD8C FD8F -FD92 FD95 -FD98 -FD9D -FDB4 FDB5 -FDB8 -FDBA -FDC3 FDC5 -FE8B -FE91 -FE97 -FE9B -FE9F -FEA3 -FEA7 -FEB3 -FEB7 -FEBB -FEBF -FEC3 -FEC7 -FECB -FECF -FED3 -FED7 -FEDB -FEDF -FEE3 -FEE7 -FEEB -FEF3 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Iso.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Iso.pl deleted file mode 100644 index eb6c662..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Iso.pl +++ /dev/null @@ -1,111 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'Isolated' -# -return <<'END'; -FB50 -FB52 -FB56 -FB5A -FB5E -FB62 -FB66 -FB6A -FB6E -FB72 -FB76 -FB7A -FB7E -FB82 -FB84 -FB86 -FB88 -FB8A -FB8C -FB8E -FB92 -FB96 -FB9A -FB9E -FBA0 -FBA4 -FBA6 -FBAA -FBAE -FBB0 -FBD3 -FBD7 -FBD9 -FBDB -FBDD FBDE -FBE0 -FBE2 -FBE4 -FBEA -FBEC -FBEE -FBF0 -FBF2 -FBF4 -FBF6 -FBF9 -FBFC -FC00 FC63 -FCF5 FD10 -FD3D -FDF0 FDFC -FE70 -FE72 -FE74 -FE76 -FE78 -FE7A -FE7C -FE7E -FE80 FE81 -FE83 -FE85 -FE87 -FE89 -FE8D -FE8F -FE93 -FE95 -FE99 -FE9D -FEA1 -FEA5 -FEA9 -FEAB -FEAD -FEAF -FEB1 -FEB5 -FEB9 -FEBD -FEC1 -FEC5 -FEC9 -FECD -FED1 -FED5 -FED9 -FEDD -FEE1 -FEE5 -FEE9 -FEED -FEEF -FEF1 -FEF5 -FEF7 -FEF9 -FEFB -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Med.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Med.pl deleted file mode 100644 index d79d5b4..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Med.pl +++ /dev/null @@ -1,67 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'Medial' -# -return <<'END'; -FB55 -FB59 -FB5D -FB61 -FB65 -FB69 -FB6D -FB71 -FB75 -FB79 -FB7D -FB81 -FB91 -FB95 -FB99 -FB9D -FBA3 -FBA9 -FBAD -FBD6 -FBE7 -FBE9 -FBFF -FCDF FCF4 -FD34 FD3B -FE71 -FE77 -FE79 -FE7B -FE7D -FE7F -FE8C -FE92 -FE98 -FE9C -FEA0 -FEA4 -FEA8 -FEB4 -FEB8 -FEBC -FEC0 -FEC4 -FEC8 -FECC -FED0 -FED4 -FED8 -FEDC -FEE0 -FEE4 -FEE8 -FEEC -FEF4 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Nar.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Nar.pl deleted file mode 100644 index 7b4b5d3..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Nar.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'Narrow' -# -return <<'END'; -FF61 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -FFE8 FFEE -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Nb.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Nb.pl deleted file mode 100644 index 34b8761..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Nb.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'Nobreak' -# -return <<'END'; -00A0 -0F0C -2007 -2011 -202F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Sml.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Sml.pl deleted file mode 100644 index 7607034..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Sml.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'Small' -# -return <<'END'; -FE50 FE52 -FE54 FE66 -FE68 FE6B -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Sqr.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Sqr.pl deleted file mode 100644 index 61fea9b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Sqr.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'Square' -# -return <<'END'; -3250 -32CC 32CF -3300 3357 -3371 33DF -33FF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Sub.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Sub.pl deleted file mode 100644 index 7957500..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Sub.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'sub' -# -return <<'END'; -1D62 1D6A -2080 208E -2090 2094 -2C7C -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Sup.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Sup.pl deleted file mode 100644 index 5739ab1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Sup.pl +++ /dev/null @@ -1,33 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'Super' -# -return <<'END'; -00AA -00B2 00B3 -00B9 00BA -02B0 02B8 -02E0 02E4 -10FC -1D2C 1D2E -1D30 1D3A -1D3C 1D4D -1D4F 1D61 -1D78 -1D9B 1DBF -2070 2071 -2074 207F -2120 -2122 -2C7D -2D6F -3192 319F -A770 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Vert.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Vert.pl deleted file mode 100644 index 13cb53b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Vert.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'Vertical' -# -return <<'END'; -309F -30FF -FE10 FE19 -FE30 FE44 -FE47 FE48 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Wide.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Wide.pl deleted file mode 100644 index 7a1312d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/dt/Wide.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# DecompositionType category 'wide' -# -return <<'END'; -3000 -FF01 FF60 -FFE0 FFE6 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/A.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/A.pl deleted file mode 100644 index 0f676ee..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/A.pl +++ /dev/null @@ -1,172 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# EastAsianWidth category 'Ambiguous' -# -return <<'END'; -00A1 -00A4 -00A7 00A8 -00AA -00AD 00AE -00B0 00B4 -00B6 00BA -00BC 00BF -00C6 -00D0 -00D7 00D8 -00DE 00E1 -00E6 -00E8 00EA -00EC 00ED -00F0 -00F2 00F3 -00F7 00FA -00FC -00FE -0101 -0111 -0113 -011B -0126 0127 -012B -0131 0133 -0138 -013F 0142 -0144 -0148 014B -014D -0152 0153 -0166 0167 -016B -01CE -01D0 -01D2 -01D4 -01D6 -01D8 -01DA -01DC -0251 -0261 -02C4 -02C7 -02C9 02CB -02CD -02D0 -02D8 02DB -02DD -02DF -0300 036F -0391 03A1 -03A3 03A9 -03B1 03C1 -03C3 03C9 -0401 -0410 044F -0451 -2010 -2013 2016 -2018 2019 -201C 201D -2020 2022 -2024 2027 -2030 -2032 2033 -2035 -203B -203E -2074 -207F -2081 2084 -20AC -2103 -2105 -2109 -2113 -2116 -2121 2122 -2126 -212B -2153 2154 -215B 215E -2160 216B -2170 2179 -2190 2199 -21B8 21B9 -21D2 -21D4 -21E7 -2200 -2202 2203 -2207 2208 -220B -220F -2211 -2215 -221A -221D 2220 -2223 -2225 -2227 222C -222E -2234 2237 -223C 223D -2248 -224C -2252 -2260 2261 -2264 2267 -226A 226B -226E 226F -2282 2283 -2286 2287 -2295 -2299 -22A5 -22BF -2312 -2460 24E9 -24EB 254B -2550 2573 -2580 258F -2592 2595 -25A0 25A1 -25A3 25A9 -25B2 25B3 -25B6 25B7 -25BC 25BD -25C0 25C1 -25C6 25C8 -25CB -25CE 25D1 -25E2 25E5 -25EF -2605 2606 -2609 -260E 260F -2614 2615 -261C -261E -2640 -2642 -2660 2661 -2663 2665 -2667 266A -266C 266D -266F -273D -2776 277F -E000 F8FF -FE00 FE0F -FFFD -E0100 E01EF -F0000 FFFFD -100000 10FFFD -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/F.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/F.pl deleted file mode 100644 index aa68914..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/F.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# EastAsianWidth category 'Fullwidth' -# -return <<'END'; -3000 -FF01 FF60 -FFE0 FFE6 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/H.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/H.pl deleted file mode 100644 index c27600a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/H.pl +++ /dev/null @@ -1,20 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# EastAsianWidth category 'Halfwidth' -# -return <<'END'; -20A9 -FF61 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -FFE8 FFEE -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/N.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/N.pl deleted file mode 100644 index f0b2d81..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/N.pl +++ /dev/null @@ -1,571 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# EastAsianWidth category 'Neutral' -# -return <<'END'; -0000 001F -007F 00A0 -00A9 -00AB -00B5 -00BB -00C0 00C5 -00C7 00CF -00D1 00D6 -00D9 00DD -00E2 00E5 -00E7 -00EB -00EE 00EF -00F1 -00F4 00F6 -00FB -00FD -00FF 0100 -0102 0110 -0112 -0114 011A -011C 0125 -0128 012A -012C 0130 -0134 0137 -0139 013E -0143 -0145 0147 -014C -014E 0151 -0154 0165 -0168 016A -016C 01CD -01CF -01D1 -01D3 -01D5 -01D7 -01D9 -01DB -01DD 0250 -0252 0260 -0262 02C3 -02C5 02C6 -02C8 -02CC -02CE 02CF -02D1 02D7 -02DC -02DE -02E0 02FF -0370 0377 -037A 037E -0384 038A -038C -038E 0390 -03AA 03B0 -03C2 -03CA 0400 -0402 040F -0450 -0452 0523 -0531 0556 -0559 055F -0561 0587 -0589 058A -0591 05C7 -05D0 05EA -05F0 05F4 -0600 0603 -0606 061B -061E 061F -0621 065E -0660 070D -070F 074A -074D 07B1 -07C0 07FA -0901 0939 -093C 094D -0950 0954 -0958 0972 -097B 097F -0981 0983 -0985 098C -098F 0990 -0993 09A8 -09AA 09B0 -09B2 -09B6 09B9 -09BC 09C4 -09C7 09C8 -09CB 09CE -09D7 -09DC 09DD -09DF 09E3 -09E6 09FA -0A01 0A03 -0A05 0A0A -0A0F 0A10 -0A13 0A28 -0A2A 0A30 -0A32 0A33 -0A35 0A36 -0A38 0A39 -0A3C -0A3E 0A42 -0A47 0A48 -0A4B 0A4D -0A51 -0A59 0A5C -0A5E -0A66 0A75 -0A81 0A83 -0A85 0A8D -0A8F 0A91 -0A93 0AA8 -0AAA 0AB0 -0AB2 0AB3 -0AB5 0AB9 -0ABC 0AC5 -0AC7 0AC9 -0ACB 0ACD -0AD0 -0AE0 0AE3 -0AE6 0AEF -0AF1 -0B01 0B03 -0B05 0B0C -0B0F 0B10 -0B13 0B28 -0B2A 0B30 -0B32 0B33 -0B35 0B39 -0B3C 0B44 -0B47 0B48 -0B4B 0B4D -0B56 0B57 -0B5C 0B5D -0B5F 0B63 -0B66 0B71 -0B82 0B83 -0B85 0B8A -0B8E 0B90 -0B92 0B95 -0B99 0B9A -0B9C -0B9E 0B9F -0BA3 0BA4 -0BA8 0BAA -0BAE 0BB9 -0BBE 0BC2 -0BC6 0BC8 -0BCA 0BCD -0BD0 -0BD7 -0BE6 0BFA -0C01 0C03 -0C05 0C0C -0C0E 0C10 -0C12 0C28 -0C2A 0C33 -0C35 0C39 -0C3D 0C44 -0C46 0C48 -0C4A 0C4D -0C55 0C56 -0C58 0C59 -0C60 0C63 -0C66 0C6F -0C78 0C7F -0C82 0C83 -0C85 0C8C -0C8E 0C90 -0C92 0CA8 -0CAA 0CB3 -0CB5 0CB9 -0CBC 0CC4 -0CC6 0CC8 -0CCA 0CCD -0CD5 0CD6 -0CDE -0CE0 0CE3 -0CE6 0CEF -0CF1 0CF2 -0D02 0D03 -0D05 0D0C -0D0E 0D10 -0D12 0D28 -0D2A 0D39 -0D3D 0D44 -0D46 0D48 -0D4A 0D4D -0D57 -0D60 0D63 -0D66 0D75 -0D79 0D7F -0D82 0D83 -0D85 0D96 -0D9A 0DB1 -0DB3 0DBB -0DBD -0DC0 0DC6 -0DCA -0DCF 0DD4 -0DD6 -0DD8 0DDF -0DF2 0DF4 -0E01 0E3A -0E3F 0E5B -0E81 0E82 -0E84 -0E87 0E88 -0E8A -0E8D -0E94 0E97 -0E99 0E9F -0EA1 0EA3 -0EA5 -0EA7 -0EAA 0EAB -0EAD 0EB9 -0EBB 0EBD -0EC0 0EC4 -0EC6 -0EC8 0ECD -0ED0 0ED9 -0EDC 0EDD -0F00 0F47 -0F49 0F6C -0F71 0F8B -0F90 0F97 -0F99 0FBC -0FBE 0FCC -0FCE 0FD4 -1000 1099 -109E 10C5 -10D0 10FC -1160 11A2 -11A8 11F9 -1200 1248 -124A 124D -1250 1256 -1258 -125A 125D -1260 1288 -128A 128D -1290 12B0 -12B2 12B5 -12B8 12BE -12C0 -12C2 12C5 -12C8 12D6 -12D8 1310 -1312 1315 -1318 135A -135F 137C -1380 1399 -13A0 13F4 -1401 1676 -1680 169C -16A0 16F0 -1700 170C -170E 1714 -1720 1736 -1740 1753 -1760 176C -176E 1770 -1772 1773 -1780 17DD -17E0 17E9 -17F0 17F9 -1800 180E -1810 1819 -1820 1877 -1880 18AA -1900 191C -1920 192B -1930 193B -1940 -1944 196D -1970 1974 -1980 19A9 -19B0 19C9 -19D0 19D9 -19DE 1A1B -1A1E 1A1F -1B00 1B4B -1B50 1B7C -1B80 1BAA -1BAE 1BB9 -1C00 1C37 -1C3B 1C49 -1C4D 1C7F -1D00 1DE6 -1DFE 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FC4 -1FC6 1FD3 -1FD6 1FDB -1FDD 1FEF -1FF2 1FF4 -1FF6 1FFE -2000 200F -2011 2012 -2017 -201A 201B -201E 201F -2023 -2028 202F -2031 -2034 -2036 203A -203C 203D -203F 2064 -206A 2071 -2075 207E -2080 -2085 208E -2090 2094 -20A0 20A8 -20AA 20AB -20AD 20B5 -20D0 20F0 -2100 2102 -2104 -2106 2108 -210A 2112 -2114 2115 -2117 2120 -2123 2125 -2127 212A -212C 214F -2155 215A -215F -216C 216F -217A 2188 -219A 21B7 -21BA 21D1 -21D3 -21D5 21E6 -21E8 21FF -2201 -2204 2206 -2209 220A -220C 220E -2210 -2212 2214 -2216 2219 -221B 221C -2221 2222 -2224 -2226 -222D -222F 2233 -2238 223B -223E 2247 -2249 224B -224D 2251 -2253 225F -2262 2263 -2268 2269 -226C 226D -2270 2281 -2284 2285 -2288 2294 -2296 2298 -229A 22A4 -22A6 22BE -22C0 2311 -2313 2328 -232B 23E7 -2400 2426 -2440 244A -24EA -254C 254F -2574 257F -2590 2591 -2596 259F -25A2 -25AA 25B1 -25B4 25B5 -25B8 25BB -25BE 25BF -25C2 25C5 -25C9 25CA -25CC 25CD -25D2 25E1 -25E6 25EE -25F0 2604 -2607 2608 -260A 260D -2610 2613 -2616 261B -261D -261F 263F -2641 -2643 265F -2662 -2666 -266B -266E -2670 269D -26A0 26BC -26C0 26C3 -2701 2704 -2706 2709 -270C 2727 -2729 273C -273E 274B -274D -274F 2752 -2756 -2758 275E -2761 2775 -2780 2794 -2798 27AF -27B1 27BE -27C0 27CA -27CC -27D0 27E5 -27EE 2984 -2987 2B4C -2B50 2B54 -2C00 2C2E -2C30 2C5E -2C60 2C6F -2C71 2C7D -2C80 2CEA -2CF9 2D25 -2D30 2D65 -2D6F -2D80 2D96 -2DA0 2DA6 -2DA8 2DAE -2DB0 2DB6 -2DB8 2DBE -2DC0 2DC6 -2DC8 2DCE -2DD0 2DD6 -2DD8 2DDE -2DE0 2E30 -303F -4DC0 4DFF -A500 A62B -A640 A65F -A662 A673 -A67C A697 -A700 A78C -A7FB A82B -A840 A877 -A880 A8C4 -A8CE A8D9 -A900 A953 -A95F -AA00 AA36 -AA40 AA4D -AA50 AA59 -AA5C AA5F -D800 DFFF -FB00 FB06 -FB13 FB17 -FB1D FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FBB1 -FBD3 FD3F -FD50 FD8F -FD92 FDC7 -FDF0 FDFD -FE20 FE26 -FE70 FE74 -FE76 FEFC -FEFF -FFF9 FFFC -10000 1000B -1000D 10026 -10028 1003A -1003C 1003D -1003F 1004D -10050 1005D -10080 100FA -10100 10102 -10107 10133 -10137 1018A -10190 1019B -101D0 101FD -10280 1029C -102A0 102D0 -10300 1031E -10320 10323 -10330 1034A -10380 1039D -1039F 103C3 -103C8 103D5 -10400 1049D -104A0 104A9 -10800 10805 -10808 -1080A 10835 -10837 10838 -1083C -1083F -10900 10919 -1091F 10939 -1093F -10A00 10A03 -10A05 10A06 -10A0C 10A13 -10A15 10A17 -10A19 10A33 -10A38 10A3A -10A3F 10A47 -10A50 10A58 -12000 1236E -12400 12462 -12470 12473 -1D000 1D0F5 -1D100 1D126 -1D129 1D1DD -1D200 1D245 -1D300 1D356 -1D360 1D371 -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D7CB -1D7CE 1D7FF -1F000 1F02B -1F030 1F093 -E0001 -E0020 E007F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/Na.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/Na.pl deleted file mode 100644 index 4f72829..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/Na.pl +++ /dev/null @@ -1,20 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# EastAsianWidth category 'Narrow' -# -return <<'END'; -0020 007E -00A2 00A3 -00A5 00A6 -00AC -00AF -27E6 27ED -2985 2986 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/W.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/W.pl deleted file mode 100644 index cd8e107..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/ea/W.pl +++ /dev/null @@ -1,44 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# EastAsianWidth category 'Wide' -# -return <<'END'; -1100 1159 -115F -2329 232A -2E80 2E99 -2E9B 2EF3 -2F00 2FD5 -2FF0 2FFB -3001 303E -3041 3096 -3099 30FF -3105 312D -3131 318E -3190 31B7 -31C0 31E3 -31F0 321E -3220 3243 -3250 32FE -3300 4DB5 -4E00 9FC3 -A000 A48C -A490 A4C6 -AC00 D7A3 -F900 FA2D -FA30 FA6A -FA70 FAD9 -FE10 FE19 -FE30 FE52 -FE54 FE66 -FE68 FE6B -20000 2FFFD -30000 3FFFD -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/AHex.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/AHex.pl deleted file mode 100644 index c72ea54..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/AHex.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'ASCII_Hex_Digit' -# -return <<'END'; -0030 0039 ASCII_Hex_Digit -0041 0046 ASCII_Hex_Digit -0061 0066 ASCII_Hex_Digit -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/ASCII.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/ASCII.pl deleted file mode 100644 index a65f22a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/ASCII.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{ASCII} -# -# Meaning: [[:ASCII:]] -# -return <<'END'; -0000 007F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Alnum.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Alnum.pl deleted file mode 100644 index 9facb73..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Alnum.pl +++ /dev/null @@ -1,483 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Alnum} -# -# Meaning: [[:Alnum:]] -# -return <<'END'; -0030 0039 -0041 005A -0061 007A -00AA -00B5 -00BA -00C0 00D6 -00D8 00F6 -00F8 02C1 -02C6 02D1 -02E0 02E4 -02EC -02EE -0300 0374 -0376 0377 -037A 037D -0386 -0388 038A -038C -038E 03A1 -03A3 03F5 -03F7 0481 -0483 0523 -0531 0556 -0559 -0561 0587 -0591 05BD -05BF -05C1 05C2 -05C4 05C5 -05C7 -05D0 05EA -05F0 05F2 -0610 061A -0621 065E -0660 0669 -066E 06D3 -06D5 06DC -06DE 06E8 -06EA 06FC -06FF -0710 074A -074D 07B1 -07C0 07F5 -07FA -0901 0939 -093C 094D -0950 0954 -0958 0963 -0966 096F -0971 0972 -097B 097F -0981 0983 -0985 098C -098F 0990 -0993 09A8 -09AA 09B0 -09B2 -09B6 09B9 -09BC 09C4 -09C7 09C8 -09CB 09CE -09D7 -09DC 09DD -09DF 09E3 -09E6 09F1 -0A01 0A03 -0A05 0A0A -0A0F 0A10 -0A13 0A28 -0A2A 0A30 -0A32 0A33 -0A35 0A36 -0A38 0A39 -0A3C -0A3E 0A42 -0A47 0A48 -0A4B 0A4D -0A51 -0A59 0A5C -0A5E -0A66 0A75 -0A81 0A83 -0A85 0A8D -0A8F 0A91 -0A93 0AA8 -0AAA 0AB0 -0AB2 0AB3 -0AB5 0AB9 -0ABC 0AC5 -0AC7 0AC9 -0ACB 0ACD -0AD0 -0AE0 0AE3 -0AE6 0AEF -0B01 0B03 -0B05 0B0C -0B0F 0B10 -0B13 0B28 -0B2A 0B30 -0B32 0B33 -0B35 0B39 -0B3C 0B44 -0B47 0B48 -0B4B 0B4D -0B56 0B57 -0B5C 0B5D -0B5F 0B63 -0B66 0B6F -0B71 -0B82 0B83 -0B85 0B8A -0B8E 0B90 -0B92 0B95 -0B99 0B9A -0B9C -0B9E 0B9F -0BA3 0BA4 -0BA8 0BAA -0BAE 0BB9 -0BBE 0BC2 -0BC6 0BC8 -0BCA 0BCD -0BD0 -0BD7 -0BE6 0BEF -0C01 0C03 -0C05 0C0C -0C0E 0C10 -0C12 0C28 -0C2A 0C33 -0C35 0C39 -0C3D 0C44 -0C46 0C48 -0C4A 0C4D -0C55 0C56 -0C58 0C59 -0C60 0C63 -0C66 0C6F -0C82 0C83 -0C85 0C8C -0C8E 0C90 -0C92 0CA8 -0CAA 0CB3 -0CB5 0CB9 -0CBC 0CC4 -0CC6 0CC8 -0CCA 0CCD -0CD5 0CD6 -0CDE -0CE0 0CE3 -0CE6 0CEF -0D02 0D03 -0D05 0D0C -0D0E 0D10 -0D12 0D28 -0D2A 0D39 -0D3D 0D44 -0D46 0D48 -0D4A 0D4D -0D57 -0D60 0D63 -0D66 0D6F -0D7A 0D7F -0D82 0D83 -0D85 0D96 -0D9A 0DB1 -0DB3 0DBB -0DBD -0DC0 0DC6 -0DCA -0DCF 0DD4 -0DD6 -0DD8 0DDF -0DF2 0DF3 -0E01 0E3A -0E40 0E4E -0E50 0E59 -0E81 0E82 -0E84 -0E87 0E88 -0E8A -0E8D -0E94 0E97 -0E99 0E9F -0EA1 0EA3 -0EA5 -0EA7 -0EAA 0EAB -0EAD 0EB9 -0EBB 0EBD -0EC0 0EC4 -0EC6 -0EC8 0ECD -0ED0 0ED9 -0EDC 0EDD -0F00 -0F18 0F19 -0F20 0F29 -0F35 -0F37 -0F39 -0F3E 0F47 -0F49 0F6C -0F71 0F84 -0F86 0F8B -0F90 0F97 -0F99 0FBC -0FC6 -1000 1049 -1050 1099 -10A0 10C5 -10D0 10FA -10FC -1100 1159 -115F 11A2 -11A8 11F9 -1200 1248 -124A 124D -1250 1256 -1258 -125A 125D -1260 1288 -128A 128D -1290 12B0 -12B2 12B5 -12B8 12BE -12C0 -12C2 12C5 -12C8 12D6 -12D8 1310 -1312 1315 -1318 135A -135F -1380 138F -13A0 13F4 -1401 166C -166F 1676 -1681 169A -16A0 16EA -1700 170C -170E 1714 -1720 1734 -1740 1753 -1760 176C -176E 1770 -1772 1773 -1780 17B3 -17B6 17D3 -17D7 -17DC 17DD -17E0 17E9 -180B 180D -1810 1819 -1820 1877 -1880 18AA -1900 191C -1920 192B -1930 193B -1946 196D -1970 1974 -1980 19A9 -19B0 19C9 -19D0 19D9 -1A00 1A1B -1B00 1B4B -1B50 1B59 -1B6B 1B73 -1B80 1BAA -1BAE 1BB9 -1C00 1C37 -1C40 1C49 -1C4D 1C7D -1D00 1DE6 -1DFE 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FBC -1FBE -1FC2 1FC4 -1FC6 1FCC -1FD0 1FD3 -1FD6 1FDB -1FE0 1FEC -1FF2 1FF4 -1FF6 1FFC -2071 -207F -2090 2094 -20D0 20F0 -2102 -2107 -210A 2113 -2115 -2119 211D -2124 -2126 -2128 -212A 212D -212F 2139 -213C 213F -2145 2149 -214E -2183 2184 -2C00 2C2E -2C30 2C5E -2C60 2C6F -2C71 2C7D -2C80 2CE4 -2D00 2D25 -2D30 2D65 -2D6F -2D80 2D96 -2DA0 2DA6 -2DA8 2DAE -2DB0 2DB6 -2DB8 2DBE -2DC0 2DC6 -2DC8 2DCE -2DD0 2DD6 -2DD8 2DDE -2DE0 2DFF -2E2F -3005 3006 -302A 302F -3031 3035 -303B 303C -3041 3096 -3099 309A -309D 309F -30A1 30FA -30FC 30FF -3105 312D -3131 318E -31A0 31B7 -31F0 31FF -3400 4DB5 -4E00 9FC3 -A000 A48C -A500 A60C -A610 A62B -A640 A65F -A662 A672 -A67C A67D -A67F A697 -A717 A71F -A722 A788 -A78B A78C -A7FB A827 -A840 A873 -A880 A8C4 -A8D0 A8D9 -A900 A92D -A930 A953 -AA00 AA36 -AA40 AA4D -AA50 AA59 -AC00 D7A3 -F900 FA2D -FA30 FA6A -FA70 FAD9 -FB00 FB06 -FB13 FB17 -FB1D FB28 -FB2A FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FBB1 -FBD3 FD3D -FD50 FD8F -FD92 FDC7 -FDF0 FDFB -FE00 FE0F -FE20 FE26 -FE70 FE74 -FE76 FEFC -FF10 FF19 -FF21 FF3A -FF41 FF5A -FF66 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -10000 1000B -1000D 10026 -10028 1003A -1003C 1003D -1003F 1004D -10050 1005D -10080 100FA -101FD -10280 1029C -102A0 102D0 -10300 1031E -10330 10340 -10342 10349 -10380 1039D -103A0 103C3 -103C8 103CF -10400 1049D -104A0 104A9 -10800 10805 -10808 -1080A 10835 -10837 10838 -1083C -1083F -10900 10915 -10920 10939 -10A00 10A03 -10A05 10A06 -10A0C 10A13 -10A15 10A17 -10A19 10A33 -10A38 10A3A -10A3F -12000 1236E -1D165 1D169 -1D16D 1D172 -1D17B 1D182 -1D185 1D18B -1D1AA 1D1AD -1D242 1D244 -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D6C0 -1D6C2 1D6DA -1D6DC 1D6FA -1D6FC 1D714 -1D716 1D734 -1D736 1D74E -1D750 1D76E -1D770 1D788 -1D78A 1D7A8 -1D7AA 1D7C2 -1D7C4 1D7CB -1D7CE 1D7FF -20000 2A6D6 -2F800 2FA1D -E0100 E01EF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Alpha.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Alpha.pl deleted file mode 100644 index 197c8ae..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Alpha.pl +++ /dev/null @@ -1,464 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Alpha} -# -# Meaning: [[:Alpha:]] -# -return <<'END'; -0041 005A -0061 007A -00AA -00B5 -00BA -00C0 00D6 -00D8 00F6 -00F8 02C1 -02C6 02D1 -02E0 02E4 -02EC -02EE -0300 0374 -0376 0377 -037A 037D -0386 -0388 038A -038C -038E 03A1 -03A3 03F5 -03F7 0481 -0483 0523 -0531 0556 -0559 -0561 0587 -0591 05BD -05BF -05C1 05C2 -05C4 05C5 -05C7 -05D0 05EA -05F0 05F2 -0610 061A -0621 065E -066E 06D3 -06D5 06DC -06DE 06E8 -06EA 06EF -06FA 06FC -06FF -0710 074A -074D 07B1 -07CA 07F5 -07FA -0901 0939 -093C 094D -0950 0954 -0958 0963 -0971 0972 -097B 097F -0981 0983 -0985 098C -098F 0990 -0993 09A8 -09AA 09B0 -09B2 -09B6 09B9 -09BC 09C4 -09C7 09C8 -09CB 09CE -09D7 -09DC 09DD -09DF 09E3 -09F0 09F1 -0A01 0A03 -0A05 0A0A -0A0F 0A10 -0A13 0A28 -0A2A 0A30 -0A32 0A33 -0A35 0A36 -0A38 0A39 -0A3C -0A3E 0A42 -0A47 0A48 -0A4B 0A4D -0A51 -0A59 0A5C -0A5E -0A70 0A75 -0A81 0A83 -0A85 0A8D -0A8F 0A91 -0A93 0AA8 -0AAA 0AB0 -0AB2 0AB3 -0AB5 0AB9 -0ABC 0AC5 -0AC7 0AC9 -0ACB 0ACD -0AD0 -0AE0 0AE3 -0B01 0B03 -0B05 0B0C -0B0F 0B10 -0B13 0B28 -0B2A 0B30 -0B32 0B33 -0B35 0B39 -0B3C 0B44 -0B47 0B48 -0B4B 0B4D -0B56 0B57 -0B5C 0B5D -0B5F 0B63 -0B71 -0B82 0B83 -0B85 0B8A -0B8E 0B90 -0B92 0B95 -0B99 0B9A -0B9C -0B9E 0B9F -0BA3 0BA4 -0BA8 0BAA -0BAE 0BB9 -0BBE 0BC2 -0BC6 0BC8 -0BCA 0BCD -0BD0 -0BD7 -0C01 0C03 -0C05 0C0C -0C0E 0C10 -0C12 0C28 -0C2A 0C33 -0C35 0C39 -0C3D 0C44 -0C46 0C48 -0C4A 0C4D -0C55 0C56 -0C58 0C59 -0C60 0C63 -0C82 0C83 -0C85 0C8C -0C8E 0C90 -0C92 0CA8 -0CAA 0CB3 -0CB5 0CB9 -0CBC 0CC4 -0CC6 0CC8 -0CCA 0CCD -0CD5 0CD6 -0CDE -0CE0 0CE3 -0D02 0D03 -0D05 0D0C -0D0E 0D10 -0D12 0D28 -0D2A 0D39 -0D3D 0D44 -0D46 0D48 -0D4A 0D4D -0D57 -0D60 0D63 -0D7A 0D7F -0D82 0D83 -0D85 0D96 -0D9A 0DB1 -0DB3 0DBB -0DBD -0DC0 0DC6 -0DCA -0DCF 0DD4 -0DD6 -0DD8 0DDF -0DF2 0DF3 -0E01 0E3A -0E40 0E4E -0E81 0E82 -0E84 -0E87 0E88 -0E8A -0E8D -0E94 0E97 -0E99 0E9F -0EA1 0EA3 -0EA5 -0EA7 -0EAA 0EAB -0EAD 0EB9 -0EBB 0EBD -0EC0 0EC4 -0EC6 -0EC8 0ECD -0EDC 0EDD -0F00 -0F18 0F19 -0F35 -0F37 -0F39 -0F3E 0F47 -0F49 0F6C -0F71 0F84 -0F86 0F8B -0F90 0F97 -0F99 0FBC -0FC6 -1000 103F -1050 108F -10A0 10C5 -10D0 10FA -10FC -1100 1159 -115F 11A2 -11A8 11F9 -1200 1248 -124A 124D -1250 1256 -1258 -125A 125D -1260 1288 -128A 128D -1290 12B0 -12B2 12B5 -12B8 12BE -12C0 -12C2 12C5 -12C8 12D6 -12D8 1310 -1312 1315 -1318 135A -135F -1380 138F -13A0 13F4 -1401 166C -166F 1676 -1681 169A -16A0 16EA -1700 170C -170E 1714 -1720 1734 -1740 1753 -1760 176C -176E 1770 -1772 1773 -1780 17B3 -17B6 17D3 -17D7 -17DC 17DD -180B 180D -1820 1877 -1880 18AA -1900 191C -1920 192B -1930 193B -1950 196D -1970 1974 -1980 19A9 -19B0 19C9 -1A00 1A1B -1B00 1B4B -1B6B 1B73 -1B80 1BAA -1BAE 1BAF -1C00 1C37 -1C4D 1C4F -1C5A 1C7D -1D00 1DE6 -1DFE 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FBC -1FBE -1FC2 1FC4 -1FC6 1FCC -1FD0 1FD3 -1FD6 1FDB -1FE0 1FEC -1FF2 1FF4 -1FF6 1FFC -2071 -207F -2090 2094 -20D0 20F0 -2102 -2107 -210A 2113 -2115 -2119 211D -2124 -2126 -2128 -212A 212D -212F 2139 -213C 213F -2145 2149 -214E -2183 2184 -2C00 2C2E -2C30 2C5E -2C60 2C6F -2C71 2C7D -2C80 2CE4 -2D00 2D25 -2D30 2D65 -2D6F -2D80 2D96 -2DA0 2DA6 -2DA8 2DAE -2DB0 2DB6 -2DB8 2DBE -2DC0 2DC6 -2DC8 2DCE -2DD0 2DD6 -2DD8 2DDE -2DE0 2DFF -2E2F -3005 3006 -302A 302F -3031 3035 -303B 303C -3041 3096 -3099 309A -309D 309F -30A1 30FA -30FC 30FF -3105 312D -3131 318E -31A0 31B7 -31F0 31FF -3400 4DB5 -4E00 9FC3 -A000 A48C -A500 A60C -A610 A61F -A62A A62B -A640 A65F -A662 A672 -A67C A67D -A67F A697 -A717 A71F -A722 A788 -A78B A78C -A7FB A827 -A840 A873 -A880 A8C4 -A90A A92D -A930 A953 -AA00 AA36 -AA40 AA4D -AC00 D7A3 -F900 FA2D -FA30 FA6A -FA70 FAD9 -FB00 FB06 -FB13 FB17 -FB1D FB28 -FB2A FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FBB1 -FBD3 FD3D -FD50 FD8F -FD92 FDC7 -FDF0 FDFB -FE00 FE0F -FE20 FE26 -FE70 FE74 -FE76 FEFC -FF21 FF3A -FF41 FF5A -FF66 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -10000 1000B -1000D 10026 -10028 1003A -1003C 1003D -1003F 1004D -10050 1005D -10080 100FA -101FD -10280 1029C -102A0 102D0 -10300 1031E -10330 10340 -10342 10349 -10380 1039D -103A0 103C3 -103C8 103CF -10400 1049D -10800 10805 -10808 -1080A 10835 -10837 10838 -1083C -1083F -10900 10915 -10920 10939 -10A00 10A03 -10A05 10A06 -10A0C 10A13 -10A15 10A17 -10A19 10A33 -10A38 10A3A -10A3F -12000 1236E -1D165 1D169 -1D16D 1D172 -1D17B 1D182 -1D185 1D18B -1D1AA 1D1AD -1D242 1D244 -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D6C0 -1D6C2 1D6DA -1D6DC 1D6FA -1D6FC 1D714 -1D716 1D734 -1D736 1D74E -1D750 1D76E -1D770 1D788 -1D78A 1D7A8 -1D7AA 1D7C2 -1D7C4 1D7CB -20000 2A6D6 -2F800 2FA1D -E0100 E01EF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Alphabet.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Alphabet.pl deleted file mode 100644 index fca4d3f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Alphabet.pl +++ /dev/null @@ -1,459 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Alphabetic} (and fuzzy permutations) -# -# Meaning: [\p{L}\p{Nl}\p{OtherAlphabetic}] -# -return <<'END'; -0041 005A -0061 007A -00AA -00B5 -00BA -00C0 00D6 -00D8 00F6 -00F8 02C1 -02C6 02D1 -02E0 02E4 -02EC -02EE -0345 -0370 0374 -0376 0377 -037A 037D -0386 -0388 038A -038C -038E 03A1 -03A3 03F5 -03F7 0481 -048A 0523 -0531 0556 -0559 -0561 0587 -05B0 05BD -05BF -05C1 05C2 -05C4 05C5 -05C7 -05D0 05EA -05F0 05F2 -0610 061A -0621 0657 -0659 065E -066E 06D3 -06D5 06DC -06E1 06E8 -06ED 06EF -06FA 06FC -06FF -0710 073F -074D 07B1 -07CA 07EA -07F4 07F5 -07FA -0901 0939 -093D 094C -0950 -0958 0963 -0971 0972 -097B 097F -0981 0983 -0985 098C -098F 0990 -0993 09A8 -09AA 09B0 -09B2 -09B6 09B9 -09BD 09C4 -09C7 09C8 -09CB 09CC -09CE -09D7 -09DC 09DD -09DF 09E3 -09F0 09F1 -0A01 0A03 -0A05 0A0A -0A0F 0A10 -0A13 0A28 -0A2A 0A30 -0A32 0A33 -0A35 0A36 -0A38 0A39 -0A3E 0A42 -0A47 0A48 -0A4B 0A4C -0A51 -0A59 0A5C -0A5E -0A70 0A75 -0A81 0A83 -0A85 0A8D -0A8F 0A91 -0A93 0AA8 -0AAA 0AB0 -0AB2 0AB3 -0AB5 0AB9 -0ABD 0AC5 -0AC7 0AC9 -0ACB 0ACC -0AD0 -0AE0 0AE3 -0B01 0B03 -0B05 0B0C -0B0F 0B10 -0B13 0B28 -0B2A 0B30 -0B32 0B33 -0B35 0B39 -0B3D 0B44 -0B47 0B48 -0B4B 0B4C -0B56 0B57 -0B5C 0B5D -0B5F 0B63 -0B71 -0B82 0B83 -0B85 0B8A -0B8E 0B90 -0B92 0B95 -0B99 0B9A -0B9C -0B9E 0B9F -0BA3 0BA4 -0BA8 0BAA -0BAE 0BB9 -0BBE 0BC2 -0BC6 0BC8 -0BCA 0BCC -0BD0 -0BD7 -0C01 0C03 -0C05 0C0C -0C0E 0C10 -0C12 0C28 -0C2A 0C33 -0C35 0C39 -0C3D 0C44 -0C46 0C48 -0C4A 0C4C -0C55 0C56 -0C58 0C59 -0C60 0C63 -0C82 0C83 -0C85 0C8C -0C8E 0C90 -0C92 0CA8 -0CAA 0CB3 -0CB5 0CB9 -0CBD 0CC4 -0CC6 0CC8 -0CCA 0CCC -0CD5 0CD6 -0CDE -0CE0 0CE3 -0D02 0D03 -0D05 0D0C -0D0E 0D10 -0D12 0D28 -0D2A 0D39 -0D3D 0D44 -0D46 0D48 -0D4A 0D4C -0D57 -0D60 0D63 -0D7A 0D7F -0D82 0D83 -0D85 0D96 -0D9A 0DB1 -0DB3 0DBB -0DBD -0DC0 0DC6 -0DCF 0DD4 -0DD6 -0DD8 0DDF -0DF2 0DF3 -0E01 0E3A -0E40 0E46 -0E4D -0E81 0E82 -0E84 -0E87 0E88 -0E8A -0E8D -0E94 0E97 -0E99 0E9F -0EA1 0EA3 -0EA5 -0EA7 -0EAA 0EAB -0EAD 0EB9 -0EBB 0EBD -0EC0 0EC4 -0EC6 -0ECD -0EDC 0EDD -0F00 -0F40 0F47 -0F49 0F6C -0F71 0F81 -0F88 0F8B -0F90 0F97 -0F99 0FBC -1000 1036 -1038 -103B 103F -1050 1062 -1065 1068 -106E 1086 -108E -10A0 10C5 -10D0 10FA -10FC -1100 1159 -115F 11A2 -11A8 11F9 -1200 1248 -124A 124D -1250 1256 -1258 -125A 125D -1260 1288 -128A 128D -1290 12B0 -12B2 12B5 -12B8 12BE -12C0 -12C2 12C5 -12C8 12D6 -12D8 1310 -1312 1315 -1318 135A -135F -1380 138F -13A0 13F4 -1401 166C -166F 1676 -1681 169A -16A0 16EA -16EE 16F0 -1700 170C -170E 1713 -1720 1733 -1740 1753 -1760 176C -176E 1770 -1772 1773 -1780 17B3 -17B6 17C8 -17D7 -17DC -1820 1877 -1880 18AA -1900 191C -1920 192B -1930 1938 -1950 196D -1970 1974 -1980 19A9 -19B0 19C9 -1A00 1A1B -1B00 1B33 -1B35 1B43 -1B45 1B4B -1B80 1BA9 -1BAE 1BAF -1C00 1C35 -1C4D 1C4F -1C5A 1C7D -1D00 1DBF -1E00 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FBC -1FBE -1FC2 1FC4 -1FC6 1FCC -1FD0 1FD3 -1FD6 1FDB -1FE0 1FEC -1FF2 1FF4 -1FF6 1FFC -2071 -207F -2090 2094 -2102 -2107 -210A 2113 -2115 -2119 211D -2124 -2126 -2128 -212A 212D -212F 2139 -213C 213F -2145 2149 -214E -2160 2188 -24B6 24E9 -2C00 2C2E -2C30 2C5E -2C60 2C6F -2C71 2C7D -2C80 2CE4 -2D00 2D25 -2D30 2D65 -2D6F -2D80 2D96 -2DA0 2DA6 -2DA8 2DAE -2DB0 2DB6 -2DB8 2DBE -2DC0 2DC6 -2DC8 2DCE -2DD0 2DD6 -2DD8 2DDE -2DE0 2DFF -2E2F -3005 3007 -3021 3029 -3031 3035 -3038 303C -3041 3096 -309D 309F -30A1 30FA -30FC 30FF -3105 312D -3131 318E -31A0 31B7 -31F0 31FF -3400 4DB5 -4E00 9FC3 -A000 A48C -A500 A60C -A610 A61F -A62A A62B -A640 A65F -A662 A66E -A67F A697 -A717 A71F -A722 A788 -A78B A78C -A7FB A801 -A803 A805 -A807 A80A -A80C A827 -A840 A873 -A880 A8C3 -A90A A92A -A930 A952 -AA00 AA36 -AA40 AA4D -AC00 D7A3 -F900 FA2D -FA30 FA6A -FA70 FAD9 -FB00 FB06 -FB13 FB17 -FB1D FB28 -FB2A FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FBB1 -FBD3 FD3D -FD50 FD8F -FD92 FDC7 -FDF0 FDFB -FE70 FE74 -FE76 FEFC -FF21 FF3A -FF41 FF5A -FF66 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -10000 1000B -1000D 10026 -10028 1003A -1003C 1003D -1003F 1004D -10050 1005D -10080 100FA -10140 10174 -10280 1029C -102A0 102D0 -10300 1031E -10330 1034A -10380 1039D -103A0 103C3 -103C8 103CF -103D1 103D5 -10400 1049D -10800 10805 -10808 -1080A 10835 -10837 10838 -1083C -1083F -10900 10915 -10920 10939 -10A00 10A03 -10A05 10A06 -10A0C 10A13 -10A15 10A17 -10A19 10A33 -12000 1236E -12400 12462 -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D6C0 -1D6C2 1D6DA -1D6DC 1D6FA -1D6FC 1D714 -1D716 1D734 -1D736 1D74E -1D750 1D76E -1D770 1D788 -1D78A 1D7A8 -1D7AA 1D7C2 -1D7C4 1D7CB -20000 2A6D6 -2F800 2FA1D -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Any.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Any.pl deleted file mode 100644 index 21a4800..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Any.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Any} -# \p{Any} -# -# Meaning: [\x{0000}-\x{10FFFF}] -# -return <<'END'; -0000 10FFFF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Arab.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Arab.pl deleted file mode 100644 index 24c7d75..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Arab.pl +++ /dev/null @@ -1,33 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Arabic} (and fuzzy permutations) -# -# Meaning: Script 'Arabic' -# -return <<'END'; -0606 060B Arabic -060D 061A Arabic -061E Arabic -0621 063F Arabic -0641 064A Arabic -0656 065E Arabic -066A 066F Arabic -0671 06DC Arabic -06DE 06FF Arabic -0750 077F Arabic -FB50 FBB1 Arabic -FBD3 FD3D Arabic -FD50 FD8F Arabic -FD92 FDC7 Arabic -FDF0 FDFC Arabic -FE70 FE74 Arabic -FE76 FEFC Arabic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Armn.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Armn.pl deleted file mode 100644 index c83f7a1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Armn.pl +++ /dev/null @@ -1,21 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Armenian} (and fuzzy permutations) -# -# Meaning: Script 'Armenian' -# -return <<'END'; -0531 0556 Armenian -0559 055F Armenian -0561 0587 Armenian -058A Armenian -FB13 FB17 Armenian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/AsciiHex.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/AsciiHex.pl deleted file mode 100644 index ab523ca..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/AsciiHex.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{AsciiHexDigit} (and fuzzy permutations) -# -# Meaning: Extended property 'ASCII_Hex_Digit' -# -return <<'END'; -0030 0039 ASCII_Hex_Digit -0041 0046 ASCII_Hex_Digit -0061 0066 ASCII_Hex_Digit -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Assigned.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Assigned.pl deleted file mode 100644 index bdc1d42..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Assigned.pl +++ /dev/null @@ -1,461 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Assigned} -# -# Meaning: All assigned code points -# -return <<'END'; -0000 0377 -037A 037E -0384 038A -038C -038E 03A1 -03A3 0523 -0531 0556 -0559 055F -0561 0587 -0589 058A -0591 05C7 -05D0 05EA -05F0 05F4 -0600 0603 -0606 061B -061E 061F -0621 065E -0660 070D -070F 074A -074D 07B1 -07C0 07FA -0901 0939 -093C 094D -0950 0954 -0958 0972 -097B 097F -0981 0983 -0985 098C -098F 0990 -0993 09A8 -09AA 09B0 -09B2 -09B6 09B9 -09BC 09C4 -09C7 09C8 -09CB 09CE -09D7 -09DC 09DD -09DF 09E3 -09E6 09FA -0A01 0A03 -0A05 0A0A -0A0F 0A10 -0A13 0A28 -0A2A 0A30 -0A32 0A33 -0A35 0A36 -0A38 0A39 -0A3C -0A3E 0A42 -0A47 0A48 -0A4B 0A4D -0A51 -0A59 0A5C -0A5E -0A66 0A75 -0A81 0A83 -0A85 0A8D -0A8F 0A91 -0A93 0AA8 -0AAA 0AB0 -0AB2 0AB3 -0AB5 0AB9 -0ABC 0AC5 -0AC7 0AC9 -0ACB 0ACD -0AD0 -0AE0 0AE3 -0AE6 0AEF -0AF1 -0B01 0B03 -0B05 0B0C -0B0F 0B10 -0B13 0B28 -0B2A 0B30 -0B32 0B33 -0B35 0B39 -0B3C 0B44 -0B47 0B48 -0B4B 0B4D -0B56 0B57 -0B5C 0B5D -0B5F 0B63 -0B66 0B71 -0B82 0B83 -0B85 0B8A -0B8E 0B90 -0B92 0B95 -0B99 0B9A -0B9C -0B9E 0B9F -0BA3 0BA4 -0BA8 0BAA -0BAE 0BB9 -0BBE 0BC2 -0BC6 0BC8 -0BCA 0BCD -0BD0 -0BD7 -0BE6 0BFA -0C01 0C03 -0C05 0C0C -0C0E 0C10 -0C12 0C28 -0C2A 0C33 -0C35 0C39 -0C3D 0C44 -0C46 0C48 -0C4A 0C4D -0C55 0C56 -0C58 0C59 -0C60 0C63 -0C66 0C6F -0C78 0C7F -0C82 0C83 -0C85 0C8C -0C8E 0C90 -0C92 0CA8 -0CAA 0CB3 -0CB5 0CB9 -0CBC 0CC4 -0CC6 0CC8 -0CCA 0CCD -0CD5 0CD6 -0CDE -0CE0 0CE3 -0CE6 0CEF -0CF1 0CF2 -0D02 0D03 -0D05 0D0C -0D0E 0D10 -0D12 0D28 -0D2A 0D39 -0D3D 0D44 -0D46 0D48 -0D4A 0D4D -0D57 -0D60 0D63 -0D66 0D75 -0D79 0D7F -0D82 0D83 -0D85 0D96 -0D9A 0DB1 -0DB3 0DBB -0DBD -0DC0 0DC6 -0DCA -0DCF 0DD4 -0DD6 -0DD8 0DDF -0DF2 0DF4 -0E01 0E3A -0E3F 0E5B -0E81 0E82 -0E84 -0E87 0E88 -0E8A -0E8D -0E94 0E97 -0E99 0E9F -0EA1 0EA3 -0EA5 -0EA7 -0EAA 0EAB -0EAD 0EB9 -0EBB 0EBD -0EC0 0EC4 -0EC6 -0EC8 0ECD -0ED0 0ED9 -0EDC 0EDD -0F00 0F47 -0F49 0F6C -0F71 0F8B -0F90 0F97 -0F99 0FBC -0FBE 0FCC -0FCE 0FD4 -1000 1099 -109E 10C5 -10D0 10FC -1100 1159 -115F 11A2 -11A8 11F9 -1200 1248 -124A 124D -1250 1256 -1258 -125A 125D -1260 1288 -128A 128D -1290 12B0 -12B2 12B5 -12B8 12BE -12C0 -12C2 12C5 -12C8 12D6 -12D8 1310 -1312 1315 -1318 135A -135F 137C -1380 1399 -13A0 13F4 -1401 1676 -1680 169C -16A0 16F0 -1700 170C -170E 1714 -1720 1736 -1740 1753 -1760 176C -176E 1770 -1772 1773 -1780 17DD -17E0 17E9 -17F0 17F9 -1800 180E -1810 1819 -1820 1877 -1880 18AA -1900 191C -1920 192B -1930 193B -1940 -1944 196D -1970 1974 -1980 19A9 -19B0 19C9 -19D0 19D9 -19DE 1A1B -1A1E 1A1F -1B00 1B4B -1B50 1B7C -1B80 1BAA -1BAE 1BB9 -1C00 1C37 -1C3B 1C49 -1C4D 1C7F -1D00 1DE6 -1DFE 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FC4 -1FC6 1FD3 -1FD6 1FDB -1FDD 1FEF -1FF2 1FF4 -1FF6 1FFE -2000 2064 -206A 2071 -2074 208E -2090 2094 -20A0 20B5 -20D0 20F0 -2100 214F -2153 2188 -2190 23E7 -2400 2426 -2440 244A -2460 269D -26A0 26BC -26C0 26C3 -2701 2704 -2706 2709 -270C 2727 -2729 274B -274D -274F 2752 -2756 -2758 275E -2761 2794 -2798 27AF -27B1 27BE -27C0 27CA -27CC -27D0 2B4C -2B50 2B54 -2C00 2C2E -2C30 2C5E -2C60 2C6F -2C71 2C7D -2C80 2CEA -2CF9 2D25 -2D30 2D65 -2D6F -2D80 2D96 -2DA0 2DA6 -2DA8 2DAE -2DB0 2DB6 -2DB8 2DBE -2DC0 2DC6 -2DC8 2DCE -2DD0 2DD6 -2DD8 2DDE -2DE0 2E30 -2E80 2E99 -2E9B 2EF3 -2F00 2FD5 -2FF0 2FFB -3000 303F -3041 3096 -3099 30FF -3105 312D -3131 318E -3190 31B7 -31C0 31E3 -31F0 321E -3220 3243 -3250 32FE -3300 4DB5 -4DC0 9FC3 -A000 A48C -A490 A4C6 -A500 A62B -A640 A65F -A662 A673 -A67C A697 -A700 A78C -A7FB A82B -A840 A877 -A880 A8C4 -A8CE A8D9 -A900 A953 -A95F -AA00 AA36 -AA40 AA4D -AA50 AA59 -AA5C AA5F -AC00 D7A3 -D800 FA2D -FA30 FA6A -FA70 FAD9 -FB00 FB06 -FB13 FB17 -FB1D FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FBB1 -FBD3 FD3F -FD50 FD8F -FD92 FDC7 -FDF0 FDFD -FE00 FE19 -FE20 FE26 -FE30 FE52 -FE54 FE66 -FE68 FE6B -FE70 FE74 -FE76 FEFC -FEFF -FF01 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -FFE0 FFE6 -FFE8 FFEE -FFF9 FFFD -10000 1000B -1000D 10026 -10028 1003A -1003C 1003D -1003F 1004D -10050 1005D -10080 100FA -10100 10102 -10107 10133 -10137 1018A -10190 1019B -101D0 101FD -10280 1029C -102A0 102D0 -10300 1031E -10320 10323 -10330 1034A -10380 1039D -1039F 103C3 -103C8 103D5 -10400 1049D -104A0 104A9 -10800 10805 -10808 -1080A 10835 -10837 10838 -1083C -1083F -10900 10919 -1091F 10939 -1093F -10A00 10A03 -10A05 10A06 -10A0C 10A13 -10A15 10A17 -10A19 10A33 -10A38 10A3A -10A3F 10A47 -10A50 10A58 -12000 1236E -12400 12462 -12470 12473 -1D000 1D0F5 -1D100 1D126 -1D129 1D1DD -1D200 1D245 -1D300 1D356 -1D360 1D371 -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D7CB -1D7CE 1D7FF -1F000 1F02B -1F030 1F093 -20000 2A6D6 -2F800 2FA1D -E0001 -E0020 E007F -E0100 E01EF -F0000 FFFFD -100000 10FFFD -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Bali.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Bali.pl deleted file mode 100644 index 4d0d707..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Bali.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Balinese} (and fuzzy permutations) -# -# Meaning: Script 'Balinese' -# -return <<'END'; -1B00 1B4B Balinese -1B50 1B7C Balinese -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Beng.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Beng.pl deleted file mode 100644 index 2fafb67..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Beng.pl +++ /dev/null @@ -1,30 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Bengali} (and fuzzy permutations) -# -# Meaning: Script 'Bengali' -# -return <<'END'; -0981 0983 Bengali -0985 098C Bengali -098F 0990 Bengali -0993 09A8 Bengali -09AA 09B0 Bengali -09B2 Bengali -09B6 09B9 Bengali -09BC 09C4 Bengali -09C7 09C8 Bengali -09CB 09CE Bengali -09D7 Bengali -09DC 09DD Bengali -09DF 09E3 Bengali -09E6 09FA Bengali -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/BidiC.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/BidiC.pl deleted file mode 100644 index e2af330..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/BidiC.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Bidi_Control' -# -return <<'END'; -200E 200F Bidi_Control -202A 202E Bidi_Control -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/BidiCont.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/BidiCont.pl deleted file mode 100644 index ededb27..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/BidiCont.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{BidiControl} (and fuzzy permutations) -# -# Meaning: Extended property 'Bidi_Control' -# -return <<'END'; -200E 200F Bidi_Control -202A 202E Bidi_Control -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Blank.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Blank.pl deleted file mode 100644 index 5fb2fc9..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Blank.pl +++ /dev/null @@ -1,25 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Blank} -# -# Meaning: [[:Blank:]] -# -return <<'END'; -0009 -0020 -00A0 -1680 -180E -2000 200A -202F -205F -3000 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Bopo.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Bopo.pl deleted file mode 100644 index 77b3574..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Bopo.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Bopomofo} (and fuzzy permutations) -# -# Meaning: Script 'Bopomofo' -# -return <<'END'; -3105 312D Bopomofo -31A0 31B7 Bopomofo -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Brai.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Brai.pl deleted file mode 100644 index f0d17fe..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Brai.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Braille} (and fuzzy permutations) -# -# Meaning: Script 'Braille' -# -return <<'END'; -2800 28FF Braille -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Bugi.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Bugi.pl deleted file mode 100644 index dcaef35..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Bugi.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Buginese} (and fuzzy permutations) -# -# Meaning: Script 'Buginese' -# -return <<'END'; -1A00 1A1B Buginese -1A1E 1A1F Buginese -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Buhd.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Buhd.pl deleted file mode 100644 index b318c03..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Buhd.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Buhid} (and fuzzy permutations) -# -# Meaning: Script 'Buhid' -# -return <<'END'; -1740 1753 Buhid -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/C.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/C.pl deleted file mode 100644 index 6ef19ce..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/C.pl +++ /dev/null @@ -1,464 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{C} -# \p{C} (and fuzzy permutations) -# -# Meaning: Major Category 'C' -# -return <<'END'; -0000 001F -007F 009F -00AD -0378 0379 -037F 0383 -038B -038D -03A2 -0524 0530 -0557 0558 -0560 -0588 -058B 0590 -05C8 05CF -05EB 05EF -05F5 0605 -061C 061D -0620 -065F -06DD -070E 070F -074B 074C -07B2 07BF -07FB 0900 -093A 093B -094E 094F -0955 0957 -0973 097A -0980 -0984 -098D 098E -0991 0992 -09A9 -09B1 -09B3 09B5 -09BA 09BB -09C5 09C6 -09C9 09CA -09CF 09D6 -09D8 09DB -09DE -09E4 09E5 -09FB 0A00 -0A04 -0A0B 0A0E -0A11 0A12 -0A29 -0A31 -0A34 -0A37 -0A3A 0A3B -0A3D -0A43 0A46 -0A49 0A4A -0A4E 0A50 -0A52 0A58 -0A5D -0A5F 0A65 -0A76 0A80 -0A84 -0A8E -0A92 -0AA9 -0AB1 -0AB4 -0ABA 0ABB -0AC6 -0ACA -0ACE 0ACF -0AD1 0ADF -0AE4 0AE5 -0AF0 -0AF2 0B00 -0B04 -0B0D 0B0E -0B11 0B12 -0B29 -0B31 -0B34 -0B3A 0B3B -0B45 0B46 -0B49 0B4A -0B4E 0B55 -0B58 0B5B -0B5E -0B64 0B65 -0B72 0B81 -0B84 -0B8B 0B8D -0B91 -0B96 0B98 -0B9B -0B9D -0BA0 0BA2 -0BA5 0BA7 -0BAB 0BAD -0BBA 0BBD -0BC3 0BC5 -0BC9 -0BCE 0BCF -0BD1 0BD6 -0BD8 0BE5 -0BFB 0C00 -0C04 -0C0D -0C11 -0C29 -0C34 -0C3A 0C3C -0C45 -0C49 -0C4E 0C54 -0C57 -0C5A 0C5F -0C64 0C65 -0C70 0C77 -0C80 0C81 -0C84 -0C8D -0C91 -0CA9 -0CB4 -0CBA 0CBB -0CC5 -0CC9 -0CCE 0CD4 -0CD7 0CDD -0CDF -0CE4 0CE5 -0CF0 -0CF3 0D01 -0D04 -0D0D -0D11 -0D29 -0D3A 0D3C -0D45 -0D49 -0D4E 0D56 -0D58 0D5F -0D64 0D65 -0D76 0D78 -0D80 0D81 -0D84 -0D97 0D99 -0DB2 -0DBC -0DBE 0DBF -0DC7 0DC9 -0DCB 0DCE -0DD5 -0DD7 -0DE0 0DF1 -0DF5 0E00 -0E3B 0E3E -0E5C 0E80 -0E83 -0E85 0E86 -0E89 -0E8B 0E8C -0E8E 0E93 -0E98 -0EA0 -0EA4 -0EA6 -0EA8 0EA9 -0EAC -0EBA -0EBE 0EBF -0EC5 -0EC7 -0ECE 0ECF -0EDA 0EDB -0EDE 0EFF -0F48 -0F6D 0F70 -0F8C 0F8F -0F98 -0FBD -0FCD -0FD5 0FFF -109A 109D -10C6 10CF -10FD 10FF -115A 115E -11A3 11A7 -11FA 11FF -1249 -124E 124F -1257 -1259 -125E 125F -1289 -128E 128F -12B1 -12B6 12B7 -12BF -12C1 -12C6 12C7 -12D7 -1311 -1316 1317 -135B 135E -137D 137F -139A 139F -13F5 1400 -1677 167F -169D 169F -16F1 16FF -170D -1715 171F -1737 173F -1754 175F -176D -1771 -1774 177F -17B4 17B5 -17DE 17DF -17EA 17EF -17FA 17FF -180F -181A 181F -1878 187F -18AB 18FF -191D 191F -192C 192F -193C 193F -1941 1943 -196E 196F -1975 197F -19AA 19AF -19CA 19CF -19DA 19DD -1A1C 1A1D -1A20 1AFF -1B4C 1B4F -1B7D 1B7F -1BAB 1BAD -1BBA 1BFF -1C38 1C3A -1C4A 1C4C -1C80 1CFF -1DE7 1DFD -1F16 1F17 -1F1E 1F1F -1F46 1F47 -1F4E 1F4F -1F58 -1F5A -1F5C -1F5E -1F7E 1F7F -1FB5 -1FC5 -1FD4 1FD5 -1FDC -1FF0 1FF1 -1FF5 -1FFF -200B 200F -202A 202E -2060 206F -2072 2073 -208F -2095 209F -20B6 20CF -20F1 20FF -2150 2152 -2189 218F -23E8 23FF -2427 243F -244B 245F -269E 269F -26BD 26BF -26C4 2700 -2705 -270A 270B -2728 -274C -274E -2753 2755 -2757 -275F 2760 -2795 2797 -27B0 -27BF -27CB -27CD 27CF -2B4D 2B4F -2B55 2BFF -2C2F -2C5F -2C70 -2C7E 2C7F -2CEB 2CF8 -2D26 2D2F -2D66 2D6E -2D70 2D7F -2D97 2D9F -2DA7 -2DAF -2DB7 -2DBF -2DC7 -2DCF -2DD7 -2DDF -2E31 2E7F -2E9A -2EF4 2EFF -2FD6 2FEF -2FFC 2FFF -3040 -3097 3098 -3100 3104 -312E 3130 -318F -31B8 31BF -31E4 31EF -321F -3244 324F -32FF -4DB6 4DBF -9FC4 9FFF -A48D A48F -A4C7 A4FF -A62C A63F -A660 A661 -A674 A67B -A698 A6FF -A78D A7FA -A82C A83F -A878 A87F -A8C5 A8CD -A8DA A8FF -A954 A95E -A960 A9FF -AA37 AA3F -AA4E AA4F -AA5A AA5B -AA60 ABFF -D7A4 F8FF -FA2E FA2F -FA6B FA6F -FADA FAFF -FB07 FB12 -FB18 FB1C -FB37 -FB3D -FB3F -FB42 -FB45 -FBB2 FBD2 -FD40 FD4F -FD90 FD91 -FDC8 FDEF -FDFE FDFF -FE1A FE1F -FE27 FE2F -FE53 -FE67 -FE6C FE6F -FE75 -FEFD FF00 -FFBF FFC1 -FFC8 FFC9 -FFD0 FFD1 -FFD8 FFD9 -FFDD FFDF -FFE7 -FFEF FFFB -FFFE FFFF -1000C -10027 -1003B -1003E -1004E 1004F -1005E 1007F -100FB 100FF -10103 10106 -10134 10136 -1018B 1018F -1019C 101CF -101FE 1027F -1029D 1029F -102D1 102FF -1031F -10324 1032F -1034B 1037F -1039E -103C4 103C7 -103D6 103FF -1049E 1049F -104AA 107FF -10806 10807 -10809 -10836 -10839 1083B -1083D 1083E -10840 108FF -1091A 1091E -1093A 1093E -10940 109FF -10A04 -10A07 10A0B -10A14 -10A18 -10A34 10A37 -10A3B 10A3E -10A48 10A4F -10A59 11FFF -1236F 123FF -12463 1246F -12474 1CFFF -1D0F6 1D0FF -1D127 1D128 -1D173 1D17A -1D1DE 1D1FF -1D246 1D2FF -1D357 1D35F -1D372 1D3FF -1D455 -1D49D -1D4A0 1D4A1 -1D4A3 1D4A4 -1D4A7 1D4A8 -1D4AD -1D4BA -1D4BC -1D4C4 -1D506 -1D50B 1D50C -1D515 -1D51D -1D53A -1D53F -1D545 -1D547 1D549 -1D551 -1D6A6 1D6A7 -1D7CC 1D7CD -1D800 1EFFF -1F02C 1F02F -1F094 1FFFF -2A6D7 2F7FF -2FA1E E00FF -E01F0 10FFFF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Canadian.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Canadian.pl deleted file mode 100644 index 33179a9..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Canadian.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{CanadianAboriginal} (and fuzzy permutations) -# -# Meaning: Script 'Canadian_Aboriginal' -# -return <<'END'; -1401 1676 Canadian_Aboriginal -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cari.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cari.pl deleted file mode 100644 index e37740d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cari.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Carian} (and fuzzy permutations) -# -# Meaning: Script 'Carian' -# -return <<'END'; -102A0 102D0 Carian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cc.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cc.pl deleted file mode 100644 index f712783..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cc.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Cc} -# \p{Cc} (and fuzzy permutations) -# -# Meaning: General Category 'Cc' -# -return <<'END'; -0000 001F -007F 009F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cf.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cf.pl deleted file mode 100644 index 320ddcc..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cf.pl +++ /dev/null @@ -1,31 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Cf} -# \p{Cf} (and fuzzy permutations) -# -# Meaning: General Category 'Cf' -# -return <<'END'; -00AD -0600 0603 -06DD -070F -17B4 17B5 -200B 200F -202A 202E -2060 2064 -206A 206F -FEFF -FFF9 FFFB -1D173 1D17A -E0001 -E0020 E007F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cham.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cham.pl deleted file mode 100644 index 53397fb..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cham.pl +++ /dev/null @@ -1,20 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Cham} (and fuzzy permutations) -# -# Meaning: Script 'Cham' -# -return <<'END'; -AA00 AA36 Cham -AA40 AA4D Cham -AA50 AA59 Cham -AA5C AA5F Cham -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cher.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cher.pl deleted file mode 100644 index f79f5a2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cher.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Cherokee} (and fuzzy permutations) -# -# Meaning: Script 'Cherokee' -# -return <<'END'; -13A0 13F4 Cherokee -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cn.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cn.pl deleted file mode 100644 index 5fa537e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cn.pl +++ /dev/null @@ -1,462 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Cn} -# \p{Cn} (and fuzzy permutations) -# -# Meaning: General Category 'Cn' [not functional in Perl] -# -return <<'END'; -0378 0379 -037F 0383 -038B -038D -03A2 -0524 0530 -0557 0558 -0560 -0588 -058B 0590 -05C8 05CF -05EB 05EF -05F5 05FF -0604 0605 -061C 061D -0620 -065F -070E -074B 074C -07B2 07BF -07FB 0900 -093A 093B -094E 094F -0955 0957 -0973 097A -0980 -0984 -098D 098E -0991 0992 -09A9 -09B1 -09B3 09B5 -09BA 09BB -09C5 09C6 -09C9 09CA -09CF 09D6 -09D8 09DB -09DE -09E4 09E5 -09FB 0A00 -0A04 -0A0B 0A0E -0A11 0A12 -0A29 -0A31 -0A34 -0A37 -0A3A 0A3B -0A3D -0A43 0A46 -0A49 0A4A -0A4E 0A50 -0A52 0A58 -0A5D -0A5F 0A65 -0A76 0A80 -0A84 -0A8E -0A92 -0AA9 -0AB1 -0AB4 -0ABA 0ABB -0AC6 -0ACA -0ACE 0ACF -0AD1 0ADF -0AE4 0AE5 -0AF0 -0AF2 0B00 -0B04 -0B0D 0B0E -0B11 0B12 -0B29 -0B31 -0B34 -0B3A 0B3B -0B45 0B46 -0B49 0B4A -0B4E 0B55 -0B58 0B5B -0B5E -0B64 0B65 -0B72 0B81 -0B84 -0B8B 0B8D -0B91 -0B96 0B98 -0B9B -0B9D -0BA0 0BA2 -0BA5 0BA7 -0BAB 0BAD -0BBA 0BBD -0BC3 0BC5 -0BC9 -0BCE 0BCF -0BD1 0BD6 -0BD8 0BE5 -0BFB 0C00 -0C04 -0C0D -0C11 -0C29 -0C34 -0C3A 0C3C -0C45 -0C49 -0C4E 0C54 -0C57 -0C5A 0C5F -0C64 0C65 -0C70 0C77 -0C80 0C81 -0C84 -0C8D -0C91 -0CA9 -0CB4 -0CBA 0CBB -0CC5 -0CC9 -0CCE 0CD4 -0CD7 0CDD -0CDF -0CE4 0CE5 -0CF0 -0CF3 0D01 -0D04 -0D0D -0D11 -0D29 -0D3A 0D3C -0D45 -0D49 -0D4E 0D56 -0D58 0D5F -0D64 0D65 -0D76 0D78 -0D80 0D81 -0D84 -0D97 0D99 -0DB2 -0DBC -0DBE 0DBF -0DC7 0DC9 -0DCB 0DCE -0DD5 -0DD7 -0DE0 0DF1 -0DF5 0E00 -0E3B 0E3E -0E5C 0E80 -0E83 -0E85 0E86 -0E89 -0E8B 0E8C -0E8E 0E93 -0E98 -0EA0 -0EA4 -0EA6 -0EA8 0EA9 -0EAC -0EBA -0EBE 0EBF -0EC5 -0EC7 -0ECE 0ECF -0EDA 0EDB -0EDE 0EFF -0F48 -0F6D 0F70 -0F8C 0F8F -0F98 -0FBD -0FCD -0FD5 0FFF -109A 109D -10C6 10CF -10FD 10FF -115A 115E -11A3 11A7 -11FA 11FF -1249 -124E 124F -1257 -1259 -125E 125F -1289 -128E 128F -12B1 -12B6 12B7 -12BF -12C1 -12C6 12C7 -12D7 -1311 -1316 1317 -135B 135E -137D 137F -139A 139F -13F5 1400 -1677 167F -169D 169F -16F1 16FF -170D -1715 171F -1737 173F -1754 175F -176D -1771 -1774 177F -17DE 17DF -17EA 17EF -17FA 17FF -180F -181A 181F -1878 187F -18AB 18FF -191D 191F -192C 192F -193C 193F -1941 1943 -196E 196F -1975 197F -19AA 19AF -19CA 19CF -19DA 19DD -1A1C 1A1D -1A20 1AFF -1B4C 1B4F -1B7D 1B7F -1BAB 1BAD -1BBA 1BFF -1C38 1C3A -1C4A 1C4C -1C80 1CFF -1DE7 1DFD -1F16 1F17 -1F1E 1F1F -1F46 1F47 -1F4E 1F4F -1F58 -1F5A -1F5C -1F5E -1F7E 1F7F -1FB5 -1FC5 -1FD4 1FD5 -1FDC -1FF0 1FF1 -1FF5 -1FFF -2065 2069 -2072 2073 -208F -2095 209F -20B6 20CF -20F1 20FF -2150 2152 -2189 218F -23E8 23FF -2427 243F -244B 245F -269E 269F -26BD 26BF -26C4 2700 -2705 -270A 270B -2728 -274C -274E -2753 2755 -2757 -275F 2760 -2795 2797 -27B0 -27BF -27CB -27CD 27CF -2B4D 2B4F -2B55 2BFF -2C2F -2C5F -2C70 -2C7E 2C7F -2CEB 2CF8 -2D26 2D2F -2D66 2D6E -2D70 2D7F -2D97 2D9F -2DA7 -2DAF -2DB7 -2DBF -2DC7 -2DCF -2DD7 -2DDF -2E31 2E7F -2E9A -2EF4 2EFF -2FD6 2FEF -2FFC 2FFF -3040 -3097 3098 -3100 3104 -312E 3130 -318F -31B8 31BF -31E4 31EF -321F -3244 324F -32FF -4DB6 4DBF -9FC4 9FFF -A48D A48F -A4C7 A4FF -A62C A63F -A660 A661 -A674 A67B -A698 A6FF -A78D A7FA -A82C A83F -A878 A87F -A8C5 A8CD -A8DA A8FF -A954 A95E -A960 A9FF -AA37 AA3F -AA4E AA4F -AA5A AA5B -AA60 ABFF -D7A4 D7FF -FA2E FA2F -FA6B FA6F -FADA FAFF -FB07 FB12 -FB18 FB1C -FB37 -FB3D -FB3F -FB42 -FB45 -FBB2 FBD2 -FD40 FD4F -FD90 FD91 -FDC8 FDEF -FDFE FDFF -FE1A FE1F -FE27 FE2F -FE53 -FE67 -FE6C FE6F -FE75 -FEFD FEFE -FF00 -FFBF FFC1 -FFC8 FFC9 -FFD0 FFD1 -FFD8 FFD9 -FFDD FFDF -FFE7 -FFEF FFF8 -FFFE FFFF -1000C -10027 -1003B -1003E -1004E 1004F -1005E 1007F -100FB 100FF -10103 10106 -10134 10136 -1018B 1018F -1019C 101CF -101FE 1027F -1029D 1029F -102D1 102FF -1031F -10324 1032F -1034B 1037F -1039E -103C4 103C7 -103D6 103FF -1049E 1049F -104AA 107FF -10806 10807 -10809 -10836 -10839 1083B -1083D 1083E -10840 108FF -1091A 1091E -1093A 1093E -10940 109FF -10A04 -10A07 10A0B -10A14 -10A18 -10A34 10A37 -10A3B 10A3E -10A48 10A4F -10A59 11FFF -1236F 123FF -12463 1246F -12474 1CFFF -1D0F6 1D0FF -1D127 1D128 -1D1DE 1D1FF -1D246 1D2FF -1D357 1D35F -1D372 1D3FF -1D455 -1D49D -1D4A0 1D4A1 -1D4A3 1D4A4 -1D4A7 1D4A8 -1D4AD -1D4BA -1D4BC -1D4C4 -1D506 -1D50B 1D50C -1D515 -1D51D -1D53A -1D53F -1D545 -1D547 1D549 -1D551 -1D6A6 1D6A7 -1D7CC 1D7CD -1D800 1EFFF -1F02C 1F02F -1F094 1FFFF -2A6D7 2F7FF -2FA1E E0000 -E0002 E001F -E0080 E00FF -E01F0 EFFFF -FFFFE FFFFF -10FFFE 10FFFF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cntrl.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cntrl.pl deleted file mode 100644 index 76cd53e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cntrl.pl +++ /dev/null @@ -1,35 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Cntrl} -# -# Meaning: [[:Cntrl:]] -# -return <<'END'; -0000 001F -007F 009F -00AD -0600 0603 -06DD -070F -17B4 17B5 -200B 200F -202A 202E -2060 2064 -206A 206F -D800 F8FF -FEFF -FFF9 FFFB -1D173 1D17A -E0001 -E0020 E007F -F0000 FFFFD -100000 10FFFD -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Co.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Co.pl deleted file mode 100644 index 4c03415..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Co.pl +++ /dev/null @@ -1,20 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Co} -# \p{Co} (and fuzzy permutations) -# -# Meaning: General Category 'Co' -# -return <<'END'; -E000 F8FF -F0000 FFFFD -100000 10FFFD -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Copt.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Copt.pl deleted file mode 100644 index ab81b59..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Copt.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Coptic} (and fuzzy permutations) -# -# Meaning: Script 'Coptic' -# -return <<'END'; -03E2 03EF Coptic -2C80 2CEA Coptic -2CF9 2CFF Coptic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cprt.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cprt.pl deleted file mode 100644 index ce0b061..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cprt.pl +++ /dev/null @@ -1,22 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Cypriot} (and fuzzy permutations) -# -# Meaning: Script 'Cypriot' -# -return <<'END'; -10800 10805 Cypriot -10808 Cypriot -1080A 10835 Cypriot -10837 10838 Cypriot -1083C Cypriot -1083F Cypriot -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cs.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cs.pl deleted file mode 100644 index 81e87c9..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cs.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Cs} -# \p{Cs} (and fuzzy permutations) -# -# Meaning: General Category 'Cs' -# -return <<'END'; -D800 DFFF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cyrl.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cyrl.pl deleted file mode 100644 index 572213e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Cyrl.pl +++ /dev/null @@ -1,23 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Cyrillic} (and fuzzy permutations) -# -# Meaning: Script 'Cyrillic' -# -return <<'END'; -0400 0523 Cyrillic -1D2B Cyrillic -1D78 Cyrillic -2DE0 2DFF Cyrillic -A640 A65F Cyrillic -A662 A673 Cyrillic -A67C A697 Cyrillic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dash.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dash.pl deleted file mode 100644 index df151fd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dash.pl +++ /dev/null @@ -1,31 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Dash' -# -return <<'END'; -002D Dash -058A Dash -05BE Dash -1806 Dash -2010 2015 Dash -2053 Dash -207B Dash -208B Dash -2212 Dash -2E17 Dash -2E1A Dash -301C Dash -3030 Dash -30A0 Dash -FE31 FE32 Dash -FE58 Dash -FE63 Dash -FF0D Dash -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dash2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dash2.pl deleted file mode 100644 index 9a24886..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dash2.pl +++ /dev/null @@ -1,34 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Dash} (and fuzzy permutations) -# -# Meaning: Extended property 'Dash' -# -return <<'END'; -002D Dash -058A Dash -05BE Dash -1806 Dash -2010 2015 Dash -2053 Dash -207B Dash -208B Dash -2212 Dash -2E17 Dash -2E1A Dash -301C Dash -3030 Dash -30A0 Dash -FE31 FE32 Dash -FE58 Dash -FE63 Dash -FF0D Dash -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/DefaultI.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/DefaultI.pl deleted file mode 100644 index ab816c4..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/DefaultI.pl +++ /dev/null @@ -1,56 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{DefaultIgnorableCodePoint} (and fuzzy permutations) -# -# Meaning: (?![\p{WhiteSpace}\x{FFF9}-\x{FFFB}])[\p{Cf}\p{Cc}\p{Cs}\p{NoncharacterCodePoint}\p{VariationSelector}\p{OtherDefaultIgnorableCodePoint}] -# -return <<'END'; -0000 0008 -000E 001F -007F 0084 -0086 009F -00AD -034F -0600 0603 -06DD -070F -115F 1160 -17B4 17B5 -180B 180D -200B 200F -202A 202E -2060 206F -3164 -D800 DFFF -FDD0 FDEF -FE00 FE0F -FEFF -FFA0 -FFF0 FFF8 -FFFE FFFF -1D173 1D17A -1FFFE 1FFFF -2FFFE 2FFFF -3FFFE 3FFFF -4FFFE 4FFFF -5FFFE 5FFFF -6FFFE 6FFFF -7FFFE 7FFFF -8FFFE 8FFFF -9FFFE 9FFFF -AFFFE AFFFF -BFFFE BFFFF -CFFFE CFFFF -DFFFE E0FFF -EFFFE EFFFF -FFFFE FFFFF -10FFFE 10FFFF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dep.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dep.pl deleted file mode 100644 index 788517f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dep.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Deprecated' -# -return <<'END'; -0340 0341 Deprecated -17A3 Deprecated -17D3 Deprecated -206A 206F Deprecated -E0001 Deprecated -E0020 E007F Deprecated -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Deprecat.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Deprecat.pl deleted file mode 100644 index 0b3c5bd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Deprecat.pl +++ /dev/null @@ -1,22 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Deprecated} (and fuzzy permutations) -# -# Meaning: Extended property 'Deprecated' -# -return <<'END'; -0340 0341 Deprecated -17A3 Deprecated -17D3 Deprecated -206A 206F Deprecated -E0001 Deprecated -E0020 E007F Deprecated -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Deva.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Deva.pl deleted file mode 100644 index 656f94d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Deva.pl +++ /dev/null @@ -1,24 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Devanagari} (and fuzzy permutations) -# -# Meaning: Script 'Devanagari' -# -return <<'END'; -0901 0939 Devanagari -093C 094D Devanagari -0950 Devanagari -0953 0954 Devanagari -0958 0963 Devanagari -0966 096F Devanagari -0971 0972 Devanagari -097B 097F Devanagari -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dia.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dia.pl deleted file mode 100644 index 0b7efca..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dia.pl +++ /dev/null @@ -1,115 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Diacritic' -# -return <<'END'; -005E Diacritic -0060 Diacritic -00A8 Diacritic -00AF Diacritic -00B4 Diacritic -00B7 00B8 Diacritic -02B0 034E Diacritic -0350 0357 Diacritic -035D 0362 Diacritic -0374 0375 Diacritic -037A Diacritic -0384 0385 Diacritic -0483 0487 Diacritic -0559 Diacritic -0591 05A1 Diacritic -05A3 05BD Diacritic -05BF Diacritic -05C1 05C2 Diacritic -05C4 Diacritic -064B 0652 Diacritic -0657 0658 Diacritic -06DF 06E0 Diacritic -06E5 06E6 Diacritic -06EA 06EC Diacritic -0730 074A Diacritic -07A6 07B0 Diacritic -07EB 07F5 Diacritic -093C Diacritic -094D Diacritic -0951 0954 Diacritic -0971 Diacritic -09BC Diacritic -09CD Diacritic -0A3C Diacritic -0A4D Diacritic -0ABC Diacritic -0ACD Diacritic -0B3C Diacritic -0B4D Diacritic -0BCD Diacritic -0C4D Diacritic -0CBC Diacritic -0CCD Diacritic -0D4D Diacritic -0DCA Diacritic -0E47 0E4C Diacritic -0E4E Diacritic -0EC8 0ECC Diacritic -0F18 0F19 Diacritic -0F35 Diacritic -0F37 Diacritic -0F39 Diacritic -0F3E 0F3F Diacritic -0F82 0F84 Diacritic -0F86 0F87 Diacritic -0FC6 Diacritic -1037 Diacritic -1039 103A Diacritic -1087 108D Diacritic -108F Diacritic -17C9 17D3 Diacritic -17DD Diacritic -1939 193B Diacritic -1B34 Diacritic -1B44 Diacritic -1B6B 1B73 Diacritic -1BAA Diacritic -1C36 1C37 Diacritic -1C78 1C7D Diacritic -1D2C 1D6A Diacritic -1DC4 1DCF Diacritic -1DFE 1DFF Diacritic -1FBD Diacritic -1FBF 1FC1 Diacritic -1FCD 1FCF Diacritic -1FDD 1FDF Diacritic -1FED 1FEF Diacritic -1FFD 1FFE Diacritic -2E2F Diacritic -302A 302F Diacritic -3099 309C Diacritic -30FC Diacritic -A66F Diacritic -A67C A67D Diacritic -A67F Diacritic -A717 A721 Diacritic -A788 Diacritic -A8C4 Diacritic -A92B A92E Diacritic -A953 Diacritic -FB1E Diacritic -FE20 FE26 Diacritic -FF3E Diacritic -FF40 Diacritic -FF70 Diacritic -FF9E FF9F Diacritic -FFE3 Diacritic -1D167 1D169 Diacritic -1D16D 1D172 Diacritic -1D17B 1D182 Diacritic -1D185 1D18B Diacritic -1D1AA 1D1AD Diacritic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Diacriti.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Diacriti.pl deleted file mode 100644 index 7afea68..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Diacriti.pl +++ /dev/null @@ -1,118 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Diacritic} (and fuzzy permutations) -# -# Meaning: Extended property 'Diacritic' -# -return <<'END'; -005E Diacritic -0060 Diacritic -00A8 Diacritic -00AF Diacritic -00B4 Diacritic -00B7 00B8 Diacritic -02B0 034E Diacritic -0350 0357 Diacritic -035D 0362 Diacritic -0374 0375 Diacritic -037A Diacritic -0384 0385 Diacritic -0483 0487 Diacritic -0559 Diacritic -0591 05A1 Diacritic -05A3 05BD Diacritic -05BF Diacritic -05C1 05C2 Diacritic -05C4 Diacritic -064B 0652 Diacritic -0657 0658 Diacritic -06DF 06E0 Diacritic -06E5 06E6 Diacritic -06EA 06EC Diacritic -0730 074A Diacritic -07A6 07B0 Diacritic -07EB 07F5 Diacritic -093C Diacritic -094D Diacritic -0951 0954 Diacritic -0971 Diacritic -09BC Diacritic -09CD Diacritic -0A3C Diacritic -0A4D Diacritic -0ABC Diacritic -0ACD Diacritic -0B3C Diacritic -0B4D Diacritic -0BCD Diacritic -0C4D Diacritic -0CBC Diacritic -0CCD Diacritic -0D4D Diacritic -0DCA Diacritic -0E47 0E4C Diacritic -0E4E Diacritic -0EC8 0ECC Diacritic -0F18 0F19 Diacritic -0F35 Diacritic -0F37 Diacritic -0F39 Diacritic -0F3E 0F3F Diacritic -0F82 0F84 Diacritic -0F86 0F87 Diacritic -0FC6 Diacritic -1037 Diacritic -1039 103A Diacritic -1087 108D Diacritic -108F Diacritic -17C9 17D3 Diacritic -17DD Diacritic -1939 193B Diacritic -1B34 Diacritic -1B44 Diacritic -1B6B 1B73 Diacritic -1BAA Diacritic -1C36 1C37 Diacritic -1C78 1C7D Diacritic -1D2C 1D6A Diacritic -1DC4 1DCF Diacritic -1DFE 1DFF Diacritic -1FBD Diacritic -1FBF 1FC1 Diacritic -1FCD 1FCF Diacritic -1FDD 1FDF Diacritic -1FED 1FEF Diacritic -1FFD 1FFE Diacritic -2E2F Diacritic -302A 302F Diacritic -3099 309C Diacritic -30FC Diacritic -A66F Diacritic -A67C A67D Diacritic -A67F Diacritic -A717 A721 Diacritic -A788 Diacritic -A8C4 Diacritic -A92B A92E Diacritic -A953 Diacritic -FB1E Diacritic -FE20 FE26 Diacritic -FF3E Diacritic -FF40 Diacritic -FF70 Diacritic -FF9E FF9F Diacritic -FFE3 Diacritic -1D167 1D169 Diacritic -1D16D 1D172 Diacritic -1D17B 1D182 Diacritic -1D185 1D18B Diacritic -1D1AA 1D1AD Diacritic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Digit.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Digit.pl deleted file mode 100644 index d1e86f1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Digit.pl +++ /dev/null @@ -1,49 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Digit} -# -# Meaning: [[:Digit:]] -# -return <<'END'; -0030 0039 -0660 0669 -06F0 06F9 -07C0 07C9 -0966 096F -09E6 09EF -0A66 0A6F -0AE6 0AEF -0B66 0B6F -0BE6 0BEF -0C66 0C6F -0CE6 0CEF -0D66 0D6F -0E50 0E59 -0ED0 0ED9 -0F20 0F29 -1040 1049 -1090 1099 -17E0 17E9 -1810 1819 -1946 194F -19D0 19D9 -1B50 1B59 -1BB0 1BB9 -1C40 1C49 -1C50 1C59 -A620 A629 -A8D0 A8D9 -A900 A909 -AA50 AA59 -FF10 FF19 -104A0 104A9 -1D7CE 1D7FF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dsrt.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dsrt.pl deleted file mode 100644 index a8d8ee1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Dsrt.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Deseret} (and fuzzy permutations) -# -# Meaning: Script 'Deseret' -# -return <<'END'; -10400 1044F Deseret -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ethi.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ethi.pl deleted file mode 100644 index 8a170be..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ethi.pl +++ /dev/null @@ -1,43 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Ethiopic} (and fuzzy permutations) -# -# Meaning: Script 'Ethiopic' -# -return <<'END'; -1200 1248 Ethiopic -124A 124D Ethiopic -1250 1256 Ethiopic -1258 Ethiopic -125A 125D Ethiopic -1260 1288 Ethiopic -128A 128D Ethiopic -1290 12B0 Ethiopic -12B2 12B5 Ethiopic -12B8 12BE Ethiopic -12C0 Ethiopic -12C2 12C5 Ethiopic -12C8 12D6 Ethiopic -12D8 1310 Ethiopic -1312 1315 Ethiopic -1318 135A Ethiopic -135F 137C Ethiopic -1380 1399 Ethiopic -2D80 2D96 Ethiopic -2DA0 2DA6 Ethiopic -2DA8 2DAE Ethiopic -2DB0 2DB6 Ethiopic -2DB8 2DBE Ethiopic -2DC0 2DC6 Ethiopic -2DC8 2DCE Ethiopic -2DD0 2DD6 Ethiopic -2DD8 2DDE Ethiopic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ext.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ext.pl deleted file mode 100644 index 2838942..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ext.pl +++ /dev/null @@ -1,29 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Extender' -# -return <<'END'; -00B7 Extender -02D0 02D1 Extender -0640 Extender -07FA Extender -0E46 Extender -0EC6 Extender -1843 Extender -1C36 Extender -1C7B Extender -3005 Extender -3031 3035 Extender -309D 309E Extender -30FC 30FE Extender -A015 Extender -A60C Extender -FF70 Extender -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Extender.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Extender.pl deleted file mode 100644 index aa4cccd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Extender.pl +++ /dev/null @@ -1,32 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Extender} (and fuzzy permutations) -# -# Meaning: Extended property 'Extender' -# -return <<'END'; -00B7 Extender -02D0 02D1 Extender -0640 Extender -07FA Extender -0E46 Extender -0EC6 Extender -1843 Extender -1C36 Extender -1C7B Extender -3005 Extender -3031 3035 Extender -309D 309E Extender -30FC 30FE Extender -A015 Extender -A60C Extender -FF70 Extender -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Geor.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Geor.pl deleted file mode 100644 index e0486ad..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Geor.pl +++ /dev/null @@ -1,20 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Georgian} (and fuzzy permutations) -# -# Meaning: Script 'Georgian' -# -return <<'END'; -10A0 10C5 Georgian -10D0 10FA Georgian -10FC Georgian -2D00 2D25 Georgian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Glag.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Glag.pl deleted file mode 100644 index 67270d2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Glag.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Glagolitic} (and fuzzy permutations) -# -# Meaning: Script 'Glagolitic' -# -return <<'END'; -2C00 2C2E Glagolitic -2C30 2C5E Glagolitic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Goth.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Goth.pl deleted file mode 100644 index e832fad..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Goth.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Gothic} (and fuzzy permutations) -# -# Meaning: Script 'Gothic' -# -return <<'END'; -10330 1034A Gothic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Graph.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Graph.pl deleted file mode 100644 index cd17411..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Graph.pl +++ /dev/null @@ -1,465 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Graph} -# -# Meaning: [[:Graph:]] -# -return <<'END'; -0021 007E -00A1 0377 -037A 037E -0384 038A -038C -038E 03A1 -03A3 0523 -0531 0556 -0559 055F -0561 0587 -0589 058A -0591 05C7 -05D0 05EA -05F0 05F4 -0600 0603 -0606 061B -061E 061F -0621 065E -0660 070D -070F 074A -074D 07B1 -07C0 07FA -0901 0939 -093C 094D -0950 0954 -0958 0972 -097B 097F -0981 0983 -0985 098C -098F 0990 -0993 09A8 -09AA 09B0 -09B2 -09B6 09B9 -09BC 09C4 -09C7 09C8 -09CB 09CE -09D7 -09DC 09DD -09DF 09E3 -09E6 09FA -0A01 0A03 -0A05 0A0A -0A0F 0A10 -0A13 0A28 -0A2A 0A30 -0A32 0A33 -0A35 0A36 -0A38 0A39 -0A3C -0A3E 0A42 -0A47 0A48 -0A4B 0A4D -0A51 -0A59 0A5C -0A5E -0A66 0A75 -0A81 0A83 -0A85 0A8D -0A8F 0A91 -0A93 0AA8 -0AAA 0AB0 -0AB2 0AB3 -0AB5 0AB9 -0ABC 0AC5 -0AC7 0AC9 -0ACB 0ACD -0AD0 -0AE0 0AE3 -0AE6 0AEF -0AF1 -0B01 0B03 -0B05 0B0C -0B0F 0B10 -0B13 0B28 -0B2A 0B30 -0B32 0B33 -0B35 0B39 -0B3C 0B44 -0B47 0B48 -0B4B 0B4D -0B56 0B57 -0B5C 0B5D -0B5F 0B63 -0B66 0B71 -0B82 0B83 -0B85 0B8A -0B8E 0B90 -0B92 0B95 -0B99 0B9A -0B9C -0B9E 0B9F -0BA3 0BA4 -0BA8 0BAA -0BAE 0BB9 -0BBE 0BC2 -0BC6 0BC8 -0BCA 0BCD -0BD0 -0BD7 -0BE6 0BFA -0C01 0C03 -0C05 0C0C -0C0E 0C10 -0C12 0C28 -0C2A 0C33 -0C35 0C39 -0C3D 0C44 -0C46 0C48 -0C4A 0C4D -0C55 0C56 -0C58 0C59 -0C60 0C63 -0C66 0C6F -0C78 0C7F -0C82 0C83 -0C85 0C8C -0C8E 0C90 -0C92 0CA8 -0CAA 0CB3 -0CB5 0CB9 -0CBC 0CC4 -0CC6 0CC8 -0CCA 0CCD -0CD5 0CD6 -0CDE -0CE0 0CE3 -0CE6 0CEF -0CF1 0CF2 -0D02 0D03 -0D05 0D0C -0D0E 0D10 -0D12 0D28 -0D2A 0D39 -0D3D 0D44 -0D46 0D48 -0D4A 0D4D -0D57 -0D60 0D63 -0D66 0D75 -0D79 0D7F -0D82 0D83 -0D85 0D96 -0D9A 0DB1 -0DB3 0DBB -0DBD -0DC0 0DC6 -0DCA -0DCF 0DD4 -0DD6 -0DD8 0DDF -0DF2 0DF4 -0E01 0E3A -0E3F 0E5B -0E81 0E82 -0E84 -0E87 0E88 -0E8A -0E8D -0E94 0E97 -0E99 0E9F -0EA1 0EA3 -0EA5 -0EA7 -0EAA 0EAB -0EAD 0EB9 -0EBB 0EBD -0EC0 0EC4 -0EC6 -0EC8 0ECD -0ED0 0ED9 -0EDC 0EDD -0F00 0F47 -0F49 0F6C -0F71 0F8B -0F90 0F97 -0F99 0FBC -0FBE 0FCC -0FCE 0FD4 -1000 1099 -109E 10C5 -10D0 10FC -1100 1159 -115F 11A2 -11A8 11F9 -1200 1248 -124A 124D -1250 1256 -1258 -125A 125D -1260 1288 -128A 128D -1290 12B0 -12B2 12B5 -12B8 12BE -12C0 -12C2 12C5 -12C8 12D6 -12D8 1310 -1312 1315 -1318 135A -135F 137C -1380 1399 -13A0 13F4 -1401 1676 -1681 169C -16A0 16F0 -1700 170C -170E 1714 -1720 1736 -1740 1753 -1760 176C -176E 1770 -1772 1773 -1780 17DD -17E0 17E9 -17F0 17F9 -1800 180D -1810 1819 -1820 1877 -1880 18AA -1900 191C -1920 192B -1930 193B -1940 -1944 196D -1970 1974 -1980 19A9 -19B0 19C9 -19D0 19D9 -19DE 1A1B -1A1E 1A1F -1B00 1B4B -1B50 1B7C -1B80 1BAA -1BAE 1BB9 -1C00 1C37 -1C3B 1C49 -1C4D 1C7F -1D00 1DE6 -1DFE 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FC4 -1FC6 1FD3 -1FD6 1FDB -1FDD 1FEF -1FF2 1FF4 -1FF6 1FFE -200B 2027 -202A 202E -2030 205E -2060 2064 -206A 2071 -2074 208E -2090 2094 -20A0 20B5 -20D0 20F0 -2100 214F -2153 2188 -2190 23E7 -2400 2426 -2440 244A -2460 269D -26A0 26BC -26C0 26C3 -2701 2704 -2706 2709 -270C 2727 -2729 274B -274D -274F 2752 -2756 -2758 275E -2761 2794 -2798 27AF -27B1 27BE -27C0 27CA -27CC -27D0 2B4C -2B50 2B54 -2C00 2C2E -2C30 2C5E -2C60 2C6F -2C71 2C7D -2C80 2CEA -2CF9 2D25 -2D30 2D65 -2D6F -2D80 2D96 -2DA0 2DA6 -2DA8 2DAE -2DB0 2DB6 -2DB8 2DBE -2DC0 2DC6 -2DC8 2DCE -2DD0 2DD6 -2DD8 2DDE -2DE0 2E30 -2E80 2E99 -2E9B 2EF3 -2F00 2FD5 -2FF0 2FFB -3001 303F -3041 3096 -3099 30FF -3105 312D -3131 318E -3190 31B7 -31C0 31E3 -31F0 321E -3220 3243 -3250 32FE -3300 4DB5 -4DC0 9FC3 -A000 A48C -A490 A4C6 -A500 A62B -A640 A65F -A662 A673 -A67C A697 -A700 A78C -A7FB A82B -A840 A877 -A880 A8C4 -A8CE A8D9 -A900 A953 -A95F -AA00 AA36 -AA40 AA4D -AA50 AA59 -AA5C AA5F -AC00 D7A3 -E000 FA2D -FA30 FA6A -FA70 FAD9 -FB00 FB06 -FB13 FB17 -FB1D FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FBB1 -FBD3 FD3F -FD50 FD8F -FD92 FDC7 -FDF0 FDFD -FE00 FE19 -FE20 FE26 -FE30 FE52 -FE54 FE66 -FE68 FE6B -FE70 FE74 -FE76 FEFC -FEFF -FF01 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -FFE0 FFE6 -FFE8 FFEE -FFF9 FFFD -10000 1000B -1000D 10026 -10028 1003A -1003C 1003D -1003F 1004D -10050 1005D -10080 100FA -10100 10102 -10107 10133 -10137 1018A -10190 1019B -101D0 101FD -10280 1029C -102A0 102D0 -10300 1031E -10320 10323 -10330 1034A -10380 1039D -1039F 103C3 -103C8 103D5 -10400 1049D -104A0 104A9 -10800 10805 -10808 -1080A 10835 -10837 10838 -1083C -1083F -10900 10919 -1091F 10939 -1093F -10A00 10A03 -10A05 10A06 -10A0C 10A13 -10A15 10A17 -10A19 10A33 -10A38 10A3A -10A3F 10A47 -10A50 10A58 -12000 1236E -12400 12462 -12470 12473 -1D000 1D0F5 -1D100 1D126 -1D129 1D1DD -1D200 1D245 -1D300 1D356 -1D360 1D371 -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D7CB -1D7CE 1D7FF -1F000 1F02B -1F030 1F093 -20000 2A6D6 -2F800 2FA1D -E0001 -E0020 E007F -E0100 E01EF -F0000 FFFFD -100000 10FFFD -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Grek.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Grek.pl deleted file mode 100644 index 65d1d4c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Grek.pl +++ /dev/null @@ -1,49 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Greek} (and fuzzy permutations) -# -# Meaning: Script 'Greek' -# -return <<'END'; -0370 0373 Greek -0375 0377 Greek -037A 037D Greek -0384 Greek -0386 Greek -0388 038A Greek -038C Greek -038E 03A1 Greek -03A3 03E1 Greek -03F0 03FF Greek -1D26 1D2A Greek -1D5D 1D61 Greek -1D66 1D6A Greek -1DBF Greek -1F00 1F15 Greek -1F18 1F1D Greek -1F20 1F45 Greek -1F48 1F4D Greek -1F50 1F57 Greek -1F59 Greek -1F5B Greek -1F5D Greek -1F5F 1F7D Greek -1F80 1FB4 Greek -1FB6 1FC4 Greek -1FC6 1FD3 Greek -1FD6 1FDB Greek -1FDD 1FEF Greek -1FF2 1FF4 Greek -1FF6 1FFE Greek -2126 Greek -10140 1018A Greek -1D200 1D245 Greek -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Gujr.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Gujr.pl deleted file mode 100644 index 2750dea..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Gujr.pl +++ /dev/null @@ -1,30 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Gujarati} (and fuzzy permutations) -# -# Meaning: Script 'Gujarati' -# -return <<'END'; -0A81 0A83 Gujarati -0A85 0A8D Gujarati -0A8F 0A91 Gujarati -0A93 0AA8 Gujarati -0AAA 0AB0 Gujarati -0AB2 0AB3 Gujarati -0AB5 0AB9 Gujarati -0ABC 0AC5 Gujarati -0AC7 0AC9 Gujarati -0ACB 0ACD Gujarati -0AD0 Gujarati -0AE0 0AE3 Gujarati -0AE6 0AEF Gujarati -0AF1 Gujarati -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Guru.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Guru.pl deleted file mode 100644 index 2785675..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Guru.pl +++ /dev/null @@ -1,32 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Gurmukhi} (and fuzzy permutations) -# -# Meaning: Script 'Gurmukhi' -# -return <<'END'; -0A01 0A03 Gurmukhi -0A05 0A0A Gurmukhi -0A0F 0A10 Gurmukhi -0A13 0A28 Gurmukhi -0A2A 0A30 Gurmukhi -0A32 0A33 Gurmukhi -0A35 0A36 Gurmukhi -0A38 0A39 Gurmukhi -0A3C Gurmukhi -0A3E 0A42 Gurmukhi -0A47 0A48 Gurmukhi -0A4B 0A4D Gurmukhi -0A51 Gurmukhi -0A59 0A5C Gurmukhi -0A5E Gurmukhi -0A66 0A75 Gurmukhi -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hang.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hang.pl deleted file mode 100644 index a99e6d6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hang.pl +++ /dev/null @@ -1,28 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Hangul} (and fuzzy permutations) -# -# Meaning: Script 'Hangul' -# -return <<'END'; -1100 1159 Hangul -115F 11A2 Hangul -11A8 11F9 Hangul -3131 318E Hangul -3200 321E Hangul -3260 327E Hangul -AC00 D7A3 Hangul -FFA0 FFBE Hangul -FFC2 FFC7 Hangul -FFCA FFCF Hangul -FFD2 FFD7 Hangul -FFDA FFDC Hangul -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hani.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hani.pl deleted file mode 100644 index f80ff27..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hani.pl +++ /dev/null @@ -1,30 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Han} (and fuzzy permutations) -# -# Meaning: Script 'Han' -# -return <<'END'; -2E80 2E99 Han -2E9B 2EF3 Han -2F00 2FD5 Han -3005 Han -3007 Han -3021 3029 Han -3038 303B Han -3400 4DB5 Han -4E00 9FC3 Han -F900 FA2D Han -FA30 FA6A Han -FA70 FAD9 Han -20000 2A6D6 Han -2F800 2FA1D Han -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hano.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hano.pl deleted file mode 100644 index d93f8c9..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hano.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Hanunoo} (and fuzzy permutations) -# -# Meaning: Script 'Hanunoo' -# -return <<'END'; -1720 1734 Hanunoo -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hebr.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hebr.pl deleted file mode 100644 index b8e2bdc..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hebr.pl +++ /dev/null @@ -1,25 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Hebrew} (and fuzzy permutations) -# -# Meaning: Script 'Hebrew' -# -return <<'END'; -0591 05C7 Hebrew -05D0 05EA Hebrew -05F0 05F4 Hebrew -FB1D FB36 Hebrew -FB38 FB3C Hebrew -FB3E Hebrew -FB40 FB41 Hebrew -FB43 FB44 Hebrew -FB46 FB4F Hebrew -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hex.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hex.pl deleted file mode 100644 index 119926b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hex.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Hex_Digit' -# -return <<'END'; -0030 0039 Hex_Digit -0041 0046 Hex_Digit -0061 0066 Hex_Digit -FF10 FF19 Hex_Digit -FF21 FF26 Hex_Digit -FF41 FF46 Hex_Digit -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/HexDigit.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/HexDigit.pl deleted file mode 100644 index 341b9e4..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/HexDigit.pl +++ /dev/null @@ -1,22 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{HexDigit} (and fuzzy permutations) -# -# Meaning: Extended property 'Hex_Digit' -# -return <<'END'; -0030 0039 Hex_Digit -0041 0046 Hex_Digit -0061 0066 Hex_Digit -FF10 FF19 Hex_Digit -FF21 FF26 Hex_Digit -FF41 FF46 Hex_Digit -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hira.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hira.pl deleted file mode 100644 index f8dca97..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hira.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Hiragana} (and fuzzy permutations) -# -# Meaning: Script 'Hiragana' -# -return <<'END'; -3041 3096 Hiragana -309D 309F Hiragana -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/HorizSpa.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/HorizSpa.pl deleted file mode 100644 index 2904e0d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/HorizSpa.pl +++ /dev/null @@ -1,25 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{HorizSpace} -# -# Meaning: \h -# -return <<'END'; -0009 -0020 -00A0 -1680 -180E -2000 200A -202F -205F -3000 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hyphen.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hyphen.pl deleted file mode 100644 index 87a1bff..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hyphen.pl +++ /dev/null @@ -1,23 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Hyphen' -# -return <<'END'; -002D Hyphen -00AD Hyphen -058A Hyphen -1806 Hyphen -2010 2011 Hyphen -2E17 Hyphen -30FB Hyphen -FE63 Hyphen -FF0D Hyphen -FF65 Hyphen -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hyphen2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hyphen2.pl deleted file mode 100644 index f483bb2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Hyphen2.pl +++ /dev/null @@ -1,26 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Hyphen} (and fuzzy permutations) -# -# Meaning: Extended property 'Hyphen' -# -return <<'END'; -002D Hyphen -00AD Hyphen -058A Hyphen -1806 Hyphen -2010 2011 Hyphen -2E17 Hyphen -30FB Hyphen -FE63 Hyphen -FF0D Hyphen -FF65 Hyphen -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IDSB.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IDSB.pl deleted file mode 100644 index 0456004..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IDSB.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'IDS_Binary_Operator' -# -return <<'END'; -2FF0 2FF1 IDS_Binary_Operator -2FF4 2FFB IDS_Binary_Operator -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IDST.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IDST.pl deleted file mode 100644 index fb1aeb8..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IDST.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'IDS_Trinary_Operator' -# -return <<'END'; -2FF2 2FF3 IDS_Trinary_Operator -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IdContin.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IdContin.pl deleted file mode 100644 index 08d06af..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IdContin.pl +++ /dev/null @@ -1,494 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{IdContinue} (and fuzzy permutations) -# -# Meaning: [\p{ID_Start}\p{Mn}\p{Mc}\p{Nd}\p{Pc}\p{OtherIDContinue}] -# -return <<'END'; -0030 0039 -0041 005A -005F -0061 007A -00AA -00B5 -00B7 -00BA -00C0 00D6 -00D8 00F6 -00F8 02C1 -02C6 02D1 -02E0 02E4 -02EC -02EE -0300 0374 -0376 0377 -037A 037D -0386 038A -038C -038E 03A1 -03A3 03F5 -03F7 0481 -0483 0487 -048A 0523 -0531 0556 -0559 -0561 0587 -0591 05BD -05BF -05C1 05C2 -05C4 05C5 -05C7 -05D0 05EA -05F0 05F2 -0610 061A -0621 065E -0660 0669 -066E 06D3 -06D5 06DC -06DF 06E8 -06EA 06FC -06FF -0710 074A -074D 07B1 -07C0 07F5 -07FA -0901 0939 -093C 094D -0950 0954 -0958 0963 -0966 096F -0971 0972 -097B 097F -0981 0983 -0985 098C -098F 0990 -0993 09A8 -09AA 09B0 -09B2 -09B6 09B9 -09BC 09C4 -09C7 09C8 -09CB 09CE -09D7 -09DC 09DD -09DF 09E3 -09E6 09F1 -0A01 0A03 -0A05 0A0A -0A0F 0A10 -0A13 0A28 -0A2A 0A30 -0A32 0A33 -0A35 0A36 -0A38 0A39 -0A3C -0A3E 0A42 -0A47 0A48 -0A4B 0A4D -0A51 -0A59 0A5C -0A5E -0A66 0A75 -0A81 0A83 -0A85 0A8D -0A8F 0A91 -0A93 0AA8 -0AAA 0AB0 -0AB2 0AB3 -0AB5 0AB9 -0ABC 0AC5 -0AC7 0AC9 -0ACB 0ACD -0AD0 -0AE0 0AE3 -0AE6 0AEF -0B01 0B03 -0B05 0B0C -0B0F 0B10 -0B13 0B28 -0B2A 0B30 -0B32 0B33 -0B35 0B39 -0B3C 0B44 -0B47 0B48 -0B4B 0B4D -0B56 0B57 -0B5C 0B5D -0B5F 0B63 -0B66 0B6F -0B71 -0B82 0B83 -0B85 0B8A -0B8E 0B90 -0B92 0B95 -0B99 0B9A -0B9C -0B9E 0B9F -0BA3 0BA4 -0BA8 0BAA -0BAE 0BB9 -0BBE 0BC2 -0BC6 0BC8 -0BCA 0BCD -0BD0 -0BD7 -0BE6 0BEF -0C01 0C03 -0C05 0C0C -0C0E 0C10 -0C12 0C28 -0C2A 0C33 -0C35 0C39 -0C3D 0C44 -0C46 0C48 -0C4A 0C4D -0C55 0C56 -0C58 0C59 -0C60 0C63 -0C66 0C6F -0C82 0C83 -0C85 0C8C -0C8E 0C90 -0C92 0CA8 -0CAA 0CB3 -0CB5 0CB9 -0CBC 0CC4 -0CC6 0CC8 -0CCA 0CCD -0CD5 0CD6 -0CDE -0CE0 0CE3 -0CE6 0CEF -0D02 0D03 -0D05 0D0C -0D0E 0D10 -0D12 0D28 -0D2A 0D39 -0D3D 0D44 -0D46 0D48 -0D4A 0D4D -0D57 -0D60 0D63 -0D66 0D6F -0D7A 0D7F -0D82 0D83 -0D85 0D96 -0D9A 0DB1 -0DB3 0DBB -0DBD -0DC0 0DC6 -0DCA -0DCF 0DD4 -0DD6 -0DD8 0DDF -0DF2 0DF3 -0E01 0E3A -0E40 0E4E -0E50 0E59 -0E81 0E82 -0E84 -0E87 0E88 -0E8A -0E8D -0E94 0E97 -0E99 0E9F -0EA1 0EA3 -0EA5 -0EA7 -0EAA 0EAB -0EAD 0EB9 -0EBB 0EBD -0EC0 0EC4 -0EC6 -0EC8 0ECD -0ED0 0ED9 -0EDC 0EDD -0F00 -0F18 0F19 -0F20 0F29 -0F35 -0F37 -0F39 -0F3E 0F47 -0F49 0F6C -0F71 0F84 -0F86 0F8B -0F90 0F97 -0F99 0FBC -0FC6 -1000 1049 -1050 1099 -10A0 10C5 -10D0 10FA -10FC -1100 1159 -115F 11A2 -11A8 11F9 -1200 1248 -124A 124D -1250 1256 -1258 -125A 125D -1260 1288 -128A 128D -1290 12B0 -12B2 12B5 -12B8 12BE -12C0 -12C2 12C5 -12C8 12D6 -12D8 1310 -1312 1315 -1318 135A -135F -1369 1371 -1380 138F -13A0 13F4 -1401 166C -166F 1676 -1681 169A -16A0 16EA -16EE 16F0 -1700 170C -170E 1714 -1720 1734 -1740 1753 -1760 176C -176E 1770 -1772 1773 -1780 17B3 -17B6 17D3 -17D7 -17DC 17DD -17E0 17E9 -180B 180D -1810 1819 -1820 1877 -1880 18AA -1900 191C -1920 192B -1930 193B -1946 196D -1970 1974 -1980 19A9 -19B0 19C9 -19D0 19D9 -1A00 1A1B -1B00 1B4B -1B50 1B59 -1B6B 1B73 -1B80 1BAA -1BAE 1BB9 -1C00 1C37 -1C40 1C49 -1C4D 1C7D -1D00 1DE6 -1DFE 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FBC -1FBE -1FC2 1FC4 -1FC6 1FCC -1FD0 1FD3 -1FD6 1FDB -1FE0 1FEC -1FF2 1FF4 -1FF6 1FFC -203F 2040 -2054 -2071 -207F -2090 2094 -20D0 20DC -20E1 -20E5 20F0 -2102 -2107 -210A 2113 -2115 -2118 211D -2124 -2126 -2128 -212A 2139 -213C 213F -2145 2149 -214E -2160 2188 -2C00 2C2E -2C30 2C5E -2C60 2C6F -2C71 2C7D -2C80 2CE4 -2D00 2D25 -2D30 2D65 -2D6F -2D80 2D96 -2DA0 2DA6 -2DA8 2DAE -2DB0 2DB6 -2DB8 2DBE -2DC0 2DC6 -2DC8 2DCE -2DD0 2DD6 -2DD8 2DDE -2DE0 2DFF -2E2F -3005 3007 -3021 302F -3031 3035 -3038 303C -3041 3096 -3099 309F -30A1 30FA -30FC 30FF -3105 312D -3131 318E -31A0 31B7 -31F0 31FF -3400 4DB5 -4E00 9FC3 -A000 A48C -A500 A60C -A610 A62B -A640 A65F -A662 A66F -A67C A67D -A67F A697 -A717 A71F -A722 A788 -A78B A78C -A7FB A827 -A840 A873 -A880 A8C4 -A8D0 A8D9 -A900 A92D -A930 A953 -AA00 AA36 -AA40 AA4D -AA50 AA59 -AC00 D7A3 -F900 FA2D -FA30 FA6A -FA70 FAD9 -FB00 FB06 -FB13 FB17 -FB1D FB28 -FB2A FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FBB1 -FBD3 FD3D -FD50 FD8F -FD92 FDC7 -FDF0 FDFB -FE00 FE0F -FE20 FE26 -FE33 FE34 -FE4D FE4F -FE70 FE74 -FE76 FEFC -FF10 FF19 -FF21 FF3A -FF3F -FF41 FF5A -FF66 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -10000 1000B -1000D 10026 -10028 1003A -1003C 1003D -1003F 1004D -10050 1005D -10080 100FA -10140 10174 -101FD -10280 1029C -102A0 102D0 -10300 1031E -10330 1034A -10380 1039D -103A0 103C3 -103C8 103CF -103D1 103D5 -10400 1049D -104A0 104A9 -10800 10805 -10808 -1080A 10835 -10837 10838 -1083C -1083F -10900 10915 -10920 10939 -10A00 10A03 -10A05 10A06 -10A0C 10A13 -10A15 10A17 -10A19 10A33 -10A38 10A3A -10A3F -12000 1236E -12400 12462 -1D165 1D169 -1D16D 1D172 -1D17B 1D182 -1D185 1D18B -1D1AA 1D1AD -1D242 1D244 -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D6C0 -1D6C2 1D6DA -1D6DC 1D6FA -1D6FC 1D714 -1D716 1D734 -1D736 1D74E -1D750 1D76E -1D770 1D788 -1D78A 1D7A8 -1D7AA 1D7C2 -1D7C4 1D7CB -1D7CE 1D7FF -20000 2A6D6 -2F800 2FA1D -E0100 E01EF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IdStart.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IdStart.pl deleted file mode 100644 index 422bdf5..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IdStart.pl +++ /dev/null @@ -1,409 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{IdStart} (and fuzzy permutations) -# -# Meaning: [\p{Ll}\p{Lu}\p{Lt}\p{Lm}\p{Lo}\p{Nl}\p{OtherIDStart}] -# -return <<'END'; -0041 005A -0061 007A -00AA -00B5 -00BA -00C0 00D6 -00D8 00F6 -00F8 02C1 -02C6 02D1 -02E0 02E4 -02EC -02EE -0370 0374 -0376 0377 -037A 037D -0386 -0388 038A -038C -038E 03A1 -03A3 03F5 -03F7 0481 -048A 0523 -0531 0556 -0559 -0561 0587 -05D0 05EA -05F0 05F2 -0621 064A -066E 066F -0671 06D3 -06D5 -06E5 06E6 -06EE 06EF -06FA 06FC -06FF -0710 -0712 072F -074D 07A5 -07B1 -07CA 07EA -07F4 07F5 -07FA -0904 0939 -093D -0950 -0958 0961 -0971 0972 -097B 097F -0985 098C -098F 0990 -0993 09A8 -09AA 09B0 -09B2 -09B6 09B9 -09BD -09CE -09DC 09DD -09DF 09E1 -09F0 09F1 -0A05 0A0A -0A0F 0A10 -0A13 0A28 -0A2A 0A30 -0A32 0A33 -0A35 0A36 -0A38 0A39 -0A59 0A5C -0A5E -0A72 0A74 -0A85 0A8D -0A8F 0A91 -0A93 0AA8 -0AAA 0AB0 -0AB2 0AB3 -0AB5 0AB9 -0ABD -0AD0 -0AE0 0AE1 -0B05 0B0C -0B0F 0B10 -0B13 0B28 -0B2A 0B30 -0B32 0B33 -0B35 0B39 -0B3D -0B5C 0B5D -0B5F 0B61 -0B71 -0B83 -0B85 0B8A -0B8E 0B90 -0B92 0B95 -0B99 0B9A -0B9C -0B9E 0B9F -0BA3 0BA4 -0BA8 0BAA -0BAE 0BB9 -0BD0 -0C05 0C0C -0C0E 0C10 -0C12 0C28 -0C2A 0C33 -0C35 0C39 -0C3D -0C58 0C59 -0C60 0C61 -0C85 0C8C -0C8E 0C90 -0C92 0CA8 -0CAA 0CB3 -0CB5 0CB9 -0CBD -0CDE -0CE0 0CE1 -0D05 0D0C -0D0E 0D10 -0D12 0D28 -0D2A 0D39 -0D3D -0D60 0D61 -0D7A 0D7F -0D85 0D96 -0D9A 0DB1 -0DB3 0DBB -0DBD -0DC0 0DC6 -0E01 0E30 -0E32 0E33 -0E40 0E46 -0E81 0E82 -0E84 -0E87 0E88 -0E8A -0E8D -0E94 0E97 -0E99 0E9F -0EA1 0EA3 -0EA5 -0EA7 -0EAA 0EAB -0EAD 0EB0 -0EB2 0EB3 -0EBD -0EC0 0EC4 -0EC6 -0EDC 0EDD -0F00 -0F40 0F47 -0F49 0F6C -0F88 0F8B -1000 102A -103F -1050 1055 -105A 105D -1061 -1065 1066 -106E 1070 -1075 1081 -108E -10A0 10C5 -10D0 10FA -10FC -1100 1159 -115F 11A2 -11A8 11F9 -1200 1248 -124A 124D -1250 1256 -1258 -125A 125D -1260 1288 -128A 128D -1290 12B0 -12B2 12B5 -12B8 12BE -12C0 -12C2 12C5 -12C8 12D6 -12D8 1310 -1312 1315 -1318 135A -1380 138F -13A0 13F4 -1401 166C -166F 1676 -1681 169A -16A0 16EA -16EE 16F0 -1700 170C -170E 1711 -1720 1731 -1740 1751 -1760 176C -176E 1770 -1780 17B3 -17D7 -17DC -1820 1877 -1880 18A8 -18AA -1900 191C -1950 196D -1970 1974 -1980 19A9 -19C1 19C7 -1A00 1A16 -1B05 1B33 -1B45 1B4B -1B83 1BA0 -1BAE 1BAF -1C00 1C23 -1C4D 1C4F -1C5A 1C7D -1D00 1DBF -1E00 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FBC -1FBE -1FC2 1FC4 -1FC6 1FCC -1FD0 1FD3 -1FD6 1FDB -1FE0 1FEC -1FF2 1FF4 -1FF6 1FFC -2071 -207F -2090 2094 -2102 -2107 -210A 2113 -2115 -2118 211D -2124 -2126 -2128 -212A 2139 -213C 213F -2145 2149 -214E -2160 2188 -2C00 2C2E -2C30 2C5E -2C60 2C6F -2C71 2C7D -2C80 2CE4 -2D00 2D25 -2D30 2D65 -2D6F -2D80 2D96 -2DA0 2DA6 -2DA8 2DAE -2DB0 2DB6 -2DB8 2DBE -2DC0 2DC6 -2DC8 2DCE -2DD0 2DD6 -2DD8 2DDE -2E2F -3005 3007 -3021 3029 -3031 3035 -3038 303C -3041 3096 -309B 309F -30A1 30FA -30FC 30FF -3105 312D -3131 318E -31A0 31B7 -31F0 31FF -3400 4DB5 -4E00 9FC3 -A000 A48C -A500 A60C -A610 A61F -A62A A62B -A640 A65F -A662 A66E -A67F A697 -A717 A71F -A722 A788 -A78B A78C -A7FB A801 -A803 A805 -A807 A80A -A80C A822 -A840 A873 -A882 A8B3 -A90A A925 -A930 A946 -AA00 AA28 -AA40 AA42 -AA44 AA4B -AC00 D7A3 -F900 FA2D -FA30 FA6A -FA70 FAD9 -FB00 FB06 -FB13 FB17 -FB1D -FB1F FB28 -FB2A FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FBB1 -FBD3 FD3D -FD50 FD8F -FD92 FDC7 -FDF0 FDFB -FE70 FE74 -FE76 FEFC -FF21 FF3A -FF41 FF5A -FF66 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -10000 1000B -1000D 10026 -10028 1003A -1003C 1003D -1003F 1004D -10050 1005D -10080 100FA -10140 10174 -10280 1029C -102A0 102D0 -10300 1031E -10330 1034A -10380 1039D -103A0 103C3 -103C8 103CF -103D1 103D5 -10400 1049D -10800 10805 -10808 -1080A 10835 -10837 10838 -1083C -1083F -10900 10915 -10920 10939 -10A00 -10A10 10A13 -10A15 10A17 -10A19 10A33 -12000 1236E -12400 12462 -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D6C0 -1D6C2 1D6DA -1D6DC 1D6FA -1D6FC 1D714 -1D716 1D734 -1D736 1D74E -1D750 1D76E -1D770 1D788 -1D78A 1D7A8 -1D7AA 1D7C2 -1D7C4 1D7CB -20000 2A6D6 -2F800 2FA1D -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ideo.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ideo.pl deleted file mode 100644 index a856b64..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ideo.pl +++ /dev/null @@ -1,23 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Ideographic' -# -return <<'END'; -3006 3007 Ideographic -3021 3029 Ideographic -3038 303A Ideographic -3400 4DB5 Ideographic -4E00 9FC3 Ideographic -F900 FA2D Ideographic -FA30 FA6A Ideographic -FA70 FAD9 Ideographic -20000 2A6D6 Ideographic -2F800 2FA1D Ideographic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ideograp.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ideograp.pl deleted file mode 100644 index 9931b62..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ideograp.pl +++ /dev/null @@ -1,26 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Ideographic} (and fuzzy permutations) -# -# Meaning: Extended property 'Ideographic' -# -return <<'END'; -3006 3007 Ideographic -3021 3029 Ideographic -3038 303A Ideographic -3400 4DB5 Ideographic -4E00 9FC3 Ideographic -F900 FA2D Ideographic -FA30 FA6A Ideographic -FA70 FAD9 Ideographic -20000 2A6D6 Ideographic -2F800 2FA1D Ideographic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IdsBinar.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IdsBinar.pl deleted file mode 100644 index f8b75a6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IdsBinar.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{IdsBinaryOperator} (and fuzzy permutations) -# -# Meaning: Extended property 'IDS_Binary_Operator' -# -return <<'END'; -2FF0 2FF1 IDS_Binary_Operator -2FF4 2FFB IDS_Binary_Operator -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IdsTrina.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IdsTrina.pl deleted file mode 100644 index 5e470ab..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/IdsTrina.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{IdsTrinaryOperator} (and fuzzy permutations) -# -# Meaning: Extended property 'IDS_Trinary_Operator' -# -return <<'END'; -2FF2 2FF3 IDS_Trinary_Operator -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAegean.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAegean.pl deleted file mode 100644 index cc73f37..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAegean.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InAegeanNumbers} (and fuzzy permutations) -# -# Meaning: Block 'Aegean Numbers' -# -return <<'END'; -10100 1013F Aegean Numbers -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAlphab.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAlphab.pl deleted file mode 100644 index 8d4704c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAlphab.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InAlphabeticPresentationForms} (and fuzzy permutations) -# -# Meaning: Block 'Alphabetic Presentation Forms' -# -return <<'END'; -FB00 FB4F Alphabetic Presentation Forms -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAncie2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAncie2.pl deleted file mode 100644 index b4898d1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAncie2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InAncientGreekNumbers} (and fuzzy permutations) -# -# Meaning: Block 'Ancient Greek Numbers' -# -return <<'END'; -10140 1018F Ancient Greek Numbers -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAncie3.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAncie3.pl deleted file mode 100644 index 8c8d56c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAncie3.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InAncientGreekMusicalNotation} (and fuzzy permutations) -# -# Meaning: Block 'Ancient Greek Musical Notation' -# -return <<'END'; -1D200 1D24F Ancient Greek Musical Notation -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAncien.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAncien.pl deleted file mode 100644 index 8b12627..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InAncien.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InAncientSymbols} (and fuzzy permutations) -# -# Meaning: Block 'Ancient Symbols' -# -return <<'END'; -10190 101CF Ancient Symbols -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArabi2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArabi2.pl deleted file mode 100644 index 62efeb9..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArabi2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InArabicSupplement} (and fuzzy permutations) -# -# Meaning: Block 'Arabic Supplement' -# -return <<'END'; -0750 077F Arabic Supplement -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArabi3.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArabi3.pl deleted file mode 100644 index 1b4b40d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArabi3.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InArabicPresentationFormsB} (and fuzzy permutations) -# -# Meaning: Block 'Arabic Presentation Forms-B' -# -return <<'END'; -FE70 FEFF Arabic Presentation Forms-B -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArabi4.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArabi4.pl deleted file mode 100644 index 8b59e12..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArabi4.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InArabicPresentationFormsA} (and fuzzy permutations) -# -# Meaning: Block 'Arabic Presentation Forms-A' -# -return <<'END'; -FB50 FDFF Arabic Presentation Forms-A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArabic.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArabic.pl deleted file mode 100644 index 18c532b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArabic.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InArabic} (and fuzzy permutations) -# -# Meaning: Block 'Arabic' -# -return <<'END'; -0600 06FF Arabic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArmeni.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArmeni.pl deleted file mode 100644 index b659200..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArmeni.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InArmenian} (and fuzzy permutations) -# -# Meaning: Block 'Armenian' -# -return <<'END'; -0530 058F Armenian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArrows.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArrows.pl deleted file mode 100644 index c48c86f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InArrows.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InArrows} (and fuzzy permutations) -# -# Meaning: Block 'Arrows' -# -return <<'END'; -2190 21FF Arrows -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBaline.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBaline.pl deleted file mode 100644 index cbc3bb2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBaline.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InBalinese} (and fuzzy permutations) -# -# Meaning: Block 'Balinese' -# -return <<'END'; -1B00 1B7F Balinese -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBasicL.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBasicL.pl deleted file mode 100644 index e97092f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBasicL.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InBasicLatin} (and fuzzy permutations) -# -# Meaning: Block 'Basic Latin' -# -return <<'END'; -0000 007F Basic Latin -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBengal.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBengal.pl deleted file mode 100644 index 9bb2d08..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBengal.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InBengali} (and fuzzy permutations) -# -# Meaning: Block 'Bengali' -# -return <<'END'; -0980 09FF Bengali -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBlockE.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBlockE.pl deleted file mode 100644 index fc7f790..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBlockE.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InBlockElements} (and fuzzy permutations) -# -# Meaning: Block 'Block Elements' -# -return <<'END'; -2580 259F Block Elements -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBopom2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBopom2.pl deleted file mode 100644 index d7e8099..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBopom2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InBopomofoExtended} (and fuzzy permutations) -# -# Meaning: Block 'Bopomofo Extended' -# -return <<'END'; -31A0 31BF Bopomofo Extended -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBopomo.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBopomo.pl deleted file mode 100644 index 420657f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBopomo.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InBopomofo} (and fuzzy permutations) -# -# Meaning: Block 'Bopomofo' -# -return <<'END'; -3100 312F Bopomofo -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBoxDra.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBoxDra.pl deleted file mode 100644 index fdfbfce..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBoxDra.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InBoxDrawing} (and fuzzy permutations) -# -# Meaning: Block 'Box Drawing' -# -return <<'END'; -2500 257F Box Drawing -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBraill.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBraill.pl deleted file mode 100644 index f0af0cf..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBraill.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InBraillePatterns} (and fuzzy permutations) -# -# Meaning: Block 'Braille Patterns' -# -return <<'END'; -2800 28FF Braille Patterns -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBugine.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBugine.pl deleted file mode 100644 index ce857b5..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBugine.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InBuginese} (and fuzzy permutations) -# -# Meaning: Block 'Buginese' -# -return <<'END'; -1A00 1A1F Buginese -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBuhid.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBuhid.pl deleted file mode 100644 index 2d47bb0..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InBuhid.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InBuhid} (and fuzzy permutations) -# -# Meaning: Block 'Buhid' -# -return <<'END'; -1740 175F Buhid -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InByzant.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InByzant.pl deleted file mode 100644 index bed40a9..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InByzant.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InByzantineMusicalSymbols} (and fuzzy permutations) -# -# Meaning: Block 'Byzantine Musical Symbols' -# -return <<'END'; -1D000 1D0FF Byzantine Musical Symbols -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCarian.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCarian.pl deleted file mode 100644 index 0710525..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCarian.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCarian} (and fuzzy permutations) -# -# Meaning: Block 'Carian' -# -return <<'END'; -102A0 102DF Carian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCham.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCham.pl deleted file mode 100644 index 72367b7..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCham.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCham} (and fuzzy permutations) -# -# Meaning: Block 'Cham' -# -return <<'END'; -AA00 AA5F Cham -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCherok.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCherok.pl deleted file mode 100644 index e210c63..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCherok.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCherokee} (and fuzzy permutations) -# -# Meaning: Block 'Cherokee' -# -return <<'END'; -13A0 13FF Cherokee -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkCo2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkCo2.pl deleted file mode 100644 index 3c85089..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkCo2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCjkCompatibilityForms} (and fuzzy permutations) -# -# Meaning: Block 'CJK Compatibility Forms' -# -return <<'END'; -FE30 FE4F CJK Compatibility Forms -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkCo3.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkCo3.pl deleted file mode 100644 index 0a01091..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkCo3.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCjkCompatibilityIdeographs} (and fuzzy permutations) -# -# Meaning: Block 'CJK Compatibility Ideographs' -# -return <<'END'; -F900 FAFF CJK Compatibility Ideographs -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkCo4.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkCo4.pl deleted file mode 100644 index ab46837..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkCo4.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCjkCompatibilityIdeographsSupplement} (and fuzzy permutations) -# -# Meaning: Block 'CJK Compatibility Ideographs Supplement' -# -return <<'END'; -2F800 2FA1F CJK Compatibility Ideographs Supplement -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkCom.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkCom.pl deleted file mode 100644 index a252060..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkCom.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCjkCompatibility} (and fuzzy permutations) -# -# Meaning: Block 'CJK Compatibility' -# -return <<'END'; -3300 33FF CJK Compatibility -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkRad.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkRad.pl deleted file mode 100644 index c4f22fc..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkRad.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCjkRadicalsSupplement} (and fuzzy permutations) -# -# Meaning: Block 'CJK Radicals Supplement' -# -return <<'END'; -2E80 2EFF CJK Radicals Supplement -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkStr.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkStr.pl deleted file mode 100644 index 5d87c2f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkStr.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCjkStrokes} (and fuzzy permutations) -# -# Meaning: Block 'CJK Strokes' -# -return <<'END'; -31C0 31EF CJK Strokes -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkSym.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkSym.pl deleted file mode 100644 index f9f93e8..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkSym.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCjkSymbolsAndPunctuation} (and fuzzy permutations) -# -# Meaning: Block 'CJK Symbols and Punctuation' -# -return <<'END'; -3000 303F CJK Symbols and Punctuation -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkUn2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkUn2.pl deleted file mode 100644 index 0035287..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkUn2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCjkUnifiedIdeographsExtensionB} (and fuzzy permutations) -# -# Meaning: Block 'CJK Unified Ideographs Extension B' -# -return <<'END'; -20000 2A6DF CJK Unified Ideographs Extension B -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkUn3.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkUn3.pl deleted file mode 100644 index 78e1d12..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkUn3.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCjkUnifiedIdeographsExtensionA} (and fuzzy permutations) -# -# Meaning: Block 'CJK Unified Ideographs Extension A' -# -return <<'END'; -3400 4DBF CJK Unified Ideographs Extension A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkUni.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkUni.pl deleted file mode 100644 index b4735a0..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCjkUni.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCjkUnifiedIdeographs} (and fuzzy permutations) -# -# Meaning: Block 'CJK Unified Ideographs' -# -return <<'END'; -4E00 9FFF CJK Unified Ideographs -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCombi2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCombi2.pl deleted file mode 100644 index 50a2949..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCombi2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCombiningDiacriticalMarks} (and fuzzy permutations) -# -# Meaning: Block 'Combining Diacritical Marks' -# -return <<'END'; -0300 036F Combining Diacritical Marks -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCombi3.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCombi3.pl deleted file mode 100644 index 280200d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCombi3.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCombiningDiacriticalMarksSupplement} (and fuzzy permutations) -# -# Meaning: Block 'Combining Diacritical Marks Supplement' -# -return <<'END'; -1DC0 1DFF Combining Diacritical Marks Supplement -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCombi4.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCombi4.pl deleted file mode 100644 index 2de43b2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCombi4.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCombiningDiacriticalMarksForSymbols} (and fuzzy permutations) -# -# Meaning: Block 'Combining Diacritical Marks for Symbols' -# -return <<'END'; -20D0 20FF Combining Diacritical Marks for Symbols -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCombin.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCombin.pl deleted file mode 100644 index e335925..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCombin.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCombiningHalfMarks} (and fuzzy permutations) -# -# Meaning: Block 'Combining Half Marks' -# -return <<'END'; -FE20 FE2F Combining Half Marks -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InContro.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InContro.pl deleted file mode 100644 index d1aca66..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InContro.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InControlPictures} (and fuzzy permutations) -# -# Meaning: Block 'Control Pictures' -# -return <<'END'; -2400 243F Control Pictures -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCoptic.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCoptic.pl deleted file mode 100644 index 45f963c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCoptic.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCoptic} (and fuzzy permutations) -# -# Meaning: Block 'Coptic' -# -return <<'END'; -2C80 2CFF Coptic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCounti.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCounti.pl deleted file mode 100644 index e5ad9e2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCounti.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCountingRodNumerals} (and fuzzy permutations) -# -# Meaning: Block 'Counting Rod Numerals' -# -return <<'END'; -1D360 1D37F Counting Rod Numerals -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCunei2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCunei2.pl deleted file mode 100644 index 478c07c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCunei2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCuneiformNumbersAndPunctuation} (and fuzzy permutations) -# -# Meaning: Block 'Cuneiform Numbers and Punctuation' -# -return <<'END'; -12400 1247F Cuneiform Numbers and Punctuation -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCuneif.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCuneif.pl deleted file mode 100644 index b29a8ce..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCuneif.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCuneiform} (and fuzzy permutations) -# -# Meaning: Block 'Cuneiform' -# -return <<'END'; -12000 123FF Cuneiform -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCurren.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCurren.pl deleted file mode 100644 index 581568a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCurren.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCurrencySymbols} (and fuzzy permutations) -# -# Meaning: Block 'Currency Symbols' -# -return <<'END'; -20A0 20CF Currency Symbols -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyprio.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyprio.pl deleted file mode 100644 index 1462c52..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyprio.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCypriotSyllabary} (and fuzzy permutations) -# -# Meaning: Block 'Cypriot Syllabary' -# -return <<'END'; -10800 1083F Cypriot Syllabary -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyril2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyril2.pl deleted file mode 100644 index 61d19b7..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyril2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCyrillicExtendedB} (and fuzzy permutations) -# -# Meaning: Block 'Cyrillic Extended-B' -# -return <<'END'; -A640 A69F Cyrillic Extended-B -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyril3.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyril3.pl deleted file mode 100644 index 87232da..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyril3.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCyrillicExtendedA} (and fuzzy permutations) -# -# Meaning: Block 'Cyrillic Extended-A' -# -return <<'END'; -2DE0 2DFF Cyrillic Extended-A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyril4.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyril4.pl deleted file mode 100644 index 760d69c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyril4.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCyrillicSupplement} (and fuzzy permutations) -# -# Meaning: Block 'Cyrillic Supplement' -# -return <<'END'; -0500 052F Cyrillic Supplement -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyrill.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyrill.pl deleted file mode 100644 index 0b5d6cb..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InCyrill.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InCyrillic} (and fuzzy permutations) -# -# Meaning: Block 'Cyrillic' -# -return <<'END'; -0400 04FF Cyrillic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InDesere.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InDesere.pl deleted file mode 100644 index aeb76f6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InDesere.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InDeseret} (and fuzzy permutations) -# -# Meaning: Block 'Deseret' -# -return <<'END'; -10400 1044F Deseret -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InDevana.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InDevana.pl deleted file mode 100644 index e94b158..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InDevana.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InDevanagari} (and fuzzy permutations) -# -# Meaning: Block 'Devanagari' -# -return <<'END'; -0900 097F Devanagari -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InDingba.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InDingba.pl deleted file mode 100644 index 7d064cb..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InDingba.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InDingbats} (and fuzzy permutations) -# -# Meaning: Block 'Dingbats' -# -return <<'END'; -2700 27BF Dingbats -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InDomino.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InDomino.pl deleted file mode 100644 index b58cf90..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InDomino.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InDominoTiles} (and fuzzy permutations) -# -# Meaning: Block 'Domino Tiles' -# -return <<'END'; -1F030 1F09F Domino Tiles -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEnclo2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEnclo2.pl deleted file mode 100644 index 5342dce..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEnclo2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InEnclosedCjkLettersAndMonths} (and fuzzy permutations) -# -# Meaning: Block 'Enclosed CJK Letters and Months' -# -return <<'END'; -3200 32FF Enclosed CJK Letters and Months -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEnclos.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEnclos.pl deleted file mode 100644 index 5118f3e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEnclos.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InEnclosedAlphanumerics} (and fuzzy permutations) -# -# Meaning: Block 'Enclosed Alphanumerics' -# -return <<'END'; -2460 24FF Enclosed Alphanumerics -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEthio2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEthio2.pl deleted file mode 100644 index e318678..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEthio2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InEthiopicExtended} (and fuzzy permutations) -# -# Meaning: Block 'Ethiopic Extended' -# -return <<'END'; -2D80 2DDF Ethiopic Extended -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEthio3.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEthio3.pl deleted file mode 100644 index b93d5fb..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEthio3.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InEthiopicSupplement} (and fuzzy permutations) -# -# Meaning: Block 'Ethiopic Supplement' -# -return <<'END'; -1380 139F Ethiopic Supplement -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEthiop.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEthiop.pl deleted file mode 100644 index 298a031..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InEthiop.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InEthiopic} (and fuzzy permutations) -# -# Meaning: Block 'Ethiopic' -# -return <<'END'; -1200 137F Ethiopic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGenera.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGenera.pl deleted file mode 100644 index d460179..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGenera.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InGeneralPunctuation} (and fuzzy permutations) -# -# Meaning: Block 'General Punctuation' -# -return <<'END'; -2000 206F General Punctuation -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGeomet.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGeomet.pl deleted file mode 100644 index cc1225d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGeomet.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InGeometricShapes} (and fuzzy permutations) -# -# Meaning: Block 'Geometric Shapes' -# -return <<'END'; -25A0 25FF Geometric Shapes -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGeorg2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGeorg2.pl deleted file mode 100644 index 7ac4ecb..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGeorg2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InGeorgianSupplement} (and fuzzy permutations) -# -# Meaning: Block 'Georgian Supplement' -# -return <<'END'; -2D00 2D2F Georgian Supplement -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGeorgi.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGeorgi.pl deleted file mode 100644 index 1ea6e43..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGeorgi.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InGeorgian} (and fuzzy permutations) -# -# Meaning: Block 'Georgian' -# -return <<'END'; -10A0 10FF Georgian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGlagol.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGlagol.pl deleted file mode 100644 index 37ffa76..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGlagol.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InGlagolitic} (and fuzzy permutations) -# -# Meaning: Block 'Glagolitic' -# -return <<'END'; -2C00 2C5F Glagolitic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGothic.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGothic.pl deleted file mode 100644 index 39e3d9e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGothic.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InGothic} (and fuzzy permutations) -# -# Meaning: Block 'Gothic' -# -return <<'END'; -10330 1034F Gothic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGreekA.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGreekA.pl deleted file mode 100644 index 465162c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGreekA.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InGreekAndCoptic} (and fuzzy permutations) -# -# Meaning: Block 'Greek and Coptic' -# -return <<'END'; -0370 03FF Greek and Coptic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGreekE.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGreekE.pl deleted file mode 100644 index ce9d961..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGreekE.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InGreekExtended} (and fuzzy permutations) -# -# Meaning: Block 'Greek Extended' -# -return <<'END'; -1F00 1FFF Greek Extended -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGujara.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGujara.pl deleted file mode 100644 index cbfa9f2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGujara.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InGujarati} (and fuzzy permutations) -# -# Meaning: Block 'Gujarati' -# -return <<'END'; -0A80 0AFF Gujarati -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGurmuk.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGurmuk.pl deleted file mode 100644 index f2e8ace..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InGurmuk.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InGurmukhi} (and fuzzy permutations) -# -# Meaning: Block 'Gurmukhi' -# -return <<'END'; -0A00 0A7F Gurmukhi -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHalfwi.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHalfwi.pl deleted file mode 100644 index f474f2a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHalfwi.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InHalfwidthAndFullwidthForms} (and fuzzy permutations) -# -# Meaning: Block 'Halfwidth and Fullwidth Forms' -# -return <<'END'; -FF00 FFEF Halfwidth and Fullwidth Forms -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHangu2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHangu2.pl deleted file mode 100644 index dda7657..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHangu2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InHangulSyllables} (and fuzzy permutations) -# -# Meaning: Block 'Hangul Syllables' -# -return <<'END'; -AC00 D7AF Hangul Syllables -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHangu3.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHangu3.pl deleted file mode 100644 index f5498c0..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHangu3.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InHangulCompatibilityJamo} (and fuzzy permutations) -# -# Meaning: Block 'Hangul Compatibility Jamo' -# -return <<'END'; -3130 318F Hangul Compatibility Jamo -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHangul.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHangul.pl deleted file mode 100644 index 7ffa0b2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHangul.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InHangulJamo} (and fuzzy permutations) -# -# Meaning: Block 'Hangul Jamo' -# -return <<'END'; -1100 11FF Hangul Jamo -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHanuno.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHanuno.pl deleted file mode 100644 index 7c4a4ce..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHanuno.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InHanunoo} (and fuzzy permutations) -# -# Meaning: Block 'Hanunoo' -# -return <<'END'; -1720 173F Hanunoo -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHebrew.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHebrew.pl deleted file mode 100644 index 49acd29..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHebrew.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InHebrew} (and fuzzy permutations) -# -# Meaning: Block 'Hebrew' -# -return <<'END'; -0590 05FF Hebrew -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHighPr.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHighPr.pl deleted file mode 100644 index 06ffb3d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHighPr.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InHighPrivateUseSurrogates} (and fuzzy permutations) -# -# Meaning: Block 'High Private Use Surrogates' -# -return <<'END'; -DB80 DBFF High Private Use Surrogates -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHighSu.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHighSu.pl deleted file mode 100644 index e23cdc6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHighSu.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InHighSurrogates} (and fuzzy permutations) -# -# Meaning: Block 'High Surrogates' -# -return <<'END'; -D800 DB7F High Surrogates -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHiraga.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHiraga.pl deleted file mode 100644 index 37f61fd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InHiraga.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InHiragana} (and fuzzy permutations) -# -# Meaning: Block 'Hiragana' -# -return <<'END'; -3040 309F Hiragana -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InIdeogr.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InIdeogr.pl deleted file mode 100644 index 59f490b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InIdeogr.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InIdeographicDescriptionCharacters} (and fuzzy permutations) -# -# Meaning: Block 'Ideographic Description Characters' -# -return <<'END'; -2FF0 2FFF Ideographic Description Characters -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InIpaExt.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InIpaExt.pl deleted file mode 100644 index 0a74354..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InIpaExt.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InIpaExtensions} (and fuzzy permutations) -# -# Meaning: Block 'IPA Extensions' -# -return <<'END'; -0250 02AF IPA Extensions -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKanbun.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKanbun.pl deleted file mode 100644 index c286b59..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKanbun.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InKanbun} (and fuzzy permutations) -# -# Meaning: Block 'Kanbun' -# -return <<'END'; -3190 319F Kanbun -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKangxi.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKangxi.pl deleted file mode 100644 index c3716b3..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKangxi.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InKangxiRadicals} (and fuzzy permutations) -# -# Meaning: Block 'Kangxi Radicals' -# -return <<'END'; -2F00 2FDF Kangxi Radicals -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKannad.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKannad.pl deleted file mode 100644 index b2874ae..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKannad.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InKannada} (and fuzzy permutations) -# -# Meaning: Block 'Kannada' -# -return <<'END'; -0C80 0CFF Kannada -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKatak2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKatak2.pl deleted file mode 100644 index badb508..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKatak2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InKatakanaPhoneticExtensions} (and fuzzy permutations) -# -# Meaning: Block 'Katakana Phonetic Extensions' -# -return <<'END'; -31F0 31FF Katakana Phonetic Extensions -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKataka.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKataka.pl deleted file mode 100644 index 59229b2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKataka.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InKatakana} (and fuzzy permutations) -# -# Meaning: Block 'Katakana' -# -return <<'END'; -30A0 30FF Katakana -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKayahL.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKayahL.pl deleted file mode 100644 index 1932138..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKayahL.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InKayahLi} (and fuzzy permutations) -# -# Meaning: Block 'Kayah Li' -# -return <<'END'; -A900 A92F Kayah Li -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKharos.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKharos.pl deleted file mode 100644 index 6d1da48..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKharos.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InKharoshthi} (and fuzzy permutations) -# -# Meaning: Block 'Kharoshthi' -# -return <<'END'; -10A00 10A5F Kharoshthi -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKhmer.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKhmer.pl deleted file mode 100644 index 966c88b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKhmer.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InKhmer} (and fuzzy permutations) -# -# Meaning: Block 'Khmer' -# -return <<'END'; -1780 17FF Khmer -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKhmerS.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKhmerS.pl deleted file mode 100644 index 31ec409..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InKhmerS.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InKhmerSymbols} (and fuzzy permutations) -# -# Meaning: Block 'Khmer Symbols' -# -return <<'END'; -19E0 19FF Khmer Symbols -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLao.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLao.pl deleted file mode 100644 index f55ac6e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLao.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLao} (and fuzzy permutations) -# -# Meaning: Block 'Lao' -# -return <<'END'; -0E80 0EFF Lao -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin1.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin1.pl deleted file mode 100644 index afe988f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin1.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLatin1Supplement} (and fuzzy permutations) -# -# Meaning: Block 'Latin-1 Supplement' -# -return <<'END'; -0080 00FF Latin-1 Supplement -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin2.pl deleted file mode 100644 index 06fbce6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLatinExtendedA} (and fuzzy permutations) -# -# Meaning: Block 'Latin Extended-A' -# -return <<'END'; -0100 017F Latin Extended-A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin3.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin3.pl deleted file mode 100644 index 1a0b7b3..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin3.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLatinExtendedD} (and fuzzy permutations) -# -# Meaning: Block 'Latin Extended-D' -# -return <<'END'; -A720 A7FF Latin Extended-D -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin4.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin4.pl deleted file mode 100644 index 0c6e40e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin4.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLatinExtendedC} (and fuzzy permutations) -# -# Meaning: Block 'Latin Extended-C' -# -return <<'END'; -2C60 2C7F Latin Extended-C -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin5.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin5.pl deleted file mode 100644 index 11d10a0..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatin5.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLatinExtendedAdditional} (and fuzzy permutations) -# -# Meaning: Block 'Latin Extended Additional' -# -return <<'END'; -1E00 1EFF Latin Extended Additional -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatinE.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatinE.pl deleted file mode 100644 index 9490c6a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLatinE.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLatinExtendedB} (and fuzzy permutations) -# -# Meaning: Block 'Latin Extended-B' -# -return <<'END'; -0180 024F Latin Extended-B -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLepcha.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLepcha.pl deleted file mode 100644 index faeff44..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLepcha.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLepcha} (and fuzzy permutations) -# -# Meaning: Block 'Lepcha' -# -return <<'END'; -1C00 1C4F Lepcha -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLetter.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLetter.pl deleted file mode 100644 index 3e3bce2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLetter.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLetterlikeSymbols} (and fuzzy permutations) -# -# Meaning: Block 'Letterlike Symbols' -# -return <<'END'; -2100 214F Letterlike Symbols -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLimbu.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLimbu.pl deleted file mode 100644 index 87f11d2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLimbu.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLimbu} (and fuzzy permutations) -# -# Meaning: Block 'Limbu' -# -return <<'END'; -1900 194F Limbu -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLinea2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLinea2.pl deleted file mode 100644 index 9227740..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLinea2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLinearBSyllabary} (and fuzzy permutations) -# -# Meaning: Block 'Linear B Syllabary' -# -return <<'END'; -10000 1007F Linear B Syllabary -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLinear.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLinear.pl deleted file mode 100644 index 62fce44..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLinear.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLinearBIdeograms} (and fuzzy permutations) -# -# Meaning: Block 'Linear B Ideograms' -# -return <<'END'; -10080 100FF Linear B Ideograms -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLowSur.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLowSur.pl deleted file mode 100644 index 0037fd6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLowSur.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLowSurrogates} (and fuzzy permutations) -# -# Meaning: Block 'Low Surrogates' -# -return <<'END'; -DC00 DFFF Low Surrogates -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLycian.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLycian.pl deleted file mode 100644 index 2a96ca9..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLycian.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLycian} (and fuzzy permutations) -# -# Meaning: Block 'Lycian' -# -return <<'END'; -10280 1029F Lycian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLydian.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLydian.pl deleted file mode 100644 index 98a965b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InLydian.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InLydian} (and fuzzy permutations) -# -# Meaning: Block 'Lydian' -# -return <<'END'; -10920 1093F Lydian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMahjon.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMahjon.pl deleted file mode 100644 index 19dfec9..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMahjon.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InMahjongTiles} (and fuzzy permutations) -# -# Meaning: Block 'Mahjong Tiles' -# -return <<'END'; -1F000 1F02F Mahjong Tiles -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMalaya.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMalaya.pl deleted file mode 100644 index eb2361f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMalaya.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InMalayalam} (and fuzzy permutations) -# -# Meaning: Block 'Malayalam' -# -return <<'END'; -0D00 0D7F Malayalam -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMathe2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMathe2.pl deleted file mode 100644 index 09c52b3..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMathe2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InMathematicalAlphanumericSymbols} (and fuzzy permutations) -# -# Meaning: Block 'Mathematical Alphanumeric Symbols' -# -return <<'END'; -1D400 1D7FF Mathematical Alphanumeric Symbols -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMathem.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMathem.pl deleted file mode 100644 index 5214abd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMathem.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InMathematicalOperators} (and fuzzy permutations) -# -# Meaning: Block 'Mathematical Operators' -# -return <<'END'; -2200 22FF Mathematical Operators -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMisce2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMisce2.pl deleted file mode 100644 index e56237e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMisce2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InMiscellaneousTechnical} (and fuzzy permutations) -# -# Meaning: Block 'Miscellaneous Technical' -# -return <<'END'; -2300 23FF Miscellaneous Technical -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMisce3.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMisce3.pl deleted file mode 100644 index e9b1dcf..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMisce3.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InMiscellaneousSymbolsAndArrows} (and fuzzy permutations) -# -# Meaning: Block 'Miscellaneous Symbols and Arrows' -# -return <<'END'; -2B00 2BFF Miscellaneous Symbols and Arrows -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMisce4.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMisce4.pl deleted file mode 100644 index c887dc2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMisce4.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InMiscellaneousMathematicalSymbolsA} (and fuzzy permutations) -# -# Meaning: Block 'Miscellaneous Mathematical Symbols-A' -# -return <<'END'; -27C0 27EF Miscellaneous Mathematical Symbols-A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMisce5.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMisce5.pl deleted file mode 100644 index 3f467b0..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMisce5.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InMiscellaneousMathematicalSymbolsB} (and fuzzy permutations) -# -# Meaning: Block 'Miscellaneous Mathematical Symbols-B' -# -return <<'END'; -2980 29FF Miscellaneous Mathematical Symbols-B -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMiscel.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMiscel.pl deleted file mode 100644 index 8063786..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMiscel.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InMiscellaneousSymbols} (and fuzzy permutations) -# -# Meaning: Block 'Miscellaneous Symbols' -# -return <<'END'; -2600 26FF Miscellaneous Symbols -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InModifi.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InModifi.pl deleted file mode 100644 index 8dbbbe7..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InModifi.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InModifierToneLetters} (and fuzzy permutations) -# -# Meaning: Block 'Modifier Tone Letters' -# -return <<'END'; -A700 A71F Modifier Tone Letters -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMongol.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMongol.pl deleted file mode 100644 index 7aa99e2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMongol.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InMongolian} (and fuzzy permutations) -# -# Meaning: Block 'Mongolian' -# -return <<'END'; -1800 18AF Mongolian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMusica.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMusica.pl deleted file mode 100644 index f21aae1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMusica.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InMusicalSymbols} (and fuzzy permutations) -# -# Meaning: Block 'Musical Symbols' -# -return <<'END'; -1D100 1D1FF Musical Symbols -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMyanma.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMyanma.pl deleted file mode 100644 index 3b05fa1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InMyanma.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InMyanmar} (and fuzzy permutations) -# -# Meaning: Block 'Myanmar' -# -return <<'END'; -1000 109F Myanmar -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InNewTai.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InNewTai.pl deleted file mode 100644 index 48daa0c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InNewTai.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InNewTaiLue} (and fuzzy permutations) -# -# Meaning: Block 'New Tai Lue' -# -return <<'END'; -1980 19DF New Tai Lue -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InNko.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InNko.pl deleted file mode 100644 index 9ff919d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InNko.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InNko} (and fuzzy permutations) -# -# Meaning: Block 'NKo' -# -return <<'END'; -07C0 07FF NKo -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InNumber.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InNumber.pl deleted file mode 100644 index cbfd07d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InNumber.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InNumberForms} (and fuzzy permutations) -# -# Meaning: Block 'Number Forms' -# -return <<'END'; -2150 218F Number Forms -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOgham.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOgham.pl deleted file mode 100644 index d57c6bf..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOgham.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InOgham} (and fuzzy permutations) -# -# Meaning: Block 'Ogham' -# -return <<'END'; -1680 169F Ogham -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOlChik.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOlChik.pl deleted file mode 100644 index c3dbc15..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOlChik.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InOlChiki} (and fuzzy permutations) -# -# Meaning: Block 'Ol Chiki' -# -return <<'END'; -1C50 1C7F Ol Chiki -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOldIta.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOldIta.pl deleted file mode 100644 index f653cbd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOldIta.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InOldItalic} (and fuzzy permutations) -# -# Meaning: Block 'Old Italic' -# -return <<'END'; -10300 1032F Old Italic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOldPer.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOldPer.pl deleted file mode 100644 index e3eb06b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOldPer.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InOldPersian} (and fuzzy permutations) -# -# Meaning: Block 'Old Persian' -# -return <<'END'; -103A0 103DF Old Persian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOptica.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOptica.pl deleted file mode 100644 index b007997..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOptica.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InOpticalCharacterRecognition} (and fuzzy permutations) -# -# Meaning: Block 'Optical Character Recognition' -# -return <<'END'; -2440 245F Optical Character Recognition -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOriya.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOriya.pl deleted file mode 100644 index 9ee835c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOriya.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InOriya} (and fuzzy permutations) -# -# Meaning: Block 'Oriya' -# -return <<'END'; -0B00 0B7F Oriya -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOsmany.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOsmany.pl deleted file mode 100644 index 5205e3c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InOsmany.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InOsmanya} (and fuzzy permutations) -# -# Meaning: Block 'Osmanya' -# -return <<'END'; -10480 104AF Osmanya -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhagsP.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhagsP.pl deleted file mode 100644 index 9aac8fc..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhagsP.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InPhagsPa} (and fuzzy permutations) -# -# Meaning: Block 'Phags-pa' -# -return <<'END'; -A840 A87F Phags-pa -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhaist.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhaist.pl deleted file mode 100644 index e452907..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhaist.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InPhaistosDisc} (and fuzzy permutations) -# -# Meaning: Block 'Phaistos Disc' -# -return <<'END'; -101D0 101FF Phaistos Disc -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhoeni.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhoeni.pl deleted file mode 100644 index e33c7d1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhoeni.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InPhoenician} (and fuzzy permutations) -# -# Meaning: Block 'Phoenician' -# -return <<'END'; -10900 1091F Phoenician -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhone2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhone2.pl deleted file mode 100644 index 9dc984d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhone2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InPhoneticExtensionsSupplement} (and fuzzy permutations) -# -# Meaning: Block 'Phonetic Extensions Supplement' -# -return <<'END'; -1D80 1DBF Phonetic Extensions Supplement -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhonet.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhonet.pl deleted file mode 100644 index 969b918..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPhonet.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InPhoneticExtensions} (and fuzzy permutations) -# -# Meaning: Block 'Phonetic Extensions' -# -return <<'END'; -1D00 1D7F Phonetic Extensions -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPrivat.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPrivat.pl deleted file mode 100644 index 519cd7e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InPrivat.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InPrivateUseArea} (and fuzzy permutations) -# -# Meaning: Block 'Private Use Area' -# -return <<'END'; -E000 F8FF Private Use Area -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InRejang.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InRejang.pl deleted file mode 100644 index d54202a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InRejang.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InRejang} (and fuzzy permutations) -# -# Meaning: Block 'Rejang' -# -return <<'END'; -A930 A95F Rejang -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InRunic.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InRunic.pl deleted file mode 100644 index 59803e6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InRunic.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InRunic} (and fuzzy permutations) -# -# Meaning: Block 'Runic' -# -return <<'END'; -16A0 16FF Runic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSauras.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSauras.pl deleted file mode 100644 index 3ad8744..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSauras.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSaurashtra} (and fuzzy permutations) -# -# Meaning: Block 'Saurashtra' -# -return <<'END'; -A880 A8DF Saurashtra -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InShavia.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InShavia.pl deleted file mode 100644 index 308d5a6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InShavia.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InShavian} (and fuzzy permutations) -# -# Meaning: Block 'Shavian' -# -return <<'END'; -10450 1047F Shavian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSinhal.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSinhal.pl deleted file mode 100644 index b608748..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSinhal.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSinhala} (and fuzzy permutations) -# -# Meaning: Block 'Sinhala' -# -return <<'END'; -0D80 0DFF Sinhala -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSmallF.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSmallF.pl deleted file mode 100644 index 0da273b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSmallF.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSmallFormVariants} (and fuzzy permutations) -# -# Meaning: Block 'Small Form Variants' -# -return <<'END'; -FE50 FE6F Small Form Variants -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSpacin.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSpacin.pl deleted file mode 100644 index 5835841..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSpacin.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSpacingModifierLetters} (and fuzzy permutations) -# -# Meaning: Block 'Spacing Modifier Letters' -# -return <<'END'; -02B0 02FF Spacing Modifier Letters -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSpecia.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSpecia.pl deleted file mode 100644 index 47a5595..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSpecia.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSpecials} (and fuzzy permutations) -# -# Meaning: Block 'Specials' -# -return <<'END'; -FFF0 FFFF Specials -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSundan.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSundan.pl deleted file mode 100644 index a417a0a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSundan.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSundanese} (and fuzzy permutations) -# -# Meaning: Block 'Sundanese' -# -return <<'END'; -1B80 1BBF Sundanese -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSupers.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSupers.pl deleted file mode 100644 index 0893277..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSupers.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSuperscriptsAndSubscripts} (and fuzzy permutations) -# -# Meaning: Block 'Superscripts and Subscripts' -# -return <<'END'; -2070 209F Superscripts and Subscripts -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl2.pl deleted file mode 100644 index 4e13507..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSupplementalArrowsA} (and fuzzy permutations) -# -# Meaning: Block 'Supplemental Arrows-A' -# -return <<'END'; -27F0 27FF Supplemental Arrows-A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl3.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl3.pl deleted file mode 100644 index 9d3393a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl3.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSupplementalPunctuation} (and fuzzy permutations) -# -# Meaning: Block 'Supplemental Punctuation' -# -return <<'END'; -2E00 2E7F Supplemental Punctuation -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl4.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl4.pl deleted file mode 100644 index 78c2abf..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl4.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSupplementaryPrivateUseAreaA} (and fuzzy permutations) -# -# Meaning: Block 'Supplementary Private Use Area-A' -# -return <<'END'; -F0000 FFFFF Supplementary Private Use Area-A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl5.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl5.pl deleted file mode 100644 index 1f4b9be..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl5.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSupplementaryPrivateUseAreaB} (and fuzzy permutations) -# -# Meaning: Block 'Supplementary Private Use Area-B' -# -return <<'END'; -100000 10FFFF Supplementary Private Use Area-B -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl6.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl6.pl deleted file mode 100644 index 6447836..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSuppl6.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSupplementalMathematicalOperators} (and fuzzy permutations) -# -# Meaning: Block 'Supplemental Mathematical Operators' -# -return <<'END'; -2A00 2AFF Supplemental Mathematical Operators -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSupple.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSupple.pl deleted file mode 100644 index 02cdc35..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSupple.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSupplementalArrowsB} (and fuzzy permutations) -# -# Meaning: Block 'Supplemental Arrows-B' -# -return <<'END'; -2900 297F Supplemental Arrows-B -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSyloti.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSyloti.pl deleted file mode 100644 index 67786af..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSyloti.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSylotiNagri} (and fuzzy permutations) -# -# Meaning: Block 'Syloti Nagri' -# -return <<'END'; -A800 A82F Syloti Nagri -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSyriac.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSyriac.pl deleted file mode 100644 index 9449c48..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InSyriac.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InSyriac} (and fuzzy permutations) -# -# Meaning: Block 'Syriac' -# -return <<'END'; -0700 074F Syriac -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTagalo.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTagalo.pl deleted file mode 100644 index 6eaa14e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTagalo.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InTagalog} (and fuzzy permutations) -# -# Meaning: Block 'Tagalog' -# -return <<'END'; -1700 171F Tagalog -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTagban.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTagban.pl deleted file mode 100644 index 003506c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTagban.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InTagbanwa} (and fuzzy permutations) -# -# Meaning: Block 'Tagbanwa' -# -return <<'END'; -1760 177F Tagbanwa -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTags.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTags.pl deleted file mode 100644 index 8cbced6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTags.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InTags} (and fuzzy permutations) -# -# Meaning: Block 'Tags' -# -return <<'END'; -E0000 E007F Tags -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTaiLe.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTaiLe.pl deleted file mode 100644 index a46193f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTaiLe.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InTaiLe} (and fuzzy permutations) -# -# Meaning: Block 'Tai Le' -# -return <<'END'; -1950 197F Tai Le -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTaiXua.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTaiXua.pl deleted file mode 100644 index 14d07e3..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTaiXua.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InTaiXuanJingSymbols} (and fuzzy permutations) -# -# Meaning: Block 'Tai Xuan Jing Symbols' -# -return <<'END'; -1D300 1D35F Tai Xuan Jing Symbols -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTamil.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTamil.pl deleted file mode 100644 index cc5b18a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTamil.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InTamil} (and fuzzy permutations) -# -# Meaning: Block 'Tamil' -# -return <<'END'; -0B80 0BFF Tamil -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTelugu.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTelugu.pl deleted file mode 100644 index e0fd3e5..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTelugu.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InTelugu} (and fuzzy permutations) -# -# Meaning: Block 'Telugu' -# -return <<'END'; -0C00 0C7F Telugu -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InThaana.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InThaana.pl deleted file mode 100644 index ead00f9..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InThaana.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InThaana} (and fuzzy permutations) -# -# Meaning: Block 'Thaana' -# -return <<'END'; -0780 07BF Thaana -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InThai.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InThai.pl deleted file mode 100644 index 0fe69d4..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InThai.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InThai} (and fuzzy permutations) -# -# Meaning: Block 'Thai' -# -return <<'END'; -0E00 0E7F Thai -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTibeta.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTibeta.pl deleted file mode 100644 index e24ec80..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTibeta.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InTibetan} (and fuzzy permutations) -# -# Meaning: Block 'Tibetan' -# -return <<'END'; -0F00 0FFF Tibetan -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTifina.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTifina.pl deleted file mode 100644 index 5257a16..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InTifina.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InTifinagh} (and fuzzy permutations) -# -# Meaning: Block 'Tifinagh' -# -return <<'END'; -2D30 2D7F Tifinagh -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InUgarit.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InUgarit.pl deleted file mode 100644 index 81195ee..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InUgarit.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InUgaritic} (and fuzzy permutations) -# -# Meaning: Block 'Ugaritic' -# -return <<'END'; -10380 1039F Ugaritic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InUnifie.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InUnifie.pl deleted file mode 100644 index df3b93d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InUnifie.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InUnifiedCanadianAboriginalSyllabics} (and fuzzy permutations) -# -# Meaning: Block 'Unified Canadian Aboriginal Syllabics' -# -return <<'END'; -1400 167F Unified Canadian Aboriginal Syllabics -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InVai.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InVai.pl deleted file mode 100644 index 8f6296b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InVai.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InVai} (and fuzzy permutations) -# -# Meaning: Block 'Vai' -# -return <<'END'; -A500 A63F Vai -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InVaria2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InVaria2.pl deleted file mode 100644 index 42e6c13..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InVaria2.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InVariationSelectorsSupplement} (and fuzzy permutations) -# -# Meaning: Block 'Variation Selectors Supplement' -# -return <<'END'; -E0100 E01EF Variation Selectors Supplement -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InVariat.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InVariat.pl deleted file mode 100644 index 9d00f9a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InVariat.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InVariationSelectors} (and fuzzy permutations) -# -# Meaning: Block 'Variation Selectors' -# -return <<'END'; -FE00 FE0F Variation Selectors -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InVertic.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InVertic.pl deleted file mode 100644 index a3c9eda..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InVertic.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InVerticalForms} (and fuzzy permutations) -# -# Meaning: Block 'Vertical Forms' -# -return <<'END'; -FE10 FE1F Vertical Forms -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InYiRadi.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InYiRadi.pl deleted file mode 100644 index 4cfcc81..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InYiRadi.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InYiRadicals} (and fuzzy permutations) -# -# Meaning: Block 'Yi Radicals' -# -return <<'END'; -A490 A4CF Yi Radicals -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InYiSyll.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InYiSyll.pl deleted file mode 100644 index 9e7193a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InYiSyll.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InYiSyllables} (and fuzzy permutations) -# -# Meaning: Block 'Yi Syllables' -# -return <<'END'; -A000 A48F Yi Syllables -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InYijing.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InYijing.pl deleted file mode 100644 index c634ce3..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/InYijing.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{InYijingHexagramSymbols} (and fuzzy permutations) -# -# Meaning: Block 'Yijing Hexagram Symbols' -# -return <<'END'; -4DC0 4DFF Yijing Hexagram Symbols -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/JoinC.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/JoinC.pl deleted file mode 100644 index 58bba7f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/JoinC.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Join_Control' -# -return <<'END'; -200C 200D Join_Control -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/JoinCont.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/JoinCont.pl deleted file mode 100644 index dfd5f5a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/JoinCont.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{JoinControl} (and fuzzy permutations) -# -# Meaning: Extended property 'Join_Control' -# -return <<'END'; -200C 200D Join_Control -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Kana.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Kana.pl deleted file mode 100644 index 954c56b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Kana.pl +++ /dev/null @@ -1,23 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Katakana} (and fuzzy permutations) -# -# Meaning: Script 'Katakana' -# -return <<'END'; -30A1 30FA Katakana -30FD 30FF Katakana -31F0 31FF Katakana -32D0 32FE Katakana -3300 3357 Katakana -FF66 FF6F Katakana -FF71 FF9D Katakana -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/KayahLi.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/KayahLi.pl deleted file mode 100644 index 071fadd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/KayahLi.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{KayahLi} (and fuzzy permutations) -# -# Meaning: Script 'Kayah_Li' -# -return <<'END'; -A900 A92F Kayah_Li -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Khar.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Khar.pl deleted file mode 100644 index 66a9766..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Khar.pl +++ /dev/null @@ -1,24 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Kharoshthi} (and fuzzy permutations) -# -# Meaning: Script 'Kharoshthi' -# -return <<'END'; -10A00 10A03 Kharoshthi -10A05 10A06 Kharoshthi -10A0C 10A13 Kharoshthi -10A15 10A17 Kharoshthi -10A19 10A33 Kharoshthi -10A38 10A3A Kharoshthi -10A3F 10A47 Kharoshthi -10A50 10A58 Kharoshthi -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Khmr.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Khmr.pl deleted file mode 100644 index d464060..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Khmr.pl +++ /dev/null @@ -1,20 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Khmer} (and fuzzy permutations) -# -# Meaning: Script 'Khmer' -# -return <<'END'; -1780 17DD Khmer -17E0 17E9 Khmer -17F0 17F9 Khmer -19E0 19FF Khmer -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Knda.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Knda.pl deleted file mode 100644 index cf08840..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Knda.pl +++ /dev/null @@ -1,29 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Kannada} (and fuzzy permutations) -# -# Meaning: Script 'Kannada' -# -return <<'END'; -0C82 0C83 Kannada -0C85 0C8C Kannada -0C8E 0C90 Kannada -0C92 0CA8 Kannada -0CAA 0CB3 Kannada -0CB5 0CB9 Kannada -0CBC 0CC4 Kannada -0CC6 0CC8 Kannada -0CCA 0CCD Kannada -0CD5 0CD6 Kannada -0CDE Kannada -0CE0 0CE3 Kannada -0CE6 0CEF Kannada -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/L.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/L.pl deleted file mode 100644 index 0733558..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/L.pl +++ /dev/null @@ -1,407 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{L} -# \p{L} (and fuzzy permutations) -# -# Meaning: Major Category 'L' -# -return <<'END'; -0041 005A -0061 007A -00AA -00B5 -00BA -00C0 00D6 -00D8 00F6 -00F8 02C1 -02C6 02D1 -02E0 02E4 -02EC -02EE -0370 0374 -0376 0377 -037A 037D -0386 -0388 038A -038C -038E 03A1 -03A3 03F5 -03F7 0481 -048A 0523 -0531 0556 -0559 -0561 0587 -05D0 05EA -05F0 05F2 -0621 064A -066E 066F -0671 06D3 -06D5 -06E5 06E6 -06EE 06EF -06FA 06FC -06FF -0710 -0712 072F -074D 07A5 -07B1 -07CA 07EA -07F4 07F5 -07FA -0904 0939 -093D -0950 -0958 0961 -0971 0972 -097B 097F -0985 098C -098F 0990 -0993 09A8 -09AA 09B0 -09B2 -09B6 09B9 -09BD -09CE -09DC 09DD -09DF 09E1 -09F0 09F1 -0A05 0A0A -0A0F 0A10 -0A13 0A28 -0A2A 0A30 -0A32 0A33 -0A35 0A36 -0A38 0A39 -0A59 0A5C -0A5E -0A72 0A74 -0A85 0A8D -0A8F 0A91 -0A93 0AA8 -0AAA 0AB0 -0AB2 0AB3 -0AB5 0AB9 -0ABD -0AD0 -0AE0 0AE1 -0B05 0B0C -0B0F 0B10 -0B13 0B28 -0B2A 0B30 -0B32 0B33 -0B35 0B39 -0B3D -0B5C 0B5D -0B5F 0B61 -0B71 -0B83 -0B85 0B8A -0B8E 0B90 -0B92 0B95 -0B99 0B9A -0B9C -0B9E 0B9F -0BA3 0BA4 -0BA8 0BAA -0BAE 0BB9 -0BD0 -0C05 0C0C -0C0E 0C10 -0C12 0C28 -0C2A 0C33 -0C35 0C39 -0C3D -0C58 0C59 -0C60 0C61 -0C85 0C8C -0C8E 0C90 -0C92 0CA8 -0CAA 0CB3 -0CB5 0CB9 -0CBD -0CDE -0CE0 0CE1 -0D05 0D0C -0D0E 0D10 -0D12 0D28 -0D2A 0D39 -0D3D -0D60 0D61 -0D7A 0D7F -0D85 0D96 -0D9A 0DB1 -0DB3 0DBB -0DBD -0DC0 0DC6 -0E01 0E30 -0E32 0E33 -0E40 0E46 -0E81 0E82 -0E84 -0E87 0E88 -0E8A -0E8D -0E94 0E97 -0E99 0E9F -0EA1 0EA3 -0EA5 -0EA7 -0EAA 0EAB -0EAD 0EB0 -0EB2 0EB3 -0EBD -0EC0 0EC4 -0EC6 -0EDC 0EDD -0F00 -0F40 0F47 -0F49 0F6C -0F88 0F8B -1000 102A -103F -1050 1055 -105A 105D -1061 -1065 1066 -106E 1070 -1075 1081 -108E -10A0 10C5 -10D0 10FA -10FC -1100 1159 -115F 11A2 -11A8 11F9 -1200 1248 -124A 124D -1250 1256 -1258 -125A 125D -1260 1288 -128A 128D -1290 12B0 -12B2 12B5 -12B8 12BE -12C0 -12C2 12C5 -12C8 12D6 -12D8 1310 -1312 1315 -1318 135A -1380 138F -13A0 13F4 -1401 166C -166F 1676 -1681 169A -16A0 16EA -1700 170C -170E 1711 -1720 1731 -1740 1751 -1760 176C -176E 1770 -1780 17B3 -17D7 -17DC -1820 1877 -1880 18A8 -18AA -1900 191C -1950 196D -1970 1974 -1980 19A9 -19C1 19C7 -1A00 1A16 -1B05 1B33 -1B45 1B4B -1B83 1BA0 -1BAE 1BAF -1C00 1C23 -1C4D 1C4F -1C5A 1C7D -1D00 1DBF -1E00 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FBC -1FBE -1FC2 1FC4 -1FC6 1FCC -1FD0 1FD3 -1FD6 1FDB -1FE0 1FEC -1FF2 1FF4 -1FF6 1FFC -2071 -207F -2090 2094 -2102 -2107 -210A 2113 -2115 -2119 211D -2124 -2126 -2128 -212A 212D -212F 2139 -213C 213F -2145 2149 -214E -2183 2184 -2C00 2C2E -2C30 2C5E -2C60 2C6F -2C71 2C7D -2C80 2CE4 -2D00 2D25 -2D30 2D65 -2D6F -2D80 2D96 -2DA0 2DA6 -2DA8 2DAE -2DB0 2DB6 -2DB8 2DBE -2DC0 2DC6 -2DC8 2DCE -2DD0 2DD6 -2DD8 2DDE -2E2F -3005 3006 -3031 3035 -303B 303C -3041 3096 -309D 309F -30A1 30FA -30FC 30FF -3105 312D -3131 318E -31A0 31B7 -31F0 31FF -3400 4DB5 -4E00 9FC3 -A000 A48C -A500 A60C -A610 A61F -A62A A62B -A640 A65F -A662 A66E -A67F A697 -A717 A71F -A722 A788 -A78B A78C -A7FB A801 -A803 A805 -A807 A80A -A80C A822 -A840 A873 -A882 A8B3 -A90A A925 -A930 A946 -AA00 AA28 -AA40 AA42 -AA44 AA4B -AC00 D7A3 -F900 FA2D -FA30 FA6A -FA70 FAD9 -FB00 FB06 -FB13 FB17 -FB1D -FB1F FB28 -FB2A FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FBB1 -FBD3 FD3D -FD50 FD8F -FD92 FDC7 -FDF0 FDFB -FE70 FE74 -FE76 FEFC -FF21 FF3A -FF41 FF5A -FF66 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -10000 1000B -1000D 10026 -10028 1003A -1003C 1003D -1003F 1004D -10050 1005D -10080 100FA -10280 1029C -102A0 102D0 -10300 1031E -10330 10340 -10342 10349 -10380 1039D -103A0 103C3 -103C8 103CF -10400 1049D -10800 10805 -10808 -1080A 10835 -10837 10838 -1083C -1083F -10900 10915 -10920 10939 -10A00 -10A10 10A13 -10A15 10A17 -10A19 10A33 -12000 1236E -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D6C0 -1D6C2 1D6DA -1D6DC 1D6FA -1D6FC 1D714 -1D716 1D734 -1D736 1D74E -1D750 1D76E -1D770 1D788 -1D78A 1D7A8 -1D7AA 1D7C2 -1D7C4 1D7CB -20000 2A6D6 -2F800 2FA1D -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/LC.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/LC.pl deleted file mode 100644 index 3a09443..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/LC.pl +++ /dev/null @@ -1,127 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{LC} -# \p{LC} (and fuzzy permutations) -# -# Meaning: [\p{Ll}\p{Lu}\p{Lt}] -# -return <<'END'; -0041 005A -0061 007A -00AA -00B5 -00BA -00C0 00D6 -00D8 00F6 -00F8 01BA -01BC 01BF -01C4 0293 -0295 02AF -0370 0373 -0376 0377 -037B 037D -0386 -0388 038A -038C -038E 03A1 -03A3 03F5 -03F7 0481 -048A 0523 -0531 0556 -0561 0587 -10A0 10C5 -1D00 1D2B -1D62 1D77 -1D79 1D9A -1E00 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FBC -1FBE -1FC2 1FC4 -1FC6 1FCC -1FD0 1FD3 -1FD6 1FDB -1FE0 1FEC -1FF2 1FF4 -1FF6 1FFC -2071 -207F -2102 -2107 -210A 2113 -2115 -2119 211D -2124 -2126 -2128 -212A 212D -212F 2134 -2139 -213C 213F -2145 2149 -214E -2183 2184 -2C00 2C2E -2C30 2C5E -2C60 2C6F -2C71 2C7C -2C80 2CE4 -2D00 2D25 -A640 A65F -A662 A66D -A680 A697 -A722 A76F -A771 A787 -A78B A78C -FB00 FB06 -FB13 FB17 -FF21 FF3A -FF41 FF5A -10400 1044F -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D6C0 -1D6C2 1D6DA -1D6DC 1D6FA -1D6FC 1D714 -1D716 1D734 -1D736 1D74E -1D750 1D76E -1D770 1D788 -1D78A 1D7A8 -1D7AA 1D7C2 -1D7C4 1D7CB -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/LOE.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/LOE.pl deleted file mode 100644 index 7afc74e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/LOE.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Logical_Order_Exception' -# -return <<'END'; -0E40 0E44 Logical_Order_Exception -0EC0 0EC4 Logical_Order_Exception -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Laoo.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Laoo.pl deleted file mode 100644 index d06b59b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Laoo.pl +++ /dev/null @@ -1,34 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Lao} (and fuzzy permutations) -# -# Meaning: Script 'Lao' -# -return <<'END'; -0E81 0E82 Lao -0E84 Lao -0E87 0E88 Lao -0E8A Lao -0E8D Lao -0E94 0E97 Lao -0E99 0E9F Lao -0EA1 0EA3 Lao -0EA5 Lao -0EA7 Lao -0EAA 0EAB Lao -0EAD 0EB9 Lao -0EBB 0EBD Lao -0EC0 0EC4 Lao -0EC6 Lao -0EC8 0ECD Lao -0ED0 0ED9 Lao -0EDC 0EDD Lao -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Latn.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Latn.pl deleted file mode 100644 index f1ac1e3..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Latn.pl +++ /dev/null @@ -1,45 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Latin} (and fuzzy permutations) -# -# Meaning: Script 'Latin' -# -return <<'END'; -0041 005A Latin -0061 007A Latin -00AA Latin -00BA Latin -00C0 00D6 Latin -00D8 00F6 Latin -00F8 02B8 Latin -02E0 02E4 Latin -1D00 1D25 Latin -1D2C 1D5C Latin -1D62 1D65 Latin -1D6B 1D77 Latin -1D79 1DBE Latin -1E00 1EFF Latin -2071 Latin -207F Latin -2090 2094 Latin -212A 212B Latin -2132 Latin -214E Latin -2160 2188 Latin -2C60 2C6F Latin -2C71 2C7D Latin -A722 A787 Latin -A78B A78C Latin -A7FB A7FF Latin -FB00 FB06 Latin -FF21 FF3A Latin -FF41 FF5A Latin -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lepc.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lepc.pl deleted file mode 100644 index a4057f3..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lepc.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Lepcha} (and fuzzy permutations) -# -# Meaning: Script 'Lepcha' -# -return <<'END'; -1C00 1C37 Lepcha -1C3B 1C49 Lepcha -1C4D 1C4F Lepcha -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Limb.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Limb.pl deleted file mode 100644 index f82a4fa..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Limb.pl +++ /dev/null @@ -1,21 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Limbu} (and fuzzy permutations) -# -# Meaning: Script 'Limbu' -# -return <<'END'; -1900 191C Limbu -1920 192B Limbu -1930 193B Limbu -1940 Limbu -1944 194F Limbu -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/LinearB.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/LinearB.pl deleted file mode 100644 index 91fd097..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/LinearB.pl +++ /dev/null @@ -1,23 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{LinearB} (and fuzzy permutations) -# -# Meaning: Script 'Linear_B' -# -return <<'END'; -10000 1000B Linear_B -1000D 10026 Linear_B -10028 1003A Linear_B -1003C 1003D Linear_B -1003F 1004D Linear_B -10050 1005D Linear_B -10080 100FA Linear_B -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ll.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ll.pl deleted file mode 100644 index ba8270a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ll.pl +++ /dev/null @@ -1,615 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Ll} -# \p{Ll} (and fuzzy permutations) -# -# Meaning: General Category 'Ll' -# -return <<'END'; -0061 007A -00AA -00B5 -00BA -00DF 00F6 -00F8 00FF -0101 -0103 -0105 -0107 -0109 -010B -010D -010F -0111 -0113 -0115 -0117 -0119 -011B -011D -011F -0121 -0123 -0125 -0127 -0129 -012B -012D -012F -0131 -0133 -0135 -0137 0138 -013A -013C -013E -0140 -0142 -0144 -0146 -0148 0149 -014B -014D -014F -0151 -0153 -0155 -0157 -0159 -015B -015D -015F -0161 -0163 -0165 -0167 -0169 -016B -016D -016F -0171 -0173 -0175 -0177 -017A -017C -017E 0180 -0183 -0185 -0188 -018C 018D -0192 -0195 -0199 019B -019E -01A1 -01A3 -01A5 -01A8 -01AA 01AB -01AD -01B0 -01B4 -01B6 -01B9 01BA -01BD 01BF -01C6 -01C9 -01CC -01CE -01D0 -01D2 -01D4 -01D6 -01D8 -01DA -01DC 01DD -01DF -01E1 -01E3 -01E5 -01E7 -01E9 -01EB -01ED -01EF 01F0 -01F3 -01F5 -01F9 -01FB -01FD -01FF -0201 -0203 -0205 -0207 -0209 -020B -020D -020F -0211 -0213 -0215 -0217 -0219 -021B -021D -021F -0221 -0223 -0225 -0227 -0229 -022B -022D -022F -0231 -0233 0239 -023C -023F 0240 -0242 -0247 -0249 -024B -024D -024F 0293 -0295 02AF -0371 -0373 -0377 -037B 037D -0390 -03AC 03CE -03D0 03D1 -03D5 03D7 -03D9 -03DB -03DD -03DF -03E1 -03E3 -03E5 -03E7 -03E9 -03EB -03ED -03EF 03F3 -03F5 -03F8 -03FB 03FC -0430 045F -0461 -0463 -0465 -0467 -0469 -046B -046D -046F -0471 -0473 -0475 -0477 -0479 -047B -047D -047F -0481 -048B -048D -048F -0491 -0493 -0495 -0497 -0499 -049B -049D -049F -04A1 -04A3 -04A5 -04A7 -04A9 -04AB -04AD -04AF -04B1 -04B3 -04B5 -04B7 -04B9 -04BB -04BD -04BF -04C2 -04C4 -04C6 -04C8 -04CA -04CC -04CE 04CF -04D1 -04D3 -04D5 -04D7 -04D9 -04DB -04DD -04DF -04E1 -04E3 -04E5 -04E7 -04E9 -04EB -04ED -04EF -04F1 -04F3 -04F5 -04F7 -04F9 -04FB -04FD -04FF -0501 -0503 -0505 -0507 -0509 -050B -050D -050F -0511 -0513 -0515 -0517 -0519 -051B -051D -051F -0521 -0523 -0561 0587 -1D00 1D2B -1D62 1D77 -1D79 1D9A -1E01 -1E03 -1E05 -1E07 -1E09 -1E0B -1E0D -1E0F -1E11 -1E13 -1E15 -1E17 -1E19 -1E1B -1E1D -1E1F -1E21 -1E23 -1E25 -1E27 -1E29 -1E2B -1E2D -1E2F -1E31 -1E33 -1E35 -1E37 -1E39 -1E3B -1E3D -1E3F -1E41 -1E43 -1E45 -1E47 -1E49 -1E4B -1E4D -1E4F -1E51 -1E53 -1E55 -1E57 -1E59 -1E5B -1E5D -1E5F -1E61 -1E63 -1E65 -1E67 -1E69 -1E6B -1E6D -1E6F -1E71 -1E73 -1E75 -1E77 -1E79 -1E7B -1E7D -1E7F -1E81 -1E83 -1E85 -1E87 -1E89 -1E8B -1E8D -1E8F -1E91 -1E93 -1E95 1E9D -1E9F -1EA1 -1EA3 -1EA5 -1EA7 -1EA9 -1EAB -1EAD -1EAF -1EB1 -1EB3 -1EB5 -1EB7 -1EB9 -1EBB -1EBD -1EBF -1EC1 -1EC3 -1EC5 -1EC7 -1EC9 -1ECB -1ECD -1ECF -1ED1 -1ED3 -1ED5 -1ED7 -1ED9 -1EDB -1EDD -1EDF -1EE1 -1EE3 -1EE5 -1EE7 -1EE9 -1EEB -1EED -1EEF -1EF1 -1EF3 -1EF5 -1EF7 -1EF9 -1EFB -1EFD -1EFF 1F07 -1F10 1F15 -1F20 1F27 -1F30 1F37 -1F40 1F45 -1F50 1F57 -1F60 1F67 -1F70 1F7D -1F80 1F87 -1F90 1F97 -1FA0 1FA7 -1FB0 1FB4 -1FB6 1FB7 -1FBE -1FC2 1FC4 -1FC6 1FC7 -1FD0 1FD3 -1FD6 1FD7 -1FE0 1FE7 -1FF2 1FF4 -1FF6 1FF7 -2071 -207F -210A -210E 210F -2113 -212F -2134 -2139 -213C 213D -2146 2149 -214E -2184 -2C30 2C5E -2C61 -2C65 2C66 -2C68 -2C6A -2C6C -2C71 -2C73 2C74 -2C76 2C7C -2C81 -2C83 -2C85 -2C87 -2C89 -2C8B -2C8D -2C8F -2C91 -2C93 -2C95 -2C97 -2C99 -2C9B -2C9D -2C9F -2CA1 -2CA3 -2CA5 -2CA7 -2CA9 -2CAB -2CAD -2CAF -2CB1 -2CB3 -2CB5 -2CB7 -2CB9 -2CBB -2CBD -2CBF -2CC1 -2CC3 -2CC5 -2CC7 -2CC9 -2CCB -2CCD -2CCF -2CD1 -2CD3 -2CD5 -2CD7 -2CD9 -2CDB -2CDD -2CDF -2CE1 -2CE3 2CE4 -2D00 2D25 -A641 -A643 -A645 -A647 -A649 -A64B -A64D -A64F -A651 -A653 -A655 -A657 -A659 -A65B -A65D -A65F -A663 -A665 -A667 -A669 -A66B -A66D -A681 -A683 -A685 -A687 -A689 -A68B -A68D -A68F -A691 -A693 -A695 -A697 -A723 -A725 -A727 -A729 -A72B -A72D -A72F A731 -A733 -A735 -A737 -A739 -A73B -A73D -A73F -A741 -A743 -A745 -A747 -A749 -A74B -A74D -A74F -A751 -A753 -A755 -A757 -A759 -A75B -A75D -A75F -A761 -A763 -A765 -A767 -A769 -A76B -A76D -A76F -A771 A778 -A77A -A77C -A77F -A781 -A783 -A785 -A787 -A78C -FB00 FB06 -FB13 FB17 -FF41 FF5A -10428 1044F -1D41A 1D433 -1D44E 1D454 -1D456 1D467 -1D482 1D49B -1D4B6 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D4CF -1D4EA 1D503 -1D51E 1D537 -1D552 1D56B -1D586 1D59F -1D5BA 1D5D3 -1D5EE 1D607 -1D622 1D63B -1D656 1D66F -1D68A 1D6A5 -1D6C2 1D6DA -1D6DC 1D6E1 -1D6FC 1D714 -1D716 1D71B -1D736 1D74E -1D750 1D755 -1D770 1D788 -1D78A 1D78F -1D7AA 1D7C2 -1D7C4 1D7C9 -1D7CB -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lm.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lm.pl deleted file mode 100644 index caad8ea..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lm.pl +++ /dev/null @@ -1,56 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Lm} -# \p{Lm} (and fuzzy permutations) -# -# Meaning: General Category 'Lm' -# -return <<'END'; -02B0 02C1 -02C6 02D1 -02E0 02E4 -02EC -02EE -0374 -037A -0559 -0640 -06E5 06E6 -07F4 07F5 -07FA -0971 -0E46 -0EC6 -10FC -17D7 -1843 -1C78 1C7D -1D2C 1D61 -1D78 -1D9B 1DBF -2090 2094 -2C7D -2D6F -2E2F -3005 -3031 3035 -303B -309D 309E -30FC 30FE -A015 -A60C -A67F -A717 A71F -A770 -A788 -FF70 -FF9E FF9F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lo.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lo.pl deleted file mode 100644 index ae5c41f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lo.pl +++ /dev/null @@ -1,299 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Lo} -# \p{Lo} (and fuzzy permutations) -# -# Meaning: General Category 'Lo' -# -return <<'END'; -01BB -01C0 01C3 -0294 -05D0 05EA -05F0 05F2 -0621 063F -0641 064A -066E 066F -0671 06D3 -06D5 -06EE 06EF -06FA 06FC -06FF -0710 -0712 072F -074D 07A5 -07B1 -07CA 07EA -0904 0939 -093D -0950 -0958 0961 -0972 -097B 097F -0985 098C -098F 0990 -0993 09A8 -09AA 09B0 -09B2 -09B6 09B9 -09BD -09CE -09DC 09DD -09DF 09E1 -09F0 09F1 -0A05 0A0A -0A0F 0A10 -0A13 0A28 -0A2A 0A30 -0A32 0A33 -0A35 0A36 -0A38 0A39 -0A59 0A5C -0A5E -0A72 0A74 -0A85 0A8D -0A8F 0A91 -0A93 0AA8 -0AAA 0AB0 -0AB2 0AB3 -0AB5 0AB9 -0ABD -0AD0 -0AE0 0AE1 -0B05 0B0C -0B0F 0B10 -0B13 0B28 -0B2A 0B30 -0B32 0B33 -0B35 0B39 -0B3D -0B5C 0B5D -0B5F 0B61 -0B71 -0B83 -0B85 0B8A -0B8E 0B90 -0B92 0B95 -0B99 0B9A -0B9C -0B9E 0B9F -0BA3 0BA4 -0BA8 0BAA -0BAE 0BB9 -0BD0 -0C05 0C0C -0C0E 0C10 -0C12 0C28 -0C2A 0C33 -0C35 0C39 -0C3D -0C58 0C59 -0C60 0C61 -0C85 0C8C -0C8E 0C90 -0C92 0CA8 -0CAA 0CB3 -0CB5 0CB9 -0CBD -0CDE -0CE0 0CE1 -0D05 0D0C -0D0E 0D10 -0D12 0D28 -0D2A 0D39 -0D3D -0D60 0D61 -0D7A 0D7F -0D85 0D96 -0D9A 0DB1 -0DB3 0DBB -0DBD -0DC0 0DC6 -0E01 0E30 -0E32 0E33 -0E40 0E45 -0E81 0E82 -0E84 -0E87 0E88 -0E8A -0E8D -0E94 0E97 -0E99 0E9F -0EA1 0EA3 -0EA5 -0EA7 -0EAA 0EAB -0EAD 0EB0 -0EB2 0EB3 -0EBD -0EC0 0EC4 -0EDC 0EDD -0F00 -0F40 0F47 -0F49 0F6C -0F88 0F8B -1000 102A -103F -1050 1055 -105A 105D -1061 -1065 1066 -106E 1070 -1075 1081 -108E -10D0 10FA -1100 1159 -115F 11A2 -11A8 11F9 -1200 1248 -124A 124D -1250 1256 -1258 -125A 125D -1260 1288 -128A 128D -1290 12B0 -12B2 12B5 -12B8 12BE -12C0 -12C2 12C5 -12C8 12D6 -12D8 1310 -1312 1315 -1318 135A -1380 138F -13A0 13F4 -1401 166C -166F 1676 -1681 169A -16A0 16EA -1700 170C -170E 1711 -1720 1731 -1740 1751 -1760 176C -176E 1770 -1780 17B3 -17DC -1820 1842 -1844 1877 -1880 18A8 -18AA -1900 191C -1950 196D -1970 1974 -1980 19A9 -19C1 19C7 -1A00 1A16 -1B05 1B33 -1B45 1B4B -1B83 1BA0 -1BAE 1BAF -1C00 1C23 -1C4D 1C4F -1C5A 1C77 -2135 2138 -2D30 2D65 -2D80 2D96 -2DA0 2DA6 -2DA8 2DAE -2DB0 2DB6 -2DB8 2DBE -2DC0 2DC6 -2DC8 2DCE -2DD0 2DD6 -2DD8 2DDE -3006 -303C -3041 3096 -309F -30A1 30FA -30FF -3105 312D -3131 318E -31A0 31B7 -31F0 31FF -3400 4DB5 -4E00 9FC3 -A000 A014 -A016 A48C -A500 A60B -A610 A61F -A62A A62B -A66E -A7FB A801 -A803 A805 -A807 A80A -A80C A822 -A840 A873 -A882 A8B3 -A90A A925 -A930 A946 -AA00 AA28 -AA40 AA42 -AA44 AA4B -AC00 D7A3 -F900 FA2D -FA30 FA6A -FA70 FAD9 -FB1D -FB1F FB28 -FB2A FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FBB1 -FBD3 FD3D -FD50 FD8F -FD92 FDC7 -FDF0 FDFB -FE70 FE74 -FE76 FEFC -FF66 FF6F -FF71 FF9D -FFA0 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -10000 1000B -1000D 10026 -10028 1003A -1003C 1003D -1003F 1004D -10050 1005D -10080 100FA -10280 1029C -102A0 102D0 -10300 1031E -10330 10340 -10342 10349 -10380 1039D -103A0 103C3 -103C8 103CF -10450 1049D -10800 10805 -10808 -1080A 10835 -10837 10838 -1083C -1083F -10900 10915 -10920 10939 -10A00 -10A10 10A13 -10A15 10A17 -10A19 10A33 -12000 1236E -20000 2A6D6 -2F800 2FA1D -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/LogicalO.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/LogicalO.pl deleted file mode 100644 index 972052a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/LogicalO.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{LogicalOrderException} (and fuzzy permutations) -# -# Meaning: Extended property 'Logical_Order_Exception' -# -return <<'END'; -0E40 0E44 Logical_Order_Exception -0EC0 0EC4 Logical_Order_Exception -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lower.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lower.pl deleted file mode 100644 index 4cd354d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lower.pl +++ /dev/null @@ -1,614 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Lower} -# -# Meaning: [[:Lower:]] -# -return <<'END'; -0061 007A -00AA -00B5 -00BA -00DF 00F6 -00F8 00FF -0101 -0103 -0105 -0107 -0109 -010B -010D -010F -0111 -0113 -0115 -0117 -0119 -011B -011D -011F -0121 -0123 -0125 -0127 -0129 -012B -012D -012F -0131 -0133 -0135 -0137 0138 -013A -013C -013E -0140 -0142 -0144 -0146 -0148 0149 -014B -014D -014F -0151 -0153 -0155 -0157 -0159 -015B -015D -015F -0161 -0163 -0165 -0167 -0169 -016B -016D -016F -0171 -0173 -0175 -0177 -017A -017C -017E 0180 -0183 -0185 -0188 -018C 018D -0192 -0195 -0199 019B -019E -01A1 -01A3 -01A5 -01A8 -01AA 01AB -01AD -01B0 -01B4 -01B6 -01B9 01BA -01BD 01BF -01C6 -01C9 -01CC -01CE -01D0 -01D2 -01D4 -01D6 -01D8 -01DA -01DC 01DD -01DF -01E1 -01E3 -01E5 -01E7 -01E9 -01EB -01ED -01EF 01F0 -01F3 -01F5 -01F9 -01FB -01FD -01FF -0201 -0203 -0205 -0207 -0209 -020B -020D -020F -0211 -0213 -0215 -0217 -0219 -021B -021D -021F -0221 -0223 -0225 -0227 -0229 -022B -022D -022F -0231 -0233 0239 -023C -023F 0240 -0242 -0247 -0249 -024B -024D -024F 0293 -0295 02AF -0371 -0373 -0377 -037B 037D -0390 -03AC 03CE -03D0 03D1 -03D5 03D7 -03D9 -03DB -03DD -03DF -03E1 -03E3 -03E5 -03E7 -03E9 -03EB -03ED -03EF 03F3 -03F5 -03F8 -03FB 03FC -0430 045F -0461 -0463 -0465 -0467 -0469 -046B -046D -046F -0471 -0473 -0475 -0477 -0479 -047B -047D -047F -0481 -048B -048D -048F -0491 -0493 -0495 -0497 -0499 -049B -049D -049F -04A1 -04A3 -04A5 -04A7 -04A9 -04AB -04AD -04AF -04B1 -04B3 -04B5 -04B7 -04B9 -04BB -04BD -04BF -04C2 -04C4 -04C6 -04C8 -04CA -04CC -04CE 04CF -04D1 -04D3 -04D5 -04D7 -04D9 -04DB -04DD -04DF -04E1 -04E3 -04E5 -04E7 -04E9 -04EB -04ED -04EF -04F1 -04F3 -04F5 -04F7 -04F9 -04FB -04FD -04FF -0501 -0503 -0505 -0507 -0509 -050B -050D -050F -0511 -0513 -0515 -0517 -0519 -051B -051D -051F -0521 -0523 -0561 0587 -1D00 1D2B -1D62 1D77 -1D79 1D9A -1E01 -1E03 -1E05 -1E07 -1E09 -1E0B -1E0D -1E0F -1E11 -1E13 -1E15 -1E17 -1E19 -1E1B -1E1D -1E1F -1E21 -1E23 -1E25 -1E27 -1E29 -1E2B -1E2D -1E2F -1E31 -1E33 -1E35 -1E37 -1E39 -1E3B -1E3D -1E3F -1E41 -1E43 -1E45 -1E47 -1E49 -1E4B -1E4D -1E4F -1E51 -1E53 -1E55 -1E57 -1E59 -1E5B -1E5D -1E5F -1E61 -1E63 -1E65 -1E67 -1E69 -1E6B -1E6D -1E6F -1E71 -1E73 -1E75 -1E77 -1E79 -1E7B -1E7D -1E7F -1E81 -1E83 -1E85 -1E87 -1E89 -1E8B -1E8D -1E8F -1E91 -1E93 -1E95 1E9D -1E9F -1EA1 -1EA3 -1EA5 -1EA7 -1EA9 -1EAB -1EAD -1EAF -1EB1 -1EB3 -1EB5 -1EB7 -1EB9 -1EBB -1EBD -1EBF -1EC1 -1EC3 -1EC5 -1EC7 -1EC9 -1ECB -1ECD -1ECF -1ED1 -1ED3 -1ED5 -1ED7 -1ED9 -1EDB -1EDD -1EDF -1EE1 -1EE3 -1EE5 -1EE7 -1EE9 -1EEB -1EED -1EEF -1EF1 -1EF3 -1EF5 -1EF7 -1EF9 -1EFB -1EFD -1EFF 1F07 -1F10 1F15 -1F20 1F27 -1F30 1F37 -1F40 1F45 -1F50 1F57 -1F60 1F67 -1F70 1F7D -1F80 1F87 -1F90 1F97 -1FA0 1FA7 -1FB0 1FB4 -1FB6 1FB7 -1FBE -1FC2 1FC4 -1FC6 1FC7 -1FD0 1FD3 -1FD6 1FD7 -1FE0 1FE7 -1FF2 1FF4 -1FF6 1FF7 -2071 -207F -210A -210E 210F -2113 -212F -2134 -2139 -213C 213D -2146 2149 -214E -2184 -2C30 2C5E -2C61 -2C65 2C66 -2C68 -2C6A -2C6C -2C71 -2C73 2C74 -2C76 2C7C -2C81 -2C83 -2C85 -2C87 -2C89 -2C8B -2C8D -2C8F -2C91 -2C93 -2C95 -2C97 -2C99 -2C9B -2C9D -2C9F -2CA1 -2CA3 -2CA5 -2CA7 -2CA9 -2CAB -2CAD -2CAF -2CB1 -2CB3 -2CB5 -2CB7 -2CB9 -2CBB -2CBD -2CBF -2CC1 -2CC3 -2CC5 -2CC7 -2CC9 -2CCB -2CCD -2CCF -2CD1 -2CD3 -2CD5 -2CD7 -2CD9 -2CDB -2CDD -2CDF -2CE1 -2CE3 2CE4 -2D00 2D25 -A641 -A643 -A645 -A647 -A649 -A64B -A64D -A64F -A651 -A653 -A655 -A657 -A659 -A65B -A65D -A65F -A663 -A665 -A667 -A669 -A66B -A66D -A681 -A683 -A685 -A687 -A689 -A68B -A68D -A68F -A691 -A693 -A695 -A697 -A723 -A725 -A727 -A729 -A72B -A72D -A72F A731 -A733 -A735 -A737 -A739 -A73B -A73D -A73F -A741 -A743 -A745 -A747 -A749 -A74B -A74D -A74F -A751 -A753 -A755 -A757 -A759 -A75B -A75D -A75F -A761 -A763 -A765 -A767 -A769 -A76B -A76D -A76F -A771 A778 -A77A -A77C -A77F -A781 -A783 -A785 -A787 -A78C -FB00 FB06 -FB13 FB17 -FF41 FF5A -10428 1044F -1D41A 1D433 -1D44E 1D454 -1D456 1D467 -1D482 1D49B -1D4B6 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D4CF -1D4EA 1D503 -1D51E 1D537 -1D552 1D56B -1D586 1D59F -1D5BA 1D5D3 -1D5EE 1D607 -1D622 1D63B -1D656 1D66F -1D68A 1D6A5 -1D6C2 1D6DA -1D6DC 1D6E1 -1D6FC 1D714 -1D716 1D71B -1D736 1D74E -1D750 1D755 -1D770 1D788 -1D78A 1D78F -1D7AA 1D7C2 -1D7C4 1D7C9 -1D7CB -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lowercas.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lowercas.pl deleted file mode 100644 index a088f53..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lowercas.pl +++ /dev/null @@ -1,617 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Lowercase} (and fuzzy permutations) -# -# Meaning: [\p{Ll}\p{OtherLowercase}] -# -return <<'END'; -0061 007A -00AA -00B5 -00BA -00DF 00F6 -00F8 00FF -0101 -0103 -0105 -0107 -0109 -010B -010D -010F -0111 -0113 -0115 -0117 -0119 -011B -011D -011F -0121 -0123 -0125 -0127 -0129 -012B -012D -012F -0131 -0133 -0135 -0137 0138 -013A -013C -013E -0140 -0142 -0144 -0146 -0148 0149 -014B -014D -014F -0151 -0153 -0155 -0157 -0159 -015B -015D -015F -0161 -0163 -0165 -0167 -0169 -016B -016D -016F -0171 -0173 -0175 -0177 -017A -017C -017E 0180 -0183 -0185 -0188 -018C 018D -0192 -0195 -0199 019B -019E -01A1 -01A3 -01A5 -01A8 -01AA 01AB -01AD -01B0 -01B4 -01B6 -01B9 01BA -01BD 01BF -01C6 -01C9 -01CC -01CE -01D0 -01D2 -01D4 -01D6 -01D8 -01DA -01DC 01DD -01DF -01E1 -01E3 -01E5 -01E7 -01E9 -01EB -01ED -01EF 01F0 -01F3 -01F5 -01F9 -01FB -01FD -01FF -0201 -0203 -0205 -0207 -0209 -020B -020D -020F -0211 -0213 -0215 -0217 -0219 -021B -021D -021F -0221 -0223 -0225 -0227 -0229 -022B -022D -022F -0231 -0233 0239 -023C -023F 0240 -0242 -0247 -0249 -024B -024D -024F 0293 -0295 02B8 -02C0 02C1 -02E0 02E4 -0345 -0371 -0373 -0377 -037A 037D -0390 -03AC 03CE -03D0 03D1 -03D5 03D7 -03D9 -03DB -03DD -03DF -03E1 -03E3 -03E5 -03E7 -03E9 -03EB -03ED -03EF 03F3 -03F5 -03F8 -03FB 03FC -0430 045F -0461 -0463 -0465 -0467 -0469 -046B -046D -046F -0471 -0473 -0475 -0477 -0479 -047B -047D -047F -0481 -048B -048D -048F -0491 -0493 -0495 -0497 -0499 -049B -049D -049F -04A1 -04A3 -04A5 -04A7 -04A9 -04AB -04AD -04AF -04B1 -04B3 -04B5 -04B7 -04B9 -04BB -04BD -04BF -04C2 -04C4 -04C6 -04C8 -04CA -04CC -04CE 04CF -04D1 -04D3 -04D5 -04D7 -04D9 -04DB -04DD -04DF -04E1 -04E3 -04E5 -04E7 -04E9 -04EB -04ED -04EF -04F1 -04F3 -04F5 -04F7 -04F9 -04FB -04FD -04FF -0501 -0503 -0505 -0507 -0509 -050B -050D -050F -0511 -0513 -0515 -0517 -0519 -051B -051D -051F -0521 -0523 -0561 0587 -1D00 1DBF -1E01 -1E03 -1E05 -1E07 -1E09 -1E0B -1E0D -1E0F -1E11 -1E13 -1E15 -1E17 -1E19 -1E1B -1E1D -1E1F -1E21 -1E23 -1E25 -1E27 -1E29 -1E2B -1E2D -1E2F -1E31 -1E33 -1E35 -1E37 -1E39 -1E3B -1E3D -1E3F -1E41 -1E43 -1E45 -1E47 -1E49 -1E4B -1E4D -1E4F -1E51 -1E53 -1E55 -1E57 -1E59 -1E5B -1E5D -1E5F -1E61 -1E63 -1E65 -1E67 -1E69 -1E6B -1E6D -1E6F -1E71 -1E73 -1E75 -1E77 -1E79 -1E7B -1E7D -1E7F -1E81 -1E83 -1E85 -1E87 -1E89 -1E8B -1E8D -1E8F -1E91 -1E93 -1E95 1E9D -1E9F -1EA1 -1EA3 -1EA5 -1EA7 -1EA9 -1EAB -1EAD -1EAF -1EB1 -1EB3 -1EB5 -1EB7 -1EB9 -1EBB -1EBD -1EBF -1EC1 -1EC3 -1EC5 -1EC7 -1EC9 -1ECB -1ECD -1ECF -1ED1 -1ED3 -1ED5 -1ED7 -1ED9 -1EDB -1EDD -1EDF -1EE1 -1EE3 -1EE5 -1EE7 -1EE9 -1EEB -1EED -1EEF -1EF1 -1EF3 -1EF5 -1EF7 -1EF9 -1EFB -1EFD -1EFF 1F07 -1F10 1F15 -1F20 1F27 -1F30 1F37 -1F40 1F45 -1F50 1F57 -1F60 1F67 -1F70 1F7D -1F80 1F87 -1F90 1F97 -1FA0 1FA7 -1FB0 1FB4 -1FB6 1FB7 -1FBE -1FC2 1FC4 -1FC6 1FC7 -1FD0 1FD3 -1FD6 1FD7 -1FE0 1FE7 -1FF2 1FF4 -1FF6 1FF7 -2071 -207F -2090 2094 -210A -210E 210F -2113 -212F -2134 -2139 -213C 213D -2146 2149 -214E -2170 217F -2184 -24D0 24E9 -2C30 2C5E -2C61 -2C65 2C66 -2C68 -2C6A -2C6C -2C71 -2C73 2C74 -2C76 2C7D -2C81 -2C83 -2C85 -2C87 -2C89 -2C8B -2C8D -2C8F -2C91 -2C93 -2C95 -2C97 -2C99 -2C9B -2C9D -2C9F -2CA1 -2CA3 -2CA5 -2CA7 -2CA9 -2CAB -2CAD -2CAF -2CB1 -2CB3 -2CB5 -2CB7 -2CB9 -2CBB -2CBD -2CBF -2CC1 -2CC3 -2CC5 -2CC7 -2CC9 -2CCB -2CCD -2CCF -2CD1 -2CD3 -2CD5 -2CD7 -2CD9 -2CDB -2CDD -2CDF -2CE1 -2CE3 2CE4 -2D00 2D25 -A641 -A643 -A645 -A647 -A649 -A64B -A64D -A64F -A651 -A653 -A655 -A657 -A659 -A65B -A65D -A65F -A663 -A665 -A667 -A669 -A66B -A66D -A681 -A683 -A685 -A687 -A689 -A68B -A68D -A68F -A691 -A693 -A695 -A697 -A723 -A725 -A727 -A729 -A72B -A72D -A72F A731 -A733 -A735 -A737 -A739 -A73B -A73D -A73F -A741 -A743 -A745 -A747 -A749 -A74B -A74D -A74F -A751 -A753 -A755 -A757 -A759 -A75B -A75D -A75F -A761 -A763 -A765 -A767 -A769 -A76B -A76D -A76F A778 -A77A -A77C -A77F -A781 -A783 -A785 -A787 -A78C -FB00 FB06 -FB13 FB17 -FF41 FF5A -10428 1044F -1D41A 1D433 -1D44E 1D454 -1D456 1D467 -1D482 1D49B -1D4B6 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D4CF -1D4EA 1D503 -1D51E 1D537 -1D552 1D56B -1D586 1D59F -1D5BA 1D5D3 -1D5EE 1D607 -1D622 1D63B -1D656 1D66F -1D68A 1D6A5 -1D6C2 1D6DA -1D6DC 1D6E1 -1D6FC 1D714 -1D716 1D71B -1D736 1D74E -1D750 1D755 -1D770 1D788 -1D78A 1D78F -1D7AA 1D7C2 -1D7C4 1D7C9 -1D7CB -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lt.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lt.pl deleted file mode 100644 index 9c4be07..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lt.pl +++ /dev/null @@ -1,27 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Lt} -# \p{Lt} (and fuzzy permutations) -# -# Meaning: General Category 'Lt' -# -return <<'END'; -01C5 -01C8 -01CB -01F2 -1F88 1F8F -1F98 1F9F -1FA8 1FAF -1FBC -1FCC -1FFC -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lu.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lu.pl deleted file mode 100644 index de67701..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lu.pl +++ /dev/null @@ -1,608 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Lu} -# \p{Lu} (and fuzzy permutations) -# -# Meaning: General Category 'Lu' -# -return <<'END'; -0041 005A -00C0 00D6 -00D8 00DE -0100 -0102 -0104 -0106 -0108 -010A -010C -010E -0110 -0112 -0114 -0116 -0118 -011A -011C -011E -0120 -0122 -0124 -0126 -0128 -012A -012C -012E -0130 -0132 -0134 -0136 -0139 -013B -013D -013F -0141 -0143 -0145 -0147 -014A -014C -014E -0150 -0152 -0154 -0156 -0158 -015A -015C -015E -0160 -0162 -0164 -0166 -0168 -016A -016C -016E -0170 -0172 -0174 -0176 -0178 0179 -017B -017D -0181 0182 -0184 -0186 0187 -0189 018B -018E 0191 -0193 0194 -0196 0198 -019C 019D -019F 01A0 -01A2 -01A4 -01A6 01A7 -01A9 -01AC -01AE 01AF -01B1 01B3 -01B5 -01B7 01B8 -01BC -01C4 -01C7 -01CA -01CD -01CF -01D1 -01D3 -01D5 -01D7 -01D9 -01DB -01DE -01E0 -01E2 -01E4 -01E6 -01E8 -01EA -01EC -01EE -01F1 -01F4 -01F6 01F8 -01FA -01FC -01FE -0200 -0202 -0204 -0206 -0208 -020A -020C -020E -0210 -0212 -0214 -0216 -0218 -021A -021C -021E -0220 -0222 -0224 -0226 -0228 -022A -022C -022E -0230 -0232 -023A 023B -023D 023E -0241 -0243 0246 -0248 -024A -024C -024E -0370 -0372 -0376 -0386 -0388 038A -038C -038E 038F -0391 03A1 -03A3 03AB -03CF -03D2 03D4 -03D8 -03DA -03DC -03DE -03E0 -03E2 -03E4 -03E6 -03E8 -03EA -03EC -03EE -03F4 -03F7 -03F9 03FA -03FD 042F -0460 -0462 -0464 -0466 -0468 -046A -046C -046E -0470 -0472 -0474 -0476 -0478 -047A -047C -047E -0480 -048A -048C -048E -0490 -0492 -0494 -0496 -0498 -049A -049C -049E -04A0 -04A2 -04A4 -04A6 -04A8 -04AA -04AC -04AE -04B0 -04B2 -04B4 -04B6 -04B8 -04BA -04BC -04BE -04C0 04C1 -04C3 -04C5 -04C7 -04C9 -04CB -04CD -04D0 -04D2 -04D4 -04D6 -04D8 -04DA -04DC -04DE -04E0 -04E2 -04E4 -04E6 -04E8 -04EA -04EC -04EE -04F0 -04F2 -04F4 -04F6 -04F8 -04FA -04FC -04FE -0500 -0502 -0504 -0506 -0508 -050A -050C -050E -0510 -0512 -0514 -0516 -0518 -051A -051C -051E -0520 -0522 -0531 0556 -10A0 10C5 -1E00 -1E02 -1E04 -1E06 -1E08 -1E0A -1E0C -1E0E -1E10 -1E12 -1E14 -1E16 -1E18 -1E1A -1E1C -1E1E -1E20 -1E22 -1E24 -1E26 -1E28 -1E2A -1E2C -1E2E -1E30 -1E32 -1E34 -1E36 -1E38 -1E3A -1E3C -1E3E -1E40 -1E42 -1E44 -1E46 -1E48 -1E4A -1E4C -1E4E -1E50 -1E52 -1E54 -1E56 -1E58 -1E5A -1E5C -1E5E -1E60 -1E62 -1E64 -1E66 -1E68 -1E6A -1E6C -1E6E -1E70 -1E72 -1E74 -1E76 -1E78 -1E7A -1E7C -1E7E -1E80 -1E82 -1E84 -1E86 -1E88 -1E8A -1E8C -1E8E -1E90 -1E92 -1E94 -1E9E -1EA0 -1EA2 -1EA4 -1EA6 -1EA8 -1EAA -1EAC -1EAE -1EB0 -1EB2 -1EB4 -1EB6 -1EB8 -1EBA -1EBC -1EBE -1EC0 -1EC2 -1EC4 -1EC6 -1EC8 -1ECA -1ECC -1ECE -1ED0 -1ED2 -1ED4 -1ED6 -1ED8 -1EDA -1EDC -1EDE -1EE0 -1EE2 -1EE4 -1EE6 -1EE8 -1EEA -1EEC -1EEE -1EF0 -1EF2 -1EF4 -1EF6 -1EF8 -1EFA -1EFC -1EFE -1F08 1F0F -1F18 1F1D -1F28 1F2F -1F38 1F3F -1F48 1F4D -1F59 -1F5B -1F5D -1F5F -1F68 1F6F -1FB8 1FBB -1FC8 1FCB -1FD8 1FDB -1FE8 1FEC -1FF8 1FFB -2102 -2107 -210B 210D -2110 2112 -2115 -2119 211D -2124 -2126 -2128 -212A 212D -2130 2133 -213E 213F -2145 -2183 -2C00 2C2E -2C60 -2C62 2C64 -2C67 -2C69 -2C6B -2C6D 2C6F -2C72 -2C75 -2C80 -2C82 -2C84 -2C86 -2C88 -2C8A -2C8C -2C8E -2C90 -2C92 -2C94 -2C96 -2C98 -2C9A -2C9C -2C9E -2CA0 -2CA2 -2CA4 -2CA6 -2CA8 -2CAA -2CAC -2CAE -2CB0 -2CB2 -2CB4 -2CB6 -2CB8 -2CBA -2CBC -2CBE -2CC0 -2CC2 -2CC4 -2CC6 -2CC8 -2CCA -2CCC -2CCE -2CD0 -2CD2 -2CD4 -2CD6 -2CD8 -2CDA -2CDC -2CDE -2CE0 -2CE2 -A640 -A642 -A644 -A646 -A648 -A64A -A64C -A64E -A650 -A652 -A654 -A656 -A658 -A65A -A65C -A65E -A662 -A664 -A666 -A668 -A66A -A66C -A680 -A682 -A684 -A686 -A688 -A68A -A68C -A68E -A690 -A692 -A694 -A696 -A722 -A724 -A726 -A728 -A72A -A72C -A72E -A732 -A734 -A736 -A738 -A73A -A73C -A73E -A740 -A742 -A744 -A746 -A748 -A74A -A74C -A74E -A750 -A752 -A754 -A756 -A758 -A75A -A75C -A75E -A760 -A762 -A764 -A766 -A768 -A76A -A76C -A76E -A779 -A77B -A77D A77E -A780 -A782 -A784 -A786 -A78B -FF21 FF3A -10400 10427 -1D400 1D419 -1D434 1D44D -1D468 1D481 -1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B5 -1D4D0 1D4E9 -1D504 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D538 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D56C 1D585 -1D5A0 1D5B9 -1D5D4 1D5ED -1D608 1D621 -1D63C 1D655 -1D670 1D689 -1D6A8 1D6C0 -1D6E2 1D6FA -1D71C 1D734 -1D756 1D76E -1D790 1D7A8 -1D7CA -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lyci.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lyci.pl deleted file mode 100644 index 598d222..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lyci.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Lycian} (and fuzzy permutations) -# -# Meaning: Script 'Lycian' -# -return <<'END'; -10280 1029C Lycian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lydi.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lydi.pl deleted file mode 100644 index d83ea28..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Lydi.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Lydian} (and fuzzy permutations) -# -# Meaning: Script 'Lydian' -# -return <<'END'; -10920 10939 Lydian -1093F Lydian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/M.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/M.pl deleted file mode 100644 index 3937d90..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/M.pl +++ /dev/null @@ -1,178 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{M} -# \p{M} (and fuzzy permutations) -# -# Meaning: Major Category 'M' -# -return <<'END'; -0300 036F -0483 0489 -0591 05BD -05BF -05C1 05C2 -05C4 05C5 -05C7 -0610 061A -064B 065E -0670 -06D6 06DC -06DE 06E4 -06E7 06E8 -06EA 06ED -0711 -0730 074A -07A6 07B0 -07EB 07F3 -0901 0903 -093C -093E 094D -0951 0954 -0962 0963 -0981 0983 -09BC -09BE 09C4 -09C7 09C8 -09CB 09CD -09D7 -09E2 09E3 -0A01 0A03 -0A3C -0A3E 0A42 -0A47 0A48 -0A4B 0A4D -0A51 -0A70 0A71 -0A75 -0A81 0A83 -0ABC -0ABE 0AC5 -0AC7 0AC9 -0ACB 0ACD -0AE2 0AE3 -0B01 0B03 -0B3C -0B3E 0B44 -0B47 0B48 -0B4B 0B4D -0B56 0B57 -0B62 0B63 -0B82 -0BBE 0BC2 -0BC6 0BC8 -0BCA 0BCD -0BD7 -0C01 0C03 -0C3E 0C44 -0C46 0C48 -0C4A 0C4D -0C55 0C56 -0C62 0C63 -0C82 0C83 -0CBC -0CBE 0CC4 -0CC6 0CC8 -0CCA 0CCD -0CD5 0CD6 -0CE2 0CE3 -0D02 0D03 -0D3E 0D44 -0D46 0D48 -0D4A 0D4D -0D57 -0D62 0D63 -0D82 0D83 -0DCA -0DCF 0DD4 -0DD6 -0DD8 0DDF -0DF2 0DF3 -0E31 -0E34 0E3A -0E47 0E4E -0EB1 -0EB4 0EB9 -0EBB 0EBC -0EC8 0ECD -0F18 0F19 -0F35 -0F37 -0F39 -0F3E 0F3F -0F71 0F84 -0F86 0F87 -0F90 0F97 -0F99 0FBC -0FC6 -102B 103E -1056 1059 -105E 1060 -1062 1064 -1067 106D -1071 1074 -1082 108D -108F -135F -1712 1714 -1732 1734 -1752 1753 -1772 1773 -17B6 17D3 -17DD -180B 180D -18A9 -1920 192B -1930 193B -19B0 19C0 -19C8 19C9 -1A17 1A1B -1B00 1B04 -1B34 1B44 -1B6B 1B73 -1B80 1B82 -1BA1 1BAA -1C24 1C37 -1DC0 1DE6 -1DFE 1DFF -20D0 20F0 -2DE0 2DFF -302A 302F -3099 309A -A66F A672 -A67C A67D -A802 -A806 -A80B -A823 A827 -A880 A881 -A8B4 A8C4 -A926 A92D -A947 A953 -AA29 AA36 -AA43 -AA4C AA4D -FB1E -FE00 FE0F -FE20 FE26 -101FD -10A01 10A03 -10A05 10A06 -10A0C 10A0F -10A38 10A3A -10A3F -1D165 1D169 -1D16D 1D172 -1D17B 1D182 -1D185 1D18B -1D1AA 1D1AD -1D242 1D244 -E0100 E01EF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Math.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Math.pl deleted file mode 100644 index aab2157..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Math.pl +++ /dev/null @@ -1,121 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Math} (and fuzzy permutations) -# -# Meaning: [\p{Sm}\p{OtherMath}] -# -return <<'END'; -002B -003C 003E -005E -007C -007E -00AC -00B1 -00D7 -00F7 -03D0 03D2 -03D5 -03F0 03F1 -03F4 03F6 -0606 0608 -2016 -2032 2034 -2040 -2044 -2052 -2061 2064 -207A 207E -208A 208E -20D0 20DC -20E1 -20E5 20E6 -20EB 20EF -2102 -210A 2113 -2115 -2119 211D -2124 -2128 2129 -212C 212D -212F 2131 -2133 2138 -213C 2149 -214B -2190 21A7 -21A9 21AE -21B0 21B1 -21B6 21B7 -21BC 21DB -21DD -21E4 21E5 -21F4 22FF -2308 230B -2320 2321 -237C -239B 23B5 -23B7 -23D0 -23DC 23E2 -25A0 25A1 -25AE 25B7 -25BC 25C1 -25C6 25C7 -25CA 25CB -25CF 25D3 -25E2 -25E4 -25E7 25EC -25F8 25FF -2605 2606 -2640 -2642 -2660 2663 -266D 266F -27C0 27CA -27CC -27D0 27FF -2900 2AFF -2B30 2B44 -2B47 2B4C -FB29 -FE61 FE66 -FE68 -FF0B -FF1C FF1E -FF3C -FF3E -FF5C -FF5E -FFE2 -FFE9 FFEC -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D7CB -1D7CE 1D7FF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mc.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mc.pl deleted file mode 100644 index 46e7e2e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mc.pl +++ /dev/null @@ -1,102 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Mc} -# \p{Mc} (and fuzzy permutations) -# -# Meaning: General Category 'Mc' -# -return <<'END'; -0903 -093E 0940 -0949 094C -0982 0983 -09BE 09C0 -09C7 09C8 -09CB 09CC -09D7 -0A03 -0A3E 0A40 -0A83 -0ABE 0AC0 -0AC9 -0ACB 0ACC -0B02 0B03 -0B3E -0B40 -0B47 0B48 -0B4B 0B4C -0B57 -0BBE 0BBF -0BC1 0BC2 -0BC6 0BC8 -0BCA 0BCC -0BD7 -0C01 0C03 -0C41 0C44 -0C82 0C83 -0CBE -0CC0 0CC4 -0CC7 0CC8 -0CCA 0CCB -0CD5 0CD6 -0D02 0D03 -0D3E 0D40 -0D46 0D48 -0D4A 0D4C -0D57 -0D82 0D83 -0DCF 0DD1 -0DD8 0DDF -0DF2 0DF3 -0F3E 0F3F -0F7F -102B 102C -1031 -1038 -103B 103C -1056 1057 -1062 1064 -1067 106D -1083 1084 -1087 108C -108F -17B6 -17BE 17C5 -17C7 17C8 -1923 1926 -1929 192B -1930 1931 -1933 1938 -19B0 19C0 -19C8 19C9 -1A19 1A1B -1B04 -1B35 -1B3B -1B3D 1B41 -1B43 1B44 -1B82 -1BA1 -1BA6 1BA7 -1BAA -1C24 1C2B -1C34 1C35 -A823 A824 -A827 -A880 A881 -A8B4 A8C3 -A952 A953 -AA2F AA30 -AA33 AA34 -AA4D -1D165 1D166 -1D16D 1D172 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Me.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Me.pl deleted file mode 100644 index 94326e2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Me.pl +++ /dev/null @@ -1,22 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Me} -# \p{Me} (and fuzzy permutations) -# -# Meaning: General Category 'Me' -# -return <<'END'; -0488 0489 -06DE -20DD 20E0 -20E2 20E4 -A670 A672 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mlym.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mlym.pl deleted file mode 100644 index 9a01732..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mlym.pl +++ /dev/null @@ -1,28 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Malayalam} (and fuzzy permutations) -# -# Meaning: Script 'Malayalam' -# -return <<'END'; -0D02 0D03 Malayalam -0D05 0D0C Malayalam -0D0E 0D10 Malayalam -0D12 0D28 Malayalam -0D2A 0D39 Malayalam -0D3D 0D44 Malayalam -0D46 0D48 Malayalam -0D4A 0D4D Malayalam -0D57 Malayalam -0D60 0D63 Malayalam -0D66 0D75 Malayalam -0D79 0D7F Malayalam -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mn.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mn.pl deleted file mode 100644 index 1e7f652..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mn.pl +++ /dev/null @@ -1,177 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Mn} -# \p{Mn} (and fuzzy permutations) -# -# Meaning: General Category 'Mn' -# -return <<'END'; -0300 036F -0483 0487 -0591 05BD -05BF -05C1 05C2 -05C4 05C5 -05C7 -0610 061A -064B 065E -0670 -06D6 06DC -06DF 06E4 -06E7 06E8 -06EA 06ED -0711 -0730 074A -07A6 07B0 -07EB 07F3 -0901 0902 -093C -0941 0948 -094D -0951 0954 -0962 0963 -0981 -09BC -09C1 09C4 -09CD -09E2 09E3 -0A01 0A02 -0A3C -0A41 0A42 -0A47 0A48 -0A4B 0A4D -0A51 -0A70 0A71 -0A75 -0A81 0A82 -0ABC -0AC1 0AC5 -0AC7 0AC8 -0ACD -0AE2 0AE3 -0B01 -0B3C -0B3F -0B41 0B44 -0B4D -0B56 -0B62 0B63 -0B82 -0BC0 -0BCD -0C3E 0C40 -0C46 0C48 -0C4A 0C4D -0C55 0C56 -0C62 0C63 -0CBC -0CBF -0CC6 -0CCC 0CCD -0CE2 0CE3 -0D41 0D44 -0D4D -0D62 0D63 -0DCA -0DD2 0DD4 -0DD6 -0E31 -0E34 0E3A -0E47 0E4E -0EB1 -0EB4 0EB9 -0EBB 0EBC -0EC8 0ECD -0F18 0F19 -0F35 -0F37 -0F39 -0F71 0F7E -0F80 0F84 -0F86 0F87 -0F90 0F97 -0F99 0FBC -0FC6 -102D 1030 -1032 1037 -1039 103A -103D 103E -1058 1059 -105E 1060 -1071 1074 -1082 -1085 1086 -108D -135F -1712 1714 -1732 1734 -1752 1753 -1772 1773 -17B7 17BD -17C6 -17C9 17D3 -17DD -180B 180D -18A9 -1920 1922 -1927 1928 -1932 -1939 193B -1A17 1A18 -1B00 1B03 -1B34 -1B36 1B3A -1B3C -1B42 -1B6B 1B73 -1B80 1B81 -1BA2 1BA5 -1BA8 1BA9 -1C2C 1C33 -1C36 1C37 -1DC0 1DE6 -1DFE 1DFF -20D0 20DC -20E1 -20E5 20F0 -2DE0 2DFF -302A 302F -3099 309A -A66F -A67C A67D -A802 -A806 -A80B -A825 A826 -A8C4 -A926 A92D -A947 A951 -AA29 AA2E -AA31 AA32 -AA35 AA36 -AA43 -AA4C -FB1E -FE00 FE0F -FE20 FE26 -101FD -10A01 10A03 -10A05 10A06 -10A0C 10A0F -10A38 10A3A -10A3F -1D167 1D169 -1D17B 1D182 -1D185 1D18B -1D1AA 1D1AD -1D242 1D244 -E0100 E01EF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mong.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mong.pl deleted file mode 100644 index b1bfc9a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mong.pl +++ /dev/null @@ -1,22 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Mongolian} (and fuzzy permutations) -# -# Meaning: Script 'Mongolian' -# -return <<'END'; -1800 1801 Mongolian -1804 Mongolian -1806 180E Mongolian -1810 1819 Mongolian -1820 1877 Mongolian -1880 18AA Mongolian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mymr.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mymr.pl deleted file mode 100644 index 55eb02e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Mymr.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Myanmar} (and fuzzy permutations) -# -# Meaning: Script 'Myanmar' -# -return <<'END'; -1000 1099 Myanmar -109E 109F Myanmar -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/N.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/N.pl deleted file mode 100644 index 18e3f10..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/N.pl +++ /dev/null @@ -1,86 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{N} -# \p{N} (and fuzzy permutations) -# -# Meaning: Major Category 'N' -# -return <<'END'; -0030 0039 -00B2 00B3 -00B9 -00BC 00BE -0660 0669 -06F0 06F9 -07C0 07C9 -0966 096F -09E6 09EF -09F4 09F9 -0A66 0A6F -0AE6 0AEF -0B66 0B6F -0BE6 0BF2 -0C66 0C6F -0C78 0C7E -0CE6 0CEF -0D66 0D75 -0E50 0E59 -0ED0 0ED9 -0F20 0F33 -1040 1049 -1090 1099 -1369 137C -16EE 16F0 -17E0 17E9 -17F0 17F9 -1810 1819 -1946 194F -19D0 19D9 -1B50 1B59 -1BB0 1BB9 -1C40 1C49 -1C50 1C59 -2070 -2074 2079 -2080 2089 -2153 2182 -2185 2188 -2460 249B -24EA 24FF -2776 2793 -2CFD -3007 -3021 3029 -3038 303A -3192 3195 -3220 3229 -3251 325F -3280 3289 -32B1 32BF -A620 A629 -A8D0 A8D9 -A900 A909 -AA50 AA59 -FF10 FF19 -10107 10133 -10140 10178 -1018A -10320 10323 -10341 -1034A -103D1 103D5 -104A0 104A9 -10916 10919 -10A40 10A47 -12400 12462 -1D360 1D371 -1D7CE 1D7FF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/NChar.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/NChar.pl deleted file mode 100644 index 5bcb62d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/NChar.pl +++ /dev/null @@ -1,31 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Noncharacter_Code_Point' -# -return <<'END'; -FDD0 FDEF Noncharacter_Code_Point -FFFE FFFF Noncharacter_Code_Point -1FFFE 1FFFF Noncharacter_Code_Point -2FFFE 2FFFF Noncharacter_Code_Point -3FFFE 3FFFF Noncharacter_Code_Point -4FFFE 4FFFF Noncharacter_Code_Point -5FFFE 5FFFF Noncharacter_Code_Point -6FFFE 6FFFF Noncharacter_Code_Point -7FFFE 7FFFF Noncharacter_Code_Point -8FFFE 8FFFF Noncharacter_Code_Point -9FFFE 9FFFF Noncharacter_Code_Point -AFFFE AFFFF Noncharacter_Code_Point -BFFFE BFFFF Noncharacter_Code_Point -CFFFE CFFFF Noncharacter_Code_Point -DFFFE DFFFF Noncharacter_Code_Point -EFFFE EFFFF Noncharacter_Code_Point -FFFFE FFFFF Noncharacter_Code_Point -10FFFE 10FFFF Noncharacter_Code_Point -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Nd.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Nd.pl deleted file mode 100644 index cba14f2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Nd.pl +++ /dev/null @@ -1,50 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Nd} -# \p{Nd} (and fuzzy permutations) -# -# Meaning: General Category 'Nd' -# -return <<'END'; -0030 0039 -0660 0669 -06F0 06F9 -07C0 07C9 -0966 096F -09E6 09EF -0A66 0A6F -0AE6 0AEF -0B66 0B6F -0BE6 0BEF -0C66 0C6F -0CE6 0CEF -0D66 0D6F -0E50 0E59 -0ED0 0ED9 -0F20 0F29 -1040 1049 -1090 1099 -17E0 17E9 -1810 1819 -1946 194F -19D0 19D9 -1B50 1B59 -1BB0 1BB9 -1C40 1C49 -1C50 1C59 -A620 A629 -A8D0 A8D9 -A900 A909 -AA50 AA59 -FF10 FF19 -104A0 104A9 -1D7CE 1D7FF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/NewTaiLu.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/NewTaiLu.pl deleted file mode 100644 index 537f6d6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/NewTaiLu.pl +++ /dev/null @@ -1,20 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{NewTaiLue} (and fuzzy permutations) -# -# Meaning: Script 'New_Tai_Lue' -# -return <<'END'; -1980 19A9 New_Tai_Lue -19B0 19C9 New_Tai_Lue -19D0 19D9 New_Tai_Lue -19DE 19DF New_Tai_Lue -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Nkoo.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Nkoo.pl deleted file mode 100644 index b42f593..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Nkoo.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Nko} (and fuzzy permutations) -# -# Meaning: Script 'Nko' -# -return <<'END'; -07C0 07FA Nko -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Nl.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Nl.pl deleted file mode 100644 index 405df21..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Nl.pl +++ /dev/null @@ -1,28 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Nl} -# \p{Nl} (and fuzzy permutations) -# -# Meaning: General Category 'Nl' -# -return <<'END'; -16EE 16F0 -2160 2182 -2185 2188 -3007 -3021 3029 -3038 303A -10140 10174 -10341 -1034A -103D1 103D5 -12400 12462 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/No.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/No.pl deleted file mode 100644 index 622f36b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/No.pl +++ /dev/null @@ -1,47 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{No} -# \p{No} (and fuzzy permutations) -# -# Meaning: General Category 'No' -# -return <<'END'; -00B2 00B3 -00B9 -00BC 00BE -09F4 09F9 -0BF0 0BF2 -0C78 0C7E -0D70 0D75 -0F2A 0F33 -1369 137C -17F0 17F9 -2070 -2074 2079 -2080 2089 -2153 215F -2460 249B -24EA 24FF -2776 2793 -2CFD -3192 3195 -3220 3229 -3251 325F -3280 3289 -32B1 32BF -10107 10133 -10175 10178 -1018A -10320 10323 -10916 10919 -10A40 10A47 -1D360 1D371 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Nonchara.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Nonchara.pl deleted file mode 100644 index f4eb753..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Nonchara.pl +++ /dev/null @@ -1,34 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{NoncharacterCodePoint} (and fuzzy permutations) -# -# Meaning: Extended property 'Noncharacter_Code_Point' -# -return <<'END'; -FDD0 FDEF Noncharacter_Code_Point -FFFE FFFF Noncharacter_Code_Point -1FFFE 1FFFF Noncharacter_Code_Point -2FFFE 2FFFF Noncharacter_Code_Point -3FFFE 3FFFF Noncharacter_Code_Point -4FFFE 4FFFF Noncharacter_Code_Point -5FFFE 5FFFF Noncharacter_Code_Point -6FFFE 6FFFF Noncharacter_Code_Point -7FFFE 7FFFF Noncharacter_Code_Point -8FFFE 8FFFF Noncharacter_Code_Point -9FFFE 9FFFF Noncharacter_Code_Point -AFFFE AFFFF Noncharacter_Code_Point -BFFFE BFFFF Noncharacter_Code_Point -CFFFE CFFFF Noncharacter_Code_Point -DFFFE DFFFF Noncharacter_Code_Point -EFFFE EFFFF Noncharacter_Code_Point -FFFFE FFFFF Noncharacter_Code_Point -10FFFE 10FFFF Noncharacter_Code_Point -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OAlpha.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OAlpha.pl deleted file mode 100644 index b4edb96..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OAlpha.pl +++ /dev/null @@ -1,135 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Other_Alphabetic' -# -return <<'END'; -0345 Other_Alphabetic -05B0 05BD Other_Alphabetic -05BF Other_Alphabetic -05C1 05C2 Other_Alphabetic -05C4 05C5 Other_Alphabetic -05C7 Other_Alphabetic -0610 061A Other_Alphabetic -064B 0657 Other_Alphabetic -0659 065E Other_Alphabetic -0670 Other_Alphabetic -06D6 06DC Other_Alphabetic -06E1 06E4 Other_Alphabetic -06E7 06E8 Other_Alphabetic -06ED Other_Alphabetic -0711 Other_Alphabetic -0730 073F Other_Alphabetic -07A6 07B0 Other_Alphabetic -0901 0903 Other_Alphabetic -093E 094C Other_Alphabetic -0962 0963 Other_Alphabetic -0981 0983 Other_Alphabetic -09BE 09C4 Other_Alphabetic -09C7 09C8 Other_Alphabetic -09CB 09CC Other_Alphabetic -09D7 Other_Alphabetic -09E2 09E3 Other_Alphabetic -0A01 0A03 Other_Alphabetic -0A3E 0A42 Other_Alphabetic -0A47 0A48 Other_Alphabetic -0A4B 0A4C Other_Alphabetic -0A51 Other_Alphabetic -0A70 0A71 Other_Alphabetic -0A75 Other_Alphabetic -0A81 0A83 Other_Alphabetic -0ABE 0AC5 Other_Alphabetic -0AC7 0AC9 Other_Alphabetic -0ACB 0ACC Other_Alphabetic -0AE2 0AE3 Other_Alphabetic -0B01 0B03 Other_Alphabetic -0B3E 0B44 Other_Alphabetic -0B47 0B48 Other_Alphabetic -0B4B 0B4C Other_Alphabetic -0B56 0B57 Other_Alphabetic -0B62 0B63 Other_Alphabetic -0B82 Other_Alphabetic -0BBE 0BC2 Other_Alphabetic -0BC6 0BC8 Other_Alphabetic -0BCA 0BCC Other_Alphabetic -0BD7 Other_Alphabetic -0C01 0C03 Other_Alphabetic -0C3E 0C44 Other_Alphabetic -0C46 0C48 Other_Alphabetic -0C4A 0C4C Other_Alphabetic -0C55 0C56 Other_Alphabetic -0C62 0C63 Other_Alphabetic -0C82 0C83 Other_Alphabetic -0CBE 0CC4 Other_Alphabetic -0CC6 0CC8 Other_Alphabetic -0CCA 0CCC Other_Alphabetic -0CD5 0CD6 Other_Alphabetic -0CE2 0CE3 Other_Alphabetic -0D02 0D03 Other_Alphabetic -0D3E 0D44 Other_Alphabetic -0D46 0D48 Other_Alphabetic -0D4A 0D4C Other_Alphabetic -0D57 Other_Alphabetic -0D62 0D63 Other_Alphabetic -0D82 0D83 Other_Alphabetic -0DCF 0DD4 Other_Alphabetic -0DD6 Other_Alphabetic -0DD8 0DDF Other_Alphabetic -0DF2 0DF3 Other_Alphabetic -0E31 Other_Alphabetic -0E34 0E3A Other_Alphabetic -0E4D Other_Alphabetic -0EB1 Other_Alphabetic -0EB4 0EB9 Other_Alphabetic -0EBB 0EBC Other_Alphabetic -0ECD Other_Alphabetic -0F71 0F81 Other_Alphabetic -0F90 0F97 Other_Alphabetic -0F99 0FBC Other_Alphabetic -102B 1036 Other_Alphabetic -1038 Other_Alphabetic -103B 103E Other_Alphabetic -1056 1059 Other_Alphabetic -105E 1060 Other_Alphabetic -1062 Other_Alphabetic -1067 1068 Other_Alphabetic -1071 1074 Other_Alphabetic -1082 1086 Other_Alphabetic -135F Other_Alphabetic -1712 1713 Other_Alphabetic -1732 1733 Other_Alphabetic -1752 1753 Other_Alphabetic -1772 1773 Other_Alphabetic -17B6 17C8 Other_Alphabetic -18A9 Other_Alphabetic -1920 192B Other_Alphabetic -1930 1938 Other_Alphabetic -19B0 19C0 Other_Alphabetic -19C8 19C9 Other_Alphabetic -1A17 1A1B Other_Alphabetic -1B00 1B04 Other_Alphabetic -1B35 1B43 Other_Alphabetic -1B80 1B82 Other_Alphabetic -1BA1 1BA9 Other_Alphabetic -1C24 1C35 Other_Alphabetic -24B6 24E9 Other_Alphabetic -2DE0 2DFF Other_Alphabetic -A823 A827 Other_Alphabetic -A880 A881 Other_Alphabetic -A8B4 A8C3 Other_Alphabetic -A926 A92A Other_Alphabetic -A947 A952 Other_Alphabetic -AA29 AA36 Other_Alphabetic -AA43 Other_Alphabetic -AA4C AA4D Other_Alphabetic -FB1E Other_Alphabetic -10A01 10A03 Other_Alphabetic -10A05 10A06 Other_Alphabetic -10A0C 10A0F Other_Alphabetic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/ODI.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/ODI.pl deleted file mode 100644 index a97955a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/ODI.pl +++ /dev/null @@ -1,23 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Other_Default_Ignorable_Code_Point' -# -return <<'END'; -034F Other_Default_Ignorable_Code_Point -115F 1160 Other_Default_Ignorable_Code_Point -2065 2069 Other_Default_Ignorable_Code_Point -3164 Other_Default_Ignorable_Code_Point -FFA0 Other_Default_Ignorable_Code_Point -FFF0 FFF8 Other_Default_Ignorable_Code_Point -E0000 Other_Default_Ignorable_Code_Point -E0002 E001F Other_Default_Ignorable_Code_Point -E0080 E00FF Other_Default_Ignorable_Code_Point -E01F0 E0FFF Other_Default_Ignorable_Code_Point -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OGrExt.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OGrExt.pl deleted file mode 100644 index f9f5e7f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OGrExt.pl +++ /dev/null @@ -1,29 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Other_Grapheme_Extend' -# -return <<'END'; -09BE Other_Grapheme_Extend -09D7 Other_Grapheme_Extend -0B3E Other_Grapheme_Extend -0B57 Other_Grapheme_Extend -0BBE Other_Grapheme_Extend -0BD7 Other_Grapheme_Extend -0CC2 Other_Grapheme_Extend -0CD5 0CD6 Other_Grapheme_Extend -0D3E Other_Grapheme_Extend -0D57 Other_Grapheme_Extend -0DCF Other_Grapheme_Extend -0DDF Other_Grapheme_Extend -200C 200D Other_Grapheme_Extend -FF9E FF9F Other_Grapheme_Extend -1D165 Other_Grapheme_Extend -1D16E 1D172 Other_Grapheme_Extend -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OIDC.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OIDC.pl deleted file mode 100644 index 8ac1b0e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OIDC.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Other_ID_Continue' -# -return <<'END'; -00B7 Other_ID_Continue -0387 Other_ID_Continue -1369 1371 Other_ID_Continue -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OIDS.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OIDS.pl deleted file mode 100644 index ba93bb9..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OIDS.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Other_ID_Start' -# -return <<'END'; -2118 Other_ID_Start -212E Other_ID_Start -309B 309C Other_ID_Start -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OLower.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OLower.pl deleted file mode 100644 index 85e6e55..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OLower.pl +++ /dev/null @@ -1,26 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Other_Lowercase' -# -return <<'END'; -02B0 02B8 Other_Lowercase -02C0 02C1 Other_Lowercase -02E0 02E4 Other_Lowercase -0345 Other_Lowercase -037A Other_Lowercase -1D2C 1D61 Other_Lowercase -1D78 Other_Lowercase -1D9B 1DBF Other_Lowercase -2090 2094 Other_Lowercase -2170 217F Other_Lowercase -24D0 24E9 Other_Lowercase -2C7D Other_Lowercase -A770 Other_Lowercase -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OMath.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OMath.pl deleted file mode 100644 index b8a47d5..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OMath.pl +++ /dev/null @@ -1,112 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Other_Math' -# -return <<'END'; -005E Other_Math -03D0 03D2 Other_Math -03D5 Other_Math -03F0 03F1 Other_Math -03F4 03F5 Other_Math -2016 Other_Math -2032 2034 Other_Math -2040 Other_Math -2061 2064 Other_Math -207D 207E Other_Math -208D 208E Other_Math -20D0 20DC Other_Math -20E1 Other_Math -20E5 20E6 Other_Math -20EB 20EF Other_Math -2102 Other_Math -210A 2113 Other_Math -2115 Other_Math -2119 211D Other_Math -2124 Other_Math -2128 2129 Other_Math -212C 212D Other_Math -212F 2131 Other_Math -2133 2138 Other_Math -213C 213F Other_Math -2145 2149 Other_Math -2195 2199 Other_Math -219C 219F Other_Math -21A1 21A2 Other_Math -21A4 21A5 Other_Math -21A7 Other_Math -21A9 21AD Other_Math -21B0 21B1 Other_Math -21B6 21B7 Other_Math -21BC 21CD Other_Math -21D0 21D1 Other_Math -21D3 Other_Math -21D5 21DB Other_Math -21DD Other_Math -21E4 21E5 Other_Math -23B4 23B5 Other_Math -23B7 Other_Math -23D0 Other_Math -23E2 Other_Math -25A0 25A1 Other_Math -25AE 25B6 Other_Math -25BC 25C0 Other_Math -25C6 25C7 Other_Math -25CA 25CB Other_Math -25CF 25D3 Other_Math -25E2 Other_Math -25E4 Other_Math -25E7 25EC Other_Math -2605 2606 Other_Math -2640 Other_Math -2642 Other_Math -2660 2663 Other_Math -266D 266E Other_Math -27C5 27C6 Other_Math -27E6 27EF Other_Math -2983 2998 Other_Math -29D8 29DB Other_Math -29FC 29FD Other_Math -FE61 Other_Math -FE63 Other_Math -FE68 Other_Math -FF3C Other_Math -FF3E Other_Math -1D400 1D454 Other_Math -1D456 1D49C Other_Math -1D49E 1D49F Other_Math -1D4A2 Other_Math -1D4A5 1D4A6 Other_Math -1D4A9 1D4AC Other_Math -1D4AE 1D4B9 Other_Math -1D4BB Other_Math -1D4BD 1D4C3 Other_Math -1D4C5 1D505 Other_Math -1D507 1D50A Other_Math -1D50D 1D514 Other_Math -1D516 1D51C Other_Math -1D51E 1D539 Other_Math -1D53B 1D53E Other_Math -1D540 1D544 Other_Math -1D546 Other_Math -1D54A 1D550 Other_Math -1D552 1D6A5 Other_Math -1D6A8 1D6C0 Other_Math -1D6C2 1D6DA Other_Math -1D6DC 1D6FA Other_Math -1D6FC 1D714 Other_Math -1D716 1D734 Other_Math -1D736 1D74E Other_Math -1D750 1D76E Other_Math -1D770 1D788 Other_Math -1D78A 1D7A8 Other_Math -1D7AA 1D7C2 Other_Math -1D7C4 1D7CB Other_Math -1D7CE 1D7FF Other_Math -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OUpper.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OUpper.pl deleted file mode 100644 index a05b266..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OUpper.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Other_Uppercase' -# -return <<'END'; -2160 216F Other_Uppercase -24B6 24CF Other_Uppercase -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ogam.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ogam.pl deleted file mode 100644 index f42872f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ogam.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Ogham} (and fuzzy permutations) -# -# Meaning: Script 'Ogham' -# -return <<'END'; -1680 169C Ogham -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OlChiki.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OlChiki.pl deleted file mode 100644 index dd2aadd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OlChiki.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{OlChiki} (and fuzzy permutations) -# -# Meaning: Script 'Ol_Chiki' -# -return <<'END'; -1C50 1C7F Ol_Chiki -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OldItali.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OldItali.pl deleted file mode 100644 index 06e9c4e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OldItali.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{OldItalic} (and fuzzy permutations) -# -# Meaning: Script 'Old_Italic' -# -return <<'END'; -10300 1031E Old_Italic -10320 10323 Old_Italic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OldPersi.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OldPersi.pl deleted file mode 100644 index 1b7cf22..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OldPersi.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{OldPersian} (and fuzzy permutations) -# -# Meaning: Script 'Old_Persian' -# -return <<'END'; -103A0 103C3 Old_Persian -103C8 103D5 Old_Persian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Orya.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Orya.pl deleted file mode 100644 index c72c66a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Orya.pl +++ /dev/null @@ -1,30 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Oriya} (and fuzzy permutations) -# -# Meaning: Script 'Oriya' -# -return <<'END'; -0B01 0B03 Oriya -0B05 0B0C Oriya -0B0F 0B10 Oriya -0B13 0B28 Oriya -0B2A 0B30 Oriya -0B32 0B33 Oriya -0B35 0B39 Oriya -0B3C 0B44 Oriya -0B47 0B48 Oriya -0B4B 0B4D Oriya -0B56 0B57 Oriya -0B5C 0B5D Oriya -0B5F 0B63 Oriya -0B66 0B71 Oriya -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Osma.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Osma.pl deleted file mode 100644 index d0e3e0c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Osma.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Osmanya} (and fuzzy permutations) -# -# Meaning: Script 'Osmanya' -# -return <<'END'; -10480 1049D Osmanya -104A0 104A9 Osmanya -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherAlp.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherAlp.pl deleted file mode 100644 index 5b353b3..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherAlp.pl +++ /dev/null @@ -1,138 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{OtherAlphabetic} (and fuzzy permutations) -# -# Meaning: Extended property 'Other_Alphabetic' -# -return <<'END'; -0345 Other_Alphabetic -05B0 05BD Other_Alphabetic -05BF Other_Alphabetic -05C1 05C2 Other_Alphabetic -05C4 05C5 Other_Alphabetic -05C7 Other_Alphabetic -0610 061A Other_Alphabetic -064B 0657 Other_Alphabetic -0659 065E Other_Alphabetic -0670 Other_Alphabetic -06D6 06DC Other_Alphabetic -06E1 06E4 Other_Alphabetic -06E7 06E8 Other_Alphabetic -06ED Other_Alphabetic -0711 Other_Alphabetic -0730 073F Other_Alphabetic -07A6 07B0 Other_Alphabetic -0901 0903 Other_Alphabetic -093E 094C Other_Alphabetic -0962 0963 Other_Alphabetic -0981 0983 Other_Alphabetic -09BE 09C4 Other_Alphabetic -09C7 09C8 Other_Alphabetic -09CB 09CC Other_Alphabetic -09D7 Other_Alphabetic -09E2 09E3 Other_Alphabetic -0A01 0A03 Other_Alphabetic -0A3E 0A42 Other_Alphabetic -0A47 0A48 Other_Alphabetic -0A4B 0A4C Other_Alphabetic -0A51 Other_Alphabetic -0A70 0A71 Other_Alphabetic -0A75 Other_Alphabetic -0A81 0A83 Other_Alphabetic -0ABE 0AC5 Other_Alphabetic -0AC7 0AC9 Other_Alphabetic -0ACB 0ACC Other_Alphabetic -0AE2 0AE3 Other_Alphabetic -0B01 0B03 Other_Alphabetic -0B3E 0B44 Other_Alphabetic -0B47 0B48 Other_Alphabetic -0B4B 0B4C Other_Alphabetic -0B56 0B57 Other_Alphabetic -0B62 0B63 Other_Alphabetic -0B82 Other_Alphabetic -0BBE 0BC2 Other_Alphabetic -0BC6 0BC8 Other_Alphabetic -0BCA 0BCC Other_Alphabetic -0BD7 Other_Alphabetic -0C01 0C03 Other_Alphabetic -0C3E 0C44 Other_Alphabetic -0C46 0C48 Other_Alphabetic -0C4A 0C4C Other_Alphabetic -0C55 0C56 Other_Alphabetic -0C62 0C63 Other_Alphabetic -0C82 0C83 Other_Alphabetic -0CBE 0CC4 Other_Alphabetic -0CC6 0CC8 Other_Alphabetic -0CCA 0CCC Other_Alphabetic -0CD5 0CD6 Other_Alphabetic -0CE2 0CE3 Other_Alphabetic -0D02 0D03 Other_Alphabetic -0D3E 0D44 Other_Alphabetic -0D46 0D48 Other_Alphabetic -0D4A 0D4C Other_Alphabetic -0D57 Other_Alphabetic -0D62 0D63 Other_Alphabetic -0D82 0D83 Other_Alphabetic -0DCF 0DD4 Other_Alphabetic -0DD6 Other_Alphabetic -0DD8 0DDF Other_Alphabetic -0DF2 0DF3 Other_Alphabetic -0E31 Other_Alphabetic -0E34 0E3A Other_Alphabetic -0E4D Other_Alphabetic -0EB1 Other_Alphabetic -0EB4 0EB9 Other_Alphabetic -0EBB 0EBC Other_Alphabetic -0ECD Other_Alphabetic -0F71 0F81 Other_Alphabetic -0F90 0F97 Other_Alphabetic -0F99 0FBC Other_Alphabetic -102B 1036 Other_Alphabetic -1038 Other_Alphabetic -103B 103E Other_Alphabetic -1056 1059 Other_Alphabetic -105E 1060 Other_Alphabetic -1062 Other_Alphabetic -1067 1068 Other_Alphabetic -1071 1074 Other_Alphabetic -1082 1086 Other_Alphabetic -135F Other_Alphabetic -1712 1713 Other_Alphabetic -1732 1733 Other_Alphabetic -1752 1753 Other_Alphabetic -1772 1773 Other_Alphabetic -17B6 17C8 Other_Alphabetic -18A9 Other_Alphabetic -1920 192B Other_Alphabetic -1930 1938 Other_Alphabetic -19B0 19C0 Other_Alphabetic -19C8 19C9 Other_Alphabetic -1A17 1A1B Other_Alphabetic -1B00 1B04 Other_Alphabetic -1B35 1B43 Other_Alphabetic -1B80 1B82 Other_Alphabetic -1BA1 1BA9 Other_Alphabetic -1C24 1C35 Other_Alphabetic -24B6 24E9 Other_Alphabetic -2DE0 2DFF Other_Alphabetic -A823 A827 Other_Alphabetic -A880 A881 Other_Alphabetic -A8B4 A8C3 Other_Alphabetic -A926 A92A Other_Alphabetic -A947 A952 Other_Alphabetic -AA29 AA36 Other_Alphabetic -AA43 Other_Alphabetic -AA4C AA4D Other_Alphabetic -FB1E Other_Alphabetic -10A01 10A03 Other_Alphabetic -10A05 10A06 Other_Alphabetic -10A0C 10A0F Other_Alphabetic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherDef.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherDef.pl deleted file mode 100644 index e1dac02..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherDef.pl +++ /dev/null @@ -1,26 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{OtherDefaultIgnorableCodePoint} (and fuzzy permutations) -# -# Meaning: Extended property 'Other_Default_Ignorable_Code_Point' -# -return <<'END'; -034F Other_Default_Ignorable_Code_Point -115F 1160 Other_Default_Ignorable_Code_Point -2065 2069 Other_Default_Ignorable_Code_Point -3164 Other_Default_Ignorable_Code_Point -FFA0 Other_Default_Ignorable_Code_Point -FFF0 FFF8 Other_Default_Ignorable_Code_Point -E0000 Other_Default_Ignorable_Code_Point -E0002 E001F Other_Default_Ignorable_Code_Point -E0080 E00FF Other_Default_Ignorable_Code_Point -E01F0 E0FFF Other_Default_Ignorable_Code_Point -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherGra.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherGra.pl deleted file mode 100644 index cc10488..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherGra.pl +++ /dev/null @@ -1,32 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{OtherGraphemeExtend} (and fuzzy permutations) -# -# Meaning: Extended property 'Other_Grapheme_Extend' -# -return <<'END'; -09BE Other_Grapheme_Extend -09D7 Other_Grapheme_Extend -0B3E Other_Grapheme_Extend -0B57 Other_Grapheme_Extend -0BBE Other_Grapheme_Extend -0BD7 Other_Grapheme_Extend -0CC2 Other_Grapheme_Extend -0CD5 0CD6 Other_Grapheme_Extend -0D3E Other_Grapheme_Extend -0D57 Other_Grapheme_Extend -0DCF Other_Grapheme_Extend -0DDF Other_Grapheme_Extend -200C 200D Other_Grapheme_Extend -FF9E FF9F Other_Grapheme_Extend -1D165 Other_Grapheme_Extend -1D16E 1D172 Other_Grapheme_Extend -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherIdC.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherIdC.pl deleted file mode 100644 index 39fa50a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherIdC.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{OtherIdContinue} (and fuzzy permutations) -# -# Meaning: Extended property 'Other_ID_Continue' -# -return <<'END'; -00B7 Other_ID_Continue -0387 Other_ID_Continue -1369 1371 Other_ID_Continue -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherIdS.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherIdS.pl deleted file mode 100644 index 1cd40ab..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherIdS.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{OtherIdStart} (and fuzzy permutations) -# -# Meaning: Extended property 'Other_ID_Start' -# -return <<'END'; -2118 Other_ID_Start -212E Other_ID_Start -309B 309C Other_ID_Start -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherLow.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherLow.pl deleted file mode 100644 index 6a8d955..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherLow.pl +++ /dev/null @@ -1,29 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{OtherLowercase} (and fuzzy permutations) -# -# Meaning: Extended property 'Other_Lowercase' -# -return <<'END'; -02B0 02B8 Other_Lowercase -02C0 02C1 Other_Lowercase -02E0 02E4 Other_Lowercase -0345 Other_Lowercase -037A Other_Lowercase -1D2C 1D61 Other_Lowercase -1D78 Other_Lowercase -1D9B 1DBF Other_Lowercase -2090 2094 Other_Lowercase -2170 217F Other_Lowercase -24D0 24E9 Other_Lowercase -2C7D Other_Lowercase -A770 Other_Lowercase -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherMat.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherMat.pl deleted file mode 100644 index d3936cf..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherMat.pl +++ /dev/null @@ -1,115 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{OtherMath} (and fuzzy permutations) -# -# Meaning: Extended property 'Other_Math' -# -return <<'END'; -005E Other_Math -03D0 03D2 Other_Math -03D5 Other_Math -03F0 03F1 Other_Math -03F4 03F5 Other_Math -2016 Other_Math -2032 2034 Other_Math -2040 Other_Math -2061 2064 Other_Math -207D 207E Other_Math -208D 208E Other_Math -20D0 20DC Other_Math -20E1 Other_Math -20E5 20E6 Other_Math -20EB 20EF Other_Math -2102 Other_Math -210A 2113 Other_Math -2115 Other_Math -2119 211D Other_Math -2124 Other_Math -2128 2129 Other_Math -212C 212D Other_Math -212F 2131 Other_Math -2133 2138 Other_Math -213C 213F Other_Math -2145 2149 Other_Math -2195 2199 Other_Math -219C 219F Other_Math -21A1 21A2 Other_Math -21A4 21A5 Other_Math -21A7 Other_Math -21A9 21AD Other_Math -21B0 21B1 Other_Math -21B6 21B7 Other_Math -21BC 21CD Other_Math -21D0 21D1 Other_Math -21D3 Other_Math -21D5 21DB Other_Math -21DD Other_Math -21E4 21E5 Other_Math -23B4 23B5 Other_Math -23B7 Other_Math -23D0 Other_Math -23E2 Other_Math -25A0 25A1 Other_Math -25AE 25B6 Other_Math -25BC 25C0 Other_Math -25C6 25C7 Other_Math -25CA 25CB Other_Math -25CF 25D3 Other_Math -25E2 Other_Math -25E4 Other_Math -25E7 25EC Other_Math -2605 2606 Other_Math -2640 Other_Math -2642 Other_Math -2660 2663 Other_Math -266D 266E Other_Math -27C5 27C6 Other_Math -27E6 27EF Other_Math -2983 2998 Other_Math -29D8 29DB Other_Math -29FC 29FD Other_Math -FE61 Other_Math -FE63 Other_Math -FE68 Other_Math -FF3C Other_Math -FF3E Other_Math -1D400 1D454 Other_Math -1D456 1D49C Other_Math -1D49E 1D49F Other_Math -1D4A2 Other_Math -1D4A5 1D4A6 Other_Math -1D4A9 1D4AC Other_Math -1D4AE 1D4B9 Other_Math -1D4BB Other_Math -1D4BD 1D4C3 Other_Math -1D4C5 1D505 Other_Math -1D507 1D50A Other_Math -1D50D 1D514 Other_Math -1D516 1D51C Other_Math -1D51E 1D539 Other_Math -1D53B 1D53E Other_Math -1D540 1D544 Other_Math -1D546 Other_Math -1D54A 1D550 Other_Math -1D552 1D6A5 Other_Math -1D6A8 1D6C0 Other_Math -1D6C2 1D6DA Other_Math -1D6DC 1D6FA Other_Math -1D6FC 1D714 Other_Math -1D716 1D734 Other_Math -1D736 1D74E Other_Math -1D750 1D76E Other_Math -1D770 1D788 Other_Math -1D78A 1D7A8 Other_Math -1D7AA 1D7C2 Other_Math -1D7C4 1D7CB Other_Math -1D7CE 1D7FF Other_Math -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherUpp.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherUpp.pl deleted file mode 100644 index fac06b2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/OtherUpp.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{OtherUppercase} (and fuzzy permutations) -# -# Meaning: Extended property 'Other_Uppercase' -# -return <<'END'; -2160 216F Other_Uppercase -24B6 24CF Other_Uppercase -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/P.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/P.pl deleted file mode 100644 index 0f35b51..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/P.pl +++ /dev/null @@ -1,129 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{P} -# \p{P} (and fuzzy permutations) -# -# Meaning: Major Category 'P' -# -return <<'END'; -0021 0023 -0025 002A -002C 002F -003A 003B -003F 0040 -005B 005D -005F -007B -007D -00A1 -00AB -00B7 -00BB -00BF -037E -0387 -055A 055F -0589 058A -05BE -05C0 -05C3 -05C6 -05F3 05F4 -0609 060A -060C 060D -061B -061E 061F -066A 066D -06D4 -0700 070D -07F7 07F9 -0964 0965 -0970 -0DF4 -0E4F -0E5A 0E5B -0F04 0F12 -0F3A 0F3D -0F85 -0FD0 0FD4 -104A 104F -10FB -1361 1368 -166D 166E -169B 169C -16EB 16ED -1735 1736 -17D4 17D6 -17D8 17DA -1800 180A -1944 1945 -19DE 19DF -1A1E 1A1F -1B5A 1B60 -1C3B 1C3F -1C7E 1C7F -2010 2027 -2030 2043 -2045 2051 -2053 205E -207D 207E -208D 208E -2329 232A -2768 2775 -27C5 27C6 -27E6 27EF -2983 2998 -29D8 29DB -29FC 29FD -2CF9 2CFC -2CFE 2CFF -2E00 2E2E -2E30 -3001 3003 -3008 3011 -3014 301F -3030 -303D -30A0 -30FB -A60D A60F -A673 -A67E -A874 A877 -A8CE A8CF -A92E A92F -A95F -AA5C AA5F -FD3E FD3F -FE10 FE19 -FE30 FE52 -FE54 FE61 -FE63 -FE68 -FE6A FE6B -FF01 FF03 -FF05 FF0A -FF0C FF0F -FF1A FF1B -FF1F FF20 -FF3B FF3D -FF3F -FF5B -FF5D -FF5F FF65 -10100 10101 -1039F -103D0 -1091F -1093F -10A50 10A58 -12470 12473 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PatSyn.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PatSyn.pl deleted file mode 100644 index 23cd998..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PatSyn.pl +++ /dev/null @@ -1,41 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Pattern_Syntax' -# -return <<'END'; -0021 002F Pattern_Syntax -003A 0040 Pattern_Syntax -005B 005E Pattern_Syntax -0060 Pattern_Syntax -007B 007E Pattern_Syntax -00A1 00A7 Pattern_Syntax -00A9 Pattern_Syntax -00AB 00AC Pattern_Syntax -00AE Pattern_Syntax -00B0 00B1 Pattern_Syntax -00B6 Pattern_Syntax -00BB Pattern_Syntax -00BF Pattern_Syntax -00D7 Pattern_Syntax -00F7 Pattern_Syntax -2010 2027 Pattern_Syntax -2030 203E Pattern_Syntax -2041 2053 Pattern_Syntax -2055 205E Pattern_Syntax -2190 245F Pattern_Syntax -2500 2775 Pattern_Syntax -2794 2BFF Pattern_Syntax -2E00 2E7F Pattern_Syntax -3001 3003 Pattern_Syntax -3008 3020 Pattern_Syntax -3030 Pattern_Syntax -FD3E FD3F Pattern_Syntax -FE45 FE46 Pattern_Syntax -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PatWS.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PatWS.pl deleted file mode 100644 index aef8c27..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PatWS.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Pattern_White_Space' -# -return <<'END'; -0009 000D Pattern_White_Space -0020 Pattern_White_Space -0085 Pattern_White_Space -200E 200F Pattern_White_Space -2028 2029 Pattern_White_Space -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PatternS.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PatternS.pl deleted file mode 100644 index 3c20f86..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PatternS.pl +++ /dev/null @@ -1,44 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PatternSyntax} (and fuzzy permutations) -# -# Meaning: Extended property 'Pattern_Syntax' -# -return <<'END'; -0021 002F Pattern_Syntax -003A 0040 Pattern_Syntax -005B 005E Pattern_Syntax -0060 Pattern_Syntax -007B 007E Pattern_Syntax -00A1 00A7 Pattern_Syntax -00A9 Pattern_Syntax -00AB 00AC Pattern_Syntax -00AE Pattern_Syntax -00B0 00B1 Pattern_Syntax -00B6 Pattern_Syntax -00BB Pattern_Syntax -00BF Pattern_Syntax -00D7 Pattern_Syntax -00F7 Pattern_Syntax -2010 2027 Pattern_Syntax -2030 203E Pattern_Syntax -2041 2053 Pattern_Syntax -2055 205E Pattern_Syntax -2190 245F Pattern_Syntax -2500 2775 Pattern_Syntax -2794 2BFF Pattern_Syntax -2E00 2E7F Pattern_Syntax -3001 3003 Pattern_Syntax -3008 3020 Pattern_Syntax -3030 Pattern_Syntax -FD3E FD3F Pattern_Syntax -FE45 FE46 Pattern_Syntax -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PatternW.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PatternW.pl deleted file mode 100644 index ff038d6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PatternW.pl +++ /dev/null @@ -1,21 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PatternWhiteSpace} (and fuzzy permutations) -# -# Meaning: Extended property 'Pattern_White_Space' -# -return <<'END'; -0009 000D Pattern_White_Space -0020 Pattern_White_Space -0085 Pattern_White_Space -200E 200F Pattern_White_Space -2028 2029 Pattern_White_Space -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pc.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pc.pl deleted file mode 100644 index efd94ab..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pc.pl +++ /dev/null @@ -1,23 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Pc} -# \p{Pc} (and fuzzy permutations) -# -# Meaning: General Category 'Pc' -# -return <<'END'; -005F -203F 2040 -2054 -FE33 FE34 -FE4D FE4F -FF3F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pd.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pd.pl deleted file mode 100644 index 6526cb1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pd.pl +++ /dev/null @@ -1,31 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Pd} -# \p{Pd} (and fuzzy permutations) -# -# Meaning: General Category 'Pd' -# -return <<'END'; -002D -058A -05BE -1806 -2010 2015 -2E17 -2E1A -301C -3030 -30A0 -FE31 FE32 -FE58 -FE63 -FF0D -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pe.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pe.pl deleted file mode 100644 index 39e9583..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pe.pl +++ /dev/null @@ -1,87 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Pe} -# \p{Pe} (and fuzzy permutations) -# -# Meaning: General Category 'Pe' -# -return <<'END'; -0029 -005D -007D -0F3B -0F3D -169C -2046 -207E -208E -232A -2769 -276B -276D -276F -2771 -2773 -2775 -27C6 -27E7 -27E9 -27EB -27ED -27EF -2984 -2986 -2988 -298A -298C -298E -2990 -2992 -2994 -2996 -2998 -29D9 -29DB -29FD -2E23 -2E25 -2E27 -2E29 -3009 -300B -300D -300F -3011 -3015 -3017 -3019 -301B -301E 301F -FD3F -FE18 -FE36 -FE38 -FE3A -FE3C -FE3E -FE40 -FE42 -FE44 -FE48 -FE5A -FE5C -FE5E -FF09 -FF3D -FF5D -FF60 -FF63 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PerlSpac.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PerlSpac.pl deleted file mode 100644 index d4b72d2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PerlSpac.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PerlSpace} -# -return <<'END'; -0009 000A -000C 000D -0020 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PerlWord.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PerlWord.pl deleted file mode 100644 index 9de127f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PerlWord.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PerlWord} -# -return <<'END'; -0030 0039 -0041 005A -005F -0061 007A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pf.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pf.pl deleted file mode 100644 index 05892c2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pf.pl +++ /dev/null @@ -1,27 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Pf} -# \p{Pf} (and fuzzy permutations) -# -# Meaning: General Category 'Pf' -# -return <<'END'; -00BB -2019 -201D -203A -2E03 -2E05 -2E0A -2E0D -2E1D -2E21 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PhagsPa.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PhagsPa.pl deleted file mode 100644 index ec1d84d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PhagsPa.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PhagsPa} (and fuzzy permutations) -# -# Meaning: Script 'Phags_Pa' -# -return <<'END'; -A840 A877 Phags_Pa -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Phnx.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Phnx.pl deleted file mode 100644 index 40667bd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Phnx.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Phoenician} (and fuzzy permutations) -# -# Meaning: Script 'Phoenician' -# -return <<'END'; -10900 10919 Phoenician -1091F Phoenician -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pi.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pi.pl deleted file mode 100644 index 009b0ba..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Pi.pl +++ /dev/null @@ -1,28 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Pi} -# \p{Pi} (and fuzzy permutations) -# -# Meaning: General Category 'Pi' -# -return <<'END'; -00AB -2018 -201B 201C -201F -2039 -2E02 -2E04 -2E09 -2E0C -2E1C -2E20 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Po.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Po.pl deleted file mode 100644 index d97d5ac..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Po.pl +++ /dev/null @@ -1,125 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Po} -# \p{Po} (and fuzzy permutations) -# -# Meaning: General Category 'Po' -# -return <<'END'; -0021 0023 -0025 0027 -002A -002C -002E 002F -003A 003B -003F 0040 -005C -00A1 -00B7 -00BF -037E -0387 -055A 055F -0589 -05C0 -05C3 -05C6 -05F3 05F4 -0609 060A -060C 060D -061B -061E 061F -066A 066D -06D4 -0700 070D -07F7 07F9 -0964 0965 -0970 -0DF4 -0E4F -0E5A 0E5B -0F04 0F12 -0F85 -0FD0 0FD4 -104A 104F -10FB -1361 1368 -166D 166E -16EB 16ED -1735 1736 -17D4 17D6 -17D8 17DA -1800 1805 -1807 180A -1944 1945 -19DE 19DF -1A1E 1A1F -1B5A 1B60 -1C3B 1C3F -1C7E 1C7F -2016 2017 -2020 2027 -2030 2038 -203B 203E -2041 2043 -2047 2051 -2053 -2055 205E -2CF9 2CFC -2CFE 2CFF -2E00 2E01 -2E06 2E08 -2E0B -2E0E 2E16 -2E18 2E19 -2E1B -2E1E 2E1F -2E2A 2E2E -2E30 -3001 3003 -303D -30FB -A60D A60F -A673 -A67E -A874 A877 -A8CE A8CF -A92E A92F -A95F -AA5C AA5F -FE10 FE16 -FE19 -FE30 -FE45 FE46 -FE49 FE4C -FE50 FE52 -FE54 FE57 -FE5F FE61 -FE68 -FE6A FE6B -FF01 FF03 -FF05 FF07 -FF0A -FF0C -FF0E FF0F -FF1A FF1B -FF1F FF20 -FF3C -FF61 -FF64 FF65 -10100 10101 -1039F -103D0 -1091F -1093F -10A50 10A58 -12470 12473 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixAln.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixAln.pl deleted file mode 100644 index 919de4c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixAln.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PosixAlnum} -# -return <<'END'; -0030 0039 -0041 005A -0061 007A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixAlp.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixAlp.pl deleted file mode 100644 index 529ec7c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixAlp.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PosixAlpha} -# -return <<'END'; -0041 005A -0061 007A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixBla.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixBla.pl deleted file mode 100644 index 6d506a2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixBla.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PosixBlank} -# -return <<'END'; -0009 -0020 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixCnt.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixCnt.pl deleted file mode 100644 index a1061d9..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixCnt.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PosixCntrl} -# -return <<'END'; -0000 001F -007F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixDig.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixDig.pl deleted file mode 100644 index 64bbd9a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixDig.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PosixDigit} -# -return <<'END'; -0030 0039 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixGra.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixGra.pl deleted file mode 100644 index 2505c79..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixGra.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PosixGraph} -# -return <<'END'; -0021 007E -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixLow.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixLow.pl deleted file mode 100644 index 7e5104b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixLow.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PosixLower} -# -return <<'END'; -0061 007A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixPri.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixPri.pl deleted file mode 100644 index 69c43bb..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixPri.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PosixPrint} -# -return <<'END'; -0020 007E -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixPun.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixPun.pl deleted file mode 100644 index cf7fc9c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixPun.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PosixPunct} -# -return <<'END'; -0021 002F -003A 0040 -005B 0060 -007B 007E -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixSpa.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixSpa.pl deleted file mode 100644 index b432354..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixSpa.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PosixSpace} -# -return <<'END'; -0009 000D -0020 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixUpp.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixUpp.pl deleted file mode 100644 index 703e1e0..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/PosixUpp.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{PosixUpper} -# -return <<'END'; -0041 005A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Print.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Print.pl deleted file mode 100644 index 86eaa62..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Print.pl +++ /dev/null @@ -1,464 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Print} -# -# Meaning: [[:Print:]] -# -return <<'END'; -0009 000D -0020 007E -0085 -00A0 0377 -037A 037E -0384 038A -038C -038E 03A1 -03A3 0523 -0531 0556 -0559 055F -0561 0587 -0589 058A -0591 05C7 -05D0 05EA -05F0 05F4 -0600 0603 -0606 061B -061E 061F -0621 065E -0660 070D -070F 074A -074D 07B1 -07C0 07FA -0901 0939 -093C 094D -0950 0954 -0958 0972 -097B 097F -0981 0983 -0985 098C -098F 0990 -0993 09A8 -09AA 09B0 -09B2 -09B6 09B9 -09BC 09C4 -09C7 09C8 -09CB 09CE -09D7 -09DC 09DD -09DF 09E3 -09E6 09FA -0A01 0A03 -0A05 0A0A -0A0F 0A10 -0A13 0A28 -0A2A 0A30 -0A32 0A33 -0A35 0A36 -0A38 0A39 -0A3C -0A3E 0A42 -0A47 0A48 -0A4B 0A4D -0A51 -0A59 0A5C -0A5E -0A66 0A75 -0A81 0A83 -0A85 0A8D -0A8F 0A91 -0A93 0AA8 -0AAA 0AB0 -0AB2 0AB3 -0AB5 0AB9 -0ABC 0AC5 -0AC7 0AC9 -0ACB 0ACD -0AD0 -0AE0 0AE3 -0AE6 0AEF -0AF1 -0B01 0B03 -0B05 0B0C -0B0F 0B10 -0B13 0B28 -0B2A 0B30 -0B32 0B33 -0B35 0B39 -0B3C 0B44 -0B47 0B48 -0B4B 0B4D -0B56 0B57 -0B5C 0B5D -0B5F 0B63 -0B66 0B71 -0B82 0B83 -0B85 0B8A -0B8E 0B90 -0B92 0B95 -0B99 0B9A -0B9C -0B9E 0B9F -0BA3 0BA4 -0BA8 0BAA -0BAE 0BB9 -0BBE 0BC2 -0BC6 0BC8 -0BCA 0BCD -0BD0 -0BD7 -0BE6 0BFA -0C01 0C03 -0C05 0C0C -0C0E 0C10 -0C12 0C28 -0C2A 0C33 -0C35 0C39 -0C3D 0C44 -0C46 0C48 -0C4A 0C4D -0C55 0C56 -0C58 0C59 -0C60 0C63 -0C66 0C6F -0C78 0C7F -0C82 0C83 -0C85 0C8C -0C8E 0C90 -0C92 0CA8 -0CAA 0CB3 -0CB5 0CB9 -0CBC 0CC4 -0CC6 0CC8 -0CCA 0CCD -0CD5 0CD6 -0CDE -0CE0 0CE3 -0CE6 0CEF -0CF1 0CF2 -0D02 0D03 -0D05 0D0C -0D0E 0D10 -0D12 0D28 -0D2A 0D39 -0D3D 0D44 -0D46 0D48 -0D4A 0D4D -0D57 -0D60 0D63 -0D66 0D75 -0D79 0D7F -0D82 0D83 -0D85 0D96 -0D9A 0DB1 -0DB3 0DBB -0DBD -0DC0 0DC6 -0DCA -0DCF 0DD4 -0DD6 -0DD8 0DDF -0DF2 0DF4 -0E01 0E3A -0E3F 0E5B -0E81 0E82 -0E84 -0E87 0E88 -0E8A -0E8D -0E94 0E97 -0E99 0E9F -0EA1 0EA3 -0EA5 -0EA7 -0EAA 0EAB -0EAD 0EB9 -0EBB 0EBD -0EC0 0EC4 -0EC6 -0EC8 0ECD -0ED0 0ED9 -0EDC 0EDD -0F00 0F47 -0F49 0F6C -0F71 0F8B -0F90 0F97 -0F99 0FBC -0FBE 0FCC -0FCE 0FD4 -1000 1099 -109E 10C5 -10D0 10FC -1100 1159 -115F 11A2 -11A8 11F9 -1200 1248 -124A 124D -1250 1256 -1258 -125A 125D -1260 1288 -128A 128D -1290 12B0 -12B2 12B5 -12B8 12BE -12C0 -12C2 12C5 -12C8 12D6 -12D8 1310 -1312 1315 -1318 135A -135F 137C -1380 1399 -13A0 13F4 -1401 1676 -1680 169C -16A0 16F0 -1700 170C -170E 1714 -1720 1736 -1740 1753 -1760 176C -176E 1770 -1772 1773 -1780 17DD -17E0 17E9 -17F0 17F9 -1800 180E -1810 1819 -1820 1877 -1880 18AA -1900 191C -1920 192B -1930 193B -1940 -1944 196D -1970 1974 -1980 19A9 -19B0 19C9 -19D0 19D9 -19DE 1A1B -1A1E 1A1F -1B00 1B4B -1B50 1B7C -1B80 1BAA -1BAE 1BB9 -1C00 1C37 -1C3B 1C49 -1C4D 1C7F -1D00 1DE6 -1DFE 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FC4 -1FC6 1FD3 -1FD6 1FDB -1FDD 1FEF -1FF2 1FF4 -1FF6 1FFE -2000 2064 -206A 2071 -2074 208E -2090 2094 -20A0 20B5 -20D0 20F0 -2100 214F -2153 2188 -2190 23E7 -2400 2426 -2440 244A -2460 269D -26A0 26BC -26C0 26C3 -2701 2704 -2706 2709 -270C 2727 -2729 274B -274D -274F 2752 -2756 -2758 275E -2761 2794 -2798 27AF -27B1 27BE -27C0 27CA -27CC -27D0 2B4C -2B50 2B54 -2C00 2C2E -2C30 2C5E -2C60 2C6F -2C71 2C7D -2C80 2CEA -2CF9 2D25 -2D30 2D65 -2D6F -2D80 2D96 -2DA0 2DA6 -2DA8 2DAE -2DB0 2DB6 -2DB8 2DBE -2DC0 2DC6 -2DC8 2DCE -2DD0 2DD6 -2DD8 2DDE -2DE0 2E30 -2E80 2E99 -2E9B 2EF3 -2F00 2FD5 -2FF0 2FFB -3000 303F -3041 3096 -3099 30FF -3105 312D -3131 318E -3190 31B7 -31C0 31E3 -31F0 321E -3220 3243 -3250 32FE -3300 4DB5 -4DC0 9FC3 -A000 A48C -A490 A4C6 -A500 A62B -A640 A65F -A662 A673 -A67C A697 -A700 A78C -A7FB A82B -A840 A877 -A880 A8C4 -A8CE A8D9 -A900 A953 -A95F -AA00 AA36 -AA40 AA4D -AA50 AA59 -AA5C AA5F -AC00 D7A3 -E000 FA2D -FA30 FA6A -FA70 FAD9 -FB00 FB06 -FB13 FB17 -FB1D FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FBB1 -FBD3 FD3F -FD50 FD8F -FD92 FDC7 -FDF0 FDFD -FE00 FE19 -FE20 FE26 -FE30 FE52 -FE54 FE66 -FE68 FE6B -FE70 FE74 -FE76 FEFC -FEFF -FF01 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -FFE0 FFE6 -FFE8 FFEE -FFF9 FFFD -10000 1000B -1000D 10026 -10028 1003A -1003C 1003D -1003F 1004D -10050 1005D -10080 100FA -10100 10102 -10107 10133 -10137 1018A -10190 1019B -101D0 101FD -10280 1029C -102A0 102D0 -10300 1031E -10320 10323 -10330 1034A -10380 1039D -1039F 103C3 -103C8 103D5 -10400 1049D -104A0 104A9 -10800 10805 -10808 -1080A 10835 -10837 10838 -1083C -1083F -10900 10919 -1091F 10939 -1093F -10A00 10A03 -10A05 10A06 -10A0C 10A13 -10A15 10A17 -10A19 10A33 -10A38 10A3A -10A3F 10A47 -10A50 10A58 -12000 1236E -12400 12462 -12470 12473 -1D000 1D0F5 -1D100 1D126 -1D129 1D1DD -1D200 1D245 -1D300 1D356 -1D360 1D371 -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D7CB -1D7CE 1D7FF -1F000 1F02B -1F030 1F093 -20000 2A6D6 -2F800 2FA1D -E0001 -E0020 E007F -E0100 E01EF -F0000 FFFFD -100000 10FFFD -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ps.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ps.pl deleted file mode 100644 index 1c5f929..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ps.pl +++ /dev/null @@ -1,89 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Ps} -# \p{Ps} (and fuzzy permutations) -# -# Meaning: General Category 'Ps' -# -return <<'END'; -0028 -005B -007B -0F3A -0F3C -169B -201A -201E -2045 -207D -208D -2329 -2768 -276A -276C -276E -2770 -2772 -2774 -27C5 -27E6 -27E8 -27EA -27EC -27EE -2983 -2985 -2987 -2989 -298B -298D -298F -2991 -2993 -2995 -2997 -29D8 -29DA -29FC -2E22 -2E24 -2E26 -2E28 -3008 -300A -300C -300E -3010 -3014 -3016 -3018 -301A -301D -FD3E -FE17 -FE35 -FE37 -FE39 -FE3B -FE3D -FE3F -FE41 -FE43 -FE47 -FE59 -FE5B -FE5D -FF08 -FF3B -FF5B -FF5F -FF62 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Punct.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Punct.pl deleted file mode 100644 index 525108a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Punct.pl +++ /dev/null @@ -1,128 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Punct} -# -# Meaning: [[:Punct:]] -# -return <<'END'; -0021 0023 -0025 002A -002C 002F -003A 003B -003F 0040 -005B 005D -005F -007B -007D -00A1 -00AB -00B7 -00BB -00BF -037E -0387 -055A 055F -0589 058A -05BE -05C0 -05C3 -05C6 -05F3 05F4 -0609 060A -060C 060D -061B -061E 061F -066A 066D -06D4 -0700 070D -07F7 07F9 -0964 0965 -0970 -0DF4 -0E4F -0E5A 0E5B -0F04 0F12 -0F3A 0F3D -0F85 -0FD0 0FD4 -104A 104F -10FB -1361 1368 -166D 166E -169B 169C -16EB 16ED -1735 1736 -17D4 17D6 -17D8 17DA -1800 180A -1944 1945 -19DE 19DF -1A1E 1A1F -1B5A 1B60 -1C3B 1C3F -1C7E 1C7F -2010 2027 -2030 2043 -2045 2051 -2053 205E -207D 207E -208D 208E -2329 232A -2768 2775 -27C5 27C6 -27E6 27EF -2983 2998 -29D8 29DB -29FC 29FD -2CF9 2CFC -2CFE 2CFF -2E00 2E2E -2E30 -3001 3003 -3008 3011 -3014 301F -3030 -303D -30A0 -30FB -A60D A60F -A673 -A67E -A874 A877 -A8CE A8CF -A92E A92F -A95F -AA5C AA5F -FD3E FD3F -FE10 FE19 -FE30 FE52 -FE54 FE61 -FE63 -FE68 -FE6A FE6B -FF01 FF03 -FF05 FF0A -FF0C FF0F -FF1A FF1B -FF1F FF20 -FF3B FF3D -FF3F -FF5B -FF5D -FF5F FF65 -10100 10101 -1039F -103D0 -1091F -1093F -10A50 10A58 -12470 12473 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/QMark.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/QMark.pl deleted file mode 100644 index fa5c8ea..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/QMark.pl +++ /dev/null @@ -1,25 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Quotation_Mark' -# -return <<'END'; -0022 Quotation_Mark -0027 Quotation_Mark -00AB Quotation_Mark -00BB Quotation_Mark -2018 201F Quotation_Mark -2039 203A Quotation_Mark -300C 300F Quotation_Mark -301D 301F Quotation_Mark -FE41 FE44 Quotation_Mark -FF02 Quotation_Mark -FF07 Quotation_Mark -FF62 FF63 Quotation_Mark -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Qaai.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Qaai.pl deleted file mode 100644 index 10700dc..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Qaai.pl +++ /dev/null @@ -1,34 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Inherited} (and fuzzy permutations) -# -# Meaning: Script 'Inherited' -# -return <<'END'; -0300 036F Inherited -064B 0655 Inherited -0670 Inherited -0951 0952 Inherited -1DC0 1DE6 Inherited -1DFE 1DFF Inherited -200C 200D Inherited -20D0 20F0 Inherited -302A 302F Inherited -3099 309A Inherited -FE00 FE0F Inherited -FE20 FE26 Inherited -101FD Inherited -1D167 1D169 Inherited -1D17B 1D182 Inherited -1D185 1D18B Inherited -1D1AA 1D1AD Inherited -E0100 E01EF Inherited -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Quotatio.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Quotatio.pl deleted file mode 100644 index 710601a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Quotatio.pl +++ /dev/null @@ -1,28 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{QuotationMark} (and fuzzy permutations) -# -# Meaning: Extended property 'Quotation_Mark' -# -return <<'END'; -0022 Quotation_Mark -0027 Quotation_Mark -00AB Quotation_Mark -00BB Quotation_Mark -2018 201F Quotation_Mark -2039 203A Quotation_Mark -300C 300F Quotation_Mark -301D 301F Quotation_Mark -FE41 FE44 Quotation_Mark -FF02 Quotation_Mark -FF07 Quotation_Mark -FF62 FF63 Quotation_Mark -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Radical.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Radical.pl deleted file mode 100644 index af30a8a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Radical.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Radical' -# -return <<'END'; -2E80 2E99 Radical -2E9B 2EF3 Radical -2F00 2FD5 Radical -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Radical2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Radical2.pl deleted file mode 100644 index 64ebf0f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Radical2.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Radical} (and fuzzy permutations) -# -# Meaning: Extended property 'Radical' -# -return <<'END'; -2E80 2E99 Radical -2E9B 2EF3 Radical -2F00 2FD5 Radical -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Rjng.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Rjng.pl deleted file mode 100644 index 0e787dd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Rjng.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Rejang} (and fuzzy permutations) -# -# Meaning: Script 'Rejang' -# -return <<'END'; -A930 A953 Rejang -A95F Rejang -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Runr.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Runr.pl deleted file mode 100644 index b9c54d3..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Runr.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Runic} (and fuzzy permutations) -# -# Meaning: Script 'Runic' -# -return <<'END'; -16A0 16EA Runic -16EE 16F0 Runic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/S.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/S.pl deleted file mode 100644 index 181435b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/S.pl +++ /dev/null @@ -1,196 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{S} -# \p{S} (and fuzzy permutations) -# -# Meaning: Major Category 'S' -# -return <<'END'; -0024 -002B -003C 003E -005E -0060 -007C -007E -00A2 00A9 -00AC -00AE 00B1 -00B4 -00B6 -00B8 -00D7 -00F7 -02C2 02C5 -02D2 02DF -02E5 02EB -02ED -02EF 02FF -0375 -0384 0385 -03F6 -0482 -0606 0608 -060B -060E 060F -06E9 -06FD 06FE -07F6 -09F2 09F3 -09FA -0AF1 -0B70 -0BF3 0BFA -0C7F -0CF1 0CF2 -0D79 -0E3F -0F01 0F03 -0F13 0F17 -0F1A 0F1F -0F34 -0F36 -0F38 -0FBE 0FC5 -0FC7 0FCC -0FCE 0FCF -109E 109F -1360 -1390 1399 -17DB -1940 -19E0 19FF -1B61 1B6A -1B74 1B7C -1FBD -1FBF 1FC1 -1FCD 1FCF -1FDD 1FDF -1FED 1FEF -1FFD 1FFE -2044 -2052 -207A 207C -208A 208C -20A0 20B5 -2100 2101 -2103 2106 -2108 2109 -2114 -2116 2118 -211E 2123 -2125 -2127 -2129 -212E -213A 213B -2140 2144 -214A 214D -214F -2190 2328 -232B 23E7 -2400 2426 -2440 244A -249C 24E9 -2500 269D -26A0 26BC -26C0 26C3 -2701 2704 -2706 2709 -270C 2727 -2729 274B -274D -274F 2752 -2756 -2758 275E -2761 2767 -2794 -2798 27AF -27B1 27BE -27C0 27C4 -27C7 27CA -27CC -27D0 27E5 -27F0 2982 -2999 29D7 -29DC 29FB -29FE 2B4C -2B50 2B54 -2CE5 2CEA -2E80 2E99 -2E9B 2EF3 -2F00 2FD5 -2FF0 2FFB -3004 -3012 3013 -3020 -3036 3037 -303E 303F -309B 309C -3190 3191 -3196 319F -31C0 31E3 -3200 321E -322A 3243 -3250 -3260 327F -328A 32B0 -32C0 32FE -3300 33FF -4DC0 4DFF -A490 A4C6 -A700 A716 -A720 A721 -A789 A78A -A828 A82B -FB29 -FDFC FDFD -FE62 -FE64 FE66 -FE69 -FF04 -FF0B -FF1C FF1E -FF3E -FF40 -FF5C -FF5E -FFE0 FFE6 -FFE8 FFEE -FFFC FFFD -10102 -10137 1013F -10179 10189 -10190 1019B -101D0 101FC -1D000 1D0F5 -1D100 1D126 -1D129 1D164 -1D16A 1D16C -1D183 1D184 -1D18C 1D1A9 -1D1AE 1D1DD -1D200 1D241 -1D245 -1D300 1D356 -1D6C1 -1D6DB -1D6FB -1D715 -1D735 -1D74F -1D76F -1D789 -1D7A9 -1D7C3 -1F000 1F02B -1F030 1F093 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/SD.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/SD.pl deleted file mode 100644 index 609278f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/SD.pl +++ /dev/null @@ -1,44 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Soft_Dotted' -# -return <<'END'; -0069 006A Soft_Dotted -012F Soft_Dotted -0249 Soft_Dotted -0268 Soft_Dotted -029D Soft_Dotted -02B2 Soft_Dotted -03F3 Soft_Dotted -0456 Soft_Dotted -0458 Soft_Dotted -1D62 Soft_Dotted -1D96 Soft_Dotted -1DA4 Soft_Dotted -1DA8 Soft_Dotted -1E2D Soft_Dotted -1ECB Soft_Dotted -2071 Soft_Dotted -2148 2149 Soft_Dotted -2C7C Soft_Dotted -1D422 1D423 Soft_Dotted -1D456 1D457 Soft_Dotted -1D48A 1D48B Soft_Dotted -1D4BE 1D4BF Soft_Dotted -1D4F2 1D4F3 Soft_Dotted -1D526 1D527 Soft_Dotted -1D55A 1D55B Soft_Dotted -1D58E 1D58F Soft_Dotted -1D5C2 1D5C3 Soft_Dotted -1D5F6 1D5F7 Soft_Dotted -1D62A 1D62B Soft_Dotted -1D65E 1D65F Soft_Dotted -1D692 1D693 Soft_Dotted -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/STerm.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/STerm.pl deleted file mode 100644 index 57df6a2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/STerm.pl +++ /dev/null @@ -1,50 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'STerm' -# -return <<'END'; -0021 STerm -002E STerm -003F STerm -055C STerm -055E STerm -0589 STerm -061F STerm -06D4 STerm -0700 0702 STerm -07F9 STerm -0964 0965 STerm -104A 104B STerm -1362 STerm -1367 1368 STerm -166E STerm -1803 STerm -1809 STerm -1944 1945 STerm -1B5A 1B5B STerm -1B5E 1B5F STerm -1C3B 1C3C STerm -1C7E 1C7F STerm -203C 203D STerm -2047 2049 STerm -2E2E STerm -3002 STerm -A60E A60F STerm -A876 A877 STerm -A8CE A8CF STerm -A92F STerm -AA5D AA5F STerm -FE52 STerm -FE56 FE57 STerm -FF01 STerm -FF0E STerm -FF1F STerm -FF61 STerm -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Saur.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Saur.pl deleted file mode 100644 index fc1a283..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Saur.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Saurashtra} (and fuzzy permutations) -# -# Meaning: Script 'Saurashtra' -# -return <<'END'; -A880 A8C4 Saurashtra -A8CE A8D9 Saurashtra -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sc.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sc.pl deleted file mode 100644 index f3a1548..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sc.pl +++ /dev/null @@ -1,31 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Sc} -# \p{Sc} (and fuzzy permutations) -# -# Meaning: General Category 'Sc' -# -return <<'END'; -0024 -00A2 00A5 -060B -09F2 09F3 -0AF1 -0BF9 -0E3F -17DB -20A0 20B5 -FDFC -FE69 -FF04 -FFE0 FFE1 -FFE5 FFE6 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Shaw.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Shaw.pl deleted file mode 100644 index 60b02c1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Shaw.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Shavian} (and fuzzy permutations) -# -# Meaning: Script 'Shavian' -# -return <<'END'; -10450 1047F Shavian -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sinh.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sinh.pl deleted file mode 100644 index 8691cd1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sinh.pl +++ /dev/null @@ -1,27 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Sinhala} (and fuzzy permutations) -# -# Meaning: Script 'Sinhala' -# -return <<'END'; -0D82 0D83 Sinhala -0D85 0D96 Sinhala -0D9A 0DB1 Sinhala -0DB3 0DBB Sinhala -0DBD Sinhala -0DC0 0DC6 Sinhala -0DCA Sinhala -0DCF 0DD4 Sinhala -0DD6 Sinhala -0DD8 0DDF Sinhala -0DF2 0DF4 Sinhala -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sk.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sk.pl deleted file mode 100644 index 5abc4ce..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sk.pl +++ /dev/null @@ -1,43 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Sk} -# \p{Sk} (and fuzzy permutations) -# -# Meaning: General Category 'Sk' -# -return <<'END'; -005E -0060 -00A8 -00AF -00B4 -00B8 -02C2 02C5 -02D2 02DF -02E5 02EB -02ED -02EF 02FF -0375 -0384 0385 -1FBD -1FBF 1FC1 -1FCD 1FCF -1FDD 1FDF -1FED 1FEF -1FFD 1FFE -309B 309C -A700 A716 -A720 A721 -A789 A78A -FF3E -FF40 -FFE3 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sm.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sm.pl deleted file mode 100644 index e63a41b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sm.pl +++ /dev/null @@ -1,82 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Sm} -# \p{Sm} (and fuzzy permutations) -# -# Meaning: General Category 'Sm' -# -return <<'END'; -002B -003C 003E -007C -007E -00AC -00B1 -00D7 -00F7 -03F6 -0606 0608 -2044 -2052 -207A 207C -208A 208C -2140 2144 -214B -2190 2194 -219A 219B -21A0 -21A3 -21A6 -21AE -21CE 21CF -21D2 -21D4 -21F4 22FF -2308 230B -2320 2321 -237C -239B 23B3 -23DC 23E1 -25B7 -25C1 -25F8 25FF -266F -27C0 27C4 -27C7 27CA -27CC -27D0 27E5 -27F0 27FF -2900 2982 -2999 29D7 -29DC 29FB -29FE 2AFF -2B30 2B44 -2B47 2B4C -FB29 -FE62 -FE64 FE66 -FF0B -FF1C FF1E -FF5C -FF5E -FFE2 -FFE9 FFEC -1D6C1 -1D6DB -1D6FB -1D715 -1D735 -1D74F -1D76F -1D789 -1D7A9 -1D7C3 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/So.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/So.pl deleted file mode 100644 index 08391d6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/So.pl +++ /dev/null @@ -1,151 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{So} -# \p{So} (and fuzzy permutations) -# -# Meaning: General Category 'So' -# -return <<'END'; -00A6 00A7 -00A9 -00AE -00B0 -00B6 -0482 -060E 060F -06E9 -06FD 06FE -07F6 -09FA -0B70 -0BF3 0BF8 -0BFA -0C7F -0CF1 0CF2 -0D79 -0F01 0F03 -0F13 0F17 -0F1A 0F1F -0F34 -0F36 -0F38 -0FBE 0FC5 -0FC7 0FCC -0FCE 0FCF -109E 109F -1360 -1390 1399 -1940 -19E0 19FF -1B61 1B6A -1B74 1B7C -2100 2101 -2103 2106 -2108 2109 -2114 -2116 2118 -211E 2123 -2125 -2127 -2129 -212E -213A 213B -214A -214C 214D -214F -2195 2199 -219C 219F -21A1 21A2 -21A4 21A5 -21A7 21AD -21AF 21CD -21D0 21D1 -21D3 -21D5 21F3 -2300 2307 -230C 231F -2322 2328 -232B 237B -237D 239A -23B4 23DB -23E2 23E7 -2400 2426 -2440 244A -249C 24E9 -2500 25B6 -25B8 25C0 -25C2 25F7 -2600 266E -2670 269D -26A0 26BC -26C0 26C3 -2701 2704 -2706 2709 -270C 2727 -2729 274B -274D -274F 2752 -2756 -2758 275E -2761 2767 -2794 -2798 27AF -27B1 27BE -2800 28FF -2B00 2B2F -2B45 2B46 -2B50 2B54 -2CE5 2CEA -2E80 2E99 -2E9B 2EF3 -2F00 2FD5 -2FF0 2FFB -3004 -3012 3013 -3020 -3036 3037 -303E 303F -3190 3191 -3196 319F -31C0 31E3 -3200 321E -322A 3243 -3250 -3260 327F -328A 32B0 -32C0 32FE -3300 33FF -4DC0 4DFF -A490 A4C6 -A828 A82B -FDFD -FFE4 -FFE8 -FFED FFEE -FFFC FFFD -10102 -10137 1013F -10179 10189 -10190 1019B -101D0 101FC -1D000 1D0F5 -1D100 1D126 -1D129 1D164 -1D16A 1D16C -1D183 1D184 -1D18C 1D1A9 -1D1AE 1D1DD -1D200 1D241 -1D245 -1D300 1D356 -1F000 1F02B -1F030 1F093 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/SoftDott.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/SoftDott.pl deleted file mode 100644 index 48d09fe..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/SoftDott.pl +++ /dev/null @@ -1,47 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{SoftDotted} (and fuzzy permutations) -# -# Meaning: Extended property 'Soft_Dotted' -# -return <<'END'; -0069 006A Soft_Dotted -012F Soft_Dotted -0249 Soft_Dotted -0268 Soft_Dotted -029D Soft_Dotted -02B2 Soft_Dotted -03F3 Soft_Dotted -0456 Soft_Dotted -0458 Soft_Dotted -1D62 Soft_Dotted -1D96 Soft_Dotted -1DA4 Soft_Dotted -1DA8 Soft_Dotted -1E2D Soft_Dotted -1ECB Soft_Dotted -2071 Soft_Dotted -2148 2149 Soft_Dotted -2C7C Soft_Dotted -1D422 1D423 Soft_Dotted -1D456 1D457 Soft_Dotted -1D48A 1D48B Soft_Dotted -1D4BE 1D4BF Soft_Dotted -1D4F2 1D4F3 Soft_Dotted -1D526 1D527 Soft_Dotted -1D55A 1D55B Soft_Dotted -1D58E 1D58F Soft_Dotted -1D5C2 1D5C3 Soft_Dotted -1D5F6 1D5F7 Soft_Dotted -1D62A 1D62B Soft_Dotted -1D65E 1D65F Soft_Dotted -1D692 1D693 Soft_Dotted -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Space.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Space.pl deleted file mode 100644 index a60b964..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Space.pl +++ /dev/null @@ -1,27 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Space} -# -# Meaning: [[:Space:]] -# -return <<'END'; -0009 000D -0020 -0085 -00A0 -1680 -180E -2000 200A -2028 2029 -202F -205F -3000 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/SpacePer.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/SpacePer.pl deleted file mode 100644 index c0dab29..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/SpacePer.pl +++ /dev/null @@ -1,28 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{SpacePerl} -# -# Meaning: \s -# -return <<'END'; -0009 000A -000C 000D -0020 -0085 -00A0 -1680 -180E -2000 200A -2028 2029 -202F -205F -3000 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sterm2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sterm2.pl deleted file mode 100644 index 4952042..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sterm2.pl +++ /dev/null @@ -1,53 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Sterm} (and fuzzy permutations) -# -# Meaning: Extended property 'STerm' -# -return <<'END'; -0021 STerm -002E STerm -003F STerm -055C STerm -055E STerm -0589 STerm -061F STerm -06D4 STerm -0700 0702 STerm -07F9 STerm -0964 0965 STerm -104A 104B STerm -1362 STerm -1367 1368 STerm -166E STerm -1803 STerm -1809 STerm -1944 1945 STerm -1B5A 1B5B STerm -1B5E 1B5F STerm -1C3B 1C3C STerm -1C7E 1C7F STerm -203C 203D STerm -2047 2049 STerm -2E2E STerm -3002 STerm -A60E A60F STerm -A876 A877 STerm -A8CE A8CF STerm -A92F STerm -AA5D AA5F STerm -FE52 STerm -FE56 FE57 STerm -FF01 STerm -FF0E STerm -FF1F STerm -FF61 STerm -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sund.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sund.pl deleted file mode 100644 index b903ced..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Sund.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Sundanese} (and fuzzy permutations) -# -# Meaning: Script 'Sundanese' -# -return <<'END'; -1B80 1BAA Sundanese -1BAE 1BB9 Sundanese -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/SylotiNa.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/SylotiNa.pl deleted file mode 100644 index 3e0573d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/SylotiNa.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{SylotiNagri} (and fuzzy permutations) -# -# Meaning: Script 'Syloti_Nagri' -# -return <<'END'; -A800 A82B Syloti_Nagri -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Syrc.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Syrc.pl deleted file mode 100644 index 00e5924..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Syrc.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Syriac} (and fuzzy permutations) -# -# Meaning: Script 'Syriac' -# -return <<'END'; -0700 070D Syriac -070F 074A Syriac -074D 074F Syriac -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Tagb.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Tagb.pl deleted file mode 100644 index 071fbde..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Tagb.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Tagbanwa} (and fuzzy permutations) -# -# Meaning: Script 'Tagbanwa' -# -return <<'END'; -1760 176C Tagbanwa -176E 1770 Tagbanwa -1772 1773 Tagbanwa -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/TaiLe.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/TaiLe.pl deleted file mode 100644 index 1876660..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/TaiLe.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{TaiLe} (and fuzzy permutations) -# -# Meaning: Script 'Tai_Le' -# -return <<'END'; -1950 196D Tai_Le -1970 1974 Tai_Le -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Taml.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Taml.pl deleted file mode 100644 index 8d86e57..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Taml.pl +++ /dev/null @@ -1,32 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Tamil} (and fuzzy permutations) -# -# Meaning: Script 'Tamil' -# -return <<'END'; -0B82 0B83 Tamil -0B85 0B8A Tamil -0B8E 0B90 Tamil -0B92 0B95 Tamil -0B99 0B9A Tamil -0B9C Tamil -0B9E 0B9F Tamil -0BA3 0BA4 Tamil -0BA8 0BAA Tamil -0BAE 0BB9 Tamil -0BBE 0BC2 Tamil -0BC6 0BC8 Tamil -0BCA 0BCD Tamil -0BD0 Tamil -0BD7 Tamil -0BE6 0BFA Tamil -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Telu.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Telu.pl deleted file mode 100644 index d919461..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Telu.pl +++ /dev/null @@ -1,30 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Telugu} (and fuzzy permutations) -# -# Meaning: Script 'Telugu' -# -return <<'END'; -0C01 0C03 Telugu -0C05 0C0C Telugu -0C0E 0C10 Telugu -0C12 0C28 Telugu -0C2A 0C33 Telugu -0C35 0C39 Telugu -0C3D 0C44 Telugu -0C46 0C48 Telugu -0C4A 0C4D Telugu -0C55 0C56 Telugu -0C58 0C59 Telugu -0C60 0C63 Telugu -0C66 0C6F Telugu -0C78 0C7F Telugu -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Term.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Term.pl deleted file mode 100644 index a6d2173..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Term.pl +++ /dev/null @@ -1,68 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Terminal_Punctuation' -# -return <<'END'; -0021 Terminal_Punctuation -002C Terminal_Punctuation -002E Terminal_Punctuation -003A 003B Terminal_Punctuation -003F Terminal_Punctuation -037E Terminal_Punctuation -0387 Terminal_Punctuation -0589 Terminal_Punctuation -05C3 Terminal_Punctuation -060C Terminal_Punctuation -061B Terminal_Punctuation -061F Terminal_Punctuation -06D4 Terminal_Punctuation -0700 070A Terminal_Punctuation -070C Terminal_Punctuation -07F8 07F9 Terminal_Punctuation -0964 0965 Terminal_Punctuation -0E5A 0E5B Terminal_Punctuation -0F08 Terminal_Punctuation -0F0D 0F12 Terminal_Punctuation -104A 104B Terminal_Punctuation -1361 1368 Terminal_Punctuation -166D 166E Terminal_Punctuation -16EB 16ED Terminal_Punctuation -17D4 17D6 Terminal_Punctuation -17DA Terminal_Punctuation -1802 1805 Terminal_Punctuation -1808 1809 Terminal_Punctuation -1944 1945 Terminal_Punctuation -1B5A 1B5B Terminal_Punctuation -1B5D 1B5F Terminal_Punctuation -1C3B 1C3F Terminal_Punctuation -1C7E 1C7F Terminal_Punctuation -203C 203D Terminal_Punctuation -2047 2049 Terminal_Punctuation -2E2E Terminal_Punctuation -3001 3002 Terminal_Punctuation -A60D A60F Terminal_Punctuation -A876 A877 Terminal_Punctuation -A8CE A8CF Terminal_Punctuation -A92F Terminal_Punctuation -AA5D AA5F Terminal_Punctuation -FE50 FE52 Terminal_Punctuation -FE54 FE57 Terminal_Punctuation -FF01 Terminal_Punctuation -FF0C Terminal_Punctuation -FF0E Terminal_Punctuation -FF1A FF1B Terminal_Punctuation -FF1F Terminal_Punctuation -FF61 Terminal_Punctuation -FF64 Terminal_Punctuation -1039F Terminal_Punctuation -103D0 Terminal_Punctuation -1091F Terminal_Punctuation -12470 12473 Terminal_Punctuation -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Terminal.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Terminal.pl deleted file mode 100644 index e58bc74..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Terminal.pl +++ /dev/null @@ -1,71 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{TerminalPunctuation} (and fuzzy permutations) -# -# Meaning: Extended property 'Terminal_Punctuation' -# -return <<'END'; -0021 Terminal_Punctuation -002C Terminal_Punctuation -002E Terminal_Punctuation -003A 003B Terminal_Punctuation -003F Terminal_Punctuation -037E Terminal_Punctuation -0387 Terminal_Punctuation -0589 Terminal_Punctuation -05C3 Terminal_Punctuation -060C Terminal_Punctuation -061B Terminal_Punctuation -061F Terminal_Punctuation -06D4 Terminal_Punctuation -0700 070A Terminal_Punctuation -070C Terminal_Punctuation -07F8 07F9 Terminal_Punctuation -0964 0965 Terminal_Punctuation -0E5A 0E5B Terminal_Punctuation -0F08 Terminal_Punctuation -0F0D 0F12 Terminal_Punctuation -104A 104B Terminal_Punctuation -1361 1368 Terminal_Punctuation -166D 166E Terminal_Punctuation -16EB 16ED Terminal_Punctuation -17D4 17D6 Terminal_Punctuation -17DA Terminal_Punctuation -1802 1805 Terminal_Punctuation -1808 1809 Terminal_Punctuation -1944 1945 Terminal_Punctuation -1B5A 1B5B Terminal_Punctuation -1B5D 1B5F Terminal_Punctuation -1C3B 1C3F Terminal_Punctuation -1C7E 1C7F Terminal_Punctuation -203C 203D Terminal_Punctuation -2047 2049 Terminal_Punctuation -2E2E Terminal_Punctuation -3001 3002 Terminal_Punctuation -A60D A60F Terminal_Punctuation -A876 A877 Terminal_Punctuation -A8CE A8CF Terminal_Punctuation -A92F Terminal_Punctuation -AA5D AA5F Terminal_Punctuation -FE50 FE52 Terminal_Punctuation -FE54 FE57 Terminal_Punctuation -FF01 Terminal_Punctuation -FF0C Terminal_Punctuation -FF0E Terminal_Punctuation -FF1A FF1B Terminal_Punctuation -FF1F Terminal_Punctuation -FF61 Terminal_Punctuation -FF64 Terminal_Punctuation -1039F Terminal_Punctuation -103D0 Terminal_Punctuation -1091F Terminal_Punctuation -12470 12473 Terminal_Punctuation -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Tfng.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Tfng.pl deleted file mode 100644 index e607973..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Tfng.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Tifinagh} (and fuzzy permutations) -# -# Meaning: Script 'Tifinagh' -# -return <<'END'; -2D30 2D65 Tifinagh -2D6F Tifinagh -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Tglg.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Tglg.pl deleted file mode 100644 index bad457f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Tglg.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Tagalog} (and fuzzy permutations) -# -# Meaning: Script 'Tagalog' -# -return <<'END'; -1700 170C Tagalog -170E 1714 Tagalog -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Thaa.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Thaa.pl deleted file mode 100644 index d9386af..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Thaa.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Thaana} (and fuzzy permutations) -# -# Meaning: Script 'Thaana' -# -return <<'END'; -0780 07B1 Thaana -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Thai.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Thai.pl deleted file mode 100644 index 27cb3eb..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Thai.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Thai} (and fuzzy permutations) -# -# Meaning: Script 'Thai' -# -return <<'END'; -0E01 0E3A Thai -0E40 0E5B Thai -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Tibt.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Tibt.pl deleted file mode 100644 index 7f59e9e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Tibt.pl +++ /dev/null @@ -1,23 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Tibetan} (and fuzzy permutations) -# -# Meaning: Script 'Tibetan' -# -return <<'END'; -0F00 0F47 Tibetan -0F49 0F6C Tibetan -0F71 0F8B Tibetan -0F90 0F97 Tibetan -0F99 0FBC Tibetan -0FBE 0FCC Tibetan -0FCE 0FD4 Tibetan -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Title.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Title.pl deleted file mode 100644 index 0091f2d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Title.pl +++ /dev/null @@ -1,26 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Title} -# -# Meaning: [[:Title:]] -# -return <<'END'; -01C5 -01C8 -01CB -01F2 -1F88 1F8F -1F98 1F9F -1FA8 1FAF -1FBC -1FCC -1FFC -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/UIdeo.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/UIdeo.pl deleted file mode 100644 index dc3484a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/UIdeo.pl +++ /dev/null @@ -1,23 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Unified_Ideograph' -# -return <<'END'; -3400 4DB5 Unified_Ideograph -4E00 9FC3 Unified_Ideograph -FA0E FA0F Unified_Ideograph -FA11 Unified_Ideograph -FA13 FA14 Unified_Ideograph -FA1F Unified_Ideograph -FA21 Unified_Ideograph -FA23 FA24 Unified_Ideograph -FA27 FA29 Unified_Ideograph -20000 2A6D6 Unified_Ideograph -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ugar.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ugar.pl deleted file mode 100644 index d8eeb0e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Ugar.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Ugaritic} (and fuzzy permutations) -# -# Meaning: Script 'Ugaritic' -# -return <<'END'; -10380 1039D Ugaritic -1039F Ugaritic -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/UnifiedI.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/UnifiedI.pl deleted file mode 100644 index 372f5ea..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/UnifiedI.pl +++ /dev/null @@ -1,26 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{UnifiedIdeograph} (and fuzzy permutations) -# -# Meaning: Extended property 'Unified_Ideograph' -# -return <<'END'; -3400 4DB5 Unified_Ideograph -4E00 9FC3 Unified_Ideograph -FA0E FA0F Unified_Ideograph -FA11 Unified_Ideograph -FA13 FA14 Unified_Ideograph -FA1F Unified_Ideograph -FA21 Unified_Ideograph -FA23 FA24 Unified_Ideograph -FA27 FA29 Unified_Ideograph -20000 2A6D6 Unified_Ideograph -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Upper.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Upper.pl deleted file mode 100644 index 3834a29..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Upper.pl +++ /dev/null @@ -1,607 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Upper} -# -# Meaning: [[:Upper:]] -# -return <<'END'; -0041 005A -00C0 00D6 -00D8 00DE -0100 -0102 -0104 -0106 -0108 -010A -010C -010E -0110 -0112 -0114 -0116 -0118 -011A -011C -011E -0120 -0122 -0124 -0126 -0128 -012A -012C -012E -0130 -0132 -0134 -0136 -0139 -013B -013D -013F -0141 -0143 -0145 -0147 -014A -014C -014E -0150 -0152 -0154 -0156 -0158 -015A -015C -015E -0160 -0162 -0164 -0166 -0168 -016A -016C -016E -0170 -0172 -0174 -0176 -0178 0179 -017B -017D -0181 0182 -0184 -0186 0187 -0189 018B -018E 0191 -0193 0194 -0196 0198 -019C 019D -019F 01A0 -01A2 -01A4 -01A6 01A7 -01A9 -01AC -01AE 01AF -01B1 01B3 -01B5 -01B7 01B8 -01BC -01C4 -01C7 -01CA -01CD -01CF -01D1 -01D3 -01D5 -01D7 -01D9 -01DB -01DE -01E0 -01E2 -01E4 -01E6 -01E8 -01EA -01EC -01EE -01F1 -01F4 -01F6 01F8 -01FA -01FC -01FE -0200 -0202 -0204 -0206 -0208 -020A -020C -020E -0210 -0212 -0214 -0216 -0218 -021A -021C -021E -0220 -0222 -0224 -0226 -0228 -022A -022C -022E -0230 -0232 -023A 023B -023D 023E -0241 -0243 0246 -0248 -024A -024C -024E -0370 -0372 -0376 -0386 -0388 038A -038C -038E 038F -0391 03A1 -03A3 03AB -03CF -03D2 03D4 -03D8 -03DA -03DC -03DE -03E0 -03E2 -03E4 -03E6 -03E8 -03EA -03EC -03EE -03F4 -03F7 -03F9 03FA -03FD 042F -0460 -0462 -0464 -0466 -0468 -046A -046C -046E -0470 -0472 -0474 -0476 -0478 -047A -047C -047E -0480 -048A -048C -048E -0490 -0492 -0494 -0496 -0498 -049A -049C -049E -04A0 -04A2 -04A4 -04A6 -04A8 -04AA -04AC -04AE -04B0 -04B2 -04B4 -04B6 -04B8 -04BA -04BC -04BE -04C0 04C1 -04C3 -04C5 -04C7 -04C9 -04CB -04CD -04D0 -04D2 -04D4 -04D6 -04D8 -04DA -04DC -04DE -04E0 -04E2 -04E4 -04E6 -04E8 -04EA -04EC -04EE -04F0 -04F2 -04F4 -04F6 -04F8 -04FA -04FC -04FE -0500 -0502 -0504 -0506 -0508 -050A -050C -050E -0510 -0512 -0514 -0516 -0518 -051A -051C -051E -0520 -0522 -0531 0556 -10A0 10C5 -1E00 -1E02 -1E04 -1E06 -1E08 -1E0A -1E0C -1E0E -1E10 -1E12 -1E14 -1E16 -1E18 -1E1A -1E1C -1E1E -1E20 -1E22 -1E24 -1E26 -1E28 -1E2A -1E2C -1E2E -1E30 -1E32 -1E34 -1E36 -1E38 -1E3A -1E3C -1E3E -1E40 -1E42 -1E44 -1E46 -1E48 -1E4A -1E4C -1E4E -1E50 -1E52 -1E54 -1E56 -1E58 -1E5A -1E5C -1E5E -1E60 -1E62 -1E64 -1E66 -1E68 -1E6A -1E6C -1E6E -1E70 -1E72 -1E74 -1E76 -1E78 -1E7A -1E7C -1E7E -1E80 -1E82 -1E84 -1E86 -1E88 -1E8A -1E8C -1E8E -1E90 -1E92 -1E94 -1E9E -1EA0 -1EA2 -1EA4 -1EA6 -1EA8 -1EAA -1EAC -1EAE -1EB0 -1EB2 -1EB4 -1EB6 -1EB8 -1EBA -1EBC -1EBE -1EC0 -1EC2 -1EC4 -1EC6 -1EC8 -1ECA -1ECC -1ECE -1ED0 -1ED2 -1ED4 -1ED6 -1ED8 -1EDA -1EDC -1EDE -1EE0 -1EE2 -1EE4 -1EE6 -1EE8 -1EEA -1EEC -1EEE -1EF0 -1EF2 -1EF4 -1EF6 -1EF8 -1EFA -1EFC -1EFE -1F08 1F0F -1F18 1F1D -1F28 1F2F -1F38 1F3F -1F48 1F4D -1F59 -1F5B -1F5D -1F5F -1F68 1F6F -1FB8 1FBB -1FC8 1FCB -1FD8 1FDB -1FE8 1FEC -1FF8 1FFB -2102 -2107 -210B 210D -2110 2112 -2115 -2119 211D -2124 -2126 -2128 -212A 212D -2130 2133 -213E 213F -2145 -2183 -2C00 2C2E -2C60 -2C62 2C64 -2C67 -2C69 -2C6B -2C6D 2C6F -2C72 -2C75 -2C80 -2C82 -2C84 -2C86 -2C88 -2C8A -2C8C -2C8E -2C90 -2C92 -2C94 -2C96 -2C98 -2C9A -2C9C -2C9E -2CA0 -2CA2 -2CA4 -2CA6 -2CA8 -2CAA -2CAC -2CAE -2CB0 -2CB2 -2CB4 -2CB6 -2CB8 -2CBA -2CBC -2CBE -2CC0 -2CC2 -2CC4 -2CC6 -2CC8 -2CCA -2CCC -2CCE -2CD0 -2CD2 -2CD4 -2CD6 -2CD8 -2CDA -2CDC -2CDE -2CE0 -2CE2 -A640 -A642 -A644 -A646 -A648 -A64A -A64C -A64E -A650 -A652 -A654 -A656 -A658 -A65A -A65C -A65E -A662 -A664 -A666 -A668 -A66A -A66C -A680 -A682 -A684 -A686 -A688 -A68A -A68C -A68E -A690 -A692 -A694 -A696 -A722 -A724 -A726 -A728 -A72A -A72C -A72E -A732 -A734 -A736 -A738 -A73A -A73C -A73E -A740 -A742 -A744 -A746 -A748 -A74A -A74C -A74E -A750 -A752 -A754 -A756 -A758 -A75A -A75C -A75E -A760 -A762 -A764 -A766 -A768 -A76A -A76C -A76E -A779 -A77B -A77D A77E -A780 -A782 -A784 -A786 -A78B -FF21 FF3A -10400 10427 -1D400 1D419 -1D434 1D44D -1D468 1D481 -1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B5 -1D4D0 1D4E9 -1D504 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D538 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D56C 1D585 -1D5A0 1D5B9 -1D5D4 1D5ED -1D608 1D621 -1D63C 1D655 -1D670 1D689 -1D6A8 1D6C0 -1D6E2 1D6FA -1D71C 1D734 -1D756 1D76E -1D790 1D7A8 -1D7CA -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Uppercas.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Uppercas.pl deleted file mode 100644 index d72907c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Uppercas.pl +++ /dev/null @@ -1,609 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Uppercase} (and fuzzy permutations) -# -# Meaning: [\p{Lu}\p{OtherUppercase}] -# -return <<'END'; -0041 005A -00C0 00D6 -00D8 00DE -0100 -0102 -0104 -0106 -0108 -010A -010C -010E -0110 -0112 -0114 -0116 -0118 -011A -011C -011E -0120 -0122 -0124 -0126 -0128 -012A -012C -012E -0130 -0132 -0134 -0136 -0139 -013B -013D -013F -0141 -0143 -0145 -0147 -014A -014C -014E -0150 -0152 -0154 -0156 -0158 -015A -015C -015E -0160 -0162 -0164 -0166 -0168 -016A -016C -016E -0170 -0172 -0174 -0176 -0178 0179 -017B -017D -0181 0182 -0184 -0186 0187 -0189 018B -018E 0191 -0193 0194 -0196 0198 -019C 019D -019F 01A0 -01A2 -01A4 -01A6 01A7 -01A9 -01AC -01AE 01AF -01B1 01B3 -01B5 -01B7 01B8 -01BC -01C4 -01C7 -01CA -01CD -01CF -01D1 -01D3 -01D5 -01D7 -01D9 -01DB -01DE -01E0 -01E2 -01E4 -01E6 -01E8 -01EA -01EC -01EE -01F1 -01F4 -01F6 01F8 -01FA -01FC -01FE -0200 -0202 -0204 -0206 -0208 -020A -020C -020E -0210 -0212 -0214 -0216 -0218 -021A -021C -021E -0220 -0222 -0224 -0226 -0228 -022A -022C -022E -0230 -0232 -023A 023B -023D 023E -0241 -0243 0246 -0248 -024A -024C -024E -0370 -0372 -0376 -0386 -0388 038A -038C -038E 038F -0391 03A1 -03A3 03AB -03CF -03D2 03D4 -03D8 -03DA -03DC -03DE -03E0 -03E2 -03E4 -03E6 -03E8 -03EA -03EC -03EE -03F4 -03F7 -03F9 03FA -03FD 042F -0460 -0462 -0464 -0466 -0468 -046A -046C -046E -0470 -0472 -0474 -0476 -0478 -047A -047C -047E -0480 -048A -048C -048E -0490 -0492 -0494 -0496 -0498 -049A -049C -049E -04A0 -04A2 -04A4 -04A6 -04A8 -04AA -04AC -04AE -04B0 -04B2 -04B4 -04B6 -04B8 -04BA -04BC -04BE -04C0 04C1 -04C3 -04C5 -04C7 -04C9 -04CB -04CD -04D0 -04D2 -04D4 -04D6 -04D8 -04DA -04DC -04DE -04E0 -04E2 -04E4 -04E6 -04E8 -04EA -04EC -04EE -04F0 -04F2 -04F4 -04F6 -04F8 -04FA -04FC -04FE -0500 -0502 -0504 -0506 -0508 -050A -050C -050E -0510 -0512 -0514 -0516 -0518 -051A -051C -051E -0520 -0522 -0531 0556 -10A0 10C5 -1E00 -1E02 -1E04 -1E06 -1E08 -1E0A -1E0C -1E0E -1E10 -1E12 -1E14 -1E16 -1E18 -1E1A -1E1C -1E1E -1E20 -1E22 -1E24 -1E26 -1E28 -1E2A -1E2C -1E2E -1E30 -1E32 -1E34 -1E36 -1E38 -1E3A -1E3C -1E3E -1E40 -1E42 -1E44 -1E46 -1E48 -1E4A -1E4C -1E4E -1E50 -1E52 -1E54 -1E56 -1E58 -1E5A -1E5C -1E5E -1E60 -1E62 -1E64 -1E66 -1E68 -1E6A -1E6C -1E6E -1E70 -1E72 -1E74 -1E76 -1E78 -1E7A -1E7C -1E7E -1E80 -1E82 -1E84 -1E86 -1E88 -1E8A -1E8C -1E8E -1E90 -1E92 -1E94 -1E9E -1EA0 -1EA2 -1EA4 -1EA6 -1EA8 -1EAA -1EAC -1EAE -1EB0 -1EB2 -1EB4 -1EB6 -1EB8 -1EBA -1EBC -1EBE -1EC0 -1EC2 -1EC4 -1EC6 -1EC8 -1ECA -1ECC -1ECE -1ED0 -1ED2 -1ED4 -1ED6 -1ED8 -1EDA -1EDC -1EDE -1EE0 -1EE2 -1EE4 -1EE6 -1EE8 -1EEA -1EEC -1EEE -1EF0 -1EF2 -1EF4 -1EF6 -1EF8 -1EFA -1EFC -1EFE -1F08 1F0F -1F18 1F1D -1F28 1F2F -1F38 1F3F -1F48 1F4D -1F59 -1F5B -1F5D -1F5F -1F68 1F6F -1FB8 1FBB -1FC8 1FCB -1FD8 1FDB -1FE8 1FEC -1FF8 1FFB -2102 -2107 -210B 210D -2110 2112 -2115 -2119 211D -2124 -2126 -2128 -212A 212D -2130 2133 -213E 213F -2145 -2160 216F -2183 -24B6 24CF -2C00 2C2E -2C60 -2C62 2C64 -2C67 -2C69 -2C6B -2C6D 2C6F -2C72 -2C75 -2C80 -2C82 -2C84 -2C86 -2C88 -2C8A -2C8C -2C8E -2C90 -2C92 -2C94 -2C96 -2C98 -2C9A -2C9C -2C9E -2CA0 -2CA2 -2CA4 -2CA6 -2CA8 -2CAA -2CAC -2CAE -2CB0 -2CB2 -2CB4 -2CB6 -2CB8 -2CBA -2CBC -2CBE -2CC0 -2CC2 -2CC4 -2CC6 -2CC8 -2CCA -2CCC -2CCE -2CD0 -2CD2 -2CD4 -2CD6 -2CD8 -2CDA -2CDC -2CDE -2CE0 -2CE2 -A640 -A642 -A644 -A646 -A648 -A64A -A64C -A64E -A650 -A652 -A654 -A656 -A658 -A65A -A65C -A65E -A662 -A664 -A666 -A668 -A66A -A66C -A680 -A682 -A684 -A686 -A688 -A68A -A68C -A68E -A690 -A692 -A694 -A696 -A722 -A724 -A726 -A728 -A72A -A72C -A72E -A732 -A734 -A736 -A738 -A73A -A73C -A73E -A740 -A742 -A744 -A746 -A748 -A74A -A74C -A74E -A750 -A752 -A754 -A756 -A758 -A75A -A75C -A75E -A760 -A762 -A764 -A766 -A768 -A76A -A76C -A76E -A779 -A77B -A77D A77E -A780 -A782 -A784 -A786 -A78B -FF21 FF3A -10400 10427 -1D400 1D419 -1D434 1D44D -1D468 1D481 -1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B5 -1D4D0 1D4E9 -1D504 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D538 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D56C 1D585 -1D5A0 1D5B9 -1D5D4 1D5ED -1D608 1D621 -1D63C 1D655 -1D670 1D689 -1D6A8 1D6C0 -1D6E2 1D6FA -1D71C 1D734 -1D756 1D76E -1D790 1D7A8 -1D7CA -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/VS.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/VS.pl deleted file mode 100644 index 4c593d4..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/VS.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'Variation_Selector' -# -return <<'END'; -180B 180D Variation_Selector -FE00 FE0F Variation_Selector -E0100 E01EF Variation_Selector -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Vaii.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Vaii.pl deleted file mode 100644 index e6d7167..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Vaii.pl +++ /dev/null @@ -1,17 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Vai} (and fuzzy permutations) -# -# Meaning: Script 'Vai' -# -return <<'END'; -A500 A62B Vai -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Variatio.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Variatio.pl deleted file mode 100644 index 55fee5b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Variatio.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{VariationSelector} (and fuzzy permutations) -# -# Meaning: Extended property 'Variation_Selector' -# -return <<'END'; -180B 180D Variation_Selector -FE00 FE0F Variation_Selector -E0100 E01EF Variation_Selector -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/VertSpac.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/VertSpac.pl deleted file mode 100644 index 8086c1d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/VertSpac.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{VertSpace} -# -# Meaning: \v -# -return <<'END'; -000A 000D -0085 -2028 2029 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/WSpace.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/WSpace.pl deleted file mode 100644 index 76176dd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/WSpace.pl +++ /dev/null @@ -1,24 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Binary property 'White_Space' -# -return <<'END'; -0009 000D White_Space -0020 White_Space -0085 White_Space -00A0 White_Space -1680 White_Space -180E White_Space -2000 200A White_Space -2028 2029 White_Space -202F White_Space -205F White_Space -3000 White_Space -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/WhiteSpa.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/WhiteSpa.pl deleted file mode 100644 index ed9b1cd..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/WhiteSpa.pl +++ /dev/null @@ -1,27 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{WhiteSpace} (and fuzzy permutations) -# -# Meaning: Extended property 'White_Space' -# -return <<'END'; -0009 000D White_Space -0020 White_Space -0085 White_Space -00A0 White_Space -1680 White_Space -180E White_Space -2000 200A White_Space -2028 2029 White_Space -202F White_Space -205F White_Space -3000 White_Space -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Word.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Word.pl deleted file mode 100644 index b4dcade..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Word.pl +++ /dev/null @@ -1,512 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Word} -# -# Meaning: [[:Word:]] -# -return <<'END'; -0030 0039 -0041 005A -005F -0061 007A -00AA -00B2 00B3 -00B5 -00B9 00BA -00BC 00BE -00C0 00D6 -00D8 00F6 -00F8 02C1 -02C6 02D1 -02E0 02E4 -02EC -02EE -0300 0374 -0376 0377 -037A 037D -0386 -0388 038A -038C -038E 03A1 -03A3 03F5 -03F7 0481 -0483 0523 -0531 0556 -0559 -0561 0587 -0591 05BD -05BF -05C1 05C2 -05C4 05C5 -05C7 -05D0 05EA -05F0 05F2 -0610 061A -0621 065E -0660 0669 -066E 06D3 -06D5 06DC -06DE 06E8 -06EA 06FC -06FF -0710 074A -074D 07B1 -07C0 07F5 -07FA -0901 0939 -093C 094D -0950 0954 -0958 0963 -0966 096F -0971 0972 -097B 097F -0981 0983 -0985 098C -098F 0990 -0993 09A8 -09AA 09B0 -09B2 -09B6 09B9 -09BC 09C4 -09C7 09C8 -09CB 09CE -09D7 -09DC 09DD -09DF 09E3 -09E6 09F1 -09F4 09F9 -0A01 0A03 -0A05 0A0A -0A0F 0A10 -0A13 0A28 -0A2A 0A30 -0A32 0A33 -0A35 0A36 -0A38 0A39 -0A3C -0A3E 0A42 -0A47 0A48 -0A4B 0A4D -0A51 -0A59 0A5C -0A5E -0A66 0A75 -0A81 0A83 -0A85 0A8D -0A8F 0A91 -0A93 0AA8 -0AAA 0AB0 -0AB2 0AB3 -0AB5 0AB9 -0ABC 0AC5 -0AC7 0AC9 -0ACB 0ACD -0AD0 -0AE0 0AE3 -0AE6 0AEF -0B01 0B03 -0B05 0B0C -0B0F 0B10 -0B13 0B28 -0B2A 0B30 -0B32 0B33 -0B35 0B39 -0B3C 0B44 -0B47 0B48 -0B4B 0B4D -0B56 0B57 -0B5C 0B5D -0B5F 0B63 -0B66 0B6F -0B71 -0B82 0B83 -0B85 0B8A -0B8E 0B90 -0B92 0B95 -0B99 0B9A -0B9C -0B9E 0B9F -0BA3 0BA4 -0BA8 0BAA -0BAE 0BB9 -0BBE 0BC2 -0BC6 0BC8 -0BCA 0BCD -0BD0 -0BD7 -0BE6 0BF2 -0C01 0C03 -0C05 0C0C -0C0E 0C10 -0C12 0C28 -0C2A 0C33 -0C35 0C39 -0C3D 0C44 -0C46 0C48 -0C4A 0C4D -0C55 0C56 -0C58 0C59 -0C60 0C63 -0C66 0C6F -0C78 0C7E -0C82 0C83 -0C85 0C8C -0C8E 0C90 -0C92 0CA8 -0CAA 0CB3 -0CB5 0CB9 -0CBC 0CC4 -0CC6 0CC8 -0CCA 0CCD -0CD5 0CD6 -0CDE -0CE0 0CE3 -0CE6 0CEF -0D02 0D03 -0D05 0D0C -0D0E 0D10 -0D12 0D28 -0D2A 0D39 -0D3D 0D44 -0D46 0D48 -0D4A 0D4D -0D57 -0D60 0D63 -0D66 0D75 -0D7A 0D7F -0D82 0D83 -0D85 0D96 -0D9A 0DB1 -0DB3 0DBB -0DBD -0DC0 0DC6 -0DCA -0DCF 0DD4 -0DD6 -0DD8 0DDF -0DF2 0DF3 -0E01 0E3A -0E40 0E4E -0E50 0E59 -0E81 0E82 -0E84 -0E87 0E88 -0E8A -0E8D -0E94 0E97 -0E99 0E9F -0EA1 0EA3 -0EA5 -0EA7 -0EAA 0EAB -0EAD 0EB9 -0EBB 0EBD -0EC0 0EC4 -0EC6 -0EC8 0ECD -0ED0 0ED9 -0EDC 0EDD -0F00 -0F18 0F19 -0F20 0F33 -0F35 -0F37 -0F39 -0F3E 0F47 -0F49 0F6C -0F71 0F84 -0F86 0F8B -0F90 0F97 -0F99 0FBC -0FC6 -1000 1049 -1050 1099 -10A0 10C5 -10D0 10FA -10FC -1100 1159 -115F 11A2 -11A8 11F9 -1200 1248 -124A 124D -1250 1256 -1258 -125A 125D -1260 1288 -128A 128D -1290 12B0 -12B2 12B5 -12B8 12BE -12C0 -12C2 12C5 -12C8 12D6 -12D8 1310 -1312 1315 -1318 135A -135F -1369 137C -1380 138F -13A0 13F4 -1401 166C -166F 1676 -1681 169A -16A0 16EA -16EE 16F0 -1700 170C -170E 1714 -1720 1734 -1740 1753 -1760 176C -176E 1770 -1772 1773 -1780 17B3 -17B6 17D3 -17D7 -17DC 17DD -17E0 17E9 -17F0 17F9 -180B 180D -1810 1819 -1820 1877 -1880 18AA -1900 191C -1920 192B -1930 193B -1946 196D -1970 1974 -1980 19A9 -19B0 19C9 -19D0 19D9 -1A00 1A1B -1B00 1B4B -1B50 1B59 -1B6B 1B73 -1B80 1BAA -1BAE 1BB9 -1C00 1C37 -1C40 1C49 -1C4D 1C7D -1D00 1DE6 -1DFE 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FBC -1FBE -1FC2 1FC4 -1FC6 1FCC -1FD0 1FD3 -1FD6 1FDB -1FE0 1FEC -1FF2 1FF4 -1FF6 1FFC -203F 2040 -2054 -2070 2071 -2074 2079 -207F 2089 -2090 2094 -20D0 20F0 -2102 -2107 -210A 2113 -2115 -2119 211D -2124 -2126 -2128 -212A 212D -212F 2139 -213C 213F -2145 2149 -214E -2153 2188 -2460 249B -24EA 24FF -2776 2793 -2C00 2C2E -2C30 2C5E -2C60 2C6F -2C71 2C7D -2C80 2CE4 -2CFD -2D00 2D25 -2D30 2D65 -2D6F -2D80 2D96 -2DA0 2DA6 -2DA8 2DAE -2DB0 2DB6 -2DB8 2DBE -2DC0 2DC6 -2DC8 2DCE -2DD0 2DD6 -2DD8 2DDE -2DE0 2DFF -2E2F -3005 3007 -3021 302F -3031 3035 -3038 303C -3041 3096 -3099 309A -309D 309F -30A1 30FA -30FC 30FF -3105 312D -3131 318E -3192 3195 -31A0 31B7 -31F0 31FF -3220 3229 -3251 325F -3280 3289 -32B1 32BF -3400 4DB5 -4E00 9FC3 -A000 A48C -A500 A60C -A610 A62B -A640 A65F -A662 A672 -A67C A67D -A67F A697 -A717 A71F -A722 A788 -A78B A78C -A7FB A827 -A840 A873 -A880 A8C4 -A8D0 A8D9 -A900 A92D -A930 A953 -AA00 AA36 -AA40 AA4D -AA50 AA59 -AC00 D7A3 -F900 FA2D -FA30 FA6A -FA70 FAD9 -FB00 FB06 -FB13 FB17 -FB1D FB28 -FB2A FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FBB1 -FBD3 FD3D -FD50 FD8F -FD92 FDC7 -FDF0 FDFB -FE00 FE0F -FE20 FE26 -FE33 FE34 -FE4D FE4F -FE70 FE74 -FE76 FEFC -FF10 FF19 -FF21 FF3A -FF3F -FF41 FF5A -FF66 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -10000 1000B -1000D 10026 -10028 1003A -1003C 1003D -1003F 1004D -10050 1005D -10080 100FA -10107 10133 -10140 10178 -1018A -101FD -10280 1029C -102A0 102D0 -10300 1031E -10320 10323 -10330 1034A -10380 1039D -103A0 103C3 -103C8 103CF -103D1 103D5 -10400 1049D -104A0 104A9 -10800 10805 -10808 -1080A 10835 -10837 10838 -1083C -1083F -10900 10919 -10920 10939 -10A00 10A03 -10A05 10A06 -10A0C 10A13 -10A15 10A17 -10A19 10A33 -10A38 10A3A -10A3F 10A47 -12000 1236E -12400 12462 -1D165 1D169 -1D16D 1D172 -1D17B 1D182 -1D185 1D18B -1D1AA 1D1AD -1D242 1D244 -1D360 1D371 -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D6C0 -1D6C2 1D6DA -1D6DC 1D6FA -1D6FC 1D714 -1D716 1D734 -1D736 1D74E -1D750 1D76E -1D770 1D788 -1D78A 1D7A8 -1D7AA 1D7C2 -1D7C4 1D7CB -1D7CE 1D7FF -20000 2A6D6 -2F800 2FA1D -E0100 E01EF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/XDigit.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/XDigit.pl deleted file mode 100644 index c0632ff..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/XDigit.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{XDigit} -# -# Meaning: [[:XDigit:]] -# -return <<'END'; -0030 0039 -0041 0046 -0061 0066 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Xsux.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Xsux.pl deleted file mode 100644 index 116bb8d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Xsux.pl +++ /dev/null @@ -1,19 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Cuneiform} (and fuzzy permutations) -# -# Meaning: Script 'Cuneiform' -# -return <<'END'; -12000 1236E Cuneiform -12400 12462 Cuneiform -12470 12473 Cuneiform -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Yiii.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Yiii.pl deleted file mode 100644 index 857ab65..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Yiii.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Yi} (and fuzzy permutations) -# -# Meaning: Script 'Yi' -# -return <<'END'; -A000 A48C Yi -A490 A4C6 Yi -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Z.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Z.pl deleted file mode 100644 index c3404d6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Z.pl +++ /dev/null @@ -1,26 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Z} -# \p{Z} (and fuzzy permutations) -# -# Meaning: Major Category 'Z' -# -return <<'END'; -0020 -00A0 -1680 -180E -2000 200A -2028 2029 -202F -205F -3000 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Zl.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Zl.pl deleted file mode 100644 index 33b6dc2..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Zl.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Zl} -# \p{Zl} (and fuzzy permutations) -# -# Meaning: General Category 'Zl' -# -return <<'END'; -2028 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Zp.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Zp.pl deleted file mode 100644 index 22c136f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Zp.pl +++ /dev/null @@ -1,18 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Zp} -# \p{Zp} (and fuzzy permutations) -# -# Meaning: General Category 'Zp' -# -return <<'END'; -2029 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Zs.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Zs.pl deleted file mode 100644 index 14f18f0..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Zs.pl +++ /dev/null @@ -1,25 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Zs} -# \p{Zs} (and fuzzy permutations) -# -# Meaning: General Category 'Zs' -# -return <<'END'; -0020 -00A0 -1680 -180E -2000 200A -202F -205F -3000 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Zyyy.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Zyyy.pl deleted file mode 100644 index 931ba9a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/Zyyy.pl +++ /dev/null @@ -1,153 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{Common} (and fuzzy permutations) -# -# Meaning: Script 'Common' -# -return <<'END'; -0000 0040 Common -005B 0060 Common -007B 00A9 Common -00AB 00B9 Common -00BB 00BF Common -00D7 Common -00F7 Common -02B9 02DF Common -02E5 02FF Common -0374 Common -037E Common -0385 Common -0387 Common -0589 Common -0600 0603 Common -060C Common -061B Common -061F Common -0640 Common -0660 0669 Common -06DD Common -0964 0965 Common -0970 Common -0CF1 0CF2 Common -0E3F Common -10FB Common -16EB 16ED Common -1735 1736 Common -1802 1803 Common -1805 Common -2000 200B Common -200E 2064 Common -206A 2070 Common -2074 207E Common -2080 208E Common -20A0 20B5 Common -2100 2125 Common -2127 2129 Common -212C 2131 Common -2133 214D Common -214F Common -2153 215F Common -2190 23E7 Common -2400 2426 Common -2440 244A Common -2460 269D Common -26A0 26BC Common -26C0 26C3 Common -2701 2704 Common -2706 2709 Common -270C 2727 Common -2729 274B Common -274D Common -274F 2752 Common -2756 Common -2758 275E Common -2761 2794 Common -2798 27AF Common -27B1 27BE Common -27C0 27CA Common -27CC Common -27D0 27FF Common -2900 2B4C Common -2B50 2B54 Common -2E00 2E30 Common -2FF0 2FFB Common -3000 3004 Common -3006 Common -3008 3020 Common -3030 3037 Common -303C 303F Common -309B 309C Common -30A0 Common -30FB 30FC Common -3190 319F Common -31C0 31E3 Common -3220 3243 Common -3250 325F Common -327F 32CF Common -3358 33FF Common -4DC0 4DFF Common -A700 A721 Common -A788 A78A Common -FD3E FD3F Common -FDFD Common -FE10 FE19 Common -FE30 FE52 Common -FE54 FE66 Common -FE68 FE6B Common -FEFF Common -FF01 FF20 Common -FF3B FF40 Common -FF5B FF65 Common -FF70 Common -FF9E FF9F Common -FFE0 FFE6 Common -FFE8 FFEE Common -FFF9 FFFD Common -10100 10102 Common -10107 10133 Common -10137 1013F Common -10190 1019B Common -101D0 101FC Common -1D000 1D0F5 Common -1D100 1D126 Common -1D129 1D166 Common -1D16A 1D17A Common -1D183 1D184 Common -1D18C 1D1A9 Common -1D1AE 1D1DD Common -1D300 1D356 Common -1D360 1D371 Common -1D400 1D454 Common -1D456 1D49C Common -1D49E 1D49F Common -1D4A2 Common -1D4A5 1D4A6 Common -1D4A9 1D4AC Common -1D4AE 1D4B9 Common -1D4BB Common -1D4BD 1D4C3 Common -1D4C5 1D505 Common -1D507 1D50A Common -1D50D 1D514 Common -1D516 1D51C Common -1D51E 1D539 Common -1D53B 1D53E Common -1D540 1D544 Common -1D546 Common -1D54A 1D550 Common -1D552 1D6A5 Common -1D6A8 1D7CB Common -1D7CE 1D7FF Common -1F000 1F02B Common -1F030 1F093 Common -E0001 Common -E0020 E007F Common -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/_CanonDC.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/_CanonDC.pl deleted file mode 100644 index ef51456..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/_CanonDC.pl +++ /dev/null @@ -1,20 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{_CanonDCIJ} -# -# Meaning: (for internal casefolding use) -# -return <<'END'; -0069 006A -012F -1E2D -1ECB -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/_CaseIgn.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/_CaseIgn.pl deleted file mode 100644 index e98e95d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/_CaseIgn.pl +++ /dev/null @@ -1,178 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{_CaseIgnorable} -# -# Meaning: (for internal casefolding use) -# -return <<'END'; -00AD -0300 036F -0483 0487 -0591 05BD -05BF -05C1 05C2 -05C4 05C5 -05C7 -0610 061A -064B 065E -0670 -06D6 06DC -06DF 06E4 -06E7 06E8 -06EA 06ED -0711 -0730 074A -07A6 07B0 -07EB 07F3 -0901 0902 -093C -0941 0948 -094D -0951 0954 -0962 0963 -0981 -09BC -09C1 09C4 -09CD -09E2 09E3 -0A01 0A02 -0A3C -0A41 0A42 -0A47 0A48 -0A4B 0A4D -0A51 -0A70 0A71 -0A75 -0A81 0A82 -0ABC -0AC1 0AC5 -0AC7 0AC8 -0ACD -0AE2 0AE3 -0B01 -0B3C -0B3F -0B41 0B44 -0B4D -0B56 -0B62 0B63 -0B82 -0BC0 -0BCD -0C3E 0C40 -0C46 0C48 -0C4A 0C4D -0C55 0C56 -0C62 0C63 -0CBC -0CBF -0CC6 -0CCC 0CCD -0CE2 0CE3 -0D41 0D44 -0D4D -0D62 0D63 -0DCA -0DD2 0DD4 -0DD6 -0E31 -0E34 0E3A -0E47 0E4E -0EB1 -0EB4 0EB9 -0EBB 0EBC -0EC8 0ECD -0F18 0F19 -0F35 -0F37 -0F39 -0F71 0F7E -0F80 0F84 -0F86 0F87 -0F90 0F97 -0F99 0FBC -0FC6 -102D 1030 -1032 1037 -1039 103A -103D 103E -1058 1059 -105E 1060 -1071 1074 -1082 -1085 1086 -108D -135F -1712 1714 -1732 1734 -1752 1753 -1772 1773 -17B7 17BD -17C6 -17C9 17D3 -17DD -180B 180D -18A9 -1920 1922 -1927 1928 -1932 -1939 193B -1A17 1A18 -1B00 1B03 -1B34 -1B36 1B3A -1B3C -1B42 -1B6B 1B73 -1B80 1B81 -1BA2 1BA5 -1BA8 1BA9 -1C2C 1C33 -1C36 1C37 -1DC0 1DE6 -1DFE 1DFF -2010 -20D0 20DC -20E1 -20E5 20F0 -2DE0 2DFF -302A 302F -3099 309A -A66F -A67C A67D -A802 -A806 -A80B -A825 A826 -A8C4 -A926 A92D -A947 A951 -AA29 AA2E -AA31 AA32 -AA35 AA36 -AA43 -AA4C -FB1E -FE00 FE0F -FE20 FE26 -101FD -10A01 10A03 -10A05 10A06 -10A0C 10A0F -10A38 10A3A -10A3F -1D167 1D169 -1D17B 1D182 -1D185 1D18B -1D1AA 1D1AD -1D242 1D244 -E0100 E01EF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/_CombAbo.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/_CombAbo.pl deleted file mode 100644 index 05558f8..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/gc_sc/_CombAbo.pl +++ /dev/null @@ -1,84 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# This file supports: -# \p{_CombAbove} -# -# Meaning: (for internal casefolding use) -# -return <<'END'; -0300 0314 -033D 0344 -0346 -034A 034C -0350 0352 -0357 -035B -0363 036F -0483 0487 -0592 0595 -0597 0599 -059C 05A1 -05A8 05A9 -05AB 05AC -05AF -05C4 -0610 0617 -0653 0654 -0657 065B -065D 065E -06D6 06DC -06DF 06E2 -06E4 -06E7 06E8 -06EB 06EC -0730 -0732 0733 -0735 0736 -073A -073D -073F 0741 -0743 -0745 -0747 -0749 074A -07EB 07F1 -07F3 -0951 -0953 0954 -0F82 0F83 -0F86 0F87 -135F -17DD -193A -1A17 -1B6B -1B6D 1B73 -1DC0 1DC1 -1DC3 1DC9 -1DCB 1DCC -1DD1 1DE6 -1DFE -20D0 20D1 -20D4 20D7 -20DB 20DC -20E1 -20E7 -20E9 -20F0 -2DE0 2DFF -A66F -A67C A67D -FE20 FE26 -10A0F -10A38 -1D185 1D189 -1D1AA 1D1AD -1D242 1D244 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/L.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/L.pl deleted file mode 100644 index 9bd9e6a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/L.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# HangulSyllableType category 'Leading_Jamo' -# -return <<'END'; -1100 1159 -115F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/LV.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/LV.pl deleted file mode 100644 index 2994bbc..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/LV.pl +++ /dev/null @@ -1,412 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# HangulSyllableType category 'LV_Syllable' -# -return <<'END'; -AC00 -AC1C -AC38 -AC54 -AC70 -AC8C -ACA8 -ACC4 -ACE0 -ACFC -AD18 -AD34 -AD50 -AD6C -AD88 -ADA4 -ADC0 -ADDC -ADF8 -AE14 -AE30 -AE4C -AE68 -AE84 -AEA0 -AEBC -AED8 -AEF4 -AF10 -AF2C -AF48 -AF64 -AF80 -AF9C -AFB8 -AFD4 -AFF0 -B00C -B028 -B044 -B060 -B07C -B098 -B0B4 -B0D0 -B0EC -B108 -B124 -B140 -B15C -B178 -B194 -B1B0 -B1CC -B1E8 -B204 -B220 -B23C -B258 -B274 -B290 -B2AC -B2C8 -B2E4 -B300 -B31C -B338 -B354 -B370 -B38C -B3A8 -B3C4 -B3E0 -B3FC -B418 -B434 -B450 -B46C -B488 -B4A4 -B4C0 -B4DC -B4F8 -B514 -B530 -B54C -B568 -B584 -B5A0 -B5BC -B5D8 -B5F4 -B610 -B62C -B648 -B664 -B680 -B69C -B6B8 -B6D4 -B6F0 -B70C -B728 -B744 -B760 -B77C -B798 -B7B4 -B7D0 -B7EC -B808 -B824 -B840 -B85C -B878 -B894 -B8B0 -B8CC -B8E8 -B904 -B920 -B93C -B958 -B974 -B990 -B9AC -B9C8 -B9E4 -BA00 -BA1C -BA38 -BA54 -BA70 -BA8C -BAA8 -BAC4 -BAE0 -BAFC -BB18 -BB34 -BB50 -BB6C -BB88 -BBA4 -BBC0 -BBDC -BBF8 -BC14 -BC30 -BC4C -BC68 -BC84 -BCA0 -BCBC -BCD8 -BCF4 -BD10 -BD2C -BD48 -BD64 -BD80 -BD9C -BDB8 -BDD4 -BDF0 -BE0C -BE28 -BE44 -BE60 -BE7C -BE98 -BEB4 -BED0 -BEEC -BF08 -BF24 -BF40 -BF5C -BF78 -BF94 -BFB0 -BFCC -BFE8 -C004 -C020 -C03C -C058 -C074 -C090 -C0AC -C0C8 -C0E4 -C100 -C11C -C138 -C154 -C170 -C18C -C1A8 -C1C4 -C1E0 -C1FC -C218 -C234 -C250 -C26C -C288 -C2A4 -C2C0 -C2DC -C2F8 -C314 -C330 -C34C -C368 -C384 -C3A0 -C3BC -C3D8 -C3F4 -C410 -C42C -C448 -C464 -C480 -C49C -C4B8 -C4D4 -C4F0 -C50C -C528 -C544 -C560 -C57C -C598 -C5B4 -C5D0 -C5EC -C608 -C624 -C640 -C65C -C678 -C694 -C6B0 -C6CC -C6E8 -C704 -C720 -C73C -C758 -C774 -C790 -C7AC -C7C8 -C7E4 -C800 -C81C -C838 -C854 -C870 -C88C -C8A8 -C8C4 -C8E0 -C8FC -C918 -C934 -C950 -C96C -C988 -C9A4 -C9C0 -C9DC -C9F8 -CA14 -CA30 -CA4C -CA68 -CA84 -CAA0 -CABC -CAD8 -CAF4 -CB10 -CB2C -CB48 -CB64 -CB80 -CB9C -CBB8 -CBD4 -CBF0 -CC0C -CC28 -CC44 -CC60 -CC7C -CC98 -CCB4 -CCD0 -CCEC -CD08 -CD24 -CD40 -CD5C -CD78 -CD94 -CDB0 -CDCC -CDE8 -CE04 -CE20 -CE3C -CE58 -CE74 -CE90 -CEAC -CEC8 -CEE4 -CF00 -CF1C -CF38 -CF54 -CF70 -CF8C -CFA8 -CFC4 -CFE0 -CFFC -D018 -D034 -D050 -D06C -D088 -D0A4 -D0C0 -D0DC -D0F8 -D114 -D130 -D14C -D168 -D184 -D1A0 -D1BC -D1D8 -D1F4 -D210 -D22C -D248 -D264 -D280 -D29C -D2B8 -D2D4 -D2F0 -D30C -D328 -D344 -D360 -D37C -D398 -D3B4 -D3D0 -D3EC -D408 -D424 -D440 -D45C -D478 -D494 -D4B0 -D4CC -D4E8 -D504 -D520 -D53C -D558 -D574 -D590 -D5AC -D5C8 -D5E4 -D600 -D61C -D638 -D654 -D670 -D68C -D6A8 -D6C4 -D6E0 -D6FC -D718 -D734 -D750 -D76C -D788 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/LVT.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/LVT.pl deleted file mode 100644 index bbb29aa..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/LVT.pl +++ /dev/null @@ -1,412 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# HangulSyllableType category 'LVT_Syllable' -# -return <<'END'; -AC01 AC1B -AC1D AC37 -AC39 AC53 -AC55 AC6F -AC71 AC8B -AC8D ACA7 -ACA9 ACC3 -ACC5 ACDF -ACE1 ACFB -ACFD AD17 -AD19 AD33 -AD35 AD4F -AD51 AD6B -AD6D AD87 -AD89 ADA3 -ADA5 ADBF -ADC1 ADDB -ADDD ADF7 -ADF9 AE13 -AE15 AE2F -AE31 AE4B -AE4D AE67 -AE69 AE83 -AE85 AE9F -AEA1 AEBB -AEBD AED7 -AED9 AEF3 -AEF5 AF0F -AF11 AF2B -AF2D AF47 -AF49 AF63 -AF65 AF7F -AF81 AF9B -AF9D AFB7 -AFB9 AFD3 -AFD5 AFEF -AFF1 B00B -B00D B027 -B029 B043 -B045 B05F -B061 B07B -B07D B097 -B099 B0B3 -B0B5 B0CF -B0D1 B0EB -B0ED B107 -B109 B123 -B125 B13F -B141 B15B -B15D B177 -B179 B193 -B195 B1AF -B1B1 B1CB -B1CD B1E7 -B1E9 B203 -B205 B21F -B221 B23B -B23D B257 -B259 B273 -B275 B28F -B291 B2AB -B2AD B2C7 -B2C9 B2E3 -B2E5 B2FF -B301 B31B -B31D B337 -B339 B353 -B355 B36F -B371 B38B -B38D B3A7 -B3A9 B3C3 -B3C5 B3DF -B3E1 B3FB -B3FD B417 -B419 B433 -B435 B44F -B451 B46B -B46D B487 -B489 B4A3 -B4A5 B4BF -B4C1 B4DB -B4DD B4F7 -B4F9 B513 -B515 B52F -B531 B54B -B54D B567 -B569 B583 -B585 B59F -B5A1 B5BB -B5BD B5D7 -B5D9 B5F3 -B5F5 B60F -B611 B62B -B62D B647 -B649 B663 -B665 B67F -B681 B69B -B69D B6B7 -B6B9 B6D3 -B6D5 B6EF -B6F1 B70B -B70D B727 -B729 B743 -B745 B75F -B761 B77B -B77D B797 -B799 B7B3 -B7B5 B7CF -B7D1 B7EB -B7ED B807 -B809 B823 -B825 B83F -B841 B85B -B85D B877 -B879 B893 -B895 B8AF -B8B1 B8CB -B8CD B8E7 -B8E9 B903 -B905 B91F -B921 B93B -B93D B957 -B959 B973 -B975 B98F -B991 B9AB -B9AD B9C7 -B9C9 B9E3 -B9E5 B9FF -BA01 BA1B -BA1D BA37 -BA39 BA53 -BA55 BA6F -BA71 BA8B -BA8D BAA7 -BAA9 BAC3 -BAC5 BADF -BAE1 BAFB -BAFD BB17 -BB19 BB33 -BB35 BB4F -BB51 BB6B -BB6D BB87 -BB89 BBA3 -BBA5 BBBF -BBC1 BBDB -BBDD BBF7 -BBF9 BC13 -BC15 BC2F -BC31 BC4B -BC4D BC67 -BC69 BC83 -BC85 BC9F -BCA1 BCBB -BCBD BCD7 -BCD9 BCF3 -BCF5 BD0F -BD11 BD2B -BD2D BD47 -BD49 BD63 -BD65 BD7F -BD81 BD9B -BD9D BDB7 -BDB9 BDD3 -BDD5 BDEF -BDF1 BE0B -BE0D BE27 -BE29 BE43 -BE45 BE5F -BE61 BE7B -BE7D BE97 -BE99 BEB3 -BEB5 BECF -BED1 BEEB -BEED BF07 -BF09 BF23 -BF25 BF3F -BF41 BF5B -BF5D BF77 -BF79 BF93 -BF95 BFAF -BFB1 BFCB -BFCD BFE7 -BFE9 C003 -C005 C01F -C021 C03B -C03D C057 -C059 C073 -C075 C08F -C091 C0AB -C0AD C0C7 -C0C9 C0E3 -C0E5 C0FF -C101 C11B -C11D C137 -C139 C153 -C155 C16F -C171 C18B -C18D C1A7 -C1A9 C1C3 -C1C5 C1DF -C1E1 C1FB -C1FD C217 -C219 C233 -C235 C24F -C251 C26B -C26D C287 -C289 C2A3 -C2A5 C2BF -C2C1 C2DB -C2DD C2F7 -C2F9 C313 -C315 C32F -C331 C34B -C34D C367 -C369 C383 -C385 C39F -C3A1 C3BB -C3BD C3D7 -C3D9 C3F3 -C3F5 C40F -C411 C42B -C42D C447 -C449 C463 -C465 C47F -C481 C49B -C49D C4B7 -C4B9 C4D3 -C4D5 C4EF -C4F1 C50B -C50D C527 -C529 C543 -C545 C55F -C561 C57B -C57D C597 -C599 C5B3 -C5B5 C5CF -C5D1 C5EB -C5ED C607 -C609 C623 -C625 C63F -C641 C65B -C65D C677 -C679 C693 -C695 C6AF -C6B1 C6CB -C6CD C6E7 -C6E9 C703 -C705 C71F -C721 C73B -C73D C757 -C759 C773 -C775 C78F -C791 C7AB -C7AD C7C7 -C7C9 C7E3 -C7E5 C7FF -C801 C81B -C81D C837 -C839 C853 -C855 C86F -C871 C88B -C88D C8A7 -C8A9 C8C3 -C8C5 C8DF -C8E1 C8FB -C8FD C917 -C919 C933 -C935 C94F -C951 C96B -C96D C987 -C989 C9A3 -C9A5 C9BF -C9C1 C9DB -C9DD C9F7 -C9F9 CA13 -CA15 CA2F -CA31 CA4B -CA4D CA67 -CA69 CA83 -CA85 CA9F -CAA1 CABB -CABD CAD7 -CAD9 CAF3 -CAF5 CB0F -CB11 CB2B -CB2D CB47 -CB49 CB63 -CB65 CB7F -CB81 CB9B -CB9D CBB7 -CBB9 CBD3 -CBD5 CBEF -CBF1 CC0B -CC0D CC27 -CC29 CC43 -CC45 CC5F -CC61 CC7B -CC7D CC97 -CC99 CCB3 -CCB5 CCCF -CCD1 CCEB -CCED CD07 -CD09 CD23 -CD25 CD3F -CD41 CD5B -CD5D CD77 -CD79 CD93 -CD95 CDAF -CDB1 CDCB -CDCD CDE7 -CDE9 CE03 -CE05 CE1F -CE21 CE3B -CE3D CE57 -CE59 CE73 -CE75 CE8F -CE91 CEAB -CEAD CEC7 -CEC9 CEE3 -CEE5 CEFF -CF01 CF1B -CF1D CF37 -CF39 CF53 -CF55 CF6F -CF71 CF8B -CF8D CFA7 -CFA9 CFC3 -CFC5 CFDF -CFE1 CFFB -CFFD D017 -D019 D033 -D035 D04F -D051 D06B -D06D D087 -D089 D0A3 -D0A5 D0BF -D0C1 D0DB -D0DD D0F7 -D0F9 D113 -D115 D12F -D131 D14B -D14D D167 -D169 D183 -D185 D19F -D1A1 D1BB -D1BD D1D7 -D1D9 D1F3 -D1F5 D20F -D211 D22B -D22D D247 -D249 D263 -D265 D27F -D281 D29B -D29D D2B7 -D2B9 D2D3 -D2D5 D2EF -D2F1 D30B -D30D D327 -D329 D343 -D345 D35F -D361 D37B -D37D D397 -D399 D3B3 -D3B5 D3CF -D3D1 D3EB -D3ED D407 -D409 D423 -D425 D43F -D441 D45B -D45D D477 -D479 D493 -D495 D4AF -D4B1 D4CB -D4CD D4E7 -D4E9 D503 -D505 D51F -D521 D53B -D53D D557 -D559 D573 -D575 D58F -D591 D5AB -D5AD D5C7 -D5C9 D5E3 -D5E5 D5FF -D601 D61B -D61D D637 -D639 D653 -D655 D66F -D671 D68B -D68D D6A7 -D6A9 D6C3 -D6C5 D6DF -D6E1 D6FB -D6FD D717 -D719 D733 -D735 D74F -D751 D76B -D76D D787 -D789 D7A3 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/T.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/T.pl deleted file mode 100644 index a047c0c..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/T.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# HangulSyllableType category 'Trailing_Jamo' -# -return <<'END'; -11A8 11F9 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/V.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/V.pl deleted file mode 100644 index 1b6f81a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/hst/V.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# HangulSyllableType category 'Vowel_Jamo' -# -return <<'END'; -1160 11A2 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/jt/C.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/jt/C.pl deleted file mode 100644 index 5315be1..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/jt/C.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# JoiningType category 'Join_Causing' -# -return <<'END'; -0640 -07FA -200D -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/jt/D.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/jt/D.pl deleted file mode 100644 index 633ff24..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/jt/D.pl +++ /dev/null @@ -1,41 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# JoiningType category 'Dual_Joining' -# -return <<'END'; -0626 -0628 -062A 062E -0633 063F -0641 0647 -0649 064A -066E 066F -0678 0687 -069A 06BF -06C1 06C2 -06CC -06CE -06D0 06D1 -06FA 06FC -06FF -0712 0714 -071A 071D -071F 0727 -0729 -072B -072D 072E -074E 0758 -075C 076A -076D 0770 -0772 -0775 0777 -077A 077F -07CA 07EA -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/jt/R.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/jt/R.pl deleted file mode 100644 index 71df313..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/jt/R.pl +++ /dev/null @@ -1,41 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# JoiningType category 'Right_Joining' -# -return <<'END'; -0622 0625 -0627 -0629 -062F 0632 -0648 -0671 0673 -0675 0677 -0688 0699 -06C0 -06C3 06CB -06CD -06CF -06D2 06D3 -06D5 -06EE 06EF -0710 -0715 0719 -071E -0728 -072A -072C -072F -074D -0759 075B -076B 076C -0771 -0773 0774 -0778 0779 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/jt/U.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/jt/U.pl deleted file mode 100644 index b482d59..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/jt/U.pl +++ /dev/null @@ -1,20 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# JoiningType category 'Non_Joining' -# -return <<'END'; -0600 0603 -0608 -060B -0621 -0674 -06DD -200C -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/AI.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/AI.pl deleted file mode 100644 index 60acb3a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/AI.pl +++ /dev/null @@ -1,104 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Ambiguous' -# -return <<'END'; -00A7 00A8 -00AA -00B2 00B3 -00B6 00BA -00BC 00BE -00D7 -00F7 -02C7 -02C9 02CB -02CD -02D0 -02D8 02DB -02DD -2015 2016 -2020 2021 -203B -2074 -207F -2081 2084 -2105 -2113 -2121 2122 -212B -2154 2155 -215B -215E -2160 216B -2170 2179 -2190 2199 -21D2 -21D4 -2200 -2202 2203 -2207 2208 -220B -220F -2211 -2215 -221A -221D 2220 -2223 -2225 -2227 222C -222E -2234 2237 -223C 223D -2248 -224C -2252 -2260 2261 -2264 2267 -226A 226B -226E 226F -2282 2283 -2286 2287 -2295 -2299 -22A5 -22BF -2312 -2460 24FE -2500 254B -2550 2574 -2580 258F -2592 2595 -25A0 25A1 -25A3 25A9 -25B2 25B3 -25B6 25B7 -25BC 25BD -25C0 25C1 -25C6 25C8 -25CB -25CE 25D1 -25E2 25E5 -25EF -2605 2606 -2609 -260E 260F -2614 2617 -261C -261E -2640 -2642 -2660 2661 -2663 2665 -2667 266A -266C 266D -266F -2776 2793 -FFFD -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/AL.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/AL.pl deleted file mode 100644 index 345e48f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/AL.pl +++ /dev/null @@ -1,501 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Alphabetic' -# -return <<'END'; -0023 -0026 -002A -003C 003E -0040 005A -005E 007A -007E -00A6 -00A9 -00AC -00AE 00AF -00B5 -00C0 00D6 -00D8 00F6 -00F8 02C6 -02CE 02CF -02D1 02D7 -02DC -02DE -02E0 02FF -0370 0377 -037A 037D -0384 038A -038C -038E 03A1 -03A3 0482 -048A 0523 -0531 0556 -0559 055F -0561 0587 -05C0 -05C3 -05D0 05EA -05F0 05F4 -0600 0603 -0606 0608 -060E 060F -0621 064A -066D 066F -0671 06D3 -06D5 -06DD -06E5 06E6 -06E9 -06EE 06EF -06FA 070D -070F 0710 -0712 072F -074D 07A5 -07B1 -07CA 07EA -07F4 07F7 -07FA -0904 0939 -093D -0950 -0958 0961 -0970 0972 -097B 097F -0985 098C -098F 0990 -0993 09A8 -09AA 09B0 -09B2 -09B6 09B9 -09BD -09CE -09DC 09DD -09DF 09E1 -09F0 09F1 -09F4 09FA -0A05 0A0A -0A0F 0A10 -0A13 0A28 -0A2A 0A30 -0A32 0A33 -0A35 0A36 -0A38 0A39 -0A59 0A5C -0A5E -0A72 0A74 -0A85 0A8D -0A8F 0A91 -0A93 0AA8 -0AAA 0AB0 -0AB2 0AB3 -0AB5 0AB9 -0ABD -0AD0 -0AE0 0AE1 -0B05 0B0C -0B0F 0B10 -0B13 0B28 -0B2A 0B30 -0B32 0B33 -0B35 0B39 -0B3D -0B5C 0B5D -0B5F 0B61 -0B70 0B71 -0B83 -0B85 0B8A -0B8E 0B90 -0B92 0B95 -0B99 0B9A -0B9C -0B9E 0B9F -0BA3 0BA4 -0BA8 0BAA -0BAE 0BB9 -0BD0 -0BF0 0BF8 -0BFA -0C05 0C0C -0C0E 0C10 -0C12 0C28 -0C2A 0C33 -0C35 0C39 -0C3D -0C58 0C59 -0C60 0C61 -0C78 0C7F -0C85 0C8C -0C8E 0C90 -0C92 0CA8 -0CAA 0CB3 -0CB5 0CB9 -0CBD -0CDE -0CE0 0CE1 -0CF1 0CF2 -0D05 0D0C -0D0E 0D10 -0D12 0D28 -0D2A 0D39 -0D3D -0D60 0D61 -0D70 0D75 -0D7A 0D7F -0D85 0D96 -0D9A 0DB1 -0DB3 0DBB -0DBD -0DC0 0DC6 -0DF4 -0E4F -0F00 -0F05 -0F13 -0F15 0F17 -0F1A 0F1F -0F2A 0F33 -0F36 -0F38 -0F40 0F47 -0F49 0F6C -0F88 0F8B -0FC0 0FC5 -0FC7 0FCC -0FCE 0FCF -0FD4 -104C 104F -10A0 10C5 -10D0 10FC -1200 1248 -124A 124D -1250 1256 -1258 -125A 125D -1260 1288 -128A 128D -1290 12B0 -12B2 12B5 -12B8 12BE -12C0 -12C2 12C5 -12C8 12D6 -12D8 1310 -1312 1315 -1318 135A -1360 -1362 137C -1380 1399 -13A0 13F4 -1401 1676 -1681 169A -16A0 16EA -16EE 16F0 -1700 170C -170E 1711 -1720 1731 -1740 1751 -1760 176C -176E 1770 -17D9 -17F0 17F9 -1800 1801 -1807 -180A -1820 1877 -1880 18A8 -18AA -1900 191C -1940 -19E0 1A16 -1A1E 1A1F -1B05 1B33 -1B45 1B4B -1B61 1B6A -1B74 1B7C -1B83 1BA0 -1BAE 1BAF -1C00 1C23 -1C4D 1C4F -1C5A 1C7D -1D00 1DBF -1E00 1F15 -1F18 1F1D -1F20 1F45 -1F48 1F4D -1F50 1F57 -1F59 -1F5B -1F5D -1F5F 1F7D -1F80 1FB4 -1FB6 1FC4 -1FC6 1FD3 -1FD6 1FDB -1FDD 1FEF -1FF2 1FF4 -1FF6 1FFC -1FFE -2017 -2022 2023 -2038 -203E 2043 -204A 2055 -2057 -205C -2061 2064 -2070 2071 -2075 207C -2080 -2085 208C -2090 2094 -2100 2102 -2104 -2106 2108 -210A 2112 -2114 2115 -2117 2120 -2123 212A -212C 214F -2153 -2156 215A -215C 215D -215F -216C 216F -217A 2188 -219A 21D1 -21D3 -21D5 21FF -2201 -2204 2206 -2209 220A -220C 220E -2210 -2214 -2216 2219 -221B 221C -2221 2222 -2224 -2226 -222D -222F 2233 -2238 223B -223E 2247 -2249 224B -224D 2251 -2253 225F -2262 2263 -2268 2269 -226C 226D -2270 2281 -2284 2285 -2288 2294 -2296 2298 -229A 22A4 -22A6 22BE -22C0 2311 -2313 2328 -232B 23E7 -2400 2426 -2440 244A -24FF -254C 254F -2575 257F -2590 2591 -2596 259F -25A2 -25AA 25B1 -25B4 25B5 -25B8 25BB -25BE 25BF -25C2 25C5 -25C9 25CA -25CC 25CD -25D2 25E1 -25E6 25EE -25F0 2604 -2607 2608 -260A 260D -2610 2613 -2618 261B -261D -261F 263F -2641 -2643 265F -2662 -2666 -266B -266E -2670 269D -26A0 26BC -26C0 26C3 -2701 2704 -2706 2709 -270C 2727 -2729 274B -274D -274F 2752 -2756 -2758 275A -2761 -2764 2767 -2794 -2798 27AF -27B1 27BE -27C0 27C4 -27C7 27CA -27CC -27D0 27E5 -27F0 2982 -2999 29D7 -29DC 29FB -29FE 2B4C -2B50 2B54 -2C00 2C2E -2C30 2C5E -2C60 2C6F -2C71 2C7D -2C80 2CEA -2CFD -2D00 2D25 -2D30 2D65 -2D6F -2D80 2D96 -2DA0 2DA6 -2DA8 2DAE -2DB0 2DB6 -2DB8 2DBE -2DC0 2DC6 -2DC8 2DCE -2DD0 2DD6 -2DD8 2DDE -2E16 -2E1A 2E1B -2E1E 2E1F -2E2F -4DC0 4DFF -A500 A60C -A610 A61F -A62A A62B -A640 A65F -A662 A66E -A673 -A67E A697 -A700 A78C -A7FB A801 -A803 A805 -A807 A80A -A80C A822 -A828 A82B -A840 A873 -A882 A8B3 -A90A A925 -A930 A946 -A95F -AA00 AA28 -AA40 AA42 -AA44 AA4B -AA5C -FB00 FB06 -FB13 FB17 -FB1D -FB1F FB36 -FB38 FB3C -FB3E -FB40 FB41 -FB43 FB44 -FB46 FBB1 -FBD3 FD3D -FD50 FD8F -FD92 FDC7 -FDF0 FDFB -FDFD -FE70 FE74 -FE76 FEFC -FF66 -FF71 FF9D -FFA0 FFBE -FFC2 FFC7 -FFCA FFCF -FFD2 FFD7 -FFDA FFDC -FFE8 FFEE -10000 1000B -1000D 10026 -10028 1003A -1003C 1003D -1003F 1004D -10050 1005D -10080 100FA -10107 10133 -10137 1018A -10190 1019B -101D0 101FC -10280 1029C -102A0 102D0 -10300 1031E -10320 10323 -10330 1034A -10380 1039D -103A0 103C3 -103C8 103CF -103D1 103D5 -10400 1049D -10800 10805 -10808 -1080A 10835 -10837 10838 -1083C -1083F -10900 10919 -10920 10939 -1093F -10A00 -10A10 10A13 -10A15 10A17 -10A19 10A33 -10A40 10A47 -10A58 -12000 1236E -12400 12462 -1D000 1D0F5 -1D100 1D126 -1D129 1D164 -1D16A 1D16C -1D183 1D184 -1D18C 1D1A9 -1D1AE 1D1DD -1D200 1D241 -1D245 -1D300 1D356 -1D360 1D371 -1D400 1D454 -1D456 1D49C -1D49E 1D49F -1D4A2 -1D4A5 1D4A6 -1D4A9 1D4AC -1D4AE 1D4B9 -1D4BB -1D4BD 1D4C3 -1D4C5 1D505 -1D507 1D50A -1D50D 1D514 -1D516 1D51C -1D51E 1D539 -1D53B 1D53E -1D540 1D544 -1D546 -1D54A 1D550 -1D552 1D6A5 -1D6A8 1D7CB -1F000 1F02B -1F030 1F093 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/B2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/B2.pl deleted file mode 100644 index 3b7c11e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/B2.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Break_Both' -# -return <<'END'; -2014 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/BA.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/BA.pl deleted file mode 100644 index 496b617..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/BA.pl +++ /dev/null @@ -1,64 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Break_After' -# -return <<'END'; -0009 -007C -00AD -058A -05BE -0964 0965 -0E5A 0E5B -0F0B -0F34 -0F7F -0F85 -0FBE 0FBF -0FD2 -104A 104B -1361 -1680 -16EB 16ED -1735 1736 -17D4 17D5 -17D8 -17DA -1804 1805 -1B5A 1B60 -1C3B 1C3F -1C7E 1C7F -2000 2006 -2008 200A -2010 -2012 2013 -2027 -2056 -2058 205B -205D 205F -2CFA 2CFC -2CFF -2E0E 2E15 -2E17 -2E19 -2E2A 2E2D -2E30 -A60D -A60F -A8CE A8CF -A92E A92F -AA5D AA5F -10100 10102 -1039F -103D0 -1091F -10A50 10A57 -12470 12473 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/BB.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/BB.pl deleted file mode 100644 index b658d32..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/BB.pl +++ /dev/null @@ -1,25 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Break_Before' -# -return <<'END'; -00B4 -02C8 -02CC -02DF -0F01 0F04 -0F06 0F07 -0F09 0F0A -0FD0 0FD1 -0FD3 -1806 -1FFD -A874 A875 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/BK.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/BK.pl deleted file mode 100644 index fdc6302..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/BK.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Mandatory_Break' -# -return <<'END'; -000B 000C -2028 2029 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/CB.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/CB.pl deleted file mode 100644 index d23064b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/CB.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Contingent_Break' -# -return <<'END'; -FFFC -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/CL.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/CL.pl deleted file mode 100644 index fb9aa0b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/CL.pl +++ /dev/null @@ -1,89 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Close_Punctuation' -# -return <<'END'; -0029 -005D -007D -0F3B -0F3D -169C -2046 -207E -208E -232A -2769 -276B -276D -276F -2771 -2773 -2775 -27C6 -27E7 -27E9 -27EB -27ED -27EF -2984 -2986 -2988 -298A -298C -298E -2990 -2992 -2994 -2996 -2998 -29D9 -29DB -29FD -2E23 -2E25 -2E27 -2E29 -3001 3002 -3009 -300B -300D -300F -3011 -3015 -3017 -3019 -301B -301E 301F -FD3F -FE11 FE12 -FE18 -FE36 -FE38 -FE3A -FE3C -FE3E -FE40 -FE42 -FE44 -FE48 -FE50 -FE52 -FE5A -FE5C -FE5E -FF09 -FF0C -FF0E -FF3D -FF5D -FF60 FF61 -FF63 FF64 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/CM.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/CM.pl deleted file mode 100644 index f8bed22..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/CM.pl +++ /dev/null @@ -1,167 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Combining_Mark' -# -return <<'END'; -0000 0008 -000E 001F -007F 0084 -0086 009F -0300 034E -0350 035B -0363 036F -0483 0489 -0591 05BD -05BF -05C1 05C2 -05C4 05C5 -05C7 -0610 061A -064B 065E -0670 -06D6 06DC -06DE 06E4 -06E7 06E8 -06EA 06ED -0711 -0730 074A -07A6 07B0 -07EB 07F3 -0901 0903 -093C -093E 094D -0951 0954 -0962 0963 -0981 0983 -09BC -09BE 09C4 -09C7 09C8 -09CB 09CD -09D7 -09E2 09E3 -0A01 0A03 -0A3C -0A3E 0A42 -0A47 0A48 -0A4B 0A4D -0A51 -0A70 0A71 -0A75 -0A81 0A83 -0ABC -0ABE 0AC5 -0AC7 0AC9 -0ACB 0ACD -0AE2 0AE3 -0B01 0B03 -0B3C -0B3E 0B44 -0B47 0B48 -0B4B 0B4D -0B56 0B57 -0B62 0B63 -0B82 -0BBE 0BC2 -0BC6 0BC8 -0BCA 0BCD -0BD7 -0C01 0C03 -0C3E 0C44 -0C46 0C48 -0C4A 0C4D -0C55 0C56 -0C62 0C63 -0C82 0C83 -0CBC -0CBE 0CC4 -0CC6 0CC8 -0CCA 0CCD -0CD5 0CD6 -0CE2 0CE3 -0D02 0D03 -0D3E 0D44 -0D46 0D48 -0D4A 0D4D -0D57 -0D62 0D63 -0D82 0D83 -0DCA -0DCF 0DD4 -0DD6 -0DD8 0DDF -0DF2 0DF3 -0F18 0F19 -0F35 -0F37 -0F39 -0F3E 0F3F -0F71 0F7E -0F80 0F84 -0F86 0F87 -0F90 0F97 -0F99 0FBC -0FC6 -135F -1712 1714 -1732 1734 -1752 1753 -1772 1773 -180B 180D -18A9 -1920 192B -1930 193B -1A17 1A1B -1B00 1B04 -1B34 1B44 -1B6B 1B73 -1B80 1B82 -1BA1 1BAA -1C24 1C37 -1DC0 1DE6 -1DFE 1DFF -200C 200F -202A 202E -206A 206F -20D0 20F0 -2DE0 2DFF -302A 302F -3099 309A -A66F A672 -A67C A67D -A802 -A806 -A80B -A823 A827 -A880 A881 -A8B4 A8C4 -A926 A92D -A947 A953 -AA29 AA36 -AA43 -AA4C AA4D -FB1E -FE00 FE0F -FE20 FE26 -FFF9 FFFB -101FD -10A01 10A03 -10A05 10A06 -10A0C 10A0F -10A38 10A3A -10A3F -1D165 1D169 -1D16D 1D182 -1D185 1D18B -1D1AA 1D1AD -1D242 1D244 -E0001 -E0020 E007F -E0100 E01EF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/CR.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/CR.pl deleted file mode 100644 index 2c87105..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/CR.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Carriage_Return' -# -return <<'END'; -000D -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/EX.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/EX.pl deleted file mode 100644 index 657b5c4..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/EX.pl +++ /dev/null @@ -1,35 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Exclamation' -# -return <<'END'; -0021 -003F -05C6 -061B -061E 061F -06D4 -07F9 -0F0D 0F11 -0F14 -1802 1803 -1808 1809 -1944 1945 -2762 2763 -2CF9 -2CFE -2E2E -A60E -A876 A877 -FE15 FE16 -FE56 FE57 -FF01 -FF1F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/GL.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/GL.pl deleted file mode 100644 index bafa66a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/GL.pl +++ /dev/null @@ -1,23 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Glue' -# -return <<'END'; -00A0 -034F -035C 0362 -0F08 -0F0C -0F12 -180E -2007 -2011 -202F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/H2.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/H2.pl deleted file mode 100644 index 2482664..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/H2.pl +++ /dev/null @@ -1,412 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'H2' -# -return <<'END'; -AC00 -AC1C -AC38 -AC54 -AC70 -AC8C -ACA8 -ACC4 -ACE0 -ACFC -AD18 -AD34 -AD50 -AD6C -AD88 -ADA4 -ADC0 -ADDC -ADF8 -AE14 -AE30 -AE4C -AE68 -AE84 -AEA0 -AEBC -AED8 -AEF4 -AF10 -AF2C -AF48 -AF64 -AF80 -AF9C -AFB8 -AFD4 -AFF0 -B00C -B028 -B044 -B060 -B07C -B098 -B0B4 -B0D0 -B0EC -B108 -B124 -B140 -B15C -B178 -B194 -B1B0 -B1CC -B1E8 -B204 -B220 -B23C -B258 -B274 -B290 -B2AC -B2C8 -B2E4 -B300 -B31C -B338 -B354 -B370 -B38C -B3A8 -B3C4 -B3E0 -B3FC -B418 -B434 -B450 -B46C -B488 -B4A4 -B4C0 -B4DC -B4F8 -B514 -B530 -B54C -B568 -B584 -B5A0 -B5BC -B5D8 -B5F4 -B610 -B62C -B648 -B664 -B680 -B69C -B6B8 -B6D4 -B6F0 -B70C -B728 -B744 -B760 -B77C -B798 -B7B4 -B7D0 -B7EC -B808 -B824 -B840 -B85C -B878 -B894 -B8B0 -B8CC -B8E8 -B904 -B920 -B93C -B958 -B974 -B990 -B9AC -B9C8 -B9E4 -BA00 -BA1C -BA38 -BA54 -BA70 -BA8C -BAA8 -BAC4 -BAE0 -BAFC -BB18 -BB34 -BB50 -BB6C -BB88 -BBA4 -BBC0 -BBDC -BBF8 -BC14 -BC30 -BC4C -BC68 -BC84 -BCA0 -BCBC -BCD8 -BCF4 -BD10 -BD2C -BD48 -BD64 -BD80 -BD9C -BDB8 -BDD4 -BDF0 -BE0C -BE28 -BE44 -BE60 -BE7C -BE98 -BEB4 -BED0 -BEEC -BF08 -BF24 -BF40 -BF5C -BF78 -BF94 -BFB0 -BFCC -BFE8 -C004 -C020 -C03C -C058 -C074 -C090 -C0AC -C0C8 -C0E4 -C100 -C11C -C138 -C154 -C170 -C18C -C1A8 -C1C4 -C1E0 -C1FC -C218 -C234 -C250 -C26C -C288 -C2A4 -C2C0 -C2DC -C2F8 -C314 -C330 -C34C -C368 -C384 -C3A0 -C3BC -C3D8 -C3F4 -C410 -C42C -C448 -C464 -C480 -C49C -C4B8 -C4D4 -C4F0 -C50C -C528 -C544 -C560 -C57C -C598 -C5B4 -C5D0 -C5EC -C608 -C624 -C640 -C65C -C678 -C694 -C6B0 -C6CC -C6E8 -C704 -C720 -C73C -C758 -C774 -C790 -C7AC -C7C8 -C7E4 -C800 -C81C -C838 -C854 -C870 -C88C -C8A8 -C8C4 -C8E0 -C8FC -C918 -C934 -C950 -C96C -C988 -C9A4 -C9C0 -C9DC -C9F8 -CA14 -CA30 -CA4C -CA68 -CA84 -CAA0 -CABC -CAD8 -CAF4 -CB10 -CB2C -CB48 -CB64 -CB80 -CB9C -CBB8 -CBD4 -CBF0 -CC0C -CC28 -CC44 -CC60 -CC7C -CC98 -CCB4 -CCD0 -CCEC -CD08 -CD24 -CD40 -CD5C -CD78 -CD94 -CDB0 -CDCC -CDE8 -CE04 -CE20 -CE3C -CE58 -CE74 -CE90 -CEAC -CEC8 -CEE4 -CF00 -CF1C -CF38 -CF54 -CF70 -CF8C -CFA8 -CFC4 -CFE0 -CFFC -D018 -D034 -D050 -D06C -D088 -D0A4 -D0C0 -D0DC -D0F8 -D114 -D130 -D14C -D168 -D184 -D1A0 -D1BC -D1D8 -D1F4 -D210 -D22C -D248 -D264 -D280 -D29C -D2B8 -D2D4 -D2F0 -D30C -D328 -D344 -D360 -D37C -D398 -D3B4 -D3D0 -D3EC -D408 -D424 -D440 -D45C -D478 -D494 -D4B0 -D4CC -D4E8 -D504 -D520 -D53C -D558 -D574 -D590 -D5AC -D5C8 -D5E4 -D600 -D61C -D638 -D654 -D670 -D68C -D6A8 -D6C4 -D6E0 -D6FC -D718 -D734 -D750 -D76C -D788 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/H3.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/H3.pl deleted file mode 100644 index ae46530..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/H3.pl +++ /dev/null @@ -1,412 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'H3' -# -return <<'END'; -AC01 AC1B -AC1D AC37 -AC39 AC53 -AC55 AC6F -AC71 AC8B -AC8D ACA7 -ACA9 ACC3 -ACC5 ACDF -ACE1 ACFB -ACFD AD17 -AD19 AD33 -AD35 AD4F -AD51 AD6B -AD6D AD87 -AD89 ADA3 -ADA5 ADBF -ADC1 ADDB -ADDD ADF7 -ADF9 AE13 -AE15 AE2F -AE31 AE4B -AE4D AE67 -AE69 AE83 -AE85 AE9F -AEA1 AEBB -AEBD AED7 -AED9 AEF3 -AEF5 AF0F -AF11 AF2B -AF2D AF47 -AF49 AF63 -AF65 AF7F -AF81 AF9B -AF9D AFB7 -AFB9 AFD3 -AFD5 AFEF -AFF1 B00B -B00D B027 -B029 B043 -B045 B05F -B061 B07B -B07D B097 -B099 B0B3 -B0B5 B0CF -B0D1 B0EB -B0ED B107 -B109 B123 -B125 B13F -B141 B15B -B15D B177 -B179 B193 -B195 B1AF -B1B1 B1CB -B1CD B1E7 -B1E9 B203 -B205 B21F -B221 B23B -B23D B257 -B259 B273 -B275 B28F -B291 B2AB -B2AD B2C7 -B2C9 B2E3 -B2E5 B2FF -B301 B31B -B31D B337 -B339 B353 -B355 B36F -B371 B38B -B38D B3A7 -B3A9 B3C3 -B3C5 B3DF -B3E1 B3FB -B3FD B417 -B419 B433 -B435 B44F -B451 B46B -B46D B487 -B489 B4A3 -B4A5 B4BF -B4C1 B4DB -B4DD B4F7 -B4F9 B513 -B515 B52F -B531 B54B -B54D B567 -B569 B583 -B585 B59F -B5A1 B5BB -B5BD B5D7 -B5D9 B5F3 -B5F5 B60F -B611 B62B -B62D B647 -B649 B663 -B665 B67F -B681 B69B -B69D B6B7 -B6B9 B6D3 -B6D5 B6EF -B6F1 B70B -B70D B727 -B729 B743 -B745 B75F -B761 B77B -B77D B797 -B799 B7B3 -B7B5 B7CF -B7D1 B7EB -B7ED B807 -B809 B823 -B825 B83F -B841 B85B -B85D B877 -B879 B893 -B895 B8AF -B8B1 B8CB -B8CD B8E7 -B8E9 B903 -B905 B91F -B921 B93B -B93D B957 -B959 B973 -B975 B98F -B991 B9AB -B9AD B9C7 -B9C9 B9E3 -B9E5 B9FF -BA01 BA1B -BA1D BA37 -BA39 BA53 -BA55 BA6F -BA71 BA8B -BA8D BAA7 -BAA9 BAC3 -BAC5 BADF -BAE1 BAFB -BAFD BB17 -BB19 BB33 -BB35 BB4F -BB51 BB6B -BB6D BB87 -BB89 BBA3 -BBA5 BBBF -BBC1 BBDB -BBDD BBF7 -BBF9 BC13 -BC15 BC2F -BC31 BC4B -BC4D BC67 -BC69 BC83 -BC85 BC9F -BCA1 BCBB -BCBD BCD7 -BCD9 BCF3 -BCF5 BD0F -BD11 BD2B -BD2D BD47 -BD49 BD63 -BD65 BD7F -BD81 BD9B -BD9D BDB7 -BDB9 BDD3 -BDD5 BDEF -BDF1 BE0B -BE0D BE27 -BE29 BE43 -BE45 BE5F -BE61 BE7B -BE7D BE97 -BE99 BEB3 -BEB5 BECF -BED1 BEEB -BEED BF07 -BF09 BF23 -BF25 BF3F -BF41 BF5B -BF5D BF77 -BF79 BF93 -BF95 BFAF -BFB1 BFCB -BFCD BFE7 -BFE9 C003 -C005 C01F -C021 C03B -C03D C057 -C059 C073 -C075 C08F -C091 C0AB -C0AD C0C7 -C0C9 C0E3 -C0E5 C0FF -C101 C11B -C11D C137 -C139 C153 -C155 C16F -C171 C18B -C18D C1A7 -C1A9 C1C3 -C1C5 C1DF -C1E1 C1FB -C1FD C217 -C219 C233 -C235 C24F -C251 C26B -C26D C287 -C289 C2A3 -C2A5 C2BF -C2C1 C2DB -C2DD C2F7 -C2F9 C313 -C315 C32F -C331 C34B -C34D C367 -C369 C383 -C385 C39F -C3A1 C3BB -C3BD C3D7 -C3D9 C3F3 -C3F5 C40F -C411 C42B -C42D C447 -C449 C463 -C465 C47F -C481 C49B -C49D C4B7 -C4B9 C4D3 -C4D5 C4EF -C4F1 C50B -C50D C527 -C529 C543 -C545 C55F -C561 C57B -C57D C597 -C599 C5B3 -C5B5 C5CF -C5D1 C5EB -C5ED C607 -C609 C623 -C625 C63F -C641 C65B -C65D C677 -C679 C693 -C695 C6AF -C6B1 C6CB -C6CD C6E7 -C6E9 C703 -C705 C71F -C721 C73B -C73D C757 -C759 C773 -C775 C78F -C791 C7AB -C7AD C7C7 -C7C9 C7E3 -C7E5 C7FF -C801 C81B -C81D C837 -C839 C853 -C855 C86F -C871 C88B -C88D C8A7 -C8A9 C8C3 -C8C5 C8DF -C8E1 C8FB -C8FD C917 -C919 C933 -C935 C94F -C951 C96B -C96D C987 -C989 C9A3 -C9A5 C9BF -C9C1 C9DB -C9DD C9F7 -C9F9 CA13 -CA15 CA2F -CA31 CA4B -CA4D CA67 -CA69 CA83 -CA85 CA9F -CAA1 CABB -CABD CAD7 -CAD9 CAF3 -CAF5 CB0F -CB11 CB2B -CB2D CB47 -CB49 CB63 -CB65 CB7F -CB81 CB9B -CB9D CBB7 -CBB9 CBD3 -CBD5 CBEF -CBF1 CC0B -CC0D CC27 -CC29 CC43 -CC45 CC5F -CC61 CC7B -CC7D CC97 -CC99 CCB3 -CCB5 CCCF -CCD1 CCEB -CCED CD07 -CD09 CD23 -CD25 CD3F -CD41 CD5B -CD5D CD77 -CD79 CD93 -CD95 CDAF -CDB1 CDCB -CDCD CDE7 -CDE9 CE03 -CE05 CE1F -CE21 CE3B -CE3D CE57 -CE59 CE73 -CE75 CE8F -CE91 CEAB -CEAD CEC7 -CEC9 CEE3 -CEE5 CEFF -CF01 CF1B -CF1D CF37 -CF39 CF53 -CF55 CF6F -CF71 CF8B -CF8D CFA7 -CFA9 CFC3 -CFC5 CFDF -CFE1 CFFB -CFFD D017 -D019 D033 -D035 D04F -D051 D06B -D06D D087 -D089 D0A3 -D0A5 D0BF -D0C1 D0DB -D0DD D0F7 -D0F9 D113 -D115 D12F -D131 D14B -D14D D167 -D169 D183 -D185 D19F -D1A1 D1BB -D1BD D1D7 -D1D9 D1F3 -D1F5 D20F -D211 D22B -D22D D247 -D249 D263 -D265 D27F -D281 D29B -D29D D2B7 -D2B9 D2D3 -D2D5 D2EF -D2F1 D30B -D30D D327 -D329 D343 -D345 D35F -D361 D37B -D37D D397 -D399 D3B3 -D3B5 D3CF -D3D1 D3EB -D3ED D407 -D409 D423 -D425 D43F -D441 D45B -D45D D477 -D479 D493 -D495 D4AF -D4B1 D4CB -D4CD D4E7 -D4E9 D503 -D505 D51F -D521 D53B -D53D D557 -D559 D573 -D575 D58F -D591 D5AB -D5AD D5C7 -D5C9 D5E3 -D5E5 D5FF -D601 D61B -D61D D637 -D639 D653 -D655 D66F -D671 D68B -D68D D6A7 -D6A9 D6C3 -D6C5 D6DF -D6E1 D6FB -D6FD D717 -D719 D733 -D735 D74F -D751 D76B -D76D D787 -D789 D7A3 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/HY.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/HY.pl deleted file mode 100644 index 8ec58d6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/HY.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Hyphen' -# -return <<'END'; -002D -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/ID.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/ID.pl deleted file mode 100644 index e16466f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/ID.pl +++ /dev/null @@ -1,84 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Ideographic' -# -return <<'END'; -2E80 2E99 -2E9B 2EF3 -2F00 2FD5 -2FF0 2FFB -3000 -3003 3004 -3006 3007 -3012 3013 -3020 3029 -3030 303A -303D 303F -3042 -3044 -3046 -3048 -304A 3062 -3064 3082 -3084 -3086 -3088 308D -308F 3094 -309F -30A2 -30A4 -30A6 -30A8 -30AA 30C2 -30C4 30E2 -30E4 -30E6 -30E8 30ED -30EF 30F4 -30F7 30FA -30FF -3105 312D -3131 318E -3190 31B7 -31C0 31E3 -3200 321E -3220 3243 -3250 32FE -3300 4DB5 -4E00 9FC3 -A000 A014 -A016 A48C -A490 A4C6 -F900 FA2D -FA30 FA6A -FA70 FAD9 -FE30 FE34 -FE45 FE46 -FE49 FE4F -FE51 -FE58 -FE5F FE66 -FE68 -FE6B -FF02 FF03 -FF06 FF07 -FF0A FF0B -FF0D -FF0F FF19 -FF1C FF1E -FF20 FF3A -FF3C -FF3E FF5A -FF5C -FF5E -FFE2 FFE4 -20000 2A6D6 -2F800 2FA1D -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/IN.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/IN.pl deleted file mode 100644 index f69ce5b..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/IN.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Inseparable' -# -return <<'END'; -2024 2026 -FE19 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/IS.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/IS.pl deleted file mode 100644 index 807399f..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/IS.pl +++ /dev/null @@ -1,23 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Infix_Numeric' -# -return <<'END'; -002C -002E -003A 003B -037E -0589 -060C 060D -07F8 -2044 -FE10 -FE13 FE14 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/JL.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/JL.pl deleted file mode 100644 index f8967a8..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/JL.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'JL' -# -return <<'END'; -1100 1159 -115F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/JT.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/JT.pl deleted file mode 100644 index 20c1324..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/JT.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'JT' -# -return <<'END'; -11A8 11F9 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/JV.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/JV.pl deleted file mode 100644 index 73f6a92..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/JV.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'JV' -# -return <<'END'; -1160 11A2 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/LF.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/LF.pl deleted file mode 100644 index 6b06381..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/LF.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Line_Feed' -# -return <<'END'; -000A -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/NL.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/NL.pl deleted file mode 100644 index 58c709a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/NL.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Next_Line' -# -return <<'END'; -0085 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/NS.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/NS.pl deleted file mode 100644 index ec9c6b6..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/NS.pl +++ /dev/null @@ -1,50 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Nonstarter' -# -return <<'END'; -17D6 -203C 203D -2047 2049 -3005 -301C -303B 303C -3041 -3043 -3045 -3047 -3049 -3063 -3083 -3085 -3087 -308E -3095 3096 -309B 309E -30A0 30A1 -30A3 -30A5 -30A7 -30A9 -30C3 -30E3 -30E5 -30E7 -30EE -30F5 30F6 -30FB 30FE -31F0 31FF -A015 -FE54 FE55 -FF1A FF1B -FF65 -FF67 FF70 -FF9E FF9F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/NU.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/NU.pl deleted file mode 100644 index 518b167..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/NU.pl +++ /dev/null @@ -1,46 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Numeric' -# -return <<'END'; -0030 0039 -0660 0669 -066B 066C -06F0 06F9 -07C0 07C9 -0966 096F -09E6 09EF -0A66 0A6F -0AE6 0AEF -0B66 0B6F -0BE6 0BEF -0C66 0C6F -0CE6 0CEF -0D66 0D6F -0E50 0E59 -0ED0 0ED9 -0F20 0F29 -1040 1049 -1090 1099 -17E0 17E9 -1810 1819 -1946 194F -19D0 19D9 -1B50 1B59 -1BB0 1BB9 -1C40 1C49 -1C50 1C59 -A620 A629 -A8D0 A8D9 -A900 A909 -AA50 AA59 -104A0 104A9 -1D7CE 1D7FF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/OP.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/OP.pl deleted file mode 100644 index 0fc6701..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/OP.pl +++ /dev/null @@ -1,88 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Open_Punctuation' -# -return <<'END'; -0028 -005B -007B -00A1 -00BF -0F3A -0F3C -169B -201A -201E -2045 -207D -208D -2329 -2768 -276A -276C -276E -2770 -2772 -2774 -27C5 -27E6 -27E8 -27EA -27EC -27EE -2983 -2985 -2987 -2989 -298B -298D -298F -2991 -2993 -2995 -2997 -29D8 -29DA -29FC -2E18 -2E22 -2E24 -2E26 -2E28 -3008 -300A -300C -300E -3010 -3014 -3016 -3018 -301A -301D -FD3E -FE17 -FE35 -FE37 -FE39 -FE3B -FE3D -FE3F -FE41 -FE43 -FE47 -FE59 -FE5B -FE5D -FF08 -FF3B -FF5B -FF5F -FF62 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/PO.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/PO.pl deleted file mode 100644 index 514d935..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/PO.pl +++ /dev/null @@ -1,27 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Postfix_Numeric' -# -return <<'END'; -0025 -00A2 -00B0 -0609 060B -066A -0D79 -2030 2037 -20A7 -2103 -2109 -FDFC -FE6A -FF05 -FFE0 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/PR.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/PR.pl deleted file mode 100644 index 4b9a086..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/PR.pl +++ /dev/null @@ -1,31 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Prefix_Numeric' -# -return <<'END'; -0024 -002B -005C -00A3 00A5 -00B1 -09F2 09F3 -0AF1 -0BF9 -0E3F -17DB -20A0 20A6 -20A8 20B5 -2116 -2212 2213 -FE69 -FF04 -FFE1 -FFE5 FFE6 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/QU.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/QU.pl deleted file mode 100644 index c04eb33..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/QU.pl +++ /dev/null @@ -1,25 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Quotation' -# -return <<'END'; -0022 -0027 -00AB -00BB -2018 2019 -201B 201D -201F -2039 203A -275B 275E -2E00 2E0D -2E1C 2E1D -2E20 2E21 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/SA.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/SA.pl deleted file mode 100644 index 8f11103..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/SA.pl +++ /dev/null @@ -1,43 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Complex_Context' -# -return <<'END'; -0E01 0E3A -0E40 0E4E -0E81 0E82 -0E84 -0E87 0E88 -0E8A -0E8D -0E94 0E97 -0E99 0E9F -0EA1 0EA3 -0EA5 -0EA7 -0EAA 0EAB -0EAD 0EB9 -0EBB 0EBD -0EC0 0EC4 -0EC6 -0EC8 0ECD -0EDC 0EDD -1000 103F -1050 108F -109E 109F -1780 17D3 -17D7 -17DC 17DD -1950 196D -1970 1974 -1980 19A9 -19B0 19C9 -19DE 19DF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/SG.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/SG.pl deleted file mode 100644 index 92754a3..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/SG.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Surrogate' -# -return <<'END'; -D800 DFFF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/SP.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/SP.pl deleted file mode 100644 index 8f22f00..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/SP.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Space' -# -return <<'END'; -0020 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/SY.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/SY.pl deleted file mode 100644 index 70659c7..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/SY.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Break_Symbols' -# -return <<'END'; -002F -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/WJ.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/WJ.pl deleted file mode 100644 index 289789a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/WJ.pl +++ /dev/null @@ -1,15 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Word_Joiner' -# -return <<'END'; -2060 -FEFF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/XX.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/XX.pl deleted file mode 100644 index a71f74a..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/XX.pl +++ /dev/null @@ -1,16 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'Unknown' -# -return <<'END'; -E000 F8FF -F0000 FFFFD -100000 10FFFD -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/ZW.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/ZW.pl deleted file mode 100644 index 5797955..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/lb/ZW.pl +++ /dev/null @@ -1,14 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# Linebreak category 'ZWSpace' -# -return <<'END'; -200B -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/nt/De.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/nt/De.pl deleted file mode 100644 index ed39f2e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/nt/De.pl +++ /dev/null @@ -1,46 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# NumericType category 'Decimal' -# -return <<'END'; -0030 0039 -0660 0669 -06F0 06F9 -07C0 07C9 -0966 096F -09E6 09EF -0A66 0A6F -0AE6 0AEF -0B66 0B6F -0BE6 0BEF -0C66 0C6F -0CE6 0CEF -0D66 0D6F -0E50 0E59 -0ED0 0ED9 -0F20 0F29 -1040 1049 -1090 1099 -17E0 17E9 -1810 1819 -1946 194F -19D0 19D9 -1B50 1B59 -1BB0 1BB9 -1C40 1C49 -1C50 1C59 -A620 A629 -A8D0 A8D9 -A900 A909 -AA50 AA59 -FF10 FF19 -104A0 104A9 -1D7CE 1D7FF -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/nt/Di.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/nt/Di.pl deleted file mode 100644 index a8c471d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/nt/Di.pl +++ /dev/null @@ -1,29 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# NumericType category 'Digit' -# -return <<'END'; -00B2 00B3 -00B9 -1369 1371 -2070 -2074 2079 -2080 2089 -2460 2468 -2474 247C -2488 2490 -24EA -24F5 24FD -24FF -2776 277E -2780 2788 -278A 2792 -10A40 10A43 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/nt/Nu.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/nt/Nu.pl deleted file mode 100644 index a566654..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/unicore/lib/nt/Nu.pl +++ /dev/null @@ -1,63 +0,0 @@ -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by mktables from e.g. UnicodeData.txt. -# Any changes made here will be lost! - -# This file is for internal use by the Perl program only. The format and even -# name or existence of this file are subject to change without notice. Don't -# use it directly. - -# -# NumericType category 'Numeric' -# -return <<'END'; -00BC 00BE -09F4 09F7 -09F9 -0BF0 0BF2 -0C78 0C7E -0D70 0D75 -0F2A 0F33 -1372 137C -16EE 16F0 -17F0 17F9 -2153 2182 -2185 2188 -2469 2473 -247D 2487 -2491 249B -24EB 24F4 -24FE -277F -2789 -2793 -2CFD -3007 -3021 3029 -3038 303A -3192 3195 -3220 3229 -3251 325F -3280 3289 -32B1 32BF -F96B -F973 -F978 -F9B2 -F9D1 -F9D3 -F9FD -10107 10133 -10140 10178 -1018A -10320 10323 -10341 -1034A -103D1 103D5 -10916 10919 -10A44 10A47 -12400 12431 -12434 12455 -12458 12462 -1D360 1D371 -2F890 -END diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/utf8.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/utf8.pm deleted file mode 100644 index 24d2227..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/utf8.pm +++ /dev/null @@ -1,25 +0,0 @@ -package utf8; - -$utf8::hint_bits = 0x00800000; - -our $VERSION = '1.07'; - -sub import { - $^H |= $utf8::hint_bits; - $enc{caller()} = $_[1] if $_[1]; -} - -sub unimport { - $^H &= ~$utf8::hint_bits; -} - -sub AUTOLOAD { - require "utf8_heavy.pl"; - goto &$AUTOLOAD if defined &$AUTOLOAD; - require Carp; - Carp::croak("Undefined subroutine $AUTOLOAD called"); -} - -1; -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/utf8_heavy.pl b/beagle/debian-rfs/usr/share/perl/5.10.1/utf8_heavy.pl deleted file mode 100644 index b6b6b6e..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/utf8_heavy.pl +++ /dev/null @@ -1,286 +0,0 @@ -package utf8; -use strict; -use warnings; - -sub DEBUG () { 0 } - -sub DESTROY {} - -my %Cache; - -our (%PropertyAlias, %PA_reverse, %PropValueAlias, %PVA_reverse, %PVA_abbr_map); - -sub croak { require Carp; Carp::croak(@_) } - -## -## "SWASH" == "SWATCH HASH". A "swatch" is a swatch of the Unicode landscape. -## It's a data structure that encodes a set of Unicode characters. -## - -sub SWASHNEW { - my ($class, $type, $list, $minbits, $none) = @_; - local $^D = 0 if $^D; - - print STDERR "SWASHNEW @_\n" if DEBUG; - - ## - ## Get the list of codepoints for the type. - ## Called from swash_init (see utf8.c) or SWASHNEW itself. - ## - ## Callers of swash_init: - ## op.c:pmtrans -- for tr/// and y/// - ## regexec.c:regclass_swash -- for /[]/, \p, and \P - ## utf8.c:is_utf8_common -- for common Unicode properties - ## utf8.c:to_utf8_case -- for lc, uc, ucfirst, etc. and //i - ## - ## Given a $type, our goal is to fill $list with the set of codepoint - ## ranges. If $type is false, $list passed is used. - ## - ## $minbits: - ## For binary properties, $minbits must be 1. - ## For character mappings (case and transliteration), $minbits must - ## be a number except 1. - ## - ## $list (or that filled according to $type): - ## Refer to perlunicode.pod, "User-Defined Character Properties." - ## - ## For binary properties, only characters with the property value - ## of True should be listed. The 3rd column, if any, will be ignored. - ## - ## To make the parsing of $type clear, this code takes the a rather - ## unorthodox approach of last'ing out of the block once we have the - ## info we need. Were this to be a subroutine, the 'last' would just - ## be a 'return'. - ## - my $file; ## file to load data from, and also part of the %Cache key. - my $ListSorted = 0; - - if ($type) - { - $type =~ s/^\s+//; - $type =~ s/\s+$//; - - print STDERR "type = $type\n" if DEBUG; - - GETFILE: - { - ## - ## It could be a user-defined property. - ## - - my $caller1 = $type =~ s/(.+)::// ? $1 : caller(1); - - if (defined $caller1 && $type =~ /^(?:\w+)$/) { - my $prop = "${caller1}::$type"; - if (exists &{$prop}) { - no strict 'refs'; - - $list = &{$prop}; - last GETFILE; - } - } - - my $wasIs; - - ($wasIs = $type =~ s/^Is(?:\s+|[-_])?//i) - or - $type =~ s/^(?:(?:General(?:\s+|_)?)?Category|gc)\s*[:=]\s*//i - or - $type =~ s/^(?:Script|sc)\s*[:=]\s*//i - or - $type =~ s/^Block\s*[:=]\s*/In/i; - - - ## - ## See if it's in some enumeration. - ## - require "unicore/PVA.pl"; - if ($type =~ /^([\w\s]+)[:=]\s*(.*)/) { - my ($enum, $val) = (lc $1, lc $2); - $enum =~ tr/ _-//d; - $val =~ tr/ _-//d; - - my $pa = $PropertyAlias{$enum} ? $enum : $PA_reverse{$enum}; - my $f = $PropValueAlias{$pa}{$val} ? $val : $PVA_reverse{$pa}{lc $val}; - - if ($pa and $f) { - $pa = "gc_sc" if $pa eq "gc" or $pa eq "sc"; - $file = "unicore/lib/$pa/$PVA_abbr_map{$pa}{lc $f}.pl"; - last GETFILE; - } - } - else { - my $t = lc $type; - $t =~ tr/ _-//d; - - if ($PropValueAlias{gc}{$t} or $PropValueAlias{sc}{$t}) { - $file = "unicore/lib/gc_sc/$PVA_abbr_map{gc_sc}{$t}.pl"; - last GETFILE; - } - } - - ## - ## See if it's in the direct mapping table. - ## - require "unicore/Exact.pl"; - if (my $base = $utf8::Exact{$type}) { - $file = "unicore/lib/gc_sc/$base.pl"; - last GETFILE; - } - - ## - ## If not there exactly, try the canonical form. The canonical - ## form is lowercased, with any separators (\s+|[-_]) removed. - ## - my $canonical = lc $type; - $canonical =~ s/(?<=[a-z\d])(?:\s+|[-_])(?=[a-z\d])//g; - print STDERR "canonical = $canonical\n" if DEBUG; - - require "unicore/Canonical.pl"; - if (my $base = ($utf8::Canonical{$canonical} || $utf8::Canonical{ lc $utf8::PropertyAlias{$canonical} })) { - $file = "unicore/lib/gc_sc/$base.pl"; - last GETFILE; - } - - ## - ## See if it's a user-level "To". - ## - - my $caller0 = caller(0); - - if (defined $caller0 && $type =~ /^To(?:\w+)$/) { - my $map = $caller0 . "::" . $type; - - if (exists &{$map}) { - no strict 'refs'; - - $list = &{$map}; - last GETFILE; - } - } - - ## - ## Last attempt -- see if it's a standard "To" name - ## (e.g. "ToLower") ToTitle is used by ucfirst(). - ## The user-level way to access ToDigit() and ToFold() - ## is to use Unicode::UCD. - ## - if ($type =~ /^To(Digit|Fold|Lower|Title|Upper)$/) { - $file = "unicore/To/$1.pl"; - ## would like to test to see if $file actually exists.... - last GETFILE; - } - - ## - ## If we reach this line, it's because we couldn't figure - ## out what to do with $type. Ouch. - ## - - return $type; - } - - if (defined $file) { - print STDERR "found it (file='$file')\n" if DEBUG; - - ## - ## If we reach here, it was due to a 'last GETFILE' above - ## (exception: user-defined properties and mappings), so we - ## have a filename, so now we load it if we haven't already. - ## If we have, return the cached results. The cache key is the - ## class and file to load. - ## - my $found = $Cache{$class, $file}; - if ($found and ref($found) eq $class) { - print STDERR "Returning cached '$file' for \\p{$type}\n" if DEBUG; - return $found; - } - - $list = do $file; die $@ if $@; - } - - $ListSorted = 1; ## we know that these lists are sorted - } - - my $extras; - my $bits = $minbits; - - my $ORIG = $list; - if ($list) { - my @tmp = split(/^/m, $list); - my %seen; - no warnings; - $extras = join '', grep /^[^0-9a-fA-F]/, @tmp; - $list = join '', - map { $_->[1] } - sort { $a->[0] <=> $b->[0] } - map { /^([0-9a-fA-F]+)/; [ CORE::hex($1), $_ ] } - grep { /^([0-9a-fA-F]+)/ and not $seen{$1}++ } @tmp; # XXX doesn't do ranges right - } - - if ($none) { - my $hextra = sprintf "%04x", $none + 1; - $list =~ s/\tXXXX$/\t$hextra/mg; - } - - if ($minbits != 1 && $minbits < 32) { # not binary property - my $top = 0; - while ($list =~ /^([0-9a-fA-F]+)(?:[\t]([0-9a-fA-F]+)?)(?:[ \t]([0-9a-fA-F]+))?/mg) { - my $min = CORE::hex $1; - my $max = defined $2 ? CORE::hex $2 : $min; - my $val = defined $3 ? CORE::hex $3 : 0; - $val += $max - $min if defined $3; - $top = $val if $val > $top; - } - my $topbits = - $top > 0xffff ? 32 : - $top > 0xff ? 16 : 8; - $bits = $topbits if $bits < $topbits; - } - - my @extras; - for my $x ($extras) { - pos $x = 0; - while ($x =~ /^([^0-9a-fA-F\n])(.*)/mg) { - my $char = $1; - my $name = $2; - print STDERR "$1 => $2\n" if DEBUG; - if ($char =~ /[-+!&]/) { - my ($c,$t) = split(/::/, $name, 2); # bogus use of ::, really - my $subobj; - if ($c eq 'utf8') { - $subobj = utf8->SWASHNEW($t, "", $minbits, 0); - } - elsif (exists &$name) { - $subobj = utf8->SWASHNEW($name, "", $minbits, 0); - } - elsif ($c =~ /^([0-9a-fA-F]+)/) { - $subobj = utf8->SWASHNEW("", $c, $minbits, 0); - } - return $subobj unless ref $subobj; - push @extras, $name => $subobj; - $bits = $subobj->{BITS} if $bits < $subobj->{BITS}; - } - } - } - - print STDERR "CLASS = $class, TYPE => $type, BITS => $bits, NONE => $none\nEXTRAS =>\n$extras\nLIST =>\n$list\n" if DEBUG; - - my $SWASH = bless { - TYPE => $type, - BITS => $bits, - EXTRAS => $extras, - LIST => $list, - NONE => $none, - @extras, - } => $class; - - if ($file) { - $Cache{$class, $file} = $SWASH; - } - - return $SWASH; -} - -# Now SWASHGET is recasted into a C function S_swash_get (see utf8.c). - -1; diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/vars.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/vars.pm deleted file mode 100644 index 589915d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/vars.pm +++ /dev/null @@ -1,48 +0,0 @@ -package vars; - -use 5.006; - -our $VERSION = '1.01'; - -use warnings::register; -use strict qw(vars subs); - -sub import { - my $callpack = caller; - my ($pack, @imports) = @_; - my ($sym, $ch); - foreach (@imports) { - if (($ch, $sym) = /^([\$\@\%\*\&])(.+)/) { - if ($sym =~ /\W/) { - # time for a more-detailed check-up - if ($sym =~ /^\w+[[{].*[]}]$/) { - require Carp; - Carp::croak("Can't declare individual elements of hash or array"); - } elsif (warnings::enabled() and length($sym) == 1 and $sym !~ tr/a-zA-Z//) { - warnings::warn("No need to declare built-in vars"); - } elsif (($^H &= strict::bits('vars'))) { - require Carp; - Carp::croak("'$_' is not a valid variable name under strict vars"); - } - } - $sym = "${callpack}::$sym" unless $sym =~ /::/; - *$sym = - ( $ch eq "\$" ? \$$sym - : $ch eq "\@" ? \@$sym - : $ch eq "\%" ? \%$sym - : $ch eq "\*" ? \*$sym - : $ch eq "\&" ? \&$sym - : do { - require Carp; - Carp::croak("'$_' is not a valid variable name"); - }); - } else { - require Carp; - Carp::croak("'$_' is not a valid variable name"); - } - } -}; - -1; -__END__ - diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/warnings.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/warnings.pm deleted file mode 100644 index 3fc9a3d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/warnings.pm +++ /dev/null @@ -1,379 +0,0 @@ -# -*- buffer-read-only: t -*- -# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file was created by warnings.pl -# Any changes made here will be lost. -# - -package warnings; - -our $VERSION = '1.06'; - -# Verify that we're called correctly so that warnings will work. -# see also strict.pm. -unless ( __FILE__ =~ /(^|[\/\\])\Q${\__PACKAGE__}\E\.pmc?$/ ) { - my (undef, $f, $l) = caller; - die("Incorrect use of pragma '${\__PACKAGE__}' at $f line $l.\n"); -} - -our %Offsets = ( - - # Warnings Categories added in Perl 5.008 - - 'all' => 0, - 'closure' => 2, - 'deprecated' => 4, - 'exiting' => 6, - 'glob' => 8, - 'io' => 10, - 'closed' => 12, - 'exec' => 14, - 'layer' => 16, - 'newline' => 18, - 'pipe' => 20, - 'unopened' => 22, - 'misc' => 24, - 'numeric' => 26, - 'once' => 28, - 'overflow' => 30, - 'pack' => 32, - 'portable' => 34, - 'recursion' => 36, - 'redefine' => 38, - 'regexp' => 40, - 'severe' => 42, - 'debugging' => 44, - 'inplace' => 46, - 'internal' => 48, - 'malloc' => 50, - 'signal' => 52, - 'substr' => 54, - 'syntax' => 56, - 'ambiguous' => 58, - 'bareword' => 60, - 'digit' => 62, - 'parenthesis' => 64, - 'precedence' => 66, - 'printf' => 68, - 'prototype' => 70, - 'qw' => 72, - 'reserved' => 74, - 'semicolon' => 76, - 'taint' => 78, - 'threads' => 80, - 'uninitialized' => 82, - 'unpack' => 84, - 'untie' => 86, - 'utf8' => 88, - 'void' => 90, - ); - -our %Bits = ( - 'all' => "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x05", # [0..45] - 'ambiguous' => "\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00", # [29] - 'bareword' => "\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00", # [30] - 'closed' => "\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [6] - 'closure' => "\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [1] - 'debugging' => "\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00", # [22] - 'deprecated' => "\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [2] - 'digit' => "\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00", # [31] - 'exec' => "\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [7] - 'exiting' => "\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [3] - 'glob' => "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [4] - 'inplace' => "\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00", # [23] - 'internal' => "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00", # [24] - 'io' => "\x00\x54\x55\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [5..11] - 'layer' => "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [8] - 'malloc' => "\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00", # [25] - 'misc' => "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00", # [12] - 'newline' => "\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [9] - 'numeric' => "\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00", # [13] - 'once' => "\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00", # [14] - 'overflow' => "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00", # [15] - 'pack' => "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00", # [16] - 'parenthesis' => "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00", # [32] - 'pipe' => "\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [10] - 'portable' => "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00", # [17] - 'precedence' => "\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00", # [33] - 'printf' => "\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00", # [34] - 'prototype' => "\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00", # [35] - 'qw' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00", # [36] - 'recursion' => "\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00", # [18] - 'redefine' => "\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00", # [19] - 'regexp' => "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00", # [20] - 'reserved' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00", # [37] - 'semicolon' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00", # [38] - 'severe' => "\x00\x00\x00\x00\x00\x54\x05\x00\x00\x00\x00\x00", # [21..25] - 'signal' => "\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00", # [26] - 'substr' => "\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00", # [27] - 'syntax' => "\x00\x00\x00\x00\x00\x00\x00\x55\x55\x15\x00\x00", # [28..38] - 'taint' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00", # [39] - 'threads' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00", # [40] - 'uninitialized' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00", # [41] - 'unopened' => "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [11] - 'unpack' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00", # [42] - 'untie' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00", # [43] - 'utf8' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01", # [44] - 'void' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04", # [45] - ); - -our %DeadBits = ( - 'all' => "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a", # [0..45] - 'ambiguous' => "\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00", # [29] - 'bareword' => "\x00\x00\x00\x00\x00\x00\x00\x20\x00\x00\x00\x00", # [30] - 'closed' => "\x00\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [6] - 'closure' => "\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [1] - 'debugging' => "\x00\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00", # [22] - 'deprecated' => "\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [2] - 'digit' => "\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00", # [31] - 'exec' => "\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [7] - 'exiting' => "\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [3] - 'glob' => "\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [4] - 'inplace' => "\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00", # [23] - 'internal' => "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00", # [24] - 'io' => "\x00\xa8\xaa\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [5..11] - 'layer' => "\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [8] - 'malloc' => "\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00", # [25] - 'misc' => "\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00", # [12] - 'newline' => "\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [9] - 'numeric' => "\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00", # [13] - 'once' => "\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x00\x00", # [14] - 'overflow' => "\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00", # [15] - 'pack' => "\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00", # [16] - 'parenthesis' => "\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00", # [32] - 'pipe' => "\x00\x00\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [10] - 'portable' => "\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00", # [17] - 'precedence' => "\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00", # [33] - 'printf' => "\x00\x00\x00\x00\x00\x00\x00\x00\x20\x00\x00\x00", # [34] - 'prototype' => "\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00", # [35] - 'qw' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00", # [36] - 'recursion' => "\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x00", # [18] - 'redefine' => "\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00", # [19] - 'regexp' => "\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00", # [20] - 'reserved' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00", # [37] - 'semicolon' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\x00\x00", # [38] - 'severe' => "\x00\x00\x00\x00\x00\xa8\x0a\x00\x00\x00\x00\x00", # [21..25] - 'signal' => "\x00\x00\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00", # [26] - 'substr' => "\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00", # [27] - 'syntax' => "\x00\x00\x00\x00\x00\x00\x00\xaa\xaa\x2a\x00\x00", # [28..38] - 'taint' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00", # [39] - 'threads' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00", # [40] - 'uninitialized' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00", # [41] - 'unopened' => "\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [11] - 'unpack' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\x00", # [42] - 'untie' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00", # [43] - 'utf8' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02", # [44] - 'void' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08", # [45] - ); - -$NONE = "\0\0\0\0\0\0\0\0\0\0\0\0"; -$LAST_BIT = 92 ; -$BYTES = 12 ; - -$All = "" ; vec($All, $Offsets{'all'}, 2) = 3 ; - -sub Croaker -{ - require Carp::Heavy; # this initializes %CarpInternal - local $Carp::CarpInternal{'warnings'}; - delete $Carp::CarpInternal{'warnings'}; - Carp::croak(@_); -} - -sub bits -{ - # called from B::Deparse.pm - - push @_, 'all' unless @_; - - my $mask; - my $catmask ; - my $fatal = 0 ; - my $no_fatal = 0 ; - - foreach my $word ( @_ ) { - if ($word eq 'FATAL') { - $fatal = 1; - $no_fatal = 0; - } - elsif ($word eq 'NONFATAL') { - $fatal = 0; - $no_fatal = 1; - } - elsif ($catmask = $Bits{$word}) { - $mask |= $catmask ; - $mask |= $DeadBits{$word} if $fatal ; - $mask &= ~($DeadBits{$word}|$All) if $no_fatal ; - } - else - { Croaker("Unknown warnings category '$word'")} - } - - return $mask ; -} - -sub import -{ - shift; - - my $catmask ; - my $fatal = 0 ; - my $no_fatal = 0 ; - - my $mask = ${^WARNING_BITS} ; - - if (vec($mask, $Offsets{'all'}, 1)) { - $mask |= $Bits{'all'} ; - $mask |= $DeadBits{'all'} if vec($mask, $Offsets{'all'}+1, 1); - } - - push @_, 'all' unless @_; - - foreach my $word ( @_ ) { - if ($word eq 'FATAL') { - $fatal = 1; - $no_fatal = 0; - } - elsif ($word eq 'NONFATAL') { - $fatal = 0; - $no_fatal = 1; - } - elsif ($catmask = $Bits{$word}) { - $mask |= $catmask ; - $mask |= $DeadBits{$word} if $fatal ; - $mask &= ~($DeadBits{$word}|$All) if $no_fatal ; - } - else - { Croaker("Unknown warnings category '$word'")} - } - - ${^WARNING_BITS} = $mask ; -} - -sub unimport -{ - shift; - - my $catmask ; - my $mask = ${^WARNING_BITS} ; - - if (vec($mask, $Offsets{'all'}, 1)) { - $mask |= $Bits{'all'} ; - $mask |= $DeadBits{'all'} if vec($mask, $Offsets{'all'}+1, 1); - } - - push @_, 'all' unless @_; - - foreach my $word ( @_ ) { - if ($word eq 'FATAL') { - next; - } - elsif ($catmask = $Bits{$word}) { - $mask &= ~($catmask | $DeadBits{$word} | $All); - } - else - { Croaker("Unknown warnings category '$word'")} - } - - ${^WARNING_BITS} = $mask ; -} - -my %builtin_type; @builtin_type{qw(SCALAR ARRAY HASH CODE REF GLOB LVALUE Regexp)} = (); - -sub __chk -{ - my $category ; - my $offset ; - my $isobj = 0 ; - - if (@_) { - # check the category supplied. - $category = shift ; - if (my $type = ref $category) { - Croaker("not an object") - if exists $builtin_type{$type}; - $category = $type; - $isobj = 1 ; - } - $offset = $Offsets{$category}; - Croaker("Unknown warnings category '$category'") - unless defined $offset; - } - else { - $category = (caller(1))[0] ; - $offset = $Offsets{$category}; - Croaker("package '$category' not registered for warnings") - unless defined $offset ; - } - - my $this_pkg = (caller(1))[0] ; - my $i = 2 ; - my $pkg ; - - if ($isobj) { - while (do { { package DB; $pkg = (caller($i++))[0] } } ) { - last unless @DB::args && $DB::args[0] =~ /^$category=/ ; - } - $i -= 2 ; - } - else { - $i = _error_loc(); # see where Carp will allocate the error - } - - my $callers_bitmask = (caller($i))[9] ; - return ($callers_bitmask, $offset, $i) ; -} - -sub _error_loc { - require Carp::Heavy; - goto &Carp::short_error_loc; # don't introduce another stack frame -} - -sub enabled -{ - Croaker("Usage: warnings::enabled([category])") - unless @_ == 1 || @_ == 0 ; - - my ($callers_bitmask, $offset, $i) = __chk(@_) ; - - return 0 unless defined $callers_bitmask ; - return vec($callers_bitmask, $offset, 1) || - vec($callers_bitmask, $Offsets{'all'}, 1) ; -} - -sub warn -{ - Croaker("Usage: warnings::warn([category,] 'message')") - unless @_ == 2 || @_ == 1 ; - - my $message = pop ; - my ($callers_bitmask, $offset, $i) = __chk(@_) ; - require Carp; - Carp::croak($message) - if vec($callers_bitmask, $offset+1, 1) || - vec($callers_bitmask, $Offsets{'all'}+1, 1) ; - Carp::carp($message) ; -} - -sub warnif -{ - Croaker("Usage: warnings::warnif([category,] 'message')") - unless @_ == 2 || @_ == 1 ; - - my $message = pop ; - my ($callers_bitmask, $offset, $i) = __chk(@_) ; - - return - unless defined $callers_bitmask && - (vec($callers_bitmask, $offset, 1) || - vec($callers_bitmask, $Offsets{'all'}, 1)) ; - - require Carp; - Carp::croak($message) - if vec($callers_bitmask, $offset+1, 1) || - vec($callers_bitmask, $Offsets{'all'}+1, 1) ; - - Carp::carp($message) ; -} - -1; -# ex: set ro: diff --git a/beagle/debian-rfs/usr/share/perl/5.10.1/warnings/register.pm b/beagle/debian-rfs/usr/share/perl/5.10.1/warnings/register.pm deleted file mode 100644 index 65dba3d..0000000 --- a/beagle/debian-rfs/usr/share/perl/5.10.1/warnings/register.pm +++ /dev/null @@ -1,32 +0,0 @@ -package warnings::register; - -our $VERSION = '1.01'; - -require warnings; - -sub mkMask -{ - my ($bit) = @_; - my $mask = ""; - - vec($mask, $bit, 1) = 1; - return $mask; -} - -sub import -{ - shift; - my $package = (caller(0))[0]; - if (! defined $warnings::Bits{$package}) { - $warnings::Bits{$package} = mkMask($warnings::LAST_BIT); - vec($warnings::Bits{'all'}, $warnings::LAST_BIT, 1) = 1; - $warnings::Offsets{$package} = $warnings::LAST_BIT ++; - foreach my $k (keys %warnings::Bits) { - vec($warnings::Bits{$k}, $warnings::LAST_BIT, 1) = 0; - } - $warnings::DeadBits{$package} = mkMask($warnings::LAST_BIT); - vec($warnings::DeadBits{'all'}, $warnings::LAST_BIT++, 1) = 1; - } -} - -1; |
