Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package Mesa for openSUSE:Factory checked in 
at 2026-05-14 21:41:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/Mesa (Old)
 and      /work/SRC/openSUSE:Factory/.Mesa.new.1966 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "Mesa"

Thu May 14 21:41:46 2026 rev:577 rq:1352970 version:26.1.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/Mesa/Mesa.changes        2026-05-10 
16:47:22.974467664 +0200
+++ /work/SRC/openSUSE:Factory/.Mesa.new.1966/Mesa.changes      2026-05-14 
21:41:49.603818543 +0200
@@ -30,0 +31,7 @@
+Wed May  6 10:22:09 UTC 2026 - Guillaume GARDET <[email protected]>
+
+- Add patch from 
https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40161
+  to fix build on armv6/7:
+  * u_PR-40161.patch
+
+-------------------------------------------------------------------

New:
----
  u_PR-40161.patch

----------(New B)----------
  New:  to fix build on armv6/7:
  * u_PR-40161.patch
----------(New E)----------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ Mesa.spec ++++++
--- /var/tmp/diff_new_pack.9zKMno/_old  2026-05-14 21:41:51.995916539 +0200
+++ /var/tmp/diff_new_pack.9zKMno/_new  2026-05-14 21:41:51.999916703 +0200
@@ -176,6 +176,7 @@
 Source22:       
http://crates.io/api/v1/crates/rustc-hash/%{_rustc_hash_crate_ver}/download#/rustc-hash-%{_rustc_hash_crate_ver}.tar.gz
 Patch2:         n_add-Mesa-headers-again.patch
 Patch17:        tlsdesc_test.patch
+Patch18:        u_PR-40161.patch
 # never to be upstreamed
 Patch54:        n_drirc-disable-rgb10-for-chromium-on-amd.patch
 Patch100:       U_fix-mpeg1_2-decode-mesa-20.2.patch
@@ -748,6 +749,7 @@
 %patch -P 2 -p1
 %endif
 %patch -P 17 -p1
+%patch -P 18 -p1
 # no longer needed since gstreamer-plugins-vaapi 1.18.4
 %if 0%{?suse_version} < 1550
 %patch -P 54 -p1



++++++ u_PR-40161.patch ++++++
>From db9728708d8a06f60bb850788d4cde487ac671f4 Mon Sep 17 00:00:00 2001
From: Alessandro Astone <[email protected]>
Date: Sun, 1 Mar 2026 18:14:09 +0100
Subject: [PATCH] gallivm: Fix armhf build against LLVM 22

StringMapIterator<bool> became StringMapIterBase<bool, false /* IsConst */>;
Use `auto` to handle either case.
---
 src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp 
b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
index ce8ca02bf745..86779f013c7b 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
+++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
@@ -331,7 +331,7 @@ lp_build_fill_mattrs(std::vector<std::string> &MAttrs)
       llvm::sys::getHostCPUFeatures(features);
    #endif
 
-   for (llvm::StringMapIterator<bool> f = features.begin();
+   for (auto f = features.begin();
         f != features.end();
         ++f) {
       MAttrs.push_back(((*f).second ? "+" : "-") + (*f).first().str());
-- 
GitLab

Reply via email to