Update to tzdata-2025a
- Paraguay is now permanently at -03. This impacts timestamps starting on 2025-03-22. - Includes improvements to pre-1991 data for the Philippines. - Etc/Unknown is now reserved. Resolves: RHEL-74308
This commit is contained in:
parent
ab2861993d
commit
ae47588b73
2
.gitignore
vendored
2
.gitignore
vendored
@ -214,3 +214,5 @@ noarch/
|
|||||||
/tzdata2024a.tar.gz
|
/tzdata2024a.tar.gz
|
||||||
/tzcode2024b.tar.gz
|
/tzcode2024b.tar.gz
|
||||||
/tzdata2024b.tar.gz
|
/tzdata2024b.tar.gz
|
||||||
|
/tzcode2025a.tar.gz
|
||||||
|
/tzdata2025a.tar.gz
|
||||||
|
4
sources
4
sources
@ -1,4 +1,4 @@
|
|||||||
SHA512 (javazic.tar.gz) = c23a4a437a87d0792f23e98025520a11273fc3d12ef5dcf64af8332ed60ba9ce77eaadfd234cee92b3ca9dc08b9e4123e804745925d68ddbd0b2e1e9039e526b
|
SHA512 (javazic.tar.gz) = c23a4a437a87d0792f23e98025520a11273fc3d12ef5dcf64af8332ed60ba9ce77eaadfd234cee92b3ca9dc08b9e4123e804745925d68ddbd0b2e1e9039e526b
|
||||||
SHA512 (javazic-1.8-37392f2f5d59.tar.xz) = 2ba718dfeed53a3bd6b44e3dfe96338a609e482e4e6d942e2a7e622fc6c52606cb323ac3a59739c463e34f70fff217c0a61f5b3d3c4958eff2801b1504ee4204
|
SHA512 (javazic-1.8-37392f2f5d59.tar.xz) = 2ba718dfeed53a3bd6b44e3dfe96338a609e482e4e6d942e2a7e622fc6c52606cb323ac3a59739c463e34f70fff217c0a61f5b3d3c4958eff2801b1504ee4204
|
||||||
SHA512 (tzcode2024b.tar.gz) = 0e4e872d6c6d9e2ce8c4e567fcbb7658942b8544157d1e48673d9cb989f3af3379fa58e7a71ab98f4a8f2ac6727de1f8c4cd1981053409ebd8989345dc640026
|
SHA512 (tzcode2025a.tar.gz) = 308f6a3d6ebfa18446f8296e5c799e18dccecd79ace3ba004d3f233892c7428faae152b217b22d229c59dd4e0faafee797d8b3583b58fa982b81f7cc7347f502
|
||||||
SHA512 (tzdata2024b.tar.gz) = 0d86686e215672343debb3471b7e7ccb8a27f063f085c9b532d5e0470377843daa0dfb6aee0db4fb9068dd52810c69aeee914a1a7c7e603fdecda7e855020193
|
SHA512 (tzdata2025a.tar.gz) = 93b8f939d39bdfe451e262666f9099c529c96c49d14c08e3611560ca660e12e16d08a22b145d615e00570fb194881618d6f9a0a617c119ab447be03279d747c3
|
||||||
|
19
tzdata.spec
19
tzdata.spec
@ -1,9 +1,9 @@
|
|||||||
Summary: Timezone data
|
Summary: Timezone data
|
||||||
Name: tzdata
|
Name: tzdata
|
||||||
Version: 2024b
|
Version: 2025a
|
||||||
%define tzdata_version 2024b
|
%define tzdata_version 2025a
|
||||||
%define tzcode_version 2024b
|
%define tzcode_version 2025a
|
||||||
Release: 3%{?dist}
|
Release: 1%{?dist}
|
||||||
License: Public Domain
|
License: Public Domain
|
||||||
URL: https://www.iana.org/time-zones
|
URL: https://www.iana.org/time-zones
|
||||||
Source0: ftp://ftp.iana.org/tz/releases/tzdata%{tzdata_version}.tar.gz
|
Source0: ftp://ftp.iana.org/tz/releases/tzdata%{tzdata_version}.tar.gz
|
||||||
@ -13,8 +13,6 @@ Patch002: 0002-Fix-have-snprintf.patch
|
|||||||
%if 0%{?rhel} || 0%{?eln}
|
%if 0%{?rhel} || 0%{?eln}
|
||||||
Patch003: 0003-continue-to-ship-posixrules.patch
|
Patch003: 0003-continue-to-ship-posixrules.patch
|
||||||
%endif
|
%endif
|
||||||
Patch004: 0004-Fix-Apr-vs-April-2024b.patch
|
|
||||||
Patch005: 0005-Improve-style-checks-for-months-2024b.patch
|
|
||||||
|
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
@ -51,8 +49,6 @@ This package contains timezone information for use by Java runtimes.
|
|||||||
%if 0%{?rhel} || 0%{?eln}
|
%if 0%{?rhel} || 0%{?eln}
|
||||||
%patch003 -p1
|
%patch003 -p1
|
||||||
%endif
|
%endif
|
||||||
%patch004 -p1
|
|
||||||
%patch005 -p1
|
|
||||||
|
|
||||||
# tzdata-2018g introduced 25:00 transition times. This breaks OpenJDK.
|
# tzdata-2018g introduced 25:00 transition times. This breaks OpenJDK.
|
||||||
# Use rearguard for java
|
# Use rearguard for java
|
||||||
@ -180,6 +176,13 @@ echo ============END TESTING===========
|
|||||||
%{_datadir}/javazi-1.8
|
%{_datadir}/javazi-1.8
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jan 21 2025 Patsy Griffin <pats@redhat.com> - 2025a-1
|
||||||
|
Update to tzdata-2025a (RHEL-74308)
|
||||||
|
- Paraguay is now permanently at -03. This impacts timestamps
|
||||||
|
starting on 2025-03-22.
|
||||||
|
- Includes improvements to pre-1991 data for the Philippines.
|
||||||
|
- Etc/Unknown is now reserved.
|
||||||
|
|
||||||
* Fri Dec 06 2024 Patsy Griffin <patsy@redhat.com> - 2024b-3
|
* Fri Dec 06 2024 Patsy Griffin <patsy@redhat.com> - 2024b-3
|
||||||
- Don't use -source 1.6 and -target 1.6 with javac. (RHEL-70308)
|
- Don't use -source 1.6 and -target 1.6 with javac. (RHEL-70308)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user