Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package collada-dom for openSUSE:Factory checked in at 2026-08-02 23:13:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/collada-dom (Old) and /work/SRC/openSUSE:Factory/.collada-dom.new.16738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "collada-dom" Sun Aug 2 23:13:58 2026 rev:5 rq:1369029 version:2.5.1+git20200104.c1e20b7 Changes: -------- --- /work/SRC/openSUSE:Factory/collada-dom/collada-dom.changes 2025-09-30 17:49:02.706085329 +0200 +++ /work/SRC/openSUSE:Factory/.collada-dom.new.16738/collada-dom.changes 2026-08-02 23:14:36.320647708 +0200 @@ -1,0 +2,7 @@ +Sat Aug 1 17:32:15 UTC 2026 - Michael Pujos <[email protected]> + +- added fix-gcc16-compilation.patch to fix GCC 16 compilation: + removed unnecessary NULL comparison triggering + "error: ambiguous overload for ‘operator!=" + +------------------------------------------------------------------- New: ---- fix-gcc16-compilation.patch ----------(New B)---------- New: - added fix-gcc16-compilation.patch to fix GCC 16 compilation: removed unnecessary NULL comparison triggering ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ collada-dom.spec ++++++ --- /var/tmp/diff_new_pack.PYCQ1v/_old 2026-08-02 23:14:36.972670088 +0200 +++ /var/tmp/diff_new_pack.PYCQ1v/_new 2026-08-02 23:14:36.972670088 +0200 @@ -1,7 +1,7 @@ # # spec file for package collada-dom # -# Copyright (c) 2025 SUSE LLC and contributors +# Copyright (c) 2026 SUSE LLC and contributors # Copyright (c) 2025 Andreas Stieger <[email protected]> # # All modifications and additions to the file contributed by third parties @@ -27,6 +27,7 @@ Source: %{name}-%{version}.tar.gz Patch0: silence-warnings.patch Patch1: boost.patch +Patch2: fix-gcc16-compilation.patch BuildRequires: c++_compiler BuildRequires: cmake BuildRequires: libboost_filesystem-devel ++++++ fix-gcc16-compilation.patch ++++++ --- collada-dom-2.5.1+git20200104.c1e20b7.orig/dom/src/dae/daeMetaElement.cpp 2026-08-01 18:50:33.226180276 +0200 +++ collada-dom-2.5.1+git20200104.c1e20b7/dom/src/dae/daeMetaElement.cpp 2026-08-01 19:21:04.199368602 +0200 @@ -175,8 +175,7 @@ else _metaAttributes.append(attr); - if ((attr->getName() != NULL) && - (strcmp(attr->getName(),"id") == 0)) { + if (strcmp(attr->getName(),"id") == 0) { _metaID = attr; _isTrackableForQueries = true; }
