2016-07-05 18:16:05 -06:00
|
|
|
#!/bin/bash
|
2016-04-10 15:32:26 -06:00
|
|
|
# Copyright 2012 The Go Authors. All rights reserved.
|
2012-02-18 18:33:58 -07:00
|
|
|
# Use of this source code is governed by a BSD-style
|
|
|
|
# license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
# This script rebuilds the time zone files using files
|
|
|
|
# downloaded from the ICANN/IANA distribution.
|
2022-12-05 21:07:54 -07:00
|
|
|
#
|
|
|
|
# To prepare an update for a new Go release,
|
|
|
|
# consult https://www.iana.org/time-zones for the latest versions,
|
|
|
|
# update CODE and DATA below, and then run
|
|
|
|
#
|
|
|
|
# ./update.bash -commit
|
|
|
|
#
|
|
|
|
# That will prepare the files and create the commit.
|
|
|
|
#
|
|
|
|
# To review such a commit (as the reviewer), use:
|
|
|
|
#
|
|
|
|
# git codereview change NNNNNN # CL number
|
|
|
|
# cd lib/time
|
|
|
|
# ./update.bash
|
|
|
|
#
|
|
|
|
# If it prints "No updates needed.", then the generated files
|
|
|
|
# in the CL match the update.bash in the CL.
|
2012-02-18 18:33:58 -07:00
|
|
|
|
|
|
|
# Versions to use.
|
2023-05-03 10:32:44 -06:00
|
|
|
CODE=2023c
|
|
|
|
DATA=2023c
|
2012-02-18 18:33:58 -07:00
|
|
|
|
|
|
|
set -e
|
2022-12-05 21:07:54 -07:00
|
|
|
|
|
|
|
cd $(dirname $0)
|
2012-02-19 01:16:20 -07:00
|
|
|
rm -rf work
|
|
|
|
mkdir work
|
2022-12-05 21:07:54 -07:00
|
|
|
go build -o work/mkzip mkzip.go # build now for correct paths in build errors
|
2012-02-18 18:33:58 -07:00
|
|
|
cd work
|
2012-02-19 01:16:20 -07:00
|
|
|
mkdir zoneinfo
|
2022-12-05 21:07:54 -07:00
|
|
|
curl -sS -L -O https://www.iana.org/time-zones/repository/releases/tzcode$CODE.tar.gz
|
|
|
|
curl -sS -L -O https://www.iana.org/time-zones/repository/releases/tzdata$DATA.tar.gz
|
2012-02-18 18:33:58 -07:00
|
|
|
tar xzf tzcode$CODE.tar.gz
|
|
|
|
tar xzf tzdata$DATA.tar.gz
|
|
|
|
|
2022-12-05 21:07:54 -07:00
|
|
|
if ! make CFLAGS=-DSTD_INSPIRED AWK=awk TZDIR=zoneinfo posix_only >make.out 2>&1; then
|
|
|
|
cat make.out
|
|
|
|
exit 2
|
|
|
|
fi
|
2012-02-18 18:33:58 -07:00
|
|
|
|
2012-02-19 01:16:20 -07:00
|
|
|
cd zoneinfo
|
2022-12-05 21:07:54 -07:00
|
|
|
../mkzip ../../zoneinfo.zip
|
2012-02-19 01:16:20 -07:00
|
|
|
cd ../..
|
2020-04-13 17:48:23 -06:00
|
|
|
|
2022-12-05 21:39:49 -07:00
|
|
|
files="update.bash zoneinfo.zip"
|
2022-12-05 21:07:54 -07:00
|
|
|
modified=true
|
|
|
|
if git diff --quiet $files; then
|
|
|
|
modified=false
|
|
|
|
fi
|
|
|
|
|
2018-01-23 23:11:51 -07:00
|
|
|
if [ "$1" = "-work" ]; then
|
2012-02-18 18:33:58 -07:00
|
|
|
echo Left workspace behind in work/.
|
2022-12-05 21:07:54 -07:00
|
|
|
shift
|
2012-02-18 18:33:58 -07:00
|
|
|
else
|
|
|
|
rm -rf work
|
|
|
|
fi
|
2022-12-05 21:07:54 -07:00
|
|
|
|
|
|
|
if ! $modified; then
|
|
|
|
echo No updates needed.
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo Updated for $CODE/$DATA: $files
|
|
|
|
|
|
|
|
commitmsg="lib/time: update to $CODE/$DATA
|
|
|
|
|
|
|
|
Commit generated by update.bash.
|
|
|
|
|
|
|
|
For #22487.
|
|
|
|
"
|
|
|
|
|
|
|
|
if [ "$1" = "-commit" ]; then
|
|
|
|
echo "Creating commit. Run 'git reset HEAD^' to undo commit."
|
|
|
|
echo
|
|
|
|
git commit -m "$commitmsg" $files
|
|
|
|
echo
|
|
|
|
git log -n1 --stat
|
|
|
|
echo
|
|
|
|
fi
|