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