Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package pgloader for openSUSE:Factory checked in at 2026-02-16 13:14:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pgloader (Old) and /work/SRC/openSUSE:Factory/.pgloader.new.1977 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pgloader" Mon Feb 16 13:14:00 2026 rev:4 rq:1333275 version:3.6.9 Changes: -------- --- /work/SRC/openSUSE:Factory/pgloader/pgloader.changes 2025-08-09 20:05:33.488629078 +0200 +++ /work/SRC/openSUSE:Factory/.pgloader.new.1977/pgloader.changes 2026-02-16 13:19:01.690338393 +0100 @@ -1,0 +2,6 @@ +Sun Feb 15 20:44:08 UTC 2026 - [email protected] + +- Add fix-unbreak-after-SBCL-internals-change.patch based on + https://github.com/melisgl/named-readtables/commit/6eea56674442b884a4fee6ede4c8aad63541aa5b + +------------------------------------------------------------------- New: ---- fix-unbreak-after-SBCL-internals-change.patch ----------(New B)---------- New: - Add fix-unbreak-after-SBCL-internals-change.patch based on https://github.com/melisgl/named-readtables/commit/6eea56674442b884a4fee6ede4c8aad63541aa5b ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pgloader.spec ++++++ --- /var/tmp/diff_new_pack.DFoSF3/_old 2026-02-16 13:19:02.358366167 +0100 +++ /var/tmp/diff_new_pack.DFoSF3/_new 2026-02-16 13:19:02.358366167 +0100 @@ -1,7 +1,7 @@ # # spec file for package pgloader # -# Copyright (c) 2025 SUSE LLC and contributors +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,6 +24,7 @@ Group: Productivity/Databases/Tools URL: https://pgloader.io Source: https://github.com/dimitri/%{name}/releases/download/v%{version}/%{name}-bundle-%{version}.tgz +Patch0: fix-unbreak-after-SBCL-internals-change.patch BuildRequires: fdupes BuildRequires: freetds-devel BuildRequires: pkgconfig @@ -60,7 +61,7 @@ from the pgloader command directly. %prep -%autosetup -n %{name}-bundle-%{version} +%autosetup -n %{name}-bundle-%{version} -p1 %build export CFLAGS="%{optflags}" ++++++ fix-unbreak-after-SBCL-internals-change.patch ++++++ >From 6eea56674442b884a4fee6ede4c8aad63541aa5b Mon Sep 17 00:00:00 2001 From: Gabor Melis <[email protected]> Date: Sun, 9 Nov 2025 18:20:21 +0100 Subject: [PATCH] unbreak after SBCL internals change --- src/cruft.lisp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/cruft.lisp b/src/cruft.lisp index 01f9783..9b43cbd 100644 --- a/software/named-readtables-20220220-git/src/cruft.lisp +++ b/software/named-readtables-20220220-git/src/cruft.lisp @@ -231,7 +231,11 @@ (grovel-unicode-chars) (let ((reader-fn (svref char-macro-array char-code)) (char (code-char (shiftf char-code (1+ char-code))))) - (if reader-fn + ;; In older SBCL, READER-FN may be NIL. Since + ;; commit 00eabf5 ("Make a few mostly-stylistic + ;; tweaks to macro char reading"), this is 0 + ;; instead. + (if (and reader-fn (not (eql reader-fn 0))) (yield char) (grovel-base-chars))))) (grovel-unicode-chars ()
