Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2022-01-15 20:05:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and      /work/SRC/openSUSE:Factory/.intel-gpu-tools.new.1892 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "intel-gpu-tools"

Sat Jan 15 20:05:06 2022 rev:2 rq:946551 version:1.26

Changes:
--------
--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2021-10-04 18:42:13.190277294 +0200
+++ 
/work/SRC/openSUSE:Factory/.intel-gpu-tools.new.1892/intel-gpu-tools.changes    
    2022-01-15 20:05:08.945756642 +0100
@@ -1,0 +2,6 @@
+Fri Jan 14 23:41:24 UTC 2022 - Tejas Guruswamy <[email protected]>
+
+- Build with meson 0.60 (intel-gpu-tools_fix-meson.patch)
+  + https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/107
+
+-------------------------------------------------------------------

New:
----
  intel-gpu-tools_fix-meson.patch

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

Other differences:
------------------
++++++ intel-gpu-tools.spec ++++++
--- /var/tmp/diff_new_pack.SlgSca/_old  2022-01-15 20:05:09.469757050 +0100
+++ /var/tmp/diff_new_pack.SlgSca/_new  2022-01-15 20:05:09.473757053 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package intel-gpu-tools
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,6 +26,8 @@
 Source0:        
http://xorg.freedesktop.org/releases/individual/app/igt-gpu-tools-%{version}.tar.xz
 Source1:        
http://xorg.freedesktop.org/releases/individual/app/igt-gpu-tools-%{version}.tar.xz.sig
 Patch0:         u_%{name}-1.7-fix-bashisms.patch
+#PATCH-FIX-UPSTREAM build with latest meson (commit 963917a3)
+Patch1:         intel-gpu-tools_fix-meson.patch
 
 BuildRequires:  bison
 BuildRequires:  flex
@@ -62,6 +64,7 @@
 
 %package devel
 Summary:        Development files for %{name}
+Group:          Development/Tools/Other
 Requires:       %{name} = %{version}
 
 %description devel
@@ -70,6 +73,7 @@
 %prep
 %setup -q -n igt-gpu-tools-%{version}
 %patch0
+%patch1 -p1
 
 %build
 %meson


++++++ intel-gpu-tools_fix-meson.patch ++++++
>From 963917a3565466832a3b2fc22e9285d34a0bf944 Mon Sep 17 00:00:00 2001
From: Petri Latvala <[email protected]>
Date: Thu, 28 Oct 2021 11:05:31 +0300
Subject: [PATCH] lib/meson.build: Fix underscorify call
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

f.underscorify() is correct, f.underscorify(f) is an error that later
meson versions don't like at all.

Closes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/107
Fixes: 588555f77909 ("lib/i915: Extract helpers for determining scheduler 
capabilities")
Cc: Arkadiusz Hiler <[email protected]>
Signed-off-by: Petri Latvala <[email protected]>
Reviewed-by: Jos???? Roberto de Souza <[email protected]>
---
 lib/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/meson.build b/lib/meson.build
index c3080fc8..297b0ad2 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -155,7 +155,7 @@ lib_version = vcs_tag(input : 'version.h.in', output : 
'version.h',
 
 lib_intermediates = []
 foreach f: lib_sources
-    name = f.underscorify(f)
+    name = f.underscorify()
     lib = static_library('igt-' + name,
        [ f, lib_version ],
        include_directories: inc,
-- 
GitLab

Reply via email to