Hello community,

here is the log from the commit of package Mesa for openSUSE:Factory checked in 
at 2018-03-24 16:07:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/Mesa (Old)
 and      /work/SRC/openSUSE:Factory/.Mesa.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "Mesa"

Sat Mar 24 16:07:01 2018 rev:319 rq:590319 version:unknown

Changes:
--------
--- /work/SRC/openSUSE:Factory/Mesa/Mesa-drivers.changes        2018-03-04 
11:54:11.890700011 +0100
+++ /work/SRC/openSUSE:Factory/.Mesa.new/Mesa-drivers.changes   2018-03-24 
16:07:02.877519174 +0100
@@ -1,0 +2,21 @@
+Wed Mar 21 15:06:52 UTC 2018 - [email protected]
+
+- Update to 18.0.0-rc5
+  * The fifth and final release candidate for Mesa 18.0.0. Modulo
+    serious regressions, it is anticipated that it will become
+    Mesa 18.0.0 this Friday (2018-03-23) around 16:00 GMT
+- supersedes u_glsl-linker-error.patch
+
+-------------------------------------------------------------------
+Mon Mar 19 19:58:07 UTC 2018 - [email protected]
+
+- no longer try to use non-existing python3-mako as BuildRequires
+  on Leap 42.3
+
+-------------------------------------------------------------------
+Thu Mar 15 15:49:45 UTC 2018 - [email protected]
+
+- u_st-dri-don-t-set-queryDmaBufFormats-queryDmaBufModif.patch
+  * Fixes laggy mouse in Wayland. (fdo#104926)
+
+-------------------------------------------------------------------
Mesa.changes: same change

Old:
----
  mesa-18.0.0-rc4.tar.xz
  mesa-18.0.0-rc4.tar.xz.sig
  u_glsl-linker-error.patch

New:
----
  mesa-18.0.0-rc5.tar.xz
  mesa-18.0.0-rc5.tar.xz.sig
  u_st-dri-don-t-set-queryDmaBufFormats-queryDmaBufModif.patch

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

Other differences:
------------------
++++++ Mesa-drivers.spec ++++++
--- /var/tmp/diff_new_pack.rnAvQW/_old  2018-03-24 16:07:04.745451837 +0100
+++ /var/tmp/diff_new_pack.rnAvQW/_new  2018-03-24 16:07:04.749451693 +0100
@@ -43,7 +43,7 @@
 
 %define glamor 1
 %define _name_archive mesa
-%define _version 18.0.0-rc4
+%define _version 18.0.0-rc5
 %define with_opencl 0
 %define with_vulkan 0
 %define with_llvm 0
@@ -141,7 +141,7 @@
 # Upstream
 Patch43:        u_r600-egd_tables.py-make-the-script-python-2-3-compat.patch
 Patch45:        n_Disable-AMDGPU-GFX9-Vega-on-LLVM-lessthan-6.0.0.patch
-Patch46:        u_glsl-linker-error.patch
+Patch47:        u_st-dri-don-t-set-queryDmaBufFormats-queryDmaBufModif.patch
 
 BuildRequires:  autoconf >= 2.60
 BuildRequires:  automake
@@ -151,7 +151,9 @@
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
 BuildRequires:  python3-base
+%if 0%{?suse_version} > 1320
 BuildRequires:  python3-mako
+%endif
 BuildRequires:  python3-xml
 BuildRequires:  pkgconfig(dri2proto)
 BuildRequires:  pkgconfig(dri3proto)
@@ -751,7 +753,7 @@
 
 %patch43 -p1
 %patch45 -p1
-%patch46 -p1
+%patch47 -p1
 
 # Remove requires to libglvnd/libglvnd-devel from baselibs.conf when
 # disabling libglvnd build; ugly ...

Mesa.spec: same change

++++++ mesa-18.0.0-rc4.tar.xz -> mesa-18.0.0-rc5.tar.xz ++++++
/work/SRC/openSUSE:Factory/Mesa/mesa-18.0.0-rc4.tar.xz 
/work/SRC/openSUSE:Factory/.Mesa.new/mesa-18.0.0-rc5.tar.xz differ: char 26, 
line 1

++++++ u_st-dri-don-t-set-queryDmaBufFormats-queryDmaBufModif.patch ++++++
Author: Michal Srb <[email protected]>
Subject: st/dri: don't set queryDmaBufFormats/queryDmaBufModifiers if the 
driver does not implement it
Patch-mainline: To be upstreamed
References: fdo#104926

This is equivalent to commit a65db0ad1c3, but for dri_kms_init_screen. Without
this gbm_dri_is_format_supported always returns false.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=104926
---
 src/gallium/state_trackers/dri/dri2.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/gallium/state_trackers/dri/dri2.c 
b/src/gallium/state_trackers/dri/dri2.c
index 415002d2cd..59740b1301 100644
--- a/src/gallium/state_trackers/dri/dri2.c
+++ b/src/gallium/state_trackers/dri/dri2.c
@@ -2162,8 +2162,10 @@ dri_kms_init_screen(__DRIscreen * sPriv)
       dri2ImageExtension.createImageFromFds = dri2_from_fds;
       dri2ImageExtension.createImageFromDmaBufs = dri2_from_dma_bufs;
       dri2ImageExtension.createImageFromDmaBufs2 = dri2_from_dma_bufs2;
-      dri2ImageExtension.queryDmaBufFormats = dri2_query_dma_buf_formats;
-      dri2ImageExtension.queryDmaBufModifiers = dri2_query_dma_buf_modifiers;
+      if (pscreen->query_dmabuf_modifiers) {
+         dri2ImageExtension.queryDmaBufFormats = dri2_query_dma_buf_formats;
+         dri2ImageExtension.queryDmaBufModifiers = 
dri2_query_dma_buf_modifiers;
+      }
    }
 
    sPriv->extensions = dri_screen_extensions;
-- 
2.13.6


Reply via email to