- Update to 22.0.1
* fixes in lavapipe and zink, maintainer scripts and panfrost - supersedes U_meson-restore-private-requires-to-libdrm-in-dri.pc-f.patch OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/Mesa?expand=0&rev=1097
This commit is contained in:
parent
c98bae3dd3
commit
13401be085
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 29 21:58:46 UTC 2022 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- Update to 22.0.1
|
||||
* fixes in lavapipe and zink, maintainer scripts and panfrost
|
||||
- supersedes U_meson-restore-private-requires-to-libdrm-in-dri.pc-f.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 22 11:13:43 UTC 2022 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
|
@ -41,7 +41,7 @@
|
||||
|
||||
%define glamor 1
|
||||
%define _name_archive mesa
|
||||
%define _version 22.0.0
|
||||
%define _version 22.0.1
|
||||
%define with_opencl 0
|
||||
%define with_vulkan 0
|
||||
%define with_llvm 0
|
||||
@ -114,7 +114,7 @@
|
||||
%endif
|
||||
|
||||
Name: Mesa-drivers
|
||||
Version: 22.0.0
|
||||
Version: 22.0.1
|
||||
Release: 0
|
||||
Summary: System for rendering 3-D graphics
|
||||
License: MIT
|
||||
@ -136,7 +136,6 @@ Patch100: U_fix-mpeg1_2-decode-mesa-20.2.patch
|
||||
Patch200: u_fix-build-on-ppc64le.patch
|
||||
Patch300: n_buildfix-21.3.0.patch
|
||||
Patch400: n_no-sse2-on-ix86-except-for-intel-drivers.patch
|
||||
Patch500: U_meson-restore-private-requires-to-libdrm-in-dri.pc-f.patch
|
||||
BuildRequires: bison
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: flex
|
||||
@ -752,7 +751,6 @@ rm -rf docs/README.{VMS,WIN32,OS2}
|
||||
%ifarch %{ix86}
|
||||
%patch400 -p1
|
||||
%endif
|
||||
%patch500 -p1
|
||||
|
||||
# Remove requires to vulkan libs from baselibs.conf on platforms
|
||||
# where vulkan build is disabled; ugly ...
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 29 21:58:46 UTC 2022 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
- Update to 22.0.1
|
||||
* fixes in lavapipe and zink, maintainer scripts and panfrost
|
||||
- supersedes U_meson-restore-private-requires-to-libdrm-in-dri.pc-f.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 22 11:13:43 UTC 2022 - Stefan Dirsch <sndirsch@suse.com>
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
||||
|
||||
%define glamor 1
|
||||
%define _name_archive mesa
|
||||
%define _version 22.0.0
|
||||
%define _version 22.0.1
|
||||
%define with_opencl 0
|
||||
%define with_vulkan 0
|
||||
%define with_llvm 0
|
||||
@ -113,7 +113,7 @@
|
||||
%endif
|
||||
|
||||
Name: Mesa
|
||||
Version: 22.0.0
|
||||
Version: 22.0.1
|
||||
Release: 0
|
||||
Summary: System for rendering 3-D graphics
|
||||
License: MIT
|
||||
@ -135,7 +135,6 @@ Patch100: U_fix-mpeg1_2-decode-mesa-20.2.patch
|
||||
Patch200: u_fix-build-on-ppc64le.patch
|
||||
Patch300: n_buildfix-21.3.0.patch
|
||||
Patch400: n_no-sse2-on-ix86-except-for-intel-drivers.patch
|
||||
Patch500: U_meson-restore-private-requires-to-libdrm-in-dri.pc-f.patch
|
||||
BuildRequires: bison
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: flex
|
||||
@ -751,7 +750,6 @@ rm -rf docs/README.{VMS,WIN32,OS2}
|
||||
%ifarch %{ix86}
|
||||
%patch400 -p1
|
||||
%endif
|
||||
%patch500 -p1
|
||||
|
||||
# Remove requires to vulkan libs from baselibs.conf on platforms
|
||||
# where vulkan build is disabled; ugly ...
|
||||
|
@ -1,34 +0,0 @@
|
||||
From 31809f8419514f2130e9661d9989662165366e83 Mon Sep 17 00:00:00 2001
|
||||
From: Stefan Dirsch <sndirsch@suse.de>
|
||||
Date: Mon, 14 Mar 2022 11:38:23 +0100
|
||||
Subject: [PATCH] meson: restore private requires to libdrm in dri.pc file
|
||||
|
||||
Due to a typo the private requires to libdrm were lost in dri.pc.
|
||||
Fixed another typo (only comment).
|
||||
---
|
||||
src/gallium/frontends/dri/meson.build | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/gallium/frontends/dri/meson.build b/src/gallium/frontends/dri/meson.build
|
||||
index a0ae961c5fc..139707ea719 100644
|
||||
--- a/src/gallium/frontends/dri/meson.build
|
||||
+++ b/src/gallium/frontends/dri/meson.build
|
||||
@@ -68,13 +68,13 @@ libdri = static_library(
|
||||
if with_dri
|
||||
dri_req_private = []
|
||||
if dep_libdrm.found()
|
||||
- dir_req_private = ['libdrm >= @0@'.format(_drm_ver)]
|
||||
+ dri_req_private = ['libdrm >= @0@'.format(_drm_ver)]
|
||||
endif
|
||||
|
||||
pkg.generate(
|
||||
name : 'dri',
|
||||
filebase : 'dri',
|
||||
- description : 'Direct Rendering Infastructure',
|
||||
+ description : 'Direct Rendering Infrastructure',
|
||||
version : meson.project_version(),
|
||||
variables : ['dridriverdir=@0@'.format(dri_drivers_path)],
|
||||
requires_private : dri_req_private,
|
||||
--
|
||||
2.34.1
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e6c41928b5b9917485bd67cec22d15e62cad7a358bf4c711a647979987601250
|
||||
size 15565680
|
Binary file not shown.
3
mesa-22.0.1.tar.xz
Normal file
3
mesa-22.0.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c05f9682c54560b36e0afa70896233fc73f1ed715e10d1a028b0eb84fd04426f
|
||||
size 15634448
|
BIN
mesa-22.0.1.tar.xz.sig
Normal file
BIN
mesa-22.0.1.tar.xz.sig
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user