Sync from SUSE:SLFO:Main timezone revision af97df912c405674f65fc9abbc674b08
This commit is contained in:
parent
c4fffb60ce
commit
2e29e6951d
@ -1,4 +0,0 @@
|
|||||||
<multibuild>
|
|
||||||
<package>timezone-java</package>
|
|
||||||
</multibuild>
|
|
||||||
|
|
@ -2,11 +2,3 @@
|
|||||||
# This script is called automatically during autobuild checkin.
|
# This script is called automatically during autobuild checkin.
|
||||||
|
|
||||||
ln -f timezone.changes timezone-java.changes
|
ln -f timezone.changes timezone-java.changes
|
||||||
|
|
||||||
for spec in timezone-java.spec; do
|
|
||||||
{ sed -n -e '1,/COMMON-BEGIN/p' $spec.in
|
|
||||||
sed -n -e '/COMMON-BEGIN/,/COMMON-END/p' timezone.spec
|
|
||||||
sed -n -e '/COMMON-END/,/COMMON-PREP-BEGIN/p' $spec.in
|
|
||||||
sed -n -e '/COMMON-PREP-BEGIN/,/COMMON-PREP-END/p' timezone.spec
|
|
||||||
sed -n -e '/COMMON-PREP-END/,$p' $spec.in; } > $spec.tmp && mv $spec.tmp $spec
|
|
||||||
done
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,95 +0,0 @@
|
|||||||
#
|
|
||||||
# spec file for package timezone-java
|
|
||||||
#
|
|
||||||
# Copyright (c) 2023 SUSE LLC
|
|
||||||
#
|
|
||||||
# All modifications and additions to the file contributed by third parties
|
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
|
||||||
# upon. The license for this file, and modifications and additions to the
|
|
||||||
# file, is the same license as for the pristine package itself (unless the
|
|
||||||
# license for the pristine package is not an Open Source License, in which
|
|
||||||
# case the license is the MIT License). An "Open Source License" is a
|
|
||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
|
||||||
# published by the Open Source Initiative.
|
|
||||||
|
|
||||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
||||||
#
|
|
||||||
|
|
||||||
|
|
||||||
Name: timezone-java
|
|
||||||
BuildRequires: java
|
|
||||||
BuildRequires: javazic
|
|
||||||
BuildRequires: tzdb
|
|
||||||
Summary: Time Zone Descriptions
|
|
||||||
License: BSD-3-Clause AND SUSE-Public-Domain
|
|
||||||
Group: System/Base
|
|
||||||
# COMMON-BEGIN
|
|
||||||
# COMMON-BEGIN
|
|
||||||
Version: 2023c
|
|
||||||
Release: 0
|
|
||||||
Source: https://www.iana.org/time-zones/repository/releases/tzdata%{version}.tar.gz
|
|
||||||
Source1: https://www.iana.org/time-zones/repository/releases/tzcode%{version}.tar.gz
|
|
||||||
Source2: https://www.iana.org/time-zones/repository/releases/tzdata%{version}.tar.gz.asc
|
|
||||||
Source3: https://www.iana.org/time-zones/repository/releases/tzcode%{version}.tar.gz.asc
|
|
||||||
Source4: timezone.keyring
|
|
||||||
Source5: %{name}.changes
|
|
||||||
Patch0: tzdata-china.diff
|
|
||||||
Patch3: iso3166-uk.diff
|
|
||||||
Patch4: timezone-2018f-bsc1112310.patch
|
|
||||||
Patch5: fat.patch
|
|
||||||
# COMMON-END
|
|
||||||
# COMMON-END
|
|
||||||
URL: https://www.iana.org/time-zones
|
|
||||||
Requires(pre): filesystem, coreutils
|
|
||||||
Provides: tzdata-java = %{version}-%{release}
|
|
||||||
Provides: tzdata-java8 = %{version}-%{release}
|
|
||||||
#!BuildIgnore: tzdata-java tzdata-java8
|
|
||||||
BuildArch: noarch
|
|
||||||
|
|
||||||
%description
|
|
||||||
These are configuration files that describe available time zones - this
|
|
||||||
package is intended for Java Virtual Machine based on OpenJDK.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%setup -c -a 1
|
|
||||||
# COMMON-PREP-BEGIN
|
|
||||||
# COMMON-PREP-BEGIN
|
|
||||||
%patch0 -p1
|
|
||||||
%patch3 -p1
|
|
||||||
%patch4 -p1
|
|
||||||
%patch5 -p1
|
|
||||||
sed -ri 's@/usr/local/etc/zoneinfo@%{_datadir}/zoneinfo@g' *.[1358]
|
|
||||||
# COMMON-PREP-END
|
|
||||||
# COMMON-PREP-END
|
|
||||||
|
|
||||||
echo "tzdata%{version}" >> VERSION
|
|
||||||
|
|
||||||
%build
|
|
||||||
# Java 6/7 data
|
|
||||||
java \
|
|
||||||
%if %{?pkg_vcmp:%pkg_vcmp java >= 9}%{!?pkg_vcmp:0}
|
|
||||||
--add-exports=java.base/sun.security.action=ALL-UNNAMED \
|
|
||||||
%endif
|
|
||||||
-jar %{_javadir}/javazic.jar -V %{version} \
|
|
||||||
-d javazi \
|
|
||||||
africa antarctica asia australasia europe northamerica \
|
|
||||||
southamerica backward etcetera \
|
|
||||||
%{_datadir}/javazic/tzdata_jdk/gmt \
|
|
||||||
%{_datadir}/javazic/tzdata_jdk/jdk11_backward
|
|
||||||
# Java 8/9 data
|
|
||||||
java -jar %{_javadir}/tzdb.jar \
|
|
||||||
-srcdir . -dstfile javazi/tzdb.dat \
|
|
||||||
africa antarctica asia australasia europe northamerica \
|
|
||||||
southamerica backward etcetera \
|
|
||||||
%{_datadir}/tzdb/tzdata_jdk/gmt \
|
|
||||||
%{_datadir}/tzdb/tzdata_jdk/jdk11_backward
|
|
||||||
|
|
||||||
%install
|
|
||||||
install -d -m 0755 $RPM_BUILD_ROOT/%{_datadir}
|
|
||||||
cp -a javazi $RPM_BUILD_ROOT%{_datadir}
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_datadir}/javazi
|
|
||||||
|
|
||||||
%changelog
|
|
@ -1,76 +0,0 @@
|
|||||||
#
|
|
||||||
# spec file for package timezone-java
|
|
||||||
#
|
|
||||||
# Copyright (c) 2023 SUSE LLC
|
|
||||||
#
|
|
||||||
# All modifications and additions to the file contributed by third parties
|
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
|
||||||
# upon. The license for this file, and modifications and additions to the
|
|
||||||
# file, is the same license as for the pristine package itself (unless the
|
|
||||||
# license for the pristine package is not an Open Source License, in which
|
|
||||||
# case the license is the MIT License). An "Open Source License" is a
|
|
||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
|
||||||
# published by the Open Source Initiative.
|
|
||||||
|
|
||||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
||||||
#
|
|
||||||
|
|
||||||
|
|
||||||
Name: timezone-java
|
|
||||||
BuildRequires: java
|
|
||||||
BuildRequires: javazic
|
|
||||||
BuildRequires: tzdb
|
|
||||||
Summary: Time Zone Descriptions
|
|
||||||
License: BSD-3-Clause AND SUSE-Public-Domain
|
|
||||||
Group: System/Base
|
|
||||||
# COMMON-BEGIN
|
|
||||||
# COMMON-END
|
|
||||||
URL: https://www.iana.org/time-zones
|
|
||||||
Requires(pre): filesystem, coreutils
|
|
||||||
Provides: tzdata-java = %{version}-%{release}
|
|
||||||
Provides: tzdata-java8 = %{version}-%{release}
|
|
||||||
#!BuildIgnore: tzdata-java tzdata-java8
|
|
||||||
BuildArch: noarch
|
|
||||||
|
|
||||||
%description
|
|
||||||
These are configuration files that describe available time zones - this
|
|
||||||
package is intended for Java Virtual Machine based on OpenJDK.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%setup -c -a 1
|
|
||||||
# COMMON-PREP-BEGIN
|
|
||||||
# COMMON-PREP-END
|
|
||||||
|
|
||||||
echo "tzdata%{version}" >> VERSION
|
|
||||||
|
|
||||||
%build
|
|
||||||
# Java 6/7 data
|
|
||||||
java \
|
|
||||||
%if %{?pkg_vcmp:%pkg_vcmp java >= 9}%{!?pkg_vcmp:0}
|
|
||||||
--add-exports=java.base/sun.security.action=ALL-UNNAMED \
|
|
||||||
%endif
|
|
||||||
-jar %{_javadir}/javazic.jar -V %{version} \
|
|
||||||
-d javazi \
|
|
||||||
africa antarctica asia australasia europe northamerica \
|
|
||||||
southamerica backward etcetera \
|
|
||||||
%{_datadir}/javazic/tzdata_jdk/gmt \
|
|
||||||
%{_datadir}/javazic/tzdata_jdk/jdk11_backward
|
|
||||||
# Java 8/9 data
|
|
||||||
java -jar %{_javadir}/tzdb.jar \
|
|
||||||
-srcdir . -dstfile javazi/tzdb.dat \
|
|
||||||
africa antarctica asia australasia europe northamerica \
|
|
||||||
southamerica backward etcetera \
|
|
||||||
%{_datadir}/tzdb/tzdata_jdk/gmt \
|
|
||||||
%{_datadir}/tzdb/tzdata_jdk/jdk11_backward
|
|
||||||
|
|
||||||
%install
|
|
||||||
install -d -m 0755 $RPM_BUILD_ROOT/%{_datadir}
|
|
||||||
cp -a javazi $RPM_BUILD_ROOT%{_datadir}
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_datadir}/javazi
|
|
||||||
|
|
||||||
%changelog
|
|
105
timezone.changes
105
timezone.changes
@ -1,3 +1,105 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 12 04:53:13 UTC 2024 - Martin Schreiner <martin.schreiner@suse.com>
|
||||||
|
|
||||||
|
- Update to 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.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 2 14:03:38 UTC 2024 - Dan Čermák <dcermak@suse.com>
|
||||||
|
|
||||||
|
- Split tzselect script into a subpackage to prevent awk getting into minimal
|
||||||
|
containers and recommend tzselect by the main package
|
||||||
|
Fixes bsc#1230054
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 21 18:16:35 UTC 2024 - Martin Schreiner <martin.schreiner@suse.com>
|
||||||
|
|
||||||
|
- Unify SLE-15-SP6 and Factory packages (PED#8158).
|
||||||
|
This is still related to bsc#1213470. We're applying this fix for
|
||||||
|
SLE-15-SP6 too. This changelog entry is meant to bring over the SLE
|
||||||
|
information, so the same package can be used for both code streams.
|
||||||
|
- This patch has long been removed on Factory but was never mentioned
|
||||||
|
explicitly, it was related to ticket bsc#1202310, a minor update to
|
||||||
|
reflect Chile's DST change back in 2022.
|
||||||
|
* bsc1202310.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Mar 18 11:46:27 UTC 2024 - Ludwig Nussel <lnussel@suse.com>
|
||||||
|
|
||||||
|
- Use /bin/sh for tzselect. Used to require bash for the 'select'
|
||||||
|
builtin but has a fallback meanwhile so no need for explicit bash
|
||||||
|
anymore.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 14 12:32:28 UTC 2024 - Martin Schreiner <martin.schreiner@suse.com>
|
||||||
|
|
||||||
|
- Drop the timezone-java (bsc#1213470).
|
||||||
|
After thorough consideration of possible problems that arise from
|
||||||
|
having a timezone package specifically for the Java ecosystem,
|
||||||
|
Fridrich Strba and I have decided to drop the package altogether.
|
||||||
|
Doing so means the JDK will use its built-in timezone data that is
|
||||||
|
updated quarterly, when refreshed JDK versions are released.
|
||||||
|
While this does mean there could be situations where there is a bit
|
||||||
|
of a mismatch between the 'timezone' package's data, and the data
|
||||||
|
that is used by JDK, in practice the difference will be minimal and
|
||||||
|
short-lived.
|
||||||
|
So we've established this to be the best course of action.
|
||||||
|
- Remove _multibuild, not longer required.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 1 20:17:40 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
|
- Update to 2024a:
|
||||||
|
* Kazakhstan unifies on UTC+5 beginning 2024-03-01
|
||||||
|
* Palestine springs forward a week later after Ramadan
|
||||||
|
* zic no longer pretends to support indefinite-past DST
|
||||||
|
* localtime no longer mishandles Ciudad Juárez in 2422
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 27 11:45:45 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 2023d:
|
||||||
|
* Ittoqqortoormiit, Greenland changes time zones on
|
||||||
|
2024-03-31.
|
||||||
|
* Vostok, Antarctica changed time zones on 2023-12-18.
|
||||||
|
* Casey, Antarctica changed time zones five times since
|
||||||
|
2020.
|
||||||
|
* Code and data fixes for Palestine timestamps starting in
|
||||||
|
2072.
|
||||||
|
* A new data file zonenow.tab for timestamps starting now.
|
||||||
|
* Fix predictions for DST transitions in Palestine in
|
||||||
|
2072-2075, correcting a typo introduced in 2023a.
|
||||||
|
* Vostok, Antarctica changed to +05 on 2023-12-18. It had
|
||||||
|
been at +07 (not +06) for years.
|
||||||
|
* Change data for Casey, Antarctica to agree with
|
||||||
|
timeanddate.com, by adding five time zone changes since 2020.
|
||||||
|
Casey is now at +08 instead of +11.
|
||||||
|
* Much of Greenland, represented by America/Nuuk, changed
|
||||||
|
its standard time from -03 to -02 on 2023-03-25, not on
|
||||||
|
2023-10-28.
|
||||||
|
* localtime.c no longer mishandles TZif files that contain
|
||||||
|
a single transition into a DST regime. Previously,
|
||||||
|
it incorrectly assumed DST was in effect before the transition
|
||||||
|
too.
|
||||||
|
* tzselect no longer creates temporary files.
|
||||||
|
* tzselect no longer mishandles the following:
|
||||||
|
* Spaces and most other special characters in BUGEMAIL,
|
||||||
|
PACKAGE, TZDIR, and VERSION.
|
||||||
|
* TZ strings when using mawk 1.4.3, which mishandles
|
||||||
|
regular expressions of the form /X{2,}/.
|
||||||
|
* ISO 6709 coordinates when using an awk that lacks the
|
||||||
|
GNU extension of newlines in -v option-arguments.
|
||||||
|
* Non UTF-8 locales when using an iconv command that
|
||||||
|
lacks the GNU //TRANSLIT extension.
|
||||||
|
* zic no longer mishandles data for Palestine after the
|
||||||
|
year 2075.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 29 06:03:39 UTC 2023 - Andreas Stieger <andreas.stieger@gmx.de>
|
Wed Mar 29 06:03:39 UTC 2023 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
@ -187,7 +289,8 @@ Wed Dec 23 06:55:02 UTC 2020 - Markéta Machová <mmachova@suse.com>
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 30 11:43:21 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
|
Fri Oct 30 11:43:21 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
|
||||||
|
|
||||||
- Add fat.patch to generate "fat" timezone files (was default before 2020b).
|
- Add fat.patch to generate "fat" timezone files (was default before 2020b)
|
||||||
|
bsc#1178346
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 23 09:24:02 UTC 2020 - Andreas Stieger <andreas.stieger@gmx.de>
|
Fri Oct 23 09:24:02 UTC 2020 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
#
|
#
|
||||||
# spec file for package timezone
|
# spec file for package timezone
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
|
# Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de>
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,14 +17,15 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%global AREA Etc
|
||||||
|
%global ZONE UTC
|
||||||
Name: timezone
|
Name: timezone
|
||||||
|
Version: 2024b
|
||||||
|
Release: 0
|
||||||
Summary: Time Zone Descriptions
|
Summary: Time Zone Descriptions
|
||||||
License: BSD-3-Clause AND SUSE-Public-Domain
|
License: BSD-3-Clause AND SUSE-Public-Domain
|
||||||
Group: System/Base
|
Group: System/Base
|
||||||
URL: http://www.iana.org/time-zones
|
URL: https://www.iana.org/time-zones
|
||||||
# COMMON-BEGIN
|
|
||||||
Version: 2023c
|
|
||||||
Release: 0
|
|
||||||
Source: https://www.iana.org/time-zones/repository/releases/tzdata%{version}.tar.gz
|
Source: https://www.iana.org/time-zones/repository/releases/tzdata%{version}.tar.gz
|
||||||
Source1: https://www.iana.org/time-zones/repository/releases/tzcode%{version}.tar.gz
|
Source1: https://www.iana.org/time-zones/repository/releases/tzcode%{version}.tar.gz
|
||||||
Source2: https://www.iana.org/time-zones/repository/releases/tzdata%{version}.tar.gz.asc
|
Source2: https://www.iana.org/time-zones/repository/releases/tzdata%{version}.tar.gz.asc
|
||||||
@ -34,26 +36,25 @@ Patch0: tzdata-china.diff
|
|||||||
Patch3: iso3166-uk.diff
|
Patch3: iso3166-uk.diff
|
||||||
Patch4: timezone-2018f-bsc1112310.patch
|
Patch4: timezone-2018f-bsc1112310.patch
|
||||||
Patch5: fat.patch
|
Patch5: fat.patch
|
||||||
# COMMON-END
|
Recommends: tzselect
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
|
|
||||||
%global AREA Etc
|
|
||||||
%global ZONE UTC
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
These are configuration files that describe available time zones. You
|
These are configuration files that describe available time zones. You
|
||||||
can select an appropriate time zone for your system with YaST.
|
can select an appropriate time zone for your system with YaST.
|
||||||
|
|
||||||
%prep
|
%package -n tzselect
|
||||||
%setup -q -c -a 1
|
Requires: %{name} = %{version}
|
||||||
# COMMON-PREP-BEGIN
|
Requires: awk
|
||||||
%patch0 -p1
|
Summary: Helper script to select the timezone
|
||||||
%patch3 -p1
|
BuildArch: noarch
|
||||||
%patch4 -p1
|
Provides: %{name}:/usr/bin/tzselect
|
||||||
%patch5 -p1
|
|
||||||
sed -ri 's@/usr/local/etc/zoneinfo@%{_datadir}/zoneinfo@g' *.[1358]
|
|
||||||
# COMMON-PREP-END
|
|
||||||
|
|
||||||
|
%description -n tzselect
|
||||||
|
This package contains a helper script to select the timezone.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1 -c -a1
|
||||||
|
sed -ri 's@%{_prefix}/local%{_sysconfdir}/zoneinfo@%{_datadir}/zoneinfo@g' *.[1358]
|
||||||
touch version
|
touch version
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -63,40 +64,43 @@ LC_ALL=POSIX
|
|||||||
AREA=%{AREA}
|
AREA=%{AREA}
|
||||||
ZONE=%{ZONE}
|
ZONE=%{ZONE}
|
||||||
export AREA LANG LC_ALL ZONE
|
export AREA LANG LC_ALL ZONE
|
||||||
make %{?_smp_mflags} TZDIR=%{_datadir}/zoneinfo CFLAGS="%{optflags} -DHAVE_GETTEXT=1 -DTZDEFAULT='\"/etc/localtime\"' -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone -Dlint" AWK=awk BUGEMAIL="opensuse-support@opensuse.org"
|
%make_build TZDIR=%{_datadir}/zoneinfo CC="gcc" CFLAGS="%{optflags} -DHAVE_GETTEXT=1 -DTZDEFAULT='\"%{_sysconfdir}/localtime\"' -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone -Dlint" AWK=awk BUGEMAIL="opensuse-support@opensuse.org" KSHELL=/bin/sh
|
||||||
make %{?_smp_mflags} TZDIR=zoneinfo AWK=awk zones
|
%make_build TZDIR=zoneinfo AWK=awk zones
|
||||||
# Generate posixrules
|
# Generate posixrules
|
||||||
./zic -b fat -y ./yearistype -d zoneinfo -p %{AREA}/%{ZONE}
|
./zic -b fat -y ./yearistype -d zoneinfo -p %{AREA}/%{ZONE}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
mkdir -p %{buildroot}%{_prefix}/share/zoneinfo
|
mkdir -p %{buildroot}%{_datadir}/zoneinfo
|
||||||
cp -a zoneinfo %{buildroot}%{_prefix}/share/zoneinfo/posix
|
cp -a zoneinfo %{buildroot}%{_datadir}/zoneinfo/posix
|
||||||
cp -al %{buildroot}%{_prefix}/share/zoneinfo/posix/. %{buildroot}%{_prefix}/share/zoneinfo
|
cp -al %{buildroot}%{_datadir}/zoneinfo/posix/. %{buildroot}%{_datadir}/zoneinfo
|
||||||
cp -a zoneinfo-leaps %{buildroot}%{_prefix}/share/zoneinfo/right
|
cp -a zoneinfo-leaps %{buildroot}%{_datadir}/zoneinfo/right
|
||||||
mkdir -p %{buildroot}/etc
|
mkdir -p %{buildroot}%{_sysconfdir}
|
||||||
rm -f %{buildroot}/etc/localtime
|
rm -f %{buildroot}%{_sysconfdir}/localtime
|
||||||
rm -f %{buildroot}%{_prefix}/share/zoneinfo/posixrules
|
rm -f %{buildroot}%{_datadir}/zoneinfo/posixrules
|
||||||
%if 0%{?suse_version} >= 1230
|
%if 0%{?suse_version} >= 1230
|
||||||
ln -sf %{_prefix}/share/zoneinfo/%{AREA}/%{ZONE} %{buildroot}/etc/localtime
|
ln -sf %{_datadir}/zoneinfo/%{AREA}/%{ZONE} %{buildroot}%{_sysconfdir}/localtime
|
||||||
%else
|
%else
|
||||||
cp -fp %{buildroot}%{_prefix}/share/zoneinfo/%{AREA}/%{ZONE} %{buildroot}/etc/localtime
|
cp -fp %{buildroot}%{_datadir}/zoneinfo/%{AREA}/%{ZONE} %{buildroot}%{_sysconfdir}/localtime
|
||||||
%endif
|
%endif
|
||||||
ln -sf /etc/localtime %{buildroot}%{_prefix}/share/zoneinfo/posixrules
|
ln -sf %{_sysconfdir}/localtime %{buildroot}%{_datadir}/zoneinfo/posixrules
|
||||||
install -m 644 iso3166.tab %{buildroot}%{_prefix}/share/zoneinfo/iso3166.tab
|
install -m 644 iso3166.tab %{buildroot}%{_datadir}/zoneinfo/iso3166.tab
|
||||||
install -m 644 zone.tab %{buildroot}%{_prefix}/share/zoneinfo/zone.tab
|
install -m 644 zone.tab %{buildroot}%{_datadir}/zoneinfo/zone.tab
|
||||||
install -m 644 zone1970.tab %{buildroot}%{_prefix}/share/zoneinfo/zone1970.tab
|
install -m 644 zone1970.tab %{buildroot}%{_datadir}/zoneinfo/zone1970.tab
|
||||||
install -m 644 tzdata.zi %{buildroot}%{_prefix}/share/zoneinfo/tzdata.zi
|
install -m 644 tzdata.zi %{buildroot}%{_datadir}/zoneinfo/tzdata.zi
|
||||||
install -D -m 755 tzselect %{buildroot}%{_bindir}/tzselect
|
install -D -m 755 tzselect %{buildroot}%{_bindir}/tzselect
|
||||||
install -D -m 755 zdump %{buildroot}%{_sbindir}/zdump
|
install -D -m 755 zdump %{buildroot}%{_sbindir}/zdump
|
||||||
install -D -m 755 zic %{buildroot}%{_sbindir}/zic
|
install -D -m 755 zic %{buildroot}%{_sbindir}/zic
|
||||||
install -m 644 -t %{buildroot}%{_datadir}/zoneinfo/ leapseconds leapseconds.awk leap-seconds.list
|
install -m 644 -t %{buildroot}%{_datadir}/zoneinfo/ leapseconds leapseconds.awk leap-seconds.list
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%license LICENSE
|
||||||
%verify(not link md5 size mtime) %config(missingok,noreplace) /etc/localtime
|
%verify(not link md5 size mtime) %config(missingok,noreplace) %{_sysconfdir}/localtime
|
||||||
%{_datadir}/zoneinfo
|
%{_datadir}/zoneinfo
|
||||||
%{_bindir}/tzselect
|
|
||||||
%{_sbindir}/zdump
|
%{_sbindir}/zdump
|
||||||
%{_sbindir}/zic
|
%{_sbindir}/zic
|
||||||
|
|
||||||
|
%files -n tzselect
|
||||||
|
%license LICENSE
|
||||||
|
%{_bindir}/tzselect
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
BIN
tzcode2023c.tar.gz
(Stored with Git LFS)
BIN
tzcode2023c.tar.gz
(Stored with Git LFS)
Binary file not shown.
@ -1,16 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iQIzBAABCgAdFiEEfjeSqdis99YzvBWI7ZfpDmKqfjQFAmQjQ8MACgkQ7ZfpDmKq
|
|
||||||
fjTp4BAAvitWlH49WQ+Cfs//1bBy7ifW1I5PNXSZFIDSNsZUGhrXOkZ/b6l3jAEF
|
|
||||||
Z76GL7PQb5d/QHdKAIYeDheGnGf/8Wh4PFGzBkiyZgEdeZk6QLtE1n71Fu1x7gca
|
|
||||||
IQOmVTzwVAf9f+fbizsaTarqg30TnPzUsuHiljInOaV8GkTt0VUkIZ5LeH09kdpY
|
|
||||||
Rq6BIiehGikkBLyvCpyCTGZ4H8IKgR0GMkIHWQwj0mw/WROnT+xAfzTUrtD7zJK2
|
|
||||||
5+Ek2kj0UDB9DbprIkCZyh56W1OZ4m5OuAd9wHdx1ZOPfE6jq0lm+2B2kX4759mQ
|
|
||||||
U66wyATu1qqqlc/2HUe464SWCyNTEDGbCCygfryInKd9Y+QORhK9yOsDfskVcGgX
|
|
||||||
qTE2U20YzMqHP34fgTUsOC+mQ9e+qR1CvnCGAv3y1wpUIj1r9Opq7cI1uCvVE6xn
|
|
||||||
nJhU1oE+z4HjhT2TZSS+gVM8D6p+z096sOkRnFg+mIh7XzSYYSFRojcGLnSAkg+o
|
|
||||||
K68yPfXPu0subUGi5dH1XLQQYM0v0sqCATu5jKwU4YyyHoUuWDi9mooReAkSaj+y
|
|
||||||
KON+VuYMRZZfJqzdc0HcXUsqlY/nK6/INRbtgvEKlMRLBn5oGbWIRnlyQvJA814v
|
|
||||||
fsaewl80tRZAtXs/hwHrSGX1vxMkMaaDk5frG9BG/EkupBZa/rk=
|
|
||||||
=fwRN
|
|
||||||
-----END PGP SIGNATURE-----
|
|
BIN
tzcode2024b.tar.gz
(Stored with Git LFS)
Normal file
BIN
tzcode2024b.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
16
tzcode2024b.tar.gz.asc
Normal file
16
tzcode2024b.tar.gz.asc
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iQIzBAABCgAdFiEEfjeSqdis99YzvBWI7ZfpDmKqfjQFAmbYtYgACgkQ7ZfpDmKq
|
||||||
|
fjTPkRAAvusnEE+0TDcfXqA/eEr4LksyAWMjLcIU+xakuXqbBGbGZIeEeDjT58f5
|
||||||
|
IWhKZyEc6JPgL9T/0TSBUW0IwC8JqiYkK3oovQPlcQkufwkCe2GNqAEWVRuT9Y4H
|
||||||
|
trFGM53tNJJA6GySNBCvtaglIkj7vCQJ+gQ/NACEcxlxypy0TRRqAG9ZcUT8HpRI
|
||||||
|
Hh5+TTBJdxG9PqLBI/INbKlEvpFovMjV0UXvlqfO/R2vanZTOlanjW3/g0PgzcfO
|
||||||
|
GvNRTC8R0N49rrieGj4iUUDPaSi7rPW9hLX6OQDc3ASUjTXHw7uL1fkVTCUdF+so
|
||||||
|
f6r9UTrTjOofQOjziR1BfA+SRv79mWOLSxW+yJDYLPkPjEEIUnmIoIoSrDXdqXC3
|
||||||
|
p7nWOJzFGEw7Q8FBBzOtcFPOiLohNe+zg3reAy4P5Uw8P8DeYm0T/jaZUQGLF2gx
|
||||||
|
Xp60+KkzGuorfzPECqzUW4RNT/+7hVChf+bxRQ14upnpx+rjBxZMX9lFEzismF4p
|
||||||
|
v3cCAPJ038CHDSXkwnBefKRLoWhzbov/MxJ+FgbksuhlaO/0OdQsP4e8tv8RhvHk
|
||||||
|
tTl07n7tU8NPO1J6osEIRXggVKW/fo+ifCtmkHqvE21vtSq1NccYZYphkvZlQdmk
|
||||||
|
oHFyAIxRdgEv2iS4KGlXeY062ZiSKAy0LdhEIFcGr59bLE9wPuA=
|
||||||
|
=tdRE
|
||||||
|
-----END PGP SIGNATURE-----
|
@ -1,7 +1,7 @@
|
|||||||
Index: timezone-2023a/asia
|
Index: timezone-2023d/asia
|
||||||
===================================================================
|
===================================================================
|
||||||
--- timezone-2023a.orig/asia
|
--- timezone-2023d.orig/asia
|
||||||
+++ timezone-2023a/asia
|
+++ timezone-2023d/asia
|
||||||
@@ -653,6 +653,8 @@ Rule PRC 1987 1991 - Apr Sun>=11 2:00 1
|
@@ -653,6 +653,8 @@ Rule PRC 1987 1991 - Apr Sun>=11 2:00 1
|
||||||
Zone Asia/Shanghai 8:05:43 - LMT 1901
|
Zone Asia/Shanghai 8:05:43 - LMT 1901
|
||||||
8:00 Shang C%sT 1949 May 28
|
8:00 Shang C%sT 1949 May 28
|
||||||
@ -10,11 +10,11 @@ Index: timezone-2023a/asia
|
|||||||
+Link Asia/Shanghai Asia/Beijing
|
+Link Asia/Shanghai Asia/Beijing
|
||||||
# Xinjiang time, used by many in western China; represented by Ürümqi / Ürümchi
|
# Xinjiang time, used by many in western China; represented by Ürümqi / Ürümchi
|
||||||
# / Wulumuqi. (Please use Asia/Shanghai if you prefer Beijing time.)
|
# / Wulumuqi. (Please use Asia/Shanghai if you prefer Beijing time.)
|
||||||
# Vostok base in Antarctica matches this since 1970.
|
Zone Asia/Urumqi 5:50:20 - LMT 1928
|
||||||
Index: timezone-2023a/zone.tab
|
Index: timezone-2023d/zone.tab
|
||||||
===================================================================
|
===================================================================
|
||||||
--- timezone-2023a.orig/zone.tab
|
--- timezone-2023d.orig/zone.tab
|
||||||
+++ timezone-2023a/zone.tab
|
+++ timezone-2023d/zone.tab
|
||||||
@@ -142,6 +142,7 @@ CL -3327-07040 America/Santiago most of
|
@@ -142,6 +142,7 @@ CL -3327-07040 America/Santiago most of
|
||||||
CL -5309-07055 America/Punta_Arenas Region of Magallanes
|
CL -5309-07055 America/Punta_Arenas Region of Magallanes
|
||||||
CL -2709-10926 Pacific/Easter Easter Island
|
CL -2709-10926 Pacific/Easter Easter Island
|
||||||
@ -23,15 +23,15 @@ Index: timezone-2023a/zone.tab
|
|||||||
CN +3114+12128 Asia/Shanghai Beijing Time
|
CN +3114+12128 Asia/Shanghai Beijing Time
|
||||||
CN +4348+08735 Asia/Urumqi Xinjiang Time
|
CN +4348+08735 Asia/Urumqi Xinjiang Time
|
||||||
CO +0436-07405 America/Bogota
|
CO +0436-07405 America/Bogota
|
||||||
Index: timezone-2023a/zone1970.tab
|
Index: timezone-2023d/zone1970.tab
|
||||||
===================================================================
|
===================================================================
|
||||||
--- timezone-2023a.orig/zone1970.tab
|
--- timezone-2023d.orig/zone1970.tab
|
||||||
+++ timezone-2023a/zone1970.tab
|
+++ timezone-2023d/zone1970.tab
|
||||||
@@ -125,6 +125,7 @@ CK -2114-15946 Pacific/Rarotonga
|
@@ -126,6 +126,7 @@ CK -2114-15946 Pacific/Rarotonga
|
||||||
CL -3327-07040 America/Santiago most of Chile
|
CL -3327-07040 America/Santiago most of Chile
|
||||||
CL -5309-07055 America/Punta_Arenas Region of Magallanes
|
CL -5309-07055 America/Punta_Arenas Region of Magallanes
|
||||||
CL -2709-10926 Pacific/Easter Easter Island
|
CL -2709-10926 Pacific/Easter Easter Island
|
||||||
+CN +3955+11626 Asia/Beijing China Standard Time
|
+CN +3955+11626 Asia/Beijing China Standard Time
|
||||||
CN +3114+12128 Asia/Shanghai Beijing Time
|
CN +3114+12128 Asia/Shanghai Beijing Time
|
||||||
CN,AQ +4348+08735 Asia/Urumqi Xinjiang Time, Vostok
|
CN +4348+08735 Asia/Urumqi Xinjiang Time
|
||||||
CO +0436-07405 America/Bogota
|
CO +0436-07405 America/Bogota
|
||||||
|
BIN
tzdata2023c.tar.gz
(Stored with Git LFS)
BIN
tzdata2023c.tar.gz
(Stored with Git LFS)
Binary file not shown.
@ -1,16 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iQIzBAABCgAdFiEEfjeSqdis99YzvBWI7ZfpDmKqfjQFAmQjQ8MACgkQ7ZfpDmKq
|
|
||||||
fjScAg/+LKVw3MFKXvXhDAJX9FPL+ZtvFc+XCwkAxylFA8rrLYjNTo+X7vdyu/AV
|
|
||||||
1YSkQFqPrPJrVMlffRm/NaQI59vOhkIQZ4Ingd0IFzfHIJMSMVU1C359mpUnxgce
|
|
||||||
XLLUA12+Mjo3SEO/QYOZLhkpvzoJ2loPdgAUtraysunZdgYVdOubd8EpbWtZ/d9u
|
|
||||||
cdKJriVWaHwcmEPXmZOcAhjTA2immhIrAd4G1FzuHFJNjdjIzJyXzxATWEk3mQ0z
|
|
||||||
ZOQcpWGzf50OL9Atri4e8Nm4mXjguQHRebfYv8QVHAvxcdjGFc5yqvVrwGaNLGtV
|
|
||||||
oadxHA3J/hmWS7mg7/pYDKabTNeoXrXWEzY8VXRbPnfvtbUXh9g4t9JDlgocHpQQ
|
|
||||||
wAC3Hb/mvMFON68aCPWQeHxcHXOrAm2KHlGblJA9iI364S6v3iK7gd16lzZSbuTy
|
|
||||||
G8jAt7YUilZxyIIV0GVMjQD9oG6bVm6ApccVVIBPHqlW1J09ON0koWRiNGqdbr8F
|
|
||||||
BTh3ORBCo0qU+BvYF6mL9SCIrbGUvr4NdwY9aKaB04HPZz244fD2kLPt1z5v+7K6
|
|
||||||
cQrhdVQ6CqejhlJXRm4cQdeEzJhgxw+cFc256e8WpoofVu5rDws2d2KQZkqHGiFH
|
|
||||||
A5jSKg2PWfZcqPoTdRg19DlUUdDBH8xybXzK5ExjHdDDO7KInGU=
|
|
||||||
=XC0E
|
|
||||||
-----END PGP SIGNATURE-----
|
|
BIN
tzdata2024b.tar.gz
(Stored with Git LFS)
Normal file
BIN
tzdata2024b.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
16
tzdata2024b.tar.gz.asc
Normal file
16
tzdata2024b.tar.gz.asc
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iQIzBAABCgAdFiEEfjeSqdis99YzvBWI7ZfpDmKqfjQFAmbYtYgACgkQ7ZfpDmKq
|
||||||
|
fjRqPA/+N+f7KwPQJYYFtLWudtXxGIVEYDsBtHcqlj20FsdgsKk/9cdm3zKTWFuF
|
||||||
|
a5uKn6plxwN6hmXjrwV7nBV6M8kxeqRP4Zf+rCdNMWhLGSmHmDCU+1m5SPYs/+Xh
|
||||||
|
P2W3pc310pQocGtMIsYoVYrEtQl/K4p7V6jxAaG8QTpWmt0K6RS+LxxfqgKbmq14
|
||||||
|
tU8Jznx/LBFbvEmQxNAGKzq58ce7yexIRRGvetHGWvwafb9+Vv2CiOx+oCS2GeEF
|
||||||
|
APO2UdbZCiUaTJYZPtg2vnk2pGDrTAO/jsEe486iKinVAOkJyBckn/yqykh5NLCk
|
||||||
|
q+MtRngIinrV88KqpmW1OXuAKjJJLXrveAKoZKVbvMuzBAMG1YvAo9CzBwHYfKhW
|
||||||
|
bxLo9q9HyRgci9xoMOeVi1xabTm+NkhbqQuu15rQLlgXoMYm/4x9PbP7JSeuB8N0
|
||||||
|
vyGjyD+tZtDXgPC3AARmpPuabDQQ9BM0RJ5exUOkcAbvYyFE3bVHLPk28iZOzg8r
|
||||||
|
Y/BSUOXIj7Jb+ZOuIkuDRWHvDifTBrpPDDlwY4JWUfRhx2HhrFjD59SJt6kPNsJE
|
||||||
|
KAjVQREtXDtnqu3bZ7AsKzckpFlrlk0vYfeKaL5N3O6iEpggmE0LTWDXRcrzESh5
|
||||||
|
E1uQBnIrS4CHuso1wZRy0FHJYvSKGbRCN3jHyJBRSGgBTFGOuIY=
|
||||||
|
=AXnJ
|
||||||
|
-----END PGP SIGNATURE-----
|
Loading…
x
Reference in New Issue
Block a user