|
|
a4e53d |
Summary: Timezone data
|
|
|
a4e53d |
Name: tzdata
|
|
|
72c9e0 |
Version: 2014f
|
|
|
72c9e0 |
%define tzdata_version 2014f
|
|
|
72c9e0 |
%define tzcode_version 2014f
|
|
|
a4e53d |
Release: 1%{?dist}
|
|
|
a4e53d |
License: Public Domain
|
|
|
a4e53d |
Group: System Environment/Base
|
|
|
a4e53d |
URL: https://www.iana.org/time-zones
|
|
|
a4e53d |
Source0: ftp://ftp.iana.org/tz/releases/tzdata%{tzdata_version}.tar.gz
|
|
|
a4e53d |
Source1: ftp://ftp.iana.org/tz/releases/tzcode%{tzcode_version}.tar.gz
|
|
|
e24d98 |
# Add new tzdata patches here
|
|
|
a4e53d |
|
|
|
a4e53d |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
a4e53d |
BuildRequires: gawk, glibc, perl
|
|
|
a4e53d |
BuildRequires: java-devel
|
|
|
a4e53d |
BuildRequires: glibc-common >= 2.5.90-7
|
|
|
a4e53d |
Conflicts: glibc-common <= 2.3.2-63
|
|
|
a4e53d |
BuildArchitectures: noarch
|
|
|
a4e53d |
|
|
|
a4e53d |
%description
|
|
|
a4e53d |
This package contains data files with rules for various timezones around
|
|
|
a4e53d |
the world.
|
|
|
a4e53d |
|
|
|
a4e53d |
%package java
|
|
|
a4e53d |
Summary: Timezone data for Java
|
|
|
a4e53d |
Group: System Environment/Base
|
|
|
a4e53d |
Source3: javazic.tar.gz
|
|
|
a4e53d |
Patch100: javazic-fixup.patch
|
|
|
a4e53d |
Patch101: javazic-exclusion-fix.patch
|
|
|
a4e53d |
|
|
|
a4e53d |
%description java
|
|
|
a4e53d |
This package contains timezone information for use by Java runtimes.
|
|
|
a4e53d |
|
|
|
a4e53d |
%prep
|
|
|
a4e53d |
%setup -q -c -a 1
|
|
|
a4e53d |
|
|
|
e24d98 |
# Add new java patches here
|
|
|
c5ab3f |
|
|
|
a4e53d |
mkdir javazic
|
|
|
a4e53d |
tar zxf %{SOURCE3} -C javazic
|
|
|
a4e53d |
pushd javazic
|
|
|
a4e53d |
%patch100
|
|
|
a4e53d |
%patch101
|
|
|
a4e53d |
|
|
|
a4e53d |
# Hack alert! sun.tools may be defined and installed in the
|
|
|
a4e53d |
# VM. In order to guarantee that we are using IcedTea/OpenJDK
|
|
|
a4e53d |
# for creating the zoneinfo files, rebase all the packages
|
|
|
a4e53d |
# from "sun." to "rht.". Unfortunately, gcj does not support
|
|
|
a4e53d |
# any of the -Xclasspath options, so we must go this route
|
|
|
a4e53d |
# to ensure the greatest compatibility.
|
|
|
a4e53d |
mv sun rht
|
|
|
a4e53d |
find . -type f -name '*.java' -print0 \
|
|
|
a4e53d |
| xargs -0 -- sed -i -e 's:sun\.tools\.:rht.tools.:g' \
|
|
|
a4e53d |
-e 's:sun\.util\.:rht.util.:g'
|
|
|
a4e53d |
popd
|
|
|
a4e53d |
|
|
|
a4e53d |
%build
|
|
|
a4e53d |
FILES="africa antarctica asia australasia europe northamerica southamerica
|
|
|
c5ab3f |
pacificnew etcetera backward"
|
|
|
a4e53d |
|
|
|
a4e53d |
mkdir zoneinfo/{,posix,right}
|
|
|
a4e53d |
zic -y ./yearistype -d zoneinfo -L /dev/null -p America/New_York $FILES
|
|
|
a4e53d |
zic -y ./yearistype -d zoneinfo/posix -L /dev/null $FILES
|
|
|
a4e53d |
zic -y ./yearistype -d zoneinfo/right -L leapseconds $FILES
|
|
|
a4e53d |
|
|
|
a4e53d |
grep -v tz-art.htm tz-link.htm > tz-link.html
|
|
|
a4e53d |
|
|
|
a4e53d |
pushd javazic
|
|
|
a4e53d |
javac -source 1.5 -target 1.5 -classpath . `find . -name \*.java`
|
|
|
a4e53d |
popd
|
|
|
a4e53d |
|
|
|
a4e53d |
java -classpath javazic/ rht.tools.javazic.Main -V %{version} \
|
|
|
a4e53d |
-d javazi \
|
|
|
a4e53d |
$FILES javazic/tzdata_jdk/gmt javazic/tzdata_jdk/jdk11_backward
|
|
|
a4e53d |
|
|
|
a4e53d |
%install
|
|
|
a4e53d |
rm -fr $RPM_BUILD_ROOT
|
|
|
a4e53d |
install -d $RPM_BUILD_ROOT%{_datadir}
|
|
|
a4e53d |
cp -prd zoneinfo $RPM_BUILD_ROOT%{_datadir}
|
|
|
a4e53d |
install -p -m 644 zone.tab iso3166.tab $RPM_BUILD_ROOT%{_datadir}/zoneinfo
|
|
|
a4e53d |
cp -prd javazi $RPM_BUILD_ROOT%{_datadir}/javazi
|
|
|
a4e53d |
|
|
|
a4e53d |
%clean
|
|
|
a4e53d |
rm -rf $RPM_BUILD_ROOT
|
|
|
a4e53d |
|
|
|
a4e53d |
%files
|
|
|
a4e53d |
%defattr(-,root,root)
|
|
|
a4e53d |
%{_datadir}/zoneinfo
|
|
|
a4e53d |
%doc README
|
|
|
a4e53d |
%doc Theory
|
|
|
a4e53d |
%doc tz-link.html
|
|
|
a4e53d |
|
|
|
a4e53d |
%files java
|
|
|
a4e53d |
%defattr(-,root,root)
|
|
|
a4e53d |
%{_datadir}/javazi
|
|
|
a4e53d |
|
|
|
a4e53d |
%changelog
|
|
|
72c9e0 |
* Sat Aug 10 2014 Patsy Franklin <pfrankli@redhat.com> - 2014f-1
|
|
|
72c9e0 |
- Rebase to 2014f
|
|
|
72c9e0 |
- Several Russian time zones changes effective on 2014-10-26
|
|
|
72c9e0 |
at 02:00 local time. See NEWS file for additional details.
|
|
|
72c9e0 |
|
|
|
e24d98 |
* Sat Jun 14 2014 Patsy Franklin <pfrankli@redhat.com> - 2014e-1
|
|
|
e24d98 |
- Rebase to 2014e
|
|
|
e24d98 |
- Morrocco suspends DTS for Ramadan
|
|
|
e24d98 |
June 28 at 03:00 and August 2 at 02:00
|
|
|
e24d98 |
- Egypt suspends DTS for Ramadan
|
|
|
e24d98 |
June 26 and July 31 at 24:00
|
|
|
e24d98 |
|
|
|
e24d98 |
* Thu May 28 2014 Patsy Franklin <pfrankli@redhat.com> - 2014d-1
|
|
|
7324d3 |
- Rebase to 2014d
|
|
|
7324d3 |
- zic no longer generates files containing time stamps before
|
|
|
7324d3 |
the Big Bang. This works around GNOME bug 730332
|
|
|
7324d3 |
|
|
|
7324d3 |
* Wed May 21 2014 Patsy Franklin <pfrankli@redhat.com> - 2014c-1
|
|
|
7324d3 |
- Rebase to 2014c
|
|
|
7324d3 |
- Egypt observes DST starting 2014-05-15 at 24:00.
|
|
|
7324d3 |
|
|
|
7324d3 |
* Tue Mar 25 2014 Patsy Franklin <pfrankli@redhat.com> - 2014b-1
|
|
|
c5ab3f |
- Rebase to 2014b
|
|
|
c5ab3f |
- Crimea switches to Moscow time on 2014-03-30 at 02:00 local time.
|
|
|
c5ab3f |
- New entry for Troll station, Antarctica.
|
|
|
c5ab3f |
|
|
|
c5ab3f |
* Mon Mar 10 2014 Patsy Franklin <pfrankli@redhat.com> - 2014a-1
|
|
|
c5ab3f |
- Turkey begins DST on 2014-03-31, not 03-30.
|
|
|
c5ab3f |
|
|
|
c5ab3f |
* Sun Jan 19 2014 Patsy Franklin <pfrankli@redhat.com> - 2013i-3
|
|
|
c5ab3f |
- Fiji ends DST on 2014-01-19 at 02:00, not the previously-scheduled 03:00.
|
|
|
c5ab3f |
|
|
|
c5ab3f |
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2013i-2
|
|
|
c5ab3f |
- Mass rebuild 2013-12-27
|
|
|
c5ab3f |
|
|
|
c5ab3f |
* Tue Dec 17 2013 Patsy Franklin <pfrankli@redhat.com> 2013i-1
|
|
|
c5ab3f |
- Rebase with early release of 2013i from Paul Eggert github.
|
|
|
c5ab3f |
- Jordan switches back to standard time at 00:00 on December 20,2013.
|
|
|
c5ab3f |
- The 2006-2011 transition schedule is planned to resume in 2014.
|
|
|
c5ab3f |
- The compile-time flag NOSOLAR has been removed.
|
|
|
c5ab3f |
- The files solar87, solar88, and solar89 are no longer distributed.
|
|
|
c5ab3f |
- tz-link.htm now mentions Noda Time.
|
|
|
c5ab3f |
|
|
|
a4e53d |
* Tue Nov 5 2013 Patsy Franklin <pfrankli@redhat.com> 2013h-1
|
|
|
a4e53d |
- Rebase to 2013h
|
|
|
c5ab3f |
- Libya switched to using UTC+2 without DST
|
|
|
a4e53d |
- Western Sahara (Africa/ElAaiun) uses Morocco's DST rules
|
|
|
a4e53d |
- Acres and Amazon swithc to UTC-4 and UTC-5 on 2013-11-10
|
|
|
a4e53d |
- Add entries for DST transition in Morocco in the year 2038
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Oct 8 2013 Patsy Franklin <pfrankli@redhat.com> 2013g-1
|
|
|
a4e53d |
- Morocco moved end of DST from September to October (#1014782).
|
|
|
a4e53d |
|
|
|
a4e53d |
* Fri May 17 2013 Petr Machata <pmachata@redhat.com> - 2013c-1
|
|
|
a4e53d |
- Upstream 2013c
|
|
|
a4e53d |
- Sync past stamps for Palestine and West Bank with timeanddate.com
|
|
|
a4e53d |
- Assume that the recent change to Paraguay's DST rules is permanent
|
|
|
a4e53d |
- Macquarie was uninhabited between 1919 and 1948. It's also part
|
|
|
a4e53d |
of Australia (update in zone.tab).
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Mar 27 2013 Petr Machata <pmachata@redhat.com> - 2013b-2
|
|
|
a4e53d |
- Palestine starts Daylight Saving Time on March 29, 2013
|
|
|
a4e53d |
(tzdata-2013b-gaza.patch)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Mar 13 2013 Petr Machata <pmachata@redhat.com> - 2013b-1
|
|
|
a4e53d |
- Upstream 2013b
|
|
|
a4e53d |
- Paraguay will end DST on March 24 this year
|
|
|
a4e53d |
- Haiti uses US daylight-saving rules this year
|
|
|
a4e53d |
- Morocco does not observe DST during Ramadan
|
|
|
a4e53d |
- Upstream 2013a
|
|
|
a4e53d |
- Retire Chile patch, 2013a has the data
|
|
|
a4e53d |
- New Zones Asia/Khandyga, Asia/Ust-Nera, Europe/Busingen
|
|
|
a4e53d |
- Many changes in historical timestamps
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Feb 27 2013 Petr Machata <pmachata@redhat.com> - 2012j-3
|
|
|
a4e53d |
- DTS in Chile will end on 2013-04-28
|
|
|
a4e53d |
(0016-Chile-is-changing-its-DST-rules.patch)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012j-2
|
|
|
a4e53d |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
a4e53d |
|
|
|
a4e53d |
* Fri Nov 30 2012 Petr Machata <pmachata@redhat.com> - 2012j-1
|
|
|
a4e53d |
- Upstream 2012j
|
|
|
a4e53d |
- Libya moved to CET
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Nov 6 2012 Petr Machata <pmachata@redhat.com> - 2012i-2
|
|
|
a4e53d |
- Preserve hardlinks that zic leaves behind, install with cp -d
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Nov 5 2012 Petr Machata <pmachata@redhat.com> - 2012i-1
|
|
|
a4e53d |
- Upstream 2012i
|
|
|
a4e53d |
- Cuba switched to DST
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Nov 5 2012 Petr Machata <pmachata@redhat.com> - 2012h-2
|
|
|
a4e53d |
- Switch back to using system zic, ignore upstream Makefile at all.
|
|
|
a4e53d |
We do so for java anyway.
|
|
|
a4e53d |
- Drop Factory from distribution
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Oct 31 2012 Petr Machata <pmachata@redhat.com> - 2012h-1
|
|
|
a4e53d |
- Upstream 2012h
|
|
|
a4e53d |
- Brazilian state Bahia no longer has DST.
|
|
|
a4e53d |
- Brazilian state Tocantins now has DST.
|
|
|
a4e53d |
- Israel has new DST rules next year.
|
|
|
a4e53d |
- Jordan stays on DST this winter.
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Oct 22 2012 Petr Machata <pmachata@redhat.com> - 2012g-1
|
|
|
a4e53d |
- Upstream 2012g
|
|
|
a4e53d |
- Adjust the packaging for new Makefile
|
|
|
a4e53d |
- Palestine: Fall transition was Sep 21, not Sep 28
|
|
|
a4e53d |
- Samoa: Daylight Saving Time commences on Sunday 30th September
|
|
|
a4e53d |
2012 and ends on Sunday 7th of April 2013.
|
|
|
a4e53d |
- Resolves: #868173
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Sep 17 2012 Petr Machata <pmachata@redhat.com> - 2012f-1
|
|
|
a4e53d |
- Fiji will start daylight savings at 2 am on Sunday 21st October 2012
|
|
|
a4e53d |
and end at 3 am on Sunday 20th January 2013. Guess it will be like
|
|
|
a4e53d |
that in following years as well.
|
|
|
a4e53d |
- Resolves: #857231
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Aug 13 2012 Petr Machata <pmachata@redhat.com> - 2012e-1
|
|
|
a4e53d |
- Tokelau is in time zone UTC+13, not UTC+14 (and always was)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Fri Jul 20 2012 Petr Machata <pmachata@redhat.com> - 2012d-1
|
|
|
a4e53d |
- Upstream 2012d
|
|
|
a4e53d |
- Morocco will not observe DST during the month of Ramadan.
|
|
|
a4e53d |
DST cessation end date was corrected.
|
|
|
a4e53d |
|
|
|
a4e53d |
* Fri Jul 13 2012 Petr Machata <pmachata@redhat.com> - 2012c-2
|
|
|
a4e53d |
- Morocco will not observe DST during the month of Ramadan
|
|
|
a4e53d |
(tzdata-2012c-morocco.patch)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Apr 2 2012 Petr Machata <pmachata@redhat.com> - 2012c-1
|
|
|
a4e53d |
- Upstream 2012c
|
|
|
a4e53d |
- Haiti observes DST from 2012 on
|
|
|
a4e53d |
- Gaza Strip and Hebron observe DST in 2012
|
|
|
a4e53d |
- Change start of DST in Syria to last Friday in March
|
|
|
a4e53d |
|
|
|
a4e53d |
* Fri Mar 16 2012 Petr Machata <pmachata@redhat.com> - 2012b-3
|
|
|
a4e53d |
- Morocco moved DST entry to last Sunday of April
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Mar 15 2012 Petr Machata <pmachata@redhat.com> - 2012b-2
|
|
|
a4e53d |
- Morocco DST starts on the last Sunday of March (March 25, 2012) and
|
|
|
a4e53d |
ends on last Sunday of September, except the month of Ramadan. It
|
|
|
a4e53d |
is currently unclear what that Ramadan bit means, so this is not
|
|
|
a4e53d |
covered by the patch as of now.
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Mar 6 2012 Petr Machata <pmachata@redhat.com> - 2012b-1
|
|
|
a4e53d |
- Rebase to 2012b; changes vs. 2011n-5:
|
|
|
a4e53d |
- Changes to zones for Antarctica stations
|
|
|
a4e53d |
- Armenia abolished DST in 2012 and forward
|
|
|
a4e53d |
- Cuba enters DST on 31st March
|
|
|
a4e53d |
- Falkland Islands will stay on permanent Summer Time
|
|
|
a4e53d |
- New zone for Creston Valley, Canada, which differs from Dawson
|
|
|
a4e53d |
Creek in past stamps. Changes to historical stamps in Canada.
|
|
|
a4e53d |
- Last year, Tokelau skipped over the date line together with Samoa
|
|
|
a4e53d |
|
|
|
a4e53d |
* Fri Feb 24 2012 Petr Machata <pmachata@redhat.com> - 2011n-5
|
|
|
a4e53d |
- Add a patch for change in Chilean DST
|
|
|
a4e53d |
- Update URLs
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Feb 21 2012 Petr Machata <pmachata@redhat.com> - 2011n-4
|
|
|
a4e53d |
- Add a patch for the leap second that will occur this summer
|
|
|
a4e53d |
|
|
|
a4e53d |
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2011n-3
|
|
|
a4e53d |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Nov 3 2011 Petr Machata <pmachata@redhat.com> - 2011n-2
|
|
|
a4e53d |
- Fix building of Java zones. Patch by Deepak Bhole
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Oct 31 2011 Petr Machata <pmachata@redhat.com> - 2011l-1
|
|
|
a4e53d |
- Rebase to 2011n
|
|
|
a4e53d |
- Drop all patches, including the Kemerovo patch, which is not in
|
|
|
a4e53d |
upstream
|
|
|
a4e53d |
- Cuba postponed DST by two weeks to Nov 13
|
|
|
a4e53d |
- Fiji will enter DST on Jan 21
|
|
|
a4e53d |
- Resolved: #748778
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Oct 19 2011 Petr Machata <pmachata@redhat.com> - 2011l-3
|
|
|
a4e53d |
- Ukraine will enter Winter Time after all
|
|
|
a4e53d |
|
|
|
a4e53d |
* Fri Oct 14 2011 Petr Machata <pmachata@redhat.com> - 2011l-2
|
|
|
a4e53d |
- State of Bahia, Brazil, to resume Summer Time on Oct 16
|
|
|
a4e53d |
- The project moved, reflect this in URL
|
|
|
a4e53d |
- Resolves: #746183
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Oct 11 2011 Petr Machata <pmachata@redhat.com> - 2011l-1
|
|
|
a4e53d |
- Upstream 2011l:
|
|
|
a4e53d |
- Fix ancient stamps for America/Sitka
|
|
|
a4e53d |
- Asia/Hebron transitioned to standard time already on Sep 30, not Oct 3
|
|
|
a4e53d |
- Fiji will introduce DST on Oct 22
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Sep 21 2011 Petr Machata <pmachata@redhat.com> - 2011k-0.1.20110921
|
|
|
a4e53d |
- Upstream 2011j:
|
|
|
a4e53d |
- Fix the Samoa date line skip
|
|
|
a4e53d |
- Changes in past timestamp typos several Africa zones
|
|
|
a4e53d |
- Proposed upstream 2011k:
|
|
|
a4e53d |
- Belarus and Ukraine adopt permanent DST in 2011
|
|
|
a4e53d |
- Palestine suspends DST during Ramadan in 2011
|
|
|
a4e53d |
- Gaza and West Bank split in 2011. West Bank is tracked in the
|
|
|
a4e53d |
timezone Asia/Hebron. zone.tab update accordingly.
|
|
|
a4e53d |
- Resolves: #737896
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Aug 29 2011 Petr Machata <pmachata@redhat.com> - 2011h-1
|
|
|
a4e53d |
- Upstream 2011i:
|
|
|
a4e53d |
- Add Africa/Juba (South Sudan) zone
|
|
|
a4e53d |
- Samoa skips over the date line on 2011-12-30
|
|
|
a4e53d |
- Use KALT as abbreviation for Europe/Kalinigrad
|
|
|
a4e53d |
- Canonical version of the Newfoundland patch
|
|
|
a4e53d |
- Change America/Resolute use of EST to 2006-2007 only
|
|
|
a4e53d |
- Assume Metlakatla abandoned use of daylight saving in 1983
|
|
|
a4e53d |
- Sync iso3166.tab and zone.tab with above
|
|
|
a4e53d |
- Resolved: #734063
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Aug 10 2011 Petr Machata <pmachata@redhat.com> - 2011h-2
|
|
|
a4e53d |
- Patch for upcoming change in Newfoundland. The transition time
|
|
|
a4e53d |
changes from 12:01 AM to 2:00 AM.
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Jun 27 2011 Petr Machata <pmachata@redhat.com> - 2011h-1
|
|
|
a4e53d |
- Upstream 2011h:
|
|
|
a4e53d |
- Russia abandons DST in 2011.
|
|
|
a4e53d |
- *.tab: change AN (Netherlands Antilles) to CW (Curacao)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Apr 26 2011 Petr Machata <pmachata@redhat.com> - 2011g-1
|
|
|
a4e53d |
- Upstream 2011e:
|
|
|
a4e53d |
- Morocco introduced DST for 2011 from April 2 to July 31.
|
|
|
a4e53d |
- Delay end of DST in Chile in 2011 until May 7.
|
|
|
a4e53d |
- Upstream 2011f:
|
|
|
a4e53d |
- The Falkland Islands will not turn back clocks this winter, but
|
|
|
a4e53d |
stay on daylight saving time.
|
|
|
a4e53d |
- Upstream 2011g:
|
|
|
a4e53d |
- Egypt abandons DST in 2011 (and forward)
|
|
|
a4e53d |
- Dropped tzdata-2011d-chile.patch
|
|
|
a4e53d |
- Dropped tzdata-2011d-morocco.patch
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Mar 30 2011 Petr Machata <pmachata@redhat.com> - 2011d-3
|
|
|
a4e53d |
- Morocco introduced DST for 2011 from April 2 to July 31. (tzdata-2011d-morocco.patch)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Mar 29 2011 Petr Machata <pmachata@redhat.com> - 2011d-2
|
|
|
a4e53d |
- Delay end of DST in Chile in 2011 until May 7. (tzdata-2011d-chile.patch)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Mar 15 2011 Petr Machata <pmachata@redhat.com> - 2011d-1
|
|
|
a4e53d |
- Upstream 2011d:
|
|
|
a4e53d |
- Change end of DST in Samoa in 2011.
|
|
|
a4e53d |
- Change start of DST in Cuba in 2011.
|
|
|
a4e53d |
- Move start of DST in Turkey by one day in 2011.
|
|
|
a4e53d |
- Dropped tzdata-2011b-c.patch
|
|
|
a4e53d |
|
|
|
a4e53d |
* Fri Mar 04 2011 Petr Machata <pmachata@redhat.com> - 2011b-3
|
|
|
a4e53d |
- Kemerovo oblast should use OMST/OMSST abbreviation (tzdata-2011b-kemerovo.patch)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Mar 03 2011 Petr Machata <pmachata@redhat.com> - 2011b-2
|
|
|
a4e53d |
- Update of historical stamps for Juneau, Sitka, and histcurrent stamps
|
|
|
a4e53d |
for Metlakatla. Sitka and Metlakatla are new zones.
|
|
|
a4e53d |
- Delay end of DST in Chile in 2011 until first Sunday in April. (tzdata-2011b-c.patch)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Feb 09 2011 Petr Machata <pmachata@redhat.com> - 2011b-1
|
|
|
a4e53d |
- Upstream 2011b:
|
|
|
a4e53d |
- America/North_Dakota/Beulah: Mercer County, North Dakota, changed
|
|
|
a4e53d |
from the mountain time zone to the central time zone
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Jan 24 2011 Petr Machata <pmachata@redhat.com> - 2011a-1
|
|
|
a4e53d |
- Upstream 2011a:
|
|
|
a4e53d |
- Updates of historical stamps for Hawaii
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Nov 09 2010 Petr Machata <pmachata@redhat.com> - 2010o-1
|
|
|
a4e53d |
- Upstream 2010o:
|
|
|
a4e53d |
- Fiji will end DST on March 6, 2011, not March 27, 2011
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Oct 27 2010 Petr Machata <pmachata@redhat.com> - 2010n-1
|
|
|
a4e53d |
- Upstream 2010m:
|
|
|
a4e53d |
- Hong Kong didn't observe DST in 1977
|
|
|
a4e53d |
- In zone.tab, remove obsolete association of Vostok Station with
|
|
|
a4e53d |
South Magnetic Pole; add association with Lake Vostok
|
|
|
a4e53d |
- Upstream 2010n:
|
|
|
a4e53d |
- Change end of DST in Samoa in 2011 from 2011-04-03 0:00 to
|
|
|
a4e53d |
2011-04-03 1:00
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Aug 16 2010 Petr Machata <pmachata@redhat.com> - 2010l-2
|
|
|
a4e53d |
- Upstream 2010l:
|
|
|
a4e53d |
- Change Cairo's 2010 reversion to DST from the midnight between
|
|
|
a4e53d |
September 8 and 9 to the midnight between September 9 and 10.
|
|
|
a4e53d |
- Change Gaza's 2010 return to standard time to the midnight between
|
|
|
a4e53d |
August 10 and 11.
|
|
|
a4e53d |
- Bahia de Banderas (Mexican state of Nayarit) changed time zone
|
|
|
a4e53d |
UTC-7 to new time zone UTC-6 on April 4, 2010
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Aug 3 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2010k-1
|
|
|
a4e53d |
- Upstream 2010k:
|
|
|
a4e53d |
- Egypt has announced that DST will be off during Ramadan, but
|
|
|
a4e53d |
DST will resume afterwards (August 10, 2010 - September 9, 2010)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue May 11 2010 Petr Machata <pmachata@redhat.com> - 2010j-1
|
|
|
a4e53d |
- Upstream 2010j:
|
|
|
a4e53d |
- Bahia de Banderas (Mexican state of Nayarit) changed time zone
|
|
|
a4e53d |
UTC-7 to new time zone UTC-6 on April 4, 2010
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Apr 19 2010 Petr Machata <pmachata@redhat.com> - 2010i-1
|
|
|
a4e53d |
- Upstream 2010i:
|
|
|
a4e53d |
- Morocco will have DST from 2010-05-02 to 2010-08-08
|
|
|
a4e53d |
- San Luis, Argentina will keep permanent DST after April 11, 2010
|
|
|
a4e53d |
- Updates of historical stamps for Taiwan
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Apr 06 2010 Petr Machata <pmachata@redhat.com> - 2010h-2
|
|
|
a4e53d |
- Upstream 2010g:
|
|
|
a4e53d |
- No Bangladesh DST in 2010 and forward.
|
|
|
a4e53d |
- Gaza DST starts last Saturday in March at 12:01 a.m. in 2010 and forward
|
|
|
a4e53d |
- Kamchatka and Anadyr change to Moscow+8 on 2010-03-28
|
|
|
a4e53d |
- Samara changes to Moscow+0 on 2010-03-28
|
|
|
a4e53d |
- Related zone.tab updates
|
|
|
a4e53d |
- Upstream 2010h:
|
|
|
a4e53d |
- No DST in Tunisia in 2010 and forward
|
|
|
a4e53d |
- No DST in Pakistan in 2010 and forward
|
|
|
a4e53d |
- Dropped tzdata-2010g-tunis.patch
|
|
|
a4e53d |
- Dropped tzdata-2010f-g.patch
|
|
|
a4e53d |
- Dropped tzdata-2010g-karachi.patch
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Mar 29 2010 Petr Machata <pmachata@redhat.com> - 2010f-3
|
|
|
a4e53d |
- Tunisia not to observe DST in 2010 (tzdata-2010g-tunis.patch)
|
|
|
a4e53d |
- Pakistan not to observe DST in 2010 (tzdata-2010g-karachi.patch)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Mar 25 2010 Petr Machata <pmachata@redhat.com> - 2010f-2
|
|
|
a4e53d |
- Fix the path in tzdata-2010f-g.patch
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Mar 25 2010 Petr Machata <pmachata@redhat.com> - 2010f-1
|
|
|
a4e53d |
- Upstream 2010f:
|
|
|
a4e53d |
- Changes to Australian stations in Antarctica
|
|
|
a4e53d |
- Correct 2010 Samoa DST start date
|
|
|
a4e53d |
- New zone Antarctica/Macquarie
|
|
|
a4e53d |
- Change Syria DST start from last Friday in March to first Friday
|
|
|
a4e53d |
in April in 2010 and forward
|
|
|
a4e53d |
- Upstream 2010g proposal (tzdata-2010f-g.patch):
|
|
|
a4e53d |
- No Bangladesh DST in 2010 and forward.
|
|
|
a4e53d |
- Gaza DST starts last Saturday in March at 12:01 a.m. in 2010 and forward
|
|
|
a4e53d |
- Kamchatka and Anadyr change to Moscow+8 on 2010-03-28
|
|
|
a4e53d |
- Samara changes to Moscow+0 on 2010-03-28
|
|
|
a4e53d |
- Related zone.tab updates
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Mar 09 2010 Petr Machata <pmachata@redhat.com> - 2010e-1
|
|
|
a4e53d |
- Upstream 2010d
|
|
|
a4e53d |
- The DST change in Bangladesh takes place a minute earlier
|
|
|
a4e53d |
- Fiji to end DST on 2010-03-28 at 03:00, about a month earlier
|
|
|
a4e53d |
- Samoa to observe DST this year; they didn't observe DST last year
|
|
|
a4e53d |
- DST in Chile extended to 3 April
|
|
|
a4e53d |
- Upstream 2010e:
|
|
|
a4e53d |
- Fix a typo in Bangladesh DST rule
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Mar 01 2010 Petr Machata <pmachata@redhat.com> - 2010c-1
|
|
|
a4e53d |
- Upstream 2010a
|
|
|
a4e53d |
- Source code cleanups
|
|
|
a4e53d |
- Historical timestamps for Bangladesh
|
|
|
a4e53d |
- Upstream 2010b
|
|
|
a4e53d |
- Northern Mexico's border cities share the DST schedule with the
|
|
|
a4e53d |
United States
|
|
|
a4e53d |
- Upstream 2010c
|
|
|
a4e53d |
- Paraguay DST now in effect from 2nd Sunday of April to 1st Sunday
|
|
|
a4e53d |
of October
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Jan 04 2010 Petr Machata <pmachata@redhat.com> - 2009u-1
|
|
|
a4e53d |
- Upstream 2009p
|
|
|
a4e53d |
- Argentina does not enter DST on October 18
|
|
|
a4e53d |
- San Luis switched from UTC-4 to UTC-3 on October 11th
|
|
|
a4e53d |
- Upstream 2009q
|
|
|
a4e53d |
- Change DST end in Syria from November 1 to last Friday in October
|
|
|
a4e53d |
- Changes to past Hong Kong transitions
|
|
|
a4e53d |
- Kemerovo oblast' in Russia will change current time zone on March 28, 2010.
|
|
|
a4e53d |
Asia/Novokuznetsk is the new time zone name
|
|
|
a4e53d |
- Upstream 2009r
|
|
|
a4e53d |
- Changes to local times of three Australian research stations in Antarctica
|
|
|
a4e53d |
- Upstream 2009s
|
|
|
a4e53d |
- Fiji plans to re-introduce DST from November 29th 2009 to April 25th 2010
|
|
|
a4e53d |
- Upstream 2009u
|
|
|
a4e53d |
- Bangladesh changed their clock back to Standard Time on December 31, 2009
|
|
|
a4e53d |
- Dropped tzdata-2009o-argentinas.patch
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Oct 21 2009 Petr Machata <pmachata@redhat.com> - 2009o-2
|
|
|
a4e53d |
- San Luis (Argentina) entered DST on October 11 (tzdata-2009o-argentinas.patch)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Oct 19 2009 Petr Machata <pmachata@redhat.com> - 2009o-1
|
|
|
a4e53d |
- Upstream 2009o
|
|
|
a4e53d |
- Bangladesh won't go back to Standard Time from October 1, 2009
|
|
|
a4e53d |
- Pakistan leaves DST on October 1, 2009
|
|
|
a4e53d |
- Dropped tzdata-2009m-karachi.patch
|
|
|
a4e53d |
- Argentina does not enter DST on October 18 (tzdata-2009o-argentinas.patch)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Sep 22 2009 Petr Machata <pmachata@redhat.com> - 2009m-2
|
|
|
a4e53d |
- Add markers for autoupdate of spec file
|
|
|
a4e53d |
- Pakistan leaves the period of DST on October 1 (tzdata-2009m-karachi.patch)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Sep 16 2009 Petr Machata <pmachata@redhat.com> - 2009m-1
|
|
|
a4e53d |
- Upstream 2009m
|
|
|
a4e53d |
- Palestine will will revert back to winter time on Friday, 2009-09-04
|
|
|
a4e53d |
- Samoa passed the DST Bill that fixes DST dates for 2009 and 2010
|
|
|
a4e53d |
- Drop Egypt patch
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Aug 13 2009 Petr Machata <pmachata@redhat.com> - 2009k-3
|
|
|
a4e53d |
- Egypt starts winter time on August 21.
|
|
|
a4e53d |
|
|
|
a4e53d |
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2009k-2
|
|
|
a4e53d |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Jul 20 2009 Petr Machata <pmachata@redhat.com> - 2009k-1
|
|
|
a4e53d |
- Upstream 2009k
|
|
|
a4e53d |
- Mauritius will not continue to observe DST the coming summer
|
|
|
a4e53d |
- Arbitrarily end DST at the end of 2009 so that a POSIX-style time
|
|
|
a4e53d |
zone string can appear in the Dhaka binary file
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Jun 18 2009 Petr Machata <pmachata@redhat.com> - 2009j-1
|
|
|
a4e53d |
- Upstream 2009j
|
|
|
a4e53d |
- DST switch for Bangladesh will occur an hour earlier than was
|
|
|
a4e53d |
thought.
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Jun 8 2009 Petr Machata <pmachata@redhat.com> - 2009i-1
|
|
|
a4e53d |
- Upstream 2009i
|
|
|
a4e53d |
- Bangladesh introduces DST 2009-06-20
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue May 26 2009 Petr Machata <pmachata@redhat.com> - 2009h-2
|
|
|
a4e53d |
- Upstream 2009h
|
|
|
a4e53d |
- Convert use of 00:00 stamps to 24:00 of the previous day
|
|
|
a4e53d |
- Clarify that the data is Public Domain
|
|
|
a4e53d |
- Drop Cairo patch
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Apr 13 2009 Petr Machata <pmachata@redhat.com> - 2009f-1
|
|
|
a4e53d |
- Upstream 2009f
|
|
|
a4e53d |
- Pakistan will observe DST between 2009-04-15 and (probably) 2009-11-01
|
|
|
a4e53d |
- Drop Pakistan patch
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Apr 13 2009 Petr Machata <pmachata@redhat.com> - 2009e-3
|
|
|
a4e53d |
- Bump up for rebuild
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Apr 13 2009 Petr Machata <pmachata@redhat.com> - 2009e-2
|
|
|
a4e53d |
- Pakistan will observe DST between 2009-04-15 and (probably) 2009-11-01
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Apr 6 2009 Petr Machata <pmachata@redhat.com> - 2009e-1
|
|
|
a4e53d |
- Upstream 2009e
|
|
|
a4e53d |
- Historical changes for Jordan
|
|
|
a4e53d |
- Palestine will start DST on 2009-03-26 and end 2009-09-27
|
|
|
a4e53d |
- Egypt ends DST on 2009-09-24
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Mar 23 2009 Petr Machata <pmachata@redhat.com> - 2009d-1
|
|
|
a4e53d |
- Upstream 2009d
|
|
|
a4e53d |
- Morocco will observe DST from 2009-06-01 00:00 to 2009-08-21 00:00
|
|
|
a4e53d |
- Tunisia will not observe DST this year.
|
|
|
a4e53d |
- Syria will start DST on 2009-03-27 00:00 this year
|
|
|
a4e53d |
- Cuba will start DST on midnight between 2009-03-07 and 2009-03-08
|
|
|
a4e53d |
- Province of San Luis, Argentina, went to UTC-04:00 on 2009-03-15
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2009a-2
|
|
|
a4e53d |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
a4e53d |
|
|
|
a4e53d |
* Fri Jan 23 2009 Petr Machata <pmachata@redhat.com> - 2009a-1
|
|
|
a4e53d |
- Upstream 2009a
|
|
|
a4e53d |
- Fix Asia/Kathmandu spelling
|
|
|
a4e53d |
- Historical timestamps for Switzerland and Cuba
|
|
|
a4e53d |
- DST update for America/Resolute
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Oct 30 2008 Petr Machata <pmachata@redhat.com> - 2008i-1
|
|
|
a4e53d |
- Upstream 2008i
|
|
|
a4e53d |
- Updates for Argentina: Drop DST in zones America/Argentina/Jujuy,
|
|
|
a4e53d |
La_Rioja, San_Juan, Catamarca, Mendoza, Rio_Gallegos, Ushuaia; new
|
|
|
a4e53d |
zone America/Argentina/Salta (for provinces SA, LP, NQ, RN).
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Oct 13 2008 Petr Machata <pmachata@redhat.com> - 2008h-1
|
|
|
a4e53d |
- Upstream 2008h
|
|
|
a4e53d |
- Fix exact DST transition hour for Mauritius
|
|
|
a4e53d |
- Syria will leave the period of DST on Nov 1
|
|
|
a4e53d |
- Fix coordinates of Pacific/Niue
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Oct 7 2008 Petr Machata <pmachata@redhat.com> - 2008g-1
|
|
|
a4e53d |
- Upstream 2008g
|
|
|
a4e53d |
- Fixed future DST transitions for Brazil
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Sep 16 2008 Petr Machata <pmachata@redhat.com> - 2008f-1
|
|
|
a4e53d |
- Upstream 2008f
|
|
|
a4e53d |
- Changes for Mauritius (extends DST to years to come)
|
|
|
a4e53d |
- Palestine changes clocks for the duration of Ramadan
|
|
|
a4e53d |
- Argentina will start DST on Sunday October 19, 2008
|
|
|
a4e53d |
- Brazil will start DST on 2008-10-19
|
|
|
a4e53d |
- Drop Pakistan and Morocco patches
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Aug 28 2008 Petr Machata <pmachata@redhat.com> - 2008e-2
|
|
|
a4e53d |
- Pakistan DST is scheduled until Oct/31
|
|
|
a4e53d |
- Morocco DST is scheduled until Aug/31
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Aug 12 2008 Petr Machata <pmachata@redhat.com> - 2008e-1
|
|
|
a4e53d |
- Upstream 2008e
|
|
|
a4e53d |
- Changes for Mauritius
|
|
|
a4e53d |
- Leap second coverage for 31/Dec 2008
|
|
|
a4e53d |
- Corrections of historical dates
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Jul 8 2008 Petr Machata <pmachata@redhat.com> - 2008d-1
|
|
|
a4e53d |
- Upstream 2008d
|
|
|
a4e53d |
- Changes for Brazil and Mauritius
|
|
|
a4e53d |
|
|
|
c5ab3f |
* Fri May 30 2008 Petr Machata <pmachata@redhat.com> - 2008c-1
|
|
|
a4e53d |
- Upstream 2008c
|
|
|
a4e53d |
- Mongolia changes zone
|
|
|
a4e53d |
- Pakistan DST is scheduled until Sep/1, instead of Aug/31
|
|
|
a4e53d |
- Drop Morocco and Pakistan patches that are superseded by upstream
|
|
|
a4e53d |
- Fix a typo in Java subpackage name
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue May 27 2008 Petr Machata <pmachata@redhat.com> - 2008b-3
|
|
|
a4e53d |
- Morocco introduces DST
|
|
|
a4e53d |
|
|
|
a4e53d |
* Fri May 23 2008 Petr Machata <pmachata@redhat.com> - 2008b-2
|
|
|
a4e53d |
- Pakistan introduces DST
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Mar 26 2008 Petr Machata <pmachata@redhat.com> - 2008b-1
|
|
|
a4e53d |
- Upstream 2008b
|
|
|
a4e53d |
- DST changes for Syria, Cuba; Iraq abandons DST
|
|
|
a4e53d |
- Saigon zone renamed Ho_Chi_Minh; backward link provided
|
|
|
a4e53d |
- Add America/Argentina/San_Luis information
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Mar 4 2008 Petr Machata <pmachata@redhat.com> - 2007k-2
|
|
|
a4e53d |
- Chile moves DST to 29/Mar
|
|
|
a4e53d |
- Related: #435959
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Jan 3 2008 Petr Machata <pmachata@redhat.com> - 2007k-1
|
|
|
a4e53d |
- Upstream 2007k
|
|
|
a4e53d |
- Argentina readopted the daylight saving time
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Dec 4 2007 Petr Machata <pmachata@redhat.com> - 2007j-1
|
|
|
a4e53d |
- Upstream 2007j
|
|
|
a4e53d |
- New links America/St_Barthelemy and America/Marigot
|
|
|
a4e53d |
- Venezuela is changing their clocks on December 9 at 03:00
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Nov 5 2007 Petr Machata <pmachata@redhat.com> - 2007i-1
|
|
|
a4e53d |
- Upstream 2007i
|
|
|
a4e53d |
- Syria DST will take place at Midnight between Thursday and Friday.
|
|
|
a4e53d |
- Cuba will end DST on the last Sunday of October.
|
|
|
a4e53d |
- Update tst-timezone.c from glibc CVS
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Oct 1 2007 Petr Machata <pmachata@redhat.com> - 2007h-1
|
|
|
a4e53d |
- Upstream 2007h
|
|
|
a4e53d |
- Brazil will observe DST from 2007-10-14 to 2008-02-17
|
|
|
a4e53d |
- Egypt and Gaza switched earlier than we expected
|
|
|
a4e53d |
- Iran will resume DST next year
|
|
|
a4e53d |
- Venezuela is scheduled to change TZ to -4:30 on January 1
|
|
|
a4e53d |
|
|
|
c5ab3f |
* Tue Sep 25 2007 Keith Seitz <keiths@redhat.com> - 2007g-2
|
|
|
a4e53d |
- Add support for building java's zoneinfo files in new
|
|
|
a4e53d |
tzdata-java RPM.
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Aug 22 2007 Petr Machata <pmachata@redhat.com> - 2007g-1
|
|
|
a4e53d |
- Fix licensing tag.
|
|
|
a4e53d |
- Upstream 2007g
|
|
|
a4e53d |
- Egypt switches the September 7, not September 28
|
|
|
a4e53d |
- Daviess, Dubous, Knox, Martin, and Pike Counties, Indiana, switch
|
|
|
a4e53d |
from central to eastern time in November
|
|
|
a4e53d |
- South Australia, Tasmania, Victoria, New South Wales and Lord Howe
|
|
|
a4e53d |
Island are changing their DST rules effective next year
|
|
|
a4e53d |
- Sync several Antarctic station's rules with the New Zealand
|
|
|
a4e53d |
- leapseconds contain changes from the most recent IERS bulletin
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed May 9 2007 Petr Machata <pmachata@redhat.com> - 2007f-1
|
|
|
a4e53d |
- Upstream 2007f
|
|
|
a4e53d |
- New Zealand is extending DST, starting later this year.
|
|
|
a4e53d |
- Haiti no longer observes DST.
|
|
|
a4e53d |
- The Turks and Caicos switch at 02:00, not at 00:00, and have
|
|
|
a4e53d |
adopted US DST rules.
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Apr 3 2007 Petr Machata <pmachata@redhat.com> - 2007e-1
|
|
|
a4e53d |
- Upstream 2007e
|
|
|
a4e53d |
- Syria switched to summer time at Mar/29.
|
|
|
a4e53d |
- Honduras will not enter DST this year.
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Mar 21 2007 Petr Machata <pmachata@redhat.com> - 2007d-1
|
|
|
a4e53d |
- Upstream 2007d
|
|
|
a4e53d |
- Mongolia has abolished DST.
|
|
|
a4e53d |
- Turkey will use EU rules this year, changing at 01:00 UTC rather
|
|
|
a4e53d |
than 01:00 standard time.
|
|
|
a4e53d |
- Cuba observed DST starting Sunday.
|
|
|
a4e53d |
- Resolute, Nunavut switched from Central to Eastern time last
|
|
|
a4e53d |
November.
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Feb 26 2007 Petr Machata <pmachata@redhat.com> - 2007c-1
|
|
|
a4e53d |
- Upstream 2007c
|
|
|
a4e53d |
- Pulaski County, Indiana, switched back to eastern time.
|
|
|
a4e53d |
- Turkey switches at 01:00 standard time, not at 01:00 UTC.
|
|
|
a4e53d |
- Upstream 2007b
|
|
|
a4e53d |
- Changes to the commentary in "leapseconds".
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Feb 7 2007 Petr Machata <pmachata@redhat.com> - 2007a-2
|
|
|
a4e53d |
- tidy up the specfile per rpmlint comments
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Jan 18 2007 Petr Machata <pmachata@redhat.com> - 2007a-1
|
|
|
a4e53d |
- Upstream 2007a
|
|
|
a4e53d |
- Updates to Bahamas, they will be in sync with 2007 US DST change
|
|
|
a4e53d |
- New zone Australia/Eucla
|
|
|
a4e53d |
- Africa/Asmera renamed to Africa/Asmara, link created
|
|
|
a4e53d |
- Atlantic/Faeroe renamed to Atlantic/Faroe, link created
|
|
|
a4e53d |
- Packaging
|
|
|
a4e53d |
- Adding BuildRequires: glibc-common >= 2.5.90-7 to build tzdata
|
|
|
a4e53d |
with extended 64-bit format necessary for dates beyond 2037
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Nov 29 2006 Petr Machata <pmachata@redhat.com> - 2006p-1
|
|
|
a4e53d |
- Upstream 2006p
|
|
|
a4e53d |
- Official version of Western Australia DST trial changes
|
|
|
a4e53d |
- Latitude/longitude changes for Europe/Jersey and Europe/Podgorica
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Nov 22 2006 Petr Machata <pmachata@redhat.com> - 2006o-2
|
|
|
a4e53d |
- Patch for Western Australia DST trial
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Nov 9 2006 Petr Machata <pmachata@redhat.com> - 2006o-1
|
|
|
a4e53d |
- Cuba has ended its three years of permanent DST.
|
|
|
a4e53d |
- Updates in historical timestamps for Chile.
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Oct 10 2006 Petr Machata <pmachata@redhat.com> - 2006m-2
|
|
|
a4e53d |
- Proposed upstream patch (#210058)
|
|
|
a4e53d |
- Jordan will switch to winter time on October 27, not September 29
|
|
|
a4e53d |
- Brazil's DST this year is the first Sunday in November to the last
|
|
|
a4e53d |
Sunday in February. (Thanks to Frederico A. C. Neves.)
|
|
|
a4e53d |
- ISO 3166 codes for Serbia and Montenegro, zone Europe/Podgorica
|
|
|
a4e53d |
- Commentary and past timestamps changes
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Oct 3 2006 Petr Machata <pmachata@redhat.com> - 2006m-1
|
|
|
a4e53d |
- Upstream 2006m:
|
|
|
a4e53d |
- Adjustments for Egypt, Palestine, Uruguay
|
|
|
a4e53d |
- Better description of `until' field in zic (8) manpage
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Sep 21 2006 Petr Machata <pmachata@redhat.com> - 2006l-1
|
|
|
a4e53d |
- Upstream 2006k, 2006l:
|
|
|
a4e53d |
- Adjustments for Egypt, Palestine, Cuba, Honduras
|
|
|
a4e53d |
- Documentation changes
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Aug 22 2006 Petr Machata <pmachata@redhat.com> - 2006j-1
|
|
|
a4e53d |
- Upstream 2006j
|
|
|
a4e53d |
- Honduras stopped observing DST on Monday at 00:00
|
|
|
a4e53d |
- America/Bermuda will follow the US's lead next year
|
|
|
a4e53d |
- America/Moncton will use US-style rules next year
|
|
|
a4e53d |
- New Zone America/Blanc-Sablon, for Canadians who observe AST all
|
|
|
a4e53d |
year
|
|
|
a4e53d |
- New zone: America/Atikokan instead of America/Coral_Harbour
|
|
|
a4e53d |
- New zones: Europe/Jersey, Europe/Guernsey, Europe/Isle_of_Man
|
|
|
a4e53d |
- Historical changes
|
|
|
a4e53d |
- Commentary updates
|
|
|
a4e53d |
- Upstream 2006i
|
|
|
a4e53d |
- localtime.c fixes
|
|
|
a4e53d |
- Upstream 2006h
|
|
|
a4e53d |
- zic leapsecond fix
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2006g-1.1
|
|
|
a4e53d |
- rebuild
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu May 11 2006 Petr Machata <pmachata@redhat.com> - 2006g-1
|
|
|
a4e53d |
- Honduras chose to follow Guatemala and will observe DST May/6 to Sep/2
|
|
|
a4e53d |
- Nicaragua updates
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue May 2 2006 Petr Machata <pmachata@redhat.com> - 2006f-1
|
|
|
a4e53d |
- Upstream 2006f
|
|
|
a4e53d |
- America/Guatemala observes DST between Apr/30 and Oct/1
|
|
|
a4e53d |
- Historical changes for Nicaragua
|
|
|
a4e53d |
- Update of America/Indiana/Vincennes in zone table
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Apr 20 2006 Petr Machata <pmachata@redhat.com> - 2006d-1
|
|
|
a4e53d |
- Upstream 2006d
|
|
|
a4e53d |
- Haiti observes DST
|
|
|
a4e53d |
- Sri Lanka change actually took effect Apr/15
|
|
|
a4e53d |
- All Canada is now scheduled for 2007 US DST rules
|
|
|
a4e53d |
- Some historical fixes
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Apr 6 2006 Petr Machata <pmachata@redhat.com> - 2006c-1
|
|
|
a4e53d |
- Upstream 2006c
|
|
|
a4e53d |
- Time-related changes:
|
|
|
a4e53d |
- dozens of historical and commentary changes
|
|
|
a4e53d |
- Iran stopped observing DST
|
|
|
a4e53d |
- Sri Lanka switches from UTC+6 to UTC+5:30
|
|
|
a4e53d |
- America/Thule and America/Edmonton will adopt new US rules,
|
|
|
a4e53d |
starting 2007
|
|
|
a4e53d |
- Tunisia is adopting regular DST
|
|
|
a4e53d |
- Code:
|
|
|
a4e53d |
- asctime.c: Chages in format strings to silent gcc warnings
|
|
|
a4e53d |
- removing K&R notation from function signatures
|
|
|
a4e53d |
- few fixes across the code
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Mar 16 2006 Petr Machata <pmachata@redhat.com> - 2006b-2
|
|
|
a4e53d |
- Patch for Sri Lanka time zone change (#184514)
|
|
|
a4e53d |
|
|
|
c5ab3f |
* Wed Feb 22 2006 Petr Machata <pmachata@redhat.com> 2006b-1
|
|
|
a4e53d |
- Upstream 2006b:
|
|
|
a4e53d |
- using tz64code version, as 32 is legacy according to tzdata ML
|
|
|
a4e53d |
- new manual pages for ctime, strftime, tzset
|
|
|
a4e53d |
- some source code reorganizations
|
|
|
a4e53d |
- no timezone/dst rule updates
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Feb 02 2006 Petr Machata <pmachata@redhat.com> 2006a-2
|
|
|
a4e53d |
- Small changes in tst-timezone.c
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Feb 02 2006 Petr Machata <pmachata@redhat.com> 2006a-1
|
|
|
a4e53d |
- Upstream 2006a:
|
|
|
a4e53d |
- private.h(scheck): changing char* to char const*
|
|
|
a4e53d |
- Rule changes for Palestine, zone changes for Indiana/US, both
|
|
|
a4e53d |
changes for Canada.
|
|
|
a4e53d |
- Many related doc changes.
|
|
|
a4e53d |
- Naming scheme in spec file doesn't use %%{name}, but tzdata.
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Jan 12 2006 Petr Machata <pmachata@redhat.com> 2005r-3
|
|
|
a4e53d |
- 2005r-3
|
|
|
a4e53d |
- Meta changes. Renaming tzdata.tar.bz2 file to tzdata$ver-base,
|
|
|
a4e53d |
so that it won't clash across updates.
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Jan 5 2006 Petr Machata <pmachata@redhat.com> 2005r-2
|
|
|
a4e53d |
- 2005r
|
|
|
a4e53d |
- Zones EST, MST, HST, EST5EDT, CST6CDT, MST7MDT, PST8PDT moved to
|
|
|
a4e53d |
northamerica to guard against old files with obsolete information
|
|
|
a4e53d |
being left in the time zone binary directory.
|
|
|
a4e53d |
- Changes for countries that are supposed to join 2007 US DST
|
|
|
a4e53d |
change. This includes most of Canada, however entries already in
|
|
|
a4e53d |
the database (Alberta, British Columbia, Newfoundland, Northwest
|
|
|
a4e53d |
Territories, and Yukon) were left alone for the time being.
|
|
|
a4e53d |
- Fixes in zdump.c (abbrok): conditions are chained, and the string
|
|
|
a4e53d |
is checked for emptiness.
|
|
|
a4e53d |
|
|
|
a4e53d |
* Sat Dec 17 2005 Jakub Jelinek <jakub@redhat.com> 2005q-2
|
|
|
a4e53d |
- 2005q
|
|
|
a4e53d |
- changes for Georgia, Azerbaijan, Jordan, Palestine, Cuba, Nicaragua
|
|
|
a4e53d |
- SystemV timezone changes
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Nov 2 2005 Jakub Jelinek <jakub@redhat.com> 2005n-2
|
|
|
a4e53d |
- 2005n
|
|
|
a4e53d |
- changes for Kyrgyzstan and Uruguay
|
|
|
a4e53d |
- fix a typo in the Makefile (used TZDATA env var instead of TZDIR during
|
|
|
a4e53d |
make check), update tst-timezone.c from glibc CVS (#172102)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Sep 6 2005 Jakub Jelinek <jakub@redhat.com> 2005m-2
|
|
|
a4e53d |
- 2005m
|
|
|
a4e53d |
- changes for USA (extending DST by 4 weeks since 2007), Tunisia,
|
|
|
a4e53d |
Australia, Kazakhstan
|
|
|
a4e53d |
- historical timezone data changes for Japan, Poland, Northern Ireland and
|
|
|
a4e53d |
Mali
|
|
|
a4e53d |
- timezone name change for East Timor
|
|
|
a4e53d |
|
|
|
a4e53d |
* Fri Jul 15 2005 Jakub Jelinek <jakub@redhat.com> 2005k-2
|
|
|
a4e53d |
- 2005k
|
|
|
a4e53d |
- leap seconds update
|
|
|
a4e53d |
|
|
|
a4e53d |
* Sat Apr 30 2005 Jakub Jelinek <jakub@redhat.com> 2005i-2
|
|
|
a4e53d |
- 2005i
|
|
|
a4e53d |
- updates for Iran, Haiti and Nicaragua
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Apr 4 2005 Jakub Jelinek <jakub@redhat.com> 2005h-2
|
|
|
a4e53d |
- 2005h
|
|
|
a4e53d |
- fixes for Kazakhstan
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Mar 17 2005 Jakub Jelinek <jakub@redhat.com> 2005g-2
|
|
|
a4e53d |
- 2005g
|
|
|
a4e53d |
- fixes for Uruguay
|
|
|
a4e53d |
- include README and Theory from tzcode tarball in %%{_docdir};
|
|
|
a4e53d |
Theory includes a good summary of how the timezone data files
|
|
|
a4e53d |
are supposed to be named
|
|
|
a4e53d |
|
|
|
a4e53d |
* Tue Mar 1 2005 Jakub Jelinek <jakub@redhat.com> 2005f-2
|
|
|
a4e53d |
- 2005f
|
|
|
a4e53d |
- more updates for Israel, updates for Azerbaijan
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Jan 26 2005 Jakub Jelinek <jakub@redhat.com> 2005c-3
|
|
|
a4e53d |
- 2005c
|
|
|
a4e53d |
- updates for Israel and Paraguay
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Nov 29 2004 Jakub Jelinek <jakub@redhat.com> 2004g-1
|
|
|
a4e53d |
- 2004g (#141107)
|
|
|
a4e53d |
- updates for Cuba
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Oct 11 2004 Jakub Jelinek <jakub@redhat.com> 2004e-2
|
|
|
a4e53d |
- 2004e (#135194)
|
|
|
a4e53d |
- updates for Brazil, Uruguay and Argentina
|
|
|
a4e53d |
|
|
|
a4e53d |
* Wed Aug 4 2004 Jakub Jelinek <jakub@redhat.com> 2004b-2
|
|
|
a4e53d |
- 2004b
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Oct 6 2003 Jakub Jelinek <jakub@redhat.com> 2003d-1
|
|
|
a4e53d |
- 2003d
|
|
|
a4e53d |
|
|
|
a4e53d |
* Thu Sep 25 2003 Jakub Jelinek <jakub@redhat.com> 2003c-1
|
|
|
a4e53d |
- 2003c
|
|
|
a4e53d |
- updates for Brazil (#104840)
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2003a-2
|
|
|
a4e53d |
- rebuilt
|
|
|
a4e53d |
|
|
|
a4e53d |
* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2003a-1
|
|
|
a4e53d |
- initial package
|