Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package polymake for openSUSE:Factory checked in at 2025-06-23 15:05:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/polymake (Old) and /work/SRC/openSUSE:Factory/.polymake.new.7067 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "polymake" Mon Jun 23 15:05:45 2025 rev:4 rq:1287758 version:4.13 Changes: -------- --- /work/SRC/openSUSE:Factory/polymake/polymake.changes 2025-03-04 18:33:57.457373220 +0100 +++ /work/SRC/openSUSE:Factory/.polymake.new.7067/polymake.changes 2025-06-23 15:06:56.109894650 +0200 @@ -1,0 +2,5 @@ +Sun Jun 22 20:52:12 UTC 2025 - Jan Engelhardt <jeng...@inai.de> + +- Add gcc15.patch + +------------------------------------------------------------------- New: ---- gcc15.patch ----------(New B)---------- New: - Add gcc15.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ polymake.spec ++++++ --- /var/tmp/diff_new_pack.dn8TQT/_old 2025-06-23 15:06:58.041975225 +0200 +++ /var/tmp/diff_new_pack.dn8TQT/_new 2025-06-23 15:06:58.041975225 +0200 @@ -1,7 +1,7 @@ # # spec file for package polymake # -# 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 @@ -30,6 +30,7 @@ Source9: %name-rpmlintrc Patch2: sympol-system.patch Patch3: perl.patch +Patch4: gcc15.patch BuildRequires: bliss-devel BuildRequires: cddlib-devel BuildRequires: fdupes ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.dn8TQT/_old 2025-06-23 15:06:58.093977395 +0200 +++ /var/tmp/diff_new_pack.dn8TQT/_new 2025-06-23 15:06:58.097977561 +0200 @@ -1,5 +1,5 @@ -mtime: 1727188140 -commit: 4d75ffd5b3f631f4eb68e7b0aafab245bc4346c4e2c506f836f02edd524b6bab +mtime: 1750625553 +commit: d8d5e7cbb2b7dae73f967fb25250fd436e8117c8af290c057681c26815ff8759 url: https://src.opensuse.org/jengelh/polymake revision: master ++++++ build.specials.obscpio ++++++ ++++++ gcc15.patch ++++++ From: Jan Engelhardt <e...@inai.de> Date: 2025-06-22 22:33:35.286193495 +0200 gcc-15 seems to come with fewer implicit cross-inclusions between headers. [ 41s] /home/abuild/rpmbuild/BUILD/polymake-4.13-build/polymake-4.13/include/core/polymake/internal/comparators.h:285:40: error: ‘uint64_t’ was not declared in this scope [ 41s] 285 | std::enable_if_t<sizeof(SizeT)==sizeof(uint64_t)> hash_combine(SizeT& h, SizeT k) --- include/core/polymake/internal/comparators.h | 1 + 1 file changed, 1 insertion(+) Index: polymake-4.13/include/core/polymake/internal/comparators.h =================================================================== --- polymake-4.13.orig/include/core/polymake/internal/comparators.h +++ polymake-4.13/include/core/polymake/internal/comparators.h @@ -17,6 +17,7 @@ #pragma once +#include <cstdint> #include "polymake/internal/comparators_ops.h" #include "polymake/internal/matrix_rows_cols.h" #include "polymake/TransformedContainer.h"