[arch-commits] Commit in xf86-video-intel/trunk (4 files)

2014-09-08 Thread Laurent Carlier
Date: Monday, September 8, 2014 @ 14:33:07
  Author: lcarlier
Revision: 221154

upgpkg: xf86-video-intel 2.99.916-1

upstream update 2.99.916

Modified:
  xf86-video-intel/trunk/PKGBUILD
Deleted:
  xf86-video-intel/trunk/fix-i810-segfault-2.99.914.patch
  xf86-video-intel/trunk/sna-clear-cursor-image-after-rotation.patch
  
xf86-video-intel/trunk/sna-glyphs-Fallback-to-masked-glyphs-if-rendering-to.patch

+
 PKGBUILD   |   24 -
 fix-i810-segfault-2.99.914.patch   |   31 ---
 sna-clear-cursor-image-after-rotation.patch|   24 -
 sna-glyphs-Fallback-to-masked-glyphs-if-rendering-to.patch |   47 ---
 4 files changed, 4 insertions(+), 122 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-08 12:03:44 UTC (rev 221153)
+++ PKGBUILD2014-09-08 12:33:07 UTC (rev 221154)
@@ -3,8 +3,8 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xf86-video-intel
-pkgver=2.99.914
-pkgrel=4
+pkgver=2.99.916
+pkgrel=1
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
@@ -23,25 +23,9 @@
 conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19'
'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
 groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
-fix-i810-segfault-2.99.914.patch
-   sna-glyphs-Fallback-to-masked-glyphs-if-rendering-to.patch
-sna-clear-cursor-image-after-rotation.patch)
-sha256sums=('78a22e5efd460b790c634caaf1afbb756046dd890482e204bb0d179baad27e46'
-'a7c27ce28e6db47971aea2762496fdb05f93413c418756f5e7f6cf2e76b91041'
-'a40ee7d923ce77057d4add2f9dae61bc7870e64b2cf1f49d2b2a6d729102b7ae'
-'bc5383abd2dd680e830600da3d3da1d9c56b0b270efffd3aec94b23bfd9179c9')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('409a819f4ac3e7c9432dd4acafe4621bbb3702adb34b1ea942b2e6d7c71eed01')
 
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # fix segfaulting on i810 chipsets - merged upstream
-  patch -Np1 -i ../fix-i810-segfault-2.99.914.patch
-  # fix FS#40949 - merged upstream
-  patch -Np1 -i ../sna-glyphs-Fallback-to-masked-glyphs-if-rendering-to.patch
-  # fix FS#41317 - merged upstream
-  patch -Np1 -i ../sna-clear-cursor-image-after-rotation.patch
-}
-
 build() {
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr \

Deleted: fix-i810-segfault-2.99.914.patch
===
--- fix-i810-segfault-2.99.914.patch2014-09-08 12:03:44 UTC (rev 221153)
+++ fix-i810-segfault-2.99.914.patch2014-09-08 12:33:07 UTC (rev 221154)
@@ -1,31 +0,0 @@
-From ce804875914f52dba5356f8aefec850d411b051a Mon Sep 17 00:00:00 2001
-From: Chris Wilson ch...@chris-wilson.co.uk
-Date: Thu, 31 Jul 2014 15:18:02 +
-Subject: i810: Fix startup after marking GPU screens in the module
-
-Fixes regression from
-
-commit d6830190bc9956f485db6c3420f7a4a79793a693
-Author: Chris Wilson ch...@chris-wilson.co.uk
-Date:   Wed Jul 23 10:53:40 2014 +0100
-
-sna: Disable all outputs when initializing as a slaved output provider
-
-Reported-by: Tobias Powalowski
-Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk

-diff --git a/src/legacy/i810/i810_driver.c b/src/legacy/i810/i810_driver.c
-index a1b73fd..3d53d04 100644
 a/src/legacy/i810/i810_driver.c
-+++ b/src/legacy/i810/i810_driver.c
-@@ -152,7 +152,7 @@ static int i810_pitches[] = {
- static Bool
- I810GetRec(ScrnInfoPtr scrn)
- {
--   if (((uintptr_t)scrn-driverPrivate  1) == 0)
-+   if (((uintptr_t)scrn-driverPrivate  3) == 0)
-   return TRUE;
- 
-scrn-driverPrivate = xnfcalloc(sizeof(I810Rec), 1);
---
-cgit v0.9.0.2-2-gbebe

Deleted: sna-clear-cursor-image-after-rotation.patch
===
--- sna-clear-cursor-image-after-rotation.patch 2014-09-08 12:03:44 UTC (rev 
221153)
+++ sna-clear-cursor-image-after-rotation.patch 2014-09-08 12:33:07 UTC (rev 
221154)
@@ -1,24 +0,0 @@
-From a88795c64123e4084044451d8861838ea904abd9 Mon Sep 17 00:00:00 2001
-From: Chris Wilson ch...@chris-wilson.co.uk
-Date: Tue, 29 Jul 2014 21:11:09 +0100
-Subject: sna: Clear cursor image after rotation
-
-Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=81886
-Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
-
-diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c
-index 8964e77..eed68d3 100644
 a/src/sna/sna_display.c
-+++ b/src/sna/sna_display.c
-@@ -4294,7 +4294,7 @@ static struct sna_cursor *__sna_get_cursor(struct sna 
*sna, xf86CrtcPtr crtc)
-   image = sna-cursor.scratch;
-   cursor-last_width = cursor-last_height = size;
-   }
--  if (width  

[arch-commits] Commit in xf86-video-intel/trunk (4 files)

2011-01-05 Thread Jan de Groot
Date: Wednesday, January 5, 2011 @ 08:15:08
  Author: jgc
Revision: 104883

upgpkg: xf86-video-intel 2.13.903-1
Update to next RC
Add latest fix from git master
Remove git-fixes.patch, no longer needed
Remove 8xx-enable-shadow.patch, the driver has logic to detect the need for 
this now

Added:
  xf86-video-intel/trunk/fix-off-by-one-assert.patch
Modified:
  xf86-video-intel/trunk/PKGBUILD
Deleted:
  xf86-video-intel/trunk/8xx-enable-shadow.patch
  xf86-video-intel/trunk/git-fixes.patch

-+
 8xx-enable-shadow.patch |   11 
 PKGBUILD|   14 
 fix-off-by-one-assert.patch |   23 
 git-fixes.patch | 2182 --
 4 files changed, 28 insertions(+), 2202 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 104882:104883 to see the changes.


[arch-commits] Commit in xf86-video-intel/trunk (4 files)

2010-10-13 Thread Jan de Groot
Date: Wednesday, October 13, 2010 @ 15:05:07
  Author: jgc
Revision: 95043

upgpkg: xf86-video-intel 2.13.0-3
Update to todays git snapshot, fixes driver name for 8xx devices
Only enable shadow for 845. 855 seems to work without it and breaks with it, so 
far I have only tested 845G for correct operation with this
Fuck pageflipping, this should be fixed in kernel, not worked around in driver

Modified:
  xf86-video-intel/trunk/8xx-enable-shadow.patch
  xf86-video-intel/trunk/PKGBUILD
Deleted:
  xf86-video-intel/trunk/disable-pageflip.patch
  xf86-video-intel/trunk/git-d2bc2212.patch

-+
 8xx-enable-shadow.patch |2 
 PKGBUILD|   13 
 disable-pageflip.patch  |   24 
 git-d2bc2212.patch  | 2165 --
 4 files changed, 6 insertions(+), 2198 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 95042:95043 to see the changes.


[arch-commits] Commit in xf86-video-intel/trunk (4 files)

2010-10-12 Thread Jan de Groot
Date: Tuesday, October 12, 2010 @ 10:01:57
  Author: jgc
Revision: 94915

upgpkg: xf86-video-intel 2.13.0-2
Update to latest git snapshot from master, fixes several issues with shadow
Disable pageflipping once again until upstream decides to fix the kernel
Enable shadow by default on GEN2 hardware (post-810/815 8xx chipsets)

Added:
  xf86-video-intel/trunk/8xx-enable-shadow.patch
  xf86-video-intel/trunk/disable-pageflip.patch
  xf86-video-intel/trunk/git-d2bc2212.patch
Modified:
  xf86-video-intel/trunk/PKGBUILD

-+
 8xx-enable-shadow.patch |   11 
 PKGBUILD|   15 
 disable-pageflip.patch  |   24 
 git-d2bc2212.patch  | 2165 ++
 4 files changed, 2212 insertions(+), 3 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 94914:94915 to see the changes.