Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libcss for openSUSE:Factory checked in at 2026-08-15 22:39:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libcss (Old) and /work/SRC/openSUSE:Factory/.libcss.new.1258 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libcss" Sat Aug 15 22:39:58 2026 rev:9 rq:1370892 version:0.9.2 Changes: -------- --- /work/SRC/openSUSE:Factory/libcss/libcss.changes 2024-10-11 17:00:58.847330443 +0200 +++ /work/SRC/openSUSE:Factory/.libcss.new.1258/libcss.changes 2026-08-15 22:40:01.872329871 +0200 @@ -1,0 +2,6 @@ +Wed Aug 5 07:36:27 UTC 2026 - Guillaume GARDET <[email protected]> + +- Add patch to fix test on 32-bit: + * fix-32-bit.patch + +------------------------------------------------------------------- New: ---- fix-32-bit.patch ----------(New B)---------- New:- Add patch to fix test on 32-bit: * fix-32-bit.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libcss.spec ++++++ --- /var/tmp/diff_new_pack.60eeWK/_old 2026-08-15 22:40:02.614355990 +0200 +++ /var/tmp/diff_new_pack.60eeWK/_new 2026-08-15 22:40:02.616356061 +0200 @@ -1,7 +1,7 @@ # # spec file for package libcss # -# Copyright (c) 2024 SUSE LLC +# 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 @@ -28,6 +28,7 @@ Source: http://download.netsurf-browser.org/libs/releases/%{name}-%{version}-src.tar.gz Patch0: libcss-buildopts.patch Patch1: fix-test-includes.patch +Patch2: fix-32-bit.patch BuildRequires: netsurf-buildsystem >= 1.1 BuildRequires: pkgconfig BuildRequires: pkgconfig(check) ++++++ fix-32-bit.patch ++++++ diff --git a/test/dump.h b/test/dump.h --- a/test/dump.h +++ b/test/dump.h @@ -123,7 +123,7 @@ void dump_rule_media(css_rule_media *s, char **buf, size_t *buflen) char *ptr = *buf; css_rule *rule; - ptr += sprintf(ptr, "| @media %s%03lx", + ptr += sprintf(ptr, "| @media %s%03" PRIx64, s->media->negate_type ? "not " : "", s->media->type);
