1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
#!/usr/bin/perl -w
use strict;
use warnings;
use File::chdir;
use File::Temp ();
use Getopt::Long;
use Net::FTP;
my %opts = (
download => 1,
dir => undef,
);
GetOptions(
'download!' => \$opts{download},
'dir:s' => \$opts{dir},
);
my $olson_version;
my $dir = $opts{dir} ? $opts{dir} : File::Temp::tempdir( CLEANUP => 1 );
{
local $CWD = $dir;
if ( $opts{download} ) {
my $ftp = Net::FTP->new( 'elsie.nci.nih.gov', Passive => 1 )
or die "Cannot connect to elsie.nci.nih.gov: $@";
$ftp->login()
or die 'Cannot login: ', $ftp->message;
$ftp->cwd('/pub')
or die 'Cannot cwd to /pub: ', $ftp->message;
$ftp->binary();
for my $f ( $ftp->ls ) {
if ( $f =~ /^tz(?:code|data)/ ) {
print "Getting $f\n";
$ftp->get($f);
system( 'tar', 'xzf', $f );
($olson_version) = $f =~ /(\d\d\d\d\w)/;
}
}
die "Did not retrieve anything from elsie"
unless $olson_version;
}
else {
$dir =~ s{/$}{};
($olson_version) = $dir =~ m{/([^/]+)$};
}
system('make')
and die "Cannot run make: $!";
for my $f (
qw( africa antarctica asia australasia
europe northamerica pacificnew
southamerica backward
)
) {
system( 'sudo', './zic', '-d', '/usr/share/zoneinfo', $f )
and die "Cannot run zic on $f";
}
}
{
system(
'./tools/parse_olson',
'--clean',
'--version', $olson_version,
'--dir', $dir,
) and die "Cannot run parse_olson: $!";
print "Generating tests from zdump\n";
system('./tools/tests_from_zdump')
and die "Cannot run tests_from_zdump: $!";
}
|