From 1111e2b3c1a71bb77a58ea9198722327f4482e66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Exp=C3=B3sito?= Date: Wed, 28 Jan 2026 07:35:19 +0100 Subject: [PATCH] Enable va-driver only in Fedora Upstream, va-drivers are symlinks to libgallium [1]. The mesa-va-driver package is not distributed in CentOS/RHEL because it is not in the allow-list. However, now that its functionality is part of libgallium, it is required to disable it explicitly. Make "with_va" a Fedora only option. [1] https://gitlab.freedesktop.org/mesa/mesa/-/commit/b51ea6a445b4c1f386e992c894f85f262456db26 Resolves: https://issues.redhat.com/browse/RHEL-144489 --- mesa.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mesa.spec b/mesa.spec index bacd53e..fd2d887 100644 --- a/mesa.spec +++ b/mesa.spec @@ -4,11 +4,11 @@ %global with_vmware 1 %global with_vulkan_hw 1 %global with_vdpau 1 -%global with_va 1 %if !0%{?rhel} %global with_r300 1 %global with_r600 1 %global with_opencl 1 +%global with_va 1 %endif %if !0%{?rhel} || 0%{?rhel} >= 9 %global with_nvk %{with_vulkan_hw} @@ -82,7 +82,7 @@ Name: mesa Summary: Mesa graphics libraries %global ver 25.2.7 Version: %{lua:ver = string.gsub(rpm.expand("%{ver}"), "-", "~"); print(ver)} -Release: 2%{?dist} +Release: 3%{?dist} License: MIT AND BSD-3-Clause AND SGI-B-2.0 URL: http://www.mesa3d.org @@ -882,6 +882,10 @@ popd %endif %changelog +* Wed Jan 28 2026 José Expósito - 25.2.7-3 +- Enable va-driver only in Fedora + Resolves: https://issues.redhat.com/browse/RHEL-144489 + * Tue Jan 6 2026 Jocelyn Falempe