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

2016-11-21 Thread Laurent Carlier
Date: Monday, November 21, 2016 @ 14:35:18
  Author: lcarlier
Revision: 281750

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

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

+
 staging-i686/PKGBUILD  |   40 +
 staging-i686/git-fixes.patch   |  119 +++
 staging-x86_64/PKGBUILD|   40 +
 staging-x86_64/git-fixes.patch |  119 +++
 4 files changed, 318 insertions(+)

Copied: xf86-video-r128/repos/staging-i686/PKGBUILD (from rev 281749, 
xf86-video-r128/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-11-21 14:35:18 UTC (rev 281750)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-r128
+pkgver=6.10.1
+pkgrel=2
+pkgdesc="X.org ati Rage128 video driver"
+arch=(i686 x86_64)
+url="https://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=23')
+conflicts=('xorg-server<1.19' 'X-ABI-VIDEODRV_VERSION<23' 
'X-ABI-VIDEODRV_VERSION>=24')
+optdepends=('r128-dri: DRI1 support from community repo')
+groups=('xorg-drivers')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig}
+git-fixes.patch)
+sha256sums=('5ebfef49831c9b12f7b7011c8314010596ac2ab0d5b9b7cfd17908e93d7de4ea'
+'SKIP'
+'e4da65dab4380efc73a16e4bb09fedb5c838ad285f7d86dd8aeef105c6f1790c')
+validpgpkeys=('6EA3F3F3B9082632A9CBE931D53A0445B47A0DAB') # Connor Behan 

+
+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-r128/repos/staging-i686/git-fixes.patch (from rev 281749, 
xf86-video-r128/trunk/git-fixes.patch)
===
--- staging-i686/git-fixes.patch(rev 0)
+++ staging-i686/git-fixes.patch2016-11-21 14:35:18 UTC (rev 281750)
@@ -0,0 +1,119 @@
+From 3328547c840664896c12d0fd2db8f63e3a398a62 Mon Sep 17 00:00:00 2001
+From: Kevin Brace 
+Date: Wed, 16 Mar 2016 18:59:23 -0700
+Subject: [PATCH 1/3] xextproto 7.1 support update to the source code
+
+While the compilation script was updated, for some reason, the source
+code did not get the update.
+
+Signed-off-by: Kevin Brace 
+Reviewed-by: Connor Behan 
+---
+ src/r128_crtc.c   | 6 ++
+ src/r128_output.c | 6 ++
+ 2 files changed, 12 insertions(+)
+
+diff --git a/src/r128_crtc.c b/src/r128_crtc.c
+index d62cc6a..ed77492 100644
+--- a/src/r128_crtc.c
 b/src/r128_crtc.c
+@@ -35,7 +35,13 @@
+ 
+ #include "xf86.h"
+ #include "xf86Modes.h"
++
++#ifdef HAVE_XEXTPROTO_71
+ #include "X11/extensions/dpmsconst.h"
++#else
++#define DPMS_SERVER
++#include "X11/extensions/dpms.h"
++#endif
+ 
+ #include "r128.h"
+ #include "r128_probe.h"
+diff --git a/src/r128_output.c b/src/r128_output.c
+index a2c754b..73b4af2 100644
+--- a/src/r128_output.c
 b/src/r128_output.c
+@@ -35,7 +35,13 @@
+ 
+ #include "xf86.h"
+ #include "xf86Modes.h"
++
++#ifdef HAVE_XEXTPROTO_71
+ #include "X11/extensions/dpmsconst.h"
++#else
++#define DPMS_SERVER
++#include "X11/extensions/dpms.h"
++#endif
+ 
+ #include "r128.h"
+ #include "r128_probe.h"
+-- 
+2.10.2
+
+
+From a589dd6baf7fa26f8ea7008ba6bd533a5ba3e76e Mon Sep 17 00:00:00 2001
+From: Connor Behan 
+Date: Wed, 13 Apr 2016 12:41:00 -0400
+Subject: [PATCH 2/3] Remove gatos advertisement
+
+There are many current working ways to use a TV tuner with Linux. This
+is not one of them.
+Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=94915
+
+Signed-off-by: Connor Behan 
+---
+ src/r128_driver.c | 4 
+ 1 file changed, 4 deletions(-)
+
+diff --git a/src/r128_driver.c b/src/r128_driver.c
+index 9a676d5..5695614 100644
+--- a/src/r128_driver.c
 b/src/r128_driver.c
+@@ -1435,10 +1435,6 @@ Bool R128PreInit(ScrnInfoPtr pScrn, int flags)
+ if (info->MMIO) R128UnmapMMIO(pScrn);
+ info->MMIO = NULL;
+ 
+-xf86DrvMsg(pScrn->scrnIndex, X_NOTICE,
+-  "For information on using the multimedia capabilities\n\tof this"
+-  " adapter, please see http

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

2015-02-05 Thread Laurent Carlier
Date: Thursday, February 5, 2015 @ 23:19:10
  Author: lcarlier
Revision: 230879

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

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

+
 staging-i686/PKGBUILD  |   38 
 staging-i686/git-fixes.patch   | 8804 +++
 staging-x86_64/PKGBUILD|   38 
 staging-x86_64/git-fixes.patch | 8804 +++
 4 files changed, 17684 insertions(+)

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


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

2013-10-02 Thread Andreas Radke
Date: Wednesday, October 2, 2013 @ 21:32:45
  Author: andyrtr
Revision: 195864

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

Added:
  xf86-video-r128/repos/extra-i686/PKGBUILD
(from rev 195863, xf86-video-r128/trunk/PKGBUILD)
  xf86-video-r128/repos/extra-x86_64/PKGBUILD
(from rev 195863, xf86-video-r128/trunk/PKGBUILD)
Deleted:
  xf86-video-r128/repos/extra-i686/PKGBUILD
  xf86-video-r128/repos/extra-i686/no-mibstore.patch
  xf86-video-r128/repos/extra-x86_64/PKGBUILD
  xf86-video-r128/repos/extra-x86_64/no-mibstore.patch

+
 /PKGBUILD  |   64 +++
 extra-i686/PKGBUILD|   38 ---
 extra-i686/no-mibstore.patch   |   24 --
 extra-x86_64/PKGBUILD  |   38 ---
 extra-x86_64/no-mibstore.patch |   24 --
 5 files changed, 64 insertions(+), 124 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-02 19:32:25 UTC (rev 195863)
+++ extra-i686/PKGBUILD 2013-10-02 19:32:45 UTC (rev 195864)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-r128
-pkgver=6.9.1
-pkgrel=4
-pkgdesc="X.org ati Rage128 video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server<1.14.0' 'X-ABI-VIDEODRV_VERSION<14' 
'X-ABI-VIDEODRV_VERSION>=15')
-optdepends=('r128-dri: DRI1 support from community repo')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
-no-mibstore.patch)
-sha256sums=('8be3baa8d3b19e3a05f00a53bf35784e144dc2ad14c358f97870c072e634e44c'
-'6e4cbce4de6ff569f6d30a99f699ca44d4cb28e530e593f61578b4f97c1de13e')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -Np1 -i ../no-mibstore.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-r128/repos/extra-i686/PKGBUILD (from rev 195863, 
xf86-video-r128/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-02 19:32:45 UTC (rev 195864)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-r128
+pkgver=6.9.2
+pkgrel=1
+pkgdesc="X.org ati Rage128 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server<1.14.0' 'X-ABI-VIDEODRV_VERSION<14' 
'X-ABI-VIDEODRV_VERSION>=15')
+optdepends=('r128-dri: DRI1 support from community repo')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('8b2d295f1842d07304a75da1cfb9bf139b320a6539970eaf8d5ecc010cd36ee0')
+
+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}/"
+}

Deleted: extra-i686/no-mibstore.patch
===
--- extra-i686/no-mibstore.patch2013-10-02 19:32:25 UTC (rev 195863)
+++ extra-i686/no-mibstore.patch2013-10-02 19:32:45 UTC (rev 195864)
@@ -1,24 +0,0 @@
-From 24f28a78fdcd056357f137650ca7f0f01c257d97 Mon Sep 17 00:00:00 2001
-From: Connor Behan 
-Date: Wed, 19 Dec 2012 18:41:14 +
-Subject: Remove call to obsolete miInitializeBackingStore()
-
-Definition was deleted from Xorg during 1.14 merge window, but has been
-a no-op since 1.10 merge window.
-
-Signed-off-by: Connor Behan 

-diff --git a/src/r128_driver.c b/src/r128_driver.c
-index a062a60..f47c7e3 100644
 a/src/r128_driver.c
-+++ b/src/r128_driver.c
-@@ -2701,7 +2701,6 @@ Bool R128ScreenInit(SCREEN_INIT_ARGS_DECL)
- R128DGAInit(pScreen);
- 
-   /* Backing store setup */
--miInitializeBackingStore(pScreen);
- xf86SetBackingStore(pScreen);
- 
-   /* Set Silken Mouse */
---
-cgit v0.9.0.2-2-gbebe

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-02 19:32:25 UTC (rev 195863)
+++ extra-x86_64/PKGBUILD   2013-10-02 19:32:45 UTC (rev 195864)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=

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

2013-07-29 Thread Jan de Groot
Date: Monday, July 29, 2013 @ 21:57:36
  Author: jgc
Revision: 191734

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

Added:
  xf86-video-r128/repos/extra-i686/PKGBUILD
(from rev 191733, xf86-video-r128/trunk/PKGBUILD)
  xf86-video-r128/repos/extra-i686/no-mibstore.patch
(from rev 191733, xf86-video-r128/trunk/no-mibstore.patch)
  xf86-video-r128/repos/extra-x86_64/PKGBUILD
(from rev 191733, xf86-video-r128/trunk/PKGBUILD)
  xf86-video-r128/repos/extra-x86_64/no-mibstore.patch
(from rev 191733, xf86-video-r128/trunk/no-mibstore.patch)
Deleted:
  xf86-video-r128/repos/extra-i686/PKGBUILD
  xf86-video-r128/repos/extra-x86_64/PKGBUILD

+
 /PKGBUILD  |   76 +++
 extra-i686/PKGBUILD|   32 
 extra-i686/no-mibstore.patch   |   24 
 extra-x86_64/PKGBUILD  |   32 
 extra-x86_64/no-mibstore.patch |   24 
 5 files changed, 124 insertions(+), 64 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-29 19:57:30 UTC (rev 191733)
+++ extra-i686/PKGBUILD 2013-07-29 19:57:36 UTC (rev 191734)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-r128
-pkgver=6.9.1
-pkgrel=3
-pkgdesc="X.org ati Rage128 video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server<1.14.0' 'X-ABI-VIDEODRV_VERSION<14' 
'X-ABI-VIDEODRV_VERSION>=15')
-optdepends=('r128-dri: DRI1 support from community repo')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('8be3baa8d3b19e3a05f00a53bf35784e144dc2ad14c358f97870c072e634e44c')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${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-r128/repos/extra-i686/PKGBUILD (from rev 191733, 
xf86-video-r128/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-29 19:57:36 UTC (rev 191734)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-r128
+pkgver=6.9.1
+pkgrel=4
+pkgdesc="X.org ati Rage128 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server<1.14.0' 'X-ABI-VIDEODRV_VERSION<14' 
'X-ABI-VIDEODRV_VERSION>=15')
+optdepends=('r128-dri: DRI1 support from community repo')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
+no-mibstore.patch)
+sha256sums=('8be3baa8d3b19e3a05f00a53bf35784e144dc2ad14c358f97870c072e634e44c'
+'6e4cbce4de6ff569f6d30a99f699ca44d4cb28e530e593f61578b4f97c1de13e')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ../no-mibstore.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-r128/repos/extra-i686/no-mibstore.patch (from rev 191733, 
xf86-video-r128/trunk/no-mibstore.patch)
===
--- extra-i686/no-mibstore.patch(rev 0)
+++ extra-i686/no-mibstore.patch2013-07-29 19:57:36 UTC (rev 191734)
@@ -0,0 +1,24 @@
+From 24f28a78fdcd056357f137650ca7f0f01c257d97 Mon Sep 17 00:00:00 2001
+From: Connor Behan 
+Date: Wed, 19 Dec 2012 18:41:14 +
+Subject: Remove call to obsolete miInitializeBackingStore()
+
+Definition was deleted from Xorg during 1.14 merge window, but has been
+a no-op since 1.10 merge window.
+
+Signed-off-by: Connor Behan 
+---
+diff --git a/src/r128_driver.c b/src/r128_driver.c
+index a062a60..f47c7e3 100644
+--- a/src/r128_driver.c
 b/src/r128_driver.c
+@@ -2701,7 +2701,6 @@ Bool R128ScreenInit(SCREEN_INIT_ARGS_DECL)
+ R128DGAInit(pScreen);
+ 
+   /* Backing store setup */
+-miInitializeBackingStore(pScreen);
+ xf86SetBackingStore(pScreen);
+ 
+   /* Set Silken Mouse */
+--
+cgit v0.9.0.2-2-gbebe

Deleted: extra-x86_64/PKGBUILD
===
--- 

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

2012-10-13 Thread andyrtr
Date: Saturday, October 13, 2012 @ 07:45:27
  Author: andyrtr
Revision: 168582

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

Added:
  xf86-video-r128/repos/extra-i686/PKGBUILD
(from rev 168549, xf86-video-r128/repos/testing-i686/PKGBUILD)
  xf86-video-r128/repos/extra-x86_64/PKGBUILD
(from rev 168549, xf86-video-r128/repos/testing-x86_64/PKGBUILD)
Deleted:
  xf86-video-r128/repos/extra-i686/PKGBUILD
  xf86-video-r128/repos/extra-x86_64/PKGBUILD
  xf86-video-r128/repos/testing-i686/
  xf86-video-r128/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   64 
 extra-x86_64/PKGBUILD |   64 
 2 files changed, 64 insertions(+), 64 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-13 11:45:24 UTC (rev 168581)
+++ extra-i686/PKGBUILD 2012-10-13 11:45:27 UTC (rev 168582)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-r128
-pkgver=6.9.1
-pkgrel=1
-pkgdesc="X.org ati Rage128 video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
-optdepends=('r128-dri: DRI1 support from community repo')
-conflicts=('xorg-server<1.12.0')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('8be3baa8d3b19e3a05f00a53bf35784e144dc2ad14c358f97870c072e634e44c')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${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-r128/repos/extra-i686/PKGBUILD (from rev 168549, 
xf86-video-r128/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-13 11:45:27 UTC (rev 168582)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-r128
+pkgver=6.9.1
+pkgrel=2
+pkgdesc="X.org ati Rage128 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server<1.13.0' 'X-ABI-VIDEODRV_VERSION<13' 
'X-ABI-VIDEODRV_VERSION>=14')
+optdepends=('r128-dri: DRI1 support from community repo')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('8be3baa8d3b19e3a05f00a53bf35784e144dc2ad14c358f97870c072e634e44c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-13 11:45:24 UTC (rev 168581)
+++ extra-x86_64/PKGBUILD   2012-10-13 11:45:27 UTC (rev 168582)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-r128
-pkgver=6.9.1
-pkgrel=1
-pkgdesc="X.org ati Rage128 video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel>=1.12.0' 'libdrm' 'xf86driproto' 'mesa')
-optdepends=('r128-dri: DRI1 support from community repo')
-conflicts=('xorg-server<1.12.0')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('8be3baa8d3b19e3a05f00a53bf35784e144dc2ad14c358f97870c072e634e44c')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${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-r128/repos/extra-x86_64/PKGBUILD (from rev 168549, 
xf86-video-r128/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-10-13 11:45:27 UTC (rev 168582)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-r128
+pkgver=6.9.1
+pkgrel=2
+pkgdesc="X.org ati Rage128 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends

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

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

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

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

-+
 testing-i686/PKGBUILD   |   32 
 testing-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: xf86-video-r128/repos/testing-i686/PKGBUILD (from rev 168199, 
xf86-video-r128/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-06 20:07:55 UTC (rev 168234)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-r128
+pkgver=6.9.1
+pkgrel=2
+pkgdesc="X.org ati Rage128 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server<1.13.0' 'X-ABI-VIDEODRV_VERSION<13' 
'X-ABI-VIDEODRV_VERSION>=14')
+optdepends=('r128-dri: DRI1 support from community repo')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('8be3baa8d3b19e3a05f00a53bf35784e144dc2ad14c358f97870c072e634e44c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${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-r128/repos/testing-x86_64/PKGBUILD (from rev 168199, 
xf86-video-r128/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-10-06 20:07:55 UTC (rev 168234)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-r128
+pkgver=6.9.1
+pkgrel=2
+pkgdesc="X.org ati Rage128 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server<1.13.0' 'X-ABI-VIDEODRV_VERSION<13' 
'X-ABI-VIDEODRV_VERSION>=14')
+optdepends=('r128-dri: DRI1 support from community repo')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('8be3baa8d3b19e3a05f00a53bf35784e144dc2ad14c358f97870c072e634e44c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2012-03-24 Thread Jan de Groot
Date: Saturday, March 24, 2012 @ 06:22:27
  Author: jgc
Revision: 154210

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

Added:
  xf86-video-r128/repos/extra-i686/PKGBUILD
(from rev 154209, xf86-video-r128/trunk/PKGBUILD)
  xf86-video-r128/repos/extra-x86_64/PKGBUILD
(from rev 154209, xf86-video-r128/trunk/PKGBUILD)
Deleted:
  xf86-video-r128/repos/extra-i686/PKGBUILD
  xf86-video-r128/repos/extra-i686/git-fixes.patch
  xf86-video-r128/repos/extra-x86_64/PKGBUILD
  xf86-video-r128/repos/extra-x86_64/git-fixes.patch

--+
 extra-i686/PKGBUILD  |   67 +--
 extra-i686/git-fixes.patch   |  842 -
 extra-x86_64/PKGBUILD|   67 +--
 extra-x86_64/git-fixes.patch |  842 -
 4 files changed, 62 insertions(+), 1756 deletions(-)

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


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

2012-02-11 Thread andyrtr
Date: Saturday, February 11, 2012 @ 06:05:08
  Author: andyrtr
Revision: 149866

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

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

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

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


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

2011-08-29 Thread Jan de Groot
Date: Monday, August 29, 2011 @ 04:48:55
  Author: jgc
Revision: 136428

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

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

+
 staging-i686/PKGBUILD  |   32 +
 staging-i686/git-fixes.patch   |  842 +++
 staging-x86_64/PKGBUILD|   32 +
 staging-x86_64/git-fixes.patch |  842 +++
 4 files changed, 1748 insertions(+)

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