cosmopolitan/third_party/tz
Jōshin 317c8bc312
Update MODE=tiny time zone list (#1167)
I took one canonical IANA zone ID from each of the different colored
regions in this article, except those that do not observe DST and do
not have a Google office. See the "Time in Europe" Wikipedia article.

As to which canonical ID to use, this was somewhat arbitrary. Brussels
was obvious, as the de facto capital of the EU. For the rest, I mostly
just went with lexicographic ordering of the most recognizable options.

I've sorted the American zones. This Keeps the U.S. ones together but
does everything alphabetically otherwise. I've added the remaining
Canadian zones These have DST (and Newfoundland is off by a half-
hour from a UTC interval) so they cannot use Etc/. The Pacific/ zones
are sort of sorted. The Chathan Islands have been added. This is the
last of the zones I believe with a non-integer hour offset from UTC.
2024-05-06 16:48:49 -07:00
..
asctime.c Implement proper time zone support 2024-05-04 23:06:37 -07:00
BUILD.mk Fix build error 2024-05-04 23:23:56 -07:00
ctime.c Implement proper time zone support 2024-05-04 23:06:37 -07:00
ctime_r.c Implement proper time zone support 2024-05-04 23:06:37 -07:00
daylight.c Implement proper time zone support 2024-05-04 23:06:37 -07:00
difftime.c Implement proper time zone support 2024-05-04 23:06:37 -07:00
LICENSE Implement proper time zone support 2024-05-04 23:06:37 -07:00
localtime.c Update MODE=tiny time zone list (#1167) 2024-05-06 16:48:49 -07:00
private.h Implement proper time zone support 2024-05-04 23:06:37 -07:00
README.cosmo Implement proper time zone support 2024-05-04 23:06:37 -07:00
strftime.c Implement proper time zone support 2024-05-04 23:06:37 -07:00
timezone.c Implement proper time zone support 2024-05-04 23:06:37 -07:00
tzdir.h Implement proper time zone support 2024-05-04 23:06:37 -07:00
tzfile.h Implement proper time zone support 2024-05-04 23:06:37 -07:00
tzname.c Implement proper time zone support 2024-05-04 23:06:37 -07:00
windows.py Update MODE=tiny time zone list (#1167) 2024-05-06 16:48:49 -07:00

DESCRIPTION

  tz is a library for handling time zones

LICENSE

  See LICENSE file

ORIGIN

  git@github.com:eggert/tz.git
  a75a6251d30b28a7badc1763296205adf67a5081
  Paul Eggert <eggert@cs.ucla.edu>

BUILD PROCESS

  make -j8 install BACKWARD= DESTDIR=stage REDO=posix_only

LOCAL CHANGES

  - Add aliases for legacy Cosmo timezone names.
  - Add yoinks for embedding time zones in binary.
  - Make localtime() posix thread cancelation safe.
  - Improve readabiilty with "localtime_" prefixes.
  - Automate the TZ environment variable on Windows.