Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package eigen3 for openSUSE:Factory checked in at 2026-02-11 18:47:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/eigen3 (Old) and /work/SRC/openSUSE:Factory/.eigen3.new.1670 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "eigen3" Wed Feb 11 18:47:05 2026 rev:27 rq:1331464 version:5.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/eigen3/eigen3.changes 2025-11-04 18:41:13.298559166 +0100 +++ /work/SRC/openSUSE:Factory/.eigen3.new.1670/eigen3.changes 2026-02-11 18:47:13.697297433 +0100 @@ -1,0 +2,28 @@ +Tue Feb 3 14:51:01 UTC 2026 - Jan Engelhardt <[email protected]> + +- Update to release 5.0.0 + * Eigen 5.X.X requires C++14. Some macros such as EIGEN_HAS_CXX11 + have been removed in this regard. + * Unsupported code has been removed, e.g. Constrained Conjugate + Gradient. + * Due to name conflicts with other projects, Eigen::all and + Eigen::last have been moved to Eigen::placeholders::all and + Eigen::placeholders::last. + * Runtime SVD options for computing thin/full U/V have been + deprecated: use compile-time options instead. + * Scalar (i.e. non-vectorized) comparisons now return masks with + values of Scalar(1) rather than having all bits set to avoid + undefined behavior. + * BLAS return types have been changed for Eigen BLAS to `void` + instead of `int` for compatibility with other BLAS + implementations. + * Eigen::aligned_allocator no longer inherits from std::allocator + due to a change in the standard and the use of + allocate_at_least. + * Euler angles are now returned in a more canonical form, + potentially resulting in a change of behavior. + * Eigen's random number generation has changed, resulting in a + change of behavior. Do not rely on specific random numbers from + Eigen. + +------------------------------------------------------------------- Old: ---- eigen-3.4.1.tar.bz2 eigen-doc-3.4.tar.bz2 New: ---- eigen-5.0.0.tar.bz2 eigen-doc.tgz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ eigen3.spec ++++++ --- /var/tmp/diff_new_pack.jp1GC2/_old 2026-02-11 18:47:14.537332710 +0100 +++ /var/tmp/diff_new_pack.jp1GC2/_new 2026-02-11 18:47:14.541332877 +0100 @@ -1,7 +1,7 @@ # # spec file for package eigen3 # -# 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,17 +30,17 @@ # Docs for version 3.4.1 do not build with doxygen 1.14.0 or later: https://gitlab.com/libeigen/eigen/-/issues/2976 # So, we do not build them but just extract a pre-generated doc tarball from upstream and package its contents -%define major_ver 3.4 +%define major_ver 5.0 %define api_docdir %{_docdir}/%{name}/api Name: eigen3 -Version: %{major_ver}.1 +Version: %{major_ver}.0 Release: 0 Summary: C++ Template Library for Linear Algebra License: BSD-3-Clause AND LGPL-2.1-only AND MPL-2.0 AND LGPL-2.1-or-later -URL: http://eigen.tuxfamily.org/ +URL: https://libeigen.gitlab.io/ Source0: https://gitlab.com/libeigen/eigen/-/archive/%{version}/%{srcname}-%{version}.tar.bz2 -Source1: https://libeigen.gitlab.io/eigen/docs-%{major_ver}/eigen-doc.tgz#/%{srcname}-doc-%{major_ver}.tar.bz2 +Source1: https://libeigen.gitlab.io/eigen/docs-%{major_ver}/eigen-doc.tgz Patch0: 0001-Disable-Altivec-for-ppc64le.patch Patch1: 0001-Do-stack-allignment-on-ppc.patch %if %{with tests} ++++++ 0001-Disable-Altivec-for-ppc64le.patch ++++++ --- /var/tmp/diff_new_pack.jp1GC2/_old 2026-02-11 18:47:14.573334221 +0100 +++ /var/tmp/diff_new_pack.jp1GC2/_new 2026-02-11 18:47:14.577334389 +0100 @@ -4,20 +4,20 @@ Subject: [PATCH] Disable Altivec for ppc64le --- - Eigen/Core | 2 +- + Eigen/src/Core/util/ConfigureVectorization.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -Index: eigen-3.4.0/Eigen/src/Core/util/ConfigureVectorization.h +Index: eigen-5.0.0/Eigen/src/Core/util/ConfigureVectorization.h =================================================================== ---- eigen-3.4.0.orig/Eigen/src/Core/util/ConfigureVectorization.h -+++ eigen-3.4.0/Eigen/src/Core/util/ConfigureVectorization.h -@@ -374,7 +374,7 @@ - #undef vector - #undef pixel +--- eigen-5.0.0.orig/Eigen/src/Core/util/ConfigureVectorization.h ++++ eigen-5.0.0/Eigen/src/Core/util/ConfigureVectorization.h +@@ -380,7 +380,7 @@ extern "C" { + #undef vector + #undef pixel -- #elif defined __ALTIVEC__ -+ #elif defined __ALTIVEC__ && _CALL_ELF != 2 +-#elif defined __ALTIVEC__ ++#elif defined(__ALTIVEC__) && _CALL_ELF != 2 - #define EIGEN_VECTORIZE - #define EIGEN_VECTORIZE_ALTIVEC + #define EIGEN_VECTORIZE + #define EIGEN_VECTORIZE_ALTIVEC ++++++ 0001-Do-stack-allignment-on-ppc.patch ++++++ --- /var/tmp/diff_new_pack.jp1GC2/_old 2026-02-11 18:47:14.601335397 +0100 +++ /var/tmp/diff_new_pack.jp1GC2/_new 2026-02-11 18:47:14.605335565 +0100 @@ -4,20 +4,20 @@ Subject: [PATCH] Do stack allignment on ppc --- - Eigen/src/Core/util/Macros.h | 2 +- + Eigen/src/Core/util/ConfigureVectorization.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -Index: eigen-3.4.0/Eigen/src/Core/util/ConfigureVectorization.h +Index: eigen-5.0.0/Eigen/src/Core/util/ConfigureVectorization.h =================================================================== ---- eigen-3.4.0.orig/Eigen/src/Core/util/ConfigureVectorization.h -+++ eigen-3.4.0/Eigen/src/Core/util/ConfigureVectorization.h +--- eigen-5.0.0.orig/Eigen/src/Core/util/ConfigureVectorization.h ++++ eigen-5.0.0/Eigen/src/Core/util/ConfigureVectorization.h @@ -103,7 +103,7 @@ - // certain common platform (compiler+architecture combinations) to avoid these problems. - // Only static alignment is really problematic (relies on nonstandard compiler extensions), - // try to keep heap alignment even when we have to disable static alignment. -- #if EIGEN_COMP_GNUC && !(EIGEN_ARCH_i386_OR_x86_64 || EIGEN_ARCH_ARM_OR_ARM64 || EIGEN_ARCH_PPC || EIGEN_ARCH_IA64 || EIGEN_ARCH_MIPS) -+ #if EIGEN_COMP_GNUC && !(EIGEN_ARCH_i386_OR_x86_64 || EIGEN_ARCH_ARM_OR_ARM64 || EIGEN_ARCH_IA64 || EIGEN_ARCH_MIPS) - #define EIGEN_GCC_AND_ARCH_DOESNT_WANT_STACK_ALIGNMENT 1 - #elif EIGEN_ARCH_ARM_OR_ARM64 && EIGEN_COMP_GNUC_STRICT && EIGEN_GNUC_AT_MOST(4, 6) - // Old versions of GCC on ARM, at least 4.4, were once seen to have buggy static alignment support. + // certain common platform (compiler+architecture combinations) to avoid these problems. + // Only static alignment is really problematic (relies on nonstandard compiler extensions), + // try to keep heap alignment even when we have to disable static alignment. +-#if EIGEN_COMP_GNUC && !(EIGEN_ARCH_i386_OR_x86_64 || EIGEN_ARCH_ARM_OR_ARM64 || EIGEN_ARCH_PPC || EIGEN_ARCH_IA64 || \ ++#if EIGEN_COMP_GNUC && !(EIGEN_ARCH_i386_OR_x86_64 || EIGEN_ARCH_ARM_OR_ARM64 || EIGEN_ARCH_IA64 || \ + EIGEN_ARCH_MIPS || EIGEN_ARCH_LOONGARCH64) + #define EIGEN_GCC_AND_ARCH_DOESNT_WANT_STACK_ALIGNMENT 1 + #else ++++++ eigen-3.4.1.tar.bz2 -> eigen-5.0.0.tar.bz2 ++++++ ++++ 494743 lines of diff (skipped)
