Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gmsh for openSUSE:Factory checked in at 2023-03-28 17:52:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gmsh (Old) and /work/SRC/openSUSE:Factory/.gmsh.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gmsh" Tue Mar 28 17:52:02 2023 rev:14 rq:1075007 version:4.11.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gmsh/gmsh.changes 2023-01-01 09:38:48.066759662 +0100 +++ /work/SRC/openSUSE:Factory/.gmsh.new.31432/gmsh.changes 2023-03-28 17:52:02.403749182 +0200 @@ -1,0 +2,6 @@ +Tue Mar 28 09:04:54 UTC 2023 - Stefan Brüns <stefan.bru...@rwth-aachen.de> + +- Fix builds failing with GCC 13, add + 0001-Add-missing-cstdint-header.patch + +------------------------------------------------------------------- New: ---- 0001-Add-missing-cstdint-header.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gmsh.spec ++++++ --- /var/tmp/diff_new_pack.UKEEIL/_old 2023-03-28 17:52:03.963756709 +0200 +++ /var/tmp/diff_new_pack.UKEEIL/_new 2023-03-28 17:52:03.967756727 +0200 @@ -1,7 +1,7 @@ # # spec file for package gmsh # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -32,6 +32,8 @@ Patch0: link_dynamic_gl2ps.patch Patch1: gmsh-2.10.1-implicit.patch Patch2: gmsh-3.0.5-add-shebang-to-onelab.patch +# PATCH-FIX-UPSTREAM - see https://gitlab.onelab.info/gmsh/gmsh/-/issues/2416 +Patch3: 0001-Add-missing-cstdint-header.patch BuildRequires: Mesa-devel BuildRequires: cgns-devel >= 3.4.0 BuildRequires: cmake >= 2.8 ++++++ 0001-Add-missing-cstdint-header.patch ++++++ >From a3eb73d082bfdda73b73180f77c4202eff951cb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <stefan.bru...@rwth-aachen.de> Date: Tue, 28 Mar 2023 11:03:33 +0200 Subject: [PATCH] Add missing cstdint header --- contrib/QuadMeshingTools/qmtMeshGeometryOptimization.h | 1 + src/mesh/meshGFacePack.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/contrib/QuadMeshingTools/qmtMeshGeometryOptimization.h b/contrib/QuadMeshingTools/qmtMeshGeometryOptimization.h index d4f5e81..19fd32b 100644 --- a/contrib/QuadMeshingTools/qmtMeshGeometryOptimization.h +++ b/contrib/QuadMeshingTools/qmtMeshGeometryOptimization.h @@ -8,6 +8,7 @@ #pragma once #include <float.h> +#include <cstdint> #include "qmtMeshUtils.h" class SurfaceProjector; diff --git a/src/mesh/meshGFacePack.cpp b/src/mesh/meshGFacePack.cpp index 623af74..c35af12 100644 --- a/src/mesh/meshGFacePack.cpp +++ b/src/mesh/meshGFacePack.cpp @@ -8,6 +8,7 @@ #include <queue> #include <map> #include <vector> +#include <cstdint> #include "gmsh.h" #include "SPoint2.h" #include "SVector3.h" -- 2.40.0