diff --git a/.tzdata.metadata b/.tzdata.metadata
new file mode 100644
index 0000000..3ee7b16
--- /dev/null
+++ b/.tzdata.metadata
@@ -0,0 +1,3 @@
+9370ddee12e9ae8023fa19c24580e090465d8110 SOURCES/tzdata2013h.tar.gz
+a6df3658f6c3e656f0744583a060ed2cd642c818 SOURCES/tzcode2013h.tar.gz
+ee8ad215161cd132e65e2be447b279457158b540 SOURCES/javazic.tar.gz
diff --git a/README.md b/README.md
deleted file mode 100644
index 0e7897f..0000000
--- a/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-The master branch has no content
- 
-Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6
- 
-If you find this file in a distro specific branch, it means that no content has been checked in yet
diff --git a/SOURCES/javazic-exclusion-fix.patch b/SOURCES/javazic-exclusion-fix.patch
new file mode 100644
index 0000000..b9dfa4b
--- /dev/null
+++ b/SOURCES/javazic-exclusion-fix.patch
@@ -0,0 +1,42 @@
+# Patch based on fix in JDK8 tree by Yuka Kamiya from Oracle:
+# http://hg.openjdk.java.net/jdk8/tl/jdk/rev/f114bddac6d6
+
+diff -up ./sun/tools/javazic/Mappings.java.sav ./sun/tools/javazic/Mappings.java
+--- ./sun/tools/javazic/Mappings.java.sav	2011-11-03 16:31:53.000000000 -0400
++++ ./sun/tools/javazic/Mappings.java	2011-11-03 16:41:44.000000000 -0400
+@@ -77,15 +77,17 @@ class Mappings {
+ 	    int rawOffset = zone.get(zone.size()-1).getGmtOffset();
+ 	    // If the GMT offset of this Zone will change in some
+ 	    // future time, this Zone is added to the exclude list.
+-	    if (zone.size() > 1) {
+-		ZoneRec zrec = zone.get(zone.size()-2);
++	    boolean isExcluded = false;
++	    for (int i = 0; i < zone.size(); i++) {
++		ZoneRec zrec = zone.get(i);
+ 		if ((zrec.getGmtOffset() != rawOffset)
+ 		    && (zrec.getUntilTime(0) > Time.getCurrentTime())) {
+ 		    if (excludeList == null) {
+ 			excludeList = new ArrayList<String>();
+ 		    }
+ 		    excludeList.add(zone.getName());
+-		    continue;
++		    isExcluded = true;
++		    break;
+ 		}
+ 	    }
+ 
+@@ -101,9 +103,13 @@ class Mappings {
+ 		rawOffsetsIndex.add(i, rawOffset);
+ 
+ 		Set<String> perRawOffset = new TreeSet<String>();
++		if (!isExcluded) {
++		    perRawOffset = new TreeSet<String>();
++		}
++
+ 		perRawOffset.add(zonename);
+ 		rawOffsetsIndexTable.add(i, perRawOffset);
+-	    } else {
++	    } else if (!isExcluded) {
+ 		int i = rawOffsetsIndex.indexOf(new Integer(rawOffset));
+ 		Set<String> perRawOffset = rawOffsetsIndexTable.get(i);
+ 		perRawOffset.add(zonename);
diff --git a/SOURCES/javazic-fixup.patch b/SOURCES/javazic-fixup.patch
new file mode 100644
index 0000000..8b19ef4
--- /dev/null
+++ b/SOURCES/javazic-fixup.patch
@@ -0,0 +1,34 @@
+--- sun/util/calendar/LocalGregorianCalendar.java.keiths	2007-09-07 14:48:19.000000000 -0700
++++ sun/util/calendar/LocalGregorianCalendar.java	2007-09-07 14:52:58.000000000 -0700
+@@ -120,8 +120,7 @@ public class LocalGregorianCalendar exte
+     static LocalGregorianCalendar getLocalGregorianCalendar(String name) {
+ 	Properties calendarProps = null;
+ 	try {
+-	    String homeDir = (String) AccessController.doPrivileged(
+-				new sun.security.action.GetPropertyAction("java.home"));
++  	    String homeDir = (String) System.getProperty("java.home");
+ 	    final String fname = homeDir + File.separator + "lib" + File.separator
+ 				 + "calendars.properties";
+ 	    calendarProps = (Properties) AccessController.doPrivileged(new PrivilegedExceptionAction() {
+--- sun/util/calendar/ZoneInfoFile.java.keiths	2007-09-07 14:54:58.000000000 -0700
++++ sun/util/calendar/ZoneInfoFile.java	2007-09-07 14:55:36.000000000 -0700
+@@ -1021,8 +1021,7 @@ public class ZoneInfoFile {
+ 	byte[] buffer = null;
+ 
+ 	try {
+-	    String zi_dir = (String) AccessController.doPrivileged(
+-			        new sun.security.action.GetPropertyAction("user.zoneinfo.dir"));
++	    String zi_dir = (String) System.getProperty("user.zoneinfo.dir");
+ 	    File dir = null;
+ 	    if (zi_dir != null)
+ 	      dir = new File(zi_dir);
+@@ -1035,8 +1034,7 @@ public class ZoneInfoFile {
+ 	    }
+ 
+ 	    if (dir == null) {
+-	      String homeDir = (String) AccessController.doPrivileged(
+-				new sun.security.action.GetPropertyAction("java.home"));
++	      String homeDir = (String) System.getProperty("java.home");
+ 	      zi_dir = homeDir + File.separator + "lib" + File.separator
+ 		+ "zi";
+ 	    }
diff --git a/SPECS/tzdata.spec b/SPECS/tzdata.spec
new file mode 100644
index 0000000..e183eb7
--- /dev/null
+++ b/SPECS/tzdata.spec
@@ -0,0 +1,832 @@
+Summary: Timezone data
+Name: tzdata
+Version: 2013h
+%define tzdata_version 2013h
+%define tzcode_version 2013h
+Release: 1%{?dist}
+License: Public Domain
+Group: System Environment/Base
+URL: https://www.iana.org/time-zones
+Source0: ftp://ftp.iana.org/tz/releases/tzdata%{tzdata_version}.tar.gz
+Source1: ftp://ftp.iana.org/tz/releases/tzcode%{tzcode_version}.tar.gz
+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildRequires: gawk, glibc, perl
+BuildRequires: java-devel
+BuildRequires: glibc-common >= 2.5.90-7
+Conflicts: glibc-common <= 2.3.2-63
+BuildArchitectures: noarch
+
+%description
+This package contains data files with rules for various timezones around
+the world.
+
+%package java
+Summary: Timezone data for Java
+Group: System Environment/Base
+Source3: javazic.tar.gz
+Patch100: javazic-fixup.patch
+Patch101: javazic-exclusion-fix.patch
+
+%description java
+This package contains timezone information for use by Java runtimes.
+
+%prep
+%setup -q -c -a 1
+
+mkdir javazic
+tar zxf %{SOURCE3} -C javazic
+pushd javazic
+%patch100
+%patch101
+
+# 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
+find . -type f -name '*.java' -print0 \
+    | xargs -0 -- sed -i -e 's:sun\.tools\.:rht.tools.:g' \
+                         -e 's:sun\.util\.:rht.util.:g'
+popd
+
+%build
+FILES="africa antarctica asia australasia europe northamerica southamerica
+	pacificnew etcetera backward solar87 solar88 solar89"
+
+mkdir zoneinfo/{,posix,right}
+zic -y ./yearistype -d zoneinfo -L /dev/null -p America/New_York $FILES
+zic -y ./yearistype -d zoneinfo/posix -L /dev/null $FILES
+zic -y ./yearistype -d zoneinfo/right -L leapseconds $FILES
+
+grep -v tz-art.htm tz-link.htm > tz-link.html
+
+pushd javazic
+javac -source 1.5 -target 1.5 -classpath . `find . -name \*.java`
+popd
+
+java -classpath javazic/ rht.tools.javazic.Main -V %{version} \
+  -d javazi \
+  $FILES javazic/tzdata_jdk/gmt javazic/tzdata_jdk/jdk11_backward
+
+%install
+rm -fr $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_datadir}
+cp -prd zoneinfo $RPM_BUILD_ROOT%{_datadir}
+install -p -m 644 zone.tab iso3166.tab $RPM_BUILD_ROOT%{_datadir}/zoneinfo
+cp -prd javazi $RPM_BUILD_ROOT%{_datadir}/javazi
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+%{_datadir}/zoneinfo
+%doc README
+%doc Theory
+%doc tz-link.html
+
+%files java
+%defattr(-,root,root)
+%{_datadir}/javazi
+
+%changelog
+* Tue Nov  5 2013 Patsy Franklin <pfrankli@redhat.com> 2013h-1
+- Rebase to 2013h
+  - Lybia switched to using UTC+2 without DST
+  - Western Sahara (Africa/ElAaiun) uses Morocco's DST rules
+  - Acres and Amazon swithc to UTC-4 and UTC-5 on 2013-11-10
+  - Add entries for DST transition in Morocco in the year 2038
+
+* Tue Oct  8 2013 Patsy Franklin <pfrankli@redhat.com> 2013g-1
+- Morocco moved end of DST from September to October (#1014782).
+
+* Fri May 17 2013 Petr Machata <pmachata@redhat.com> - 2013c-1
+- Upstream 2013c
+  - Sync past stamps for Palestine and West Bank with timeanddate.com
+  - Assume that the recent change to Paraguay's DST rules is permanent
+  - Macquarie was uninhabited between 1919 and 1948.  It's also part
+    of Australia (update in zone.tab).
+
+* Wed Mar 27 2013 Petr Machata <pmachata@redhat.com> - 2013b-2
+- Palestine starts Daylight Saving Time on March 29, 2013
+  (tzdata-2013b-gaza.patch)
+
+* Wed Mar 13 2013 Petr Machata <pmachata@redhat.com> - 2013b-1
+- Upstream 2013b
+  - Paraguay will end DST on March 24 this year
+  - Haiti uses US daylight-saving rules this year
+  - Morocco does not observe DST during Ramadan
+- Upstream 2013a
+  - Retire Chile patch, 2013a has the data
+  - New Zones Asia/Khandyga, Asia/Ust-Nera, Europe/Busingen
+  - Many changes in historical timestamps
+
+* Wed Feb 27 2013 Petr Machata <pmachata@redhat.com> - 2012j-3
+- DTS in Chile will end on 2013-04-28
+  (0016-Chile-is-changing-its-DST-rules.patch)
+
+* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012j-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
+* Fri Nov 30 2012 Petr Machata <pmachata@redhat.com> - 2012j-1
+- Upstream 2012j
+  - Libya moved to CET
+
+* Tue Nov  6 2012 Petr Machata <pmachata@redhat.com> - 2012i-2
+- Preserve hardlinks that zic leaves behind, install with cp -d
+
+* Mon Nov  5 2012 Petr Machata <pmachata@redhat.com> - 2012i-1
+- Upstream 2012i
+  - Cuba switched to DST
+
+* Mon Nov  5 2012 Petr Machata <pmachata@redhat.com> - 2012h-2
+- Switch back to using system zic, ignore upstream Makefile at all.
+  We do so for java anyway.
+- Drop Factory from distribution
+
+* Wed Oct 31 2012 Petr Machata <pmachata@redhat.com> - 2012h-1
+- Upstream 2012h
+  - Brazilian state Bahia no longer has DST.
+  - Brazilian state Tocantins now has DST.
+  - Israel has new DST rules next year.
+  - Jordan stays on DST this winter.
+
+* Mon Oct 22 2012 Petr Machata <pmachata@redhat.com> - 2012g-1
+- Upstream 2012g
+  - Adjust the packaging for new Makefile
+  - Palestine: Fall transition was Sep 21, not Sep 28
+  - Samoa: Daylight Saving Time commences on Sunday 30th September
+    2012 and ends on Sunday 7th of April 2013.
+- Resolves: #868173
+
+* Mon Sep 17 2012 Petr Machata <pmachata@redhat.com> - 2012f-1
+- Fiji will start daylight savings at 2 am on Sunday 21st October 2012
+  and end at 3 am on Sunday 20th January 2013.  Guess it will be like
+  that in following years as well.
+- Resolves: #857231
+
+* Mon Aug 13 2012 Petr Machata <pmachata@redhat.com> - 2012e-1
+- Tokelau is in time zone UTC+13, not UTC+14 (and always was)
+
+* Fri Jul 20 2012 Petr Machata <pmachata@redhat.com> - 2012d-1
+- Upstream 2012d
+  - Morocco will not observe DST during the month of Ramadan.
+    DST cessation end date was corrected.
+
+* Fri Jul 13 2012 Petr Machata <pmachata@redhat.com> - 2012c-2
+- Morocco will not observe DST during the month of Ramadan
+  (tzdata-2012c-morocco.patch)
+
+* Mon Apr  2 2012 Petr Machata <pmachata@redhat.com> - 2012c-1
+- Upstream 2012c
+  - Haiti observes DST from 2012 on
+  - Gaza Strip and Hebron observe DST in 2012
+  - Change start of DST in Syria to last Friday in March
+
+* Fri Mar 16 2012 Petr Machata <pmachata@redhat.com> - 2012b-3
+- Morocco moved DST entry to last Sunday of April
+
+* Thu Mar 15 2012 Petr Machata <pmachata@redhat.com> - 2012b-2
+- Morocco DST starts on the last Sunday of March (March 25, 2012) and
+  ends on last Sunday of September, except the month of Ramadan.  It
+  is currently unclear what that Ramadan bit means, so this is not
+  covered by the patch as of now.
+
+* Tue Mar  6 2012 Petr Machata <pmachata@redhat.com> - 2012b-1
+- Rebase to 2012b; changes vs. 2011n-5:
+  - Changes to zones for Antarctica stations
+  - Armenia abolished DST in 2012 and forward
+  - Cuba enters DST on 31st March
+  - Falkland Islands will stay on permanent Summer Time
+  - New zone for Creston Valley, Canada, which differs from Dawson
+    Creek in past stamps.  Changes to historical stamps in Canada.
+  - Last year, Tokelau skipped over the date line together with Samoa
+
+* Fri Feb 24 2012 Petr Machata <pmachata@redhat.com> - 2011n-5
+- Add a patch for change in Chilean DST
+- Update URLs
+
+* Tue Feb 21 2012 Petr Machata <pmachata@redhat.com> - 2011n-4
+- Add a patch for the leap second that will occur this summer
+
+* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2011n-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Thu Nov  3 2011 Petr Machata <pmachata@redhat.com> - 2011n-2
+- Fix building of Java zones.  Patch by Deepak Bhole
+
+* Mon Oct 31 2011 Petr Machata <pmachata@redhat.com> - 2011l-1
+- Rebase to 2011n
+  - Drop all patches, including the Kemerovo patch, which is not in
+    upstream
+  - Cuba postponed DST by two weeks to Nov 13
+  - Fiji will enter DST on Jan 21
+- Resolved: #748778
+
+* Wed Oct 19 2011 Petr Machata <pmachata@redhat.com> - 2011l-3
+- Ukraine will enter Winter Time after all
+
+* Fri Oct 14 2011 Petr Machata <pmachata@redhat.com> - 2011l-2
+- State of Bahia, Brazil, to resume Summer Time on Oct 16
+- The project moved, reflect this in URL
+- Resolves: #746183
+
+* Tue Oct 11 2011 Petr Machata <pmachata@redhat.com> - 2011l-1
+- Upstream 2011l:
+  - Fix ancient stamps for America/Sitka
+  - Asia/Hebron transitioned to standard time already on Sep 30, not Oct 3
+  - Fiji will introduce DST on Oct 22
+
+* Wed Sep 21 2011 Petr Machata <pmachata@redhat.com> - 2011k-0.1.20110921
+- Upstream 2011j:
+  - Fix the Samoa date line skip
+  - Changes in past timestamp typos several Africa zones
+- Proposed upstream 2011k:
+  - Belarus and Ukraine adopt permanent DST in 2011
+  - Palestine suspends DST during Ramadan in 2011
+  - Gaza and West Bank split in 2011.  West Bank is tracked in the
+    timezone Asia/Hebron.  zone.tab update accordingly.
+- Resolves: #737896
+
+* Mon Aug 29 2011 Petr Machata <pmachata@redhat.com> - 2011h-1
+- Upstream 2011i:
+  - Add Africa/Juba (South Sudan) zone
+  - Samoa skips over the date line on 2011-12-30
+  - Use KALT as abbreviation for Europe/Kalinigrad
+  - Canonical version of the Newfoundland patch
+  - Change America/Resolute use of EST to 2006-2007 only
+  - Assume Metlakatla abandoned use of daylight saving in 1983
+  - Sync iso3166.tab and zone.tab with above
+- Resolved: #734063
+
+* Wed Aug 10 2011 Petr Machata <pmachata@redhat.com> - 2011h-2
+- Patch for upcoming change in Newfoundland.  The transition time
+  changes from 12:01 AM to 2:00 AM.
+
+* Mon Jun 27 2011 Petr Machata <pmachata@redhat.com> - 2011h-1
+- Upstream 2011h:
+  - Russia abandons DST in 2011.
+  - *.tab: change AN (Netherlands Antilles) to CW (Curacao)
+
+* Tue Apr 26 2011 Petr Machata <pmachata@redhat.com> - 2011g-1
+- Upstream 2011e:
+  - Morocco introduced DST for 2011 from April 2 to July 31.
+  - Delay end of DST in Chile in 2011 until May 7.
+- Upstream 2011f:
+  - The Falkland Islands will not turn back clocks this winter, but
+    stay on daylight saving time.
+- Upstream 2011g:
+  - Egypt abandons DST in 2011 (and forward)
+- Dropped tzdata-2011d-chile.patch
+- Dropped tzdata-2011d-morocco.patch
+
+* Wed Mar 30 2011 Petr Machata <pmachata@redhat.com> - 2011d-3
+- Morocco introduced DST for 2011 from April 2 to July 31. (tzdata-2011d-morocco.patch)
+
+* Tue Mar 29 2011 Petr Machata <pmachata@redhat.com> - 2011d-2
+- Delay end of DST in Chile in 2011 until May 7. (tzdata-2011d-chile.patch)
+
+* Tue Mar 15 2011 Petr Machata <pmachata@redhat.com> - 2011d-1
+- Upstream 2011d:
+  - Change end of DST in Samoa in 2011.
+  - Change start of DST in Cuba in 2011.
+  - Move start of DST in Turkey by one day in 2011.
+- Dropped tzdata-2011b-c.patch
+
+* Fri Mar 04 2011 Petr Machata <pmachata@redhat.com> - 2011b-3
+- Kemerovo oblast should use OMST/OMSST abbreviation (tzdata-2011b-kemerovo.patch)
+
+* Thu Mar 03 2011 Petr Machata <pmachata@redhat.com> - 2011b-2
+- Update of historical stamps for Juneau, Sitka, and histcurrent stamps
+  for Metlakatla.  Sitka and Metlakatla are new zones.
+- Delay end of DST in Chile in 2011 until first Sunday in April. (tzdata-2011b-c.patch)
+
+* Wed Feb 09 2011 Petr Machata <pmachata@redhat.com> - 2011b-1
+- Upstream 2011b:
+  - America/North_Dakota/Beulah: Mercer County, North Dakota, changed
+    from the mountain time zone to the central time zone
+
+* Mon Jan 24 2011 Petr Machata <pmachata@redhat.com> - 2011a-1
+- Upstream 2011a:
+  - Updates of historical stamps for Hawaii
+
+* Tue Nov 09 2010 Petr Machata <pmachata@redhat.com> - 2010o-1
+- Upstream 2010o:
+  - Fiji will end DST on March 6, 2011, not March 27, 2011
+
+* Wed Oct 27 2010 Petr Machata <pmachata@redhat.com> - 2010n-1
+- Upstream 2010m:
+  - Hong Kong didn't observe DST in 1977
+  - In zone.tab, remove obsolete association of Vostok Station with
+    South Magnetic Pole; add association with Lake Vostok
+- Upstream 2010n:
+  - Change end of DST in Samoa in 2011 from 2011-04-03 0:00 to
+    2011-04-03 1:00
+
+* Mon Aug 16 2010 Petr Machata <pmachata@redhat.com> - 2010l-2
+- Upstream 2010l:
+  - Change Cairo's 2010 reversion to DST from the midnight between
+    September 8 and 9 to the midnight between September 9 and 10.
+  - Change Gaza's 2010 return to standard time to the midnight between
+    August 10 and 11.
+  - Bahia de Banderas (Mexican state of Nayarit) changed time zone
+    UTC-7 to new time zone UTC-6 on April 4, 2010
+
+* Tue Aug  3 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2010k-1
+- Upstream 2010k:
+ - Egypt has announced that DST will be off during Ramadan, but
+   DST will resume afterwards (August 10, 2010 - September 9, 2010)
+
+* Tue May 11 2010 Petr Machata <pmachata@redhat.com> - 2010j-1
+- Upstream 2010j:
+  - Bahia de Banderas (Mexican state of Nayarit) changed time zone
+    UTC-7 to new time zone UTC-6 on April 4, 2010
+
+* Mon Apr 19 2010 Petr Machata <pmachata@redhat.com> - 2010i-1
+- Upstream 2010i:
+  - Morocco will have DST from 2010-05-02 to 2010-08-08
+  - San Luis, Argentina will keep permanent DST after April 11, 2010
+  - Updates of historical stamps for Taiwan
+
+* Tue Apr 06 2010 Petr Machata <pmachata@redhat.com> - 2010h-2
+- Upstream 2010g:
+  - 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
+- Upstream 2010h:
+  - No DST in Tunisia in 2010 and forward
+  - No DST in Pakistan in 2010 and forward
+- Dropped tzdata-2010g-tunis.patch
+- Dropped tzdata-2010f-g.patch
+- Dropped tzdata-2010g-karachi.patch
+
+* Mon Mar 29 2010 Petr Machata <pmachata@redhat.com> - 2010f-3
+- Tunisia not to observe DST in 2010 (tzdata-2010g-tunis.patch)
+- Pakistan not to observe DST in 2010 (tzdata-2010g-karachi.patch)
+
+* Thu Mar 25 2010 Petr Machata <pmachata@redhat.com> - 2010f-2
+- Fix the path in tzdata-2010f-g.patch
+
+* 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
+
+* 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
+
+* Mon Mar 01 2010 Petr Machata <pmachata@redhat.com> - 2010c-1
+- Upstream 2010a
+  - Source code cleanups
+  - Historical timestamps for Bangladesh
+- 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
+
+* 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
+
+* Wed Oct 21 2009 Petr Machata <pmachata@redhat.com> - 2009o-2
+- San Luis (Argentina) entered DST on October 11 (tzdata-2009o-argentinas.patch)
+
+* 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)
+
+* 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)
+
+* 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
+
+* Thu Aug 13 2009 Petr Machata <pmachata@redhat.com> - 2009k-3
+- Egypt starts winter time on August 21.
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2009k-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Mon Jul 20 2009 Petr Machata <pmachata@redhat.com> - 2009k-1
+- Upstream 2009k
+  - Mauritius will not continue to observe DST the coming summer
+  - Arbitrarily end DST at the end of 2009 so that a POSIX-style time
+    zone string can appear in the Dhaka binary file
+
+* 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.
+
+* Mon Jun  8 2009 Petr Machata <pmachata@redhat.com> - 2009i-1
+- Upstream 2009i
+  - Bangladesh introduces DST 2009-06-20
+
+* Tue May 26 2009 Petr Machata <pmachata@redhat.com> - 2009h-2
+- 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
+
+* 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
+
+* Mon Apr 13 2009 Petr Machata <pmachata@redhat.com> - 2009e-3
+- Bump up for rebuild
+
+* 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
+
+* 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
+
+* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2009a-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* 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
+
+* 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).
+
+* 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
+
+* Tue Oct  7 2008 Petr Machata <pmachata@redhat.com> - 2008g-1
+- Upstream 2008g
+  - Fixed future DST transitions for Brazil
+
+* 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
+
+* 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
+
+* 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
+
+* Tue Jul  8 2008 Petr Machata <pmachata@redhat.com> - 2008d-1
+- Upstream 2008d
+  - Changes for Brazil and Mauritius
+
+* 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
+
+* Tue May 27 2008 Petr Machata <pmachata@redhat.com> - 2008b-3
+- Morocco introduces DST
+
+* Fri May 23 2008 Petr Machata <pmachata@redhat.com> - 2008b-2
+- Pakistan introduces DST
+
+* 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
+
+* Tue Mar  4 2008 Petr Machata <pmachata@redhat.com> - 2007k-2
+- Chile moves DST to 29/Mar
+- Related: #435959
+
+* Thu Jan  3 2008 Petr Machata <pmachata@redhat.com> - 2007k-1
+- Upstream 2007k
+  - Argentina readopted the daylight saving time
+
+* 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
+
+* 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.
+- Update tst-timezone.c from glibc CVS
+
+* 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
+
+* Thu Sep 25 2007 Keith Seitz <keiths@redhat.com> - 2007g-2
+- Add support for building java's zoneinfo files in new
+  tzdata-java RPM.
+
+* Wed Aug 22 2007 Petr Machata <pmachata@redhat.com> - 2007g-1
+- 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
+
+* 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.
+
+* 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.
+
+* 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.
+
+* 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".
+
+* Wed Feb  7 2007 Petr Machata <pmachata@redhat.com> - 2007a-2
+- tidy up the specfile per rpmlint comments
+
+* 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
+
+* 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
+
+* Wed Nov 22 2006 Petr Machata <pmachata@redhat.com> - 2006o-2
+- Patch for Western Australia DST trial
+
+* 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.
+
+* 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
+
+* 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
+
+* Thu Sep 21 2006 Petr Machata <pmachata@redhat.com> - 2006l-1
+- Upstream 2006k, 2006l:
+  - Adjustments for Egypt, Palestine, Cuba, Honduras
+  - Documentation changes
+
+* 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
+
+* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2006g-1.1
+- rebuild
+
+* 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
+
+* 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
+
+* 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
+
+* 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
+
+* Thu Mar 16 2006 Petr Machata <pmachata@redhat.com> - 2006b-2
+- Patch for Sri Lanka time zone change (#184514)
+
+* 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
+
+* Thu Feb 02 2006 Petr Machata <pmachata@redhat.com> 2006a-2
+- Small changes in tst-timezone.c
+
+* 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
+- 2005r-3
+  - Meta changes.  Renaming tzdata.tar.bz2 file to tzdata$ver-base,
+    so that it won't clash across updates.
+
+* 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.
+
+* Sat Dec 17 2005 Jakub Jelinek <jakub@redhat.com> 2005q-2
+- 2005q
+  - changes for Georgia, Azerbaijan, Jordan, Palestine, Cuba, Nicaragua
+  - SystemV timezone changes
+
+* Wed Nov  2 2005 Jakub Jelinek <jakub@redhat.com> 2005n-2
+- 2005n
+  - changes for Kyrgyzstan and Uruguay
+- fix a typo in the Makefile (used TZDATA env var instead of TZDIR during
+  make check), update tst-timezone.c from glibc CVS (#172102)
+
+* Tue Sep  6 2005 Jakub Jelinek <jakub@redhat.com> 2005m-2
+- 2005m
+  - 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
+
+* Fri Jul 15 2005 Jakub Jelinek <jakub@redhat.com> 2005k-2
+- 2005k
+  - leap seconds update
+
+* Sat Apr 30 2005 Jakub Jelinek <jakub@redhat.com> 2005i-2
+- 2005i
+  - updates for Iran, Haiti and Nicaragua
+
+* Mon Apr  4 2005 Jakub Jelinek <jakub@redhat.com> 2005h-2
+- 2005h
+  - fixes for Kazakhstan
+
+* Thu Mar 17 2005 Jakub Jelinek <jakub@redhat.com> 2005g-2
+- 2005g
+  - fixes for Uruguay
+- include README and Theory from tzcode tarball in %%{_docdir};
+  Theory includes a good summary of how the timezone data files
+  are supposed to be named
+
+* Tue Mar  1 2005 Jakub Jelinek <jakub@redhat.com> 2005f-2
+- 2005f
+  - more updates for Israel, updates for Azerbaijan
+
+* Wed Jan 26 2005 Jakub Jelinek <jakub@redhat.com> 2005c-3
+- 2005c
+  - updates for Israel and Paraguay
+
+* Mon Nov 29 2004 Jakub Jelinek <jakub@redhat.com> 2004g-1
+- 2004g (#141107)
+  - updates for Cuba
+
+* 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
+- 2004b
+
+* Mon Oct  6 2003 Jakub Jelinek <jakub@redhat.com> 2003d-1
+- 2003d
+
+* Thu Sep 25 2003 Jakub Jelinek <jakub@redhat.com> 2003c-1
+- 2003c
+- updates for Brazil (#104840)
+
+* 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