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