commit xf86-video-savage for openSUSE:Factory

2018-06-27 Thread root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2018-06-27 10:21:34

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is "xf86-video-savage"

Wed Jun 27 10:21:34 2018 rev:19 rq:618969 version:2.3.9

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2017-01-24 10:35:51.389496580 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2018-06-27 10:21:36.123642463 +0200
@@ -1,0 +2,7 @@
+Fri Jun 22 13:31:21 UTC 2018 - sndir...@suse.com
+
+- u_Add-check-for-max-HV-Value-to-ValidMode-hook.patch
+  * Add check for max[HV]Value to ValidMode hook, since this
+functionality has been removed from xorg-server 1.20
+
+---

New:

  u_Add-check-for-max-HV-Value-to-ValidMode-hook.patch



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.JlRDuU/_old  2018-06-27 10:21:36.587625541 +0200
+++ /var/tmp/diff_new_pack.JlRDuU/_new  2018-06-27 10:21:36.591625395 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-savage
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -24,6 +24,8 @@
 Group:  System/X11/Servers/XF86_4
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
+# https://lists.x.org/archives/xorg-devel/2018-June/057207.html
+Patch0: u_Add-check-for-max-HV-Value-to-ValidMode-hook.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -53,6 +55,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure
@@ -64,7 +67,8 @@
 
 %files
 %defattr(-,root,root)
-%doc ChangeLog COPYING README
+%doc ChangeLog README
+%license COPYING
 %dir %{_libdir}/xorg/modules/drivers
 %{_libdir}/xorg/modules/drivers/savage_drv.so
 %{_datadir}/man/man4/savage.4%{?ext_man}

++ u_Add-check-for-max-HV-Value-to-ValidMode-hook.patch ++
>From d5efaf928a0f82981612fe9765a7b6e82adea0f9 Mon Sep 17 00:00:00 2001
From: Stefan Dirsch 
Date: Fri, 22 Jun 2018 15:27:18 +0200
Subject: [PATCH] Add check for max[HV]Value to ValidMode hook

xorg-server 1.20 removed this check, so implement this in the driver
itself.

Signed-off-by: Stefan Dirsch 
---
 src/savage_driver.c | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/savage_driver.c b/src/savage_driver.c
index 58a294d..3cda923 100644
--- a/src/savage_driver.c
+++ b/src/savage_driver.c
@@ -2034,8 +2034,6 @@ static Bool SavagePreInit(ScrnInfoPtr pScrn, int flags)
 xf86DrvMsg(pScrn->scrnIndex, X_PROBED, "Detected current MCLK value of 
%1.3f MHz\n",
   mclk / 1000.0);
 
-pScrn->maxHValue = 2048 << 3;  /* 11 bits of h_total 8-pixel units */
-pScrn->maxVValue = 2048;   /* 11 bits of v_total */
 pScrn->virtualX = pScrn->display->virtualX;
 pScrn->virtualY = pScrn->display->virtualY;
 
@@ -3637,6 +3635,14 @@ static ModeStatus SavageValidMode(SCRN_ARG_TYPE arg, 
DisplayModePtr pMode,
(pMode->VDisplay > psav->PanelY)))
return MODE_PANEL;
 
+/* 11 bits of h_total 8-pixel units */
+if (pMode->HTotal > (2048 << 3))
+   return MODE_BAD_HVALUE;
+
+/* 11 bits of v_total */
+if (pMode->VTotal > 2048)
+   return MODE_BAD_VVALUE;
+
 if (psav->UseBIOS) {
refresh = SavageGetRefresh(pMode);
 return (SavageMatchBiosMode(pScrn,pMode->HDisplay,
-- 
2.16.3




commit xf86-video-savage for openSUSE:Factory

2017-01-24 Thread root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2017-01-24 10:35:50

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is "xf86-video-savage"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2016-12-02 16:42:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2017-01-24 10:35:51.389496580 +0100
@@ -1,0 +2,9 @@
+Thu Jan 19 14:54:11 UTC 2017 - sndir...@suse.com
+
+- Update to version 2.3.9:
+  * Adapt Block/WakeupHandler signature for ABI 23
+  * Disable tiling on SuperSavage by default
+- supersedes U_Adapt-Block-WakeupHandler-signature-for-ABI-23.patch,
+  u_Disable-tiling-on-SuperSavage-Novell-Bugzilla-805380.patch
+
+---

Old:

  U_Adapt-Block-WakeupHandler-signature-for-ABI-23.patch
  u_Disable-tiling-on-SuperSavage-Novell-Bugzilla-805380.patch
  xf86-video-savage-2.3.8.tar.bz2

New:

  xf86-video-savage-2.3.9.tar.bz2



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.xijVtG/_old  2017-01-24 10:35:51.953416474 +0100
+++ /var/tmp/diff_new_pack.xijVtG/_new  2017-01-24 10:35:51.957415907 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-savage
 #
-# 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,15 +17,13 @@
 
 
 Name:   xf86-video-savage
-Version:2.3.8
+Version:2.3.9
 Release:0
 Summary:S3 Savage video driver for the Xorg X server
 License:MIT
 Group:  System/X11/Servers/XF86_4
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
-Patch2: u_Disable-tiling-on-SuperSavage-Novell-Bugzilla-805380.patch
-Patch3: U_Adapt-Block-WakeupHandler-signature-for-ABI-23.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -55,8 +53,6 @@
 
 %prep
 %setup -q
-%patch2 -p1
-%patch3 -p1
 
 %build
 %configure

++ xf86-video-savage-2.3.8.tar.bz2 -> xf86-video-savage-2.3.9.tar.bz2 ++
 21806 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xf86-video-savage-2.3.8/ChangeLog new/xf86-video-savage-2.3.9/ChangeLog
--- old/xf86-video-savage-2.3.8/ChangeLog   2015-05-08 12:13:56.0 
+0200
+++ new/xf86-video-savage-2.3.9/ChangeLog   2017-01-17 23:44:37.0 
+0100
@@ -1,3 +1,31 @@
+commit d0582b84231de1b089eda296cd3bb859e5df1acd
+Author: Matt Turner 
+Date:   Tue Jan 17 14:44:13 2017 -0800
+
+xf86-video-savage 2.3.9
+
+Signed-off-by: Matt Turner 
+
+commit de3e1803314820968502156703d5bfe3fab24972
+Author: Adam Jackson 
+Date:   Tue Jul 19 10:03:56 2016 -0400
+
+Adapt Block/WakeupHandler signature for ABI 23
+
+Signed-off-by: Adam Jackson 
+
+commit de61497415e58a21fa247faf6db180ca47fb5df0
+Author: Stefan Dirsch 
+Date:   Wed Apr 27 16:02:13 2016 +0200
+
+Disable tiling on SuperSavage by default
+
+Xserver cannot be started with Tiling enabled on SuperSavage.
+https://bugzilla.opensuse.org/show_bug.cgi?id=805380
+
+Signed-off-by: Stefan Dirsch 
+Acked-by: Hans de Goede 
+
 commit f8f24e6856e2627f6620a8fd0474366d057496d2
 Author: Julien Cristau 
 Date:   Fri May 8 12:08:50 2015 +0200
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xf86-video-savage-2.3.8/compile new/xf86-video-savage-2.3.9/compile
--- old/xf86-video-savage-2.3.8/compile 2015-05-08 12:06:37.0 +0200
+++ new/xf86-video-savage-2.3.9/compile 2017-01-17 23:44:33.0 +0100
@@ -3,7 +3,7 @@
 
 scriptversion=2012-10-14.11; # UTC
 
-# Copyright (C) 1999-2013 Free Software Foundation, Inc.
+# Copyright (C) 1999-2014 Free Software Foundation, Inc.
 # Written by Tom Tromey .
 #
 # This pro

commit xf86-video-savage for openSUSE:Factory

2016-12-02 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2016-12-02 16:42:54

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is "xf86-video-savage"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2015-11-26 17:01:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2016-12-02 16:42:55.0 +0100
@@ -1,0 +2,6 @@
+Wed Nov 30 16:25:26 UTC 2016 - sndir...@suse.com
+
+- U_Adapt-Block-WakeupHandler-signature-for-ABI-23.patch
+  * Adapt Block/WakeupHandler signature for ABI 23
+
+---

New:

  U_Adapt-Block-WakeupHandler-signature-for-ABI-23.patch



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.PgPwor/_old  2016-12-02 16:42:56.0 +0100
+++ /var/tmp/diff_new_pack.PgPwor/_new  2016-12-02 16:42:56.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-savage
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -25,6 +25,7 @@
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
 Patch2: u_Disable-tiling-on-SuperSavage-Novell-Bugzilla-805380.patch
+Patch3: U_Adapt-Block-WakeupHandler-signature-for-ABI-23.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -55,6 +56,7 @@
 %prep
 %setup -q
 %patch2 -p1
+%patch3 -p1
 
 %build
 %configure

++ U_Adapt-Block-WakeupHandler-signature-for-ABI-23.patch ++
>From de3e1803314820968502156703d5bfe3fab24972 Mon Sep 17 00:00:00 2001
From: Adam Jackson 
Date: Tue, 19 Jul 2016 10:03:56 -0400
Subject: [PATCH] Adapt Block/WakeupHandler signature for ABI 23

Signed-off-by: Adam Jackson 
---
 src/compat-api.h | 8 
 1 file changed, 8 insertions(+)

diff --git a/src/compat-api.h b/src/compat-api.h
index 98ba435..44daea4 100644
--- a/src/compat-api.h
+++ b/src/compat-api.h
@@ -78,11 +78,19 @@
 
 #define SCREEN_INIT_ARGS_DECL ScreenPtr pScreen, int argc, char **argv
 
+#if ABI_VIDEODRV_VERSION >= SET_ABI_VERSION(23, 0)
+#define BLOCKHANDLER_ARGS_DECL ScreenPtr arg, pointer pTimeout
+#define BLOCKHANDLER_ARGS arg, pTimeout
+
+#define WAKEUPHANDLER_ARGS_DECL ScreenPtr arg, unsigned long result
+#define WAKEUPHANDLER_ARGS arg, result
+#else
 #define BLOCKHANDLER_ARGS_DECL ScreenPtr arg, pointer pTimeout, pointer 
pReadmask
 #define BLOCKHANDLER_ARGS arg, pTimeout, pReadmask
 
 #define WAKEUPHANDLER_ARGS_DECL ScreenPtr arg, unsigned long result, pointer 
read_mask
 #define WAKEUPHANDLER_ARGS arg, result, read_mask
+#endif
 
 #define CLOSE_SCREEN_ARGS_DECL ScreenPtr pScreen
 #define CLOSE_SCREEN_ARGS pScreen
-- 
2.6.6




commit xf86-video-savage for openSUSE:Factory

2015-11-26 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2015-11-26 17:01:13

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is "xf86-video-savage"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2015-05-10 10:47:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2015-11-26 17:01:14.0 +0100
@@ -1,0 +2,7 @@
+Wed Nov 18 14:38:10 UTC 2015 - e...@suse.com
+
+- remove:
+  u_Include-xf86Modes.h-to-use-functions-from-hw-xfree86.patch
+  * since 2.3.8 xf86Modes.h is included in savage_driver.h.
+
+---

Old:

  u_Include-xf86Modes.h-to-use-functions-from-hw-xfree86.patch



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.W7CnTT/_old  2015-11-26 17:01:14.0 +0100
+++ /var/tmp/diff_new_pack.W7CnTT/_new  2015-11-26 17:01:14.0 +0100
@@ -25,7 +25,6 @@
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
 Patch2: u_Disable-tiling-on-SuperSavage-Novell-Bugzilla-805380.patch
-Patch3: u_Include-xf86Modes.h-to-use-functions-from-hw-xfree86.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -56,7 +55,6 @@
 %prep
 %setup -q
 %patch2 -p1
-%patch3 -p1
 
 %build
 %configure




commit xf86-video-savage for openSUSE:Factory

2015-05-10 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2015-05-10 10:47:17

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is "xf86-video-savage"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2015-02-10 20:16:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2015-05-10 10:47:19.0 +0200
@@ -1,0 +2,10 @@
+Fri May  8 11:46:42 UTC 2015 - sndir...@suse.com
+
+- Update to version 2.3.8
+  * Use own thunk function instead of vgaHW*Weak
+  * dri: Stop (uselessly) initializing the ValidateTree hooks
+  * Include xf86Modes.h to use functions from hw/xfree86/modes/xf86Modes.c.
+  * Fix compiler warnings with recent X servers
+- deprecates U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch
+
+---

Old:

  U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch
  xf86-video-savage-2.3.7.tar.bz2

New:

  xf86-video-savage-2.3.8.tar.bz2



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.RScn86/_old  2015-05-10 10:47:19.0 +0200
+++ /var/tmp/diff_new_pack.RScn86/_new  2015-05-10 10:47:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   xf86-video-savage
-Version:2.3.7
+Version:2.3.8
 Release:0
 Summary:S3 Savage video driver for the Xorg X server
 License:MIT
@@ -26,7 +26,6 @@
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
 Patch2: u_Disable-tiling-on-SuperSavage-Novell-Bugzilla-805380.patch
 Patch3: u_Include-xf86Modes.h-to-use-functions-from-hw-xfree86.patch
-Patch4: U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -58,7 +57,6 @@
 %setup -q
 %patch2 -p1
 %patch3 -p1
-%patch4 -p1
 
 %build
 %configure

++ xf86-video-savage-2.3.7.tar.bz2 -> xf86-video-savage-2.3.8.tar.bz2 ++
 7281 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xf86-video-savage-2.3.7/ChangeLog new/xf86-video-savage-2.3.8/ChangeLog
--- old/xf86-video-savage-2.3.7/ChangeLog   2013-09-24 23:27:50.0 
+0200
+++ new/xf86-video-savage-2.3.8/ChangeLog   2015-05-08 12:13:56.0 
+0200
@@ -1,3 +1,50 @@
+commit f8f24e6856e2627f6620a8fd0474366d057496d2
+Author: Julien Cristau 
+Date:   Fri May 8 12:08:50 2015 +0200
+
+Bump to 2.3.8
+
+Signed-off-by: Julien Cristau 
+
+commit 1b58f8ab061f52d8aab9758b4dfa7e48e76b847a
+Author: Julien Cristau 
+Date:   Fri May 8 12:07:42 2015 +0200
+
+Fix compiler warnings with recent X servers
+
+savage_driver.c:1228:12: warning: assignment discards 'const' qualifier 
from pointer target type
+ if ((s = xf86GetOptValString(psav->Options, OPTION_ROTATE))) {
+^
+
+Signed-off-by: Julien Cristau 
+
+commit d28cd83c7b0b4a943efbe5ddf257c8ee2646ea73
+Author: Adam Jackson 
+Date:   Tue Jul 29 09:15:26 2014 -0400
+
+dri: Stop (uselessly) initializing the ValidateTree hooks
+
+Signed-off-by: Adam Jackson 
+
+commit 16a672d1ba183601d513c4cdca32b47e926a6d1e
+Author: Adam Jackson 
+Date:   Wed May 21 14:11:46 2014 -0400
+
+Use own thunk function instead of vgaHW*Weak
+
+I plan to remove the Weak functions from a future server.
+
+Signed-off-by: Adam Jackson 
+
+commit 2e9217bb88b76cebfcd2b65b76c8733f80da77ea
+Author: Jeremy White 
+Date:   Thu Mar 21 10:59:13 2013 -0500
+
+Include xf86Modes.h to use functions from hw/xfree86/modes/xf86Modes.c.
+
+Signed-off-by: Jeremy White 
+Reviewed-by: Robert Morell 
+
 commit d27abbf74fee30ddb9a3ca0d597ca0ce16a1bc35
 Author: Tormod Volden 
 Date:   Tue Sep 24 23:14:35 2013 +0200
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xf86-video-savage-2.3.7/INSTALL new/xf86-video-savage-2.3.8/INSTALL
--- old/xf86-video-savage-2.3.7/INSTALL 2013-09-24 23:27:50.0 +

commit xf86-video-savage for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2015-02-10 20:16:58

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is "xf86-video-savage"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2013-12-11 17:45:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2015-02-10 20:16:59.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 13:07:58 UTC 2015 - sndir...@suse.com
+
+- U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch
+  * fixes build against xorg-server 1.17 
+
+---

New:

  U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.1sZ07L/_old  2015-02-10 20:17:00.0 +0100
+++ /var/tmp/diff_new_pack.1sZ07L/_new  2015-02-10 20:17:00.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-savage
 #
-# Copyright (c) 2013 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
@@ -26,6 +26,7 @@
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
 Patch2: u_Disable-tiling-on-SuperSavage-Novell-Bugzilla-805380.patch
 Patch3: u_Include-xf86Modes.h-to-use-functions-from-hw-xfree86.patch
+Patch4: U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -57,6 +58,7 @@
 %setup -q
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 
 %build
 %configure

++ U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch ++
>From d28cd83c7b0b4a943efbe5ddf257c8ee2646ea73 Mon Sep 17 00:00:00 2001
From: Adam Jackson 
Date: Tue, 29 Jul 2014 09:15:26 -0400
Subject: [PATCH] dri: Stop (uselessly) initializing the ValidateTree hooks

Signed-off-by: Adam Jackson 
---
 src/savage_dri.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/savage_dri.c b/src/savage_dri.c
index bdb78e4..0842821 100644
--- a/src/savage_dri.c
+++ b/src/savage_dri.c
@@ -875,9 +875,6 @@ Bool SAVAGEDRIScreenInit( ScreenPtr pScreen )
psav->coreWakeupHandler = pDRIInfo->wrap.WakeupHandler;
pDRIInfo->wrap.WakeupHandler = SAVAGEWakeupHandler;
 
-   pDRIInfo->wrap.ValidateTree = NULL;
-   pDRIInfo->wrap.PostValidateTree = NULL;
-
pDRIInfo->createDummyCtx = TRUE;
pDRIInfo->createDummyCtxPriv = FALSE;
 
-- 
1.8.4.5

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



commit xf86-video-savage for openSUSE:Factory

2013-12-11 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2013-12-11 17:45:49

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is "xf86-video-savage"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2013-10-02 13:34:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2013-12-11 17:45:50.0 +0100
@@ -1,0 +2,6 @@
+Mon Dec  2 16:03:14 UTC 2013 - sndir...@suse.com
+
+- u_Include-xf86Modes.h-to-use-functions-from-hw-xfree86.patch
+  * fixes build against xorg-server 1.15
+
+---

New:

  u_Include-xf86Modes.h-to-use-functions-from-hw-xfree86.patch



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.OvrX01/_old  2013-12-11 17:45:51.0 +0100
+++ /var/tmp/diff_new_pack.OvrX01/_new  2013-12-11 17:45:51.0 +0100
@@ -25,6 +25,7 @@
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
 Patch2: u_Disable-tiling-on-SuperSavage-Novell-Bugzilla-805380.patch
+Patch3: u_Include-xf86Modes.h-to-use-functions-from-hw-xfree86.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -55,6 +56,7 @@
 %prep
 %setup -q
 %patch2 -p1
+%patch3 -p1
 
 %build
 %configure

++ u_Include-xf86Modes.h-to-use-functions-from-hw-xfree86.patch ++
Author: Stefan Dirsch
Subject: Include xf86Modes.h to use functions from hw/xfree86/modes/xf86Modes.c

Fixes build against xorg-server 1.15

Signed-off-by: Stefan Dirsch 
--- xf86-video-savage-2.3.7/src/savage_driver.c.orig2013-12-02 
15:59:31.0 +
+++ xf86-video-savage-2.3.7/src/savage_driver.c 2013-12-02 16:01:10.0 
+
@@ -55,6 +55,8 @@
 
 #include "xf86xv.h"
 
+#include "xf86Modes.h"
+
 #include "savage_driver.h"
 #include "savage_pciids.h"
 #include "savage_regs.h"
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit xf86-video-savage for openSUSE:Factory

2013-10-02 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2013-10-02 13:34:18

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is "xf86-video-savage"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2013-08-23 11:09:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2013-10-02 13:34:19.0 +0200
@@ -1,0 +2,11 @@
+Tue Oct  1 10:52:44 UTC 2013 - sndir...@suse.com
+
+- Update to version 2.3.7
+  * small bugfix for video playback on MX/IX/SuperSavage
+  * usual catch-up to the ever-changing xserver, build and run on
+1.14, and default to EXA now that the xserver does not support
+XAA anymore.
+- obsoletes U_savage-move-compat-api.h-down-to-proper-place.patch,
+  U_savage-fix-default-accel-arch-when-built-with-no-XAA.patch
+
+---

Old:

  U_savage-fix-default-accel-arch-when-built-with-no-XAA.patch
  U_savage-move-compat-api.h-down-to-proper-place.patch
  xf86-video-savage-2.3.6.tar.bz2

New:

  xf86-video-savage-2.3.7.tar.bz2



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.hFtgsl/_old  2013-10-02 13:34:20.0 +0200
+++ /var/tmp/diff_new_pack.hFtgsl/_new  2013-10-02 13:34:20.0 +0200
@@ -17,15 +17,13 @@
 
 
 Name:   xf86-video-savage
-Version:2.3.6
+Version:2.3.7
 Release:0
 Summary:S3 Savage video driver for the Xorg X server
 License:MIT
 Group:  System/X11/Servers/XF86_4
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
-Patch0: U_savage-move-compat-api.h-down-to-proper-place.patch
-Patch1: U_savage-fix-default-accel-arch-when-built-with-no-XAA.patch
 Patch2: u_Disable-tiling-on-SuperSavage-Novell-Bugzilla-805380.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
@@ -56,8 +54,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
 %patch2 -p1
 
 %build

++ xf86-video-savage-2.3.6.tar.bz2 -> xf86-video-savage-2.3.7.tar.bz2 ++
 2583 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xf86-video-savage-2.3.6/ChangeLog new/xf86-video-savage-2.3.7/ChangeLog
--- old/xf86-video-savage-2.3.6/ChangeLog   2012-07-17 08:27:47.0 
+0200
+++ new/xf86-video-savage-2.3.7/ChangeLog   2013-09-24 23:27:50.0 
+0200
@@ -1,3 +1,97 @@
+commit d27abbf74fee30ddb9a3ca0d597ca0ce16a1bc35
+Author: Tormod Volden 
+Date:   Tue Sep 24 23:14:35 2013 +0200
+
+xf86-video-savage: bump to version 2.3.7
+
+Signed-off-by: Tormod Volden 
+
+commit 966a0e95d6c420e5e0ab01e665144e66a4004846
+Author: Alexander Grothe 
+Date:   Sun Sep 15 11:00:41 2013 +0200
+
+Drop miInitializeBackingStore() call
+
+It was only needed up to xserver 1.4 and is not supported in the
+recent xserver versions.
+
+Thanks to Alexander Grothe for reporting the issue and providing
+the fix.
+
+https://bugs.freedesktop.org/show_bug.cgi?id=65444
+
+> commit 1cb0261ef54b7dd6a7ef84e1c3959e424706228b
+> Author: Daniel Martin 
+> Date:   Thu Sep 6 00:38:26 2012 +0200
+>
+>dix: Delete mibstore.h
+>
+>Since Nov 2010 (commit c4c4676) the only purpose of mibstore.h was to
+>define an empty function (miInitializeBackingStore()) for backward
+>compatibility. Time to say goodbye.
+
+Signed-off-by: Tormod Volden 
+
+commit 44581aef5f878e7f2b34d5693d50ef75263b195c
+Author: Tormod Volden 
+Date:   Wed Feb 6 22:14:59 2013 +0100
+
+Fix video window height on MX/IX/SuperSavage
+
+Some copy-pasto caused the width to be written into the height register.
+
+Thanks to Hans-Jürgen Mauser for pointing out a couple of more places this
+was wrong.
+
+Signed-off-by: Tormod Volden 
+
+commit 3425ddb4c5dd7bbd91068c7ba0b1c001719795a5
+Author: Tormod Volden 
+Date:   Thu May 9 12:39:58 2013 +
+
+Fix building with TRACEON defined
+
+Signed-off-by: Tormod Volden 
+
+commit ac460e6836bdd2cd16c9d29743376c16fdc6924e
+Author: Tormod Volden 
+Date:   Tue May 7 22:41:31 2013 +0200
+
+exa: Use exaGetPixmapFirstPixel() in

commit xf86-video-savage for openSUSE:Factory

2013-08-23 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2013-08-23 11:09:44

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is "xf86-video-savage"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2013-03-21 11:15:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2013-08-23 11:09:45.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug  7 15:03:39 CEST 2013 - r...@suse.de
+
+- add ExcludeArch for s390 and s390x 
+
+---



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.xWLDJt/_old  2013-08-23 11:09:46.0 +0200
+++ /var/tmp/diff_new_pack.xWLDJt/_new  2013-08-23 11:09:46.0 +0200
@@ -44,6 +44,7 @@
 # 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
+ExcludeArch:s390 s390x
 %x11_abi_videodrv_req
 
 %description

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



commit xf86-video-savage for openSUSE:Factory

2013-03-21 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2013-03-21 11:15:39

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is "xf86-video-savage", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2013-03-04 17:34:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2013-03-21 11:15:40.0 +0100
@@ -1,0 +2,6 @@
+Wed Mar 20 17:53:04 UTC 2013 - sndir...@suse.com
+
+- introduce hardware supplements conditional on xorg-x11-server
+  package (bnc#810333) 
+
+---



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.efANs4/_old  2013-03-21 11:15:41.0 +0100
+++ /var/tmp/diff_new_pack.efANs4/_new  2013-03-21 11:15:41.0 +0100
@@ -40,7 +40,7 @@
 BuildRequires:  pkgconfig(xorg-macros) >= 1.8
 BuildRequires:  pkgconfig(xorg-server) >= 1.1.0
 BuildRequires:  pkgconfig(xproto)
-Supplements:xorg-x11-server
+Supplements:modalias(xorg-x11-server:pci:v5333d*sv*sd*bc03sc*i*)
 # 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

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



commit xf86-video-savage for openSUSE:Factory

2013-03-04 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2013-03-04 17:34:56

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is "xf86-video-savage", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2012-09-15 17:30:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2013-03-04 17:34:58.0 +0100
@@ -1,0 +2,22 @@
+Sat Mar  2 04:09:27 UTC 2013 - sndir...@suse.com
+
+- u_Disable-tiling-on-SuperSavage-Novell-Bugzilla-805380.patch
+  * Disable tiling on SuperSavage (Novell Bugzilla #805380)
+- obsoletes 
+  u_Disable-tiling-on-SuperSavage-IXC-64-Novell-Bugzilla.patch
+
+---
+Thu Feb 28 09:47:41 UTC 2013 - sndir...@suse.com
+
+- u_Disable-tiling-on-SuperSavage-IXC-64-Novell-Bugzilla.patch
+  * disables tiling on SuperSavage/IXC 64 (bnc#805380)
+
+---
+Mon Feb 25 11:43:59 UTC 2013 - sndir...@suse.com
+
+- U_savage-move-compat-api.h-down-to-proper-place.patch
+  * This screws up when DRI isn't enabled.
+- U_savage-fix-default-accel-arch-when-built-with-no-XAA.patch
+  * fix default accel arch when built with no XAA (bnc#805380?)
+
+---

New:

  U_savage-fix-default-accel-arch-when-built-with-no-XAA.patch
  U_savage-move-compat-api.h-down-to-proper-place.patch
  u_Disable-tiling-on-SuperSavage-Novell-Bugzilla-805380.patch



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.tm6udK/_old  2013-03-04 17:34:59.0 +0100
+++ /var/tmp/diff_new_pack.tm6udK/_new  2013-03-04 17:34:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-savage
 #
-# 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
@@ -24,6 +24,9 @@
 Group:  System/X11/Servers/XF86_4
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
+Patch0: U_savage-move-compat-api.h-down-to-proper-place.patch
+Patch1: U_savage-fix-default-accel-arch-when-built-with-no-XAA.patch
+Patch2: u_Disable-tiling-on-SuperSavage-Novell-Bugzilla-805380.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(fontsproto)
@@ -52,6 +55,9 @@
 
 %prep
 %setup -q
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
 
 %build
 %configure

++ U_savage-fix-default-accel-arch-when-built-with-no-XAA.patch ++
>From ca9718a887ecbc59b76869af673791ab591b849b Mon Sep 17 00:00:00 2001
From: Dave Airlie 
Date: Sat, 22 Dec 2012 20:00:00 +1000
Subject: [PATCH 2/2] savage: fix default accel arch when built with no XAA

Signed-off-by: Dave Airlie 
---
 src/savage_driver.c |4 
 1 file changed, 4 insertions(+)

diff --git a/src/savage_driver.c b/src/savage_driver.c
index 026bf5c..5b49e60 100644
--- a/src/savage_driver.c
+++ b/src/savage_driver.c
@@ -1267,6 +1267,7 @@ static Bool SavagePreInit(ScrnInfoPtr pScrn, int flags)
 from = X_DEFAULT;
char *strptr;
 if((strptr = (char *)xf86GetOptValString(psav->Options, 
OPTION_ACCELMETHOD))) {
+#ifdef HAVE_XAA_H
if(!xf86NameCmp(strptr,"XAA")) {
from = X_CONFIG;
psav->useEXA = FALSE;
@@ -1274,6 +1275,9 @@ static Bool SavagePreInit(ScrnInfoPtr pScrn, int flags)
   from = X_CONFIG;
   psav->useEXA = TRUE;
}
+#else
+   psav->useEXA = TRUE;
+#endif
}
xf86DrvMsg(pScrn->scrnIndex, from, "Using %s acceleration 
architecture\n",
psav->useEXA ? "EXA" : "XAA");
-- 
1.7.10.4

++ U_savage-move-compat-api.h-down-to-proper-place.patch ++
>From 3d181030a6ba2205a57ef4665e53aed0251ccaa6 Mon Sep 17 00:00:00 2001
From: Dave Airlie 
Date: Wed, 18 Jul 2012 18:52:38 +1000
Subject: [PATCH 1/2] savage: move compat-api.h down to proper place.

This screws up when DRI isn't enabled.

Signed-off-by: Dave Airlie 
---
 src/savage_driver.h |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/savage_driver.h b/src/savage_driver.h
index b604292..ec4b1ea 100644
--- a/src/savage_driver.h
+++ b/src/savage_driver.h
@@ -85,8 +85,6 @@
 #include "GL/glxint.h"
 #include "xf86drm.h"
 
-#include "comp

commit xf86-video-savage for openSUSE:Factory

2012-09-15 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2012-09-15 17:30:49

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is "xf86-video-savage", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2012-06-01 22:33:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2012-09-15 17:30:51.0 +0200
@@ -1,0 +2,12 @@
+Sun Sep  2 21:13:07 UTC 2012 - zai...@opensuse.org
+
+- Update to version 2.3.6:
+  + Make build with no xaa server.
+- Changes since version 2.3.5:
+  + i2c drop xf86Screens usage.
+  + Port to new compat API
+  + Refactor BIOS modes retrieval to call VBEGetVBEInfo only once.
+Otherwise, calling it twice would trigger a VBE bug when using
+xserver 1.12.
+
+---

Old:

  xf86-video-savage-2.3.4.tar.bz2

New:

  xf86-video-savage-2.3.6.tar.bz2



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.RtFJbK/_old  2012-09-15 17:30:51.0 +0200
+++ /var/tmp/diff_new_pack.RtFJbK/_new  2012-09-15 17:30:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   xf86-video-savage
-Version:2.3.4
+Version:2.3.6
 Release:0
 Summary:S3 Savage video driver for the Xorg X server
 License:MIT

++ xf86-video-savage-2.3.4.tar.bz2 -> xf86-video-savage-2.3.6.tar.bz2 ++
 26872 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xf86-video-savage-2.3.4/ChangeLog new/xf86-video-savage-2.3.6/ChangeLog
--- old/xf86-video-savage-2.3.4/ChangeLog   2012-03-24 03:46:48.0 
+0100
+++ new/xf86-video-savage-2.3.6/ChangeLog   2012-07-17 08:27:47.0 
+0200
@@ -1,3 +1,56 @@
+commit cb27a7a072c6e087a2e272d84c1d569dc717da8b
+Author: Dave Airlie 
+Date:   Tue Jul 17 16:05:09 2012 +1000
+
+xf86-video-savage: bump to version 2.3.6
+
+Signed-off-by: Dave Airlie 
+
+commit d7edd7c545473d5ed80c9a46c1405042267a7293
+Author: Dave Airlie 
+Date:   Mon Jul 16 03:39:32 2012 +0100
+
+savage: make build with no xaa server.
+
+This fixes savage build against the no XAA server.
+
+Signed-off-by: Dave Airlie 
+
+commit 508e0742b7d1ac1e4ff6b648d19bfa062c535d61
+Author: Dave Airlie 
+Date:   Mon Jul 2 12:29:41 2012 +0100
+
+savage: bump to 2.3.5
+
+Signed-off-by: Dave Airlie 
+
+commit 430b956b49b6c883189074ce13bc234545b714e0
+Author: Dave Airlie 
+Date:   Wed Jun 6 11:24:31 2012 +0100
+
+savage: i2c drop xf86Screens usage.
+
+Signed-off-by: Dave Airlie 
+
+commit a2714fb09e1e0badbb3e98e24d4b1ed92003bdb9
+Author: Dave Airlie 
+Date:   Wed Jun 6 11:22:29 2012 +0100
+
+savage: port to new compat API
+
+Signed-off-by: Dave Airlie 
+
+commit de22eab9a21df80fe965dc37d21ba3ac2b9f5fd0
+Author: Tormod Volden 
+Date:   Wed Feb 15 22:20:37 2012 +0100
+
+Refactor BIOS modes retrieval to call VBEGetVBEInfo only once
+
+Otherwise, calling it twice would trigger a VBE bug when using
+xserver 1.12.
+
+Signed-off-by: Tormod Volden 
+
 commit 63dd44674a28263c5d8d6aec8b72e95f94d3fe6c
 Author: Alan Coopersmith 
 Date:   Fri Mar 23 19:46:12 2012 -0700
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xf86-video-savage-2.3.4/config.h.in new/xf86-video-savage-2.3.6/config.h.in
--- old/xf86-video-savage-2.3.4/config.h.in 2012-03-24 03:46:27.0 
+0100
+++ new/xf86-video-savage-2.3.6/config.h.in 2012-07-17 08:27:47.0 
+0200
@@ -32,6 +32,9 @@
 /* Define to 1 if you have the  header file. */
 #undef HAVE_UNISTD_H
 
+/* Define to 1 if you have the  header file. */
+#undef HAVE_XAA_H
+
 /* xextproto 7.1 available */
 #undef HAVE_XEXTPROTO_71
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --ex

commit xf86-video-savage for openSUSE:Factory

2012-06-01 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2012-06-01 22:33:02

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is "xf86-video-savage", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2012-05-25 16:20:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2012-06-01 22:33:06.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun  1 09:42:27 UTC 2012 - sndir...@suse.com
+
+- remove hw supplements (bnc#764395) 
+
+---



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.e0XePr/_old  2012-06-01 22:33:07.0 +0200
+++ /var/tmp/diff_new_pack.e0XePr/_new  2012-06-01 22:33:07.0 +0200
@@ -41,29 +41,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
-Supplements:modalias(pci:v5333d8D04sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8D03sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8D02sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8D01sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8A26sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8A25sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8C13sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8C12sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8C11sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8C10sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d9102sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8A21sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8A20sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8A22sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8C2Fsv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8C2Esv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8C2Dsv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8C2Csv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8C2Bsv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8C2Asv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8C26sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8C24sv*sd*bc*sc*i*)
-Supplements:modalias(pci:v5333d8C22sv*sd*bc*sc*i*)
 %x11_abi_videodrv_req
 
 %description

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



commit xf86-video-savage for openSUSE:Factory

2012-05-25 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-savage for 
openSUSE:Factory checked in at 2012-05-25 16:19:34

Comparing /work/SRC/openSUSE:Factory/xf86-video-savage (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-savage.new (New)


Package is "xf86-video-savage", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-savage/xf86-video-savage.changes  
2012-05-08 12:04:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-savage.new/xf86-video-savage.changes 
2012-05-25 16:20:25.0 +0200
@@ -1,0 +2,6 @@
+Wed May 23 00:51:13 UTC 2012 - crrodrig...@opensuse.org
+
+- Add proper "Supplements" so the driver is picked up by
+  the package manager when the user has the proper hardware.
+
+---



Other differences:
--
++ xf86-video-savage.spec ++
--- /var/tmp/diff_new_pack.lMSZYi/_old  2012-05-25 16:20:26.0 +0200
+++ /var/tmp/diff_new_pack.lMSZYi/_new  2012-05-25 16:20:26.0 +0200
@@ -15,13 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   xf86-video-savage
 Version:2.3.4
 Release:0
-License:MIT
 Summary:S3 Savage video driver for the Xorg X server
-Url:http://xorg.freedesktop.org/
+License:MIT
 Group:  System/X11/Servers/XF86_4
+Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
 BuildRequires:  Mesa-devel
 BuildRequires:  pkg-config
@@ -40,6 +41,29 @@
 # 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
+Supplements:modalias(pci:v5333d8D04sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8D03sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8D02sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8D01sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8A26sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8A25sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8C13sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8C12sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8C11sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8C10sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d9102sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8A21sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8A20sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8A22sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8C2Fsv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8C2Esv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8C2Dsv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8C2Csv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8C2Bsv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8C2Asv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8C26sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8C24sv*sd*bc*sc*i*)
+Supplements:modalias(pci:v5333d8C22sv*sd*bc*sc*i*)
 %x11_abi_videodrv_req
 
 %description

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