Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package netgen for openSUSE:Leap:16.0 checked in at 2025-06-19 17:55:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:16.0/netgen (Old) and /work/SRC/openSUSE:Leap:16.0/.netgen.new.19631 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "netgen" Thu Jun 19 17:55:32 2025 rev:2 rq:1286955 version:6.2.2406 Changes: -------- --- /work/SRC/openSUSE:Leap:16.0/netgen/netgen.changes 2025-04-25 13:39:47.952247177 +0200 +++ /work/SRC/openSUSE:Leap:16.0/.netgen.new.19631/netgen.changes 2025-06-19 17:55:34.749313215 +0200 @@ -1,0 +2,18 @@ +Thu Mar 20 21:10:12 UTC 2025 - Andreas Stieger <andreas.stie...@gmx.de> + +- drop unneeded pcre build dependency + +------------------------------------------------------------------- +Tue Feb 11 17:08:12 UTC 2025 - Andreas Schwab <sch...@suse.de> + +- Ignore tolerance failures on riscv64 + +------------------------------------------------------------------- +Sat Jan 18 09:51:50 UTC 2025 - Stefan BrĂ¼ns <stefan.bru...@rwth-aachen.de> + +- update to version 6.2.2406 + * no changelog provided +- Update patch: + * 0001-Include-filesystem-from-experimental-for-GCC-7.patch + +------------------------------------------------------------------- Old: ---- netgen-6.2.2404.tar.gz New: ---- netgen-6.2.2406.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ netgen.spec ++++++ --- /var/tmp/diff_new_pack.ncpnxG/_old 2025-06-19 17:55:35.141329497 +0200 +++ /var/tmp/diff_new_pack.ncpnxG/_new 2025-06-19 17:55:35.145329663 +0200 @@ -1,7 +1,7 @@ # # spec file for package netgen # -# 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 @@ -27,7 +27,7 @@ %endif Name: netgen -Version: 6.2.2404 +Version: 6.2.2406 Release: 0 Summary: Automatic 3D tetrahedral mesh generator License: LGPL-2.1-only @@ -78,7 +78,6 @@ BuildRequires: pkgconfig(gl) BuildRequires: pkgconfig(glu) BuildRequires: pkgconfig(icu-uc) -BuildRequires: pkgconfig(libpcre) BuildRequires: pkgconfig(tcl) BuildRequires: pkgconfig(tk) BuildRequires: pkgconfig(x11) @@ -226,7 +225,7 @@ %if %{with pytest} # run manually, to see progress/failures # tolerance failures on aarch64 and ppc64le, see https://github.com/NGSolve/netgen/issues/167 -%ifarch %{arm64} %{ppc64} +%ifarch %{arm64} %{ppc64} riscv64 export PYTEST_ADDOPTS='-k "not (boxcyl.geo-mp11-5 or cylsphere.geo-mp58-4 or hinge.stl-mp93-5 or part1.stl-mp123-1 or part1.stl-mp126-4 or sculpture.geo-mp143-4 or sphereincube.geo-mp162-5 or twobricks.geo-mp195-2 or twocubes.geo-mp201-2)"' %endif export COLUMNS=120 ++++++ 0001-Include-filesystem-from-experimental-for-GCC-7.patch ++++++ --- /var/tmp/diff_new_pack.ncpnxG/_old 2025-06-19 17:55:35.185331324 +0200 +++ /var/tmp/diff_new_pack.ncpnxG/_new 2025-06-19 17:55:35.189331490 +0200 @@ -1,4 +1,4 @@ -From 795acce76a715ac34afd0cfa093350502ac90dfa Mon Sep 17 00:00:00 2001 +From cc76ca399f1782d94583512ca7d7a0199ca83457 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <stefan.bru...@rwth-aachen.de> Date: Wed, 13 Jul 2022 15:58:16 +0200 Subject: [PATCH] Include filesystem from experimental for GCC 7 @@ -13,7 +13,8 @@ libsrc/general/mystring.hpp | 5 +++++ libsrc/interface/writeuser.hpp | 10 +++++++--- libsrc/meshing/meshclass.hpp | 7 ++++++- - 9 files changed, 66 insertions(+), 36 deletions(-) + ng/ngpkg.cpp | 4 ++-- + 10 files changed, 68 insertions(+), 38 deletions(-) diff --git a/libsrc/core/CMakeLists.txt b/libsrc/core/CMakeLists.txt index 39d7fd6..a85a414 100644 @@ -30,10 +31,10 @@ if(USE_PYTHON) diff --git a/libsrc/core/archive.hpp b/libsrc/core/archive.hpp -index d754606..3f41665 100644 +index 8a3d7a3..be5ea23 100644 --- a/libsrc/core/archive.hpp +++ b/libsrc/core/archive.hpp -@@ -5,7 +5,13 @@ +@@ -6,7 +6,13 @@ #include <array> // for array #include <complex> // for complex #include <cstring> // for size_t, strlen @@ -48,7 +49,7 @@ #include <fstream> // for ifstream, ofstream #include <functional> // for function #include <map> // for map -@@ -860,7 +866,7 @@ namespace ngcore +@@ -862,7 +868,7 @@ namespace ngcore BinaryOutArchive(std::shared_ptr<std::ostream>&& astream) : Archive(true), stream(std::move(astream)) { } @@ -57,7 +58,7 @@ : BinaryOutArchive(std::make_shared<std::ofstream>(filename)) {} ~BinaryOutArchive () override { FlushBuffer(); } -@@ -956,7 +962,7 @@ namespace ngcore +@@ -958,7 +964,7 @@ namespace ngcore BinaryInArchive (std::shared_ptr<std::istream>&& astream) : Archive(false), stream(std::move(astream)) { } @@ -66,7 +67,7 @@ : BinaryInArchive(std::make_shared<std::ifstream>(filename)) { ; } using Archive::operator&; -@@ -1056,7 +1062,7 @@ namespace ngcore +@@ -1058,7 +1064,7 @@ namespace ngcore TextOutArchive (std::shared_ptr<std::ostream>&& astream) : Archive(true), stream(std::move(astream)) { } @@ -75,7 +76,7 @@ TextOutArchive(std::make_shared<std::ofstream>(filename)) { } using Archive::operator&; -@@ -1111,7 +1117,7 @@ namespace ngcore +@@ -1113,7 +1119,7 @@ namespace ngcore TextInArchive (std::shared_ptr<std::istream>&& astream) : Archive(false), stream(std::move(astream)) { } @@ -136,7 +137,7 @@ Unload(); lib_name = lib_name_; diff --git a/libsrc/core/utils.hpp b/libsrc/core/utils.hpp -index 323fe67..8f1b15d 100644 +index a503d53..a7a8f51 100644 --- a/libsrc/core/utils.hpp +++ b/libsrc/core/utils.hpp @@ -3,7 +3,13 @@ @@ -298,7 +299,7 @@ } }; diff --git a/libsrc/general/mystring.hpp b/libsrc/general/mystring.hpp -index ee364d7..5eb39df 100644 +index 4f2167e..edb2b9b 100644 --- a/libsrc/general/mystring.hpp +++ b/libsrc/general/mystring.hpp @@ -19,7 +19,12 @@ @@ -343,7 +344,7 @@ typedef std::function<void (Mesh & mesh, const filesystem::path & filename)> FRead; typedef std::function<bool (const filesystem::path & filename)> FTest; diff --git a/libsrc/meshing/meshclass.hpp b/libsrc/meshing/meshclass.hpp -index 0c7fd57..d786e33 100644 +index 4be51c8..9635863 100644 --- a/libsrc/meshing/meshclass.hpp +++ b/libsrc/meshing/meshclass.hpp @@ -11,7 +11,12 @@ @@ -360,7 +361,29 @@ #include <gprim/adtree.hpp> #include <gprim/transform3d.hpp> +diff --git a/ng/ngpkg.cpp b/ng/ngpkg.cpp +index 8b6a245..fe728cd 100644 +--- a/ng/ngpkg.cpp ++++ b/ng/ngpkg.cpp +@@ -2132,7 +2132,7 @@ namespace netgen + #endif // JPEGLIB + { + string command; +- std::filesystem::path filepath(filename); ++ filesystem::path filepath(filename); + + bool need_conversion = filepath.extension() != ".ppm"; + if (need_conversion) +@@ -2163,7 +2163,7 @@ namespace netgen + return TCL_ERROR; + } + +- std::filesystem::remove(filepath); ++ filesystem::remove(filepath); + } + + return TCL_OK; -- -2.47.1 +2.48.1 ++++++ netgen-6.2.2404.tar.gz -> netgen-6.2.2406.tar.gz ++++++ ++++ 6818 lines of diff (skipped)