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.
|
||||
|
||||
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
|
255
timezone.changes
255
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>
|
||||
|
||||
@ -106,7 +208,7 @@ Thu Aug 11 12:26:28 UTC 2022 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
Wed Jun 8 18:58:06 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- switch to _multibuild
|
||||
- refresh keyring, enable keyring validation
|
||||
- refresh keyring, enable keyring validation
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 12 13:56:17 UTC 2022 - Fridrich Strba <fstrba@suse.com>
|
||||
@ -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>
|
||||
|
||||
- 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>
|
||||
@ -261,7 +364,7 @@ Thu Sep 12 06:58:19 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com>
|
||||
Tue Jul 2 07:49:42 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com>
|
||||
|
||||
- timezone update 2019b (bsc#1140016):
|
||||
* Brazil no longer observes DST.
|
||||
* Brazil no longer observes DST.
|
||||
* 'zic -b slim' outputs smaller TZif files.
|
||||
* Palestine's 2019 spring-forward transition was on 03-29, not 03-30.
|
||||
* Add info about the Crimea situation in zone1970.tab and zone.tab.
|
||||
@ -271,7 +374,7 @@ Tue Mar 26 11:27:21 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com>
|
||||
|
||||
- timezone update 2019a:
|
||||
* Palestine "springs forward" on 2019-03-30 instead of 2019-03-23
|
||||
* Metlakatla "fell back" to rejoin Alaska Time on 2019-01-20 at
|
||||
* Metlakatla "fell back" to rejoin Alaska Time on 2019-01-20 at
|
||||
02:00
|
||||
* Israel observed DST in 1980 (08-02/09-13) and 1984 (05-05/08-25)
|
||||
* zic now has an -r option to limit the time range of output data
|
||||
@ -401,7 +504,7 @@ Wed Mar 1 08:16:26 UTC 2017 - astieger@suse.com
|
||||
|
||||
- timezone update 2017a:
|
||||
* Mongolia no longer observes DST bsc#1024676
|
||||
* Chile's Region of Magallanes moves from -04/-03 to -03
|
||||
* Chile's Region of Magallanes moves from -04/-03 to -03
|
||||
year-round starting 2017-05-13 23:00, split from
|
||||
America/Santiago creating a new zone America/Punta_Arenas
|
||||
Also affects Antarctica/Palmer. bsc#1024677
|
||||
@ -410,7 +513,7 @@ Wed Mar 1 08:16:26 UTC 2017 - astieger@suse.com
|
||||
* zic no longer mishandles some transitions in January 2038
|
||||
* date and strftime now cause %z to generate "-0000" instead of
|
||||
"+0000" when the UT offset is zero and the time zone
|
||||
abbreviation begins with "-".
|
||||
abbreviation begins with "-".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 24 09:20:48 UTC 2016 - astieger@suse.com
|
||||
@ -449,7 +552,7 @@ Thu Oct 6 19:14:45 UTC 2016 - astieger@suse.com
|
||||
|
||||
- timezone update 2016g:
|
||||
* Turkey will remain on UTC+03 after 2016-10-30 bsc#997830
|
||||
* New leap second 2016-12-31 23:59:60 UTC
|
||||
* New leap second 2016-12-31 23:59:60 UTC
|
||||
Remove 0001-Positive-leap-second-on-2016-12-31.patch
|
||||
* Corrections for past DST transitions
|
||||
* Antarcica and nautical time zones now use numeric time zone
|
||||
@ -520,7 +623,7 @@ Tue Jun 14 21:04:16 UTC 2016 - astieger@suse.com
|
||||
Mon Apr 18 18:05:46 UTC 2016 - astieger@suse.com
|
||||
|
||||
- timezone update 2016d
|
||||
* Venezuela (America/Caracas) switches from -0430 to -04 on
|
||||
* Venezuela (America/Caracas) switches from -0430 to -04 on
|
||||
2016-05-01 at 02:30 [boo#975875]
|
||||
* Asia/Magadan switches from +10 to +11 on 2016-04-24 at 02:00.
|
||||
* New zone Asia/Tomsk, split off from Asia/Novosibirsk. It covers
|
||||
@ -602,7 +705,7 @@ Fri Aug 14 13:06:18 UTC 2015 - astieger@suse.com
|
||||
Sun Jun 14 15:32:39 UTC 2015 - astieger@suse.com
|
||||
|
||||
- timezone update 2015e [boo#934654]
|
||||
* Morocco will suspend DST from 2015-06-14 03:00 through
|
||||
* Morocco will suspend DST from 2015-06-14 03:00 through
|
||||
2015-07-19 02:00, not 06-13 and 07-18 as guessed.
|
||||
* Assume Cayman Islands will observe DST starting next year,
|
||||
using US rules.
|
||||
@ -645,7 +748,7 @@ Thu May 14 12:08:51 UTC 2015 - lchiquitto@suse.com
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 21 23:38:49 UTC 2015 - crrodriguez@opensuse.org
|
||||
|
||||
- Revert initrd generation updates, they add a new build cycle.
|
||||
- Revert initrd generation updates, they add a new build cycle.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 14 06:59:29 UTC 2015 - astieger@suse.com
|
||||
@ -659,7 +762,7 @@ Tue Apr 14 06:59:29 UTC 2015 - astieger@suse.com
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 2 18:21:23 UTC 2015 - crrodriguez@opensuse.org
|
||||
|
||||
- BuildRequire suse-module-tools otherwise initrd macros
|
||||
- BuildRequire suse-module-tools otherwise initrd macros
|
||||
are never defined.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
@ -730,7 +833,7 @@ Tue Nov 11 18:36:37 UTC 2014 - andreas.stieger@gmx.de
|
||||
+ Time zones turned into links when they differed from existing
|
||||
zones only for pre-1970 time stamps:
|
||||
Africa/Addis_Ababa, Africa/Asmara, Africa/Dar_es_Salaam,
|
||||
Africa/Djibouti, Africa/Kampala, Africa/Mogadishu,
|
||||
Africa/Djibouti, Africa/Kampala, Africa/Mogadishu,
|
||||
Indian/Antananarivo, Indian/Comoro, and Indian/Mayotte.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
@ -877,14 +980,14 @@ Wed Oct 2 23:35:00 UTC 2013 - lchiquitto@suse.com
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 1 22:27:14 UTC 2013 - crrodriguez@opensuse.org
|
||||
|
||||
- v2013g
|
||||
- v2013g
|
||||
- changes for Morocco, Asia/Tehran
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 26 01:07:52 UTC 2013 - crrodriguez@opensuse.org
|
||||
|
||||
- v2013f
|
||||
- Tocantins will very likely not observe DST starting this spring.
|
||||
- Tocantins will very likely not observe DST starting this spring.
|
||||
- Jordan will likely stay at UTC+3 indefinitely
|
||||
- Palestine will fall back at 00:00, not 01:00
|
||||
- see NEWS for extra detail.
|
||||
@ -913,7 +1016,7 @@ Sat Sep 21 17:45:59 UTC 2013 - crrodriguez@opensuse.org
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 8 17:28:01 UTC 2013 - dmueller@suse.com
|
||||
|
||||
- restrict symlink change to systemd distros
|
||||
- restrict symlink change to systemd distros
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 8 16:53:30 UTC 2013 - dmueller@suse.com
|
||||
@ -926,8 +1029,8 @@ Mon Jul 8 16:53:30 UTC 2013 - dmueller@suse.com
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 29 20:47:33 UTC 2013 - crrodriguez@opensuse.org
|
||||
|
||||
- /etc/localtime must be a symlink to /usr/share/zoneinfo/$TIMEZONE
|
||||
so systemd-timedated and its command line tool timedatectl
|
||||
- /etc/localtime must be a symlink to /usr/share/zoneinfo/$TIMEZONE
|
||||
so systemd-timedated and its command line tool timedatectl
|
||||
can work correctly. Yast already does the right thing.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
@ -939,14 +1042,14 @@ Sat Apr 20 16:41:02 UTC 2013 - crrodriguez@opensuse.org
|
||||
-------------------------------------------------------------------
|
||||
Sun Mar 10 16:06:46 UTC 2013 - crrodriguez@opensuse.org
|
||||
|
||||
- tzcode and tzdata 2013a
|
||||
- tzcode and tzdata 2013a
|
||||
- Change affecting binary data format:
|
||||
* The zone offset at the end of version-2-format zone files is now
|
||||
allowed to be 24:00, as per POSIX.1-2008. (Thanks to Arthor David Olson.)
|
||||
- Changes affecting current and future time stamps:
|
||||
* Chile's 2013 rules, and we guess rules for 2014 and later, will be
|
||||
the same as 2012, namely Apr Sun>=23 03:00 UTC to Sep Sun>=2 04:00 UTC.
|
||||
*New Zones Asia/Khandyga, Asia/Ust-Nera, Europe/Busingen.
|
||||
*New Zones Asia/Khandyga, Asia/Ust-Nera, Europe/Busingen.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 1 20:22:12 UTC 2013 - schwab@linux-m68k.org
|
||||
@ -1171,12 +1274,12 @@ Tue Oct 5 15:42:21 CEST 2010 - dmueller@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 21 16:18:24 CEST 2010 - dmueller@suse.de
|
||||
|
||||
- change execlp into execl
|
||||
- change execlp into execl
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 25 11:59:01 CEST 2010 - ro@suse.de
|
||||
|
||||
- add missing sentinel to tzcode-link.diff
|
||||
- add missing sentinel to tzcode-link.diff
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 24 12:11:51 CEST 2010 - pbaudis@suse.cz
|
||||
@ -1187,7 +1290,7 @@ Tue Aug 24 12:11:51 CEST 2010 - pbaudis@suse.cz
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 19 18:12:03 CEST 2010 - ro@suse.de
|
||||
|
||||
- un-fuzz patches to fix build
|
||||
- un-fuzz patches to fix build
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 19 01:18:14 CEST 2010 - pbaudis@suse.cz
|
||||
@ -1209,7 +1312,7 @@ Mon Jun 28 06:38:35 UTC 2010 - jengelh@medozas.de
|
||||
Tue Apr 6 15:55:48 CEST 2010 - pbaudis@suse.cz
|
||||
|
||||
- update tzdata to 2010h:
|
||||
|
||||
|
||||
* DST changes: Asia/Dhaka (again...), Asia/Karachi, Asia/Gaza,
|
||||
Asia/Damascus, Pacific/Apia, Africa/Tunis
|
||||
* GMT offset changes: Europe/Samara, Asia/Kamchatka, Asia/Anadyr
|
||||
@ -1366,7 +1469,7 @@ Wed Sep 10 09:35:18 CEST 2008 - mvyskocil@suse.cz
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 5 10:18:38 CEST 2008 - mvyskocil@suse.cz
|
||||
|
||||
- Add new java subpackage (necessary for openjdk)
|
||||
- Add new java subpackage (necessary for openjdk)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 3 15:04:02 CEST 2008 - pbaudis@suse.cz
|
||||
@ -1717,7 +1820,7 @@ Thu Apr 13 13:34:07 CEST 2006 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 11 12:20:57 CEST 2006 - kukuk@suse.de
|
||||
|
||||
- nptl/init.c (sigcancel_handler): Compare with correct PID even
|
||||
- nptl/init.c (sigcancel_handler): Compare with correct PID even
|
||||
if the thread is in the middle of a fork call.
|
||||
(sighandler_setxid): Likewise.
|
||||
|
||||
@ -2214,7 +2317,7 @@ Thu Jun 16 17:03:43 CEST 2005 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 13 14:48:53 CEST 2005 - kukuk@suse.de
|
||||
|
||||
- Don't terminate strings twice in nis/netgroup code.
|
||||
- Don't terminate strings twice in nis/netgroup code.
|
||||
- netinet/if_tr.h: don't include kernel headers.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
@ -2589,7 +2692,7 @@ Wed Sep 22 15:33:10 CEST 2004 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 20 17:58:13 CEST 2004 - kukuk@suse.de
|
||||
|
||||
- Fix invalidating of nscd caches and getaddrinfo()
|
||||
- Fix invalidating of nscd caches and getaddrinfo()
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 17 07:13:01 CEST 2004 - kukuk@suse.de
|
||||
@ -2642,7 +2745,7 @@ Wed Aug 25 16:16:32 CEST 2004 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 23 10:20:09 CEST 2004 - kukuk@suse.de
|
||||
|
||||
- Update to current CVS:
|
||||
- Update to current CVS:
|
||||
- Use CVS version for last fix.
|
||||
- Add malloc sanity checks for double free.
|
||||
|
||||
@ -2681,7 +2784,7 @@ Tue Aug 17 12:13:41 CEST 2004 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 16 11:51:37 CEST 2004 - kukuk@suse.de
|
||||
|
||||
- Update to current CVS version and update to
|
||||
- Update to current CVS version and update to
|
||||
kernel-headers 2.6.8.1 to fix NPTL deadlock problems
|
||||
- Disable linuxthreads/tst-clock1, does not work on i586 and lower
|
||||
|
||||
@ -2706,7 +2809,7 @@ Wed Jun 16 07:45:07 CEST 2004 - meissner@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 14 20:12:00 CEST 2004 - kukuk@suse.de
|
||||
|
||||
- Add fixes from CVS:
|
||||
- Add fixes from CVS:
|
||||
- sysconf return value fixes
|
||||
- nscd host caching deadlock
|
||||
- backtrace for s390/s390x/ia64 static linked binaries
|
||||
@ -2841,7 +2944,7 @@ Fri Apr 9 16:22:31 CEST 2004 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 8 00:24:46 CEST 2004 - meissner@suse.de
|
||||
|
||||
- forward umount to umount2 on ppc64 because umount syscall
|
||||
- forward umount to umount2 on ppc64 because umount syscall
|
||||
does not exist
|
||||
|
||||
-------------------------------------------------------------------
|
||||
@ -3130,7 +3233,7 @@ Wed Jan 21 10:23:42 CET 2004 - aj@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 15:49:51 CET 2004 - ro@suse.de
|
||||
|
||||
- really fix linux/percpu.h to compile in userland
|
||||
- really fix linux/percpu.h to compile in userland
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 16 11:14:49 CET 2004 - kukuk@suse.de
|
||||
@ -3300,7 +3403,7 @@ Tue Oct 14 10:49:36 CEST 2003 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 13 12:11:53 CEST 2003 - kukuk@suse.de
|
||||
|
||||
- Update to kernel header files from 2.6.0-test7
|
||||
- Update to kernel header files from 2.6.0-test7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 10 17:11:01 CEST 2003 - schwab@suse.de
|
||||
@ -3776,7 +3879,7 @@ Fri Feb 14 14:51:11 CET 2003 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 13 18:34:50 CET 2003 - kukuk@suse.de
|
||||
|
||||
- Update to current snapshot
|
||||
- Update to current snapshot
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 11:50:54 CET 2003 - kukuk@suse.de
|
||||
@ -3844,7 +3947,7 @@ Thu Jan 30 16:05:32 CET 2003 - aj@suse.de
|
||||
Wed Jan 29 12:57:23 CET 2003 - kukuk@suse.de
|
||||
|
||||
- Update to current glibc cvs
|
||||
- Fix libm-ulps for x86-64 and ia64
|
||||
- Fix libm-ulps for x86-64 and ia64
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 23 16:47:33 CET 2003 - schwab@suse.de
|
||||
@ -3879,7 +3982,7 @@ Sun Jan 12 19:16:13 CET 2003 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 3 19:09:36 CET 2003 - bg@suse.de
|
||||
|
||||
- removed obsolete patch for hppa
|
||||
- removed obsolete patch for hppa
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 20 23:15:48 CET 2002 - kukuk@suse.de
|
||||
@ -3894,8 +3997,8 @@ Fri Dec 20 23:15:48 CET 2002 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 17 16:01:13 CET 2002 - olh@suse.de
|
||||
|
||||
- remove glibc-2.2.5-ppc64-bits-socket_h.diff
|
||||
add glibc-2.3-setjmp-ppc64.diff
|
||||
- remove glibc-2.2.5-ppc64-bits-socket_h.diff
|
||||
add glibc-2.3-setjmp-ppc64.diff
|
||||
add libc23-ppc64-cvshead20021210.patch
|
||||
dont run configure in subshell, it can fail and rpm cant catch it
|
||||
|
||||
@ -3920,7 +4023,7 @@ Tue Dec 3 11:16:30 CET 2002 - aj@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 29 11:08:03 CET 2002 - bg@suse.de
|
||||
|
||||
- Fix build on hppa.
|
||||
- Fix build on hppa.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 28 21:31:09 CET 2002 - aj@suse.de
|
||||
@ -3937,7 +4040,7 @@ Thu Nov 28 15:45:09 CET 2002 - aj@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 12 12:41:17 CET 2002 - bg@suse.de
|
||||
|
||||
- Updated hppa patches
|
||||
- Updated hppa patches
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 7 14:00:04 CET 2002 - kukuk@suse.de
|
||||
@ -3948,14 +4051,14 @@ Thu Nov 7 14:00:04 CET 2002 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 7 12:11:29 CET 2002 - bg@suse.de
|
||||
|
||||
- Fix build of linuxthreads for hppa
|
||||
- Fix build of linuxthreads for hppa
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 16:31:11 CET 2002 - bg@suse.de
|
||||
|
||||
- Use current kernel-headers for parisc
|
||||
- Add support for hppa
|
||||
|
||||
- Add support for hppa
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 15:29:32 CET 2002 - kukuk@suse.de
|
||||
|
||||
@ -4010,7 +4113,7 @@ Mon Sep 16 17:24:01 CEST 2002 - meissner@suse.de
|
||||
Thu Sep 12 15:56:07 CEST 2002 - meissner@suse.de
|
||||
|
||||
- ppc/ppc64: added more biarch things to the SystemV IPC headers
|
||||
which are needed to get 64bit ipc / IPC_STAT to work.
|
||||
which are needed to get 64bit ipc / IPC_STAT to work.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 9 18:52:53 CEST 2002 - bk@suse.de
|
||||
@ -4064,7 +4167,7 @@ Tue Aug 27 15:52:49 CEST 2002 - olh@suse.de
|
||||
Mon Aug 26 21:56:22 CEST 2002 - olh@suse.de
|
||||
|
||||
- add ppc64_glibc_2.2.5_sunrpc-fix.patch
|
||||
* sysdeps/unix/sysv/linux/powerpc/bits/socket.h: New file that adds
|
||||
* sysdeps/unix/sysv/linux/powerpc/bits/socket.h: New file that adds
|
||||
__powerpc64__ specific fields and adjust size/alignment for 64-bit.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
@ -4171,7 +4274,7 @@ Fri Jul 12 18:29:17 CEST 2002 - aj@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 8 10:45:49 CEST 2002 - aj@suse.de
|
||||
|
||||
- Add some optimized x86-64 math routines and a fixed lgammal
|
||||
- Add some optimized x86-64 math routines and a fixed lgammal
|
||||
implementation.
|
||||
- Testsuite on x86-64 should pass now.
|
||||
- Run ldconfig in postinstall.
|
||||
@ -4248,7 +4351,7 @@ Tue Jun 11 10:04:55 CEST 2002 - sf@suse.de
|
||||
|
||||
- made new kernel-header archive from kernel-source
|
||||
- added asm-ppc64 to kernel-headers
|
||||
- removed patch9 as it is obsoleted by the new kernel-headers
|
||||
- removed patch9 as it is obsoleted by the new kernel-headers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 7 14:29:30 CEST 2002 - olh@suse.de
|
||||
@ -4446,8 +4549,8 @@ Thu Feb 28 14:53:42 CET 2002 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 18 13:22:05 CET 2002 - kukuk@suse.de
|
||||
|
||||
- When a dlopened module references a weak symbol from another
|
||||
dlopened module (loaded with RTLD_GLOBAL) no dependency was
|
||||
- When a dlopened module references a weak symbol from another
|
||||
dlopened module (loaded with RTLD_GLOBAL) no dependency was
|
||||
generated for this fact, so the second module was unloaded even
|
||||
if the first one was still around.
|
||||
|
||||
@ -4476,7 +4579,7 @@ Wed Feb 13 16:03:20 CET 2002 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 12 02:01:42 CET 2002 - ro@suse.de
|
||||
|
||||
- fix owner/group for kernel headers
|
||||
- fix owner/group for kernel headers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 11 15:17:18 CET 2002 - kukuk@suse.de
|
||||
@ -4913,12 +5016,12 @@ Thu Mar 29 08:33:19 CEST 2001 - aj@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 29 01:18:52 CEST 2001 - ro@suse.de
|
||||
|
||||
- added db-splitmask fix from mls (hopefully work around bug in db1)
|
||||
- added db-splitmask fix from mls (hopefully work around bug in db1)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 28 09:02:54 CEST 2001 - aj@suse.de
|
||||
|
||||
- Fix s390 to not generate wrong relocations, work around compiler
|
||||
- Fix s390 to not generate wrong relocations, work around compiler
|
||||
error.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
@ -4960,12 +5063,12 @@ Fri Mar 9 15:33:55 CET 2001 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 16:02:45 CET 2001 - ro@suse.de
|
||||
|
||||
- update kernel-headers to 2.4.2
|
||||
- update kernel-headers to 2.4.2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 12:53:56 CET 2001 - ro@suse.de
|
||||
|
||||
- kernel-header fixes to build on s390
|
||||
- kernel-header fixes to build on s390
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 22 11:22:08 CET 2001 - schwab@suse.de
|
||||
@ -5178,7 +5281,7 @@ Fri Oct 27 15:39:17 CEST 2000 - aj@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 25 16:47:22 CEST 2000 - kukuk@suse.de
|
||||
|
||||
- Update to glibc-2.2-20001025
|
||||
- Update to glibc-2.2-20001025
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 22 16:31:32 CEST 2000 - kukuk@suse.de
|
||||
@ -5263,7 +5366,7 @@ Mon Aug 21 19:56:06 CEST 2000 - garloff@suse.de
|
||||
Tue Jul 25 08:41:48 CEST 2000 - kukuk@suse.de
|
||||
|
||||
- Add mmap fix for PowerPC
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 11 10:02:41 CEST 2000 - kukuk@suse.de
|
||||
|
||||
@ -5309,7 +5412,7 @@ Fri May 26 11:07:39 CEST 2000 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Wed May 24 22:23:12 CEST 2000 - kukuk@suse.de
|
||||
|
||||
- Fix ldconfig.8 manual page
|
||||
- Fix ldconfig.8 manual page
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 18 17:53:09 CEST 2000 - bk@suse.de
|
||||
@ -5344,7 +5447,7 @@ Tue May 9 22:21:23 CEST 2000 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Mon May 8 11:59:48 CEST 2000 - kukuk@suse.de
|
||||
|
||||
- Add lot of bug fixes from CVS
|
||||
- Add lot of bug fixes from CVS
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 25 14:20:43 CEST 2000 - kukuk@suse.de
|
||||
@ -5404,13 +5507,13 @@ Mon Apr 3 14:42:03 MEST 2000 - bk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 22 12:10:02 CET 2000 - kukuk@suse.de
|
||||
|
||||
- Fix last SPARC patch
|
||||
- Fix last SPARC patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 21 17:48:01 CET 2000 - kukuk@suse.de
|
||||
|
||||
- Add SPARC patches
|
||||
- Add IA64 patches
|
||||
- Add IA64 patches
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 15 14:35:47 CET 2000 - kukuk@suse.de
|
||||
@ -5440,7 +5543,7 @@ Thu Feb 24 16:12:39 CET 2000 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 22 16:40:35 CET 2000 - kukuk@suse.de
|
||||
|
||||
- Update to current glibc cvs snapshot (2.1.3pre4)
|
||||
- Update to current glibc cvs snapshot (2.1.3pre4)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 5 14:40:33 CET 2000 - kukuk@suse.de
|
||||
@ -5477,7 +5580,7 @@ Wed Jan 19 15:53:18 CET 2000 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Sat Jan 15 01:31:16 CET 2000 - ro@suse.de
|
||||
|
||||
-fixed ppc db2-patch
|
||||
-fixed ppc db2-patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 14 16:54:26 CET 2000 - kukuk@suse.de
|
||||
@ -5487,22 +5590,22 @@ Fri Jan 14 16:54:26 CET 2000 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 14 00:27:03 CET 2000 - kukuk@suse.de
|
||||
|
||||
- Add patch for SPARC
|
||||
- Add patch for SPARC
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 13 15:23:54 CET 2000 - kukuk@suse.de
|
||||
|
||||
- Move info pages to /usr/share/info
|
||||
- Move info pages to /usr/share/info
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 10 14:49:14 CET 2000 - kukuk@suse.de
|
||||
|
||||
- Add ipv6 patches for getent
|
||||
- Add ipv6 patches for getent
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 10 11:23:57 CET 2000 - kukuk@suse.de
|
||||
|
||||
- Move manual pages for applications and config files into
|
||||
- Move manual pages for applications and config files into
|
||||
shlibs package
|
||||
- Update to current glibc 2.1.3 snapshot
|
||||
|
||||
@ -5567,7 +5670,7 @@ Sat Oct 16 16:29:44 MEST 1999 - kukuk@suse.de
|
||||
Mon Oct 11 19:19:00 MEST 1999 - kukuk@suse.de
|
||||
|
||||
- Add linuxthreads/signals.c fix from Andreas Schwab
|
||||
- Remove dangling symlink (Bug #544)
|
||||
- Remove dangling symlink (Bug #544)
|
||||
- Add more bug fixes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
@ -5600,7 +5703,7 @@ Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de
|
||||
Mon Sep 6 10:25:03 MEST 1999 - kukuk@suse.de
|
||||
|
||||
- Update to current glibc 2.1.2 cvs snapshot
|
||||
- Remove use auf automake in spec file
|
||||
- Remove use auf automake in spec file
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 3 14:35:42 MEST 1999 - kukuk@suse.de
|
||||
@ -5611,7 +5714,7 @@ Fri Sep 3 14:35:42 MEST 1999 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 25 17:07:09 MEST 1999 - kukuk@suse.de
|
||||
|
||||
- Update to current glibc 2.1.2 cvs snapshot
|
||||
- Update to current glibc 2.1.2 cvs snapshot
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 19 15:20:26 MEST 1999 - kukuk@suse.de
|
||||
@ -5624,7 +5727,7 @@ Thu Aug 19 15:20:26 MEST 1999 - kukuk@suse.de
|
||||
Sat Aug 14 19:58:45 MEST 1999 - kukuk@suse.de
|
||||
|
||||
- disable nscd hosts caching by default
|
||||
- Apply patch from HJL for broken gethostbyname_r in libnss_dns
|
||||
- Apply patch from HJL for broken gethostbyname_r in libnss_dns
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 16 17:01:51 MEST 1999 - kukuk@suse.de
|
||||
@ -5635,7 +5738,7 @@ Fri Jul 16 17:01:51 MEST 1999 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 14 16:05:14 MEST 1999 - kukuk@suse.de
|
||||
|
||||
- Remove /etc/localtime from filelist
|
||||
- Remove /etc/localtime from filelist
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 12 09:54:43 MEST 1999 - kukuk@suse.de
|
||||
@ -5646,7 +5749,7 @@ Mon Jul 12 09:54:43 MEST 1999 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 8 17:25:43 MEST 1999 - kukuk@suse.de
|
||||
|
||||
- configure for i386-unknown-linux
|
||||
- configure for i386-unknown-linux
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 7 12:28:43 MEST 1999 - kukuk@suse.de
|
||||
@ -5686,7 +5789,7 @@ Mon Jun 14 09:17:26 MEST 1999 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 10 10:04:11 MEST 1999 - kukuk@suse.de
|
||||
|
||||
- Fix daemon() for MT programs
|
||||
- Fix daemon() for MT programs
|
||||
- Add libio fixes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
@ -5724,7 +5827,7 @@ Wed Apr 28 17:48:51 MEST 1999 - kukuk@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 27 11:48:46 MEST 1999 - kukuk@suse.de
|
||||
|
||||
- update to cvs version of Apr 26 1999
|
||||
- update to cvs version of Apr 26 1999
|
||||
- fix pmap_set/pmap_unset for DHCP clients
|
||||
- Rename libdb1.so.2[.1] to libdb.so.2[.1] since we don't create
|
||||
the symbolic links.
|
||||
@ -5771,7 +5874,7 @@ Sat Feb 20 19:29:32 MET 1999 - ro@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 20 18:41:22 MET 1999 - ro@suse.de
|
||||
|
||||
- fixed specfile ...
|
||||
- fixed specfile ...
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 20 18:31:30 MET 1999 - ro@suse.de
|
||||
@ -5807,7 +5910,7 @@ Mon Sep 21 19:43:16 MEST 1998 - ro@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 14:28:21 MEST 1998 - ro@suse.de
|
||||
|
||||
- update: use today's cvs-version
|
||||
- update: use today's cvs-version
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 2 16:56:04 MEST 1998 - ro@suse.de
|
||||
|
@ -1,7 +1,8 @@
|
||||
#
|
||||
# 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
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -16,14 +17,15 @@
|
||||
#
|
||||
|
||||
|
||||
%global AREA Etc
|
||||
%global ZONE UTC
|
||||
Name: timezone
|
||||
Version: 2024b
|
||||
Release: 0
|
||||
Summary: Time Zone Descriptions
|
||||
License: BSD-3-Clause AND SUSE-Public-Domain
|
||||
Group: System/Base
|
||||
URL: http://www.iana.org/time-zones
|
||||
# COMMON-BEGIN
|
||||
Version: 2023c
|
||||
Release: 0
|
||||
URL: https://www.iana.org/time-zones
|
||||
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
|
||||
@ -34,26 +36,25 @@ Patch0: tzdata-china.diff
|
||||
Patch3: iso3166-uk.diff
|
||||
Patch4: timezone-2018f-bsc1112310.patch
|
||||
Patch5: fat.patch
|
||||
# COMMON-END
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%global AREA Etc
|
||||
%global ZONE UTC
|
||||
Recommends: tzselect
|
||||
|
||||
%description
|
||||
These are configuration files that describe available time zones. You
|
||||
can select an appropriate time zone for your system with YaST.
|
||||
|
||||
%prep
|
||||
%setup -q -c -a 1
|
||||
# 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
|
||||
%package -n tzselect
|
||||
Requires: %{name} = %{version}
|
||||
Requires: awk
|
||||
Summary: Helper script to select the timezone
|
||||
BuildArch: noarch
|
||||
Provides: %{name}:/usr/bin/tzselect
|
||||
|
||||
%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
|
||||
|
||||
%build
|
||||
@ -63,40 +64,43 @@ LC_ALL=POSIX
|
||||
AREA=%{AREA}
|
||||
ZONE=%{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 %{?_smp_mflags} TZDIR=zoneinfo AWK=awk zones
|
||||
%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_build TZDIR=zoneinfo AWK=awk zones
|
||||
# Generate posixrules
|
||||
./zic -b fat -y ./yearistype -d zoneinfo -p %{AREA}/%{ZONE}
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}%{_prefix}/share/zoneinfo
|
||||
cp -a zoneinfo %{buildroot}%{_prefix}/share/zoneinfo/posix
|
||||
cp -al %{buildroot}%{_prefix}/share/zoneinfo/posix/. %{buildroot}%{_prefix}/share/zoneinfo
|
||||
cp -a zoneinfo-leaps %{buildroot}%{_prefix}/share/zoneinfo/right
|
||||
mkdir -p %{buildroot}/etc
|
||||
rm -f %{buildroot}/etc/localtime
|
||||
rm -f %{buildroot}%{_prefix}/share/zoneinfo/posixrules
|
||||
mkdir -p %{buildroot}%{_datadir}/zoneinfo
|
||||
cp -a zoneinfo %{buildroot}%{_datadir}/zoneinfo/posix
|
||||
cp -al %{buildroot}%{_datadir}/zoneinfo/posix/. %{buildroot}%{_datadir}/zoneinfo
|
||||
cp -a zoneinfo-leaps %{buildroot}%{_datadir}/zoneinfo/right
|
||||
mkdir -p %{buildroot}%{_sysconfdir}
|
||||
rm -f %{buildroot}%{_sysconfdir}/localtime
|
||||
rm -f %{buildroot}%{_datadir}/zoneinfo/posixrules
|
||||
%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
|
||||
cp -fp %{buildroot}%{_prefix}/share/zoneinfo/%{AREA}/%{ZONE} %{buildroot}/etc/localtime
|
||||
cp -fp %{buildroot}%{_datadir}/zoneinfo/%{AREA}/%{ZONE} %{buildroot}%{_sysconfdir}/localtime
|
||||
%endif
|
||||
ln -sf /etc/localtime %{buildroot}%{_prefix}/share/zoneinfo/posixrules
|
||||
install -m 644 iso3166.tab %{buildroot}%{_prefix}/share/zoneinfo/iso3166.tab
|
||||
install -m 644 zone.tab %{buildroot}%{_prefix}/share/zoneinfo/zone.tab
|
||||
install -m 644 zone1970.tab %{buildroot}%{_prefix}/share/zoneinfo/zone1970.tab
|
||||
install -m 644 tzdata.zi %{buildroot}%{_prefix}/share/zoneinfo/tzdata.zi
|
||||
ln -sf %{_sysconfdir}/localtime %{buildroot}%{_datadir}/zoneinfo/posixrules
|
||||
install -m 644 iso3166.tab %{buildroot}%{_datadir}/zoneinfo/iso3166.tab
|
||||
install -m 644 zone.tab %{buildroot}%{_datadir}/zoneinfo/zone.tab
|
||||
install -m 644 zone1970.tab %{buildroot}%{_datadir}/zoneinfo/zone1970.tab
|
||||
install -m 644 tzdata.zi %{buildroot}%{_datadir}/zoneinfo/tzdata.zi
|
||||
install -D -m 755 tzselect %{buildroot}%{_bindir}/tzselect
|
||||
install -D -m 755 zdump %{buildroot}%{_sbindir}/zdump
|
||||
install -D -m 755 zic %{buildroot}%{_sbindir}/zic
|
||||
install -m 644 -t %{buildroot}%{_datadir}/zoneinfo/ leapseconds leapseconds.awk leap-seconds.list
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%verify(not link md5 size mtime) %config(missingok,noreplace) /etc/localtime
|
||||
%license LICENSE
|
||||
%verify(not link md5 size mtime) %config(missingok,noreplace) %{_sysconfdir}/localtime
|
||||
%{_datadir}/zoneinfo
|
||||
%{_bindir}/tzselect
|
||||
%{_sbindir}/zdump
|
||||
%{_sbindir}/zic
|
||||
|
||||
%files -n tzselect
|
||||
%license LICENSE
|
||||
%{_bindir}/tzselect
|
||||
|
||||
%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-2023a/asia
|
||||
--- timezone-2023d.orig/asia
|
||||
+++ timezone-2023d/asia
|
||||
@@ -653,6 +653,8 @@ Rule PRC 1987 1991 - Apr Sun>=11 2:00 1
|
||||
Zone Asia/Shanghai 8:05:43 - LMT 1901
|
||||
8:00 Shang C%sT 1949 May 28
|
||||
@ -10,11 +10,11 @@ Index: timezone-2023a/asia
|
||||
+Link Asia/Shanghai Asia/Beijing
|
||||
# Xinjiang time, used by many in western China; represented by Ürümqi / Ürümchi
|
||||
# / Wulumuqi. (Please use Asia/Shanghai if you prefer Beijing time.)
|
||||
# Vostok base in Antarctica matches this since 1970.
|
||||
Index: timezone-2023a/zone.tab
|
||||
Zone Asia/Urumqi 5:50:20 - LMT 1928
|
||||
Index: timezone-2023d/zone.tab
|
||||
===================================================================
|
||||
--- timezone-2023a.orig/zone.tab
|
||||
+++ timezone-2023a/zone.tab
|
||||
--- timezone-2023d.orig/zone.tab
|
||||
+++ timezone-2023d/zone.tab
|
||||
@@ -142,6 +142,7 @@ CL -3327-07040 America/Santiago most of
|
||||
CL -5309-07055 America/Punta_Arenas Region of Magallanes
|
||||
CL -2709-10926 Pacific/Easter Easter Island
|
||||
@ -23,15 +23,15 @@ Index: timezone-2023a/zone.tab
|
||||
CN +3114+12128 Asia/Shanghai Beijing Time
|
||||
CN +4348+08735 Asia/Urumqi Xinjiang Time
|
||||
CO +0436-07405 America/Bogota
|
||||
Index: timezone-2023a/zone1970.tab
|
||||
Index: timezone-2023d/zone1970.tab
|
||||
===================================================================
|
||||
--- timezone-2023a.orig/zone1970.tab
|
||||
+++ timezone-2023a/zone1970.tab
|
||||
@@ -125,6 +125,7 @@ CK -2114-15946 Pacific/Rarotonga
|
||||
--- timezone-2023d.orig/zone1970.tab
|
||||
+++ timezone-2023d/zone1970.tab
|
||||
@@ -126,6 +126,7 @@ CK -2114-15946 Pacific/Rarotonga
|
||||
CL -3327-07040 America/Santiago most of Chile
|
||||
CL -5309-07055 America/Punta_Arenas Region of Magallanes
|
||||
CL -2709-10926 Pacific/Easter Easter Island
|
||||
+CN +3955+11626 Asia/Beijing China Standard 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
|
||||
|
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