diff options
author | Elliott Hughes <enh@google.com> | 2012-11-26 13:44:49 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2012-11-26 14:51:39 -0800 |
commit | 5d2ef8724d8978465b9795198099305d0f0b12d0 (patch) | |
tree | eadbe7f85c37a6696fb50d217f47db4763c5b6ab /libc/tools | |
parent | 8784709a2cfe6d32b5fff2c6b826b8d9cbf73d7b (diff) | |
download | bionic-5d2ef8724d8978465b9795198099305d0f0b12d0.zip bionic-5d2ef8724d8978465b9795198099305d0f0b12d0.tar.gz bionic-5d2ef8724d8978465b9795198099305d0f0b12d0.tar.bz2 |
Upgrade to tzdata2012j.
This reflects the following changes recently circulated on the tz mailing list:
Libya moved to CET [2012-11-11], but with DST planned [2013].
(Thanks to Even Scharning, Steffen Thorsen, and Tim Parenti.)
I also had to change the script to cope with:
Signatures now have the extension .asc, not .sign, as that's more
standard. (Thanks to Phil Pennock.)
Change-Id: Ie9711c5c796b3c122daea9690929edcc3ddd32da
Diffstat (limited to 'libc/tools')
-rwxr-xr-x | libc/tools/zoneinfo/generate | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libc/tools/zoneinfo/generate b/libc/tools/zoneinfo/generate index ba8ea0d..334ba3c 100755 --- a/libc/tools/zoneinfo/generate +++ b/libc/tools/zoneinfo/generate @@ -66,22 +66,24 @@ def UpgradeTo(ftp, data_filename): """Downloads and repackages the given data from the given FTP server.""" new_version = re.search('(tzdata.+)\\.tar\\.gz', data_filename).group(1) - signature_filename = '%s.sign' % data_filename # Switch to a temporary directory. tmp_dir = tempfile.mkdtemp('-tzdata') os.chdir(tmp_dir) print 'Created temporary directory "%s"...' % tmp_dir - print 'Downloading data and signature...' + print 'Downloading data...' Retrieve(ftp, data_filename) + + print 'Downloading signature...' + signature_filename = '%s.asc' % data_filename Retrieve(ftp, signature_filename) print 'Verifying signature...' # If this fails for you, you probably need to import Paul Eggert's public key: # gpg --recv-keys ED97E90E62AA7E34 - subprocess.check_call(['gpg', '--trusted-key=ED97E90E62AA7E34', - '--verify', signature_filename, data_filename]) + subprocess.check_call(['gpg', '--trusted-key=ED97E90E62AA7E34', '--verify', + signature_filename, data_filename]) print 'Extracting...' os.mkdir('extracted') |