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