2004-09-09 13:40:41 +00:00
|
|
|
Summary: Timezone data
|
|
|
|
Name: tzdata
|
2010-03-25 14:12:27 +00:00
|
|
|
Version: 2010f
|
|
|
|
%define tzdata_version 2010f
|
|
|
|
%define tzcode_version 2010f
|
2010-03-25 14:41:31 +00:00
|
|
|
Release: 2%{?dist}
|
2008-01-07 15:32:59 +00:00
|
|
|
License: Public Domain
|
2004-09-09 13:40:41 +00:00
|
|
|
Group: System Environment/Base
|
2007-02-07 19:47:13 +00:00
|
|
|
URL: ftp://elsie.nci.nih.gov/pub/
|
2008-01-04 14:25:03 +00:00
|
|
|
|
|
|
|
# The tzdata-base-0.tar.bz2 is a simple building infrastructure and
|
2008-10-13 08:51:07 +00:00
|
|
|
# a test suite. It is occasionally updated from glibc sources, and as
|
2008-01-07 15:32:59 +00:00
|
|
|
# such is under LGPLv2+, but none of this ever gets to be part of
|
|
|
|
# final zoneinfo files.
|
2006-03-22 09:45:45 +00:00
|
|
|
Source0: tzdata-base-0.tar.bz2
|
2008-01-07 15:32:59 +00:00
|
|
|
# These are official upstream.
|
2006-09-21 14:03:39 +00:00
|
|
|
Source1: ftp://elsie.nci.nih.gov/pub/tzdata%{tzdata_version}.tar.gz
|
|
|
|
Source2: ftp://elsie.nci.nih.gov/pub/tzcode%{tzcode_version}.tar.gz
|
2009-09-23 10:40:40 +00:00
|
|
|
# __decl_patches
|
2010-03-25 14:12:27 +00:00
|
|
|
Patch1: tzdata-2010f-g.patch
|
2009-09-23 10:40:40 +00:00
|
|
|
# __end
|
2008-01-04 14:25:03 +00:00
|
|
|
|
2007-02-07 19:47:13 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildRequires: gawk, glibc, perl
|
2008-01-04 14:25:03 +00:00
|
|
|
BuildRequires: java-devel
|
2007-01-18 13:34:09 +00:00
|
|
|
BuildRequires: glibc-common >= 2.5.90-7
|
2004-09-09 13:40:41 +00:00
|
|
|
Conflicts: glibc-common <= 2.3.2-63
|
|
|
|
BuildArchitectures: noarch
|
|
|
|
|
|
|
|
%description
|
|
|
|
This package contains data files with rules for various timezones around
|
|
|
|
the world.
|
|
|
|
|
2007-09-25 11:36:06 +00:00
|
|
|
%package java
|
2008-05-30 10:33:14 +00:00
|
|
|
Summary: Timezone data for Java
|
2007-09-25 11:36:06 +00:00
|
|
|
Group: System Environment/Base
|
|
|
|
Source3: javazic.tar.gz
|
|
|
|
Patch0: javazic-fixup.patch
|
|
|
|
|
|
|
|
%description java
|
|
|
|
This package contains timezone information for use by Java runtimes.
|
|
|
|
|
|
|
|
|
2004-09-09 13:40:41 +00:00
|
|
|
%prep
|
2007-02-07 19:47:13 +00:00
|
|
|
%setup -q -n tzdata
|
2006-09-21 14:03:39 +00:00
|
|
|
mkdir tzdata%{tzdata_version}
|
|
|
|
tar xzf %{SOURCE1} -C tzdata%{tzdata_version}
|
|
|
|
mkdir tzcode%{tzcode_version}
|
|
|
|
tar xzf %{SOURCE2} -C tzcode%{tzcode_version}
|
2004-09-09 13:40:41 +00:00
|
|
|
sed -e 's|@objpfx@|'`pwd`'/obj/|' \
|
|
|
|
-e 's|@datadir@|%{_datadir}|' \
|
|
|
|
Makeconfig.in > Makeconfig
|
2009-09-23 10:40:40 +00:00
|
|
|
# __apply_patches
|
2010-03-25 14:41:31 +00:00
|
|
|
%patch1 -p0
|
2009-09-23 10:40:40 +00:00
|
|
|
# __end
|
2006-02-09 13:19:31 +00:00
|
|
|
|
2007-09-25 11:36:06 +00:00
|
|
|
mkdir javazic
|
|
|
|
tar zxf %{SOURCE3} -C javazic
|
|
|
|
pushd javazic
|
|
|
|
%patch0
|
|
|
|
|
|
|
|
# Hack alert! sun.tools may be defined and installed in the
|
|
|
|
# VM. In order to guarantee that we are using IcedTea/OpenJDK
|
|
|
|
# for creating the zoneinfo files, rebase all the packages
|
|
|
|
# from "sun." to "rht.". Unfortunately, gcj does not support
|
|
|
|
# any of the -Xclasspath options, so we must go this route
|
|
|
|
# to ensure the greatest compatibility.
|
|
|
|
mv sun rht
|
2008-03-26 13:31:04 +00:00
|
|
|
find . -type f -name '*.java' -print0 \
|
|
|
|
| xargs -0 -- sed -i -e 's:sun\.tools\.:rht.tools.:g' \
|
|
|
|
-e 's:sun\.util\.:rht.util.:g'
|
2007-09-25 11:36:06 +00:00
|
|
|
popd
|
|
|
|
|
2006-02-09 13:19:31 +00:00
|
|
|
%build
|
2004-09-09 13:40:41 +00:00
|
|
|
make
|
2006-09-21 14:03:39 +00:00
|
|
|
grep -v tz-art.htm tzcode%{tzcode_version}/tz-link.htm > tzcode%{tzcode_version}/tz-link.html
|
2004-09-09 13:40:41 +00:00
|
|
|
|
2007-09-25 11:36:06 +00:00
|
|
|
pushd javazic
|
|
|
|
javac -source 1.5 -target 1.5 -classpath . `find . -name \*.java`
|
|
|
|
popd
|
2007-11-05 12:43:17 +00:00
|
|
|
pushd tzdata%{tzdata_version}
|
2007-09-25 11:36:06 +00:00
|
|
|
java -classpath ../javazic/ rht.tools.javazic.Main -V %{version} \
|
|
|
|
-d ../zoneinfo/java \
|
|
|
|
africa antarctica asia australasia europe northamerica pacificnew \
|
|
|
|
southamerica backward etcetera solar87 solar88 solar89 systemv \
|
|
|
|
../javazic/tzdata_jdk/gmt ../javazic/tzdata_jdk/jdk11_backward
|
|
|
|
popd
|
|
|
|
|
2004-09-09 13:40:41 +00:00
|
|
|
%install
|
2007-02-07 19:47:13 +00:00
|
|
|
rm -fr $RPM_BUILD_ROOT
|
|
|
|
sed -i 's|@install_root@|%{buildroot}|' Makeconfig
|
2004-09-09 13:40:41 +00:00
|
|
|
make install
|
2006-03-22 09:45:45 +00:00
|
|
|
|
2007-09-25 11:36:06 +00:00
|
|
|
cp -pr zoneinfo/java $RPM_BUILD_ROOT%{_datadir}/javazi
|
|
|
|
|
2006-03-22 09:45:45 +00:00
|
|
|
%check
|
2004-09-09 13:40:41 +00:00
|
|
|
echo ====================TESTING=========================
|
|
|
|
make check
|
|
|
|
echo ====================TESTING END=====================
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_datadir}/zoneinfo
|
2006-09-21 14:03:39 +00:00
|
|
|
%doc tzcode%{tzcode_version}/README
|
|
|
|
%doc tzcode%{tzcode_version}/Theory
|
|
|
|
%doc tzcode%{tzcode_version}/tz-link.html
|
2004-09-09 13:40:41 +00:00
|
|
|
|
2007-09-25 11:36:06 +00:00
|
|
|
%files java
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_datadir}/javazi
|
|
|
|
|
2004-09-09 13:40:41 +00:00
|
|
|
%changelog
|
2010-03-25 14:41:31 +00:00
|
|
|
* Thu Mar 25 2010 Petr Machata <pmachata@redhat.com> - 2010f-2
|
|
|
|
- Fix the path in tzdata-2010f-g.patch
|
|
|
|
|
2010-03-25 14:12:27 +00:00
|
|
|
* Thu Mar 25 2010 Petr Machata <pmachata@redhat.com> - 2010f-1
|
|
|
|
- Upstream 2010f:
|
|
|
|
- Changes to Australian stations in Antarctica
|
|
|
|
- Correct 2010 Samoa DST start date
|
|
|
|
- New zone Antarctica/Macquarie
|
|
|
|
- Change Syria DST start from last Friday in March to first Friday
|
|
|
|
in April in 2010 and forward
|
|
|
|
- Upstream 2010g proposal (tzdata-2010f-g.patch):
|
|
|
|
- No Bangladesh DST in 2010 and forward.
|
|
|
|
- Gaza DST starts last Saturday in March at 12:01 a.m. in 2010 and forward
|
|
|
|
- Kamchatka and Anadyr change to Moscow+8 on 2010-03-28
|
|
|
|
- Samara changes to Moscow+0 on 2010-03-28
|
|
|
|
- Related zone.tab updates
|
|
|
|
|
|
|
|
|
2010-03-09 13:16:04 +00:00
|
|
|
* Tue Mar 09 2010 Petr Machata <pmachata@redhat.com> - 2010e-1
|
|
|
|
- Upstream 2010d
|
|
|
|
- The DST change in Bangladesh takes place a minute earlier
|
|
|
|
- Fiji to end DST on 2010-03-28 at 03:00, about a month earlier
|
|
|
|
- Samoa to observe DST this year; they didn't observe DST last year
|
|
|
|
- DST in Chile extended to 3 April
|
|
|
|
- Upstream 2010e:
|
|
|
|
- Fix a typo in Bangladesh DST rule
|
|
|
|
|
2010-03-01 15:10:27 +00:00
|
|
|
* Mon Mar 01 2010 Petr Machata <pmachata@redhat.com> - 2010c-1
|
|
|
|
- Upstream 2010a
|
|
|
|
- Source code cleanups
|
2010-03-02 15:53:07 +00:00
|
|
|
- Historical timestamps for Bangladesh
|
2010-03-01 15:10:27 +00:00
|
|
|
- Upstream 2010b
|
|
|
|
- Northern Mexico's border cities share the DST schedule with the
|
|
|
|
United States
|
|
|
|
- Upstream 2010c
|
|
|
|
- Paraguay DST now in effect from 2nd Sunday of April to 1st Sunday
|
|
|
|
of October
|
|
|
|
|
2010-01-04 14:20:47 +00:00
|
|
|
* Mon Jan 04 2010 Petr Machata <pmachata@redhat.com> - 2009u-1
|
|
|
|
- Upstream 2009p
|
|
|
|
- Argentina does not enter DST on October 18
|
|
|
|
- San Luis switched from UTC-4 to UTC-3 on October 11th
|
|
|
|
- Upstream 2009q
|
|
|
|
- Change DST end in Syria from November 1 to last Friday in October
|
|
|
|
- Changes to past Hong Kong transitions
|
|
|
|
- Kemerovo oblast' in Russia will change current time zone on March 28, 2010.
|
|
|
|
Asia/Novokuznetsk is the new time zone name
|
|
|
|
- Upstream 2009r
|
|
|
|
- Changes to local times of three Australian research stations in Antarctica
|
|
|
|
- Upstream 2009s
|
|
|
|
- Fiji plans to re-introduce DST from November 29th 2009 to April 25th 2010
|
|
|
|
- Upstream 2009u
|
|
|
|
- Bangladesh changed their clock back to Standard Time on December 31, 2009
|
|
|
|
- Dropped tzdata-2009o-argentinas.patch
|
|
|
|
|
2009-10-21 14:37:39 +00:00
|
|
|
* Wed Oct 21 2009 Petr Machata <pmachata@redhat.com> - 2009o-2
|
|
|
|
- San Luis (Argentina) entered DST on October 11 (tzdata-2009o-argentinas.patch)
|
|
|
|
|
2009-10-19 15:33:49 +00:00
|
|
|
* Mon Oct 19 2009 Petr Machata <pmachata@redhat.com> - 2009o-1
|
|
|
|
- Upstream 2009o
|
|
|
|
- Bangladesh won't go back to Standard Time from October 1, 2009
|
|
|
|
- Pakistan leaves DST on October 1, 2009
|
|
|
|
- Dropped tzdata-2009m-karachi.patch
|
|
|
|
- Argentina does not enter DST on October 18 (tzdata-2009o-argentinas.patch)
|
|
|
|
|
2009-09-23 10:40:40 +00:00
|
|
|
* Tue Sep 22 2009 Petr Machata <pmachata@redhat.com> - 2009m-2
|
|
|
|
- Add markers for autoupdate of spec file
|
|
|
|
- Pakistan leaves the period of DST on October 1 (tzdata-2009m-karachi.patch)
|
|
|
|
|
2009-09-16 11:58:55 +00:00
|
|
|
* Wed Sep 16 2009 Petr Machata <pmachata@redhat.com> - 2009m-1
|
|
|
|
- Upstream 2009m
|
|
|
|
- Palestine will will revert back to winter time on Friday, 2009-09-04
|
|
|
|
- Samoa passed the DST Bill that fixes DST dates for 2009 and 2010
|
|
|
|
- Drop Egypt patch
|
|
|
|
|
2009-08-13 11:48:06 +00:00
|
|
|
* Thu Aug 13 2009 Petr Machata <pmachata@redhat.com> - 2009k-3
|
|
|
|
- Egypt starts winter time on August 21.
|
|
|
|
|
2009-07-27 06:25:49 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2009k-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-20 15:38:27 +00:00
|
|
|
* Mon Jul 20 2009 Petr Machata <pmachata@redhat.com> - 2009k-1
|
|
|
|
- Upstream 2009k
|
|
|
|
- Mauritius will not continue to observe DST the coming summer
|
2009-08-13 11:48:06 +00:00
|
|
|
- Arbitrarily end DST at the end of 2009 so that a POSIX-style time
|
2009-07-20 15:38:27 +00:00
|
|
|
zone string can appear in the Dhaka binary file
|
|
|
|
|
2009-06-18 12:18:00 +00:00
|
|
|
* Thu Jun 18 2009 Petr Machata <pmachata@redhat.com> - 2009j-1
|
|
|
|
- Upstream 2009j
|
|
|
|
- DST switch for Bangladesh will occur an hour earlier than was
|
|
|
|
thought.
|
|
|
|
|
2009-06-08 18:32:26 +00:00
|
|
|
* Mon Jun 8 2009 Petr Machata <pmachata@redhat.com> - 2009i-1
|
|
|
|
- Upstream 2009i
|
|
|
|
- Bangladesh introduces DST 2009-06-20
|
|
|
|
|
2009-05-26 15:00:19 +00:00
|
|
|
* Tue May 26 2009 Petr Machata <pmachata@redhat.com> - 2009h-2
|
2009-05-26 14:46:06 +00:00
|
|
|
- Upstream 2009h
|
|
|
|
- Convert use of 00:00 stamps to 24:00 of the previous day
|
|
|
|
- Clarify that the data is Public Domain
|
|
|
|
- Drop Cairo patch
|
|
|
|
|
2009-04-13 14:08:59 +00:00
|
|
|
* Mon Apr 13 2009 Petr Machata <pmachata@redhat.com> - 2009f-1
|
|
|
|
- Upstream 2009f
|
|
|
|
- Pakistan will observe DST between 2009-04-15 and (probably) 2009-11-01
|
|
|
|
- Drop Pakistan patch
|
|
|
|
|
2009-04-13 12:43:52 +00:00
|
|
|
* Mon Apr 13 2009 Petr Machata <pmachata@redhat.com> - 2009e-3
|
|
|
|
- Bump up for rebuild
|
|
|
|
|
2009-04-13 11:57:32 +00:00
|
|
|
* Mon Apr 13 2009 Petr Machata <pmachata@redhat.com> - 2009e-2
|
|
|
|
- Pakistan will observe DST between 2009-04-15 and (probably) 2009-11-01
|
|
|
|
|
|
|
|
* Mon Apr 6 2009 Petr Machata <pmachata@redhat.com> - 2009e-1
|
|
|
|
- Upstream 2009e
|
|
|
|
- Historical changes for Jordan
|
|
|
|
- Palestine will start DST on 2009-03-26 and end 2009-09-27
|
|
|
|
- Egypt ends DST on 2009-09-24
|
|
|
|
|
2009-03-23 14:24:13 +00:00
|
|
|
* Mon Mar 23 2009 Petr Machata <pmachata@redhat.com> - 2009d-1
|
|
|
|
- Upstream 2009d
|
|
|
|
- Morocco will observe DST from 2009-06-01 00:00 to 2009-08-21 00:00
|
|
|
|
- Tunisia will not observe DST this year.
|
|
|
|
- Syria will start DST on 2009-03-27 00:00 this year
|
|
|
|
- Cuba will start DST on midnight between 2009-03-07 and 2009-03-08
|
|
|
|
- Province of San Luis, Argentina, went to UTC-04:00 on 2009-03-15
|
|
|
|
|
2009-02-25 22:25:32 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2009a-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-01-23 11:44:44 +00:00
|
|
|
* Fri Jan 23 2009 Petr Machata <pmachata@redhat.com> - 2009a-1
|
|
|
|
- Upstream 2009a
|
|
|
|
- Fix Asia/Kathmandu spelling
|
|
|
|
- Historical timestamps for Switzerland and Cuba
|
|
|
|
- DST update for America/Resolute
|
|
|
|
|
2008-10-30 11:44:55 +00:00
|
|
|
* Thu Oct 30 2008 Petr Machata <pmachata@redhat.com> - 2008i-1
|
|
|
|
- Upstream 2008i
|
|
|
|
- Updates for Argentina: Drop DST in zones America/Argentina/Jujuy,
|
|
|
|
La_Rioja, San_Juan, Catamarca, Mendoza, Rio_Gallegos, Ushuaia; new
|
|
|
|
zone America/Argentina/Salta (for provinces SA, LP, NQ, RN).
|
|
|
|
|
2008-10-13 12:04:17 +00:00
|
|
|
* Mon Oct 13 2008 Petr Machata <pmachata@redhat.com> - 2008h-1
|
|
|
|
- Upstream 2008h
|
|
|
|
- Fix exact DST transition hour for Mauritius
|
|
|
|
- Syria will leave the period of DST on Nov 1
|
|
|
|
- Fix coordinates of Pacific/Niue
|
|
|
|
|
2008-10-07 08:37:25 +00:00
|
|
|
* Tue Oct 7 2008 Petr Machata <pmachata@redhat.com> - 2008g-1
|
|
|
|
- Upstream 2008g
|
|
|
|
- Fixed future DST transitions for Brazil
|
|
|
|
|
2008-09-16 11:00:15 +00:00
|
|
|
* Tue Sep 16 2008 Petr Machata <pmachata@redhat.com> - 2008f-1
|
|
|
|
- Upstream 2008f
|
|
|
|
- Changes for Mauritius (extends DST to years to come)
|
|
|
|
- Palestine changes clocks for the duration of Ramadan
|
|
|
|
- Argentina will start DST on Sunday October 19, 2008
|
|
|
|
- Brazil will start DST on 2008-10-19
|
|
|
|
- Drop Pakistan and Morocco patches
|
|
|
|
|
2008-08-28 17:14:02 +00:00
|
|
|
* Thu Aug 28 2008 Petr Machata <pmachata@redhat.com> - 2008e-2
|
|
|
|
- Pakistan DST is scheduled until Oct/31
|
|
|
|
- Morocco DST is scheduled until Aug/31
|
|
|
|
|
2008-08-12 08:48:54 +00:00
|
|
|
* Tue Aug 12 2008 Petr Machata <pmachata@redhat.com> - 2008e-1
|
|
|
|
- Upstream 2008e
|
|
|
|
- Changes for Mauritius
|
|
|
|
- Leap second coverage for 31/Dec 2008
|
|
|
|
- Corrections of historical dates
|
|
|
|
|
2008-07-08 11:36:24 +00:00
|
|
|
* Tue Jul 8 2008 Petr Machata <pmachata@redhat.com> - 2008d-1
|
|
|
|
- Upstream 2008d
|
|
|
|
- Changes for Brazil and Mauritius
|
|
|
|
|
2008-05-30 10:33:14 +00:00
|
|
|
* Wed May 30 2008 Petr Machata <pmachata@redhat.com> - 2008c-1
|
|
|
|
- Upstream 2008c
|
|
|
|
- Mongolia changes zone
|
|
|
|
- Pakistan DST is scheduled until Sep/1, instead of Aug/31
|
|
|
|
- Drop Morocco and Pakistan patches that are superseded by upstream
|
|
|
|
- Fix a typo in Java subpackage name
|
|
|
|
|
2008-05-27 15:29:42 +00:00
|
|
|
* Tue May 27 2008 Petr Machata <pmachata@redhat.com> - 2008b-3
|
|
|
|
- Morocco introduces DST
|
|
|
|
|
2008-05-23 17:07:27 +00:00
|
|
|
* Fri May 23 2008 Petr Machata <pmachata@redhat.com> - 2008b-2
|
|
|
|
- Pakistan introduces DST
|
|
|
|
|
2008-03-26 13:31:04 +00:00
|
|
|
* Wed Mar 26 2008 Petr Machata <pmachata@redhat.com> - 2008b-1
|
|
|
|
- Upstream 2008b
|
|
|
|
- DST changes for Syria, Cuba; Iraq abandons DST
|
|
|
|
- Saigon zone renamed Ho_Chi_Minh; backward link provided
|
|
|
|
- Add America/Argentina/San_Luis information
|
|
|
|
|
2008-03-05 15:55:13 +00:00
|
|
|
* Tue Mar 4 2008 Petr Machata <pmachata@redhat.com> - 2007k-2
|
|
|
|
- Chile moves DST to 29/Mar
|
|
|
|
- Related: #435959
|
|
|
|
|
2008-01-03 13:11:31 +00:00
|
|
|
* Thu Jan 3 2008 Petr Machata <pmachata@redhat.com> - 2007k-1
|
|
|
|
- Upstream 2007k
|
|
|
|
- Argentina readopted the daylight saving time
|
|
|
|
|
2007-12-04 09:52:45 +00:00
|
|
|
* Tue Dec 4 2007 Petr Machata <pmachata@redhat.com> - 2007j-1
|
|
|
|
- Upstream 2007j
|
|
|
|
- New links America/St_Barthelemy and America/Marigot
|
|
|
|
- Venezuela is changing their clocks on December 9 at 03:00
|
|
|
|
|
2007-11-05 12:32:02 +00:00
|
|
|
* Mon Nov 5 2007 Petr Machata <pmachata@redhat.com> - 2007i-1
|
|
|
|
- Upstream 2007i
|
|
|
|
- Syria DST will take place at Midnight between Thursday and Friday.
|
|
|
|
- Cuba will end DST on the last Sunday of October.
|
2007-11-05 16:43:38 +00:00
|
|
|
- Update tst-timezone.c from glibc CVS
|
2007-11-05 12:32:02 +00:00
|
|
|
|
2007-10-01 15:45:33 +00:00
|
|
|
* Mon Oct 1 2007 Petr Machata <pmachata@redhat.com> - 2007h-1
|
|
|
|
- Upstream 2007h
|
|
|
|
- Brazil will observe DST from 2007-10-14 to 2008-02-17
|
|
|
|
- Egypt and Gaza switched earlier than we expected
|
|
|
|
- Iran will resume DST next year
|
|
|
|
- Venezuela is scheduled to change TZ to -4:30 on January 1
|
|
|
|
|
2007-09-25 11:36:06 +00:00
|
|
|
* Thu Sep 25 2007 Keith Seitz <keiths@redhat.com> - 2007g-2
|
|
|
|
- Add support for building java's zoneinfo files in new
|
|
|
|
tzdata-java RPM.
|
|
|
|
|
- Upstream 2007g
- Egypt switches the September 7, not September 28
- Daviess, Dubous, Knox, Martin, and Pike Counties, Indiana, switch from
central to eastern time in November
- South Australia, Tasmania, Victoria, New South Wales and Lord Howe Island
are changing their DST rules effective next year
- Sync several Antarctic station's rules with the New Zealand
- leapseconds contain changes from the most recent IERS bulletin
2007-08-22 16:06:54 +00:00
|
|
|
* Wed Aug 22 2007 Petr Machata <pmachata@redhat.com> - 2007g-1
|
2007-08-16 11:30:27 +00:00
|
|
|
- Fix licensing tag.
|
- Upstream 2007g
- Egypt switches the September 7, not September 28
- Daviess, Dubous, Knox, Martin, and Pike Counties, Indiana, switch from
central to eastern time in November
- South Australia, Tasmania, Victoria, New South Wales and Lord Howe Island
are changing their DST rules effective next year
- Sync several Antarctic station's rules with the New Zealand
- leapseconds contain changes from the most recent IERS bulletin
2007-08-22 16:06:54 +00:00
|
|
|
- Upstream 2007g
|
|
|
|
- Egypt switches the September 7, not September 28
|
|
|
|
- Daviess, Dubous, Knox, Martin, and Pike Counties, Indiana, switch
|
|
|
|
from central to eastern time in November
|
|
|
|
- South Australia, Tasmania, Victoria, New South Wales and Lord Howe
|
|
|
|
Island are changing their DST rules effective next year
|
|
|
|
- Sync several Antarctic station's rules with the New Zealand
|
|
|
|
- leapseconds contain changes from the most recent IERS bulletin
|
2007-08-16 11:30:27 +00:00
|
|
|
|
2007-05-09 15:40:42 +00:00
|
|
|
* Wed May 9 2007 Petr Machata <pmachata@redhat.com> - 2007f-1
|
|
|
|
- Upstream 2007f
|
|
|
|
- New Zealand is extending DST, starting later this year.
|
|
|
|
- Haiti no longer observes DST.
|
|
|
|
- The Turks and Caicos switch at 02:00, not at 00:00, and have
|
|
|
|
adopted US DST rules.
|
|
|
|
|
2007-04-03 15:18:40 +00:00
|
|
|
* Tue Apr 3 2007 Petr Machata <pmachata@redhat.com> - 2007e-1
|
|
|
|
- Upstream 2007e
|
|
|
|
- Syria switched to summer time at Mar/29.
|
|
|
|
- Honduras will not enter DST this year.
|
|
|
|
|
2007-03-21 13:17:38 +00:00
|
|
|
* Wed Mar 21 2007 Petr Machata <pmachata@redhat.com> - 2007d-1
|
|
|
|
- Upstream 2007d
|
|
|
|
- Mongolia has abolished DST.
|
|
|
|
- Turkey will use EU rules this year, changing at 01:00 UTC rather
|
|
|
|
than 01:00 standard time.
|
|
|
|
- Cuba observed DST starting Sunday.
|
|
|
|
- Resolute, Nunavut switched from Central to Eastern time last
|
|
|
|
November.
|
|
|
|
|
2007-02-26 15:04:40 +00:00
|
|
|
* Mon Feb 26 2007 Petr Machata <pmachata@redhat.com> - 2007c-1
|
|
|
|
- Upstream 2007c
|
|
|
|
- Pulaski County, Indiana, switched back to eastern time.
|
|
|
|
- Turkey switches at 01:00 standard time, not at 01:00 UTC.
|
|
|
|
- Upstream 2007b
|
|
|
|
- Changes to the commentary in "leapseconds".
|
|
|
|
|
2007-02-07 19:47:13 +00:00
|
|
|
* Wed Feb 7 2007 Petr Machata <pmachata@redhat.com> - 2007a-2
|
|
|
|
- tidy up the specfile per rpmlint comments
|
|
|
|
|
2007-01-18 13:34:09 +00:00
|
|
|
* Thu Jan 18 2007 Petr Machata <pmachata@redhat.com> - 2007a-1
|
|
|
|
- Upstream 2007a
|
|
|
|
- Updates to Bahamas, they will be in sync with 2007 US DST change
|
|
|
|
- New zone Australia/Eucla
|
|
|
|
- Africa/Asmera renamed to Africa/Asmara, link created
|
|
|
|
- Atlantic/Faeroe renamed to Atlantic/Faroe, link created
|
|
|
|
- Packaging
|
|
|
|
- Adding BuildRequires: glibc-common >= 2.5.90-7 to build tzdata
|
|
|
|
with extended 64-bit format necessary for dates beyond 2037
|
|
|
|
|
2006-11-29 09:50:56 +00:00
|
|
|
* Wed Nov 29 2006 Petr Machata <pmachata@redhat.com> - 2006p-1
|
|
|
|
- Upstream 2006p
|
|
|
|
- Official version of Western Australia DST trial changes
|
|
|
|
- Latitude/longitude changes for Europe/Jersey and Europe/Podgorica
|
|
|
|
|
2006-11-22 20:18:48 +00:00
|
|
|
* Wed Nov 22 2006 Petr Machata <pmachata@redhat.com> - 2006o-2
|
|
|
|
- Patch for Western Australia DST trial
|
|
|
|
|
2006-11-09 13:59:37 +00:00
|
|
|
* Thu Nov 9 2006 Petr Machata <pmachata@redhat.com> - 2006o-1
|
|
|
|
- Cuba has ended its three years of permanent DST.
|
|
|
|
- Updates in historical timestamps for Chile.
|
|
|
|
|
2006-10-10 10:54:57 +00:00
|
|
|
* Tue Oct 10 2006 Petr Machata <pmachata@redhat.com> - 2006m-2
|
|
|
|
- Proposed upstream patch (#210058)
|
|
|
|
- Jordan will switch to winter time on October 27, not September 29
|
|
|
|
- Brazil's DST this year is the first Sunday in November to the last
|
|
|
|
Sunday in February. (Thanks to Frederico A. C. Neves.)
|
|
|
|
- ISO 3166 codes for Serbia and Montenegro, zone Europe/Podgorica
|
|
|
|
- Commentary and past timestamps changes
|
|
|
|
|
2006-10-03 08:17:44 +00:00
|
|
|
* Tue Oct 3 2006 Petr Machata <pmachata@redhat.com> - 2006m-1
|
|
|
|
- Upstream 2006m:
|
|
|
|
- Adjustments for Egypt, Palestine, Uruguay
|
|
|
|
- Better description of `until' field in zic (8) manpage
|
|
|
|
|
2006-09-21 14:03:39 +00:00
|
|
|
* Thu Sep 21 2006 Petr Machata <pmachata@redhat.com> - 2006l-1
|
|
|
|
- Upstream 2006k, 2006l:
|
|
|
|
- Adjustments for Egypt, Palestine, Cuba, Honduras
|
|
|
|
- Documentation changes
|
|
|
|
|
2006-08-22 14:52:10 +00:00
|
|
|
* Tue Aug 22 2006 Petr Machata <pmachata@redhat.com> - 2006j-1
|
|
|
|
- Upstream 2006j
|
|
|
|
- Honduras stopped observing DST on Monday at 00:00
|
|
|
|
- America/Bermuda will follow the US's lead next year
|
|
|
|
- America/Moncton will use US-style rules next year
|
|
|
|
- New Zone America/Blanc-Sablon, for Canadians who observe AST all
|
|
|
|
year
|
|
|
|
- New zone: America/Atikokan instead of America/Coral_Harbour
|
|
|
|
- New zones: Europe/Jersey, Europe/Guernsey, Europe/Isle_of_Man
|
|
|
|
- Historical changes
|
|
|
|
- Commentary updates
|
|
|
|
- Upstream 2006i
|
|
|
|
- localtime.c fixes
|
|
|
|
- Upstream 2006h
|
|
|
|
- zic leapsecond fix
|
|
|
|
|
2006-07-12 08:35:07 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2006g-1.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-05-11 08:33:03 +00:00
|
|
|
* Thu May 11 2006 Petr Machata <pmachata@redhat.com> - 2006g-1
|
|
|
|
- Honduras chose to follow Guatemala and will observe DST May/6 to Sep/2
|
|
|
|
- Nicaragua updates
|
|
|
|
|
2006-05-02 12:09:32 +00:00
|
|
|
* Tue May 2 2006 Petr Machata <pmachata@redhat.com> - 2006f-1
|
|
|
|
- Upstream 2006f
|
|
|
|
- America/Guatemala observes DST between Apr/30 and Oct/1
|
|
|
|
- Historical changes for Nicaragua
|
|
|
|
- Update of America/Indiana/Vincennes in zone table
|
|
|
|
|
2006-04-20 14:17:25 +00:00
|
|
|
* Thu Apr 20 2006 Petr Machata <pmachata@redhat.com> - 2006d-1
|
|
|
|
- Upstream 2006d
|
|
|
|
- Haiti observes DST
|
|
|
|
- Sri Lanka change actually took effect Apr/15
|
|
|
|
- All Canada is now scheduled for 2007 US DST rules
|
|
|
|
- Some historical fixes
|
|
|
|
|
2006-04-06 12:15:34 +00:00
|
|
|
* Thu Apr 6 2006 Petr Machata <pmachata@redhat.com> - 2006c-1
|
|
|
|
- Upstream 2006c
|
|
|
|
- Time-related changes:
|
|
|
|
- dozens of historical and commentary changes
|
|
|
|
- Iran stopped observing DST
|
|
|
|
- Sri Lanka switches from UTC+6 to UTC+5:30
|
|
|
|
- America/Thule and America/Edmonton will adopt new US rules,
|
|
|
|
starting 2007
|
|
|
|
- Tunisia is adopting regular DST
|
|
|
|
- Code:
|
|
|
|
- asctime.c: Chages in format strings to silent gcc warnings
|
|
|
|
- removing K&R notation from function signatures
|
|
|
|
- few fixes across the code
|
|
|
|
|
2006-03-22 09:45:45 +00:00
|
|
|
* Thu Mar 16 2006 Petr Machata <pmachata@redhat.com> - 2006b-2
|
|
|
|
- Patch for Sri Lanka time zone change (#184514)
|
|
|
|
|
2006-02-22 14:29:41 +00:00
|
|
|
* Thu Feb 22 2006 Petr Machata <pmachata@redhat.com> 2006b-1
|
|
|
|
- Upstream 2006b:
|
|
|
|
- using tz64code version, as 32 is legacy according to tzdata ML
|
|
|
|
- new manual pages for ctime, strftime, tzset
|
|
|
|
- some source code reorganizations
|
|
|
|
- no timezone/dst rule updates
|
|
|
|
|
2006-02-09 13:19:31 +00:00
|
|
|
* Thu Feb 02 2006 Petr Machata <pmachata@redhat.com> 2006a-2
|
|
|
|
- Small changes in tst-timezone.c
|
|
|
|
|
2006-02-02 19:55:43 +00:00
|
|
|
* Thu Feb 02 2006 Petr Machata <pmachata@redhat.com> 2006a-1
|
|
|
|
- Upstream 2006a:
|
|
|
|
- private.h(scheck): changing char* to char const*
|
|
|
|
- Rule changes for Palestine, zone changes for Indiana/US, both
|
|
|
|
changes for Canada.
|
|
|
|
- Many related doc changes.
|
|
|
|
- Naming scheme in spec file doesn't use %%{name}, but tzdata.
|
|
|
|
|
|
|
|
* Thu Jan 12 2006 Petr Machata <pmachata@redhat.com> 2005r-3
|
2006-01-12 16:12:07 +00:00
|
|
|
- 2005r-3
|
|
|
|
- Meta changes. Renaming tzdata.tar.bz2 file to tzdata$ver-base,
|
|
|
|
so that it won't clash across updates.
|
|
|
|
|
2006-01-06 09:19:18 +00:00
|
|
|
* Thu Jan 5 2006 Petr Machata <pmachata@redhat.com> 2005r-2
|
|
|
|
- 2005r
|
|
|
|
- Zones EST, MST, HST, EST5EDT, CST6CDT, MST7MDT, PST8PDT moved to
|
|
|
|
northamerica to guard against old files with obsolete information
|
|
|
|
being left in the time zone binary directory.
|
|
|
|
- Changes for countries that are supposed to join 2007 US DST
|
|
|
|
change. This includes most of Canada, however entries already in
|
|
|
|
the database (Alberta, British Columbia, Newfoundland, Northwest
|
|
|
|
Territories, and Yukon) were left alone for the time being.
|
|
|
|
- Fixes in zdump.c (abbrok): conditions are chained, and the string
|
|
|
|
is checked for emptiness.
|
|
|
|
|
2005-12-17 10:02:32 +00:00
|
|
|
* Sat Dec 17 2005 Jakub Jelinek <jakub@redhat.com> 2005q-2
|
|
|
|
- 2005q
|
|
|
|
- changes for Georgia, Azerbaijan, Jordan, Palestine, Cuba, Nicaragua
|
|
|
|
- SystemV timezone changes
|
2005-12-09 22:43:40 +00:00
|
|
|
|
2005-11-02 12:07:37 +00:00
|
|
|
* Wed Nov 2 2005 Jakub Jelinek <jakub@redhat.com> 2005n-2
|
|
|
|
- 2005n
|
|
|
|
- changes for Kyrgyzstan and Uruguay
|
2005-11-02 12:23:26 +00:00
|
|
|
- fix a typo in the Makefile (used TZDATA env var instead of TZDIR during
|
2005-11-02 12:30:37 +00:00
|
|
|
make check), update tst-timezone.c from glibc CVS (#172102)
|
2005-11-02 12:07:37 +00:00
|
|
|
|
2005-09-06 11:05:46 +00:00
|
|
|
* Tue Sep 6 2005 Jakub Jelinek <jakub@redhat.com> 2005m-2
|
2005-09-06 10:33:56 +00:00
|
|
|
- 2005m
|
2005-09-06 11:05:46 +00:00
|
|
|
- changes for USA (extending DST by 4 weeks since 2007), Tunisia,
|
|
|
|
Australia, Kazakhstan
|
|
|
|
- historical timezone data changes for Japan, Poland, Northern Ireland and
|
|
|
|
Mali
|
|
|
|
- timezone name change for East Timor
|
2005-09-06 10:33:56 +00:00
|
|
|
|
2005-07-15 11:05:33 +00:00
|
|
|
* Fri Jul 15 2005 Jakub Jelinek <jakub@redhat.com> 2005k-2
|
|
|
|
- 2005k
|
|
|
|
- leap seconds update
|
|
|
|
|
2005-04-30 07:45:51 +00:00
|
|
|
* Sat Apr 30 2005 Jakub Jelinek <jakub@redhat.com> 2005i-2
|
|
|
|
- 2005i
|
2005-04-30 07:51:52 +00:00
|
|
|
- updates for Iran, Haiti and Nicaragua
|
2005-04-30 07:45:51 +00:00
|
|
|
|
2005-04-04 21:47:51 +00:00
|
|
|
* Mon Apr 4 2005 Jakub Jelinek <jakub@redhat.com> 2005h-2
|
|
|
|
- 2005h
|
|
|
|
- fixes for Kazakhstan
|
|
|
|
|
2005-03-17 15:06:26 +00:00
|
|
|
* Thu Mar 17 2005 Jakub Jelinek <jakub@redhat.com> 2005g-2
|
|
|
|
- 2005g
|
|
|
|
- fixes for Uruguay
|
2007-02-07 19:47:13 +00:00
|
|
|
- include README and Theory from tzcode tarball in %%{_docdir};
|
2005-03-17 15:06:26 +00:00
|
|
|
Theory includes a good summary of how the timezone data files
|
|
|
|
are supposed to be named
|
|
|
|
|
2005-03-01 14:24:21 +00:00
|
|
|
* Tue Mar 1 2005 Jakub Jelinek <jakub@redhat.com> 2005f-2
|
|
|
|
- 2005f
|
|
|
|
- more updates for Israel, updates for Azerbaijan
|
|
|
|
|
2005-01-26 10:44:27 +00:00
|
|
|
* Wed Jan 26 2005 Jakub Jelinek <jakub@redhat.com> 2005c-3
|
2005-01-26 10:34:40 +00:00
|
|
|
- 2005c
|
2005-01-26 10:44:27 +00:00
|
|
|
- updates for Israel and Paraguay
|
2005-01-26 10:34:40 +00:00
|
|
|
|
2004-11-29 10:15:44 +00:00
|
|
|
* Mon Nov 29 2004 Jakub Jelinek <jakub@redhat.com> 2004g-1
|
|
|
|
- 2004g (#141107)
|
|
|
|
- updates for Cuba
|
|
|
|
|
2004-10-11 19:15:05 +00:00
|
|
|
* Mon Oct 11 2004 Jakub Jelinek <jakub@redhat.com> 2004e-2
|
|
|
|
- 2004e (#135194)
|
|
|
|
- updates for Brazil, Uruguay and Argentina
|
|
|
|
|
|
|
|
* Wed Aug 4 2004 Jakub Jelinek <jakub@redhat.com> 2004b-2
|
2004-09-09 13:43:26 +00:00
|
|
|
- 2004b
|
2004-09-09 13:42:30 +00:00
|
|
|
|
2004-09-09 13:40:51 +00:00
|
|
|
* Mon Oct 6 2003 Jakub Jelinek <jakub@redhat.com> 2003d-1
|
|
|
|
- 2003d
|
|
|
|
|
2004-09-09 13:40:41 +00:00
|
|
|
* Thu Sep 25 2003 Jakub Jelinek <jakub@redhat.com> 2003c-1
|
|
|
|
- 2003c
|
2004-10-11 19:15:05 +00:00
|
|
|
- updates for Brazil (#104840)
|
2004-09-09 13:40:41 +00:00
|
|
|
|
|
|
|
* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2003a-2
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2003a-1
|
|
|
|
- initial package
|