Accepting request 912250 from X11:XOrg
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/912250 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/Mesa?expand=0&rev=412
This commit is contained in:
commit
65bcd38e66
@ -1,3 +1,24 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 8 08:52:15 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- fixed build on %ix86 by removing "-flto=auto" from optflags for
|
||||
cpp
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 5 15:51:18 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- enabled build of 'crocus' Gallium3D OpenGL driver for i965 "Gen4"
|
||||
through Haswell "Gen7" graphics (alternative to classic "i965"
|
||||
OpenGL driver); use MESA_LOADER_DRIVER_OVERRIDE=crocus to use it;
|
||||
in case of issues with video hardware acceleration(vaapi driver),
|
||||
set LIBVA_DRIVER_NAME=i965
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 5 01:25:40 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- update to 21.2.0
|
||||
* new release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 29 08:28:31 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
|
@ -41,7 +41,7 @@
|
||||
|
||||
%define glamor 1
|
||||
%define _name_archive mesa
|
||||
%define _version 21.1.6
|
||||
%define _version 21.2.0
|
||||
%define with_opencl 0
|
||||
%define with_vulkan 0
|
||||
%define with_llvm 0
|
||||
@ -114,7 +114,7 @@
|
||||
%endif
|
||||
|
||||
Name: Mesa-drivers
|
||||
Version: 21.1.6
|
||||
Version: 21.2.0
|
||||
Release: 0
|
||||
Summary: System for rendering 3-D graphics
|
||||
License: MIT
|
||||
@ -836,7 +836,7 @@ egl_platforms=x11,wayland
|
||||
%endif
|
||||
%ifarch %{ix86} x86_64
|
||||
-Ddri-drivers=i915,i965,nouveau,r100,r200 \
|
||||
-Dgallium-drivers=r300,r600,radeonsi,nouveau,swrast,svga,virgl,iris \
|
||||
-Dgallium-drivers=r300,r600,radeonsi,nouveau,swrast,svga,virgl,iris,crocus \
|
||||
%else
|
||||
%ifarch %{arm} aarch64
|
||||
-Ddri-drivers=nouveau \
|
||||
@ -860,7 +860,11 @@ egl_platforms=x11,wayland
|
||||
%endif
|
||||
-Db_ndebug=true \
|
||||
-Dc_args="%{optflags}" \
|
||||
%ifarch %ix86
|
||||
-Dcpp_args="$(echo %{optflags}|sed 's/-flto=auto//')"
|
||||
%else
|
||||
-Dcpp_args="%{optflags}"
|
||||
%endif
|
||||
|
||||
%meson_build
|
||||
|
||||
|
21
Mesa.changes
21
Mesa.changes
@ -1,3 +1,24 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 8 08:52:15 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- fixed build on %ix86 by removing "-flto=auto" from optflags for
|
||||
cpp
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 5 15:51:18 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- enabled build of 'crocus' Gallium3D OpenGL driver for i965 "Gen4"
|
||||
through Haswell "Gen7" graphics (alternative to classic "i965"
|
||||
OpenGL driver); use MESA_LOADER_DRIVER_OVERRIDE=crocus to use it;
|
||||
in case of issues with video hardware acceleration(vaapi driver),
|
||||
set LIBVA_DRIVER_NAME=i965
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 5 01:25:40 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- update to 21.2.0
|
||||
* new release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 29 08:28:31 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
|
10
Mesa.spec
10
Mesa.spec
@ -40,7 +40,7 @@
|
||||
|
||||
%define glamor 1
|
||||
%define _name_archive mesa
|
||||
%define _version 21.1.6
|
||||
%define _version 21.2.0
|
||||
%define with_opencl 0
|
||||
%define with_vulkan 0
|
||||
%define with_llvm 0
|
||||
@ -113,7 +113,7 @@
|
||||
%endif
|
||||
|
||||
Name: Mesa
|
||||
Version: 21.1.6
|
||||
Version: 21.2.0
|
||||
Release: 0
|
||||
Summary: System for rendering 3-D graphics
|
||||
License: MIT
|
||||
@ -835,7 +835,7 @@ egl_platforms=x11,wayland
|
||||
%endif
|
||||
%ifarch %{ix86} x86_64
|
||||
-Ddri-drivers=i915,i965,nouveau,r100,r200 \
|
||||
-Dgallium-drivers=r300,r600,radeonsi,nouveau,swrast,svga,virgl,iris \
|
||||
-Dgallium-drivers=r300,r600,radeonsi,nouveau,swrast,svga,virgl,iris,crocus \
|
||||
%else
|
||||
%ifarch %{arm} aarch64
|
||||
-Ddri-drivers=nouveau \
|
||||
@ -859,7 +859,11 @@ egl_platforms=x11,wayland
|
||||
%endif
|
||||
-Db_ndebug=true \
|
||||
-Dc_args="%{optflags}" \
|
||||
%ifarch %ix86
|
||||
-Dcpp_args="$(echo %{optflags}|sed 's/-flto=auto//')"
|
||||
%else
|
||||
-Dcpp_args="%{optflags}"
|
||||
%endif
|
||||
|
||||
%meson_build
|
||||
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b1cb0122f911dfa9fe1f209a7061378c61a1448a280e711511ca72dad9999e37
|
||||
size 15371108
|
Binary file not shown.
3
mesa-21.2.0.tar.xz
Normal file
3
mesa-21.2.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0cb3c802f4b8e7699b1602c08c29d06a4d532ab5b8f7a64676c4ca6bb8f4d426
|
||||
size 15678224
|
BIN
mesa-21.2.0.tar.xz.sig
Normal file
BIN
mesa-21.2.0.tar.xz.sig
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user