Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qgis for openSUSE:Factory checked in at 2025-03-10 17:58:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qgis (Old) and /work/SRC/openSUSE:Factory/.qgis.new.19136 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qgis" Mon Mar 10 17:58:43 2025 rev:63 rq:1250599 version:3.42.0 Changes: -------- --- /work/SRC/openSUSE:Factory/qgis/qgis.changes 2025-01-20 17:15:25.992315485 +0100 +++ /work/SRC/openSUSE:Factory/.qgis.new.19136/qgis.changes 2025-03-10 17:58:59.610708438 +0100 @@ -1,0 +2,10 @@ +Wed Mar 5 12:05:50 UTC 2025 - Enno Tensing <tenno+s...@suij.in> + +- Update to 3.42.0 + * See https://changelog.qgis.org/en/qgis/version/3.42/ and + https://github.com/qgis/QGIS/compare/final-3_40_3...final-3_42_0 + for changes + * Add new qgis-check-if-maxcliplanes-is-defined.patch to fix + building with aarch64 + +------------------------------------------------------------------- Old: ---- qgis-3.40.3.tar.bz2 qgis-3.40.3.tar.bz2.sha256 New: ---- qgis-3.42.0.tar.bz2 qgis-3.42.0.tar.bz2.sha256 qgis-check-if-maxcliplanes-is-defined.patch BETA DEBUG BEGIN: New: for changes * Add new qgis-check-if-maxcliplanes-is-defined.patch to fix building with aarch64 BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qgis.spec ++++++ --- /var/tmp/diff_new_pack.nWXEls/_old 2025-03-10 17:59:04.610918316 +0100 +++ /var/tmp/diff_new_pack.nWXEls/_new 2025-03-10 17:59:04.614918484 +0100 @@ -1,7 +1,7 @@ # # spec file for package qgis # -# 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 @@ -34,7 +34,7 @@ %define mypython %pythons %define __mypython %{expand:%%__%{mypython}} -Version: 3.40.3 +Version: 3.42.0 Release: 0 Summary: A Geographic Information System (GIS) License: GPL-2.0-only @@ -48,6 +48,8 @@ Patch1: fix-fastcgi-include.patch # PATCH-FIX-UPSTREAM - scan for pdal-config instead of pdal in cmake Patch2: qgis-fix-cmake-findpdal.patch +# PATCH-FIX-UPSTREAM - only determine GL_MAX_CLIP_PLANES if it is defined +Patch3: qgis-check-if-maxcliplanes-is-defined.patch BuildRequires: FastCGI-devel BuildRequires: PDAL-devel BuildRequires: bison >= 2.4 ++++++ qgis-3.40.3.tar.bz2 -> qgis-3.42.0.tar.bz2 ++++++ /work/SRC/openSUSE:Factory/qgis/qgis-3.40.3.tar.bz2 /work/SRC/openSUSE:Factory/.qgis.new.19136/qgis-3.42.0.tar.bz2 differ: char 11, line 1 ++++++ qgis-3.40.3.tar.bz2.sha256 -> qgis-3.42.0.tar.bz2.sha256 ++++++ --- /work/SRC/openSUSE:Factory/qgis/qgis-3.40.3.tar.bz2.sha256 2025-01-20 17:15:25.984315156 +0100 +++ /work/SRC/openSUSE:Factory/.qgis.new.19136/qgis-3.42.0.tar.bz2.sha256 2025-03-10 17:58:58.266652023 +0100 @@ -1 +1 @@ -51135f0b0f82f2b76de4b89a0978396dbdab9baa3c9c03c4a53b7e2f48451076 qgis-3.40.3.tar.bz2 +04b743397ee2375a1a0521578131fc514752f84db2f86225a9551d1f87e704e8 qgis-3.42.0.tar.bz2 ++++++ qgis-check-if-maxcliplanes-is-defined.patch ++++++ diff --git i/src/3d/qgs3dutils.cpp w/src/3d/qgs3dutils.cpp index 053c9458611..78ab57b9915 100644 --- i/src/3d/qgs3dutils.cpp +++ w/src/3d/qgs3dutils.cpp @@ -972,6 +972,7 @@ int Qgs3DUtils::openGlMaxClipPlanes( QSurface *surface ) { int numPlanes = 6; +#ifdef GL_MAX_CLIP_PLANES QOpenGLContext context; context.setFormat( QSurfaceFormat::defaultFormat() ); if ( context.create() ) @@ -982,6 +983,7 @@ int Qgs3DUtils::openGlMaxClipPlanes( QSurface *surface ) funcs->glGetIntegerv( GL_MAX_CLIP_PLANES, &numPlanes ); } } +#endif return numPlanes; }