[arch-commits] Commit in xf86-video-glint/repos (6 files)

Laurent Carlier lcarlier at archlinux.org
Mon Nov 21 19:31:38 UTC 2016


    Date: Monday, November 21, 2016 @ 19:31:36
  Author: lcarlier
Revision: 281786

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xf86-video-glint/repos/staging-i686/
  xf86-video-glint/repos/staging-i686/PKGBUILD
    (from rev 281785, xf86-video-glint/trunk/PKGBUILD)
  xf86-video-glint/repos/staging-i686/git-fixes.patch
    (from rev 281785, xf86-video-glint/trunk/git-fixes.patch)
  xf86-video-glint/repos/staging-x86_64/
  xf86-video-glint/repos/staging-x86_64/PKGBUILD
    (from rev 281785, xf86-video-glint/trunk/PKGBUILD)
  xf86-video-glint/repos/staging-x86_64/git-fixes.patch
    (from rev 281785, xf86-video-glint/trunk/git-fixes.patch)

--------------------------------+
 staging-i686/PKGBUILD          |   36 ++++++++++
 staging-i686/git-fixes.patch   |  137 +++++++++++++++++++++++++++++++++++++++
 staging-x86_64/PKGBUILD        |   36 ++++++++++
 staging-x86_64/git-fixes.patch |  137 +++++++++++++++++++++++++++++++++++++++
 4 files changed, 346 insertions(+)

Copied: xf86-video-glint/repos/staging-i686/PKGBUILD (from rev 281785, xf86-video-glint/trunk/PKGBUILD)
===================================================================
--- staging-i686/PKGBUILD	                        (rev 0)
+++ staging-i686/PKGBUILD	2016-11-21 19:31:36 UTC (rev 281786)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+
+pkgname=xf86-video-glint
+pkgver=1.2.8
+pkgrel=8
+pkgdesc="X.org GLINT/Permedia video driver"
+arch=(i686 x86_64)
+url="https://xorg.freedesktop.org/"
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=23' 'xf86dgaproto')
+conflicts=('xorg-server<1.19' 'X-ABI-VIDEODRV_VERSION<23' 'X-ABI-VIDEODRV_VERSION>=24')
+groups=('xorg-drivers')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
+        git-fixes.patch)
+sha256sums=('657f883bb3a4e4278399eba73840862c3642706ae8b0a4798ec97a31b3524221'
+            'e14a3739c43ceaa13212c31286133d92854dd67884b7bb6188a854b939455110')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ../git-fixes.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+ ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: xf86-video-glint/repos/staging-i686/git-fixes.patch (from rev 281785, xf86-video-glint/trunk/git-fixes.patch)
===================================================================
--- staging-i686/git-fixes.patch	                        (rev 0)
+++ staging-i686/git-fixes.patch	2016-11-21 19:31:36 UTC (rev 281786)
@@ -0,0 +1,137 @@
+From 073d5b0b392781bf4a6aa7f9e2dbe2ae51caed2c Mon Sep 17 00:00:00 2001
+From: Adam Jackson <ajax at redhat.com>
+Date: Tue, 25 Sep 2012 08:54:38 -0400
+Subject: [PATCH 1/4] Remove mibstore.h
+
+Signed-off-by: Adam Jackson <ajax at redhat.com>
+---
+ src/glint_driver.c | 3 ---
+ 1 file changed, 3 deletions(-)
+
+diff --git a/src/glint_driver.c b/src/glint_driver.c
+index b6d20a9..aa78516 100644
+--- a/src/glint_driver.c
++++ b/src/glint_driver.c
+@@ -52,8 +52,6 @@
+ #include "compiler.h"
+ #include "mipointer.h"
+ 
+-#include "mibstore.h"
+-
+ #include "pm3_regs.h"
+ #include "glint_regs.h"
+ #include "IBM.h"
+@@ -2904,7 +2902,6 @@ GLINTScreenInit(SCREEN_INIT_ARGS_DECL)
+         }
+     }
+ 
+-    miInitializeBackingStore(pScreen);
+     xf86SetBackingStore(pScreen);
+     xf86SetSilkenMouse(pScreen);
+ 
+-- 
+2.10.2
+
+
+From b54f27f0de0558880b2146a4315a99907eb72249 Mon Sep 17 00:00:00 2001
+From: Adam Jackson <ajax at redhat.com>
+Date: Mon, 11 Aug 2014 12:29:28 -0400
+Subject: [PATCH 2/4] Pass the pci device through to fbdevHWInit
+
+Signed-off-by: Adam Jackson <ajax at redhat.com>
+---
+ src/glint_driver.c | 8 ++++++--
+ 1 file changed, 6 insertions(+), 2 deletions(-)
+
+diff --git a/src/glint_driver.c b/src/glint_driver.c
+index aa78516..019a2f1 100644
+--- a/src/glint_driver.c
++++ b/src/glint_driver.c
+@@ -944,7 +944,9 @@ GLINTPreInit(ScrnInfoPtr pScrn, int flags)
+     if (FBDevProbed) {
+ 	int default_depth, fbbpp;
+ 	
+-	if (!fbdevHWInit(pScrn,NULL,xf86FindOptionValue(pGlint->pEnt->device->options,"fbdev"))) {
++	if (!fbdevHWInit(pScrn, pGlint->PciInfo,
++			 xf86FindOptionValue(pGlint->pEnt->device->options,
++					     "fbdev"))) {
+ 		xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "fbdevHWInit failed!\n");	
+ 		return FALSE;
+ 	}
+@@ -1076,7 +1078,9 @@ GLINTPreInit(ScrnInfoPtr pScrn, int flags)
+ 		return FALSE;
+ 	}
+ 
+-	if (!fbdevHWInit(pScrn,NULL,xf86FindOptionValue(pGlint->pEnt->device->options,"fbdev")))
++	if (!fbdevHWInit(pScrn, pGlint->PciInfo,
++			 xf86FindOptionValue(pGlint->pEnt->device->options,
++					     "fbdev")))
+ 	{
+ 		xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "fbdevHWInit failed!\n");
+ 		return FALSE;
+-- 
+2.10.2
+
+
+From 5b22c69898330d2e321596f7061b91362c0e6216 Mon Sep 17 00:00:00 2001
+From: Michael Lorenz <macallan at NetBSD.org>
+Date: Thu, 19 Feb 2015 15:26:46 +0100
+Subject: [PATCH 3/4] Fix I2C for DDC2.
+
+When doing DDC2 on Permedia make sure to clear the USE_MONID bit
+in the DDCdata register so the i2c bits actually do something.
+
+Signed-off-by: Thomas Klausner <wiz at NetBSD.org>
+---
+ src/pm2_dac.c | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/src/pm2_dac.c b/src/pm2_dac.c
+index 85093ff..fc4bfea 100644
+--- a/src/pm2_dac.c
++++ b/src/pm2_dac.c
+@@ -458,7 +458,8 @@ Permedia2I2CPutBits(I2CBusPtr b, int scl, int sda)
+ {
+     GLINTPtr pGlint = (GLINTPtr) b->DriverPrivate.ptr;
+     int r = (pGlint->DDCBus == b) ? PMDDCData : VSSerialBusControl;
+-    CARD32 v = GLINT_READ_REG(r) & ~(ClkOut | DataOut);
++
++    CARD32 v = 0;
+ 
+     if (scl > 0) v |= ClkOut;
+     if (sda > 0) v |= DataOut;
+-- 
+2.10.2
+
+
+From 2eb4d03d2280deec4d6f1b06aaa16477a641af9a Mon Sep 17 00:00:00 2001
+From: Adam Jackson <ajax at redhat.com>
+Date: Tue, 19 Jul 2016 10:03:56 -0400
+Subject: [PATCH 4/4] Adapt Block/WakeupHandler signature for ABI 23
+
+Signed-off-by: Adam Jackson <ajax at redhat.com>
+---
+ src/compat-api.h | 5 +++++
+ 1 file changed, 5 insertions(+)
+
+diff --git a/src/compat-api.h b/src/compat-api.h
+index 6bc946f..89976e4 100644
+--- a/src/compat-api.h
++++ b/src/compat-api.h
+@@ -75,8 +75,13 @@
+ 
+ #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
++#else
+ #define BLOCKHANDLER_ARGS_DECL ScreenPtr arg, pointer pTimeout, pointer pReadmask
+ #define BLOCKHANDLER_ARGS arg, pTimeout, pReadmask
++#endif
+ 
+ #define CLOSE_SCREEN_ARGS_DECL ScreenPtr pScreen
+ #define CLOSE_SCREEN_ARGS pScreen
+-- 
+2.10.2
+

Copied: xf86-video-glint/repos/staging-x86_64/PKGBUILD (from rev 281785, xf86-video-glint/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2016-11-21 19:31:36 UTC (rev 281786)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+
+pkgname=xf86-video-glint
+pkgver=1.2.8
+pkgrel=8
+pkgdesc="X.org GLINT/Permedia video driver"
+arch=(i686 x86_64)
+url="https://xorg.freedesktop.org/"
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=23' 'xf86dgaproto')
+conflicts=('xorg-server<1.19' 'X-ABI-VIDEODRV_VERSION<23' 'X-ABI-VIDEODRV_VERSION>=24')
+groups=('xorg-drivers')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
+        git-fixes.patch)
+sha256sums=('657f883bb3a4e4278399eba73840862c3642706ae8b0a4798ec97a31b3524221'
+            'e14a3739c43ceaa13212c31286133d92854dd67884b7bb6188a854b939455110')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ../git-fixes.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+ ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: xf86-video-glint/repos/staging-x86_64/git-fixes.patch (from rev 281785, xf86-video-glint/trunk/git-fixes.patch)
===================================================================
--- staging-x86_64/git-fixes.patch	                        (rev 0)
+++ staging-x86_64/git-fixes.patch	2016-11-21 19:31:36 UTC (rev 281786)
@@ -0,0 +1,137 @@
+From 073d5b0b392781bf4a6aa7f9e2dbe2ae51caed2c Mon Sep 17 00:00:00 2001
+From: Adam Jackson <ajax at redhat.com>
+Date: Tue, 25 Sep 2012 08:54:38 -0400
+Subject: [PATCH 1/4] Remove mibstore.h
+
+Signed-off-by: Adam Jackson <ajax at redhat.com>
+---
+ src/glint_driver.c | 3 ---
+ 1 file changed, 3 deletions(-)
+
+diff --git a/src/glint_driver.c b/src/glint_driver.c
+index b6d20a9..aa78516 100644
+--- a/src/glint_driver.c
++++ b/src/glint_driver.c
+@@ -52,8 +52,6 @@
+ #include "compiler.h"
+ #include "mipointer.h"
+ 
+-#include "mibstore.h"
+-
+ #include "pm3_regs.h"
+ #include "glint_regs.h"
+ #include "IBM.h"
+@@ -2904,7 +2902,6 @@ GLINTScreenInit(SCREEN_INIT_ARGS_DECL)
+         }
+     }
+ 
+-    miInitializeBackingStore(pScreen);
+     xf86SetBackingStore(pScreen);
+     xf86SetSilkenMouse(pScreen);
+ 
+-- 
+2.10.2
+
+
+From b54f27f0de0558880b2146a4315a99907eb72249 Mon Sep 17 00:00:00 2001
+From: Adam Jackson <ajax at redhat.com>
+Date: Mon, 11 Aug 2014 12:29:28 -0400
+Subject: [PATCH 2/4] Pass the pci device through to fbdevHWInit
+
+Signed-off-by: Adam Jackson <ajax at redhat.com>
+---
+ src/glint_driver.c | 8 ++++++--
+ 1 file changed, 6 insertions(+), 2 deletions(-)
+
+diff --git a/src/glint_driver.c b/src/glint_driver.c
+index aa78516..019a2f1 100644
+--- a/src/glint_driver.c
++++ b/src/glint_driver.c
+@@ -944,7 +944,9 @@ GLINTPreInit(ScrnInfoPtr pScrn, int flags)
+     if (FBDevProbed) {
+ 	int default_depth, fbbpp;
+ 	
+-	if (!fbdevHWInit(pScrn,NULL,xf86FindOptionValue(pGlint->pEnt->device->options,"fbdev"))) {
++	if (!fbdevHWInit(pScrn, pGlint->PciInfo,
++			 xf86FindOptionValue(pGlint->pEnt->device->options,
++					     "fbdev"))) {
+ 		xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "fbdevHWInit failed!\n");	
+ 		return FALSE;
+ 	}
+@@ -1076,7 +1078,9 @@ GLINTPreInit(ScrnInfoPtr pScrn, int flags)
+ 		return FALSE;
+ 	}
+ 
+-	if (!fbdevHWInit(pScrn,NULL,xf86FindOptionValue(pGlint->pEnt->device->options,"fbdev")))
++	if (!fbdevHWInit(pScrn, pGlint->PciInfo,
++			 xf86FindOptionValue(pGlint->pEnt->device->options,
++					     "fbdev")))
+ 	{
+ 		xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "fbdevHWInit failed!\n");
+ 		return FALSE;
+-- 
+2.10.2
+
+
+From 5b22c69898330d2e321596f7061b91362c0e6216 Mon Sep 17 00:00:00 2001
+From: Michael Lorenz <macallan at NetBSD.org>
+Date: Thu, 19 Feb 2015 15:26:46 +0100
+Subject: [PATCH 3/4] Fix I2C for DDC2.
+
+When doing DDC2 on Permedia make sure to clear the USE_MONID bit
+in the DDCdata register so the i2c bits actually do something.
+
+Signed-off-by: Thomas Klausner <wiz at NetBSD.org>
+---
+ src/pm2_dac.c | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/src/pm2_dac.c b/src/pm2_dac.c
+index 85093ff..fc4bfea 100644
+--- a/src/pm2_dac.c
++++ b/src/pm2_dac.c
+@@ -458,7 +458,8 @@ Permedia2I2CPutBits(I2CBusPtr b, int scl, int sda)
+ {
+     GLINTPtr pGlint = (GLINTPtr) b->DriverPrivate.ptr;
+     int r = (pGlint->DDCBus == b) ? PMDDCData : VSSerialBusControl;
+-    CARD32 v = GLINT_READ_REG(r) & ~(ClkOut | DataOut);
++
++    CARD32 v = 0;
+ 
+     if (scl > 0) v |= ClkOut;
+     if (sda > 0) v |= DataOut;
+-- 
+2.10.2
+
+
+From 2eb4d03d2280deec4d6f1b06aaa16477a641af9a Mon Sep 17 00:00:00 2001
+From: Adam Jackson <ajax at redhat.com>
+Date: Tue, 19 Jul 2016 10:03:56 -0400
+Subject: [PATCH 4/4] Adapt Block/WakeupHandler signature for ABI 23
+
+Signed-off-by: Adam Jackson <ajax at redhat.com>
+---
+ src/compat-api.h | 5 +++++
+ 1 file changed, 5 insertions(+)
+
+diff --git a/src/compat-api.h b/src/compat-api.h
+index 6bc946f..89976e4 100644
+--- a/src/compat-api.h
++++ b/src/compat-api.h
+@@ -75,8 +75,13 @@
+ 
+ #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
++#else
+ #define BLOCKHANDLER_ARGS_DECL ScreenPtr arg, pointer pTimeout, pointer pReadmask
+ #define BLOCKHANDLER_ARGS arg, pTimeout, pReadmask
++#endif
+ 
+ #define CLOSE_SCREEN_ARGS_DECL ScreenPtr pScreen
+ #define CLOSE_SCREEN_ARGS pScreen
+-- 
+2.10.2
+



More information about the arch-commits mailing list