Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package CSXCAD for openSUSE:Factory checked in at 2026-07-28 17:57:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/CSXCAD (Old) and /work/SRC/openSUSE:Factory/.CSXCAD.new.2004 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "CSXCAD" Tue Jul 28 17:57:03 2026 rev:14 rq:1367917 version:0.6.3 Changes: -------- --- /work/SRC/openSUSE:Factory/CSXCAD/CSXCAD.changes 2025-10-10 17:13:14.431068416 +0200 +++ /work/SRC/openSUSE:Factory/.CSXCAD.new.2004/CSXCAD.changes 2026-07-28 18:04:01.609374369 +0200 @@ -1,0 +2,6 @@ +Sun Jul 26 15:04:02 UTC 2026 - Stefan BrĂ¼ns <[email protected]> + +- Fix build broken after dependency changes, add + fix_cout_namespace.patch + +------------------------------------------------------------------- New: ---- fix_cout_namespace.patch ----------(New B)---------- New:- Fix build broken after dependency changes, add fix_cout_namespace.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ CSXCAD.spec ++++++ --- /var/tmp/diff_new_pack.tBJdEi/_old 2026-07-28 18:04:05.765519794 +0200 +++ /var/tmp/diff_new_pack.tBJdEi/_new 2026-07-28 18:04:05.769519933 +0200 @@ -1,7 +1,7 @@ # # spec file for package CSXCAD # -# Copyright (c) 2025 SUSE LLC and contributors +# 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 @@ -30,6 +30,8 @@ Patch0: boost.patch # PATCH-FIX-OPENSUSE CSXCAD-octave-AppCSXCAD-load.patch -- Fix AppCSXCAD.sh load Patch3: CSXCAD-octave-AppCSXCAD-load.patch +# PATCH-FIX-UPSTREAM -- https://github.com/thliebig/CSXCAD/commit/51ea4bbbdce6.patch +Patch4: fix_cout_namespace.patch BuildRequires: %{python_module Cython} BuildRequires: %{python_module matplotlib} BuildRequires: %{python_module numpy} ++++++ fix_cout_namespace.patch ++++++ >From 51ea4bbbdce62b3e74e1defe1e57a6724987f20f Mon Sep 17 00:00:00 2001 From: Yifeng Li <[email protected]> Date: Sun, 21 Dec 2025 00:31:28 +0000 Subject: [PATCH] src/CSPropDiscMaterial.cpp: std:: prefix to cout. Stop relying on unintentionally imported cout symbol from other headers, add std:: prefix to cout explicitly. Fix build on MSVC. Signed-off-by: Yifeng Li <[email protected]> --- src/CSPropDiscMaterial.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CSPropDiscMaterial.cpp b/src/CSPropDiscMaterial.cpp index 5b04d747..9bf6e94d 100644 --- a/src/CSPropDiscMaterial.cpp +++ b/src/CSPropDiscMaterial.cpp @@ -338,7 +338,7 @@ void *CSPropDiscMaterial::ReadDataSet(std::string filename, std::string d_name, bool CSPropDiscMaterial::ReadHDF5( std::string filename ) { - cout << __func__ << ": Reading \"" << filename << "\"" << std::endl; + std::cout << __func__ << ": Reading \"" << filename << "\"" << std::endl; // open hdf5 file hid_t file_id = H5Fopen( filename.c_str(), H5F_ACC_RDONLY, H5P_DEFAULT );
