[arch-commits] Commit in xf86-video-nouveau/repos (8 files)

2017-03-06 Thread Laurent Carlier
Date: Tuesday, March 7, 2017 @ 07:27:15
  Author: lcarlier
Revision: 290081

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

Added:
  
xf86-video-nouveau/repos/extra-i686/DDX-Consider-CRTCs-disabled-when-DPMS-is-off.patch
(from rev 290080, 
xf86-video-nouveau/trunk/DDX-Consider-CRTCs-disabled-when-DPMS-is-off.patch)
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
(from rev 290080, xf86-video-nouveau/trunk/PKGBUILD)
  
xf86-video-nouveau/repos/extra-x86_64/DDX-Consider-CRTCs-disabled-when-DPMS-is-off.patch
(from rev 290080, 
xf86-video-nouveau/trunk/DDX-Consider-CRTCs-disabled-when-DPMS-is-off.patch)
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
(from rev 290080, xf86-video-nouveau/trunk/PKGBUILD)
Deleted:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install

-+
 /PKGBUILD   |   78 +
 extra-i686/DDX-Consider-CRTCs-disabled-when-DPMS-is-off.patch   |  141 
++
 extra-i686/PKGBUILD |   31 --
 extra-i686/xf86-video-nouveau.install   |6 
 extra-x86_64/DDX-Consider-CRTCs-disabled-when-DPMS-is-off.patch |  141 
++
 extra-x86_64/PKGBUILD   |   31 --
 extra-x86_64/xf86-video-nouveau.install |6 
 7 files changed, 360 insertions(+), 74 deletions(-)

Copied: 
xf86-video-nouveau/repos/extra-i686/DDX-Consider-CRTCs-disabled-when-DPMS-is-off.patch
 (from rev 290080, 
xf86-video-nouveau/trunk/DDX-Consider-CRTCs-disabled-when-DPMS-is-off.patch)
===
--- extra-i686/DDX-Consider-CRTCs-disabled-when-DPMS-is-off.patch   
(rev 0)
+++ extra-i686/DDX-Consider-CRTCs-disabled-when-DPMS-is-off.patch   
2017-03-07 07:27:15 UTC (rev 290081)
@@ -0,0 +1,141 @@
+diff --git a/src/drmmode_display.c b/src/drmmode_display.c
+index b6c9bb9..dd9fa27 100644
+--- a/src/drmmode_display.c
 b/src/drmmode_display.c
+@@ -65,6 +65,7 @@ typedef struct {
+ uint32_t rotate_fb_id;
+ Bool cursor_visible;
+ int scanout_pixmap_x;
++int dpms_mode;
+ } drmmode_crtc_private_rec, *drmmode_crtc_private_ptr;
+ 
+ typedef struct {
+@@ -114,6 +115,14 @@ drmmode_crtc(xf86CrtcPtr crtc)
+   return drmmode_crtc->mode_crtc->crtc_id;
+ }
+ 
++Bool
++drmmode_crtc_on(xf86CrtcPtr crtc)
++{
++drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
++
++return crtc->enabled && drmmode_crtc->dpms_mode == DPMSModeOn;
++}
++
+ int
+ drmmode_head(xf86CrtcPtr crtc)
+ {
+@@ -313,9 +322,10 @@ drmmode_ConvertToKMode(ScrnInfoPtr scrn, drmModeModeInfo 
*kmode,
+ }
+ 
+ static void
+-drmmode_crtc_dpms(xf86CrtcPtr drmmode_crtc, int mode)
++drmmode_crtc_dpms(xf86CrtcPtr crtc, int mode)
+ {
+-
++  drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
++  drmmode_crtc->dpms_mode = mode;
+ }
+ 
+ void
+diff --git a/src/nouveau_dri2.c b/src/nouveau_dri2.c
+index 81ee9be..cbb7b2a 100644
+--- a/src/nouveau_dri2.c
 b/src/nouveau_dri2.c
+@@ -279,23 +279,27 @@ can_exchange(DrawablePtr draw, PixmapPtr dst_pix, 
PixmapPtr src_pix)
+   ScrnInfoPtr scrn = xf86ScreenToScrn(draw->pScreen);
+   xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(scrn);
+   NVPtr pNv = NVPTR(scrn);
+-  int i;
++  int i, active_crtc_count = 0;
+ 
+   if (!xf86_config->num_crtc)
+   return FALSE;
+ 
+   for (i = 0; i < xf86_config->num_crtc; i++) {
+   xf86CrtcPtr crtc = xf86_config->crtc[i];
+-  if (crtc->enabled && crtc->rotatedData)
+-  return FALSE;
++  if (drmmode_crtc_on(crtc)) {
++  if (crtc->rotatedData)
++  return FALSE;
+ 
++  active_crtc_count++;
++  }
+   }
+ 
+   return ((DRI2CanFlip(draw) && pNv->has_pageflip)) &&
+   dst_pix->drawable.width == src_pix->drawable.width &&
+   dst_pix->drawable.height == src_pix->drawable.height &&
+   dst_pix->drawable.bitsPerPixel == 
src_pix->drawable.bitsPerPixel &&
+-  dst_pix->devKind == src_pix->devKind;
++  dst_pix->devKind == src_pix->devKind &&
++  active_crtc_count;
+ }
+ 
+ static Bool
+@@ -475,7 +479,7 @@ dri2_page_flip(DrawablePtr draw, PixmapPtr back, void 
*priv,
+   int head = drmmode_crtc(config->crtc[i]);
+   void *token;
+ 
+-  if (!config->crtc[i]->enabled)
++  if (!drmmode_crtc_on(config->crtc[i]))
+   continue;
+ 
+   flipdata->flip_count++;
+diff --git a/src/nouveau_present.c b/src/nouveau_present.c
+index 

[arch-commits] Commit in xf86-video-nouveau/repos (8 files)

2015-12-12 Thread Andreas Radke
Date: Saturday, December 12, 2015 @ 10:20:29
  Author: andyrtr
Revision: 255825

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

Added:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
(from rev 255824, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
(from rev 255824, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
(from rev 255824, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install
(from rev 255824, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
Deleted:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install

-+
 /PKGBUILD   |   88 ++
 /xf86-video-nouveau.install |   12 
 extra-i686/PKGBUILD |   42 --
 extra-i686/xf86-video-nouveau.install   |6 --
 extra-x86_64/PKGBUILD   |   42 --
 extra-x86_64/xf86-video-nouveau.install |6 --
 6 files changed, 100 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-12-12 09:20:16 UTC (rev 255824)
+++ extra-i686/PKGBUILD 2015-12-12 09:20:29 UTC (rev 255825)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: buddabrod 
-
-pkgname=xf86-video-nouveau
-pkgver=1.0.11+31+g1ff13a9
-pkgrel=1
-pkgdesc="Open Source 2D acceleration driver for nVidia cards"
-arch=('i686' 'x86_64')
-url="http://nouveau.freedesktop.org/;
-license=('GPL')
-depends=('libdrm' 'systemd' 'mesa-dri')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20' 'git')
-conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21')
-groups=('xorg-drivers' 'xorg')
-install=$pkgname.install
-#source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
-source=('git://anongit.freedesktop.org/nouveau/xf86-video-nouveau#commit=1ff13a9')
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --long | sed 's/xf86-video-nouveau-//' | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-#  cd $pkgname-$pkgver
-  cd $pkgname
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-#  cd $pkgname-$pkgver
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: xf86-video-nouveau/repos/extra-i686/PKGBUILD (from rev 255824, 
xf86-video-nouveau/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-12-12 09:20:29 UTC (rev 255825)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: buddabrod 
+
+pkgname=xf86-video-nouveau
+#pkgver=1.0.11+31+g1ff13a9
+pkgver=1.0.12
+pkgrel=1
+pkgdesc="Open Source 2D acceleration driver for nVidia cards"
+arch=('i686' 'x86_64')
+url="http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'systemd' 'mesa-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20' 'git')
+conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21')
+groups=('xorg-drivers' 'xorg')
+install=$pkgname.install
+source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
+#source=('git://anongit.freedesktop.org/nouveau/xf86-video-nouveau#commit=1ff13a9')
+sha256sums=('SKIP')
+sha256sums=('0ea057ad7fc31caba2d4e46c7e418fe2b3c762b04fb8d382f53383397fd8391e')
+
+#pkgver() {
+#  cd $pkgname
+#  git describe --long | sed 's/xf86-video-nouveau-//' | sed 's/-/+/g'
+#}
+
+#prepare() {
+#  cd $pkgname
+#  NOCONFIGURE=1 ./autogen.sh
+#}
+
+build() {
+  cd $pkgname-$pkgver
+#  cd $pkgname
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+#  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/xf86-video-nouveau.install
===
--- extra-i686/xf86-video-nouveau.install   2015-12-12 09:20:16 UTC (rev 
255824)
+++ extra-i686/xf86-video-nouveau.install   2015-12-12 09:20:29 UTC (rev 
255825)
@@ -1,6 +0,0 @@
-post_install () {
-   cat << _EOF
-  ==> make sure you use KernelModeSetting (KMS)
-  ==> see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
-_EOF
-}

Copied: xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install (from 
rev 255824, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
===
--- extra-i686/xf86-video-nouveau.install   (rev 0)
+++ 

[arch-commits] Commit in xf86-video-nouveau/repos (8 files)

2015-02-11 Thread Laurent Carlier
Date: Wednesday, February 11, 2015 @ 09:50:58
  Author: lcarlier
Revision: 231269

db-move: moved xf86-video-nouveau from [staging] to [testing] (i686, x86_64)

Added:
  xf86-video-nouveau/repos/testing-i686/
  xf86-video-nouveau/repos/testing-i686/PKGBUILD
(from rev 231256, xf86-video-nouveau/repos/staging-i686/PKGBUILD)
  xf86-video-nouveau/repos/testing-i686/xf86-video-nouveau.install
(from rev 231256, 
xf86-video-nouveau/repos/staging-i686/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/testing-x86_64/
  xf86-video-nouveau/repos/testing-x86_64/PKGBUILD
(from rev 231256, xf86-video-nouveau/repos/staging-x86_64/PKGBUILD)
  xf86-video-nouveau/repos/testing-x86_64/xf86-video-nouveau.install
(from rev 231256, 
xf86-video-nouveau/repos/staging-x86_64/xf86-video-nouveau.install)
Deleted:
  xf86-video-nouveau/repos/staging-i686/
  xf86-video-nouveau/repos/staging-x86_64/

---+
 testing-i686/PKGBUILD |   29 
 testing-i686/xf86-video-nouveau.install   |6 +
 testing-x86_64/PKGBUILD   |   29 
 testing-x86_64/xf86-video-nouveau.install |6 +
 4 files changed, 70 insertions(+)

Copied: xf86-video-nouveau/repos/testing-i686/PKGBUILD (from rev 231256, 
xf86-video-nouveau/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-11 08:50:58 UTC (rev 231269)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+pkgver=1.0.11
+pkgrel=3
+pkgdesc=Open Source 2D acceleration driver for nVidia cards
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'systemd' 'mesa-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=19')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION19' 
'X-ABI-VIDEODRV_VERSION=20')
+groups=('xorg-drivers' 'xorg')
+install=$pkgname.install
+source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('f84fe2b2787f3ea9419eac3aa86462b929a551b3dbc4de550cc83b67f3216848')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: xf86-video-nouveau/repos/testing-i686/xf86-video-nouveau.install (from 
rev 231256, xf86-video-nouveau/repos/staging-i686/xf86-video-nouveau.install)
===
--- testing-i686/xf86-video-nouveau.install (rev 0)
+++ testing-i686/xf86-video-nouveau.install 2015-02-11 08:50:58 UTC (rev 
231269)
@@ -0,0 +1,6 @@
+post_install () {
+   cat  _EOF
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}

Copied: xf86-video-nouveau/repos/testing-x86_64/PKGBUILD (from rev 231256, 
xf86-video-nouveau/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-02-11 08:50:58 UTC (rev 231269)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+pkgver=1.0.11
+pkgrel=3
+pkgdesc=Open Source 2D acceleration driver for nVidia cards
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'systemd' 'mesa-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=19')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION19' 
'X-ABI-VIDEODRV_VERSION=20')
+groups=('xorg-drivers' 'xorg')
+install=$pkgname.install
+source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('f84fe2b2787f3ea9419eac3aa86462b929a551b3dbc4de550cc83b67f3216848')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: xf86-video-nouveau/repos/testing-x86_64/xf86-video-nouveau.install 
(from rev 231256, 
xf86-video-nouveau/repos/staging-x86_64/xf86-video-nouveau.install)
===
--- testing-x86_64/xf86-video-nouveau.install   (rev 0)
+++ testing-x86_64/xf86-video-nouveau.install   2015-02-11 08:50:58 UTC (rev 
231269)
@@ -0,0 +1,6 @@
+post_install () {
+   cat  _EOF
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}


[arch-commits] Commit in xf86-video-nouveau/repos (8 files)

2014-10-02 Thread Laurent Carlier
Date: Thursday, October 2, 2014 @ 21:27:31
  Author: lcarlier
Revision: 223775

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

Added:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
(from rev 223774, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
(from rev 223774, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
(from rev 223774, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install
(from rev 223774, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
Deleted:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install

-+
 /PKGBUILD   |   58 ++
 /xf86-video-nouveau.install |   12 ++
 extra-i686/PKGBUILD |   29 ---
 extra-i686/xf86-video-nouveau.install   |6 ---
 extra-x86_64/PKGBUILD   |   29 ---
 extra-x86_64/xf86-video-nouveau.install |6 ---
 6 files changed, 70 insertions(+), 70 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-10-02 19:27:20 UTC (rev 223774)
+++ extra-i686/PKGBUILD 2014-10-02 19:27:31 UTC (rev 223775)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: buddabrod buddab...@gmail.com
-
-pkgname=xf86-video-nouveau
-pkgver=1.0.11
-pkgrel=1
-pkgdesc=Open Source 2D acceleration driver for nVidia cards
-arch=('i686' 'x86_64')
-url=http://nouveau.freedesktop.org/;
-license=('GPL')
-depends=('libdrm' 'systemd' 'nouveau-dri')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18')
-conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19')
-groups=('xorg-drivers' 'xorg')
-install=$pkgname.install
-source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('f84fe2b2787f3ea9419eac3aa86462b929a551b3dbc4de550cc83b67f3216848')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: xf86-video-nouveau/repos/extra-i686/PKGBUILD (from rev 223774, 
xf86-video-nouveau/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-10-02 19:27:31 UTC (rev 223775)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+pkgver=1.0.11
+pkgrel=2
+pkgdesc=Open Source 2D acceleration driver for nVidia cards
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'systemd' 'mesa-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19')
+groups=('xorg-drivers' 'xorg')
+install=$pkgname.install
+source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('f84fe2b2787f3ea9419eac3aa86462b929a551b3dbc4de550cc83b67f3216848')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/xf86-video-nouveau.install
===
--- extra-i686/xf86-video-nouveau.install   2014-10-02 19:27:20 UTC (rev 
223774)
+++ extra-i686/xf86-video-nouveau.install   2014-10-02 19:27:31 UTC (rev 
223775)
@@ -1,6 +0,0 @@
-post_install () {
-   cat  _EOF
-  == make sure you use KernelModeSetting (KMS)
-  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
-_EOF
-}

Copied: xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install (from 
rev 223774, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
===
--- extra-i686/xf86-video-nouveau.install   (rev 0)
+++ extra-i686/xf86-video-nouveau.install   2014-10-02 19:27:31 UTC (rev 
223775)
@@ -0,0 +1,6 @@
+post_install () {
+   cat  _EOF
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-10-02 19:27:20 UTC (rev 223774)
+++ extra-x86_64/PKGBUILD   2014-10-02 19:27:31 UTC (rev 223775)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: buddabrod buddab...@gmail.com
-

[arch-commits] Commit in xf86-video-nouveau/repos (8 files)

2013-11-07 Thread Andreas Radke
Date: Thursday, November 7, 2013 @ 18:46:41
  Author: andyrtr
Revision: 199041

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

Added:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
(from rev 199040, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
(from rev 199040, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
(from rev 199040, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install
(from rev 199040, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
Deleted:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install

-+
 /PKGBUILD   |   58 ++
 /xf86-video-nouveau.install |   12 ++
 extra-i686/PKGBUILD |   29 ---
 extra-i686/xf86-video-nouveau.install   |6 ---
 extra-x86_64/PKGBUILD   |   29 ---
 extra-x86_64/xf86-video-nouveau.install |6 ---
 6 files changed, 70 insertions(+), 70 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-07 17:46:22 UTC (rev 199040)
+++ extra-i686/PKGBUILD 2013-11-07 17:46:41 UTC (rev 199041)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: buddabrod buddab...@gmail.com
-
-pkgname=xf86-video-nouveau
-pkgver=1.0.9
-pkgrel=1
-pkgdesc=Open Source 2D acceleration driver for nVidia cards
-arch=('i686' 'x86_64')
-url=http://nouveau.freedesktop.org/;
-license=('GPL')
-depends=('libdrm' 'udev' 'nouveau-dri')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server1.14.0' 'X-ABI-VIDEODRV_VERSION14' 
'X-ABI-VIDEODRV_VERSION=15')
-groups=('xorg-drivers' 'xorg')
-install=$pkgname.install
-source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('b247c800e532fad1c80a5666d8ca0d4e5712064b6d7a3b030b32206a8de04482')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: xf86-video-nouveau/repos/extra-i686/PKGBUILD (from rev 199040, 
xf86-video-nouveau/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-07 17:46:41 UTC (rev 199041)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+pkgver=1.0.10
+pkgrel=1
+pkgdesc=Open Source 2D acceleration driver for nVidia cards
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'udev' 'nouveau-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.14.0' 'X-ABI-VIDEODRV_VERSION14' 
'X-ABI-VIDEODRV_VERSION=15')
+groups=('xorg-drivers' 'xorg')
+install=$pkgname.install
+source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('c1bab3160bae96d485fc93a048d19775398aa85b407bac53020675f7e995db9d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/xf86-video-nouveau.install
===
--- extra-i686/xf86-video-nouveau.install   2013-11-07 17:46:22 UTC (rev 
199040)
+++ extra-i686/xf86-video-nouveau.install   2013-11-07 17:46:41 UTC (rev 
199041)
@@ -1,6 +0,0 @@
-post_install () {
-   cat  _EOF
-  == make sure you use KernelModeSetting (KMS)
-  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
-_EOF
-}

Copied: xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install (from 
rev 199040, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
===
--- extra-i686/xf86-video-nouveau.install   (rev 0)
+++ extra-i686/xf86-video-nouveau.install   2013-11-07 17:46:41 UTC (rev 
199041)
@@ -0,0 +1,6 @@
+post_install () {
+   cat  _EOF
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-07 17:46:22 UTC (rev 199040)
+++ extra-x86_64/PKGBUILD   2013-11-07 17:46:41 UTC (rev 199041)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 

[arch-commits] Commit in xf86-video-nouveau/repos (8 files)

2013-07-30 Thread Laurent Carlier
Date: Tuesday, July 30, 2013 @ 23:14:54
  Author: lcarlier
Revision: 191802

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

Added:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
(from rev 191801, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
(from rev 191801, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
(from rev 191801, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install
(from rev 191801, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
Deleted:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install

-+
 /PKGBUILD   |   60 ++
 /xf86-video-nouveau.install |   12 ++
 extra-i686/PKGBUILD |   30 ---
 extra-i686/xf86-video-nouveau.install   |6 ---
 extra-x86_64/PKGBUILD   |   30 ---
 extra-x86_64/xf86-video-nouveau.install |6 ---
 6 files changed, 72 insertions(+), 72 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-30 21:14:39 UTC (rev 191801)
+++ extra-i686/PKGBUILD 2013-07-30 21:14:54 UTC (rev 191802)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: buddabrod buddab...@gmail.com
-
-pkgname=xf86-video-nouveau
-pkgver=1.0.8
-pkgrel=1
-pkgdesc=Open Source 2D acceleration driver for nVidia cards
-arch=('i686' 'x86_64')
-url=http://nouveau.freedesktop.org/;
-license=('GPL')
-depends=('libdrm' 'udev' 'nouveau-dri')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server1.14.0' 'X-ABI-VIDEODRV_VERSION14' 
'X-ABI-VIDEODRV_VERSION=15')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-install=$pkgname.install
-source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('9b904314b8e9c7a5800724a6a31038ed88fa3fcfd35da6f4015fc104c8283617')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: xf86-video-nouveau/repos/extra-i686/PKGBUILD (from rev 191801, 
xf86-video-nouveau/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-30 21:14:54 UTC (rev 191802)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+pkgver=1.0.9
+pkgrel=1
+pkgdesc=Open Source 2D acceleration driver for nVidia cards
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'udev' 'nouveau-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.14.0' 'X-ABI-VIDEODRV_VERSION14' 
'X-ABI-VIDEODRV_VERSION=15')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+install=$pkgname.install
+source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('b247c800e532fad1c80a5666d8ca0d4e5712064b6d7a3b030b32206a8de04482')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/xf86-video-nouveau.install
===
--- extra-i686/xf86-video-nouveau.install   2013-07-30 21:14:39 UTC (rev 
191801)
+++ extra-i686/xf86-video-nouveau.install   2013-07-30 21:14:54 UTC (rev 
191802)
@@ -1,6 +0,0 @@
-post_install () {
-   cat  _EOF
-  == make sure you use KernelModeSetting (KMS)
-  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
-_EOF
-}

Copied: xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install (from 
rev 191801, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
===
--- extra-i686/xf86-video-nouveau.install   (rev 0)
+++ extra-i686/xf86-video-nouveau.install   2013-07-30 21:14:54 UTC (rev 
191802)
@@ -0,0 +1,6 @@
+post_install () {
+   cat  _EOF
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-07-30 21:14:39 UTC (rev 191801)
+++ extra-x86_64/PKGBUILD   2013-07-30 21:14:54 UTC (rev 191802)
@@ -1,30 +0,0 @@
-# 

[arch-commits] Commit in xf86-video-nouveau/repos (8 files)

2013-03-27 Thread Andreas Radke
Date: Thursday, March 28, 2013 @ 00:16:59
  Author: andyrtr
Revision: 180916

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

Added:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
(from rev 180915, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
(from rev 180915, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
(from rev 180915, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install
(from rev 180915, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
Deleted:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install

-+
 /PKGBUILD   |   60 ++
 /xf86-video-nouveau.install |   12 ++
 extra-i686/PKGBUILD |   30 ---
 extra-i686/xf86-video-nouveau.install   |6 ---
 extra-x86_64/PKGBUILD   |   30 ---
 extra-x86_64/xf86-video-nouveau.install |6 ---
 6 files changed, 72 insertions(+), 72 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-27 23:16:44 UTC (rev 180915)
+++ extra-i686/PKGBUILD 2013-03-27 23:16:59 UTC (rev 180916)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: buddabrod buddab...@gmail.com
-
-pkgname=xf86-video-nouveau
-pkgver=1.0.6
-pkgrel=2
-pkgdesc=Open Source 2D acceleration driver for nVidia cards
-arch=('i686' 'x86_64')
-url=http://nouveau.freedesktop.org/;
-license=('GPL')
-depends=('libdrm' 'udev' 'nouveau-dri')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server1.14.0' 'X-ABI-VIDEODRV_VERSION14' 
'X-ABI-VIDEODRV_VERSION=15')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-install=$pkgname.install
-source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('e3e1522d08134da74cb1796e8863fd3ad3caad9eb5e9d27f4cee3dfa7c75341f')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: xf86-video-nouveau/repos/extra-i686/PKGBUILD (from rev 180915, 
xf86-video-nouveau/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-27 23:16:59 UTC (rev 180916)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+pkgver=1.0.7
+pkgrel=1
+pkgdesc=Open Source 2D acceleration driver for nVidia cards
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'udev' 'nouveau-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.14.0' 'X-ABI-VIDEODRV_VERSION14' 
'X-ABI-VIDEODRV_VERSION=15')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+install=$pkgname.install
+source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('d187c658e1823ca829c941f3f601f8e7220d427e079c3e52b94ecff45bc2e131')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/xf86-video-nouveau.install
===
--- extra-i686/xf86-video-nouveau.install   2013-03-27 23:16:44 UTC (rev 
180915)
+++ extra-i686/xf86-video-nouveau.install   2013-03-27 23:16:59 UTC (rev 
180916)
@@ -1,6 +0,0 @@
-post_install () {
-   cat  _EOF
-  == make sure you use KernelModeSetting (KMS)
-  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
-_EOF
-}

Copied: xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install (from 
rev 180915, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
===
--- extra-i686/xf86-video-nouveau.install   (rev 0)
+++ extra-i686/xf86-video-nouveau.install   2013-03-27 23:16:59 UTC (rev 
180916)
@@ -0,0 +1,6 @@
+post_install () {
+   cat  _EOF
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-03-27 23:16:44 UTC (rev 180915)
+++ extra-x86_64/PKGBUILD   2013-03-27 23:16:59 UTC (rev 180916)
@@ -1,30 +0,0 @@

[arch-commits] Commit in xf86-video-nouveau/repos (8 files)

2013-01-07 Thread andyrtr
Date: Monday, January 7, 2013 @ 13:10:24
  Author: andyrtr
Revision: 174803

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

Added:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
(from rev 174802, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
(from rev 174802, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
(from rev 174802, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install
(from rev 174802, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
Deleted:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install

-+
 extra-i686/PKGBUILD |   60 +++---
 extra-i686/xf86-video-nouveau.install   |   12 +++---
 extra-x86_64/PKGBUILD   |   60 +++---
 extra-x86_64/xf86-video-nouveau.install |   12 +++---
 4 files changed, 72 insertions(+), 72 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-01-07 18:09:47 UTC (rev 174802)
+++ extra-i686/PKGBUILD 2013-01-07 18:10:24 UTC (rev 174803)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: buddabrod buddab...@gmail.com
-
-pkgname=xf86-video-nouveau
-pkgver=1.0.4
-pkgrel=1
-pkgdesc=Open Source 2D acceleration driver for nVidia cards
-arch=('i686' 'x86_64')
-url=http://nouveau.freedesktop.org/;
-license=('GPL')
-depends=('libdrm' 'udev' 'nouveau-dri')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server1.13.0' 'X-ABI-VIDEODRV_VERSION13' 
'X-ABI-VIDEODRV_VERSION=14')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-install=$pkgname.install
-source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('1a8290489cf4f48d2094a541ec9a6b68beb80299741d047e322e650c30ceb7c1')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: xf86-video-nouveau/repos/extra-i686/PKGBUILD (from rev 174802, 
xf86-video-nouveau/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-07 18:10:24 UTC (rev 174803)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+pkgver=1.0.6
+pkgrel=1
+pkgdesc=Open Source 2D acceleration driver for nVidia cards
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'udev' 'nouveau-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.13.0' 'X-ABI-VIDEODRV_VERSION13' 
'X-ABI-VIDEODRV_VERSION=14')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+install=$pkgname.install
+source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('e3e1522d08134da74cb1796e8863fd3ad3caad9eb5e9d27f4cee3dfa7c75341f')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/xf86-video-nouveau.install
===
--- extra-i686/xf86-video-nouveau.install   2013-01-07 18:09:47 UTC (rev 
174802)
+++ extra-i686/xf86-video-nouveau.install   2013-01-07 18:10:24 UTC (rev 
174803)
@@ -1,6 +0,0 @@
-post_install () {
-   cat  _EOF
-  == make sure you use KernelModeSetting (KMS)
-  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
-_EOF
-}

Copied: xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install (from 
rev 174802, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
===
--- extra-i686/xf86-video-nouveau.install   (rev 0)
+++ extra-i686/xf86-video-nouveau.install   2013-01-07 18:10:24 UTC (rev 
174803)
@@ -0,0 +1,6 @@
+post_install () {
+   cat  _EOF
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-01-07 18:09:47 UTC (rev 174802)
+++ extra-x86_64/PKGBUILD   2013-01-07 18:10:24 UTC (rev 174803)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: buddabrod 

[arch-commits] Commit in xf86-video-nouveau/repos (8 files)

2012-11-09 Thread andyrtr
Date: Friday, November 9, 2012 @ 12:02:04
  Author: andyrtr
Revision: 170688

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

Added:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
(from rev 170687, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
(from rev 170687, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
(from rev 170687, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install
(from rev 170687, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
Deleted:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install

-+
 extra-i686/PKGBUILD |   59 +++---
 extra-i686/xf86-video-nouveau.install   |   12 +++---
 extra-x86_64/PKGBUILD   |   59 +++---
 extra-x86_64/xf86-video-nouveau.install |   12 +++---
 4 files changed, 72 insertions(+), 70 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-11-09 17:01:26 UTC (rev 170687)
+++ extra-i686/PKGBUILD 2012-11-09 17:02:04 UTC (rev 170688)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: buddabrod buddab...@gmail.com
-
-pkgname=xf86-video-nouveau
-pkgver=1.0.3
-pkgrel=1
-pkgdesc=Open Source 2D acceleration driver for nVidia cards
-arch=('i686' 'x86_64')
-url=http://nouveau.freedesktop.org/;
-license=('GPL')
-depends=('libdrm' 'udev' 'nouveau-dri')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server1.13.0' 'X-ABI-VIDEODRV_VERSION13' 
'X-ABI-VIDEODRV_VERSION=14')
-options=('!libtool')
-install=$pkgname.install
-source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('a2ae34046324e1ec620f5a8dee3c8fe5a295acbb5d51825604c8ad28fb75a559')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: xf86-video-nouveau/repos/extra-i686/PKGBUILD (from rev 170687, 
xf86-video-nouveau/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-11-09 17:02:04 UTC (rev 170688)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+pkgver=1.0.4
+pkgrel=1
+pkgdesc=Open Source 2D acceleration driver for nVidia cards
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'udev' 'nouveau-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.13.0' 'X-ABI-VIDEODRV_VERSION13' 
'X-ABI-VIDEODRV_VERSION=14')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+install=$pkgname.install
+source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('1a8290489cf4f48d2094a541ec9a6b68beb80299741d047e322e650c30ceb7c1')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/xf86-video-nouveau.install
===
--- extra-i686/xf86-video-nouveau.install   2012-11-09 17:01:26 UTC (rev 
170687)
+++ extra-i686/xf86-video-nouveau.install   2012-11-09 17:02:04 UTC (rev 
170688)
@@ -1,6 +0,0 @@
-post_install () {
-   cat  _EOF
-  == make sure you use KernelModeSetting (KMS)
-  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
-_EOF
-}

Copied: xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install (from 
rev 170687, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
===
--- extra-i686/xf86-video-nouveau.install   (rev 0)
+++ extra-i686/xf86-video-nouveau.install   2012-11-09 17:02:04 UTC (rev 
170688)
@@ -0,0 +1,6 @@
+post_install () {
+   cat  _EOF
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-11-09 17:01:26 UTC (rev 170687)
+++ extra-x86_64/PKGBUILD   2012-11-09 17:02:04 UTC (rev 170688)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: buddabrod buddab...@gmail.com
-

[arch-commits] Commit in xf86-video-nouveau/repos (8 files)

2012-10-06 Thread andyrtr
Date: Saturday, October 6, 2012 @ 16:07:48
  Author: andyrtr
Revision: 168232

db-move: moved xf86-video-nouveau from [staging] to [testing] (i686, x86_64)

Added:
  xf86-video-nouveau/repos/testing-i686/
  xf86-video-nouveau/repos/testing-i686/PKGBUILD
(from rev 168199, xf86-video-nouveau/repos/staging-i686/PKGBUILD)
  xf86-video-nouveau/repos/testing-i686/xf86-video-nouveau.install
(from rev 168199, 
xf86-video-nouveau/repos/staging-i686/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/testing-x86_64/
  xf86-video-nouveau/repos/testing-x86_64/PKGBUILD
(from rev 168199, xf86-video-nouveau/repos/staging-x86_64/PKGBUILD)
  xf86-video-nouveau/repos/testing-x86_64/xf86-video-nouveau.install
(from rev 168199, 
xf86-video-nouveau/repos/staging-x86_64/xf86-video-nouveau.install)
Deleted:
  xf86-video-nouveau/repos/staging-i686/
  xf86-video-nouveau/repos/staging-x86_64/

---+
 testing-i686/PKGBUILD |   29 
 testing-i686/xf86-video-nouveau.install   |6 +
 testing-x86_64/PKGBUILD   |   29 
 testing-x86_64/xf86-video-nouveau.install |6 +
 4 files changed, 70 insertions(+)

Copied: xf86-video-nouveau/repos/testing-i686/PKGBUILD (from rev 168199, 
xf86-video-nouveau/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-06 20:07:48 UTC (rev 168232)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+pkgver=1.0.2
+pkgrel=2
+pkgdesc=Open Source 2D acceleration driver for nVidia cards
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'udev' 'nouveau-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.13.0' 'X-ABI-VIDEODRV_VERSION13' 
'X-ABI-VIDEODRV_VERSION=14')
+options=('!libtool')
+install=$pkgname.install
+source=($url/release/$pkgname-$pkgver.tar.bz2)
+sha256sums=('765731c2a91d434d4360517a128d18af70b158f727e49813f1a42e26cccbc45d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: xf86-video-nouveau/repos/testing-i686/xf86-video-nouveau.install (from 
rev 168199, xf86-video-nouveau/repos/staging-i686/xf86-video-nouveau.install)
===
--- testing-i686/xf86-video-nouveau.install (rev 0)
+++ testing-i686/xf86-video-nouveau.install 2012-10-06 20:07:48 UTC (rev 
168232)
@@ -0,0 +1,6 @@
+post_install () {
+   cat  _EOF
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}

Copied: xf86-video-nouveau/repos/testing-x86_64/PKGBUILD (from rev 168199, 
xf86-video-nouveau/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-10-06 20:07:48 UTC (rev 168232)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+pkgver=1.0.2
+pkgrel=2
+pkgdesc=Open Source 2D acceleration driver for nVidia cards
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'udev' 'nouveau-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.13.0' 'X-ABI-VIDEODRV_VERSION13' 
'X-ABI-VIDEODRV_VERSION=14')
+options=('!libtool')
+install=$pkgname.install
+source=($url/release/$pkgname-$pkgver.tar.bz2)
+sha256sums=('765731c2a91d434d4360517a128d18af70b158f727e49813f1a42e26cccbc45d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: xf86-video-nouveau/repos/testing-x86_64/xf86-video-nouveau.install 
(from rev 168199, 
xf86-video-nouveau/repos/staging-x86_64/xf86-video-nouveau.install)
===
--- testing-x86_64/xf86-video-nouveau.install   (rev 0)
+++ testing-x86_64/xf86-video-nouveau.install   2012-10-06 20:07:48 UTC (rev 
168232)
@@ -0,0 +1,6 @@
+post_install () {
+   cat  _EOF
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}



[arch-commits] Commit in xf86-video-nouveau/repos (8 files)

2012-06-18 Thread Ionut Biru
Date: Monday, June 18, 2012 @ 15:14:04
  Author: ibiru
Revision: 162014

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

Added:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
(from rev 162013, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
(from rev 162013, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
(from rev 162013, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install
(from rev 162013, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
Deleted:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install

-+
 extra-i686/PKGBUILD |   71 --
 extra-i686/xf86-video-nouveau.install   |   22 ++---
 extra-x86_64/PKGBUILD   |   71 --
 extra-x86_64/xf86-video-nouveau.install |   22 ++---
 4 files changed, 72 insertions(+), 114 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-18 19:13:16 UTC (rev 162013)
+++ extra-i686/PKGBUILD 2012-06-18 19:14:04 UTC (rev 162014)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: buddabrod buddab...@gmail.com
-
-pkgname=xf86-video-nouveau
-_gitdate=20120615
-pkgver=0.0.16_git${_gitdate} # see configure.ac
-pkgrel=1
-pkgdesc=Open Source 2D acceleration driver for nVidia cards (experimental)
-arch=('i686' 'x86_64')
-url=http://nouveau.freedesktop.org/wiki/;
-license=('GPL') #and MIT, not yet a license file, see 
http://nouveau.freedesktop.org/wiki/FAQ#head-09f75d03eb30011c754038a3893119a70745de4e
-depends=('libdrm' 'udev')
-optdepends=('nouveau-dri:   experimental gallium3d features')
-makedepends=('xorg-server-devel' 'xf86driproto')
-conflicts=('xorg-server1.11.99.902')
-options=('!libtool')
-install=$pkgname.install
-source=(ftp://ftp.archlinux.org/other/$pkgname/xf86-video-nouveau-${_gitdate}.tar.bz2)
-md5sums=('9ceb49ff436c9a00536490fb1c8bf6d1')
-
-# source PKGBUILD  mksource
-mksource() {
-   mkdir /tmp/$pkgname-${_gitdate}
-   pushd /tmp/$pkgname-${_gitdate}
-   git clone -v --depth 1 
git://anongit.freedesktop.org/nouveau/xf86-video-nouveau
-   cd xf86-video-nouveau
-   git archive --prefix=xf86-video-nouveau-${_gitdate}/ --format=tar HEAD 
| bzip2  /tmp/$pkgname-${_gitdate}/$pkgname-${_gitdate}.tar.bz2
-   popd
-}
-
-build() {
-  cd xf86-video-nouveau-${_gitdate}
-  ./autogen.sh --prefix=/usr
-  make
-}
-
-package() {
-  cd xf86-video-nouveau-${_gitdate}
-  make DESTDIR=$pkgdir install
-}

Copied: xf86-video-nouveau/repos/extra-i686/PKGBUILD (from rev 162013, 
xf86-video-nouveau/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-18 19:14:04 UTC (rev 162014)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=Open Source 2D acceleration driver for nVidia cards
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'udev')
+optdepends=('nouveau-dri: experimental gallium3d features')
+makedepends=('xorg-server-devel' 'xf86driproto')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool')
+install=$pkgname.install
+source=($url/release/$pkgname-$pkgver.tar.bz2)
+md5sums=('26c56ff4f373e6f48301ffaacfb3fe04')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/xf86-video-nouveau.install
===
--- extra-i686/xf86-video-nouveau.install   2012-06-18 19:13:16 UTC (rev 
162013)
+++ extra-i686/xf86-video-nouveau.install   2012-06-18 19:14:04 UTC (rev 
162014)
@@ -1,16 +0,0 @@
-post_install () {
-   cat  _EOF
-  == make sure you use KernelModeSetting (KMS)
-  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
-_EOF
-}
-
-post_upgrade() {
-  if [ `vercmp $2 0.0.15_git20100117-1` -lt 0 ]; then
-cat  _EOF
-  == ATTENTION: Usermode support has been dropped
-  == make sure you use KernelModeSetting (KMS)
-  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
-_EOF
- fi
-}

Copied: xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install (from 
rev 162013, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
===
--- extra-i686/xf86-video-nouveau.install

[arch-commits] Commit in xf86-video-nouveau/repos (8 files)

2012-06-18 Thread Ionut Biru
Date: Monday, June 18, 2012 @ 21:44:22
  Author: ibiru
Revision: 162034

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

Added:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
(from rev 162033, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
(from rev 162033, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
(from rev 162033, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install
(from rev 162033, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
Deleted:
  xf86-video-nouveau/repos/extra-i686/PKGBUILD
  xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install
  xf86-video-nouveau/repos/extra-x86_64/PKGBUILD
  xf86-video-nouveau/repos/extra-x86_64/xf86-video-nouveau.install

-+
 extra-i686/PKGBUILD |   60 +++---
 extra-i686/xf86-video-nouveau.install   |   12 +++---
 extra-x86_64/PKGBUILD   |   60 +++---
 extra-x86_64/xf86-video-nouveau.install |   12 +++---
 4 files changed, 72 insertions(+), 72 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-19 01:43:42 UTC (rev 162033)
+++ extra-i686/PKGBUILD 2012-06-19 01:44:22 UTC (rev 162034)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: buddabrod buddab...@gmail.com
-
-pkgname=xf86-video-nouveau
-pkgver=1.0.0
-pkgrel=1
-pkgdesc=Open Source 2D acceleration driver for nVidia cards
-arch=('i686' 'x86_64')
-url=http://nouveau.freedesktop.org/;
-license=('GPL')
-depends=('libdrm' 'udev')
-optdepends=('nouveau-dri: experimental gallium3d features')
-makedepends=('xorg-server-devel' 'xf86driproto')
-conflicts=('xorg-server1.11.99.902')
-options=('!libtool')
-install=$pkgname.install
-source=($url/release/$pkgname-$pkgver.tar.bz2)
-md5sums=('26c56ff4f373e6f48301ffaacfb3fe04')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: xf86-video-nouveau/repos/extra-i686/PKGBUILD (from rev 162033, 
xf86-video-nouveau/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-19 01:44:22 UTC (rev 162034)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+pkgver=1.0.1
+pkgrel=1
+pkgdesc=Open Source 2D acceleration driver for nVidia cards
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'udev')
+optdepends=('nouveau-dri: experimental gallium3d features')
+makedepends=('xorg-server-devel' 'xf86driproto')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool')
+install=$pkgname.install
+source=($url/release/$pkgname-$pkgver.tar.bz2)
+md5sums=('d120bdd4ee9fc3581f3b93e3b31c4574')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/xf86-video-nouveau.install
===
--- extra-i686/xf86-video-nouveau.install   2012-06-19 01:43:42 UTC (rev 
162033)
+++ extra-i686/xf86-video-nouveau.install   2012-06-19 01:44:22 UTC (rev 
162034)
@@ -1,6 +0,0 @@
-post_install () {
-   cat  _EOF
-  == make sure you use KernelModeSetting (KMS)
-  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
-_EOF
-}

Copied: xf86-video-nouveau/repos/extra-i686/xf86-video-nouveau.install (from 
rev 162033, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
===
--- extra-i686/xf86-video-nouveau.install   (rev 0)
+++ extra-i686/xf86-video-nouveau.install   2012-06-19 01:44:22 UTC (rev 
162034)
@@ -0,0 +1,6 @@
+post_install () {
+   cat  _EOF
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-19 01:43:42 UTC (rev 162033)
+++ extra-x86_64/PKGBUILD   2012-06-19 01:44:22 UTC (rev 162034)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: buddabrod buddab...@gmail.com
-
-pkgname=xf86-video-nouveau
-pkgver=1.0.0
-pkgrel=1
-pkgdesc=Open Source 2D acceleration driver for nVidia cards
-arch=('i686' 'x86_64')
-url=http://nouveau.freedesktop.org/;
-license=('GPL')
-depends=('libdrm' 'udev')
-optdepends=('nouveau-dri: experimental gallium3d features')
-makedepends=('xorg-server-devel' 

[arch-commits] Commit in xf86-video-nouveau/repos (8 files)

2012-06-15 Thread Ionut Biru
Date: Friday, June 15, 2012 @ 09:58:24
  Author: ibiru
Revision: 161839

db-move: moved xf86-video-nouveau from [staging] to [testing] ( i686,  x86_64)

Added:
  xf86-video-nouveau/repos/testing-i686/
  xf86-video-nouveau/repos/testing-i686/PKGBUILD
(from rev 161838, xf86-video-nouveau/repos/staging-i686/PKGBUILD)
  xf86-video-nouveau/repos/testing-i686/xf86-video-nouveau.install
(from rev 161838, 
xf86-video-nouveau/repos/staging-i686/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/testing-x86_64/
  xf86-video-nouveau/repos/testing-x86_64/PKGBUILD
(from rev 161838, xf86-video-nouveau/repos/staging-x86_64/PKGBUILD)
  xf86-video-nouveau/repos/testing-x86_64/xf86-video-nouveau.install
(from rev 161838, 
xf86-video-nouveau/repos/staging-x86_64/xf86-video-nouveau.install)
Deleted:
  xf86-video-nouveau/repos/staging-i686/
  xf86-video-nouveau/repos/staging-x86_64/

---+
 testing-i686/PKGBUILD |   41 
 testing-i686/xf86-video-nouveau.install   |   16 ++
 testing-x86_64/PKGBUILD   |   41 
 testing-x86_64/xf86-video-nouveau.install |   16 ++
 4 files changed, 114 insertions(+)

Copied: xf86-video-nouveau/repos/testing-i686/PKGBUILD (from rev 161838, 
xf86-video-nouveau/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-06-15 13:58:24 UTC (rev 161839)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+_gitdate=20120612
+pkgver=0.0.16_git${_gitdate} # see configure.ac
+pkgrel=1
+pkgdesc=Open Source 2D acceleration driver for nVidia cards (experimental)
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/wiki/;
+license=('GPL') #and MIT, not yet a license file, see 
http://nouveau.freedesktop.org/wiki/FAQ#head-09f75d03eb30011c754038a3893119a70745de4e
+depends=('libdrm' 'udev')
+optdepends=('nouveau-dri:   experimental gallium3d features')
+makedepends=('xorg-server-devel' 'xf86driproto')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool')
+install=$pkgname.install
+source=(ftp://ftp.archlinux.org/other/$pkgname/xf86-video-nouveau-${_gitdate}.tar.bz2)
+md5sums=('d72338b96fa4c8356f69f10692dbc6d9')
+
+# source PKGBUILD  mksource
+mksource() {
+   mkdir /tmp/$pkgname-${_gitdate}
+   pushd /tmp/$pkgname-${_gitdate}
+   git clone -v --depth 1 
git://anongit.freedesktop.org/nouveau/xf86-video-nouveau
+   cd xf86-video-nouveau
+   git archive --prefix=xf86-video-nouveau-${_gitdate}/ --format=tar HEAD 
| bzip2  /tmp/$pkgname-${_gitdate}/$pkgname-${_gitdate}.tar.bz2
+   popd
+}
+
+build() {
+  cd xf86-video-nouveau-${_gitdate}
+  ./autogen.sh --prefix=/usr
+  make
+}
+
+package() {
+  cd xf86-video-nouveau-${_gitdate}
+  make DESTDIR=$pkgdir install
+}

Copied: xf86-video-nouveau/repos/testing-i686/xf86-video-nouveau.install (from 
rev 161838, xf86-video-nouveau/repos/staging-i686/xf86-video-nouveau.install)
===
--- testing-i686/xf86-video-nouveau.install (rev 0)
+++ testing-i686/xf86-video-nouveau.install 2012-06-15 13:58:24 UTC (rev 
161839)
@@ -0,0 +1,16 @@
+post_install () {
+   cat  _EOF
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}
+
+post_upgrade() {
+  if [ `vercmp $2 0.0.15_git20100117-1` -lt 0 ]; then
+cat  _EOF
+  == ATTENTION: Usermode support has been dropped
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+ fi
+}

Copied: xf86-video-nouveau/repos/testing-x86_64/PKGBUILD (from rev 161838, 
xf86-video-nouveau/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-06-15 13:58:24 UTC (rev 161839)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+_gitdate=20120612
+pkgver=0.0.16_git${_gitdate} # see configure.ac
+pkgrel=1
+pkgdesc=Open Source 2D acceleration driver for nVidia cards (experimental)
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/wiki/;
+license=('GPL') #and MIT, not yet a license file, see 
http://nouveau.freedesktop.org/wiki/FAQ#head-09f75d03eb30011c754038a3893119a70745de4e
+depends=('libdrm' 'udev')
+optdepends=('nouveau-dri:   experimental gallium3d features')
+makedepends=('xorg-server-devel' 'xf86driproto')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool')
+install=$pkgname.install

[arch-commits] Commit in xf86-video-nouveau/repos (8 files)

2012-06-15 Thread Ionut Biru
Date: Friday, June 15, 2012 @ 10:06:38
  Author: ibiru
Revision: 161842

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

Added:
  xf86-video-nouveau/repos/testing-i686/PKGBUILD
(from rev 161841, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/testing-i686/xf86-video-nouveau.install
(from rev 161841, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/testing-x86_64/PKGBUILD
(from rev 161841, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/testing-x86_64/xf86-video-nouveau.install
(from rev 161841, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
Deleted:
  xf86-video-nouveau/repos/testing-i686/PKGBUILD
  xf86-video-nouveau/repos/testing-i686/xf86-video-nouveau.install
  xf86-video-nouveau/repos/testing-x86_64/PKGBUILD
  xf86-video-nouveau/repos/testing-x86_64/xf86-video-nouveau.install

---+
 testing-i686/PKGBUILD |   82 ++--
 testing-i686/xf86-video-nouveau.install   |   32 +-
 testing-x86_64/PKGBUILD   |   82 ++--
 testing-x86_64/xf86-video-nouveau.install |   32 +-
 4 files changed, 114 insertions(+), 114 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2012-06-15 14:05:44 UTC (rev 161841)
+++ testing-i686/PKGBUILD   2012-06-15 14:06:38 UTC (rev 161842)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: buddabrod buddab...@gmail.com
-
-pkgname=xf86-video-nouveau
-_gitdate=20120612
-pkgver=0.0.16_git${_gitdate} # see configure.ac
-pkgrel=1
-pkgdesc=Open Source 2D acceleration driver for nVidia cards (experimental)
-arch=('i686' 'x86_64')
-url=http://nouveau.freedesktop.org/wiki/;
-license=('GPL') #and MIT, not yet a license file, see 
http://nouveau.freedesktop.org/wiki/FAQ#head-09f75d03eb30011c754038a3893119a70745de4e
-depends=('libdrm' 'udev')
-optdepends=('nouveau-dri:   experimental gallium3d features')
-makedepends=('xorg-server-devel' 'xf86driproto')
-conflicts=('xorg-server1.11.99.902')
-options=('!libtool')
-install=$pkgname.install
-source=(ftp://ftp.archlinux.org/other/$pkgname/xf86-video-nouveau-${_gitdate}.tar.bz2)
-md5sums=('d72338b96fa4c8356f69f10692dbc6d9')
-
-# source PKGBUILD  mksource
-mksource() {
-   mkdir /tmp/$pkgname-${_gitdate}
-   pushd /tmp/$pkgname-${_gitdate}
-   git clone -v --depth 1 
git://anongit.freedesktop.org/nouveau/xf86-video-nouveau
-   cd xf86-video-nouveau
-   git archive --prefix=xf86-video-nouveau-${_gitdate}/ --format=tar HEAD 
| bzip2  /tmp/$pkgname-${_gitdate}/$pkgname-${_gitdate}.tar.bz2
-   popd
-}
-
-build() {
-  cd xf86-video-nouveau-${_gitdate}
-  ./autogen.sh --prefix=/usr
-  make
-}
-
-package() {
-  cd xf86-video-nouveau-${_gitdate}
-  make DESTDIR=$pkgdir install
-}

Copied: xf86-video-nouveau/repos/testing-i686/PKGBUILD (from rev 161841, 
xf86-video-nouveau/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-06-15 14:06:38 UTC (rev 161842)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+_gitdate=20120615
+pkgver=0.0.16_git${_gitdate} # see configure.ac
+pkgrel=1
+pkgdesc=Open Source 2D acceleration driver for nVidia cards (experimental)
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/wiki/;
+license=('GPL') #and MIT, not yet a license file, see 
http://nouveau.freedesktop.org/wiki/FAQ#head-09f75d03eb30011c754038a3893119a70745de4e
+depends=('libdrm' 'udev')
+optdepends=('nouveau-dri:   experimental gallium3d features')
+makedepends=('xorg-server-devel' 'xf86driproto')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool')
+install=$pkgname.install
+source=(ftp://ftp.archlinux.org/other/$pkgname/xf86-video-nouveau-${_gitdate}.tar.bz2)
+md5sums=('9ceb49ff436c9a00536490fb1c8bf6d1')
+
+# source PKGBUILD  mksource
+mksource() {
+   mkdir /tmp/$pkgname-${_gitdate}
+   pushd /tmp/$pkgname-${_gitdate}
+   git clone -v --depth 1 
git://anongit.freedesktop.org/nouveau/xf86-video-nouveau
+   cd xf86-video-nouveau
+   git archive --prefix=xf86-video-nouveau-${_gitdate}/ --format=tar HEAD 
| bzip2  /tmp/$pkgname-${_gitdate}/$pkgname-${_gitdate}.tar.bz2
+   popd
+}
+
+build() {
+  cd xf86-video-nouveau-${_gitdate}
+  ./autogen.sh --prefix=/usr
+  make
+}
+
+package() {
+  cd xf86-video-nouveau-${_gitdate}
+  make DESTDIR=$pkgdir install
+}

Deleted: testing-i686/xf86-video-nouveau.install
===
--- testing-i686/xf86-video-nouveau.install 2012-06-15 14:05:44 UTC (rev 
161841)
+++ testing-i686/xf86-video-nouveau.install