Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kstars for openSUSE:Factory checked in at 2025-12-05 16:57:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kstars (Old) and /work/SRC/openSUSE:Factory/.kstars.new.1939 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kstars" Fri Dec 5 16:57:41 2025 rev:150 rq:1321225 version:3.8.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kstars/kstars.changes 2025-10-21 11:17:35.313738573 +0200 +++ /work/SRC/openSUSE:Factory/.kstars.new.1939/kstars.changes 2025-12-05 16:59:08.518727470 +0100 @@ -1,0 +2,19 @@ +Thu Dec 4 16:28:51 UTC 2025 - Paolo Stivanin <[email protected]> + +- Add fix-build-gcc15.patch +- Add fix-eigen3-max.patch + +------------------------------------------------------------------- +Wed Dec 3 07:08:41 UTC 2025 - Paolo Stivanin <[email protected]> + +- Update to 3.8.0: + * https://invent.kde.org/education/kstars/-/blob/master/ChangeLog +- Drop 0001-Make-it-compile-with-Qt-6.10.patch +- Drop 0001-Fix-installation-with-Qt6.patch + +------------------------------------------------------------------- +Sat Nov 22 21:20:04 CET 2025 - Stanislav Brabec <[email protected]> + +- Remove unused BuildRequires: update-desktop-files. + +------------------------------------------------------------------- Old: ---- 0001-Fix-installation-with-Qt6.patch 0001-Make-it-compile-with-Qt-6.10.patch kstars-3.7.8.tar.xz kstars-3.7.8.tar.xz.sig New: ---- fix-build-gcc15.patch fix-eigen3-max.patch kstars-3.8.0.tar.xz kstars-3.8.0.tar.xz.sig ----------(Old B)---------- Old:- Drop 0001-Make-it-compile-with-Qt-6.10.patch - Drop 0001-Fix-installation-with-Qt6.patch Old: * https://invent.kde.org/education/kstars/-/blob/master/ChangeLog - Drop 0001-Make-it-compile-with-Qt-6.10.patch - Drop 0001-Fix-installation-with-Qt6.patch ----------(Old E)---------- ----------(New B)---------- New: - Add fix-build-gcc15.patch - Add fix-eigen3-max.patch New:- Add fix-build-gcc15.patch - Add fix-eigen3-max.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kstars.spec ++++++ --- /var/tmp/diff_new_pack.lzKOd5/_old 2025-12-05 16:59:09.670775608 +0100 +++ /var/tmp/diff_new_pack.lzKOd5/_new 2025-12-05 16:59:09.674775775 +0100 @@ -20,7 +20,7 @@ # Internal QML import %global __requires_exclude qmlimport\\((KStarsLiteEnums|TelescopeLiteEnums).* Name: kstars -Version: 3.7.8 +Version: 3.8.0 Release: 0 Summary: Desktop Planetarium # Note for legal: the Apache licensed files in the tarball are for the @@ -36,10 +36,8 @@ # https://invent.kde.org/sysadmin/release-keyring/-/blob/master/keys/[email protected]?ref_type=heads Source2: kstars.keyring %endif -# PATCH-FIX-UPSTREAM -Patch0: 0001-Fix-installation-with-Qt6.patch -# PATCH-FIX-UPSTREAM -Patch1: 0001-Make-it-compile-with-Qt-6.10.patch +Patch0: fix-eigen3-max.patch +Patch1: fix-build-gcc15.patch BuildRequires: Mesa-devel BuildRequires: curl-devel BuildRequires: fdupes @@ -47,7 +45,6 @@ BuildRequires: libXISF-devel BuildRequires: libnova-devel BuildRequires: pkgconfig -BuildRequires: update-desktop-files BuildRequires: xplanet BuildRequires: cmake(KF6Config) BuildRequires: cmake(KF6Crash) ++++++ fix-build-gcc15.patch ++++++ >From 3d10e7bd5ca7d6d5625c8d2bae87496defc0608c Mon Sep 17 00:00:00 2001 From: Jasem Mutlaq <[email protected]> Date: Thu, 4 Dec 2025 07:14:02 +0300 Subject: [PATCH] Fix build issue on GCC 15. BUGS:512890 FIXED-IN:3.8.1 --- .../MPI_IS_gaussian_process/src/gaussian_process.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/kstars/ekos/guide/internalguide/MPI_IS_gaussian_process/src/gaussian_process.cpp b/kstars/ekos/guide/internalguide/MPI_IS_gaussian_process/src/gaussian_process.cpp index 27e6f6177f..2746ce8b14 100644 --- a/kstars/ekos/guide/internalguide/MPI_IS_gaussian_process/src/gaussian_process.cpp +++ b/kstars/ekos/guide/internalguide/MPI_IS_gaussian_process/src/gaussian_process.cpp @@ -18,6 +18,7 @@ */ #include <cstdint> +#include <cassert> #include "gaussian_process.h" #include "math_tools.h" -- GitLab ++++++ fix-eigen3-max.patch ++++++ diff -ru orig/kstars/ekos/guide/internalguide/MPI_IS_gaussian_process/src/math_tools.cpp mod/kstars/ekos/guide/internalguide/MPI_IS_gaussian_process/src/math_tools.cpp --- orig/kstars/ekos/guide/internalguide/MPI_IS_gaussian_process/src/math_tools.cpp 2025-12-01 13:06:11.000000000 +0100 +++ mod/kstars/ekos/guide/internalguide/MPI_IS_gaussian_process/src/math_tools.cpp 2025-12-04 17:22:49.025397525 +0100 @@ -72,7 +72,7 @@ return ((am.array().square().colwise().sum().transpose().rowwise().replicate(bCols).matrix() + bm.array().square().colwise().sum().colwise().replicate(aCols).matrix()) - - 2 * (am.transpose()) * bm).array().max(0); + - 2 * (am.transpose()) * bm).array().max(0.0); /* // verbose version Eigen::MatrixXd a_square = diff -ru orig/kstars/ekos/guide/internalguide/MPI_IS_gaussian_process/tools/math_tools.cpp mod/kstars/ekos/guide/internalguide/MPI_IS_gaussian_process/tools/math_tools.cpp --- orig/kstars/ekos/guide/internalguide/MPI_IS_gaussian_process/tools/math_tools.cpp 2025-12-01 13:06:11.000000000 +0100 +++ mod/kstars/ekos/guide/internalguide/MPI_IS_gaussian_process/tools/math_tools.cpp 2025-12-04 17:22:34.425100687 +0100 @@ -72,7 +72,7 @@ return ((am.array().square().colwise().sum().transpose().rowwise().replicate(bCols).matrix() + bm.array().square().colwise().sum().colwise().replicate(aCols).matrix()) - - 2 * (am.transpose()) * bm).array().max(0); + - 2 * (am.transpose()) * bm).array().max(0.0); /* // verbose version Eigen::MatrixXd a_square = ++++++ kstars-3.7.8.tar.xz -> kstars-3.8.0.tar.xz ++++++ /work/SRC/openSUSE:Factory/kstars/kstars-3.7.8.tar.xz /work/SRC/openSUSE:Factory/.kstars.new.1939/kstars-3.8.0.tar.xz differ: char 15, line 1
