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