Compare commits
11 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ba4f393f61 | ||
|
|
215a04b836 | ||
|
|
d8dad093be | ||
|
|
9c5e80865c | ||
|
|
402586078b | ||
|
|
2b422500d0 | ||
|
|
14f272eb28 | ||
|
|
04d95b3f99 | ||
|
|
f713ea1cb3 | ||
|
|
51d23e97d5 | ||
|
|
0a85931f31 |
5 changed files with 246 additions and 12 deletions
20
.gitignore
vendored
20
.gitignore
vendored
|
|
@ -190,3 +190,23 @@ noarch/
|
|||
/tzdata2021c.tar.gz
|
||||
/tzdata2021e.tar.gz
|
||||
/tzcode2021e.tar.gz
|
||||
/tzdata2022a.tar.gz
|
||||
/tzcode2022a.tar.gz
|
||||
/tzcode2022b.tar.gz
|
||||
/tzdata2022b.tar.gz
|
||||
/tzcode2022c.tar.gz
|
||||
/tzdata2022c.tar.gz
|
||||
/tzcode2022d.tar.gz
|
||||
/tzdata2022d.tar.gz
|
||||
/tzcode2022e.tar.gz
|
||||
/tzdata2022e.tar.gz
|
||||
/tzcode2022f.tar.gz
|
||||
/tzdata2022f.tar.gz
|
||||
/tzcode2022g.tar.gz
|
||||
/tzdata2022g.tar.gz
|
||||
/tzcode2023a.tar.gz
|
||||
/tzdata2023a.tar.gz
|
||||
/tzcode2023b.tar.gz
|
||||
/tzdata2023b.tar.gz
|
||||
/tzcode2023c.tar.gz
|
||||
/tzdata2023c.tar.gz
|
||||
|
|
|
|||
153
0001-Work-around-awk-bug-1.patch
Normal file
153
0001-Work-around-awk-bug-1.patch
Normal file
|
|
@ -0,0 +1,153 @@
|
|||
From e8171130f9b80ae3c75dfa5e96c47d5dbc0f4aae Mon Sep 17 00:00:00 2001
|
||||
From: Paul Eggert <eggert@cs.ucla.edu>
|
||||
Date: Wed, 10 Aug 2022 18:58:08 -0700
|
||||
Subject: [PROPOSED] Work around macOS awk bug
|
||||
|
||||
* ziguard.awk: Replace every regular expression /ERE/ in ordinary
|
||||
contexts with ($0 ~ /ERE/), to work around a bug in macOS 13.0 awk.
|
||||
Problem reported by Deborah Goldsmith in:
|
||||
https://mm.icann.org/pipermail/tz/2022-August/031783.html
|
||||
---
|
||||
NEWS | 8 ++++++++
|
||||
ziguard.awk | 37 ++++++++++++++++++++-----------------
|
||||
2 files changed, 28 insertions(+), 17 deletions(-)
|
||||
|
||||
diff --git a/NEWS b/NEWS
|
||||
index 6a0d5c50..7291030a 100644
|
||||
--- a/NEWS
|
||||
+++ b/NEWS
|
||||
@@ -1,5 +1,13 @@
|
||||
News for the tz database
|
||||
|
||||
+Unreleased, experimental changes
|
||||
+
|
||||
+ Changes to code
|
||||
+
|
||||
+ Work around a bug in macOS 'awk' that broke commands like 'make
|
||||
+ traditional_tarballs'. (Problem reported by Deborah Goldsmith.)
|
||||
+
|
||||
+
|
||||
Release 2022b - 2022-08-10 15:38:32 -0700
|
||||
|
||||
Briefly:
|
||||
diff --git a/ziguard.awk b/ziguard.awk
|
||||
index 0728baa5..0556cc4a 100644
|
||||
--- a/ziguard.awk
|
||||
+++ b/ziguard.awk
|
||||
@@ -91,12 +91,13 @@ $1 == "#PACKRATLIST" && $2 == PACKRATLIST {
|
||||
/^Zone/ { zone = $2 }
|
||||
|
||||
DATAFORM != "main" {
|
||||
- in_comment = /^#/
|
||||
+ in_comment = $0 ~ /^#/
|
||||
uncomment = comment_out = 0
|
||||
|
||||
# If this line should differ due to Czechoslovakia using negative SAVE values,
|
||||
# uncomment the desired version and comment out the undesired one.
|
||||
- if (zone == "Europe/Prague" && /^#?[\t ]+[01]:00[\t ]/ && /1947 Feb 23/) {
|
||||
+ if (zone == "Europe/Prague" && $0 ~ /^#?[\t ]+[01]:00[\t ]/ \
|
||||
+ && $0 ~ /1947 Feb 23/) {
|
||||
if (($(in_comment + 2) != "-") == (DATAFORM != "rearguard")) {
|
||||
uncomment = in_comment
|
||||
} else {
|
||||
@@ -106,9 +107,9 @@ DATAFORM != "main" {
|
||||
|
||||
# If this line should differ due to Ireland using negative SAVE values,
|
||||
# uncomment the desired version and comment out the undesired one.
|
||||
- Rule_Eire = /^#?Rule[\t ]+Eire[\t ]/
|
||||
+ Rule_Eire = $0 ~ /^#?Rule[\t ]+Eire[\t ]/
|
||||
Zone_Dublin_post_1968 \
|
||||
- = (zone == "Europe/Dublin" && /^#?[\t ]+[01]:00[\t ]/ \
|
||||
+ = (zone == "Europe/Dublin" && $0 ~ /^#?[\t ]+[01]:00[\t ]/ \
|
||||
&& (!$(in_comment + 4) || 1968 < $(in_comment + 4)))
|
||||
if (Rule_Eire || Zone_Dublin_post_1968) {
|
||||
if ((Rule_Eire \
|
||||
@@ -122,9 +123,9 @@ DATAFORM != "main" {
|
||||
|
||||
# If this line should differ due to Namibia using negative SAVE values,
|
||||
# uncomment the desired version and comment out the undesired one.
|
||||
- Rule_Namibia = /^#?Rule[\t ]+Namibia[\t ]/
|
||||
+ Rule_Namibia = $0 ~ /^#?Rule[\t ]+Namibia[\t ]/
|
||||
Zone_using_Namibia_rule \
|
||||
- = (zone == "Africa/Windhoek" && /^#?[\t ]+[12]:00[\t ]/ \
|
||||
+ = (zone == "Africa/Windhoek" && $0 ~ /^#?[\t ]+[12]:00[\t ]/ \
|
||||
&& ($(in_comment + 2) == "Namibia" \
|
||||
|| ($(in_comment + 2) == "-" && $(in_comment + 3) == "CAT" \
|
||||
&& ((1994 <= $(in_comment + 4) && $(in_comment + 4) <= 2017) \
|
||||
@@ -142,8 +143,8 @@ DATAFORM != "main" {
|
||||
|
||||
# If this line should differ due to Portugal benefiting from %z if supported,
|
||||
# uncomment the desired version and comment out the undesired one.
|
||||
- if (/^#?[\t ]+-[12]:00[\t ]+Port[\t ]+[%+-]/) {
|
||||
- if (/%z/ == (DATAFORM == "vanguard")) {
|
||||
+ if ($0 ~ /^#?[\t ]+-[12]:00[\t ]+Port[\t ]+[%+-]/) {
|
||||
+ if (($0 ~ /%z/) == (DATAFORM == "vanguard")) {
|
||||
uncomment = in_comment
|
||||
} else {
|
||||
comment_out = !in_comment
|
||||
@@ -164,8 +165,8 @@ DATAFORM != "main" {
|
||||
sub(/-00CHANGE-TO-%z/, "-00")
|
||||
sub(/[-+][^\t ]+CHANGE-TO-/, "")
|
||||
} else {
|
||||
- if (/^[^#]*%z/) {
|
||||
- stdoff_column = 2 * /^Zone/ + 1
|
||||
+ if ($0 ~ /^[^#]*%z/) {
|
||||
+ stdoff_column = 2 * ($0 ~ /^Zone/) + 1
|
||||
rules_column = stdoff_column + 1
|
||||
stdoff = get_minutes($stdoff_column)
|
||||
rules = $rules_column
|
||||
@@ -184,9 +185,9 @@ DATAFORM != "main" {
|
||||
dstoff = 20
|
||||
} else if (((rules == "Cook" || rules == "LH") && NF == 3) \
|
||||
|| (rules == "Uruguay" \
|
||||
- && /[\t ](1942 Dec 14|1960|1970|1974 Dec 22)$/)) {
|
||||
+ && $0 ~ /[\t ](1942 Dec 14|1960|1970|1974 Dec 22)$/)) {
|
||||
dstoff = 30
|
||||
- } else if (rules == "Uruguay" && /[\t ]1974 Mar 10$/) {
|
||||
+ } else if (rules == "Uruguay" && $0 ~ /[\t ]1974 Mar 10$/) {
|
||||
dstoff = 90
|
||||
} else {
|
||||
dstoff = 60
|
||||
@@ -222,7 +223,7 @@ DATAFORM != "main" {
|
||||
stdoff_subst[1] = rounded_stdoff
|
||||
}
|
||||
} else if (stdoff_subst[0]) {
|
||||
- stdoff_column = 2 * /^Zone/ + 1
|
||||
+ stdoff_column = 2 * ($0 ~ /^Zone/) + 1
|
||||
stdoff_column_val = $stdoff_column
|
||||
if (stdoff_column_val == stdoff_subst[0]) {
|
||||
sub(stdoff_subst[0], stdoff_subst[1])
|
||||
@@ -233,7 +234,7 @@ DATAFORM != "main" {
|
||||
|
||||
# In rearguard form, change the Japan rule line with "Sat>=8 25:00"
|
||||
# to "Sun>=9 1:00", to cater to zic before 2007 and to older Java.
|
||||
- if (/^Rule/ && $2 == "Japan") {
|
||||
+ if ($0 ~ /^Rule/ && $2 == "Japan") {
|
||||
if (DATAFORM == "rearguard") {
|
||||
if ($7 == "Sat>=8" && $8 == "25:00") {
|
||||
sub(/Sat>=8/, "Sun>=9")
|
||||
@@ -250,7 +251,7 @@ DATAFORM != "main" {
|
||||
# In rearguard form, change the Morocco lines with negative SAVE values
|
||||
# to use positive SAVE values.
|
||||
if ($2 == "Morocco") {
|
||||
- if (/^Rule/) {
|
||||
+ if ($0 ~ /^Rule/) {
|
||||
if ($4 ~ /^201[78]$/ && $6 == "Oct") {
|
||||
if (DATAFORM == "rearguard") {
|
||||
sub(/\t2018\t/, "\t2017\t")
|
||||
@@ -290,8 +291,10 @@ DATAFORM != "main" {
|
||||
/^Zone/ {
|
||||
packrat_ignored = FILENAME == PACKRATDATA && PACKRATLIST && !packratlist[$2];
|
||||
}
|
||||
-packrat_ignored && !/^Rule/ {
|
||||
- sub(/^/, "#")
|
||||
+{
|
||||
+ if (packrat_ignored && $0 !~ /^Rule/) {
|
||||
+ sub(/^/, "#")
|
||||
+ }
|
||||
}
|
||||
|
||||
# If a Link line is followed by a Link or Zone line for the same data, comment
|
||||
--
|
||||
2.34.1
|
||||
|
||||
|
|
@ -1,13 +1,13 @@
|
|||
diff -Nrup a/Makefile b/Makefile
|
||||
--- a/Makefile 2020-10-13 15:58:12.000000000 -0400
|
||||
+++ b/Makefile 2020-10-13 16:03:09.461302282 -0400
|
||||
@@ -60,7 +60,7 @@ LOCALTIME= GMT
|
||||
--- a/Makefile 2023-03-22 17:41:49.069789592 -0400
|
||||
+++ b/Makefile 2023-03-22 17:44:07.528427093 -0400
|
||||
@@ -52,7 +52,7 @@ LOCALTIME= Factory
|
||||
# make zonenames
|
||||
# to get a list of the values you can use for POSIXRULES.
|
||||
|
||||
-POSIXRULES= -
|
||||
+POSIXRULES= America/New_York
|
||||
+POSIXRULES= America/New_York
|
||||
|
||||
# Also see TZDEFRULESTRING below, which takes effect only
|
||||
# if the time zone files cannot be accessed.
|
||||
Binary files a/tzdata2020b-rearguard.tar.gz and b/tzdata2020b-rearguard.tar.gz differ
|
||||
# if POSIXRULES is '-' or if the template file cannot be accessed.
|
||||
Binary files a/tzdata2023a-rearguard.tar.gz and b/tzdata2023a-rearguard.tar.gz differ
|
||||
|
|
|
|||
4
sources
4
sources
|
|
@ -1,4 +1,4 @@
|
|||
SHA512 (javazic.tar.gz) = c23a4a437a87d0792f23e98025520a11273fc3d12ef5dcf64af8332ed60ba9ce77eaadfd234cee92b3ca9dc08b9e4123e804745925d68ddbd0b2e1e9039e526b
|
||||
SHA512 (javazic-1.8-37392f2f5d59.tar.xz) = 2ba718dfeed53a3bd6b44e3dfe96338a609e482e4e6d942e2a7e622fc6c52606cb323ac3a59739c463e34f70fff217c0a61f5b3d3c4958eff2801b1504ee4204
|
||||
SHA512 (tzdata2021e.tar.gz) = c1e8d04e049157ed5d4af0868855bbd75517e3d7e1db9c41d5283ff260109de46b6fac6be94828201d093e163d868044ac2a9db2bf0aeab800e264d0c73a9119
|
||||
SHA512 (tzcode2021e.tar.gz) = 87b0335129ea41c5f42f687f548712e5da892baa8494cecf5d34851beceecf6ae52f22104696ed187713cf9e502570eb2041e277dfd3c043c11d0253bfde685a
|
||||
SHA512 (tzcode2023c.tar.gz) = fa18bae9c0e7c061bc9d5f5f2eb9967f0e4ddb2baafdee9887fa30cd0c60f4aa6f21eacffb17df0d59d26ff54d08c5dcefa98159309eba497e86443624913a82
|
||||
SHA512 (tzdata2023c.tar.gz) = 608bd286ebcbd0004cfdc1da183273f08aff61f90c8867661154453d77a05d421e4c46ad6d066a1fe2e87d5c82ec0f1c0224667a3b35f3180a3eb7f6ff84cbf5
|
||||
|
|
|
|||
69
tzdata.spec
69
tzdata.spec
|
|
@ -1,9 +1,9 @@
|
|||
Summary: Timezone data
|
||||
Name: tzdata
|
||||
Version: 2021e
|
||||
%define tzdata_version 2021e
|
||||
%define tzcode_version 2021e
|
||||
Release: 3%{?dist}
|
||||
Version: 2023c
|
||||
%define tzdata_version 2023c
|
||||
%define tzcode_version 2023c
|
||||
Release: 1%{?dist}
|
||||
License: Public Domain
|
||||
URL: https://www.iana.org/time-zones
|
||||
Source0: ftp://ftp.iana.org/tz/releases/tzdata%{tzdata_version}.tar.gz
|
||||
|
|
@ -152,6 +152,67 @@ install -p -m 644 tzdb.dat $RPM_BUILD_ROOT%{_datadir}/javazi-1.8/
|
|||
%{_datadir}/javazi-1.8
|
||||
|
||||
%changelog
|
||||
* Wed Mar 29 2023 Patsy Griffin <patsy@redhat.com> - 2023c-1
|
||||
- Rebase to tzdata-2023c
|
||||
- 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.
|
||||
|
||||
* 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.
|
||||
|
||||
* 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
|
||||
2022-11-30.
|
||||
- Added a new Zone America/Ciudad_Juarez that splits from
|
||||
America/Ojinaga.
|
||||
|
||||
* 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.
|
||||
|
||||
* 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.
|
||||
|
||||
* Sun Sep 25 2022 Patsy Griffin <patsy@redhat.com> - 2022d-1
|
||||
- Rebase to tzdata-2022d
|
||||
- Palestine DST transition will be on October 29, 2022,
|
||||
not October 28, 2022.
|
||||
- Europe/Uzhgorod and Europe/Zaporozhye are moved to 'backzone'.
|
||||
|
||||
* 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.
|
||||
|
||||
* 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.
|
||||
|
||||
* Mon Apr 25 2022 Patsy Griffin <patsy@redhat.com> - 2022a-2
|
||||
- Bump release and rebuild to prevent warnings about downgrade caused by
|
||||
fix to f35 test issue.
|
||||
|
||||
* Wed Mar 23 2022 Patsy Griffin <patsy@redhat.com> - 2022a-1
|
||||
- Rebase to tzdata-2022a
|
||||
- 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.
|
||||
|
||||
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 2021e-3
|
||||
- Rebuilt for java-17-openjdk as system jdk
|
||||
- to keep the legacy tzdata, now build requires both jdk8 and system jdk.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue