commit intel-gpu-tools for openSUSE:Factory

2019-01-21 Thread root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2019-01-21 10:07:48

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new.28833 (New)


Package is "intel-gpu-tools"

Mon Jan 21 10:07:48 2019 rev:33 rq:664625 version:1.23

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2018-11-20 22:31:38.610625335 +0100
+++ 
/work/SRC/openSUSE:Factory/.intel-gpu-tools.new.28833/intel-gpu-tools.changes   
2019-01-21 10:07:49.970832080 +0100
@@ -1,0 +2,14 @@
+Fri Jan 11 12:03:30 UTC 2019 - sndir...@suse.com
+
+- U_lib-fb-Fix-rgb24-to-nv12-conversion.patch
+  * official upstream patch
+  * supersedes gcc9-fix.patch
+- u_lib-fb-Fix-rgb24-to-nv12-conversion-once-more.patch
+  * supposed to fix patch right above (fdo#109257)
+
+---
+Fri Jan 11 10:21:38 UTC 2019 - Martin Liška 
+
+- Add gcc9-fix.patch (boo#1121229).
+
+---

New:

  U_lib-fb-Fix-rgb24-to-nv12-conversion.patch
  u_lib-fb-Fix-rgb24-to-nv12-conversion-once-more.patch



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.tQndqC/_old  2019-01-21 10:07:50.550831494 +0100
+++ /var/tmp/diff_new_pack.tQndqC/_new  2019-01-21 10:07:50.554831490 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package intel-gpu-tools
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,6 +29,8 @@
 Patch1: n_disable-build-of-gem_userptr_blits.patch
 Patch2: u_%{name}-1.7-fix-bashisms.patch
 Patch3: u_respect_cflags.diff
+Patch4: U_lib-fb-Fix-rgb24-to-nv12-conversion.patch
+Patch5: u_lib-fb-Fix-rgb24-to-nv12-conversion-once-more.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 # Intel GPU is only available on x86 and x86-64
 ExclusiveArch:  %ix86 x86_64
@@ -68,12 +70,14 @@
 %endif
 %patch2
 %patch3 -p1
+%patch4 -p1
+%patch5 -p1
 
 %build
 ./autogen.sh
 autoreconf -fi
 %configure --enable-gtk-doc
-make %{?_smp_mflags}
+make %{?_smp_mflags} V=1
 
 %install
 %make_install

++ U_lib-fb-Fix-rgb24-to-nv12-conversion.patch ++
>From f01796214bbde31e37b0593e547ad9436fdd02ba Mon Sep 17 00:00:00 2001
From: Petri Latvala 
Date: Wed, 9 Jan 2019 14:28:29 +0200
Subject: [PATCH] lib/fb: Fix rgb24 to nv12 conversion
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

A typo fix in 1x2 pixel block conversion code, revealed by GCC 9

Fixes: 1c7ef3890045 ("lib: Use igt_matrix for ycbcr<->rgb conversion")
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109257
Reported-by: Martin Liska 
Signed-off-by: Petri Latvala 
Cc: Ville Syrjälä 
Cc: Maarten Lankhorst 
Reviewed-by: Maarten Lankhorst 
---
 lib/igt_fb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 8244e517..5cd1829a 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -1779,7 +1779,7 @@ static void convert_rgb24_to_nv12(struct fb_convert *cvt)
struct igt_vec4 yuv[2];
 
read_rgb([0], [j * 8 + 0]);
-   read_rgb([2], [j * 8 + 0 + rgb24_stride]);
+   read_rgb([1], [j * 8 + 0 + rgb24_stride]);
 
yuv[0] = igt_matrix_transform(, [0]);
yuv[1] = igt_matrix_transform(, [1]);
-- 
2.16.4


++ u_lib-fb-Fix-rgb24-to-nv12-conversion-once-more.patch ++
>From e2d6c53af0881e2429e3b2fd60a3fe5862642e25 Mon Sep 17 00:00:00 2001
From: Stefan Dirsch 
Date: Fri, 11 Jan 2019 12:49:56 +0100
Subject: [PATCH] lib/fb: Fix rgb24 to nv12 conversion (once more)

One more fix in 1x2 pixel block conversion code, originally revealed by GCC 9
Fixes: 1c7ef3890045 ("lib: Use igt_matrix for ycbcr<->rgb conversion")
Fixes: f01796214bbd ("lib/fb: Fix rgb24 to nv12 conversion")
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109257
Reported-by: Martin Liska 
Signed-off-by: Stefan Dirsch 
---
 lib/igt_fb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 5cd1829a..f3fe43fb 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -1779,7 +1779,7 @@ static void convert_rgb24_to_nv12(struct fb_convert *cvt)
struct igt_vec4 yuv[2];
 
read_rgb([0], [j * 8 + 0]);
-   read_rgb([1], [j * 8 + 0 + rgb24_stride]);
+

commit intel-gpu-tools for openSUSE:Factory

2018-11-20 Thread root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2018-11-20 22:31:33

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new.19453 (New)


Package is "intel-gpu-tools"

Tue Nov 20 22:31:33 2018 rev:32 rq:650214 version:1.23

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2018-09-05 13:43:19.917762021 +0200
+++ 
/work/SRC/openSUSE:Factory/.intel-gpu-tools.new.19453/intel-gpu-tools.changes   
2018-11-20 22:31:38.610625335 +0100
@@ -1,0 +2,7 @@
+Mon Nov 19 14:12:11 UTC 2018 - sndir...@suse.com
+
+- n_disable-build-of-gem_userptr_blits.patch
+  * disabled build of gem_userptr_blits test in order to fix build
+on SUSE <= sle15/Leap15
+
+---

New:

  n_disable-build-of-gem_userptr_blits.patch



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.nmOoS4/_old  2018-11-20 22:31:39.306624908 +0100
+++ /var/tmp/diff_new_pack.nmOoS4/_new  2018-11-20 22:31:39.310624906 +0100
@@ -26,6 +26,7 @@
 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: n_disable-build-of-pm_rpm.patch
+Patch1: n_disable-build-of-gem_userptr_blits.patch
 Patch2: u_%{name}-1.7-fix-bashisms.patch
 Patch3: u_respect_cflags.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -62,6 +63,9 @@
 %prep
 %setup -q -n igt-gpu-tools-%{version}
 %patch0
+%if 0%{?suse_version} < 1550
+%patch1
+%endif
 %patch2
 %patch3 -p1
 


++ n_disable-build-of-gem_userptr_blits.patch ++
--- tests/Makefile.sources.orig 2018-11-14 15:47:00.014396000 +0100
+++ tests/Makefile.sources  2018-11-14 15:47:44.495769000 +0100
@@ -153,7 +153,6 @@
gem_tiling_max_stride \
gem_unfence_active_buffers \
gem_unref_active_buffers \
-   gem_userptr_blits \
gem_wait \
gem_workarounds \
gem_write_read_ring_switch \



commit intel-gpu-tools for openSUSE:Factory

2018-04-20 Thread root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2018-04-20 17:24:30

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is "intel-gpu-tools"

Fri Apr 20 17:24:30 2018 rev:30 rq:593581 version:1.22

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2017-08-22 11:06:04.930343116 +0200
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2018-04-20 17:24:35.393157072 +0200
@@ -1,0 +2,98 @@
+Wed Apr  4 14:58:08 UTC 2018 - ch...@computersalat.de
+
+- Release 1.22 (2018-03-09)
+  * General changes:
+- Libudev has been made a mandatory dependency. (Antonio Argenziano)
+- Documentation changed to refer to the new igt-dev mailing
+  list. (Rhys Kidd)
+  * Library changes:
+- Refactored timer usage for smaller code size. (Chris Wilson)
+- Various fixes to support planar framebuffers. (Maarten Lankhorst)
+- Added support for fetching the most recent CRC without waiting for a
+  vblank, along with flushing the queue of already collected
+  CRCs. (Maarten Lankhorst)
+- Added a helper to mark BOs purgeable on vc4. (Boris Brezillon)
+- Moved handling of a "cork" BO into lib from various tests.
+  (Daniele Ceraolo Spurio)
+- Added support for looping over physical i915 engines, as opposed to
+  uABI engines that can alias. (Chris Wilson)
+- Added an accelerated method for reading from WC buffers.
+  (Chris Wilson)
+  * Tools changes:
+- Improved intel_vbt_decode output, updated the data from current
+  kernel. (Jani Nikula)
+- intel_reg can now read/write registers using a given engine.
+  (Mika Kuoppala)
+- Aubdump can now simulate enhanced execlist submission, for
+  gen11+. (Scott D Phillips)
+  * And many other bug fixes, improvements, cleanups and new tests.
+- Release 1.21 (2018-01-16)
+  * Library changes:
+- Added helpers for using DRM syncobj. (Jason Ekstrand)
+- Refactored several i915 helpers into library functions.
+  (Michał Winiarski)
+- Improved the GPU quiescing code to more thoroughly flush old data
+  and pending work. (Chris Wilson)
+- Reworked DRM property handling to be more suitable for
+  atomic commits. (Maarten Lankhorst)
+- Removed support for legacy CRC API. The generic API has been
+  available since kernel 4.10. (Maarten Lankhorst)
+- Opening a DRM device now automatically loads its module. (Chris Wilson)
+- Imported the drm-uapi headers as copies instead of using what's
+  installed in the system. (Eric Anholt)
+- Moved the perf code to its own library from
+  intel-gpu-overlay. (Tvrtko Ursulin)
+- Removed Android support due to lack of use and
+  maintenance. (Arkadiusz Hiler)
+- Upgraded meson to official production status, automake is still kept
+  around for now.
+  * Tools changes:
+- Improved the output of intel_vbt_decode. (Jani Nikula)
+- intel_error_decode now prints user buffers if they contain debug
+  logs. (Chris Wilson)
+- Improved the output of intel_watermark. (Ville Syrjälä,
+  Dhinakaran Pandiyan)
+- Aubdump can now simulate execlist submission, converting from ring
+  buffer submission method. (Scott D Phillips)
+- intel-gpu-overlay can now show data from perf PMU. (Tvrtko Ursulin,
+  Chris Wilson)
+- intel-gpu-overlay now parses tracepoint locations from
+  sysfs. (Lionel Landwerlin)
+  * Documentation changes:
+- Documentation can now be built with Meson. (Daniel Vetter)
+  * And many other bug fixes, improvements, cleanups and new tests.
+- adjusted u_respect_cflags.diff
+- fix deps for libdrm
+- fix build
+  * add ./autogen.sh
+  * add --enable-gtk-doc
+
+---
+Fri Oct  6 12:58:14 UTC 2017 - sndir...@suse.com
+
+- Release 1.20 (2017-10-04) 
+  * Library changes:
+- Added helpers for launching external processes and capturing their
+  outputs. (Abdiel Janulgue)
+- Increased max pipe count to 6 to support AMD GPUs. (Leo (Sunpeng) Li)
+- Various improvements for Chamelium support. (Paul Kocialkowski)
+- Added Coffeelake platform support. (Rodrigo Vivi, Anusha Srivatsa)
+- Added Cannonlake platform support. (Rodrigo Vivi)
+- Added support for audio testing. (Paul Kocialkowski)
+- Added preliminary meson build system support. (Daniel Vetter, et al)
+  -- Autotools remains the supported build system for now.
+  * Tools changes:
+- Refactored video bios data to use definitions copied from the
+  kernel. (Jani Nikula)
+  * Documentation changes:
+- Added user and developer documentation about Chamelium support to
+ 

commit intel-gpu-tools for openSUSE:Factory

2017-08-22 Thread root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2017-08-22 11:06:04

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is "intel-gpu-tools"

Tue Aug 22 11:06:04 2017 rev:29 rq:517481 version:1.19

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2017-06-21 13:50:03.807700135 +0200
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2017-08-22 11:06:04.930343116 +0200
@@ -1,0 +2,5 @@
+Wed Aug 16 17:48:18 UTC 2017 - ch...@computersalat.de
+
+- add Source signature file
+
+---

New:

  intel-gpu-tools-1.19.tar.bz2.sig



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.AOCPwU/_old  2017-08-22 11:06:05.530258621 +0200
+++ /var/tmp/diff_new_pack.AOCPwU/_new  2017-08-22 11:06:05.534258059 +0200
@@ -24,9 +24,14 @@
 Group:  Development/Tools/Other
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
+Source1:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2.sig
 Patch0: n_disable-build-of-pm_rpm.patch
 Patch2: u_%{name}-1.7-fix-bashisms.patch
 Patch3: u_respect_cflags.diff
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# Intel GPU is only available on x86 and x86-64
+ExclusiveArch:  %ix86 x86_64
+#
 BuildRequires:  i2c-tools
 BuildRequires:  libtool
 BuildRequires:  pkg-config
@@ -48,9 +53,6 @@
 
 # This was part of the xorg-x11-driver-video package up to version 7.6
 Conflicts:  xorg-x11-driver-video <= 7.6
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# Intel GPU is only available on x86 and x86-64
-ExclusiveArch:  %ix86 x86_64
 
 %description
 This is a collection of tools for development and testing of the Intel




commit intel-gpu-tools for openSUSE:Factory

2017-06-21 Thread root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2017-06-21 13:50:02

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is "intel-gpu-tools"

Wed Jun 21 13:50:02 2017 rev:28 rq:504438 version:1.19

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2017-04-18 13:47:02.410988407 +0200
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2017-06-21 13:50:03.807700135 +0200
@@ -1,0 +2,28 @@
+Sun Jun 18 08:44:02 UTC 2017 - sndir...@suse.com
+
+- Release 1.19 (2017-06-09)
+  * Library changes:
+- Changed debugfs handlers to open files for the DRM device in use,
+  for setups with more than one DRM device. (Tomeu Vizoso)
+- Added support for 4K and audio HDMI EDID injection. (Abdiel
+  Janulgue, Marius Vlad)
+- Added support for AMDGPU devices. (Chris Wilson)
+  * Tools changes:
+- intel_error_decode now automatically opens a pager. (Chris Wilson)
+- intel_error_decode now dumps the GuC firmware logs if available.
+  (Chris Wilson)
+  * Benchmark changes:
+- gem_wsim: New benchmark that simulates command submission
+  workloads. (Tvrtko Ursulin)
+  * Scripts changes:
+- trace.pl: New tool to parse i915 tracepoints for performance
+  analysis. (Tvrtko Ursulin)
+- media-bench.pl: New tool to programmatically analyze simulated media
+  workloads using gem_wsim to find the optimal load balancing
+  strategy. (Tvrtko Ursulin)
+   * Test changes:
+ - Imported amdgpu tests from libdrm. (Chris Wilson)
+ - Multiple other new tests.
+   * And many other bug fixes and improvements.
+
+---

Old:

  intel-gpu-tools-1.18.tar.bz2

New:

  intel-gpu-tools-1.19.tar.bz2



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.yBS50F/_old  2017-06-21 13:50:04.999532014 +0200
+++ /var/tmp/diff_new_pack.yBS50F/_new  2017-06-21 13:50:05.003531449 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   intel-gpu-tools
-Version:1.18
+Version:1.19
 Release:0
 Summary:Collection of tools for development and testing of the Intel 
DRM driver
 License:MIT

++ intel-gpu-tools-1.18.tar.bz2 -> intel-gpu-tools-1.19.tar.bz2 ++
 32476 lines of diff (skipped)

++ n_disable-build-of-pm_rpm.patch ++
--- /var/tmp/diff_new_pack.yBS50F/_old  2017-06-21 13:50:07.295208183 +0200
+++ /var/tmp/diff_new_pack.yBS50F/_new  2017-06-21 13:50:07.295208183 +0200
@@ -2,11 +2,11 @@
 ===
 --- tests/Makefile.sources.orig
 +++ tests/Makefile.sources
-@@ -128,7 +128,6 @@ TESTS_progs_M = \
-   kms_tv_load_detect \
+@@ -217,7 +217,6 @@ TESTS_progs = \
pm_backlight \
pm_lpsp \
+   pm_rc6_residency \
 -  pm_rpm \
pm_rps \
-   pm_rc6_residency \
pm_sseu \
+   prime_busy \

++ u_respect_cflags.diff ++
--- /var/tmp/diff_new_pack.yBS50F/_old  2017-06-21 13:50:07.319204798 +0200
+++ /var/tmp/diff_new_pack.yBS50F/_new  2017-06-21 13:50:07.319204798 +0200
@@ -12,11 +12,11 @@
  tests/Makefile.am |   20 ++--
  1 file changed, 6 insertions(+), 14 deletions(-)
 
-Index: intel-gpu-tools-1.18/tests/Makefile.am
+Index: intel-gpu-tools-1.19/tests/Makefile.am
 ===
 intel-gpu-tools-1.18.orig/tests/Makefile.am
-+++ intel-gpu-tools-1.18/tests/Makefile.am
-@@ -53,18 +53,17 @@ EXTRA_DIST = $(common_files) $(check_SCR
+--- intel-gpu-tools-1.19.orig/tests/Makefile.am
 intel-gpu-tools-1.19/tests/Makefile.am
+@@ -63,18 +63,17 @@ EXTRA_DIST = $(common_files) $(check_SCR
  
  CLEANFILES = $(EXTRA_PROGRAMS) test-list.txt test-list-full.txt .gitignore
  
@@ -41,7 +41,7 @@
  AM_LDFLAGS = -Wl,--as-needed
  
  drm_import_export_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS)
-@@ -104,19 +103,12 @@ gem_wait_LDADD = $(LDADD) -lrt
+@@ -114,21 +113,13 @@ gem_wait_LDADD = $(LDADD) -lrt
  kms_flip_LDADD = $(LDADD) -lrt -lpthread
  pm_rc6_residency_LDADD = $(LDADD) -lrt
  
@@ -55,6 +55,8 @@
  vc4_create_bo_LDADD = $(LDADD) $(DRM_VC4_LIBS)
 -vc4_lookup_fail_CFLAGS = $(AM_CFLAGS) $(DRM_VC4_CFLAGS)
  vc4_lookup_fail_LDADD = $(LDADD) $(DRM_VC4_LIBS)
+-vc4_dmabuf_poll_CFLAGS = $(AM_CFLAGS) $(DRM_VC4_CFLAGS)
+ vc4_dmabuf_poll_LDADD = $(LDADD) $(DRM_VC4_LIBS)
 -vc4_wait_bo_CFLAGS = $(AM_CFLAGS) $(DRM_VC4_CFLAGS)
  vc4_wait_bo_LDADD = $(LDADD) $(DRM_VC4_LIBS)
 -vc4_wait_seqno_CFLAGS = $(AM_CFLAGS) $(DRM_VC4_CFLAGS)




commit intel-gpu-tools for openSUSE:Factory

2017-04-18 Thread root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2017-04-18 13:47:00

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is "intel-gpu-tools"

Tue Apr 18 13:47:00 2017 rev:27 rq:487536 version:1.18

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2017-03-20 17:05:32.811893152 +0100
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2017-04-18 13:47:02.410988407 +0200
@@ -1,0 +2,7 @@
+Wed Apr 12 10:40:30 UTC 2017 - sndir...@suse.com
+
+- SLE merge
+  * update to latest version, Stack release 2016Q1
+(fate #315643-315645, 319159-319161, 319618)
+
+---



Other differences:
--



commit intel-gpu-tools for openSUSE:Factory

2017-03-20 Thread root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2017-03-20 17:05:30

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is "intel-gpu-tools"

Mon Mar 20 17:05:30 2017 rev:26 rq:479303 version:1.18

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2017-02-10 09:47:56.359052022 +0100
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2017-03-20 17:05:32.811893152 +0100
@@ -1,0 +2,25 @@
+Tue Mar 14 17:53:57 UTC 2017 - sndir...@suse.com
+
+- Release 1.18 (2017-03-13)
+  * Library changes:
+- Various changes to library functions so that they don't assume Intel
+  hardware. (Lyude)
+- Added helper functions for managing synchronization primitives.
+  (Robert Foss)
+- Added support for the new generic CRC capture kernel ABI. (Tomeu
+  Vizoso)
+- Added Geminilake platform support. (Ander Conselvan de Oliveira)
+- Added helpers for sysfs hotplug events. (Lyude)
+- Added support for hotplug testing with the Chamelium device (Lyude)
+  * Tools changes:
+- intel_dp_compliance: New tool for running automated DisplayPort
+  compliance tests. (Manasi Navare)
+- Renamed intel_bios_reader to intel_vbt_decode. (Jani Nikula)
+- intel_gvtg_test: New tool for setting up GVT-g guests based on
+  KVMGT. (Terrence Xu)
+  * Test changes:
+- Multiple new tests.
+  * And many other bug fixes and improvements.
+- refreshed patches: n_disable-build-of-pm_rpm.patch, u_respect_cflags.diff
+
+---

Old:

  intel-gpu-tools-1.17.tar.bz2

New:

  intel-gpu-tools-1.18.tar.bz2



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.4lpxc1/_old  2017-03-20 17:05:33.935734466 +0100
+++ /var/tmp/diff_new_pack.4lpxc1/_new  2017-03-20 17:05:33.939733901 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   intel-gpu-tools
-Version:1.17
+Version:1.18
 Release:0
 Summary:Collection of tools for development and testing of the Intel 
DRM driver
 License:MIT

++ intel-gpu-tools-1.17.tar.bz2 -> intel-gpu-tools-1.18.tar.bz2 ++
 41620 lines of diff (skipped)

++ n_disable-build-of-pm_rpm.patch ++
--- /var/tmp/diff_new_pack.4lpxc1/_old  2017-03-20 17:05:35.007583120 +0100
+++ /var/tmp/diff_new_pack.4lpxc1/_new  2017-03-20 17:05:35.011582556 +0100
@@ -2,8 +2,8 @@
 ===
 --- tests/Makefile.sources.orig
 +++ tests/Makefile.sources
-@@ -124,7 +124,6 @@ TESTS_progs_M = \
-   kms_panel_fitting \
+@@ -128,7 +128,6 @@ TESTS_progs_M = \
+   kms_tv_load_detect \
pm_backlight \
pm_lpsp \
 -  pm_rpm \

++ u_respect_cflags.diff ++
--- /var/tmp/diff_new_pack.4lpxc1/_old  2017-03-20 17:05:35.023580862 +0100
+++ /var/tmp/diff_new_pack.4lpxc1/_new  2017-03-20 17:05:35.023580862 +0100
@@ -12,10 +12,10 @@
  tests/Makefile.am |   20 ++--
  1 file changed, 6 insertions(+), 14 deletions(-)
 
-Index: intel-gpu-tools-1.17/tests/Makefile.am
+Index: intel-gpu-tools-1.18/tests/Makefile.am
 ===
 intel-gpu-tools-1.17.orig/tests/Makefile.am
-+++ intel-gpu-tools-1.17/tests/Makefile.am
+--- intel-gpu-tools-1.18.orig/tests/Makefile.am
 intel-gpu-tools-1.18/tests/Makefile.am
 @@ -53,18 +53,17 @@ EXTRA_DIST = $(common_files) $(check_SCR
  
  CLEANFILES = $(EXTRA_PROGRAMS) test-list.txt test-list-full.txt .gitignore
@@ -35,7 +35,7 @@
 +  $(WERROR_CFLAGS) \
$(NULL)
  
- LDADD = ../lib/libintel_tools.la $(GLIB_LIBS)
+ LDADD = ../lib/libintel_tools.la $(GLIB_LIBS) $(XMLRPC_LIBS)
 -
 -AM_CFLAGS += $(CAIRO_CFLAGS) $(LIBUDEV_CFLAGS) $(GLIB_CFLAGS)
  AM_LDFLAGS = -Wl,--as-needed
@@ -59,5 +59,5 @@
  vc4_wait_bo_LDADD = $(LDADD) $(DRM_VC4_LIBS)
 -vc4_wait_seqno_CFLAGS = $(AM_CFLAGS) $(DRM_VC4_CFLAGS)
  vc4_wait_seqno_LDADD = $(LDADD) $(DRM_VC4_LIBS)
- endif
  
+ chamelium_CFLAGS = $(AM_CFLAGS) $(XMLRPC_CFLAGS) $(LIBUDEV_CFLAGS)




commit intel-gpu-tools for openSUSE:Factory

2017-02-10 Thread root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2017-02-10 09:47:54

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is "intel-gpu-tools"

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2017-01-18 21:29:44.914907558 +0100
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2017-02-10 09:47:56.359052022 +0100
@@ -1,0 +2,8 @@
+Sun Feb  5 12:30:23 UTC 2017 - jeng...@inai.de
+
+- Add u_respect_cflags.diff
+- supersedes N_intel-gpu-tools_Fix_libkmod.h_include_path_1320.patch,
+  N_intel-gpu-tools_Fix_libkmod.h_include_path_1315.patch,
+  N_intel-gpu-tools_Fix_libkmod.h_include_path.patch
+
+---

Old:

  N_intel-gpu-tools_Fix_libkmod.h_include_path.patch
  N_intel-gpu-tools_Fix_libkmod.h_include_path_1315.patch
  N_intel-gpu-tools_Fix_libkmod.h_include_path_1320.patch

New:

  u_respect_cflags.diff



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.ix283x/_old  2017-02-10 09:47:56.994961942 +0100
+++ /var/tmp/diff_new_pack.ix283x/_new  2017-02-10 09:47:56.994961942 +0100
@@ -26,10 +26,7 @@
 Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
 Patch0: n_disable-build-of-pm_rpm.patch
 Patch2: u_%{name}-1.7-fix-bashisms.patch
-# PATCH-FIX-openSUSE: Fix kmod.h include path
-Patch100:   N_intel-gpu-tools_Fix_libkmod.h_include_path_1315.patch
-Patch101:   N_intel-gpu-tools_Fix_libkmod.h_include_path_1320.patch
-Patch102:   N_intel-gpu-tools_Fix_libkmod.h_include_path.patch
+Patch3: u_respect_cflags.diff
 BuildRequires:  i2c-tools
 BuildRequires:  libtool
 BuildRequires:  pkg-config
@@ -60,18 +57,10 @@
 DRM driver.
 
 %prep
-%setup -q -n %{name}-%{version}
+%setup -q
 %patch0
 %patch2
-%if 0%{?suse_version} == 1315
-%patch100
-%endif
-%if 0%{?suse_version} == 1320
-%patch101
-%endif
-%if 0%{?suse_version} != 1315 && 0%{?suse_version} != 1320
-%patch102
-%endif
+%patch3 -p1
 
 %build
 autoreconf -fi

++ u_respect_cflags.diff ++
From: Jan Engelhardt 
Date: 2017-02-05 13:15:36.359677297 +0100
Subject: build: resolve build error due to improper CFLAGS

1. intel-gpu-tools failed to use LIBKMOD_CFLAGS, which can lead
   to build errors if libkmod is in a non-default location.
2. CFLAGS obtained from pkg-config are really CPPFLAGS and
   should go there (AM_CPPFLAGS).
3. The target-specific CFLAGS overrides are unnecessary, since
   there are no conflicting settings obtained from pkg-config.
---
 tests/Makefile.am |   20 ++--
 1 file changed, 6 insertions(+), 14 deletions(-)

Index: intel-gpu-tools-1.17/tests/Makefile.am
===
--- intel-gpu-tools-1.17.orig/tests/Makefile.am
+++ intel-gpu-tools-1.17/tests/Makefile.am
@@ -53,18 +53,17 @@ EXTRA_DIST = $(common_files) $(check_SCR
 
 CLEANFILES = $(EXTRA_PROGRAMS) test-list.txt test-list-full.txt .gitignore
 
-AM_CFLAGS = $(DRM_CFLAGS) $(CWARNFLAGS) -Wno-unused-result $(DEBUG_CFLAGS)\
-   -I$(srcdir)/.. \
-   -I$(srcdir)/../lib \
+AM_CPPFLAGS = -I$(srcdir)/.. -I$(srcdir)/../lib \
-include "$(srcdir)/../lib/check-ndebug.h" \
+   $(CAIRO_CFLAGS) $(DRM_CFLAGS) $(DRM_NOUVEAU_CFLAGS) $(DRM_VC4_CFLAGS) \
+   $(GLIB_CFLAGS) $(KMOD_CFLAGS) $(LIBUDEV_CFLAGS) $(LIBUNWIND_CFLAGS) \
-DIGT_SRCDIR=\""$(abs_srcdir)"\" \
-   -DIGT_DATADIR=\""$(pkgdatadir)"\" \
-   $(LIBUNWIND_CFLAGS) $(WERROR_CFLAGS) \
+   -DIGT_DATADIR=\""$(pkgdatadir)"\"
+AM_CFLAGS = $(CWARNFLAGS) -Wno-unused-result $(DEBUG_CFLAGS)\
+   $(WERROR_CFLAGS) \
$(NULL)
 
 LDADD = ../lib/libintel_tools.la $(GLIB_LIBS)
-
-AM_CFLAGS += $(CAIRO_CFLAGS) $(LIBUDEV_CFLAGS) $(GLIB_CFLAGS)
 AM_LDFLAGS = -Wl,--as-needed
 
 drm_import_export_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS)
@@ -104,19 +103,12 @@ gem_wait_LDADD = $(LDADD) -lrt
 kms_flip_LDADD = $(LDADD) -lrt -lpthread
 pm_rc6_residency_LDADD = $(LDADD) -lrt
 
-prime_nv_test_CFLAGS = $(AM_CFLAGS) $(DRM_NOUVEAU_CFLAGS)
 prime_nv_test_LDADD = $(LDADD) $(DRM_NOUVEAU_LIBS)
-prime_nv_api_CFLAGS = $(AM_CFLAGS) $(DRM_NOUVEAU_CFLAGS)
 prime_nv_api_LDADD = $(LDADD) $(DRM_NOUVEAU_LIBS)
-prime_nv_pcopy_CFLAGS = $(AM_CFLAGS) $(DRM_NOUVEAU_CFLAGS)
 prime_nv_pcopy_LDADD = $(LDADD) $(DRM_NOUVEAU_LIBS)
-vc4_create_bo_CFLAGS = $(AM_CFLAGS) $(DRM_VC4_CFLAGS)
 vc4_create_bo_LDADD = $(LDADD) $(DRM_VC4_LIBS)
-vc4_lookup_fail_CFLAGS = $(AM_CFLAGS) $(DRM_VC4_CFLAGS)
 vc4_lookup_fail_LDADD = $(LDADD) $(DRM_VC4_LIBS)

commit intel-gpu-tools for openSUSE:Factory

2017-01-18 Thread root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2017-01-18 21:29:43

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is "intel-gpu-tools"

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2016-09-26 12:34:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2017-01-18 21:29:44.914907558 +0100
@@ -1,0 +2,42 @@
+Thu Jan 12 22:22:37 UTC 2017 - ch...@computersalat.de
+
+- Release 1.17 (2016-12-02)
+  * Library changes:
+- Added an iterator that generate primes for creating input data that
+  should not fall into any patterns that may be optimised by the
+  drivers. (Chris Wilson)
+- Crashes in fixture blocks now print a stacktrace. (Marius Vlad)
+- Added support for various system suspend/resume options. (Imre Deak)
+- Added linked list helpers from the Wayland project. (Lyude)
+- Added a generic dummy workload helper for submitting GPU workloads
+  that consume exactly a specified amount of time. (Abdiel Janulgue)
+- Added C functions for driver loading/unloading, pkill and lsof, for
+  converting shell script tests to C code. (Marius Vlad)
+  * Tools changes:
+- intel_reg: Add Kabylake support. (Jani Nikula)
+- intel_bios_reader: Also dump PSR info. (Ville Syrjälä)
+- intel_guc_logger: New tool for capturing logs from the GuC
+  firmware. (Akash Goel)
+- intel_aubdump: Added commandline option to stream the dump to
+  another process. (Lionel Landwerlin)
+- intel_aubdump: Annotate the dump with the application name and the
+  used PCI ID. (Jason Ekstrand)
+  * Benchmark changes:
+- gem_latency: Added support for measuring fence wakeup latencies. (Chris 
Wilson)
+- prime_lookup: New microbenchmark for stressing prime_fd_to_handle
+  and prime_handle_to_fd. (Chris Wilson)
+  * Test changes:
+- Multiple new tests.
+- Added an explicit list of tests used for Intel CI. (Petri Latvala)
+- Converted multiple shell script tests to C. (Marius Vlad)
+  * And many other bug fixes and improvements.
+- add new deps
+  * pkgconfig(libkmod)
+  * pkgconfig(libprocps)
+- rebase patches
+- fix libkmod.h include path
+  * add N_intel-gpu-tools_Fix_libkmod.h_include_path_1315.patch
+  * add N_intel-gpu-tools_Fix_libkmod.h_include_path_1320.patch
+  * add N_intel-gpu-tools_Fix_libkmod.h_include_path.patch
+
+---

Old:

  intel-gpu-tools-1.16.tar.bz2

New:

  N_intel-gpu-tools_Fix_libkmod.h_include_path.patch
  N_intel-gpu-tools_Fix_libkmod.h_include_path_1315.patch
  N_intel-gpu-tools_Fix_libkmod.h_include_path_1320.patch
  intel-gpu-tools-1.17.tar.bz2



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.QkVYoH/_old  2017-01-18 21:29:45.442832897 +0100
+++ /var/tmp/diff_new_pack.QkVYoH/_new  2017-01-18 21:29:45.442832897 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package intel-gpu-tools
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   intel-gpu-tools
-Version:1.16
+Version:1.17
 Release:0
 Summary:Collection of tools for development and testing of the Intel 
DRM driver
 License:MIT
@@ -26,6 +26,10 @@
 Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
 Patch0: n_disable-build-of-pm_rpm.patch
 Patch2: u_%{name}-1.7-fix-bashisms.patch
+# PATCH-FIX-openSUSE: Fix kmod.h include path
+Patch100:   N_intel-gpu-tools_Fix_libkmod.h_include_path_1315.patch
+Patch101:   N_intel-gpu-tools_Fix_libkmod.h_include_path_1320.patch
+Patch102:   N_intel-gpu-tools_Fix_libkmod.h_include_path.patch
 BuildRequires:  i2c-tools
 BuildRequires:  libtool
 BuildRequires:  pkg-config
@@ -36,6 +40,8 @@
 BuildRequires:  pkgconfig(dri2proto) >= 2.6
 BuildRequires:  pkgconfig(gtk-doc)
 BuildRequires:  pkgconfig(libdrm_intel) >= 2.4.64
+BuildRequires:  pkgconfig(libkmod)
+BuildRequires:  pkgconfig(libprocps)
 BuildRequires:  pkgconfig(libudev)
 BuildRequires:  pkgconfig(libunwind)
 BuildRequires:  pkgconfig(pciaccess) >= 0.10
@@ -55,8 +61,17 @@
 
 %prep
 %setup -q -n %{name}-%{version}
-%patch0 -p1
-%patch2 -p1
+%patch0
+%patch2
+%if 0%{?suse_version} == 1315
+%patch100
+%endif
+%if 0%{?suse_version} == 1320
+%patch101
+%endif
+%if 

commit intel-gpu-tools for openSUSE:Factory

2016-09-26 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2016-09-26 12:34:22

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is "intel-gpu-tools"

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2016-06-05 14:20:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2016-09-26 12:34:24.0 +0200
@@ -1,0 +2,64 @@
+Thu Sep 22 13:18:54 UTC 2016 - sndir...@suse.com
+
+- Update to version 1.16
+A new intel-gpu-tools quarterly release is available with the following
+changes:
+- Build automatically tests required when issueing a make check, Tests/subtests
+that receive a crash signal should print a backtrace when i-g-t is built with
+libunwind support (Marius Vlad)
+- lib/igt_kms: Force connector probing on first use (Chris Wilson)
+- vc4: Add a test for BO lookup failure error path (Eric Anholt)
+- tests/gem_mocs_settings: Remove direct register tests,
+and added RC6 tests (Peter Antoine)
+- Check for libdrm_intel and build if present, Add stubs for intel_bufmgr
+(Robert Foss)
+- igt/gem_mmap_gtt: Add a test to detect non-WC access (Chris Wilson)
+- Various documentation improvements (Daniel Vetter)
+- Added new tests: tests/kms_rmfb and tests/kms_atomic_transition, a test for
+fastboot, tests/kms_panel_fitting, and a test that only tries to set the
+current property values back, tests/kms_properties. Various improvements to
+tests/kms_cursor_legacy (Maarten Lankhorst)
+- lib/igt_kms: Use pipes for committing, not outputs and assign pipe properties
+in pipe init and many other improvements (Maarten Lankhorst)
+- tests/gem_workarounds: read test added as a basic test, fix assertion of num
+of regs (Mika Kuoppala)
+- Various improvements to tools/intel_bios_reader and tools/intel_reg (Ville
+Syrj�l�)
+- lib: Add x86 cpuid based feature detection (Chris Wilson)
+- demos/intel_sprite_on: Instead of looping until the first disconnected port
+is found, now go through all possible connectors, drawing the sprite on any
+connected display. (Jim Bride)
+- Multiple improvements to lib/igt_kms (Robert Foss)
+- lib/igt_aux: Framework for measuring latency in raising signals (Chris
+Wilson)
+- Various modifications to intel_chipset: Replace lookup of GT size with
+computation, remove unused PCI_CHIP ids, converting platforms names using
+device info (Chris Wilson)
+- tests/kms_chv_cursor_fail: Run the tests with fewer steps
+(Maarten Lankhorst)
+- lib/intel_chipset: Add more Kabylake PCI IDs and removed PCI IDs that are no
+longer listed as Kabylake (Rodrigo Vivi)
+- Basic framework for GVT-g testing has landed (Chris Wilson)
+- Various improvements to tests/kms_flip (Ville Syrj�l�)
+- igt/kms_cursor_legacy: Add a rudimentary test to detect stalled cursors,
+detect pageflip errors and check that cursor updates do not stall flips
+(Chris Wilson)
+- vGEM support: lib and added tests/vgem_basic, tests/vgem_slow and
+tests/vgem_reload_basic (Chris Wilson)
+- Various fixes to tests/kms_frontbuffer_tracking: prefer BLT drawing, recreate
+FBS at every subtest and properly handle mixing GTT and WC mmaps (Paulo Zanoni)
+- Replace drv_missed_irq_hang script with a C-equivalent: tests/drv_missed_irq
+(Chris Wilson)
+- Added a test case for polling dma-buf fences: tests/prime_busy (Chris Wilson)
+- lib/igt_gt: Omit illegal instruction on gen8+ and time
+constrains on hang detection (igt/gem_reset_stats) (Mika Kuoppala)
+- Added tests/kms_invalid_dotclock, a test that makes sure every modeset gets
+rejected by the kernel if the requested dotclock is beyond the hardware
+capabilities (Ville Syrj�l�)
+- tests/gem_stolen: Verify contents of stolen-backed objects across
+hibernation, fix for no_mmap subtest and check for available stolen memory size
+(Ankitprasad Sharma)
+- tests/core_prop_blob: Add invalid tests to set fb props (Daniel Vetter)
+- Many more fixes and improvements.
+
+---

Old:

  intel-gpu-tools-1.15.tar.bz2

New:

  intel-gpu-tools-1.16.tar.bz2



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.WmT5BR/_old  2016-09-26 12:34:25.0 +0200
+++ /var/tmp/diff_new_pack.WmT5BR/_new  2016-09-26 12:34:25.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   intel-gpu-tools
-Version:1.15
+Version:1.16
 Release:0
 Summary:Collection of tools for development and testing of the Intel 
DRM driver
 License:MIT

++ intel-gpu-tools-1.15.tar.bz2 -> intel-gpu-tools-1.16.tar.bz2 ++
 37869 lines of diff 

commit intel-gpu-tools for openSUSE:Factory

2016-06-05 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2016-06-05 14:20:12

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is "intel-gpu-tools"

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2016-03-05 13:05:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2016-06-05 14:20:14.0 +0200
@@ -1,0 +2,57 @@
+Wed Jun  1 14:28:00 UTC 2016 - sndir...@suse.com
+
+Update to version 1.15
+- New KMS test: tests/kms_cursor_legacy (Stress legacy cursor ioctl)
+(Chris Wilson)
+- Several GEM tests have been removed from BAT: tests/gem_exec_whisper,
+tests/gem_sync (dropped individual engines), test/gem_cs_prefetch (replaced
+by test/gem_exec_gttfill), tests/gem_ctx_param_basic (got relabeled
+to tests/gem_ctx_param) (Chris Wilson)
+- build: Skip configure step if is NOCONFIGURE set (Tomeu Vizoso)
+- tools/intel_bios_reader: Added options for dumping individual panels, 
specific
+section, hex format and other various fixes (Jani Nikula)
+- build: Add optional --enable-werror
+(hard-fail in case of compiler warnings) (Marius Vlad)
+- New KMS test: tests/prime_mmap_kms (show case dma-buf new API
+and processes restrictions) (Tiago Vignatti)
+- Several tests have gained to ability to be run on different platforms
+than Intel: tests/testdisplay (Tomeu Vizoso), tests/kms_panel_fitting
+(Robert Foss), tests/kms_flip_event_leak, tests/kms_flip (Tomeu Vizoso).
+- compute exitcode first: In the case of running multiple subtests which all
+happen to be skipped, igt_exitcode is 0, but the final exit code will be 77.
+(Chris Wilson)
+- Shorten tests/kms_flip test (Tvrtko Ursulin)
+- Half the timeout for suspend to RAM and a third for suspend to disk
+(Marius Vlad)
+- lib: Pass format instead of bpp to create_bo_for_fb (Ville Syrjälä)
+- Removed from tests/test-list.txt, tests/gem_concurrent_all and added
+tests/test-list-full.txt that contains all the tests. This will speed
+up considerably piglit when starting tests. (Gabriel Feceoru)
+- piglit changed its behaviour to prevent overwriting the results. A fairly new
+version of piglit is required to run i-g-t tests. (Gabriel Feceoru)
+- lib: Replace drmIoctl() with a layer of indirection (Chris Wilson)
+- Adding missing Broxton PCI IDs (Rodrigo Vivi)
+- Added COMMIT_ATOMIC (lib/igt_kms, w/ tests/kms_rotation_crc).
+Requires nuclear_pageflip parameter turned on in the i915 driver.
+(Mayuresh Gharpure, Pratik Vishwakarma)
+- man/: rewrite manual pages in reStructuredText (Jani Nikula)
+- tests/drv_module_reload_basic: perform fault injection (Chris Wilson)
+with various improvements (Imre Deak)
+- Removed tests/gem_multi_bsd_sync_loop which was superseded by
+tests/gem_ring_sync_loop and tests/gem_dummy_reloc_loop by
+tests/gem_exec_reloc (Chris Wilson)
+- New GEM tests: tests/gem_exec_whisper, tests/gem_exec_store,
+test/gem_exec_gttfill, tests/gem_exec_suspend, tests/gem_exec_flush
+(Chris Wilson)
+- New benchmarks: benchmarks/gem_syslatency, benchmarks/gem_exec_fault
+(Chris Wilson)
+- tests/gem_exec_nop included in BAT (Chris Wilson)
+- tests/pm_rpm: Fix crash on machines that lack LLC (David Weinehall)
+- lib/igt_fb: Fix domain tracking for GTT cairo surfaces (Chris Wilson)
+- Add igt_subtest_group to allow igt_fixture for only a subset of subtests
+without skipping/failing all subsequent subtests. (Daniel Vetter)
+- Many more fixes and improvements.
+Added python3-docutils to BuildRequires, since manual pages are now built
+via rst2man.
+
+---

Old:

  intel-gpu-tools-1.14.tar.bz2

New:

  intel-gpu-tools-1.15.tar.bz2



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.o2N50B/_old  2016-06-05 14:20:15.0 +0200
+++ /var/tmp/diff_new_pack.o2N50B/_new  2016-06-05 14:20:15.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   intel-gpu-tools
-Version:1.14
+Version:1.15
 Release:0
 Summary:Collection of tools for development and testing of the Intel 
DRM driver
 License:MIT
@@ -30,6 +30,7 @@
 BuildRequires:  libtool
 BuildRequires:  pkg-config
 BuildRequires:  python3-devel
+BuildRequires:  python3-docutils
 BuildRequires:  swig >= 2.0.0
 BuildRequires:  pkgconfig(cairo)
 BuildRequires:  pkgconfig(dri2proto) >= 2.6

++ intel-gpu-tools-1.14.tar.bz2 -> intel-gpu-tools-1.15.tar.bz2 ++
 38658 lines of diff (skipped)




commit intel-gpu-tools for openSUSE:Factory

2016-03-05 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2016-03-05 13:05:03

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is "intel-gpu-tools"

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2016-01-05 21:53:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2016-03-05 13:05:05.0 +0100
@@ -1,0 +2,28 @@
+Fri Mar  4 11:29:17 UTC 2016 - sndir...@suse.com
+
+- Update to version 1.14
+  * New test: gem_create validate parameters for GEM_CREATE ioctl
+(Ankitprasad Sharma)
+  * New test: gem_softpin exercise the userptr ioctl to create shared
+buffers between CPU and GPU (Vinay Belgaumkar)
+  * New tests: prime_mmap_coherency/kms_mmap_write_crc cache coherency
+tests (Tiago Vignatti)
+  * New test: prime_mmap mmap() on dma-buf fds (Rob Bradford)
+  * New test: gem_exec_reloc sanity check of execbuf-ioctl relocations (Chris
+Wilson)
+  * New test: gem_exec_basic sanity check of execbuf-ioctl rings (Chris Wilson)
+  * improved igt_hang_ring() infrastructure for generic hang injection support
+in the core library (Chris Wilson)
+  * new igt_pm library to collect power management testing helpers (David
+Weinehall)
+  * lig/igt_vc4: VC4 support library (Eric Anholt)
+  * kms_frontbuffer_tracking: included in BAT (Paulo Zanoni)
+  * kms_psr_sink_crc: Add BAT test for PSR active (Rodrigo Vivi)
+  * gem_wait: test superseded by gem_latency in benchmarks (Chris Wilson)
+  * igt_core: Fix logging to display extended line (Derek Morton)
+  * igt_core: Expand --run-subtest functionality (Derek Morton)
+  * kms_force_connector_basic: various fixes and included in BAT set (Daniel
+Vetter)
+  * Many other improvements and bug fixes.
+
+---

Old:

  intel-gpu-tools-1.13.tar.bz2

New:

  intel-gpu-tools-1.14.tar.bz2



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.EvBaZf/_old  2016-03-05 13:05:06.0 +0100
+++ /var/tmp/diff_new_pack.EvBaZf/_new  2016-03-05 13:05:06.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   intel-gpu-tools
-Version:1.13
+Version:1.14
 Release:0
 Summary:Collection of tools for development and testing of the Intel 
DRM driver
 License:MIT

++ intel-gpu-tools-1.13.tar.bz2 -> intel-gpu-tools-1.14.tar.bz2 ++
 60003 lines of diff (skipped)




commit intel-gpu-tools for openSUSE:Factory

2015-09-23 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2015-09-24 06:12:59

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is "intel-gpu-tools"

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2015-06-17 16:15:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2015-09-24 06:13:00.0 +0200
@@ -1,0 +2,21 @@
+Mon Sep 14 10:50:03 UTC 2015 - sndir...@suse.com
+
+- intel-gpu-tools 1.12
+  - Various new tests and tools
+  - New statistical analysis functions. (Damien Lespiau)
+  - New benchmark tests. (Chris Wilson)
+  - Old register tools that were superseded by intel_reg have been removed.
+  - Various tests have been marked "basic", to indicate they are suitable for
+use in basic acceptance testing. (Jesse Barnes)
+  - Per-ring gem_storedw_loop tests combined into a single test with subtests.
+(Jesse Barnes)
+  - New "aubdump" tool, used to launch an application and capture rendering to
+an AUB file. (Kristian Høgsberg Kristensen)
+  - Cherryview support added to intel_display_poller. (Ville Syrjälä)
+  - Skylake and Broadwell support added to gem_gpgpu_fill tests.
+(Dominik Zeromski)
+  - Support for running core drm tests on any platform. (Micah Fedke)
+  - Many other bug fixes
+- supersedes patch 'u_build-fixes.patch"
+
+---

Old:

  intel-gpu-tools-1.11.tar.bz2
  u_build-fixes.patch

New:

  intel-gpu-tools-1.12.tar.bz2



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.bxE4UM/_old  2015-09-24 06:13:01.0 +0200
+++ /var/tmp/diff_new_pack.bxE4UM/_new  2015-09-24 06:13:01.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   intel-gpu-tools
-Version:1.11
+Version:1.12
 Release:0
 Summary:Collection of tools for development and testing of the Intel 
DRM driver
 License:MIT
@@ -25,7 +25,6 @@
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
 Patch0: n_disable-build-of-pm_rpm.patch
-Patch1: u_build-fixes.patch
 Patch2: u_%{name}-1.7-fix-bashisms.patch
 BuildRequires:  i2c-tools
 BuildRequires:  libtool
@@ -54,7 +53,6 @@
 %prep
 %setup -q -n %{name}-%{version}
 %patch0 -p1
-%patch1 -p1
 %patch2 -p1
 
 %build
@@ -64,21 +62,18 @@
 
 %install
 %make_install
+rm $RPM_BUILD_ROOT/%{_libdir}/intel_aubdump.la
 
 %files
 %defattr(-,root,root)
 %doc README
 %doc COPYING
-%exclude %{_libdir}/I915ChipsetPython.la
-%exclude %{_libdir}/I915ChipsetPython.so
-# don't know hot to fix build differently!?!
-%exclude /usr/lib/debug/usr/%{_lib}/I915ChipsetPython.so.debug
-%exclude /usr/lib/debug/.build-id
 %dir %{_datadir}/gtk-doc/html/%{name}
 %{_datadir}/gtk-doc/html/%{name}/*
 %{_bindir}/*
 %{_mandir}/man*/*
 %{_libexecdir}/intel-gpu-tools/
 %{_datadir}/intel-gpu-tools/
+%{_libdir}/intel_aubdump.so
 
 %changelog

++ intel-gpu-tools-1.11.tar.bz2 -> intel-gpu-tools-1.12.tar.bz2 ++
 73103 lines of diff (skipped)




commit intel-gpu-tools for openSUSE:Factory

2015-06-17 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2015-06-17 16:15:24

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is intel-gpu-tools

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2015-03-19 20:45:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2015-06-17 16:15:25.0 +0200
@@ -1,0 +2,31 @@
+Fri Jun 12 12:40:58 UTC 2015 - sndir...@suse.com
+
+- use correct filelist macros 
+
+---
+Fri Jun 12 08:44:12 UTC 2015 - sndir...@suse.com
+
+- Update to version 1.11
+  * Various new tests and tools
+  * Single combined test list (supported by piglit since commit 8a122bb)
+  * Optional dependency on libunwind to provide automatic stack traces on test
+failures. (Thomas Wood)
+  * Add optional default debug and optimisation flags for tests to enable 
better
+stack traces and debugging. (Thomas Wood)
+  * Test programs are now installed into libexec. This is useful when building 
a
+complete software stack for a DUT from scratch. (Building and installing
+tests can still be disabled by the --disable-tests configure flag.)
+(Joonas Lahtinen)
+  * New tool to decode watermark registers (Ville Syrjälä)
+  * Timeout mechanism now reports test as failed
+  * Introduce intel_reg as the one Intel graphics register multitool to replace
+intel_reg_read, intel_reg_write, intel_iosf_sb_read, intel_iosf_sb_write,
+intel_vga_read, intel_vga_write, intel_reg_dumper, intel_reg_snapshot,
+and quick_dump.py. (Jani Nikula)
+  * Add functions to manipulate i915.ko parameters and ensure features are 
enabled
+for testing. (Paulo Zanoni)
+- supersedes u_Fix-pointer-cast-in-order-to-fix-build-on-32bit-arch.patch
+- added new buildrequires to gtk-doc and libunwind
+- added /usr/lib/intel-gpu-tools/* and /usr/share/intel-gpu-tools/* to filelist
+
+---

Old:

  intel-gpu-tools-1.10.tar.bz2
  u_Fix-pointer-cast-in-order-to-fix-build-on-32bit-arch.patch

New:

  intel-gpu-tools-1.11.tar.bz2



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.aFFhSF/_old  2015-06-17 16:15:26.0 +0200
+++ /var/tmp/diff_new_pack.aFFhSF/_new  2015-06-17 16:15:26.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   intel-gpu-tools
-Version:1.10
+Version:1.11
 Release:0
 Summary:Collection of tools for development and testing of the Intel 
DRM driver
 License:MIT
@@ -27,7 +27,6 @@
 Patch0: n_disable-build-of-pm_rpm.patch
 Patch1: u_build-fixes.patch
 Patch2: u_%{name}-1.7-fix-bashisms.patch
-Patch3: u_Fix-pointer-cast-in-order-to-fix-build-on-32bit-arch.patch
 BuildRequires:  i2c-tools
 BuildRequires:  libtool
 BuildRequires:  pkg-config
@@ -35,7 +34,9 @@
 BuildRequires:  swig = 2.0.0
 BuildRequires:  pkgconfig(cairo)
 BuildRequires:  pkgconfig(dri2proto) = 2.6
+BuildRequires:  pkgconfig(gtk-doc)
 BuildRequires:  pkgconfig(libdrm_intel) = 2.4.6
+BuildRequires:  pkgconfig(libunwind)
 BuildRequires:  pkgconfig(pciaccess) = 0.10
 BuildRequires:  pkgconfig(xorg-macros) = 1.3
 BuildRequires:  pkgconfig(xv)
@@ -55,7 +56,6 @@
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
-%patch3 -p1
 
 %build
 autoreconf -fi
@@ -78,5 +78,7 @@
 %{_datadir}/gtk-doc/html/%{name}/*
 %{_bindir}/*
 %{_mandir}/man*/*
+%{_libexecdir}/intel-gpu-tools/
+%{_datadir}/intel-gpu-tools/
 
 %changelog

++ intel-gpu-tools-1.10.tar.bz2 - intel-gpu-tools-1.11.tar.bz2 ++
 50187 lines of diff (skipped)

++ n_disable-build-of-pm_rpm.patch ++
--- /var/tmp/diff_new_pack.aFFhSF/_old  2015-06-17 16:15:27.0 +0200
+++ /var/tmp/diff_new_pack.aFFhSF/_new  2015-06-17 16:15:27.0 +0200
@@ -1,12 +1,12 @@
-Index: intel-gpu-tools-1.9/tests/Makefile.sources
+Index: intel-gpu-tools-1.11/tests/Makefile.sources
 ===
 intel-gpu-tools-1.9.orig/tests/Makefile.sources
-+++ intel-gpu-tools-1.9/tests/Makefile.sources
-@@ -77,7 +77,6 @@ TESTS_progs_M = \
-   kms_setmode \
-   kms_universal_plane \
+--- intel-gpu-tools-1.11.orig/tests/Makefile.sources
 intel-gpu-tools-1.11/tests/Makefile.sources
+@@ -83,7 +83,6 @@ TESTS_progs_M = \
+   kms_panel_fitting \
+   pm_backlight \
pm_lpsp \
 -  pm_rpm \
pm_rps \
pm_rc6_residency \
-   prime_self_import \
+   pm_sseu \




commit intel-gpu-tools for openSUSE:Factory

2015-03-19 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2015-03-19 20:45:25

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is intel-gpu-tools

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2015-01-22 21:48:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2015-03-19 20:45:26.0 +0100
@@ -1,0 +2,25 @@
+Tue Mar 17 09:58:24 UTC 2015 - sndir...@suse.com
+
+- u_Fix-pointer-cast-in-order-to-fix-build-on-32bit-arch.patch
+  * fixes build on 32bit 
+
+---
+Mon Mar 16 11:53:56 UTC 2015 - sndir...@suse.com
+
+- Update to version 1.10
+  * New frequency manipulation tool (intel_gpu_frequency)
+  * Adjustments for the Solaris port (Alan Coopersmith).
+  * Remove tests/NAMING-CONVENTION since it's all in the docbook now,
+to avoid divergent conventions.
+  * New CRITICAL log level for really serious stuff (Thomas Wood).
+  * Interactive test mode can now be enabled by the shared cmdline
+option --interactive-debug=$var (Rodrigo Vivi).
+  * Improved logging to kmsg to better line up test runs with kernel
+messages (Chris Wilson).
+  * Record all log levels (including disabled levels) in a ringbuffer
+and dump that on test failures for quicker diagnostics of automated
+test run results (Thomas Wood).
+  * A lot of small polish all over the test library.
+  * Piles of new testcases and improvements to existing ones as usual.
+
+---

Old:

  intel-gpu-tools-1.9.tar.bz2

New:

  intel-gpu-tools-1.10.tar.bz2
  u_Fix-pointer-cast-in-order-to-fix-build-on-32bit-arch.patch



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.QmIqxd/_old  2015-03-19 20:45:27.0 +0100
+++ /var/tmp/diff_new_pack.QmIqxd/_new  2015-03-19 20:45:27.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package intel-gpu-tools
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   intel-gpu-tools
-Version:1.9
+Version:1.10
 Release:0
 Summary:Collection of tools for development and testing of the Intel 
DRM driver
 License:MIT
@@ -27,6 +27,7 @@
 Patch0: n_disable-build-of-pm_rpm.patch
 Patch1: u_build-fixes.patch
 Patch2: u_%{name}-1.7-fix-bashisms.patch
+Patch3: u_Fix-pointer-cast-in-order-to-fix-build-on-32bit-arch.patch
 BuildRequires:  i2c-tools
 BuildRequires:  libtool
 BuildRequires:  pkg-config
@@ -54,6 +55,7 @@
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 autoreconf -fi

++ intel-gpu-tools-1.9.tar.bz2 - intel-gpu-tools-1.10.tar.bz2 ++
 26497 lines of diff (skipped)

++ u_Fix-pointer-cast-in-order-to-fix-build-on-32bit-arch.patch ++
From 5daab5104f74493790ce0df62a104d480902b913 Mon Sep 17 00:00:00 2001
From: Stefan Dirsch sndir...@suse.de
Date: Tue, 17 Mar 2015 10:53:47 +0100
Subject: [PATCH] Fix pointer cast in order to fix build on 32bit arches.

Patch by Led led...@gmail.com
---
 lib/intel_batchbuffer.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index 666c323..c1c27a6 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -548,7 +548,7 @@ fill_object(struct drm_i915_gem_exec_object2 *obj, uint32_t 
gem_handle,
memset(obj, 0, sizeof(*obj));
obj-handle = gem_handle;
obj-relocation_count = count;
-   obj-relocs_ptr = (uint64_t)relocs;
+   obj-relocs_ptr = (uintptr_t)relocs;
 }
 
 static void exec_blit(int fd,
@@ -557,7 +557,7 @@ static void exec_blit(int fd,
 {
struct drm_i915_gem_execbuffer2 exec;
 
-   exec.buffers_ptr = (uint64_t)objs;
+   exec.buffers_ptr = (uintptr_t)objs;
exec.buffer_count = count;
exec.batch_start_offset = 0;
exec.batch_len = batch_len * 4;
-- 
1.8.4.5

++ u_intel-gpu-tools-1.7-fix-bashisms.patch ++
--- /var/tmp/diff_new_pack.QmIqxd/_old  2015-03-19 20:45:28.0 +0100
+++ /var/tmp/diff_new_pack.QmIqxd/_new  2015-03-19 20:45:28.0 +0100
@@ -1,10 +1,9 @@
-Index: intel-gpu-tools-1.9/tools/intel_gpu_abrt
-===
 

commit intel-gpu-tools for openSUSE:Factory

2015-01-22 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2015-01-22 21:48:43

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is intel-gpu-tools

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2014-11-24 11:17:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2015-01-22 21:48:50.0 +0100
@@ -1,0 +2,64 @@
+Tue Jan 20 11:05:15 UTC 2015 - sndir...@suse.com
+
+- reenabled post build checks
+- u_build-fixes.patch
+  * fix post build checks 
+
+---
+Sun Jan 18 22:10:00 UTC 2015 - sfal...@opensuse.org
+
+- Update to version 1.9:
+  + Patches refactored for new sources
+  + post-build-checks disabled, due to check failure:
+I: Program returns random data in a function
+E: intel-gpu-tools no-return-in-nonvoid-function
+   intel_renderstate_gen8.c:441
+  + Dropped:
+- n_missing_check-ndebug.h.patch
+- intel-gpu-tools-1.7.tar.bz2
+  + Added:
+- intel-gpu-tools-1.9.tar.bz2
+  + Changes from version 1.7
+- More Android porting
+- Fixes to documentation warnings
+- Updates to UPDATE, MAINTAINERS, and README
+- lib:
+  - Fix out of tree build of version.h
+  - added function to lock memory into RAM
+  - add option log domain filtering
+  - introduce log domains
+  - igt_debugfs: Don't setup crc in _new
+  - igt_debugfs: Throw away the two first CRCs
+  - igt.cocci: Deal with min/max/swap
+  - add swap() macro
+  - always reset connectors after the state is forced
+  - remove igt_edid.h
+- tests:
+  - gem_tiled_swapping: use igt_info logging wrapper
+  - replaced 3D test images
+  - kms_cursor_crc: Restore the valid pipe/connector combo check
+  - kms_mmio_vs_cs_flip: Count valid tests for all crtcs
+  - kms_flip:
+* Target the back buffer with the dummy load
+* Calibrate the dummy load delay in kms_flip
+* Use fixed size (2kx2k) buffers for dummy load
+* Refactor blit code
+  - Run lib/igt.cocci
+  - pm_rps: vlv:
+* roundmiddle point to freq supported by HW
+* load gpu for idle min/max tests\
+* wait for freq to settleo
+  - add gem_gpgpu_fill to .gitignore
+  - use base edid
+- tools:
+  - add missing copyright headers
+  - terminate getopt_long long option arrays properly
+- drv_hangman: Remove unused function
+- kms_cursor_crc: Remove value to 'return' in a void function
+- igt/drm_read: Require that pipe 0 is active
+- igt/drm_read: Abuse read(drm)
+- intel_error_decode: Decode the ERROR register on Sandybridge
+  and Ivybridge
+- gem_bad_reloc: Don't flip-flop between SKIP and PASS
+
+---

Old:

  intel-gpu-tools-1.7.tar.bz2
  n_missing_check-ndebug.h.patch

New:

  intel-gpu-tools-1.9.tar.bz2
  u_build-fixes.patch



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.rITKlS/_old  2015-01-22 21:48:52.0 +0100
+++ /var/tmp/diff_new_pack.rITKlS/_new  2015-01-22 21:48:52.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package intel-gpu-tools
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,15 @@
 
 
 Name:   intel-gpu-tools
-Version:1.7
+Version:1.9
 Release:0
 Summary:Collection of tools for development and testing of the Intel 
DRM driver
 License:MIT
 Group:  Development/Tools/Other
 Url:http://xorg.freedesktop.org/
-Source0:%{name}-%{version}.tar.bz2
+Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
 Patch0: n_disable-build-of-pm_rpm.patch
-Patch1: n_missing_check-ndebug.h.patch
+Patch1: u_build-fixes.patch
 Patch2: u_%{name}-1.7-fix-bashisms.patch
 BuildRequires:  i2c-tools
 BuildRequires:  libtool
@@ -72,6 +72,8 @@
 # don't know hot to fix build differently!?!
 %exclude /usr/lib/debug/usr/%{_lib}/I915ChipsetPython.so.debug
 %exclude /usr/lib/debug/.build-id
+%dir %{_datadir}/gtk-doc/html/%{name}
+%{_datadir}/gtk-doc/html/%{name}/*
 %{_bindir}/*
 %{_mandir}/man*/*
 

++ intel-gpu-tools-1.7.tar.bz2 - intel-gpu-tools-1.9.tar.bz2 ++

commit intel-gpu-tools for openSUSE:Factory

2014-11-24 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2014-11-24 11:17:31

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is intel-gpu-tools

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2014-06-18 07:52:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2014-11-24 11:17:31.0 +0100
@@ -1,0 +2,15 @@
+Mon Nov 17 10:26:21 UTC 2014 - sndir...@suse.com
+
+- rename intel-gpu-tools-1.7-fix-bashisms.patch to 
+  u_intel-gpu-tools-1.7-fix-bashisms.patch according to our patch
+  guidelines
+
+---
+Mon Nov 17 04:00:00 UTC 2014 - Led led...@gmail.com
+
+- fix bashism in intel_gpu_abrt script that uses bash-specific
+  constructions
+- add patches:
+  * intel-gpu-tools-1.7-fix-bashisms.patch
+
+---

New:

  u_intel-gpu-tools-1.7-fix-bashisms.patch



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.60hWiZ/_old  2014-11-24 11:17:32.0 +0100
+++ /var/tmp/diff_new_pack.60hWiZ/_new  2014-11-24 11:17:32.0 +0100
@@ -26,6 +26,7 @@
 Source0:%{name}-%{version}.tar.bz2
 Patch0: n_disable-build-of-pm_rpm.patch
 Patch1: n_missing_check-ndebug.h.patch
+Patch2: u_%{name}-1.7-fix-bashisms.patch
 BuildRequires:  i2c-tools
 BuildRequires:  libtool
 BuildRequires:  pkg-config
@@ -52,6 +53,7 @@
 %setup -q -n %{name}-%{version}
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 %build
 autoreconf -fi

++ u_intel-gpu-tools-1.7-fix-bashisms.patch ++
diff -Ndur intel-gpu-tools-1.7/tools/intel_gpu_abrt 
intel-gpu-tools-1.7-fix-bashisms/tools/intel_gpu_abrt
--- intel-gpu-tools-1.7/tools/intel_gpu_abrt2014-05-13 15:31:22.0 
+0300
+++ intel-gpu-tools-1.7-fix-bashisms/tools/intel_gpu_abrt   2014-11-17 
06:51:03.587423549 +0200
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 if [[ $UID -ne 0 ]]; then
 echo $0 must be run as root
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit intel-gpu-tools for openSUSE:Factory

2014-06-17 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2014-06-18 07:50:36

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is intel-gpu-tools

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2014-05-08 12:38:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2014-06-18 07:52:49.0 +0200
@@ -1,0 +2,22 @@
+Tue Jun 10 15:38:37 UTC 2014 - sndir...@suse.com
+
+- update to release 1.7; Here goes a new i-g-t quarterly release
+  with the following changes:
+  * Piles of API documentation for the core i-g-t testing libraries.
+  * Improved igt loggin, now also with igt_vlog (for va_args printf-style
+    logging).
+  * Polish for the igt_debugfs library.
+  * Split out igt_fb library from igt_kms, cleanup of the igt_kms functions.
+  * Android porting patches (Tim Gore, Tvrtko Ursulin).
+  * Piles more tests as usual.
+  * Support for building libcairo based tests on Android. Set 
ANDROID_HAS_CAIRO=1
+    in the build enviroment when you have this (Tim Gore).
+  * Timeout support in igt_aux, see igt_set_timeout (Thomas).
+  * Documentation for the testrunner interface like exit codes, subtest
+    enumeration and log output. Should help other people to run the tests in 
their own framework.
+  * Make swig an optional dependency (Damien).
+  * Helpers for runtime pm tests in igt_aux.
+- rename n_disable-build-of-pm_pc8.patch to n_disable-build-of-pm_rpm.patch,
+  since test has been renamed
+
+---

Old:

  intel-gpu-tools-1.6.tar.bz2
  n_disable-build-of-pm_pc8.patch

New:

  intel-gpu-tools-1.7.tar.bz2
  n_disable-build-of-pm_rpm.patch



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.i4RSvc/_old  2014-06-18 07:52:50.0 +0200
+++ /var/tmp/diff_new_pack.i4RSvc/_new  2014-06-18 07:52:50.0 +0200
@@ -17,14 +17,14 @@
 
 
 Name:   intel-gpu-tools
-Version:1.6
+Version:1.7
 Release:0
 Summary:Collection of tools for development and testing of the Intel 
DRM driver
 License:MIT
 Group:  Development/Tools/Other
 Url:http://xorg.freedesktop.org/
 Source0:%{name}-%{version}.tar.bz2
-Patch0: n_disable-build-of-pm_pc8.patch
+Patch0: n_disable-build-of-pm_rpm.patch
 Patch1: n_missing_check-ndebug.h.patch
 BuildRequires:  i2c-tools
 BuildRequires:  libtool

++ intel-gpu-tools-1.6.tar.bz2 - intel-gpu-tools-1.7.tar.bz2 ++
/work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools-1.6.tar.bz2 
/work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools-1.7.tar.bz2 
differ: char 11, line 1

++ n_disable-build-of-pm_rpm.patch ++
Index: intel-gpu-tools-1.6/tests/Makefile.sources
===
--- intel-gpu-tools-1.6.orig/tests/Makefile.sources
+++ intel-gpu-tools-1.6/tests/Makefile.sources
@@ -63,7 +63,6 @@ TESTS_progs_M = \
kms_render \
kms_setmode \
pm_lpsp \
-   pm_rpm \
pm_rps \
prime_self_import \
template \
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit intel-gpu-tools for openSUSE:Factory

2014-05-05 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2014-05-05 21:09:54

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is intel-gpu-tools

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2014-02-07 10:26:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2014-05-05 21:09:55.0 +0200
@@ -1,0 +2,5 @@
+Mon Apr 28 00:52:20 UTC 2014 - sndir...@suse.com
+
+- added missing pkgconfig(dri2proto) 
+
+---



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.0cx0zH/_old  2014-05-05 21:09:56.0 +0200
+++ /var/tmp/diff_new_pack.0cx0zH/_new  2014-05-05 21:09:56.0 +0200
@@ -31,6 +31,7 @@
 BuildRequires:  python3-devel
 BuildRequires:  swig = 2.0.0
 BuildRequires:  pkgconfig(cairo)
+BuildRequires:  pkgconfig(dri2proto) = 2.6
 BuildRequires:  pkgconfig(libdrm_intel) = 2.4.6
 BuildRequires:  pkgconfig(pciaccess) = 0.10
 BuildRequires:  pkgconfig(xorg-macros) = 1.3

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit intel-gpu-tools for openSUSE:Factory

2014-02-07 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2014-02-07 10:26:00

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is intel-gpu-tools

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2013-12-09 19:10:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2014-02-07 10:26:02.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb  6 11:22:24 UTC 2014 - sndir...@suse.com
+
+- added missing LICENSE file 
+
+---



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.MNUN8W/_old  2014-02-07 10:26:02.0 +0100
+++ /var/tmp/diff_new_pack.MNUN8W/_new  2014-02-07 10:26:02.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package intel-gpu-tools
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -61,6 +61,7 @@
 %files
 %defattr(-,root,root)
 %doc README
+%doc COPYING
 %exclude %{_libdir}/I915ChipsetPython.la
 %exclude %{_libdir}/I915ChipsetPython.so
 # don't know hot to fix build differently!?!

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit intel-gpu-tools for openSUSE:Factory

2013-12-09 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2013-12-09 19:10:05

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is intel-gpu-tools

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2013-05-03 09:17:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2013-12-09 19:10:06.0 +0100
@@ -1,0 +2,10 @@
+Mon Dec  9 12:44:34 UTC 2013 - sndir...@suse.com
+
+- update to release 1.5
+- n_disable-build-of-pm_pc8.patch
+  * disables build for pm_pc8 test app for now
+- removed obsolete patches
+  * intel-gpu-tools-no-test.diff
+  * u_intel-gpu-tools-no_m4_dir.patch
+
+---

Old:

  intel-gpu-tools-1.3.tar.bz2
  intel-gpu-tools-no-test.diff
  u_intel-gpu-tools-no_m4_dir.patch

New:

  intel-gpu-tools-1.5.tar.bz2
  n_disable-build-of-pm_pc8.patch



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.5LS2Fq/_old  2013-12-09 19:10:07.0 +0100
+++ /var/tmp/diff_new_pack.5LS2Fq/_new  2013-12-09 19:10:07.0 +0100
@@ -17,21 +17,24 @@
 
 
 Name:   intel-gpu-tools
-Version:1.3
+Version:1.5
 Release:0
 Summary:Collection of tools for development and testing of the Intel 
DRM driver
 License:MIT
 Group:  Development/Tools/Other
 Url:http://xorg.freedesktop.org/
 Source0:%{name}-%{version}.tar.bz2
-Patch1: intel-gpu-tools-no-test.diff
-Patch2: u_intel-gpu-tools-no_m4_dir.patch
+Patch0: n_disable-build-of-pm_pc8.patch
+BuildRequires:  i2c-tools
 BuildRequires:  libtool
 BuildRequires:  pkg-config
+BuildRequires:  python3-devel
+BuildRequires:  swig = 2.0.0
 BuildRequires:  pkgconfig(cairo)
 BuildRequires:  pkgconfig(libdrm_intel) = 2.4.6
 BuildRequires:  pkgconfig(pciaccess) = 0.10
 BuildRequires:  pkgconfig(xorg-macros) = 1.3
+BuildRequires:  pkgconfig(xv)
 
 # This was part of the xorg-x11-driver-video package up to version 7.6
 Conflicts:  xorg-x11-driver-video = 7.6
@@ -45,8 +48,7 @@
 
 %prep
 %setup -q -n %{name}-%{version}
-%patch1 -p1
-%patch2
+%patch0 -p1
 
 %build
 autoreconf -fi
@@ -59,6 +61,11 @@
 %files
 %defattr(-,root,root)
 %doc README
+%exclude %{_libdir}/I915ChipsetPython.la
+%exclude %{_libdir}/I915ChipsetPython.so
+# don't know hot to fix build differently!?!
+%exclude /usr/lib/debug/usr/%{_lib}/I915ChipsetPython.so.debug
+%exclude /usr/lib/debug/.build-id
 %{_bindir}/*
 %{_mandir}/man*/*
 

++ intel-gpu-tools-1.3.tar.bz2 - intel-gpu-tools-1.5.tar.bz2 ++
/work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools-1.3.tar.bz2 
/work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools-1.5.tar.bz2 
differ: char 11, line 1

++ n_disable-build-of-pm_pc8.patch ++
--- intel-gpu-tools-1.5/tests/Makefile.am.orig  2013-12-06 14:46:52.025637000 
+0100
+++ intel-gpu-tools-1.5/tests/Makefile.am   2013-12-06 14:47:00.128755000 
+0100
@@ -57,7 +57,6 @@
kms_render \
kms_setmode \
$(NOUVEAU_TESTS_M) \
-   pm_pc8 \
prime_self_import \
template \
$(NULL)
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit intel-gpu-tools for openSUSE:Factory

2013-05-03 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2013-05-03 09:17:12

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is intel-gpu-tools

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2012-09-15 17:28:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2013-05-03 09:17:13.0 +0200
@@ -1,0 +2,11 @@
+Fri May  3 06:20:46 UTC 2013 - sndir...@suse.com
+
+- renamed latest patch according to our policy 
+
+---
+Fri Apr 26 11:44:59 UTC 2013 - mmeis...@suse.com
+
+- Removed AC_CONFIG_MACRO_DIR([m4]) from configure.ac to fix
+  build with new automake
+
+---

New:

  u_intel-gpu-tools-no_m4_dir.patch



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.FBb2Fa/_old  2013-05-03 09:17:14.0 +0200
+++ /var/tmp/diff_new_pack.FBb2Fa/_new  2013-05-03 09:17:14.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package intel-gpu-tools
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,6 +25,7 @@
 Url:http://xorg.freedesktop.org/
 Source0:%{name}-%{version}.tar.bz2
 Patch1: intel-gpu-tools-no-test.diff
+Patch2: u_intel-gpu-tools-no_m4_dir.patch
 BuildRequires:  libtool
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(cairo)
@@ -45,6 +46,7 @@
 %prep
 %setup -q -n %{name}-%{version}
 %patch1 -p1
+%patch2
 
 %build
 autoreconf -fi

++ u_intel-gpu-tools-no_m4_dir.patch ++
From: Maximilian Meister mmeis...@suse.com
Date: Fri Apr 26 15:17:31 CEST 2013
Subject: [PATCH] Remove AC_CONFIG_MACRO_DIR from configure.ac to fix
 build with automake-1.13.1
--- configure.ac.orig   2013-04-26 13:41:45.95771 +0200
+++ configure.ac2013-04-26 13:41:53.219233599 +0200
@@ -28,7 +28,6 @@
 
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_AUX_DIR([build-aux])
 AC_USE_SYSTEM_EXTENSIONS
 AC_SYS_LARGEFILE
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit intel-gpu-tools for openSUSE:Factory

2012-09-15 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2012-09-15 17:28:10

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is intel-gpu-tools, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2012-07-10 13:42:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2012-09-15 17:28:12.0 +0200
@@ -1,0 +2,14 @@
+Mon Aug 27 22:37:25 UTC 2012 - tobias.johannes.klausm...@mni.thm.de
+
+- Update to version 1.3:
+  New intel-gpu-tools release with too much stuff changed. Biggest part is
+  improvements to the testsuit, but also some other neat things:
+  + dpf tool for handling l3 remapping on gen7
+  + robustify against wc gtt mappings
+  + improvements to the reg_dumper and register read/write tools
+  + haswell support
+- Packaging changes:
+  + Added cairo to BuildRequires (we need this now)
+  + changed intel-gpu-tools-no-test.diff to speed up compilation
+
+---

Old:

  intel-gpu-tools-1.2.tar.bz2

New:

  intel-gpu-tools-1.3.tar.bz2



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.evbED9/_old  2012-09-15 17:28:13.0 +0200
+++ /var/tmp/diff_new_pack.evbED9/_new  2012-09-15 17:28:13.0 +0200
@@ -17,20 +17,21 @@
 
 
 Name:   intel-gpu-tools
-Version:1.2
+Version:1.3
 Release:0
-%define _version 1.2
 Summary:Collection of tools for development and testing of the Intel 
DRM driver
 License:MIT
 Group:  Development/Tools/Other
 Url:http://xorg.freedesktop.org/
-Source0:%{name}-%{_version}.tar.bz2
+Source0:%{name}-%{version}.tar.bz2
 Patch1: intel-gpu-tools-no-test.diff
 BuildRequires:  libtool
 BuildRequires:  pkg-config
+BuildRequires:  pkgconfig(cairo)
 BuildRequires:  pkgconfig(libdrm_intel) = 2.4.6
 BuildRequires:  pkgconfig(pciaccess) = 0.10
 BuildRequires:  pkgconfig(xorg-macros) = 1.3
+
 # This was part of the xorg-x11-driver-video package up to version 7.6
 Conflicts:  xorg-x11-driver-video = 7.6
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -42,7 +43,7 @@
 DRM driver.
 
 %prep
-%setup -q -n %{name}-%{_version}
+%setup -q -n %{name}-%{version}
 %patch1 -p1
 
 %build

++ intel-gpu-tools-1.2.tar.bz2 - intel-gpu-tools-1.3.tar.bz2 ++
 77036 lines of diff (skipped)

++ intel-gpu-tools-no-test.diff ++
--- /var/tmp/diff_new_pack.evbED9/_old  2012-09-15 17:28:13.0 +0200
+++ /var/tmp/diff_new_pack.evbED9/_new  2012-09-15 17:28:13.0 +0200
@@ -1,33 +1,25 @@
+From a1ed9ddbe71cc1dcff44557ab37f338adb7bbd38 Mon Sep 17 00:00:00 2001
+From: Tobias Klausmann tobias.klausm...@mni.thm.de
+Date: Tue, 28 Aug 2012 00:14:50 +0200
+Subject: [PATCH] Don't compile the tests
+
 ---
  Makefile.am  |2 +-
- configure.ac |2 ++
- 2 files changed, 3 insertions(+), 1 deletion(-)
+ 1 Dateien geändert, 1 Zeilen hinzugefügt(+), 1 Zeile entfernt(-)
 
 a/configure.ac
-+++ b/configure.ac
-@@ -57,12 +57,14 @@ PKG_CHECK_MODULES(DRM, [libdrm_intel =
- PKG_CHECK_MODULES(PCIACCESS, [pciaccess = 0.10])
- 
- # for testdisplay
-+if test 1 = 0; then
- PKG_CHECK_MODULES(CAIRO, cairo)
- PKG_CHECK_MODULES(LIBUDEV, [libudev], [udev=yes], [udev=no])
- if test x$udev = xyes; then
-   AC_DEFINE(HAVE_UDEV,1,[Enable udev-based monitor hotplug detection])
- fi
- PKG_CHECK_MODULES(GLIB, glib-2.0)
-+fi
- 
- # 
-
- # Configuration options
+diff --git a/Makefile.am b/Makefile.am
+index 5ea0fd8..0e7c4b2 100644
 --- a/Makefile.am
 +++ b/Makefile.am
-@@ -19,7 +19,7 @@
- #  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- #  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+@@ -21,7 +21,7 @@
+ 
+ ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
  
 -SUBDIRS = lib man tools scripts tests benchmarks demos
 +SUBDIRS = lib man tools scripts benchmarks demos
  
  if BUILD_SHADER_DEBUGGER
  SUBDIRS += debugger
+-- 
+1.7.10.4
+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit intel-gpu-tools for openSUSE:Factory

2012-07-10 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2012-07-10 13:42:07

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is intel-gpu-tools, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2012-07-09 08:00:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2012-07-10 13:42:11.0 +0200
@@ -1,0 +2,5 @@
+Mon Jul  9 12:34:31 UTC 2012 - dmuel...@suse.com
+
+- change it to exclusivearch, as it also does not exist on ARM
+
+---



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.sQYEkJ/_old  2012-07-10 13:42:13.0 +0200
+++ /var/tmp/diff_new_pack.sQYEkJ/_new  2012-07-10 13:42:13.0 +0200
@@ -34,8 +34,8 @@
 # This was part of the xorg-x11-driver-video package up to version 7.6
 Conflicts:  xorg-x11-driver-video = 7.6
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# There is no intel graphics on ppc(64)
-ExcludeArch:ppc ppc64
+# Intel GPU is only available on x86 and x86-64
+ExclusiveArch:  %ix86 x86_64
 
 %description
 This is a collection of tools for development and testing of the Intel

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit intel-gpu-tools for openSUSE:Factory

2012-07-09 Thread h_root
Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2012-07-09 07:59:55

Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and  /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)


Package is intel-gpu-tools, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2012-05-08 11:57:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes 
2012-07-09 08:00:00.0 +0200
@@ -1,0 +2,5 @@
+Fri Jul  6 23:03:22 UTC 2012 - dval...@suse.com
+
+- exclude ppc, ppc64. There is no intel graphic 
+
+---



Other differences:
--
++ intel-gpu-tools.spec ++
--- /var/tmp/diff_new_pack.WqNKJd/_old  2012-07-09 08:00:02.0 +0200
+++ /var/tmp/diff_new_pack.WqNKJd/_new  2012-07-09 08:00:02.0 +0200
@@ -15,14 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   intel-gpu-tools
 Version:1.2
-%define _version 1.2
 Release:0
-License:MIT
+%define _version 1.2
 Summary:Collection of tools for development and testing of the Intel 
DRM driver
-Url:http://xorg.freedesktop.org/
+License:MIT
 Group:  Development/Tools/Other
+Url:http://xorg.freedesktop.org/
 Source0:%{name}-%{_version}.tar.bz2
 Patch1: intel-gpu-tools-no-test.diff
 BuildRequires:  libtool
@@ -33,6 +34,8 @@
 # This was part of the xorg-x11-driver-video package up to version 7.6
 Conflicts:  xorg-x11-driver-video = 7.6
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# There is no intel graphics on ppc(64)
+ExcludeArch:ppc ppc64
 
 %description
 This is a collection of tools for development and testing of the Intel

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org