Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package postgresql13 for openSUSE:Factory checked in at 2025-01-28 17:09:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/postgresql13 (Old) and /work/SRC/openSUSE:Factory/.postgresql13.new.2316 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "postgresql13" Tue Jan 28 17:09:52 2025 rev:33 rq:1240824 version:13.18 Changes: -------- --- /work/SRC/openSUSE:Factory/postgresql13/postgresql13.changes 2024-11-22 23:52:44.416436126 +0100 +++ /work/SRC/openSUSE:Factory/.postgresql13.new.2316/postgresql13.changes 2025-01-28 17:09:53.542160661 +0100 @@ -1,0 +2,5 @@ +Tue Jan 28 12:23:29 UTC 2025 - Reinhard Max <m...@suse.com> + +- Fix build, add postgresql-tzdata2025a.patch + +------------------------------------------------------------------- New: ---- postgresql-tzdata2025a.patch BETA DEBUG BEGIN: New: - Fix build, add postgresql-tzdata2025a.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ postgresql13.spec ++++++ --- /var/tmp/diff_new_pack.d1qJC9/_old 2025-01-28 17:09:54.770211380 +0100 +++ /var/tmp/diff_new_pack.d1qJC9/_new 2025-01-28 17:09:54.774211544 +0100 @@ -1,7 +1,7 @@ # # spec file for package postgresql13 # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -190,6 +190,7 @@ Patch10: postgresql-llvm-optional.patch Patch11: 0001-jit-Workaround-potential-datalayout-mismatch-on-s390.patch %endif +Patch12: postgresql-tzdata2025a.patch URL: https://www.postgresql.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: postgresql = %version-%release @@ -523,6 +524,7 @@ %if %{with llvm} %patch -P 10 %patch -P 11 +%patch -P 12 %endif touch -r tmp configure rm tmp ++++++ postgresql-tzdata2025a.patch ++++++ --- src/test/regress/expected/timestamptz.out.orig +++ src/test/regress/expected/timestamptz.out @@ -2388,10 +2388,10 @@ SELECT make_timestamptz(2014, 12, 10, 0, Tue Dec 09 23:00:00 2014 (1 row) -SELECT make_timestamptz(1846, 12, 10, 0, 0, 0, 'Asia/Manila') AT TIME ZONE 'UTC'; +SELECT make_timestamptz(1881, 12, 10, 0, 0, 0, 'Asia/Singapore') AT TIME ZONE 'UTC'; timezone -------------------------- - Wed Dec 09 15:56:00 1846 + Fri Dec 09 17:04:35 1881 (1 row) SELECT make_timestamptz(1881, 12, 10, 0, 0, 0, 'Europe/Paris') AT TIME ZONE 'UTC'; --- src/test/regress/sql/timestamptz.sql.orig +++ src/test/regress/sql/timestamptz.sql @@ -442,7 +442,7 @@ SELECT make_timestamptz(1973, 07, 15, 08 -- full timezone names SELECT make_timestamptz(2014, 12, 10, 0, 0, 0, 'Europe/Prague') = timestamptz '2014-12-10 00:00:00 Europe/Prague'; SELECT make_timestamptz(2014, 12, 10, 0, 0, 0, 'Europe/Prague') AT TIME ZONE 'UTC'; -SELECT make_timestamptz(1846, 12, 10, 0, 0, 0, 'Asia/Manila') AT TIME ZONE 'UTC'; +SELECT make_timestamptz(1881, 12, 10, 0, 0, 0, 'Asia/Singapore') AT TIME ZONE 'UTC'; SELECT make_timestamptz(1881, 12, 10, 0, 0, 0, 'Europe/Paris') AT TIME ZONE 'UTC'; SELECT make_timestamptz(1910, 12, 24, 0, 0, 0, 'Nehwon/Lankhmar');