47b892
Summary: Timezone data
47b892
Name: tzdata
a215bf
Version: 2022c
a215bf
%define tzdata_version 2022c
a215bf
%define tzcode_version 2022c
47b892
Release: 1%{?dist}
47b892
License: Public Domain
47b892
URL: https://www.iana.org/time-zones
47b892
Source0: ftp://ftp.iana.org/tz/releases/tzdata%{tzdata_version}.tar.gz
47b892
Source1: ftp://ftp.iana.org/tz/releases/tzcode%{tzcode_version}.tar.gz
47b892
47b892
Patch002: 0002-Fix-have-snprintf-error.patch
47b892
%if 0%{?rhel} || 0%{?eln}
47b892
Patch003: 0003-continue-to-ship-posixrules.patch
47b892
%endif
47b892
47b892
BuildRequires: make
47b892
BuildRequires: gawk, glibc, perl-interpreter
47b892
BuildRequires: java-devel
47b892
BuildRequires: glibc-common >= 2.5.90-7
47b892
Conflicts: glibc-common <= 2.3.2-63
47b892
BuildArchitectures: noarch
47b892
47b892
%description
47b892
This package contains data files with rules for various timezones around
47b892
the world.
47b892
47b892
%package java
47b892
Summary: Timezone data for Java
47b892
Source3: javazic.tar.gz
47b892
Source4: javazic-1.8-37392f2f5d59.tar.xz
47b892
Patch100: javazic-fixup.patch
47b892
Patch101: rebase-01.patch
47b892
Patch102: rebase-02.patch
47b892
Patch103: 7090844.patch
47b892
Patch104: 7133138.patch
47b892
47b892
%description java
47b892
This package contains timezone information for use by Java runtimes.
47b892
47b892
%prep
47b892
%setup -q -c -a 1
47b892
47b892
%patch002 -p1
47b892
%if 0%{?rhel} || 0%{?eln}
47b892
%patch003 -p1
47b892
%endif
47b892
47b892
# tzdata-2018g introduced 25:00 transition times.  This breaks OpenJDK.
47b892
# Use rearguard for java
47b892
mkdir rearguard
47b892
make VERSION=%{version} tzdata%{version}-rearguard.tar.gz
47b892
mv tzdata%{version}-rearguard.tar.gz rearguard
47b892
pushd rearguard
47b892
tar zxf tzdata%{version}-rearguard.tar.gz
47b892
popd
47b892
47b892
%if 0%{?rhel} || 0%{?eln}
47b892
# Use rearguard for rhel (overwrite default vangaurd data)
47b892
tar zxf rearguard/tzdata%{version}-rearguard.tar.gz
47b892
%endif
47b892
47b892
mkdir javazic
47b892
tar zxf %{SOURCE3} -C javazic
47b892
pushd javazic
47b892
%patch100
47b892
%patch101
47b892
%patch102
47b892
%patch103
47b892
%patch104
47b892
47b892
# Hack alert! sun.tools may be defined and installed in the
47b892
# VM. In order to guarantee that we are using IcedTea/OpenJDK
47b892
# for creating the zoneinfo files, rebase all the packages
47b892
# from "sun." to "rht.". Unfortunately, gcj does not support
47b892
# any of the -Xclasspath options, so we must go this route
47b892
# to ensure the greatest compatibility.
47b892
mv sun rht
47b892
find . -type f -name '*.java' -print0 \
47b892
    | xargs -0 -- sed -i -e 's:sun\.tools\.:rht.tools.:g' \
47b892
                         -e 's:sun\.util\.:rht.util.:g'
47b892
popd
47b892
47b892
tar xf %{SOURCE4}
47b892
47b892
echo "%{name}%{tzdata_version}" >> VERSION
47b892
47b892
%build
47b892
# Run make to create the tzdata.zi file
47b892
rm tzdata.zi
47b892
%if 0%{?rhel} || 0%{?eln}
47b892
make VERSION=%{version} DATAFORM=rearguard tzdata.zi
47b892
%else
47b892
make tzdata.zi
47b892
%endif
47b892
47b892
FILES="africa antarctica asia australasia europe northamerica southamerica
47b892
       etcetera backward factory"
47b892
47b892
mkdir zoneinfo/{,posix,right}
47b892
zic -y ./yearistype -d zoneinfo -L /dev/null -p America/New_York $FILES
47b892
zic -y ./yearistype -d zoneinfo/posix -L /dev/null $FILES
47b892
zic -y ./yearistype -d zoneinfo/right -L leapseconds $FILES
47b892
47b892
# grep -v tz-art.htm tz-link.htm > tz-link.html
47b892
47b892
# tzdata-2018g introduced 25:00 which breaks java - use the rearguard files for java
47b892
JAVA_FILES="rearguard/africa rearguard/antarctica rearguard/asia \
47b892
      rearguard/australasia rearguard/europe rearguard/northamerica \
47b892
      rearguard/southamerica rearguard/etcetera \
47b892
      rearguard/backward"
47b892
47b892
# Java 6/7 tzdata
47b892
pushd javazic
47b892
javac -source 1.6 -target 1.6 -classpath . `find . -name \*.java`
47b892
popd
47b892
47b892
java -classpath javazic/ rht.tools.javazic.Main -V %{version} \
47b892
  -d javazi \
47b892
  $JAVA_FILES javazic/tzdata_jdk/gmt javazic/tzdata_jdk/jdk11_backward
47b892
47b892
# Java 8 tzdata
47b892
pushd javazic-1.8
47b892
javac -source 1.8 -target 1.8 -classpath . `find . -name \*.java`
47b892
popd
47b892
47b892
java -classpath javazic-1.8 build.tools.tzdb.TzdbZoneRulesCompiler \
47b892
    -srcdir . -dstfile tzdb.dat \
47b892
    -verbose \
47b892
    $JAVA_FILES javazic-1.8/tzdata_jdk/gmt javazic-1.8/tzdata_jdk/jdk11_backward
47b892
47b892
%install
47b892
rm -fr $RPM_BUILD_ROOT
47b892
install -d $RPM_BUILD_ROOT%{_datadir}
47b892
cp -prd zoneinfo $RPM_BUILD_ROOT%{_datadir}
47b892
install -p -m 644 zone.tab zone1970.tab iso3166.tab leapseconds tzdata.zi $RPM_BUILD_ROOT%{_datadir}/zoneinfo
47b892
cp -prd javazi $RPM_BUILD_ROOT%{_datadir}/javazi
47b892
mkdir -p $RPM_BUILD_ROOT%{_datadir}/javazi-1.8
47b892
install -p -m 644 tzdb.dat $RPM_BUILD_ROOT%{_datadir}/javazi-1.8/
47b892
47b892
%files
47b892
%{_datadir}/zoneinfo
47b892
%license LICENSE
47b892
%doc README
47b892
%doc theory.html
47b892
%doc tz-link.html
47b892
%doc tz-art.html
47b892
47b892
%files java
47b892
%{_datadir}/javazi
47b892
%{_datadir}/javazi-1.8
47b892
47b892
%changelog
a215bf
* Wed Aug 17 2022 Patsy Griffin <patsy@redhat.com> - 2022c-1
a215bf
- Rebase to tzdata-2022c - supersedes tzdata-2022b
a215bf
  - Add a work-around for an awk bug in FreeBSD, macOS, etc.
a215bf
  - Improve tzselect with respect to intercontinental Zones.
a215bf
a215bf
* Mon Aug 15 2022 Patsy Griffin <patsy@redhat.com> - 2022b-1
a215bf
- Rebase to tzdata-2022b
a215bf
  - Chile transitions to DST on 2022-09-11, not 2022-09-04
a215bf
  - 'make install' now defaults LOCALTIME to Factory rather than GMT
a215bf
  - More zones that are the same since 1970 have been moved to backzone.
a215bf
  - Include patch for awk workaround.
a215bf
a215bf
* Thu Apr 14 2022 Patsy Griffin <patsy@redhat.com> - 2022a-1
a215bf
- Rebase to tzdata-2022a
a215bf
  - Palestine springs forward on 2022-03-27, not -03-26.
a215bf
  - zdump -v now outputs better failure information
a215bf
  - fixes for code that reads corrupted TZif data
a215bf
47b892
* Fri Nov 05 2021 Patsy Griffin <patsy@redhat.com> - 2021e-1
47b892
- Rebase to tzdata-2021e - supersedes tzdata-2021d
47b892
  - Pacific/Fiji suspended DST for the 2021/2022 season.
47b892
  - 'zic -r' now marks unspecified timestamps with "-00".
47b892
  - Palestine will fall back 2021-10-29 at 01:00, rather
47b892
    than the predicted 2021-10-30.
47b892
47b892
* Thu Oct 07 2021 Patsy Griffin <patsy@redhat.com> - 2021c-1
47b892
- Rebase to tzdata-2021c - supersedes tzdata-2021b
47b892
  - Revert most of 2021b changes to 'backward'.
47b892
  - Fix 'zic -b fat' bug in pre-1970 32-bit data.
47b892
  - Fix two Link line typos.
47b892
  - Distribute SECURITY file.
47b892
  - Includes changes in tzdata-2021b:
47b892
  - Jordan now starts DST on February's last Thursday.
47b892
  - Samoa no longer observes DST.
47b892
  - Merge more location-based Zones whose timestamps agree since 1970.
47b892
  - Move some backward-compatibility links to 'backward'.
47b892
  - Rename Pacific/Enderbury to Pacific/Kanton.
47b892
  - Correct many pre-1993 transitions in Malawi, Portugal, etc.
47b892
  - zic now creates each output file or link atomically.
47b892
  - zic -L no longer omits the POSIX TZ string in its output.
47b892
  - zic fixes for truncation and leap second table expiration.
47b892
  - zic now follows POSIX for TZ strings using all-year DST.
47b892
  - Fix some localtime crashes and bugs in obscure cases.
47b892
  - zdump -v now outputs more-useful boundary cases.
47b892
  - tzfile.5 better matches a draft successor to RFC 8536.
47b892
47b892
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 2021a-3
47b892
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
47b892
  Related: rhbz#1991688
47b892
47b892
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2021a-2
47b892
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
47b892
47b892
* Mon Jan 25 2021 Patsy Griffin <patsy@redhat.com> - 2021a-1
47b892
- Rebase to tzdata-2021a
47b892
  - South Sudan will change from +03 to +02 on 2021-02-01.
47b892
47b892
* Wed Dec 30 2020 Patsy Griffin <patsy@redhat.com> - 2020f-1
47b892
- Rebase to tzdata-2020f including changes for tzdata-2020e
47b892
  - tzdata-2020f fixes a bug in tzdata-2020e that caused an
47b892
    invalid zi file in rearguard format
47b892
  - Volgograd changes time zone from UTC+04 to UTC+03 on 2020-12-27.
47b892
  - Australia/Currie is identical to Australia/Hobart for all
47b892
    timestamps since 1970 and was therefore created by mistake,
47b892
    now moved to the "backward" file.
47b892
47b892
* Wed Dec 16 2020 Patsy Griffin <patsy@redhat.com> - 2020d-3
47b892
- Add 0003-continue-to-ship-posixrules.patch to initialize
47b892
  POSIXRULES variable.
47b892
47b892
* Wed Dec 16 2020 Patsy Griffin <patsy@redhat.com> - 2020d-2
47b892
- Add conditional support for rhel and eln.
47b892
47b892
* Fri Oct 23 2020 Patsy Griffin <patsy@redhat.com> - 2020d-1
47b892
- Rebase to tzdata-2020d including changes from tzdata-2020c
47b892
  - Palestine will end summer time on 2020-10-24 rather than the
47b892
    predicted 2020-10-31.
47b892
  - Fiji starts DST later than usual, on 2020-12-20.
47b892
  - Rearguard now provides an empty file pacificnew to support
47b892
    downstream software that expects it.
47b892
47b892
* Wed Oct 14 2020 Patsy Griffin <patsy@redhat.com> - 2020b-1
47b892
- Rebase to tzdata-2020b
47b892
  - Yukon timezones represented by America/Whitehorse and
47b892
    America/Dawson will change time zone rules from -08/-07 to
47b892
    permanent -07 on 2020-11-01, not on 2020-03-08 as 2020a had it.
47b892
  - The most recent winter(+08)/summer(+11) transition for Casey Station,
47b892
    Antarctica was 2020-10-04 00:01.
47b892
  - Remove obsolete files pacificnew, systemv, and yearistype.sh
47b892
    from the distribution.
47b892
47b892
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2020a-4
47b892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
47b892
47b892
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 2020a-3
47b892
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
47b892
47b892
* Fri Jun 12 2020 Jiri Vanek <jvanek@redhat.com> - 2020a-2
47b892
- bumped  source/target to 1.6 for tzdata for jdk6/7
47b892
- bumped  source/target to 1.8 for tzdata for jdk8
47b892
47b892
* Thu Apr 30 2020 Patsy Griffin <patsy@redhat.com> - 2020a-1
47b892
- Rebase to tzdata-2020a
47b892
  - Morocco will spring forward on 2020-05-31 rather than
47b892
    previously predicted 2020-05-24.
47b892
  - Canada's Yukon region changed to year round UTC -07
47b892
    effective 2020-03-08.
47b892
  - America/Godthab was renamed to America/Nuuk.
47b892
47b892
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2019c-3
47b892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
47b892
47b892
* Fri Jan 17 2020 Patsy Griffin <patsy@redhat.com> - 2019c-2
47b892
- Don't build the factory zone for tzdata-java.
47b892
  Patch provided by Severin Gehwolf <sgehwolf@redhat.com> (#1789468)
47b892
47b892
* Mon Sep 23 2019 Patsy Griffin <patsy@redhat.com> - 2019c-1
47b892
- Rebase to tzdata-2019c
47b892
  - Fiji will observe DST from 2019-11-10 to 2020-01-12.
47b892
  - Norfolk Island will begin observing Australian-style DST on 2019-10-06.
47b892
- Add Factory back in to be more consistent with upstream.
47b892
47b892
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2019b-2
47b892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
47b892
47b892
* Tue Jul 09 2019 Patsy Griffin <patsy@redhat.com> - 2019b-1
47b892
- Rebase to tzdata-2019b
47b892
  - Brazil will no longer observe DST going forward.
47b892
  - The 2019 spring transition for Palestine occurred 03-29, not 03-30.
47b892
47b892
* Fri Mar 29 2019 Patsy Griffin Franklin <patsy@redhat.com> - 2019a-1
47b892
- Rebase to tzdata-2019a
47b892
  - Palestine will start DST on 2019-03-30, rather than 2019-03-23 as
47b892
    previously predicted.
47b892
  - Metlakatla rejoined Alaska time on 2019-01-20, ending its observances
47b892
    of Pacific standard time.
47b892
47b892
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2018i-2
47b892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
47b892
47b892
* Mon Nov 12 2018 Patsy Griffin Franklin <pfrankli@redhat.com> - 2018g-1
47b892
- Rebase to tzdata-2018g
47b892
  Includes changes for tzdata-2018f.
47b892
  - Volgograd will change from UTC+03 to UTC+04 on 2018-10-28 at 02:00.
47b892
  - Fiji will end DST on 2019-01-13 instead of the 2019-01-20 as
47b892
    previously predicted.
47b892
  - Most of Chile will end DST on the first Saturday in April at 24:00
47b892
    and restart DST on the first Saturday in September at 24:00.
47b892
  - Morocco will change from UTC+00/+01 to permanent +01 effective 2018-10-27.
47b892
47b892
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2018e-2
47b892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
47b892
47b892
* Wed May 16 2018 Patsy Franklin <pfrankli@redhat.com> - 2018e-1
47b892
- Rebase to tzdata-2018e
47b892
  - North Korea changed from UTC+8:30 to UTC+9 on May 5, 2018.
47b892
  - In this update, the upstream project now defaults to using
47b892
    the "vanguard" data implementation which includes negative DST offsets.
47b892
47b892
* Wed Mar 28 2018 Patsy Franklin <pfrankli@redhat.com> - 2018d-1
47b892
- Rebase to tzdata-2018d:
47b892
  - DST for Asia/Gaza and Asia/Hebron has changed
47b892
    from March 31 to March 24.
47b892
  - Antarctica/Casey station changed to UTC+8 on March 11.
47b892
47b892
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2018c-2
47b892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
47b892
47b892
* Thu Feb 01 2018 Patsy Franklin <pfrankli@redhat.com> - 2018c-1
47b892
- Rebase to tzdata-2018c:
47b892
  - São Tomé and Príncipe changed from +00 to +01 on January 1, 2018
47b892
  - Brazil's DST will start on the first Sunday in November
47b892
  - Support for the new zic -t option.
47b892
  - Add back pacificnew file omitted in tzdata-2018a
47b892
47b892
* Thu Oct 26 2017 Patsy Franklin <pfrankli@redhat.com> - 2017c-1
47b892
- Rebase to tzdata-2017c.
47b892
  - Northern Cyprus will revert to using EQ rules on October 29, 2017.
47b892
  - Sudan will switch from +03 to +02 on November 1, 2017.
47b892
  - Tonga will not change it's clocks on Novemeber 5, 2017 ending it's
47b892
    experiment with DST.
47b892
  - Fiji DST will end on January 14, 2018 rather than January 21, 2018.
47b892
  - Namibia - starting September 3, 2017 switches from +)1 with DST to
47b892
    +02 all year.  This change takes effect April 1, 2018.
47b892
  - Turks & Caicos changes from -04 all year to -05 with US DST starting
47b892
    on March 11, 2018.  Effective change date is November 4, 2018.
47b892
  - tzdata now includes two text versions of the time zone data - tzdata.zi
47b892
    and leapseconds.
47b892
  - Includes two patches to deal with build issues.
47b892
47b892
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017b-2
47b892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
47b892
47b892
* Sun Mar 26 2017 Patsy Franklin <pfrankli@redhat.com> - 2017b-1
47b892
- Rebase to tzdata-2017b
47b892
  - Haiti began observing DST on March 12, 2017.
47b892
47b892
* Sun Mar 12 2017 Patsy Franklin <pfrankli@redhat.com> - 2017a-1
47b892
- Rebase to tzdata-2017a
47b892
  - Mongolia no longer observes DST
47b892
  - Magallanes region of Chile moves from -04/-03 to -03 year round.
47b892
    This results in a new zone, America/Punta_Arenas.
47b892
47b892
* Wed Feb 01 2017 Stephen Gallagher <sgallagh@redhat.com> - 2016j-3
47b892
- Add missing %%license macro
47b892
47b892
* Wed Jan 18 2017 Patsy Franklin <pfrankli@redhat.com> - 2016j-2
47b892
- Add zone1970.tab file.
47b892
  Resolves: #1414518
47b892
47b892
* Thu Dec 01 2016 Patsy Franklin <pfrankli@redhat.com> - 2016j-1
47b892
- Rebase to 2016j
47b892
  - The Saratov Region of Russia is changing from +03 to +04 on
47b892
    2016-12-04, resulting in a new timezone Europe/Saratov.
47b892
47b892
* Thu Nov 03 2016 Patsy Franklin <pfrankli@redhat.com> - 2016i-1
47b892
- Rebase to 2016i
47b892
  - Pacific/Tongatapu now begins DST on 2016-11-06 at 02:00 and ends
47b892
    on 2017-01-15 at 03:00.
47b892
  - Northern Cyprus is changed to +03 year round. This results in a
47b892
    split in Cyprus time zones starting 2016-10-30 at 04:00 and
47b892
    creates a new zone - Asia/Famagusta.
47b892
  - Antarctica/Casey changed from +08 to +11 on 2016-10-22.
47b892
47b892
* Wed Oct 26 2016 Patsy Franklin <pfrankli@redhat.com> - 2016h-1
47b892
- Rebase to 2016h
47b892
  - DST ends in Asia/Gaza and Asia/Hebron on 2016-10-29 at 01:00,
47b892
    not the predicted date of 2016-10-21 at 00:00.
47b892
47b892
* Tue Oct 04 2016 Patsy Franklin <pfrankli@redhat.com> - 2016g-1
47b892
- Rebase to 2016g
47b892
  - Turkey permanently switches from +02 to +03 as of 2016-09-07,
47b892
  - Per IERS Bulletin C 52, leap second to be added on 2016-09-31 at 23:59:60.
47b892
47b892
* Wed Jul 06 2016 Patsy Franklin <pfrankli@redhat.com> - 2016f-1
47b892
- Rebase to 2016f
47b892
  - Egypt cancelled DST.
47b892
  - Asia/Novosibirsk transitions from +06 to +07 on 2016-07-24 at 02:00.
47b892
47b892
* Fri Jun 17 2016 Patsy Franklin <pfrankli@redhat.com> - 2016e-1
47b892
- Rebase to 2016e
47b892
  - Africa/Cairo starts DST on July 7 24:00 and ends on October 27
47b892
    at 24:00.
47b892
47b892
* Thu Apr 21 2016 Patsy Franklin <pfrankli@redhat.com> - 2016d-1
47b892
- Rebase to 2016d
47b892
  - America/Caracas switches from -0430 to -04 on 2016-05-01 at 02:30.
47b892
  - Asia/Magadan switchefrom +10 to +11 on 2016-04-24 at 02:00.
47b892
  - New zone Asia/Tomsk, split off from Asia/Novosibirsk.  It covers
47b892
    Tomsk Oblast, Russia, which switches from +06 to +07 on 2016-05-29
47b892
    at 02:00.
47b892
47b892
* Wed Mar 23 2016 Patsy Franklin <pfrankli@redhat.com> - 2016c-1
47b892
- Rebase to 2016c
47b892
  - Azerbaijan no longer observes DST.
47b892
  - Chile changes from permanent DST to seasonal DST.
47b892
47b892
* Tue Mar 15 2016 Patsy Franklin <pfrankli@redhat.com> - 2016b-1
47b892
- Rebase to 2016b
47b892
  - New zones Europe/Astrakhan and Europe/Ulyanovsk for Astrakhan and
47b892
    Ulyanovsk Oblasts, Russia, both of which will switch from +03 to +04 on
47b892
    2016-03-27 at 02:00 local time.  They need distinct zones since their
47b892
    post-1970 histories disagree.  New zone Asia/Barnaul for Altai Krai and
47b892
    Altai Republic, Russia, which will switch from +06 to +07 on the same date
47b892
    and local time.  The Astrakhan change is already official; the others have
47b892
    passed the first reading in the State Duma and are extremely likely.
47b892
    Also, Asia/Sakhalin moves from +10 to +11 on 2016-03-27 at 02:00.
47b892
  - As a trial of a new system that needs less information to be made up,
47b892
    the new zones use numeric time zone abbreviations like "+04"
47b892
    instead of invented abbreviations like "ASTT".
47b892
  - Haiti will not observe DST in 2016.
47b892
  - Palestine's spring-forward transition on 2016-03-26 is at 01:00, not 00:00.
47b892
    Guess future transitions will be March's last Saturday at 01:00, not March's
47b892
    last Friday at 24:00.
47b892
47b892
* Tue Feb 02 2016 Patsy Franklin <pfrankli@redhat.com> - 2016a-1
47b892
- Rebase to 2016a
47b892
  - America/Cayman will not observe daylight saving this year after all.
47b892
    Revert our guess that it would.
47b892
  - Asia/Chita switches from +0800 to +0900 on 2016-03-27 at 02:00.
47b892
  - Asia/Tehran now has DST predictions for the year 2038 and later,
47b892
    to be March 21 00:00 to September 21 00:00.  This is likely better
47b892
    than predicting no DST, albeit off by a day every now and then.
47b892
 
47b892
* Mon Oct 05 2015 Patsy Franklin <pfrankli@redhat.com> - 2015g-1
47b892
- Rebase to 2015g
47b892
  - Turkey's 2015 fall-back transition is scheduled for Nov. 8, not Oct. 25.
47b892
  - Norfolk moves from +1130 to +1100 on 2015-10-04 at 02:00 local time.
47b892
  - Fiji's 2016 fall-back transition is scheduled for January 17, not 24.
47b892
  - Fort Nelson, British Columbia will not fall back on 2015-11-01.  It has
47b892
    effectively been on MST (-0700) since it advanced its clocks on 2015-03-08.
47b892
    New zone America/Fort_Nelson.
47b892
47b892
* Wed Aug 12 2015 Patsy Franklin <pfrankli@redhat.com> - 2015f-1
47b892
- Rebase to 2015f
47b892
  - North Korea switches to +0830 on 2015-08-15.
47b892
    The abbreviation remains "KST".
47b892
  - Uruguay no longer observes DST.
47b892
47b892
* Fri Jun 19 2015 Patsy Franklin <pfrankli@redhat.com> - 2015e-1
47b892
- Morocco will suspend DST from 2015-06-14 03:00 through 2015-07-19 02:00,
47b892
  not 06-13 and 07-18 as we had guessed.
47b892
- Assume Cayman Islands will observe DST starting next year, using US rules.
47b892
  Although it isn't guaranteed, it is the most likely.
47b892
47b892
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2015d-4
47b892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
47b892
47b892
* Fri Jun 12 2015 Patsy Franklin <pfrankli@redhat.com> - 2015d-3
47b892
- Morocco will suspend DST from 2015-06-14 03:00 through 2015-07-19 02:00,
47b892
  not 06-13 and 07-18 as we had guessed.
47b892
47b892
* Mon Apr 27 2015 Patsy Franklin <pfrankli@redhat.com> - 2015d-1
47b892
- Rebase to 2015d
47b892
  - Egypt will not observe DST in 2015 and will consider canceling it
47b892
    permanently.  For now, assume no DST indefinitely.
47b892
  - The abbreviations for Hawaii-Aleutian standard and daylight times
47b892
    have been changed from HAST/HADT to HST/HDT, as per US Government
47b892
    Printing Office style.  This affects only America/Adak since 1983,
47b892
    as America/Honolulu was already using the new style.
47b892
47b892
* Thu Apr 16 2015 Patsy Franklin <pfrankli@redhat.com> - 2015c-1
47b892
- Rebase to 2015c
47b892
  - Egypt's spring-forward transition is at 24:00 on April's last Thursday,
47b892
    not 00:00 on April's last Friday.  2015's transition will therefore be on
47b892
    Thursday, April 30 at 24:00, not Friday, April 24 at 00:00.  Similar fixes
47b892
    apply to 2026, 2037, 2043, etc.  (Thanks to Steffen Thorsen.)
47b892
- Rebase javazic tool to match latest upstream OpenJDK version
47b892
47b892
* Wed Mar 25 2015 Patsy Franklin <pfrankli@redhat.com> - 2015b-1
47b892
- Rebase to 2015b
47b892
  - Mongolia will start observing DST again this year, from the last
47b892
    Saturday in March at 02:00 to the last Saturday in September at 00:00.
47b892
  - Palestine will start DST on March 28, not March 27.  Also,
47b892
    correct the fall 2014 transition from September 26 to October 24.
47b892
    Adjust future predictions accordingly.
47b892
47b892
* Thu Feb 12 2015 Patsy Franklin <pfrankli@redhat.com> - 2015a-1
47b892
- Rebase to 2015a
47b892
  - New leap second 2015-06-30 23:59:60 UTC as per IERS Bulletin C 49.
47b892
  - The Mexican state of Quintana Roo, represented by America/Cancun,
47b892
    will shift from Central Time with DST to Eastern Time without DST
47b892
    on 2015-02-01 at 02:00.
47b892
  - Chile will not change clocks in April or thereafter; its new standard time
47b892
    will be its old daylight saving time.  This affects America/Santiago,
47b892
    Pacific/Easter, and Antarctica/Palmer.
47b892
47b892
* Wed Nov 19 2014 Patsy Franklin <pfrankli@redhat.com> - 2014j-1
47b892
- Rebase to 2014j
47b892
  - Turks & Caicos' switch from US eastern time to UTC-4 year-round
47b892
    did not occur on 2014-11-02 at 02:00.  It's currently scheduled
47b892
    for 2015-11-01 at 02:00.
47b892
47b892
* Mon Oct 27 2014 Patsy Franklin <pfrankli@redhat.com> - 2014i-1
47b892
- Rebase to 2014i
47b892
  - Pacific/Fiji will observe DST from 2014-11-02 02:00 to 2015-01-18 03:00.
47b892
  - A new Zone Pacific/Bougainville, for the part of Papua New Guinea
47b892
    that plans to switch from UTC+10 to UTC+11 on 2014-12-28 at 02:00
47b892
47b892
* Mon Oct 06 2014 Patsy Franklin <pfrankli@redhat.com> - 2014h-1
47b892
- Rebase to 2014h
47b892
  - Changes in past time stamps, code, and documentation.
47b892
47b892
* Wed Sep 10 2014 Patsy Franklin <pfrankli@redhat.com> - 2014g-1
47b892
- Rebase to 2014g
47b892
  - Turks & Caicos is switching from US eastern time to UTC-4 year-round,
47b892
    modeled as a switch from EST/EDT to AST on 2014-11-02 at 02:00.
47b892
47b892
* Thu Aug 14 2014 Patsy Franklin <pfrankli@redhat.com> - 2014f-1
47b892
- Rebase to 2014f
47b892
  - Russian time zone changes effective 2014-10-26
47b892
  - Several other time zone abbreviation changes as described in
47b892
    the NEWS file.
47b892
47b892
* Wed Jun 18 2014 Patsy Franklin <pfrankli@redhat.com> - 2014e-4
47b892
- Update changelog version to match release version.
47b892
47b892
* Tue Jun 17 2014 Patsy Franklin <pfrankli@redhat.com> - 2014e-3
47b892
- Rebase to 2014e
47b892
  - Morrocco suspends DTS for Ramadan
47b892
       June 28 at 03:00 and August 2 at 02:00
47b892
  - Egypt suspends DTS for Ramadan
47b892
       June 26 and July 31 at 24:00
47b892
- Additional edit to support OpenJDK8. (#1091029)
47b892
47b892
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2014c-3
47b892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
47b892
47b892
* Wed May 28 2014 Patsy Franklin <pfrankli@redhat.com> 2014c-2
47b892
- Add support for new tzdata file format used by OpenJDK8.
47b892
47b892
* Wed May 14 2014 Patsy Franklin <pfrankli@redhat.com> 2014c-1
47b892
- Rebase to 2014c
47b892
  -Egypt will re-apply DST on May 15 at 24:00, except that DST
47b892
   will not be observed during Ramadan.
47b892
47b892
* Wed Mar 26 2014 Patsy Franklin <pfrankli@redhat.com> 2014b-1
47b892
- Rebase to 2014b
47b892
  - Crimea changes to Moscow time on March 30, 2014.
47b892
47b892
* Wed Mar 12 2014 Patsy Franklin <pfrankli@redhat.com> 2014a-1
47b892
- Rebase to 2014a
47b892
  - Turkey begins DST on 2014-03-31, not 03-30.
47b892
47b892
* Tue Jan 21 2014 Patsy Franklin <pfrankli@redhat.com> 2013i-2
47b892
- Fiji ends DST on 2014-01-19 at 02:00, not the previously scheduled 03:00.
47b892
47b892
* Wed Dec 18 2013 Patsy Franklin <pfrankli@redhat.com> 2013i-1
47b892
- Rebase with early release of 2013i from Paul Eggert github.
47b892
  - Jordan switches back to standard time at 00:00 on December 20,2013.
47b892
  - The 2006-2011 transition schedule is planned to resume in 2014.
47b892
  - The compile-time flag NOSOLAR has been removed.
47b892
  - The files solar87, solar88, and solar89 are no longer distributed.
47b892
  - tz-link.htm now mentions Noda Time.
47b892
47b892
* Wed Oct 30 2013 Patsy Franklin <pfrankli@redhat.com> 2013h-1
47b892
- Rebase to 2013h 
47b892
  - Lybia switched to using UTC+2 without DST
47b892
  - Western Sahara (Africa/ElAaiun) uses Morocco's DST rules
47b892
  - Acres and Amazon swithc to UTC-4 and UTC-5 on 2013-11-10
47b892
  - Add entries for DST transition in Morocco in the year 2038
47b892
 
47b892
* Thu Oct  3 2013 Patsy Franklin <pfrankli@redhat.com> 2013g-1
47b892
- Morocco moved end of DST from September to October.  Rebase to
47b892
  pick up the Morocco DST change.
47b892
47b892
* Fri Jul 26 2013 Petr Machata <pmachata@redhat.com> - 2013d-1
47b892
- Rebase to 2013d
47b892
  - No fundamental changes
47b892
  - Drop four patches introduced in 2013c-2
47b892
47b892
* Thu Jul  4 2013 Petr Machata <pmachata@redhat.com> - 2013c-2
47b892
- Update descriptions in iso3166.tab; make Jerusalem coordinates in
47b892
  zone.tab more precise
47b892
  (0001-Adjust-commentary-to-try-to-defuse-recent-issues-som.patch)
47b892
- Update local mean time for Jerusalem to match more-precise longitude
47b892
  (0002-asia-Asia-Jerusalem-Fix-LMT-to-match-more-precise-lo.patch)
47b892
- Move Morocco's midsummer 2013 transitions
47b892
  (0003-Move-Morocco-s-midsummer-2013-transitions.patch)
47b892
- Israel now falls back on the last Sunday of October
47b892
  (0004-Israel-now-falls-back-on-the-last-Sunday-of-October.patch)
47b892
47b892
* Fri May 17 2013 Petr Machata <pmachata@redhat.com> - 2013c-1
47b892
- Upstream 2013c
47b892
  - Sync past stamps for Palestine and West Bank with timeanddate.com
47b892
  - Assume that the recent change to Paraguay's DST rules is permanent
47b892
  - Macquarie was uninhabited between 1919 and 1948.  It's also part
47b892
    of Australia (update in zone.tab).
47b892
47b892
* Wed Mar 27 2013 Petr Machata <pmachata@redhat.com> - 2013b-2
47b892
- Palestine starts Daylight Saving Time on March 29, 2013
47b892
  (tzdata-2013b-gaza.patch)
47b892
47b892
* Wed Mar 13 2013 Petr Machata <pmachata@redhat.com> - 2013b-1
47b892
- Upstream 2013b
47b892
  - Paraguay will end DST on March 24 this year
47b892
  - Haiti uses US daylight-saving rules this year
47b892
  - Morocco does not observe DST during Ramadan
47b892
- Upstream 2013a
47b892
  - Retire Chile patch, 2013a has the data
47b892
  - New Zones Asia/Khandyga, Asia/Ust-Nera, Europe/Busingen
47b892
  - Many changes in historical timestamps
47b892
47b892
* Wed Feb 27 2013 Petr Machata <pmachata@redhat.com> - 2012j-3
47b892
- DTS in Chile will end on 2013-04-28
47b892
  (0016-Chile-is-changing-its-DST-rules.patch)
47b892
47b892
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012j-2
47b892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
47b892
47b892
* Fri Nov 30 2012 Petr Machata <pmachata@redhat.com> - 2012j-1
47b892
- Upstream 2012j
47b892
  - Libya moved to CET
47b892
47b892
* Tue Nov  6 2012 Petr Machata <pmachata@redhat.com> - 2012i-2
47b892
- Preserve hardlinks that zic leaves behind, install with cp -d
47b892
47b892
* Mon Nov  5 2012 Petr Machata <pmachata@redhat.com> - 2012i-1
47b892
- Upstream 2012i
47b892
  - Cuba switched to DST
47b892
47b892
* Mon Nov  5 2012 Petr Machata <pmachata@redhat.com> - 2012h-2
47b892
- Switch back to using system zic, ignore upstream Makefile at all.
47b892
  We do so for java anyway.
47b892
- Drop Factory from distribution
47b892
47b892
* Wed Oct 31 2012 Petr Machata <pmachata@redhat.com> - 2012h-1
47b892
- Upstream 2012h
47b892
  - Brazilian state Bahia no longer has DST.
47b892
  - Brazilian state Tocantins now has DST.
47b892
  - Israel has new DST rules next year.
47b892
  - Jordan stays on DST this winter.
47b892
47b892
* Mon Oct 22 2012 Petr Machata <pmachata@redhat.com> - 2012g-1
47b892
- Upstream 2012g
47b892
  - Adjust the packaging for new Makefile
47b892
  - Palestine: Fall transition was Sep 21, not Sep 28
47b892
  - Samoa: Daylight Saving Time commences on Sunday 30th September
47b892
    2012 and ends on Sunday 7th of April 2013.
47b892
- Resolves: #868173
47b892
47b892
* Mon Sep 17 2012 Petr Machata <pmachata@redhat.com> - 2012f-1
47b892
- Fiji will start daylight savings at 2 am on Sunday 21st October 2012
47b892
  and end at 3 am on Sunday 20th January 2013.  Guess it will be like
47b892
  that in following years as well.
47b892
- Resolves: #857231
47b892
47b892
* Mon Aug 13 2012 Petr Machata <pmachata@redhat.com> - 2012e-1
47b892
- Tokelau is in time zone UTC+13, not UTC+14 (and always was)
47b892
47b892
* Fri Jul 20 2012 Petr Machata <pmachata@redhat.com> - 2012d-1
47b892
- Upstream 2012d
47b892
  - Morocco will not observe DST during the month of Ramadan.
47b892
    DST cessation end date was corrected.
47b892
47b892
* Fri Jul 13 2012 Petr Machata <pmachata@redhat.com> - 2012c-2
47b892
- Morocco will not observe DST during the month of Ramadan
47b892
  (tzdata-2012c-morocco.patch)
47b892
47b892
* Mon Apr  2 2012 Petr Machata <pmachata@redhat.com> - 2012c-1
47b892
- Upstream 2012c
47b892
  - Haiti observes DST from 2012 on
47b892
  - Gaza Strip and Hebron observe DST in 2012
47b892
  - Change start of DST in Syria to last Friday in March
47b892
47b892
* Fri Mar 16 2012 Petr Machata <pmachata@redhat.com> - 2012b-3
47b892
- Morocco moved DST entry to last Sunday of April
47b892
47b892
* Thu Mar 15 2012 Petr Machata <pmachata@redhat.com> - 2012b-2
47b892
- Morocco DST starts on the last Sunday of March (March 25, 2012) and
47b892
  ends on last Sunday of September, except the month of Ramadan.  It
47b892
  is currently unclear what that Ramadan bit means, so this is not
47b892
  covered by the patch as of now.
47b892
47b892
* Tue Mar  6 2012 Petr Machata <pmachata@redhat.com> - 2012b-1
47b892
- Rebase to 2012b; changes vs. 2011n-5:
47b892
  - Changes to zones for Antarctica stations
47b892
  - Armenia abolished DST in 2012 and forward
47b892
  - Cuba enters DST on 31st March
47b892
  - Falkland Islands will stay on permanent Summer Time
47b892
  - New zone for Creston Valley, Canada, which differs from Dawson
47b892
    Creek in past stamps.  Changes to historical stamps in Canada.
47b892
  - Last year, Tokelau skipped over the date line together with Samoa
47b892
47b892
* Fri Feb 24 2012 Petr Machata <pmachata@redhat.com> - 2011n-5
47b892
- Add a patch for change in Chilean DST
47b892
- Update URLs
47b892
47b892
* Tue Feb 21 2012 Petr Machata <pmachata@redhat.com> - 2011n-4
47b892
- Add a patch for the leap second that will occur this summer
47b892
47b892
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2011n-3
47b892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
47b892
47b892
* Thu Nov  3 2011 Petr Machata <pmachata@redhat.com> - 2011n-2
47b892
- Fix building of Java zones.  Patch by Deepak Bhole
47b892
47b892
* Mon Oct 31 2011 Petr Machata <pmachata@redhat.com> - 2011l-1
47b892
- Rebase to 2011n
47b892
  - Drop all patches, including the Kemerovo patch, which is not in
47b892
    upstream
47b892
  - Cuba postponed DST by two weeks to Nov 13
47b892
  - Fiji will enter DST on Jan 21
47b892
- Resolved: #748778
47b892
47b892
* Wed Oct 19 2011 Petr Machata <pmachata@redhat.com> - 2011l-3
47b892
- Ukraine will enter Winter Time after all
47b892
47b892
* Fri Oct 14 2011 Petr Machata <pmachata@redhat.com> - 2011l-2
47b892
- State of Bahia, Brazil, to resume Summer Time on Oct 16
47b892
- The project moved, reflect this in URL
47b892
- Resolves: #746183
47b892
47b892
* Tue Oct 11 2011 Petr Machata <pmachata@redhat.com> - 2011l-1
47b892
- Upstream 2011l:
47b892
  - Fix ancient stamps for America/Sitka
47b892
  - Asia/Hebron transitioned to standard time already on Sep 30, not Oct 3
47b892
  - Fiji will introduce DST on Oct 22
47b892
47b892
* Wed Sep 21 2011 Petr Machata <pmachata@redhat.com> - 2011k-0.1.20110921
47b892
- Upstream 2011j:
47b892
  - Fix the Samoa date line skip
47b892
  - Changes in past timestamp typos several Africa zones
47b892
- Proposed upstream 2011k:
47b892
  - Belarus and Ukraine adopt permanent DST in 2011
47b892
  - Palestine suspends DST during Ramadan in 2011
47b892
  - Gaza and West Bank split in 2011.  West Bank is tracked in the
47b892
    timezone Asia/Hebron.  zone.tab update accordingly.
47b892
- Resolves: #737896
47b892
47b892
* Mon Aug 29 2011 Petr Machata <pmachata@redhat.com> - 2011h-1
47b892
- Upstream 2011i:
47b892
  - Add Africa/Juba (South Sudan) zone
47b892
  - Samoa skips over the date line on 2011-12-30
47b892
  - Use KALT as abbreviation for Europe/Kalinigrad
47b892
  - Canonical version of the Newfoundland patch
47b892
  - Change America/Resolute use of EST to 2006-2007 only
47b892
  - Assume Metlakatla abandoned use of daylight saving in 1983
47b892
  - Sync iso3166.tab and zone.tab with above
47b892
- Resolved: #734063
47b892
47b892
* Wed Aug 10 2011 Petr Machata <pmachata@redhat.com> - 2011h-2
47b892
- Patch for upcoming change in Newfoundland.  The transition time
47b892
  changes from 12:01 AM to 2:00 AM.
47b892
47b892
* Mon Jun 27 2011 Petr Machata <pmachata@redhat.com> - 2011h-1
47b892
- Upstream 2011h:
47b892
  - Russia abandons DST in 2011.
47b892
  - *.tab: change AN (Netherlands Antilles) to CW (Curacao)
47b892
47b892
* Tue Apr 26 2011 Petr Machata <pmachata@redhat.com> - 2011g-1
47b892
- Upstream 2011e:
47b892
  - Morocco introduced DST for 2011 from April 2 to July 31.
47b892
  - Delay end of DST in Chile in 2011 until May 7.
47b892
- Upstream 2011f:
47b892
  - The Falkland Islands will not turn back clocks this winter, but
47b892
    stay on daylight saving time.
47b892
- Upstream 2011g:
47b892
  - Egypt abandons DST in 2011 (and forward)
47b892
- Dropped tzdata-2011d-chile.patch
47b892
- Dropped tzdata-2011d-morocco.patch
47b892
47b892
* Wed Mar 30 2011 Petr Machata <pmachata@redhat.com> - 2011d-3
47b892
- Morocco introduced DST for 2011 from April 2 to July 31. (tzdata-2011d-morocco.patch)
47b892
47b892
* Tue Mar 29 2011 Petr Machata <pmachata@redhat.com> - 2011d-2
47b892
- Delay end of DST in Chile in 2011 until May 7. (tzdata-2011d-chile.patch)
47b892
47b892
* Tue Mar 15 2011 Petr Machata <pmachata@redhat.com> - 2011d-1
47b892
- Upstream 2011d:
47b892
  - Change end of DST in Samoa in 2011.
47b892
  - Change start of DST in Cuba in 2011.
47b892
  - Move start of DST in Turkey by one day in 2011.
47b892
- Dropped tzdata-2011b-c.patch
47b892
47b892
* Fri Mar 04 2011 Petr Machata <pmachata@redhat.com> - 2011b-3
47b892
- Kemerovo oblast should use OMST/OMSST abbreviation (tzdata-2011b-kemerovo.patch)
47b892
47b892
* Thu Mar 03 2011 Petr Machata <pmachata@redhat.com> - 2011b-2
47b892
- Update of historical stamps for Juneau, Sitka, and histcurrent stamps
47b892
  for Metlakatla.  Sitka and Metlakatla are new zones.
47b892
- Delay end of DST in Chile in 2011 until first Sunday in April. (tzdata-2011b-c.patch)
47b892
47b892
* Wed Feb 09 2011 Petr Machata <pmachata@redhat.com> - 2011b-1
47b892
- Upstream 2011b:
47b892
  - America/North_Dakota/Beulah: Mercer County, North Dakota, changed
47b892
    from the mountain time zone to the central time zone
47b892
47b892
* Mon Jan 24 2011 Petr Machata <pmachata@redhat.com> - 2011a-1
47b892
- Upstream 2011a:
47b892
  - Updates of historical stamps for Hawaii
47b892
47b892
* Tue Nov 09 2010 Petr Machata <pmachata@redhat.com> - 2010o-1
47b892
- Upstream 2010o:
47b892
  - Fiji will end DST on March 6, 2011, not March 27, 2011
47b892
47b892
* Wed Oct 27 2010 Petr Machata <pmachata@redhat.com> - 2010n-1
47b892
- Upstream 2010m:
47b892
  - Hong Kong didn't observe DST in 1977
47b892
  - In zone.tab, remove obsolete association of Vostok Station with
47b892
    South Magnetic Pole; add association with Lake Vostok
47b892
- Upstream 2010n:
47b892
  - Change end of DST in Samoa in 2011 from 2011-04-03 0:00 to
47b892
    2011-04-03 1:00
47b892
47b892
* Mon Aug 16 2010 Petr Machata <pmachata@redhat.com> - 2010l-2
47b892
- Upstream 2010l:
47b892
  - Change Cairo's 2010 reversion to DST from the midnight between
47b892
    September 8 and 9 to the midnight between September 9 and 10.
47b892
  - Change Gaza's 2010 return to standard time to the midnight between
47b892
    August 10 and 11.
47b892
  - Bahia de Banderas (Mexican state of Nayarit) changed time zone
47b892
    UTC-7 to new time zone UTC-6 on April 4, 2010
47b892
47b892
* Tue Aug  3 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2010k-1
47b892
- Upstream 2010k:
47b892
 - Egypt has announced that DST will be off during Ramadan, but
47b892
   DST will resume afterwards (August 10, 2010 - September 9, 2010)
47b892
47b892
* Tue May 11 2010 Petr Machata <pmachata@redhat.com> - 2010j-1
47b892
- Upstream 2010j:
47b892
  - Bahia de Banderas (Mexican state of Nayarit) changed time zone
47b892
    UTC-7 to new time zone UTC-6 on April 4, 2010
47b892
47b892
* Mon Apr 19 2010 Petr Machata <pmachata@redhat.com> - 2010i-1
47b892
- Upstream 2010i:
47b892
  - Morocco will have DST from 2010-05-02 to 2010-08-08
47b892
  - San Luis, Argentina will keep permanent DST after April 11, 2010
47b892
  - Updates of historical stamps for Taiwan
47b892
47b892
* Tue Apr 06 2010 Petr Machata <pmachata@redhat.com> - 2010h-2
47b892
- Upstream 2010g:
47b892
  - No Bangladesh DST in 2010 and forward.
47b892
  - Gaza DST starts last Saturday in March at 12:01 a.m. in 2010 and forward
47b892
  - Kamchatka and Anadyr change to Moscow+8 on 2010-03-28
47b892
  - Samara changes to Moscow+0 on 2010-03-28
47b892
  - Related zone.tab updates
47b892
- Upstream 2010h:
47b892
  - No DST in Tunisia in 2010 and forward
47b892
  - No DST in Pakistan in 2010 and forward
47b892
- Dropped tzdata-2010g-tunis.patch
47b892
- Dropped tzdata-2010f-g.patch
47b892
- Dropped tzdata-2010g-karachi.patch
47b892
47b892
* Mon Mar 29 2010 Petr Machata <pmachata@redhat.com> - 2010f-3
47b892
- Tunisia not to observe DST in 2010 (tzdata-2010g-tunis.patch)
47b892
- Pakistan not to observe DST in 2010 (tzdata-2010g-karachi.patch)
47b892
47b892
* Thu Mar 25 2010 Petr Machata <pmachata@redhat.com> - 2010f-2
47b892
- Fix the path in tzdata-2010f-g.patch
47b892
47b892
* Thu Mar 25 2010 Petr Machata <pmachata@redhat.com> - 2010f-1
47b892
- Upstream 2010f:
47b892
  - Changes to Australian stations in Antarctica
47b892
  - Correct 2010 Samoa DST start date
47b892
  - New zone Antarctica/Macquarie
47b892
  - Change Syria DST start from last Friday in March to first Friday
47b892
    in April in 2010 and forward
47b892
- Upstream 2010g proposal (tzdata-2010f-g.patch):
47b892
  - No Bangladesh DST in 2010 and forward.
47b892
  - Gaza DST starts last Saturday in March at 12:01 a.m. in 2010 and forward
47b892
  - Kamchatka and Anadyr change to Moscow+8 on 2010-03-28
47b892
  - Samara changes to Moscow+0 on 2010-03-28
47b892
  - Related zone.tab updates
47b892
47b892
* Tue Mar 09 2010 Petr Machata <pmachata@redhat.com> - 2010e-1
47b892
- Upstream 2010d
47b892
  - The DST change in Bangladesh takes place a minute earlier
47b892
  - Fiji to end DST on 2010-03-28 at 03:00, about a month earlier
47b892
  - Samoa to observe DST this year; they didn't observe DST last year
47b892
  - DST in Chile extended to 3 April
47b892
- Upstream 2010e:
47b892
  - Fix a typo in Bangladesh DST rule
47b892
47b892
* Mon Mar 01 2010 Petr Machata <pmachata@redhat.com> - 2010c-1
47b892
- Upstream 2010a
47b892
  - Source code cleanups
47b892
  - Historical timestamps for Bangladesh
47b892
- Upstream 2010b
47b892
  - Northern Mexico's border cities share the DST schedule with the
47b892
    United States
47b892
- Upstream 2010c
47b892
  - Paraguay DST now in effect from 2nd Sunday of April to 1st Sunday
47b892
    of October
47b892
47b892
* Mon Jan 04 2010 Petr Machata <pmachata@redhat.com> - 2009u-1
47b892
- Upstream 2009p
47b892
  - Argentina does not enter DST on October 18
47b892
  - San Luis switched from UTC-4 to UTC-3 on October 11th
47b892
- Upstream 2009q
47b892
  - Change DST end in Syria from November 1 to last Friday in October
47b892
  - Changes to past Hong Kong transitions
47b892
  - Kemerovo oblast' in Russia will change current time zone on March 28, 2010.
47b892
    Asia/Novokuznetsk is the new time zone name
47b892
- Upstream 2009r
47b892
  - Changes to local times of three Australian research stations in Antarctica
47b892
- Upstream 2009s
47b892
  - Fiji plans to re-introduce DST from November 29th 2009 to April 25th 2010
47b892
- Upstream 2009u
47b892
  - Bangladesh changed their clock back to Standard Time on December 31, 2009
47b892
- Dropped tzdata-2009o-argentinas.patch
47b892
47b892
* Wed Oct 21 2009 Petr Machata <pmachata@redhat.com> - 2009o-2
47b892
- San Luis (Argentina) entered DST on October 11 (tzdata-2009o-argentinas.patch)
47b892
47b892
* Mon Oct 19 2009 Petr Machata <pmachata@redhat.com> - 2009o-1
47b892
- Upstream 2009o
47b892
  - Bangladesh won't go back to Standard Time from October 1, 2009
47b892
  - Pakistan leaves DST on October 1, 2009
47b892
- Dropped tzdata-2009m-karachi.patch
47b892
- Argentina does not enter DST on October 18 (tzdata-2009o-argentinas.patch)
47b892
47b892
* Tue Sep 22 2009 Petr Machata <pmachata@redhat.com> - 2009m-2
47b892
- Add markers for autoupdate of spec file
47b892
- Pakistan leaves the period of DST on October 1 (tzdata-2009m-karachi.patch)
47b892
47b892
* Wed Sep 16 2009 Petr Machata <pmachata@redhat.com> - 2009m-1
47b892
- Upstream 2009m
47b892
  - Palestine will will revert back to winter time on Friday, 2009-09-04
47b892
  - Samoa passed the DST Bill that fixes DST dates for 2009 and 2010
47b892
- Drop Egypt patch
47b892
47b892
* Thu Aug 13 2009 Petr Machata <pmachata@redhat.com> - 2009k-3
47b892
- Egypt starts winter time on August 21.
47b892
47b892
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2009k-2
47b892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
47b892
47b892
* Mon Jul 20 2009 Petr Machata <pmachata@redhat.com> - 2009k-1
47b892
- Upstream 2009k
47b892
  - Mauritius will not continue to observe DST the coming summer
47b892
  - Arbitrarily end DST at the end of 2009 so that a POSIX-style time
47b892
    zone string can appear in the Dhaka binary file
47b892
47b892
* Thu Jun 18 2009 Petr Machata <pmachata@redhat.com> - 2009j-1
47b892
- Upstream 2009j
47b892
  - DST switch for Bangladesh will occur an hour earlier than was
47b892
    thought.
47b892
47b892
* Mon Jun  8 2009 Petr Machata <pmachata@redhat.com> - 2009i-1
47b892
- Upstream 2009i
47b892
  - Bangladesh introduces DST 2009-06-20
47b892
47b892
* Tue May 26 2009 Petr Machata <pmachata@redhat.com> - 2009h-2
47b892
- Upstream 2009h
47b892
  - Convert use of 00:00 stamps to 24:00 of the previous day
47b892
  - Clarify that the data is Public Domain
47b892
- Drop Cairo patch
47b892
47b892
* Mon Apr 13 2009 Petr Machata <pmachata@redhat.com> - 2009f-1
47b892
- Upstream 2009f
47b892
  - Pakistan will observe DST between 2009-04-15 and (probably) 2009-11-01
47b892
- Drop Pakistan patch
47b892
47b892
* Mon Apr 13 2009 Petr Machata <pmachata@redhat.com> - 2009e-3
47b892
- Bump up for rebuild
47b892
47b892
* Mon Apr 13 2009 Petr Machata <pmachata@redhat.com> - 2009e-2
47b892
- Pakistan will observe DST between 2009-04-15 and (probably) 2009-11-01
47b892
47b892
* Mon Apr  6 2009 Petr Machata <pmachata@redhat.com> - 2009e-1
47b892
- Upstream 2009e
47b892
  - Historical changes for Jordan
47b892
  - Palestine will start DST on 2009-03-26 and end 2009-09-27
47b892
- Egypt ends DST on 2009-09-24
47b892
47b892
* Mon Mar 23 2009 Petr Machata <pmachata@redhat.com> - 2009d-1
47b892
- Upstream 2009d
47b892
  - Morocco will observe DST from 2009-06-01 00:00 to 2009-08-21 00:00
47b892
  - Tunisia will not observe DST this year.
47b892
  - Syria will start DST on 2009-03-27 00:00 this year
47b892
  - Cuba will start DST on midnight between 2009-03-07 and 2009-03-08
47b892
  - Province of San Luis, Argentina, went to UTC-04:00 on 2009-03-15
47b892
47b892
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2009a-2
47b892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
47b892
47b892
* Fri Jan 23 2009 Petr Machata <pmachata@redhat.com> - 2009a-1
47b892
- Upstream 2009a
47b892
  - Fix Asia/Kathmandu spelling
47b892
  - Historical timestamps for Switzerland and Cuba
47b892
  - DST update for America/Resolute
47b892
47b892
* Thu Oct 30 2008 Petr Machata <pmachata@redhat.com> - 2008i-1
47b892
- Upstream 2008i
47b892
  - Updates for Argentina: Drop DST in zones America/Argentina/Jujuy,
47b892
    La_Rioja, San_Juan, Catamarca, Mendoza, Rio_Gallegos, Ushuaia; new
47b892
    zone America/Argentina/Salta (for provinces SA, LP, NQ, RN).
47b892
47b892
* Mon Oct 13 2008 Petr Machata <pmachata@redhat.com> - 2008h-1
47b892
- Upstream 2008h
47b892
  - Fix exact DST transition hour for Mauritius
47b892
  - Syria will leave the period of DST on Nov 1
47b892
  - Fix coordinates of Pacific/Niue
47b892
47b892
* Tue Oct  7 2008 Petr Machata <pmachata@redhat.com> - 2008g-1
47b892
- Upstream 2008g
47b892
  - Fixed future DST transitions for Brazil
47b892
47b892
* Tue Sep 16 2008 Petr Machata <pmachata@redhat.com> - 2008f-1
47b892
- Upstream 2008f
47b892
  - Changes for Mauritius (extends DST to years to come)
47b892
  - Palestine changes clocks for the duration of Ramadan
47b892
  - Argentina will start DST on Sunday October 19, 2008
47b892
  - Brazil will start DST on 2008-10-19
47b892
- Drop Pakistan and Morocco patches
47b892
47b892
* Thu Aug 28 2008 Petr Machata <pmachata@redhat.com> - 2008e-2
47b892
- Pakistan DST is scheduled until Oct/31
47b892
- Morocco DST is scheduled until Aug/31
47b892
47b892
* Tue Aug 12 2008 Petr Machata <pmachata@redhat.com> - 2008e-1
47b892
- Upstream 2008e
47b892
  - Changes for Mauritius
47b892
  - Leap second coverage for 31/Dec 2008
47b892
  - Corrections of historical dates
47b892
47b892
* Tue Jul  8 2008 Petr Machata <pmachata@redhat.com> - 2008d-1
47b892
- Upstream 2008d
47b892
  - Changes for Brazil and Mauritius
47b892
47b892
* Fri May 30 2008 Petr Machata <pmachata@redhat.com> - 2008c-1
47b892
- Upstream 2008c
47b892
  - Mongolia changes zone
47b892
  - Pakistan DST is scheduled until Sep/1, instead of Aug/31
47b892
- Drop Morocco and Pakistan patches that are superseded by upstream
47b892
- Fix a typo in Java subpackage name
47b892
47b892
* Tue May 27 2008 Petr Machata <pmachata@redhat.com> - 2008b-3
47b892
- Morocco introduces DST
47b892
47b892
* Fri May 23 2008 Petr Machata <pmachata@redhat.com> - 2008b-2
47b892
- Pakistan introduces DST
47b892
47b892
* Wed Mar 26 2008 Petr Machata <pmachata@redhat.com> - 2008b-1
47b892
- Upstream 2008b
47b892
  - DST changes for Syria, Cuba; Iraq abandons DST
47b892
  - Saigon zone renamed Ho_Chi_Minh; backward link provided
47b892
  - Add America/Argentina/San_Luis information
47b892
47b892
* Tue Mar  4 2008 Petr Machata <pmachata@redhat.com> - 2007k-2
47b892
- Chile moves DST to 29/Mar
47b892
- Related: #435959
47b892
47b892
* Thu Jan  3 2008 Petr Machata <pmachata@redhat.com> - 2007k-1
47b892
- Upstream 2007k
47b892
  - Argentina readopted the daylight saving time
47b892
47b892
* Tue Dec  4 2007 Petr Machata <pmachata@redhat.com> - 2007j-1
47b892
- Upstream 2007j
47b892
  - New links America/St_Barthelemy and America/Marigot
47b892
  - Venezuela is changing their clocks on December 9 at 03:00
47b892
47b892
* Mon Nov  5 2007 Petr Machata <pmachata@redhat.com> - 2007i-1
47b892
- Upstream 2007i
47b892
  - Syria DST will take place at Midnight between Thursday and Friday.
47b892
  - Cuba will end DST on the last Sunday of October.
47b892
- Update tst-timezone.c from glibc CVS
47b892
47b892
* Mon Oct  1 2007 Petr Machata <pmachata@redhat.com> - 2007h-1
47b892
- Upstream 2007h
47b892
  - Brazil will observe DST from 2007-10-14 to 2008-02-17
47b892
  - Egypt and Gaza switched earlier than we expected
47b892
  - Iran will resume DST next year
47b892
  - Venezuela is scheduled to change TZ to -4:30 on January 1
47b892
47b892
* Tue Sep 25 2007 Keith Seitz <keiths@redhat.com> - 2007g-2
47b892
- Add support for building java's zoneinfo files in new
47b892
  tzdata-java RPM.
47b892
47b892
* Wed Aug 22 2007 Petr Machata <pmachata@redhat.com> - 2007g-1
47b892
- Fix licensing tag.
47b892
- Upstream 2007g
47b892
  - Egypt switches the September 7, not September 28
47b892
  - Daviess, Dubous, Knox, Martin, and Pike Counties, Indiana, switch
47b892
    from central to eastern time in November
47b892
  - South Australia, Tasmania, Victoria, New South Wales and Lord Howe
47b892
    Island are changing their DST rules effective next year
47b892
  - Sync several Antarctic station's rules with the New Zealand
47b892
  - leapseconds contain changes from the most recent IERS bulletin
47b892
47b892
* Wed May  9 2007 Petr Machata <pmachata@redhat.com> - 2007f-1
47b892
- Upstream 2007f
47b892
  - New Zealand is extending DST, starting later this year.
47b892
  - Haiti no longer observes DST.
47b892
  - The Turks and Caicos switch at 02:00, not at 00:00, and have
47b892
    adopted US DST rules.
47b892
47b892
* Tue Apr  3 2007 Petr Machata <pmachata@redhat.com> - 2007e-1
47b892
- Upstream 2007e
47b892
  - Syria switched to summer time at Mar/29.
47b892
  - Honduras will not enter DST this year.
47b892
47b892
* Wed Mar 21 2007 Petr Machata <pmachata@redhat.com> - 2007d-1
47b892
- Upstream 2007d
47b892
  - Mongolia has abolished DST.
47b892
  - Turkey will use EU rules this year, changing at 01:00 UTC rather
47b892
    than 01:00 standard time.
47b892
  - Cuba observed DST starting Sunday.
47b892
  - Resolute, Nunavut switched from Central to Eastern time last
47b892
    November.
47b892
47b892
* Mon Feb 26 2007 Petr Machata <pmachata@redhat.com> - 2007c-1
47b892
- Upstream 2007c
47b892
  - Pulaski County, Indiana, switched back to eastern time.
47b892
  - Turkey switches at 01:00 standard time, not at 01:00 UTC.
47b892
- Upstream 2007b
47b892
  - Changes to the commentary in "leapseconds".
47b892
47b892
* Wed Feb  7 2007 Petr Machata <pmachata@redhat.com> - 2007a-2
47b892
- tidy up the specfile per rpmlint comments
47b892
47b892
* Thu Jan 18 2007 Petr Machata <pmachata@redhat.com> - 2007a-1
47b892
- Upstream 2007a
47b892
  - Updates to Bahamas, they will be in sync with 2007 US DST change
47b892
  - New zone Australia/Eucla
47b892
  - Africa/Asmera renamed to Africa/Asmara, link created
47b892
  - Atlantic/Faeroe renamed to Atlantic/Faroe, link created
47b892
- Packaging
47b892
  - Adding BuildRequires: glibc-common >= 2.5.90-7 to build tzdata
47b892
    with extended 64-bit format necessary for dates beyond 2037
47b892
47b892
* Wed Nov 29 2006 Petr Machata <pmachata@redhat.com> - 2006p-1
47b892
- Upstream 2006p
47b892
  - Official version of Western Australia DST trial changes
47b892
  - Latitude/longitude changes for Europe/Jersey and Europe/Podgorica
47b892
47b892
* Wed Nov 22 2006 Petr Machata <pmachata@redhat.com> - 2006o-2
47b892
- Patch for Western Australia DST trial
47b892
47b892
* Thu Nov  9 2006 Petr Machata <pmachata@redhat.com> - 2006o-1
47b892
- Cuba has ended its three years of permanent DST.
47b892
- Updates in historical timestamps for Chile.
47b892
47b892
* Tue Oct 10 2006 Petr Machata <pmachata@redhat.com> - 2006m-2
47b892
- Proposed upstream patch (#210058)
47b892
  - Jordan will switch to winter time on October 27, not September 29
47b892
  - Brazil's DST this year is the first Sunday in November to the last
47b892
    Sunday in February.  (Thanks to Frederico A. C. Neves.)
47b892
  - ISO 3166 codes for Serbia and Montenegro, zone Europe/Podgorica
47b892
  - Commentary and past timestamps changes
47b892
47b892
* Tue Oct  3 2006 Petr Machata <pmachata@redhat.com> - 2006m-1
47b892
- Upstream 2006m:
47b892
  - Adjustments for Egypt, Palestine, Uruguay
47b892
  - Better description of `until' field in zic (8) manpage
47b892
47b892
* Thu Sep 21 2006 Petr Machata <pmachata@redhat.com> - 2006l-1
47b892
- Upstream 2006k, 2006l:
47b892
  - Adjustments for Egypt, Palestine, Cuba, Honduras
47b892
  - Documentation changes
47b892
47b892
* Tue Aug 22 2006 Petr Machata <pmachata@redhat.com> - 2006j-1
47b892
- Upstream 2006j
47b892
  - Honduras stopped observing DST on Monday at 00:00
47b892
  - America/Bermuda will follow the US's lead next year
47b892
  - America/Moncton will use US-style rules next year
47b892
  - New Zone America/Blanc-Sablon, for Canadians who observe AST all
47b892
    year
47b892
  - New zone: America/Atikokan instead of America/Coral_Harbour
47b892
  - New zones: Europe/Jersey, Europe/Guernsey, Europe/Isle_of_Man
47b892
  - Historical changes
47b892
  - Commentary updates
47b892
- Upstream 2006i
47b892
  - localtime.c fixes
47b892
- Upstream 2006h
47b892
  - zic leapsecond fix
47b892
47b892
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2006g-1.1
47b892
- rebuild
47b892
47b892
* Thu May 11 2006 Petr Machata <pmachata@redhat.com> - 2006g-1
47b892
- Honduras chose to follow Guatemala and will observe DST May/6 to Sep/2
47b892
- Nicaragua updates
47b892
47b892
* Tue May  2 2006 Petr Machata <pmachata@redhat.com> - 2006f-1
47b892
- Upstream 2006f
47b892
  - America/Guatemala observes DST between Apr/30 and Oct/1
47b892
  - Historical changes for Nicaragua
47b892
  - Update of America/Indiana/Vincennes in zone table
47b892
47b892
* Thu Apr 20 2006 Petr Machata <pmachata@redhat.com> - 2006d-1
47b892
- Upstream 2006d
47b892
  - Haiti observes DST
47b892
  - Sri Lanka change actually took effect Apr/15
47b892
  - All Canada is now scheduled for 2007 US DST rules
47b892
  - Some historical fixes
47b892
47b892
* Thu Apr  6 2006 Petr Machata <pmachata@redhat.com> - 2006c-1
47b892
- Upstream 2006c
47b892
  - Time-related changes:
47b892
    - dozens of historical and commentary changes
47b892
    - Iran stopped observing DST
47b892
    - Sri Lanka switches from UTC+6 to UTC+5:30
47b892
    - America/Thule and America/Edmonton will adopt new US rules,
47b892
      starting 2007
47b892
    - Tunisia is adopting regular DST
47b892
  - Code:
47b892
    - asctime.c: Chages in format strings to silent gcc warnings
47b892
    - removing K&R notation from function signatures
47b892
    - few fixes across the code
47b892
47b892
* Thu Mar 16 2006 Petr Machata <pmachata@redhat.com> - 2006b-2
47b892
- Patch for Sri Lanka time zone change (#184514)
47b892
47b892
* Wed Feb 22 2006 Petr Machata <pmachata@redhat.com> 2006b-1
47b892
- Upstream 2006b:
47b892
  - using tz64code version, as 32 is legacy according to tzdata ML
47b892
  - new manual pages for ctime, strftime, tzset
47b892
  - some source code reorganizations
47b892
  - no timezone/dst rule updates
47b892
47b892
* Thu Feb 02 2006 Petr Machata <pmachata@redhat.com> 2006a-2
47b892
- Small changes in tst-timezone.c
47b892
47b892
* Thu Feb 02 2006 Petr Machata <pmachata@redhat.com> 2006a-1
47b892
- Upstream 2006a:
47b892
  - private.h(scheck): changing char* to char const*
47b892
  - Rule changes for Palestine, zone changes for Indiana/US, both
47b892
    changes for Canada.
47b892
  - Many related doc changes.
47b892
- Naming scheme in spec file doesn't use %%{name}, but tzdata.
47b892
47b892
* Thu Jan 12 2006 Petr Machata <pmachata@redhat.com> 2005r-3
47b892
- 2005r-3
47b892
  - Meta changes.  Renaming tzdata.tar.bz2 file to tzdata$ver-base,
47b892
    so that it won't clash across updates.
47b892
47b892
* Thu Jan  5 2006 Petr Machata <pmachata@redhat.com> 2005r-2
47b892
- 2005r
47b892
  - Zones EST, MST, HST, EST5EDT, CST6CDT, MST7MDT, PST8PDT moved to
47b892
    northamerica to guard against old files with obsolete information
47b892
    being left in the time zone binary directory.
47b892
  - Changes for countries that are supposed to join 2007 US DST
47b892
    change.  This includes most of Canada, however entries already in
47b892
    the database (Alberta, British Columbia, Newfoundland, Northwest
47b892
    Territories, and Yukon) were left alone for the time being.
47b892
  - Fixes in zdump.c (abbrok): conditions are chained, and the string
47b892
    is checked for emptiness.
47b892
47b892
* Sat Dec 17 2005 Jakub Jelinek <jakub@redhat.com> 2005q-2
47b892
- 2005q
47b892
  - changes for Georgia, Azerbaijan, Jordan, Palestine, Cuba, Nicaragua
47b892
  - SystemV timezone changes
47b892
47b892
* Wed Nov  2 2005 Jakub Jelinek <jakub@redhat.com> 2005n-2
47b892
- 2005n
47b892
  - changes for Kyrgyzstan and Uruguay
47b892
- fix a typo in the Makefile (used TZDATA env var instead of TZDIR during
47b892
  make check), update tst-timezone.c from glibc CVS (#172102)
47b892
47b892
* Tue Sep  6 2005 Jakub Jelinek <jakub@redhat.com> 2005m-2
47b892
- 2005m
47b892
  - changes for USA (extending DST by 4 weeks since 2007), Tunisia,
47b892
    Australia, Kazakhstan
47b892
  - historical timezone data changes for Japan, Poland, Northern Ireland and
47b892
    Mali
47b892
  - timezone name change for East Timor
47b892
47b892
* Fri Jul 15 2005 Jakub Jelinek <jakub@redhat.com> 2005k-2
47b892
- 2005k
47b892
  - leap seconds update
47b892
47b892
* Sat Apr 30 2005 Jakub Jelinek <jakub@redhat.com> 2005i-2
47b892
- 2005i
47b892
  - updates for Iran, Haiti and Nicaragua
47b892
47b892
* Mon Apr  4 2005 Jakub Jelinek <jakub@redhat.com> 2005h-2
47b892
- 2005h
47b892
  - fixes for Kazakhstan
47b892
47b892
* Thu Mar 17 2005 Jakub Jelinek <jakub@redhat.com> 2005g-2
47b892
- 2005g
47b892
  - fixes for Uruguay
47b892
- include README and Theory from tzcode tarball in %%{_docdir};
47b892
  Theory includes a good summary of how the timezone data files
47b892
  are supposed to be named
47b892
47b892
* Tue Mar  1 2005 Jakub Jelinek <jakub@redhat.com> 2005f-2
47b892
- 2005f
47b892
  - more updates for Israel, updates for Azerbaijan
47b892
47b892
* Wed Jan 26 2005 Jakub Jelinek <jakub@redhat.com> 2005c-3
47b892
- 2005c
47b892
  - updates for Israel and Paraguay
47b892
47b892
* Mon Nov 29 2004 Jakub Jelinek <jakub@redhat.com> 2004g-1
47b892
- 2004g (#141107)
47b892
  - updates for Cuba
47b892
47b892
* Mon Oct 11 2004 Jakub Jelinek <jakub@redhat.com> 2004e-2
47b892
- 2004e (#135194)
47b892
  - updates for Brazil, Uruguay and Argentina
47b892
47b892
* Wed Aug  4 2004 Jakub Jelinek <jakub@redhat.com> 2004b-2
47b892
- 2004b
47b892
47b892
* Mon Oct  6 2003 Jakub Jelinek <jakub@redhat.com> 2003d-1
47b892
- 2003d
47b892
47b892
* Thu Sep 25 2003 Jakub Jelinek <jakub@redhat.com> 2003c-1
47b892
- 2003c
47b892
- updates for Brazil (#104840)
47b892
47b892
* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2003a-2
47b892
- rebuilt
47b892
47b892
* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2003a-1
47b892
- initial package