|
|
|
@ -1,28 +1,24 @@
|
|
|
|
|
Summary: Timezone data
|
|
|
|
|
Name: tzdata
|
|
|
|
|
Version: 2024b
|
|
|
|
|
%define tzdata_version 2024b
|
|
|
|
|
%define tzcode_version 2024b
|
|
|
|
|
Release: 2%{?dist}
|
|
|
|
|
License: Public Domain
|
|
|
|
|
Version: 2024a
|
|
|
|
|
%define tzdata_version 2024a
|
|
|
|
|
%define tzcode_version 2024a
|
|
|
|
|
Release: 3%{?dist}
|
|
|
|
|
License: LicenseRef-Fedora-Public-Domain AND (GPL-2.0-only WITH ClassPath-exception-2.0)
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
Patch002: 0002-Fix-have-snprintf.patch
|
|
|
|
|
%if 0%{?rhel} || 0%{?eln}
|
|
|
|
|
Patch002: 0002-Fix-have-snprintf-error.patch
|
|
|
|
|
Patch003: 0003-continue-to-ship-posixrules.patch
|
|
|
|
|
%endif
|
|
|
|
|
Patch004: 0004-Fix-Apr-vs-April-2024b.patch
|
|
|
|
|
Patch005: 0005-Improve-style-checks-for-months-2024b.patch
|
|
|
|
|
|
|
|
|
|
BuildRequires: make
|
|
|
|
|
BuildRequires: gcc
|
|
|
|
|
BuildRequires: gawk, glibc, perl-interpreter
|
|
|
|
|
BuildRequires: java-devel
|
|
|
|
|
BuildRequires: glibc-common >= 2.5.90-7
|
|
|
|
|
Conflicts: glibc-common <= 2.3.2-63
|
|
|
|
|
BuildArchitectures: noarch
|
|
|
|
|
ExcludeArch: i686
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
This package contains data files with rules for various timezones around
|
|
|
|
@ -30,16 +26,8 @@ the world.
|
|
|
|
|
|
|
|
|
|
%package java
|
|
|
|
|
Summary: Timezone data for Java
|
|
|
|
|
Source3: javazic.tar.gz
|
|
|
|
|
Source4: javazic-1.8-37392f2f5d59.tar.xz
|
|
|
|
|
Source5: ZoneTest.java
|
|
|
|
|
Patch100: javazic-fixup.patch
|
|
|
|
|
Patch101: rebase-01.patch
|
|
|
|
|
Patch102: rebase-02.patch
|
|
|
|
|
Patch103: 7090844.patch
|
|
|
|
|
Patch104: 7133138.patch
|
|
|
|
|
Patch105: 8051641.patch
|
|
|
|
|
Patch106: javazic-harden-links.patch
|
|
|
|
|
Source3: javazic-1.8-37392f2f5d59.tar.xz
|
|
|
|
|
Patch100: JDK-8051641.patch
|
|
|
|
|
|
|
|
|
|
%description java
|
|
|
|
|
This package contains timezone information for use by Java runtimes.
|
|
|
|
@ -47,12 +35,10 @@ This package contains timezone information for use by Java runtimes.
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -c -a 1
|
|
|
|
|
|
|
|
|
|
%patch002 -p1
|
|
|
|
|
%if 0%{?rhel} || 0%{?eln}
|
|
|
|
|
%patch003 -p1
|
|
|
|
|
%patch -p1 -P 2
|
|
|
|
|
%if 0%{?rhel}
|
|
|
|
|
%patch -p1 -P 3
|
|
|
|
|
%endif
|
|
|
|
|
%patch004 -p1
|
|
|
|
|
%patch005 -p1
|
|
|
|
|
|
|
|
|
|
# tzdata-2018g introduced 25:00 transition times. This breaks OpenJDK.
|
|
|
|
|
# Use rearguard for java
|
|
|
|
@ -63,42 +49,20 @@ pushd rearguard
|
|
|
|
|
tar zxf tzdata%{version}-rearguard.tar.gz
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
%if 0%{?rhel} || 0%{?eln}
|
|
|
|
|
%if 0%{?rhel}
|
|
|
|
|
# Use rearguard for rhel (overwrite default vangaurd data)
|
|
|
|
|
tar zxf rearguard/tzdata%{version}-rearguard.tar.gz
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
mkdir javazic
|
|
|
|
|
tar zxf %{SOURCE3} -C javazic
|
|
|
|
|
pushd javazic
|
|
|
|
|
%patch100
|
|
|
|
|
%patch101
|
|
|
|
|
%patch102
|
|
|
|
|
%patch103
|
|
|
|
|
%patch104
|
|
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
|
|
tar xf %{SOURCE4}
|
|
|
|
|
%patch105
|
|
|
|
|
%patch106 -p1
|
|
|
|
|
tar xf %{SOURCE3}
|
|
|
|
|
%patch -P 100
|
|
|
|
|
|
|
|
|
|
echo "%{name}%{tzdata_version}" >> VERSION
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
# Run make to create the tzdata.zi file
|
|
|
|
|
rm tzdata.zi
|
|
|
|
|
%if 0%{?rhel} || 0%{?eln}
|
|
|
|
|
%if 0%{?rhel}
|
|
|
|
|
make VERSION=%{version} DATAFORM=rearguard tzdata.zi
|
|
|
|
|
%else
|
|
|
|
|
make tzdata.zi
|
|
|
|
@ -120,15 +84,6 @@ JAVA_FILES="rearguard/africa rearguard/antarctica rearguard/asia \
|
|
|
|
|
rearguard/southamerica rearguard/etcetera \
|
|
|
|
|
rearguard/backward"
|
|
|
|
|
|
|
|
|
|
# Java 6/7 tzdata
|
|
|
|
|
pushd javazic
|
|
|
|
|
javac -source 1.6 -target 1.6 -classpath . `find . -name \*.java`
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
java -classpath javazic/ rht.tools.javazic.Main -V %{version} \
|
|
|
|
|
-d javazi \
|
|
|
|
|
$JAVA_FILES javazic/tzdata_jdk/gmt javazic/tzdata_jdk/jdk11_backward
|
|
|
|
|
|
|
|
|
|
# Java 8 tzdata
|
|
|
|
|
pushd javazic-1.8
|
|
|
|
|
javac -source 1.8 -target 1.8 -classpath . `find . -name \*.java`
|
|
|
|
@ -144,29 +99,9 @@ rm -fr $RPM_BUILD_ROOT
|
|
|
|
|
install -d $RPM_BUILD_ROOT%{_datadir}
|
|
|
|
|
cp -prd zoneinfo $RPM_BUILD_ROOT%{_datadir}
|
|
|
|
|
install -p -m 644 zone.tab zone1970.tab iso3166.tab leap-seconds.list leapseconds tzdata.zi $RPM_BUILD_ROOT%{_datadir}/zoneinfo
|
|
|
|
|
cp -prd javazi $RPM_BUILD_ROOT%{_datadir}/javazi
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/javazi-1.8
|
|
|
|
|
install -p -m 644 tzdb.dat $RPM_BUILD_ROOT%{_datadir}/javazi-1.8/
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
echo ============TESTING===============
|
|
|
|
|
/usr/bin/env LANG=C make -k VALIDATE=':' check && true
|
|
|
|
|
|
|
|
|
|
# Create a custom JAVA_HOME, where we can replace tzdb.dat with the
|
|
|
|
|
# one just built, for testing.
|
|
|
|
|
system_java_home=$(dirname $(readlink -f $(which java)))/..
|
|
|
|
|
mkdir -p java_home
|
|
|
|
|
cp -Lr $system_java_home/* java_home/.
|
|
|
|
|
for tzdb in $(find java_home -name tzdb.dat) ; do
|
|
|
|
|
rm $tzdb
|
|
|
|
|
cp $RPM_BUILD_ROOT%{_datadir}/javazi-1.8/tzdb.dat $tzdb
|
|
|
|
|
done
|
|
|
|
|
# Compile the smoke test and run it.
|
|
|
|
|
cp %{SOURCE5} .
|
|
|
|
|
javac ZoneTest.java
|
|
|
|
|
java_home/bin/java ZoneTest
|
|
|
|
|
echo ============END TESTING===========
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%{_datadir}/zoneinfo
|
|
|
|
|
%license LICENSE
|
|
|
|
@ -176,62 +111,70 @@ echo ============END TESTING===========
|
|
|
|
|
%doc tz-art.html
|
|
|
|
|
|
|
|
|
|
%files java
|
|
|
|
|
%{_datadir}/javazi
|
|
|
|
|
%{_datadir}/javazi-1.8
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Fri Sep 27 2024 Patsy Griffin <patsy@redhat.com> - 2024b-2
|
|
|
|
|
- Harden against links to removed zones (RHEL-60063)
|
|
|
|
|
|
|
|
|
|
* Wed Sep 11 2024 Patsy Griffin <patsy@redhat.com> - 2024b-1
|
|
|
|
|
- Update to tzdata-2024b
|
|
|
|
|
- Improve historical data for Mexico, Mongolia, and Portugal.
|
|
|
|
|
- System V names are now obsolescent.
|
|
|
|
|
- The main data form now uses %z.
|
|
|
|
|
- The code now conforms to RFC 8536 for early timestamps.
|
|
|
|
|
- Support POSIX.1-2024, which removes asctime_r and ctime_r.
|
|
|
|
|
- Assume POSIX.2-1992 or later for shell scripts.
|
|
|
|
|
- SUPPORT_C89 now defaults to 1.
|
|
|
|
|
- Include two upstream patches for month names as in April vs Apr.
|
|
|
|
|
|
|
|
|
|
* Thu Mar 14 2024 Patsy Griffin <patsy@redhat.com> - 2024a-2
|
|
|
|
|
* Tue Nov 26 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 2024a-3
|
|
|
|
|
- Rebuilt for MSVSphere 10
|
|
|
|
|
|
|
|
|
|
* Thu Apr 18 2024 Patsy Griffin <patsy@redhat.com> - 2024a-3
|
|
|
|
|
- Add java patch to fix incorrect calculations for
|
|
|
|
|
Africa/Casablanca starting in 2027. (RHEL-26860)
|
|
|
|
|
Africa/Casablanca starting in 2027. (RHEL-32178)
|
|
|
|
|
- Remove hardcoded versioned path to javac.
|
|
|
|
|
|
|
|
|
|
* Tue Feb 06 2024 Patsy Griffin <patsy@redhat.com> - 2024a-2
|
|
|
|
|
- Correct the bz# for the tzdata-2024 commit.
|
|
|
|
|
|
|
|
|
|
* Thu Feb 01 2024 Patsy Griffin <patsy@redhat.com> - 2024a-1
|
|
|
|
|
* Mon Feb 05 2024 Patsy Griffin <patsy@redhat.com> - 2024a-1
|
|
|
|
|
- Rebase to tzdata-2024a
|
|
|
|
|
- Kazakhstan will transition from UTC+6 to UTC+5 on 2024-03-01.
|
|
|
|
|
- Palestine will spring forward a week later than previously
|
|
|
|
|
predicted.
|
|
|
|
|
|
|
|
|
|
* Mon Jan 01 2024 Patsy Griffin <patsy@redhat.com> - 2023d-1
|
|
|
|
|
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2023d-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jan 18 2024 Patsy Griffin <patsy@redhat.com> - 2023d-2
|
|
|
|
|
- Migrate License field to SPDX identifiers for
|
|
|
|
|
https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_2
|
|
|
|
|
|
|
|
|
|
* Wed Jan 03 2024 Patsy Griffin <patsy@redhat.com> - 2023d-1
|
|
|
|
|
- Rebase to tzdata-2023d
|
|
|
|
|
- Include time zone changes for Ittoqqortoormiit, Greenland
|
|
|
|
|
and Vostok, Antarctica.
|
|
|
|
|
- Update the expiration date for the leap-seconds.list file.
|
|
|
|
|
No new leap seconds were added.
|
|
|
|
|
|
|
|
|
|
* Thu Aug 17 2023 Patsy Griffin <patsy@redhat.com> - 2023c-2
|
|
|
|
|
- Bump release to test recent process changes. (RHEL-1323)
|
|
|
|
|
* Wed Dec 13 2023 Patsy Griffin <patsy@redhat.com> - 2023c-5
|
|
|
|
|
- Remove Java 6/7 support for Fedora 40 and RHEL 10 forward.
|
|
|
|
|
|
|
|
|
|
* Tue Mar 28 2023 Patsy Griffin <patsy@redhat.com> - 2023c-1
|
|
|
|
|
* Tue Oct 3 2023 David Cantrell <dcantrell@redhat.com> - 2023c-4
|
|
|
|
|
- Use the new syntax for the %%patch macro in the spec file
|
|
|
|
|
|
|
|
|
|
* Mon Jul 24 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 2023c-3
|
|
|
|
|
- Disable Java 6/7 data in RHEL 10 builds
|
|
|
|
|
|
|
|
|
|
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2023c-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Mar 29 2023 Patsy Griffin <patsy@redhat.com> - 2023c-1
|
|
|
|
|
- Rebase to tzdata-2023c
|
|
|
|
|
- Lebanon reversed the change added in tzdata-2023b.
|
|
|
|
|
- Reinstate Lebanon DST change effective March 25.
|
|
|
|
|
|
|
|
|
|
* Fri Mar 24 2023 Patsy Griffin <patsy@redhat.com> - 2023b-1
|
|
|
|
|
- Rebase to tzdata-2023b
|
|
|
|
|
- Lebanon will transition to DST on April 20/21, not March 25/26.
|
|
|
|
|
|
|
|
|
|
* Wed Mar 22 2023 Patsy Griffin <patsy@redhat.com> - 2023a-1
|
|
|
|
|
* Thu Mar 23 2023 Patsy Griffin <patsy@redhat.com> - 2023a-1
|
|
|
|
|
- Rebase to tzdata-2023a
|
|
|
|
|
- Egypt reintroduced DST, from April through October.
|
|
|
|
|
- Morocco springs forward April 23, not April 30.
|
|
|
|
|
- Palestine delayed the start of DST this year.
|
|
|
|
|
- Egypt reintroduced DST, from April through October.
|
|
|
|
|
- Morocco springs forward April 23, not April 30.
|
|
|
|
|
- Palestine delayed the start of DST this year.
|
|
|
|
|
|
|
|
|
|
* Fri Jan 6 2023 Patsy Griffin <patsy@redhat.com> - 2022g-2
|
|
|
|
|
- Include leap-seconds.list in tzdata install. (#2157982)
|
|
|
|
|
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2022g-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Nov 29 2022 Patsy Griffin <patsy@redhat.com> - 2022g-1
|
|
|
|
|
* Fri Dec 02 2022 Patsy Griffin <patsy@redhat.com> - 2022g-1
|
|
|
|
|
- Rebase to tzdata-2022g
|
|
|
|
|
- The northern edge of the Mexican state of Chihuahua will
|
|
|
|
|
change time zone to agree with nearby US locations on
|
|
|
|
@ -239,42 +182,61 @@ echo ============END TESTING===========
|
|
|
|
|
- Added a new Zone America/Ciudad_Juarez that splits from
|
|
|
|
|
America/Ojinaga.
|
|
|
|
|
|
|
|
|
|
* Wed Nov 02 2022 Patsy Griffin <patsy@redhat.com> - 2022f-1
|
|
|
|
|
* Mon Oct 31 2022 Patsy Griffin <patsy@redhat.com> - 2022f-1
|
|
|
|
|
- Rebase to tzdata-2022f
|
|
|
|
|
- Mexico will stop observing DST except near the US border.
|
|
|
|
|
- Chihuahua moved to -06 year round starting on 2022-10-30.
|
|
|
|
|
- Fiji no longer observes DST.
|
|
|
|
|
|
|
|
|
|
* Wed Oct 12 2022 Patsy Griffin <patsy@redhat.com> - 2022e-1
|
|
|
|
|
* Fri Oct 14 2022 Patsy Griffin <patsy@redhat.com> - 2022e-1
|
|
|
|
|
- Rebase to tzdata-2022e
|
|
|
|
|
- Jordan and Syria cancelled the DST transition planned
|
|
|
|
|
for 2022-10-28, remaining at +03 permanently.
|
|
|
|
|
|
|
|
|
|
* Mon Sep 26 2022 Patsy Griffin <patsy@redhat.com> - 2022d-1
|
|
|
|
|
* Sun Sep 25 2022 Patsy Griffin <patsy@redhat.com> - 2022d-1
|
|
|
|
|
- Rebase to tzdata-2022d
|
|
|
|
|
- Palestine's DST transition will be on October 29, 2022,
|
|
|
|
|
- Palestine DST transition will be on October 29, 2022,
|
|
|
|
|
not October 28, 2022.
|
|
|
|
|
- Europe/Uzhgorod and Europe/Zaporozhye are moved to 'backzone'.
|
|
|
|
|
|
|
|
|
|
* Wed Aug 17 2022 Patsy Griffin <patsy@redhat.com> - 2022c-1
|
|
|
|
|
* Mon Aug 22 2022 Patsy Griffin <patsy@redhat.com> - 2022c-1
|
|
|
|
|
- Rebase to tzdata-2022c - supersedes tzdata-2022b
|
|
|
|
|
- Add a work-around for an awk bug in FreeBSD, macOS, etc.
|
|
|
|
|
- Improve tzselect with respect to intercontinental Zones.
|
|
|
|
|
|
|
|
|
|
* Mon Aug 15 2022 Patsy Griffin <patsy@redhat.com> - 2022b-1
|
|
|
|
|
* Sun Aug 14 2022 Patsy Griffin <patsy@redhat.com> - 2022b-1
|
|
|
|
|
- Rebase to tzdata-2022b
|
|
|
|
|
- Chile transitions to DST on 2022-09-11, not 2022-09-04
|
|
|
|
|
- 'make install' now defaults LOCALTIME to Factory rather than GMT
|
|
|
|
|
- More zones that are the same since 1970 have been moved to backzone.
|
|
|
|
|
- Include patch for awk workaround.
|
|
|
|
|
|
|
|
|
|
* Thu Apr 14 2022 Patsy Griffin <patsy@redhat.com> - 2022a-1
|
|
|
|
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2022a-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jul 15 2022 Patsy Griffin <patsy@redhat.com> - 2022a-3
|
|
|
|
|
- Java OpenJDK packages are no longer available on i686.
|
|
|
|
|
Exclude i686 builds. (bz #2104108)
|
|
|
|
|
|
|
|
|
|
* Tue Jun 07 2022 Patsy Griffin <patsy@redhat.com> - 2022a-2
|
|
|
|
|
- Include leap-second.list in tzdata install. (#2091390)
|
|
|
|
|
|
|
|
|
|
* Wed Mar 23 2022 Patsy Griffin <patsy@redhat.com> - 2022a-1
|
|
|
|
|
- Rebase to tzdata-2022a
|
|
|
|
|
- Palestine springs forward on 2022-03-27, not -03-26.
|
|
|
|
|
- zdump -v now outputs better failure information
|
|
|
|
|
- fixes for code that reads corrupted TZif data
|
|
|
|
|
- Palestine springs forward on 2022-03-27, not 2022-03-26.
|
|
|
|
|
- zdump -v now outputs better failure information.
|
|
|
|
|
- bug fixes for code that reads corrupted TZif data.
|
|
|
|
|
|
|
|
|
|
* Tue Feb 08 2022 Patsy Griffin <patsy@redhat.com> - 2021e-4
|
|
|
|
|
- Clean-up changelog.
|
|
|
|
|
|
|
|
|
|
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 2021e-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Java17
|
|
|
|
|
|
|
|
|
|
* Fri Nov 05 2021 Patsy Griffin <patsy@redhat.com> - 2021e-1
|
|
|
|
|
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2021e-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Oct 26 2021 Patsy Griffin <patsy@redhat.com> - 2021e-1
|
|
|
|
|
- Rebase to tzdata-2021e - supersedes tzdata-2021d
|
|
|
|
|
- Pacific/Fiji suspended DST for the 2021/2022 season.
|
|
|
|
|
- 'zic -r' now marks unspecified timestamps with "-00".
|
|
|
|
@ -282,12 +244,14 @@ echo ============END TESTING===========
|
|
|
|
|
than the predicted 2021-10-30.
|
|
|
|
|
|
|
|
|
|
* Thu Oct 07 2021 Patsy Griffin <patsy@redhat.com> - 2021c-1
|
|
|
|
|
- Rebase to tzdata-2021c - supersedes tzdata-2021b
|
|
|
|
|
- Revert most of 2021b changes to 'backward'.
|
|
|
|
|
- Fix 'zic -b fat' bug in pre-1970 32-bit data.
|
|
|
|
|
- Fix two Link line typos.
|
|
|
|
|
- Distribute SECURITY file.
|
|
|
|
|
- Includes changes in tzdata-2021b:
|
|
|
|
|
- Rebase to tzdata-2021c
|
|
|
|
|
- Revert most 2021b changes to the 'backward' file.
|
|
|
|
|
- Fix 'zic -b fat' bug in pre-1970 32-bit data reported in tzdata-2021b.
|
|
|
|
|
- Fix two Link line typos from tzdata-2021b.
|
|
|
|
|
- Distribute the new SECURITY file.
|
|
|
|
|
|
|
|
|
|
* Sat Sep 25 2021 Patsy Griffin <patsy@redhat.com> - 2021b-1
|
|
|
|
|
- Rebase to tzdata-2021b
|
|
|
|
|
- Jordan now starts DST on February's last Thursday.
|
|
|
|
|
- Samoa no longer observes DST.
|
|
|
|
|
- Merge more location-based Zones whose timestamps agree since 1970.
|
|
|
|
@ -302,12 +266,8 @@ echo ============END TESTING===========
|
|
|
|
|
- zdump -v now outputs more-useful boundary cases.
|
|
|
|
|
- tzfile.5 better matches a draft successor to RFC 8536.
|
|
|
|
|
|
|
|
|
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 2021a-3
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2021a-2
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2021a-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jan 25 2021 Patsy Griffin <patsy@redhat.com> - 2021a-1
|
|
|
|
|
- Rebase to tzdata-2021a
|
|
|
|
|