Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package Mesa for openSUSE:Factory checked in at 2021-10-20 11:22:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/Mesa (Old) and /work/SRC/openSUSE:Factory/.Mesa.new.1890 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "Mesa" Wed Oct 20 11:22:16 2021 rev:420 rq: version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/Mesa/Mesa-drivers.changes 2021-10-20 09:59:36.356331007 +0200 +++ /work/SRC/openSUSE:Factory/.Mesa.new.1890/Mesa-drivers.changes 2021-10-20 11:22:18.195011520 +0200 @@ -1,0 +2,17 @@ +Fri Oct 15 09:14:11 UTC 2021 - Stefan Dirsch <sndir...@suse.com> + +- update to 21.2.4 + * fourth bugfix release + * 300 fixes from the new r300 maintainer! Additionally, panfrost, + lots of crocus, some freedreno, intel, radv, core meas, gallivum, + anv, spirv, gallim, aco, i915g, lima, and llvmpipe fixes. +- supersedes U_gallivm-add-new-wrapper-around-Module.patch, + U_gallivm-fix-FTBFS-on-i386-with-LLVM-13.patch + +------------------------------------------------------------------- +Thu Oct 14 10:30:57 UTC 2021 - Stefan Dirsch <sndir...@suse.com> + +- u_fix-build-on-ppc64le.patch + * fixes build on ppc64le (boo#1191569) + +------------------------------------------------------------------- Mesa.changes: same change Old: ---- U_gallivm-add-new-wrapper-around-Module.patch U_gallivm-fix-FTBFS-on-i386-with-LLVM-13.patch mesa-21.2.3.tar.xz mesa-21.2.3.tar.xz.sig New: ---- mesa-21.2.4.tar.xz mesa-21.2.4.tar.xz.sig u_fix-build-on-ppc64le.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Mesa-drivers.spec ++++++ --- /var/tmp/diff_new_pack.QKYRir/_old 2021-10-20 11:22:19.335012076 +0200 +++ /var/tmp/diff_new_pack.QKYRir/_new 2021-10-20 11:22:19.335012076 +0200 @@ -41,7 +41,7 @@ %define glamor 1 %define _name_archive mesa -%define _version 21.2.3 +%define _version 21.2.4 %define with_opencl 0 %define with_vulkan 0 %define with_llvm 0 @@ -114,7 +114,7 @@ %endif Name: Mesa-drivers -Version: 21.2.3 +Version: 21.2.4 Release: 0 Summary: System for rendering 3-D graphics License: MIT @@ -133,8 +133,7 @@ Patch54: n_drirc-disable-rgb10-for-chromium-on-amd.patch Patch58: u_dep_xcb.patch Patch100: U_fix-mpeg1_2-decode-mesa-20.2.patch -Patch101: U_gallivm-add-new-wrapper-around-Module.patch -Patch102: U_gallivm-fix-FTBFS-on-i386-with-LLVM-13.patch +Patch200: u_fix-build-on-ppc64le.patch BuildRequires: bison BuildRequires: fdupes BuildRequires: flex @@ -768,8 +767,7 @@ %endif %patch58 -p1 %patch100 -p1 -%patch101 -p1 -%patch102 -p1 +%patch200 -p1 # Remove requires to vulkan libs from baselibs.conf on platforms # where vulkan build is disabled; ugly ... Mesa.spec: same change ++++++ mesa-21.2.3.tar.xz -> mesa-21.2.4.tar.xz ++++++ /work/SRC/openSUSE:Factory/Mesa/mesa-21.2.3.tar.xz /work/SRC/openSUSE:Factory/.Mesa.new.1890/mesa-21.2.4.tar.xz differ: char 26, line 1 ++++++ u_fix-build-on-ppc64le.patch ++++++ diff -u -r mesa-21.2.3.orig/include/CL/cl_platform.h mesa-21.2.3/include/CL/cl_platform.h --- mesa-21.2.3.orig/include/CL/cl_platform.h 2021-10-14 12:26:03.866376943 +0200 +++ mesa-21.2.3/include/CL/cl_platform.h 2021-10-14 20:37:44.557384820 +0200 @@ -356,7 +356,9 @@ /* Define basic vector types */ #if defined( __VEC__ ) #if !defined(__clang__) + #ifndef __cplusplus #include <altivec.h> /* may be omitted depending on compiler. AltiVec spec provides no way to detect whether the header is required. */ + #endif #endif typedef __vector unsigned char __cl_uchar16; typedef __vector signed char __cl_char16; diff -u -r mesa-21.2.3.orig/src/gallium/drivers/llvmpipe/lp_rast_tri.c mesa-21.2.3/src/gallium/drivers/llvmpipe/lp_rast_tri.c --- mesa-21.2.3.orig/src/gallium/drivers/llvmpipe/lp_rast_tri.c 2021-10-14 12:26:04.058380655 +0200 +++ mesa-21.2.3/src/gallium/drivers/llvmpipe/lp_rast_tri.c 2021-10-14 20:38:55.478734888 +0200 @@ -465,7 +465,9 @@ #if defined(_ARCH_PWR8) && UTIL_ARCH_LITTLE_ENDIAN +#ifndef __cplusplus #include <altivec.h> +#endif #include "util/u_pwr8.h" static inline void diff -u -r mesa-21.2.3.orig/src/gallium/drivers/llvmpipe/lp_setup_tri.c mesa-21.2.3/src/gallium/drivers/llvmpipe/lp_setup_tri.c --- mesa-21.2.3.orig/src/gallium/drivers/llvmpipe/lp_setup_tri.c 2021-10-14 12:26:04.058380655 +0200 +++ mesa-21.2.3/src/gallium/drivers/llvmpipe/lp_setup_tri.c 2021-10-14 20:38:24.766150222 +0200 @@ -47,7 +47,9 @@ #if defined(PIPE_ARCH_SSE) #include <emmintrin.h> #elif defined(_ARCH_PWR8) && UTIL_ARCH_LITTLE_ENDIAN +#ifndef __cplusplus #include <altivec.h> +#endif #include "util/u_pwr8.h" #endif