From 0d00e3b691146fbd0f51b0782988a62621a72b88 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 6 Nov 2008 17:48:47 +0000 Subject: [PATCH] * luci/build: add zoneinfo2lua.pl utility --- build/zoneinfo2lua.pl | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 build/zoneinfo2lua.pl diff --git a/build/zoneinfo2lua.pl b/build/zoneinfo2lua.pl new file mode 100644 index 000000000..fdcc3d60e --- /dev/null +++ b/build/zoneinfo2lua.pl @@ -0,0 +1,68 @@ +#!/usr/bin/perl +# zoneinfo2lua.pl - Make Lua module from /usr/share/zoneinfo +# Execute from within /usr/share/zoneinfo +# $Id$ + +use strict; + +my %TZ; + +local $/ = "\012"; +open( ZTAB, "< ./zone.tab" ) || die "Unable to open zone.tab: $!"; + +while( ! eof ZTAB ) { + chomp( my $line = readline ZTAB ); + next if $line =~ /^#/ || $line =~ /^\s+$/; + + my ( undef, undef, $zone, @comment ) = split /\s+/, $line; + + printf STDERR "%-40s", $zone; + + if( open ZONE, "< ./$zone" ) { + seek ZONE, -2, 2; + + while( tell(ZONE) > 0 ) { + read ZONE, my $char, 1; + ( $char eq "\012" ) ? last : seek ZONE, -2, 1; + } + + chomp( my $tz = readline ZONE ); + print STDERR ( $tz || "(no tzinfo found)" ), "\n"; + close ZONE; + + if( $tz ) { + $zone =~ s/_/ /g; + $TZ{$zone} = $tz; + } + } + else + { + print STDERR "Unable to open $zone: $!\n"; + } +} + +close ZTAB; + + +print <