[arch-commits] Commit in xf86-input-acecad/trunk (PKGBUILD)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:05:18
  Author: andyrtr
Revision: 148589

upgpkg: xf86-input-acecad 1.5.0-3

Xorg 1.12 rebuild

Modified:
  xf86-input-acecad/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 06:45:28 UTC (rev 148588)
+++ PKGBUILD2012-02-04 10:05:18 UTC (rev 148589)
@@ -3,14 +3,14 @@
 
 pkgname=xf86-input-acecad
 pkgver=1.5.0
-pkgrel=2
+pkgrel=3
 pkgdesc=X.Org acecad tablet input driver
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
 depends=('sysfsutils')
-makedepends=('xorg-server-devel=1.10.99.902')
-conflicts=('xorg-server1.10.99.902')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
 options=('!libtool')
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2



[arch-commits] Commit in xf86-input-acecad/repos (6 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:05:48
  Author: andyrtr
Revision: 148590

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

Added:
  xf86-input-acecad/repos/staging-i686/
  xf86-input-acecad/repos/staging-i686/PKGBUILD
(from rev 148589, xf86-input-acecad/trunk/PKGBUILD)
  
xf86-input-acecad/repos/staging-i686/assign-local-private-after-allocating.patch
(from rev 148589, 
xf86-input-acecad/trunk/assign-local-private-after-allocating.patch)
  xf86-input-acecad/repos/staging-x86_64/
  xf86-input-acecad/repos/staging-x86_64/PKGBUILD
(from rev 148589, xf86-input-acecad/trunk/PKGBUILD)
  
xf86-input-acecad/repos/staging-x86_64/assign-local-private-after-allocating.patch
(from rev 148589, 
xf86-input-acecad/trunk/assign-local-private-after-allocating.patch)

+
 staging-i686/PKGBUILD  |   35 +++
 staging-i686/assign-local-private-after-allocating.patch   |   24 +++
 staging-x86_64/PKGBUILD|   35 +++
 staging-x86_64/assign-local-private-after-allocating.patch |   24 +++
 4 files changed, 118 insertions(+)

Copied: xf86-input-acecad/repos/staging-i686/PKGBUILD (from rev 148589, 
xf86-input-acecad/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-02-04 10:05:48 UTC (rev 148590)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-acecad
+pkgver=1.5.0
+pkgrel=3
+pkgdesc=X.Org acecad tablet input driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('sysfsutils')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
+assign-local-private-after-allocating.patch)
+sha1sums=('410cee68e4435dc95774fb389fcefae1b2ffe3d1'
+  '9301020b0ef3c6f2081e957481a88d2e187a7973')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/assign-local-private-after-allocating.patch
+  ./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-input-acecad/repos/staging-i686/assign-local-private-after-allocating.patch
 (from rev 148589, 
xf86-input-acecad/trunk/assign-local-private-after-allocating.patch)
===
--- staging-i686/assign-local-private-after-allocating.patch
(rev 0)
+++ staging-i686/assign-local-private-after-allocating.patch2012-02-04 
10:05:48 UTC (rev 148590)
@@ -0,0 +1,24 @@
+From ec2c4ead497133ef20d5ef5a9b481b38e1e0f7a2 Mon Sep 17 00:00:00 2001
+From: Peter Hutterer peter.hutte...@who-t.net
+Date: Mon, 27 Jun 2011 03:13:54 +
+Subject: Assign local-private after allocating.
+
+It is detrimental to the user experience when the driver tries to derefernce
+null pointers.
+
+Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
+---
+diff --git a/src/acecad.c b/src/acecad.c
+index ad6d793..604fe91 100644
+--- a/src/acecad.c
 b/src/acecad.c
+@@ -343,6 +343,7 @@ AceCadPreInit(InputDriverPtr drv, InputInfoPtr local, int 
flags)
+ return BadAlloc;
+ 
+ memset(priv, 0, sizeof(AceCadPrivateRec));
++local-private = priv;
+ 
+ local-device_control = DeviceControl;
+ 
+--
+cgit v0.8.3-6-g21f6

Copied: xf86-input-acecad/repos/staging-x86_64/PKGBUILD (from rev 148589, 
xf86-input-acecad/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-02-04 10:05:48 UTC (rev 148590)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-acecad
+pkgver=1.5.0
+pkgrel=3
+pkgdesc=X.Org acecad tablet input driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('sysfsutils')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
+assign-local-private-after-allocating.patch)
+sha1sums=('410cee68e4435dc95774fb389fcefae1b2ffe3d1'
+  '9301020b0ef3c6f2081e957481a88d2e187a7973')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/assign-local-private-after-allocating.patch
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d 

[arch-commits] Commit in xf86-input-aiptek/trunk (PKGBUILD)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:06:58
  Author: andyrtr
Revision: 148591

upgpkg: xf86-input-aiptek 1.4.1-3

Xorg 1.12 rebuild

Modified:
  xf86-input-aiptek/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 10:05:48 UTC (rev 148590)
+++ PKGBUILD2012-02-04 10:06:58 UTC (rev 148591)
@@ -3,14 +3,14 @@
 
 pkgname=xf86-input-aiptek
 pkgver=1.4.1
-pkgrel=2
+pkgrel=3
 pkgdesc=X.Org Aiptek USB Digital Tablet input driver
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
 depends=('glibc')
-makedepends=('pkgconfig' 'xorg-server-devel=1.10.99.902')
-conflicts=('xorg-server1.10.99.902')
+makedepends=('pkgconfig' 'xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
 options=('!libtool')
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)



[arch-commits] Commit in xf86-input-aiptek/repos (4 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:07:28
  Author: andyrtr
Revision: 148592

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

Added:
  xf86-input-aiptek/repos/staging-i686/
  xf86-input-aiptek/repos/staging-i686/PKGBUILD
(from rev 148591, xf86-input-aiptek/trunk/PKGBUILD)
  xf86-input-aiptek/repos/staging-x86_64/
  xf86-input-aiptek/repos/staging-x86_64/PKGBUILD
(from rev 148591, xf86-input-aiptek/trunk/PKGBUILD)

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

Copied: xf86-input-aiptek/repos/staging-i686/PKGBUILD (from rev 148591, 
xf86-input-aiptek/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-02-04 10:07:28 UTC (rev 148592)
@@ -0,0 +1,32 @@
+# $Id$
+#Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-aiptek
+pkgver=1.4.1
+pkgrel=3
+pkgdesc=X.Org Aiptek USB Digital Tablet input driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('pkgconfig' 'xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('55ea7d12d3e24fd72eacc966a59262864dce7769')
+
+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-input-aiptek/repos/staging-x86_64/PKGBUILD (from rev 148591, 
xf86-input-aiptek/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-02-04 10:07:28 UTC (rev 148592)
@@ -0,0 +1,32 @@
+# $Id$
+#Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-aiptek
+pkgver=1.4.1
+pkgrel=3
+pkgdesc=X.Org Aiptek USB Digital Tablet input driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('pkgconfig' 'xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('55ea7d12d3e24fd72eacc966a59262864dce7769')
+
+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-input-evdev/trunk (PKGBUILD)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:09:48
  Author: andyrtr
Revision: 148593

upgpkg: xf86-input-evdev 2.6.99.901-1

Xorg 1.12 rebuild; upstream prerelease 2.6.99.901

Modified:
  xf86-input-evdev/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 10:07:28 UTC (rev 148592)
+++ PKGBUILD2012-02-04 10:09:48 UTC (rev 148593)
@@ -3,19 +3,19 @@
 # Contributor: Alexander Baldeck alexan...@archlinux.org
 
 pkgname=xf86-input-evdev
-pkgver=2.6.0
-pkgrel=4
+pkgver=2.6.99.901
+pkgrel=1
 pkgdesc=X.org evdev input driver
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
 depends=('glibc')
-makedepends=('xorg-server-devel=1.10.99.902')
-conflicts=('xorg-server1.10.99.902')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
 options=('!libtool' '!makeflags')
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('fb6f7a6f5168ae07efe890e4ace9fb8af1d4e1e0')
+sha1sums=('fb978b06cfb7a6a6b99dc9f9bca4362abdf79f20')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in xf86-input-evdev/repos (4 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:10:18
  Author: andyrtr
Revision: 148594

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

Added:
  xf86-input-evdev/repos/staging-i686/
  xf86-input-evdev/repos/staging-i686/PKGBUILD
(from rev 148593, xf86-input-evdev/trunk/PKGBUILD)
  xf86-input-evdev/repos/staging-x86_64/
  xf86-input-evdev/repos/staging-x86_64/PKGBUILD
(from rev 148593, xf86-input-evdev/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   31 +++
 staging-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: xf86-input-evdev/repos/staging-i686/PKGBUILD (from rev 148593, 
xf86-input-evdev/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-02-04 10:10:18 UTC (rev 148594)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Alexander Baldeck alexan...@archlinux.org
+
+pkgname=xf86-input-evdev
+pkgver=2.6.99.901
+pkgrel=1
+pkgdesc=X.org evdev input driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool' '!makeflags')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('fb978b06cfb7a6a6b99dc9f9bca4362abdf79f20')
+
+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-input-evdev/repos/staging-x86_64/PKGBUILD (from rev 148593, 
xf86-input-evdev/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-02-04 10:10:18 UTC (rev 148594)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Alexander Baldeck alexan...@archlinux.org
+
+pkgname=xf86-input-evdev
+pkgver=2.6.99.901
+pkgrel=1
+pkgdesc=X.org evdev input driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool' '!makeflags')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('fb978b06cfb7a6a6b99dc9f9bca4362abdf79f20')
+
+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-input-joystick/trunk (PKGBUILD)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:12:56
  Author: andyrtr
Revision: 148595

upgpkg: xf86-input-joystick 1.6.0-4

Xorg 1.12 rebuild

Modified:
  xf86-input-joystick/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 10:10:18 UTC (rev 148594)
+++ PKGBUILD2012-02-04 10:12:56 UTC (rev 148595)
@@ -3,14 +3,14 @@
 
 pkgname=xf86-input-joystick
 pkgver=1.6.0
-pkgrel=3
+pkgrel=4
 pkgdesc=X.Org Joystick input driver
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
 depends=('glibc')
-makedepends=('xorg-server-devel=1.11.0')
-conflicts=('xorg-server1.11.0')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
 groups=('xorg-drivers' 'xorg')
 options=('!libtool')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2



[arch-commits] Commit in xf86-input-joystick/repos (8 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:13:30
  Author: andyrtr
Revision: 148596

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

Added:
  xf86-input-joystick/repos/staging-i686/
  xf86-input-joystick/repos/staging-i686/50-joystick.conf
(from rev 148595, xf86-input-joystick/trunk/50-joystick.conf)
  xf86-input-joystick/repos/staging-i686/PKGBUILD
(from rev 148595, xf86-input-joystick/trunk/PKGBUILD)
  xf86-input-joystick/repos/staging-i686/git-fixes.patch
(from rev 148595, xf86-input-joystick/trunk/git-fixes.patch)
  xf86-input-joystick/repos/staging-x86_64/
  xf86-input-joystick/repos/staging-x86_64/50-joystick.conf
(from rev 148595, xf86-input-joystick/trunk/50-joystick.conf)
  xf86-input-joystick/repos/staging-x86_64/PKGBUILD
(from rev 148595, xf86-input-joystick/trunk/PKGBUILD)
  xf86-input-joystick/repos/staging-x86_64/git-fixes.patch
(from rev 148595, xf86-input-joystick/trunk/git-fixes.patch)

-+
 staging-i686/50-joystick.conf   |6 
 staging-i686/PKGBUILD   |   40 +++
 staging-i686/git-fixes.patch|  399 ++
 staging-x86_64/50-joystick.conf |6 
 staging-x86_64/PKGBUILD |   40 +++
 staging-x86_64/git-fixes.patch  |  399 ++
 6 files changed, 890 insertions(+)

Copied: xf86-input-joystick/repos/staging-i686/50-joystick.conf (from rev 
148595, xf86-input-joystick/trunk/50-joystick.conf)
===
--- staging-i686/50-joystick.conf   (rev 0)
+++ staging-i686/50-joystick.conf   2012-02-04 10:13:30 UTC (rev 148596)
@@ -0,0 +1,6 @@
+Section InputClass
+   Identifier joystick catchall
+   MatchIsJoystick on
+   MatchDevicePath /dev/input/event*
+   Driver joystick
+EndSection

Copied: xf86-input-joystick/repos/staging-i686/PKGBUILD (from rev 148595, 
xf86-input-joystick/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-02-04 10:13:30 UTC (rev 148596)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-joystick
+pkgver=1.6.0
+pkgrel=4
+pkgdesc=X.Org Joystick input driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
+git-fixes.patch
+50-joystick.conf)
+sha1sums=('3b9aed1b8128e1fbd947fdcdd5e16efccad1c780'
+  '7812a34013a2333641bd7c5d044c46179490cb32'
+  'e1ff3699a0470c6bb78a53f718df9d8521621e11')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/git-fixes.patch
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/etc/X11/xorg.conf.d
+  install -m644 ${srcdir}/50-joystick.conf ${pkgdir}/etc/X11/xorg.conf.d/
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-input-joystick/repos/staging-i686/git-fixes.patch (from rev 
148595, xf86-input-joystick/trunk/git-fixes.patch)
===
--- staging-i686/git-fixes.patch(rev 0)
+++ staging-i686/git-fixes.patch2012-02-04 10:13:30 UTC (rev 148596)
@@ -0,0 +1,399 @@
+From 204dcb86368b011824fc5006f87b9e394d03a394 Mon Sep 17 00:00:00 2001
+From: Terry Lambert tlamb...@chromium.org
+Date: Sat, 16 Jul 2011 00:23:22 +
+Subject: Return proper default for unknown values in pInfo-device_control.
+
+Signed-off-by: Terry Lambert tlamb...@chromium.org
+Reviewed-by: Stephane Marchesin marc...@chromium.org
+Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
+---
+diff --git a/src/jstk.c b/src/jstk.c
+index ec6b79a..6db0e7c 100644
+--- a/src/jstk.c
 b/src/jstk.c
+@@ -419,8 +419,7 @@ jstkDeviceControlProc(DeviceIntPtr   pJstk,
+ 
+ default:
+ ErrorF(unsupported mode=%d\n, what);
+-return !Success;
+-break;
++return BadValue;
+ } /* switch (what) */
+ return Success;
+ }
+diff --git a/src/jstk_key.c b/src/jstk_key.c
+index 3c471ce..d699dcd 100644
+--- a/src/jstk_key.c
 b/src/jstk_key.c
+@@ -169,6 +169,8 @@ jstkKeyboardDeviceControlProc(DeviceIntPtr   dev,
+ DBG(2, ErrorF(jstkKeyboardDeviceControlProc what=DEVICE_CLOSE\n));
+ dev-public.on = FALSE;
+ break;
++default:
++return BadValue;
+ }
+ 
+ return Success;
+--
+cgit v0.9.0.2-2-gbebe
+From b3b62328cf3f36c20c54a298f8a921e6eef42c4d Mon Sep 17 00:00:00 2001
+From: Devin J. Pohly 

[arch-commits] Commit in xf86-input-keyboard/trunk (PKGBUILD)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:16:11
  Author: andyrtr
Revision: 148597

upgpkg: xf86-input-keyboard 1.6.1-1

upstream update 1.6.1

Modified:
  xf86-input-keyboard/trunk/PKGBUILD

--+
 PKGBUILD |   10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 10:13:30 UTC (rev 148596)
+++ PKGBUILD2012-02-04 10:16:11 UTC (rev 148597)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xf86-input-keyboard
-pkgver=1.6.0
-pkgrel=3
+pkgver=1.6.1
+pkgrel=1
 pkgdesc=X.Org keyboard input driver
 arch=(i686 x86_64)
 license=('custom')
@@ -14,12 +14,16 @@
 options=('!libtool')
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('8e845086749f8c4b64fdfa852b4b26cf7bb62dc9')
+sha1sums=('ef30fecb9e846a5268ae339846401489a785e413')
 
 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-input-keyboard/repos (4 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:16:48
  Author: andyrtr
Revision: 148598

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

Added:
  xf86-input-keyboard/repos/extra-i686/PKGBUILD
(from rev 148597, xf86-input-keyboard/trunk/PKGBUILD)
  xf86-input-keyboard/repos/extra-x86_64/PKGBUILD
(from rev 148597, xf86-input-keyboard/trunk/PKGBUILD)
Deleted:
  xf86-input-keyboard/repos/extra-i686/PKGBUILD
  xf86-input-keyboard/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-02-04 10:16:11 UTC (rev 148597)
+++ extra-i686/PKGBUILD 2012-02-04 10:16:48 UTC (rev 148598)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-input-keyboard
-pkgver=1.6.0
-pkgrel=3
-pkgdesc=X.Org keyboard input driver
-arch=(i686 x86_64)
-license=('custom')
-url=http://xorg.freedesktop.org/;
-depends=('glibc')
-makedepends=('xorg-server-devel=1.10.99.902')
-conflicts=('xorg-server1.10.99.902')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('8e845086749f8c4b64fdfa852b4b26cf7bb62dc9')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-input-keyboard/repos/extra-i686/PKGBUILD (from rev 148597, 
xf86-input-keyboard/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-02-04 10:16:48 UTC (rev 148598)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-keyboard
+pkgver=1.6.1
+pkgrel=1
+pkgdesc=X.Org keyboard input driver
+arch=(i686 x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xorg-server-devel=1.10.99.902')
+conflicts=('xorg-server1.10.99.902')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('ef30fecb9e846a5268ae339846401489a785e413')
+
+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-02-04 10:16:11 UTC (rev 148597)
+++ extra-x86_64/PKGBUILD   2012-02-04 10:16:48 UTC (rev 148598)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-input-keyboard
-pkgver=1.6.0
-pkgrel=3
-pkgdesc=X.Org keyboard input driver
-arch=(i686 x86_64)
-license=('custom')
-url=http://xorg.freedesktop.org/;
-depends=('glibc')
-makedepends=('xorg-server-devel=1.10.99.902')
-conflicts=('xorg-server1.10.99.902')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('8e845086749f8c4b64fdfa852b4b26cf7bb62dc9')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-input-keyboard/repos/extra-x86_64/PKGBUILD (from rev 148597, 
xf86-input-keyboard/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-02-04 10:16:48 UTC (rev 148598)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-keyboard
+pkgver=1.6.1
+pkgrel=1
+pkgdesc=X.Org keyboard input driver
+arch=(i686 x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xorg-server-devel=1.10.99.902')
+conflicts=('xorg-server1.10.99.902')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('ef30fecb9e846a5268ae339846401489a785e413')
+
+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-input-keyboard/trunk (PKGBUILD)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:17:46
  Author: andyrtr
Revision: 148599

upgpkg: xf86-input-keyboard 1.6.1-2

Xorg 1.12 rebuild

Modified:
  xf86-input-keyboard/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 10:16:48 UTC (rev 148598)
+++ PKGBUILD2012-02-04 10:17:46 UTC (rev 148599)
@@ -3,14 +3,14 @@
 
 pkgname=xf86-input-keyboard
 pkgver=1.6.1
-pkgrel=1
+pkgrel=2
 pkgdesc=X.Org keyboard input driver
 arch=(i686 x86_64)
 license=('custom')
 url=http://xorg.freedesktop.org/;
 depends=('glibc')
-makedepends=('xorg-server-devel=1.10.99.902')
-conflicts=('xorg-server1.10.99.902')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
 options=('!libtool')
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)



[arch-commits] Commit in xf86-input-keyboard/repos (4 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:18:16
  Author: andyrtr
Revision: 148600

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

Added:
  xf86-input-keyboard/repos/staging-i686/
  xf86-input-keyboard/repos/staging-i686/PKGBUILD
(from rev 148599, xf86-input-keyboard/trunk/PKGBUILD)
  xf86-input-keyboard/repos/staging-x86_64/
  xf86-input-keyboard/repos/staging-x86_64/PKGBUILD
(from rev 148599, xf86-input-keyboard/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   30 ++
 staging-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: xf86-input-keyboard/repos/staging-i686/PKGBUILD (from rev 148599, 
xf86-input-keyboard/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-02-04 10:18:16 UTC (rev 148600)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-keyboard
+pkgver=1.6.1
+pkgrel=2
+pkgdesc=X.Org keyboard input driver
+arch=(i686 x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('ef30fecb9e846a5268ae339846401489a785e413')
+
+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-input-keyboard/repos/staging-x86_64/PKGBUILD (from rev 148599, 
xf86-input-keyboard/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-02-04 10:18:16 UTC (rev 148600)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-keyboard
+pkgver=1.6.1
+pkgrel=2
+pkgdesc=X.Org keyboard input driver
+arch=(i686 x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('ef30fecb9e846a5268ae339846401489a785e413')
+
+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-input-void/trunk (PKGBUILD)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:29:12
  Author: andyrtr
Revision: 148601

upgpkg: xf86-input-void 1.4.0-3

Xorg 1.12 rebuild

Modified:
  xf86-input-void/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 10:18:16 UTC (rev 148600)
+++ PKGBUILD2012-02-04 10:29:12 UTC (rev 148601)
@@ -3,14 +3,14 @@
 
 pkgname=xf86-input-void
 pkgver=1.4.0
-pkgrel=2
+pkgrel=3
 pkgdesc=X.org void input driver
 arch=(i686 x86_64)
 license=('custom')
 url=http://xorg.freedesktop.org/;
 depends=('glibc')
-makedepends=('xorg-server-devel=1.10.99.902')
-conflicts=('xorg-server1.10.99.902')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
 groups=('xorg-drivers' 'xorg')
 options=('!libtool')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)



[arch-commits] Commit in xf86-input-void/repos (4 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:29:44
  Author: andyrtr
Revision: 148602

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

Added:
  xf86-input-void/repos/staging-i686/
  xf86-input-void/repos/staging-i686/PKGBUILD
(from rev 148601, xf86-input-void/trunk/PKGBUILD)
  xf86-input-void/repos/staging-x86_64/
  xf86-input-void/repos/staging-x86_64/PKGBUILD
(from rev 148601, xf86-input-void/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   33 +
 staging-x86_64/PKGBUILD |   33 +
 2 files changed, 66 insertions(+)

Copied: xf86-input-void/repos/staging-i686/PKGBUILD (from rev 148601, 
xf86-input-void/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-02-04 10:29:44 UTC (rev 148602)
@@ -0,0 +1,33 @@
+# $Id$
+#Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-void
+pkgver=1.4.0
+pkgrel=3
+pkgdesc=X.org void input driver
+arch=(i686 x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('49b462d3acb16337eaf78202d4074f19d5e20b29')
+
+
+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-input-void/repos/staging-x86_64/PKGBUILD (from rev 148601, 
xf86-input-void/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-02-04 10:29:44 UTC (rev 148602)
@@ -0,0 +1,33 @@
+# $Id$
+#Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-void
+pkgver=1.4.0
+pkgrel=3
+pkgdesc=X.org void input driver
+arch=(i686 x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('49b462d3acb16337eaf78202d4074f19d5e20b29')
+
+
+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-input-wacom/trunk (PKGBUILD)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:31:53
  Author: andyrtr
Revision: 148603

upgpkg: xf86-input-wacom 0.13.0-2

Xorg 1.12 rebuild

Modified:
  xf86-input-wacom/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 10:29:44 UTC (rev 148602)
+++ PKGBUILD2012-02-04 10:31:53 UTC (rev 148603)
@@ -5,15 +5,15 @@
 
 pkgname=xf86-input-wacom
 pkgver=0.13.0
-pkgrel=1
+pkgrel=2
 pkgdesc=X.Org Wacom tablet driver
 arch=('i686' 'x86_64')
 url=http://linuxwacom.sourceforge.net/;
 license=('GPL')
 backup=('etc/X11/xorg.conf.d/50-wacom.conf')
 depends=('libxi' 'libxrandr' 'libxinerama')
-makedepends=('xorg-server-devel=1.11.0' 'libxext')
-conflicts=('xorg-server1.11.0')
+makedepends=('xorg-server-devel=1.11.99.902' 'libxext')
+conflicts=('xorg-server1.11.99.902')
 options=(!libtool)
 
source=(http://downloads.sourceforge.net/project/linuxwacom/${pkgname}/${pkgname}-${pkgver}.tar.bz2
 70-wacom.rules)



[arch-commits] Commit in xf86-input-wacom/repos (6 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 05:32:20
  Author: andyrtr
Revision: 148604

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

Added:
  xf86-input-wacom/repos/staging-i686/
  xf86-input-wacom/repos/staging-i686/70-wacom.rules
(from rev 148603, xf86-input-wacom/trunk/70-wacom.rules)
  xf86-input-wacom/repos/staging-i686/PKGBUILD
(from rev 148603, xf86-input-wacom/trunk/PKGBUILD)
  xf86-input-wacom/repos/staging-x86_64/
  xf86-input-wacom/repos/staging-x86_64/70-wacom.rules
(from rev 148603, xf86-input-wacom/trunk/70-wacom.rules)
  xf86-input-wacom/repos/staging-x86_64/PKGBUILD
(from rev 148603, xf86-input-wacom/trunk/PKGBUILD)

---+
 staging-i686/70-wacom.rules   |   12 
 staging-i686/PKGBUILD |   35 +++
 staging-x86_64/70-wacom.rules |   12 
 staging-x86_64/PKGBUILD   |   35 +++
 4 files changed, 94 insertions(+)

Copied: xf86-input-wacom/repos/staging-i686/70-wacom.rules (from rev 148603, 
xf86-input-wacom/trunk/70-wacom.rules)
===
--- staging-i686/70-wacom.rules (rev 0)
+++ staging-i686/70-wacom.rules 2012-02-04 10:32:20 UTC (rev 148604)
@@ -0,0 +1,12 @@
+ACTION!=add|change, GOTO=wacom_end
+
+# Match all serial wacom tablets with a serial ID starting with WACf
+# Notes: We assign NAME though we shouldn't, but currently the server requires 
it
+#We assign the lot to subsystem pnp too because server reads NAME from
+#the parent device. Once all that's fixed, as simple SUBSYSTEM=tty
+#will do and the ENV{NAME} can be removed.
+SUBSYSTEM==tty|pnp, SUBSYSTEMS==pnp, ATTRS{id}==WACf*, 
ENV{ID_MODEL}=Serial Wacom Tablet $attr{id}, ENV{ID_INPUT}=1, 
ENV{ID_INPUT_TABLET}=1, ENV{NAME}=Serial Wacom Tablet $attr{id}
+SUBSYSTEM==tty|pnp, SUBSYSTEMS==pnp, ATTRS{id}==FUJ*, 
ENV{ID_MODEL}=Serial Wacom Tablet $attr{id}, ENV{ID_INPUT}=1, 
ENV{ID_INPUT_TABLET}=1, ENV{NAME}=Serial Wacom Tablet $attr{id}
+
+LABEL=wacom_end
+

Copied: xf86-input-wacom/repos/staging-i686/PKGBUILD (from rev 148603, 
xf86-input-wacom/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-02-04 10:32:20 UTC (rev 148604)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: M Rawash mraw...@gmail.com
+
+pkgname=xf86-input-wacom
+pkgver=0.13.0
+pkgrel=2
+pkgdesc=X.Org Wacom tablet driver
+arch=('i686' 'x86_64')
+url=http://linuxwacom.sourceforge.net/;
+license=('GPL')
+backup=('etc/X11/xorg.conf.d/50-wacom.conf')
+depends=('libxi' 'libxrandr' 'libxinerama')
+makedepends=('xorg-server-devel=1.11.99.902' 'libxext')
+conflicts=('xorg-server1.11.99.902')
+options=(!libtool)
+source=(http://downloads.sourceforge.net/project/linuxwacom/${pkgname}/${pkgname}-${pkgver}.tar.bz2
+70-wacom.rules)
+md5sums=('4a426535989e84c4161e3607ea851654'
+ '10db4f8272286690255c1bcc18bfdd92')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-xorg-conf-dir=/etc/X11/xorg.conf.d
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/lib/udev/rules.d
+  install -m644 ${srcdir}/70-wacom.rules  ${pkgdir}/lib/udev/rules.d/
+}

Copied: xf86-input-wacom/repos/staging-x86_64/70-wacom.rules (from rev 148603, 
xf86-input-wacom/trunk/70-wacom.rules)
===
--- staging-x86_64/70-wacom.rules   (rev 0)
+++ staging-x86_64/70-wacom.rules   2012-02-04 10:32:20 UTC (rev 148604)
@@ -0,0 +1,12 @@
+ACTION!=add|change, GOTO=wacom_end
+
+# Match all serial wacom tablets with a serial ID starting with WACf
+# Notes: We assign NAME though we shouldn't, but currently the server requires 
it
+#We assign the lot to subsystem pnp too because server reads NAME from
+#the parent device. Once all that's fixed, as simple SUBSYSTEM=tty
+#will do and the ENV{NAME} can be removed.
+SUBSYSTEM==tty|pnp, SUBSYSTEMS==pnp, ATTRS{id}==WACf*, 
ENV{ID_MODEL}=Serial Wacom Tablet $attr{id}, ENV{ID_INPUT}=1, 
ENV{ID_INPUT_TABLET}=1, ENV{NAME}=Serial Wacom Tablet $attr{id}
+SUBSYSTEM==tty|pnp, SUBSYSTEMS==pnp, ATTRS{id}==FUJ*, 
ENV{ID_MODEL}=Serial Wacom Tablet $attr{id}, ENV{ID_INPUT}=1, 
ENV{ID_INPUT_TABLET}=1, ENV{NAME}=Serial Wacom Tablet $attr{id}
+
+LABEL=wacom_end
+

Copied: xf86-input-wacom/repos/staging-x86_64/PKGBUILD (from rev 148603, 
xf86-input-wacom/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-02-04 10:32:20 UTC (rev 148604)
@@ -0,0 +1,35 

[arch-commits] Commit in shared-mime-info/trunk (PKGBUILD)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 06:19:16
  Author: andyrtr
Revision: 148605

upgpkg: shared-mime-info 1.0-1

upstream update 1.0

Modified:
  shared-mime-info/trunk/PKGBUILD

--+
 PKGBUILD |9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 10:32:20 UTC (rev 148604)
+++ PKGBUILD2012-02-04 11:19:16 UTC (rev 148605)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=shared-mime-info
-pkgver=0.91
+pkgver=1.0
 pkgrel=1
 pkgdesc=Freedesktop.org Shared MIME Info
 arch=('i686' 'x86_64')
@@ -11,15 +11,12 @@
 makedepends=('intltool' 'pkgconfig')
 install=shared-mime-info.install
 url=http://freedesktop.org/Software/shared-mime-info;
-source=(http://freedesktop.org/~hadess/${pkgname}-${pkgver}.tar.xz
-pbm.patch)
-md5sums=('982a211560ba4c47dc791ccff34e8fbc'
- '3ec0e21a746f75a890716eb83d73e754')
+source=(http://freedesktop.org/~hadess/${pkgname}-${pkgver}.tar.xz)
+md5sums=('901b7977dbb2b71d12d30d4d8fb97028')
 options=(!makeflags)
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/pbm.patch
   ./configure --prefix=/usr --disable-update-mimedb
   make
 }



[arch-commits] Commit in shared-mime-info/repos (12 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 06:19:59
  Author: andyrtr
Revision: 148606

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

Added:
  shared-mime-info/repos/extra-i686/PKGBUILD
(from rev 148605, shared-mime-info/trunk/PKGBUILD)
  shared-mime-info/repos/extra-i686/pbm.patch
(from rev 148605, shared-mime-info/trunk/pbm.patch)
  shared-mime-info/repos/extra-i686/shared-mime-info.install
(from rev 148605, shared-mime-info/trunk/shared-mime-info.install)
  shared-mime-info/repos/extra-x86_64/PKGBUILD
(from rev 148605, shared-mime-info/trunk/PKGBUILD)
  shared-mime-info/repos/extra-x86_64/pbm.patch
(from rev 148605, shared-mime-info/trunk/pbm.patch)
  shared-mime-info/repos/extra-x86_64/shared-mime-info.install
(from rev 148605, shared-mime-info/trunk/shared-mime-info.install)
Deleted:
  shared-mime-info/repos/extra-i686/PKGBUILD
  shared-mime-info/repos/extra-i686/pbm.patch
  shared-mime-info/repos/extra-i686/shared-mime-info.install
  shared-mime-info/repos/extra-x86_64/PKGBUILD
  shared-mime-info/repos/extra-x86_64/pbm.patch
  shared-mime-info/repos/extra-x86_64/shared-mime-info.install

---+
 extra-i686/PKGBUILD   |   57 ++---
 extra-i686/pbm.patch  |   84 
 extra-i686/shared-mime-info.install   |   30 +--
 extra-x86_64/PKGBUILD |   57 ++---
 extra-x86_64/pbm.patch|   84 
 extra-x86_64/shared-mime-info.install |   30 +--
 6 files changed, 168 insertions(+), 174 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-02-04 11:19:16 UTC (rev 148605)
+++ extra-i686/PKGBUILD 2012-02-04 11:19:59 UTC (rev 148606)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=shared-mime-info
-pkgver=0.91
-pkgrel=1
-pkgdesc=Freedesktop.org Shared MIME Info
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libxml2' 'glib2')
-makedepends=('intltool' 'pkgconfig')
-install=shared-mime-info.install
-url=http://freedesktop.org/Software/shared-mime-info;
-source=(http://freedesktop.org/~hadess/${pkgname}-${pkgver}.tar.xz
-pbm.patch)
-md5sums=('982a211560ba4c47dc791ccff34e8fbc'
- '3ec0e21a746f75a890716eb83d73e754')
-options=(!makeflags)
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/pbm.patch
-  ./configure --prefix=/usr --disable-update-mimedb
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: shared-mime-info/repos/extra-i686/PKGBUILD (from rev 148605, 
shared-mime-info/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-02-04 11:19:59 UTC (rev 148606)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=shared-mime-info
+pkgver=1.0
+pkgrel=1
+pkgdesc=Freedesktop.org Shared MIME Info
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libxml2' 'glib2')
+makedepends=('intltool' 'pkgconfig')
+install=shared-mime-info.install
+url=http://freedesktop.org/Software/shared-mime-info;
+source=(http://freedesktop.org/~hadess/${pkgname}-${pkgver}.tar.xz)
+md5sums=('901b7977dbb2b71d12d30d4d8fb97028')
+options=(!makeflags)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-update-mimedb
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/pbm.patch
===
--- extra-i686/pbm.patch2012-02-04 11:19:16 UTC (rev 148605)
+++ extra-i686/pbm.patch2012-02-04 11:19:59 UTC (rev 148606)
@@ -1,42 +0,0 @@
-diff -Naur shared-mime-info-0.70-orig/freedesktop.org.xml 
shared-mime-info-0.70/freedesktop.org.xml
 shared-mime-info-0.70-orig/freedesktop.org.xml 2010-02-06 
02:39:24.0 -0500
-+++ shared-mime-info-0.70/freedesktop.org.xml  2010-02-06 02:48:01.0 
-0500
-@@ -17025,12 +17025,10 @@
- magic priority=50
-   match value=P1 type=string offset=0
- match value=0x0a type=byte offset=2
--match value=# type=string offset=3/
- /match
-   /match
-   match value=P4 type=string offset=0
- match value=0x0a type=byte offset=2
--match value=# type=string offset=3/
- /match
-   /match
- /magic
-@@ -17074,12 +17072,10 @@
- magic priority=50
-   match value=P2 type=string offset=0
- match value=0x0a type=byte offset=2
--match value=# type=string offset=3/
- /match
-   /match
-   match value=P5 type=string offset=0
- match value=0x0a type=byte offset=2
--match value=# type=string offset=3/
- /match
-   /match
- /magic
-@@ 

[arch-commits] Commit in xaw3d/trunk (8 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 06:57:25
  Author: andyrtr
Revision: 148607

prepare 1.6 update - has a .so bump - we delay the rebuild for some time

Modified:
  xaw3d/trunk/PKGBUILD
Deleted:
  xaw3d/trunk/LICENSE
  xaw3d/trunk/Xaw3d-1.5-box.c.patch
  xaw3d/trunk/Xaw3d-1.5-debian-fixes.patch
  xaw3d/trunk/Xaw3d-1.5-i18n.patch
  xaw3d/trunk/Xaw3d-1.5E-warnings.patch
  xaw3d/trunk/Xaw3d-1.5E-xorg-imake.patch
  xaw3d/trunk/Xaw3d-ia64.patch

--+
 LICENSE  |   22 -
 PKGBUILD |   52 ---
 Xaw3d-1.5-box.c.patch|   27 -
 Xaw3d-1.5-debian-fixes.patch |  647 -
 Xaw3d-1.5-i18n.patch |   10 
 Xaw3d-1.5E-warnings.patch|  114 ---
 Xaw3d-1.5E-xorg-imake.patch  |   35 --
 Xaw3d-ia64.patch |   33 --
 8 files changed, 15 insertions(+), 925 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2012-02-04 11:19:59 UTC (rev 148606)
+++ LICENSE 2012-02-04 11:57:25 UTC (rev 148607)
@@ -1,22 +0,0 @@
-Copyright (c) 1989  X Consortium
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the Software), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
-X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Except as contained in this notice, the name of the X Consortium shall not be
-used in advertising or otherwise to promote the sale, use or other dealings
-in this Software without prior written authorization from the X Consortium.

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 11:19:59 UTC (rev 148606)
+++ PKGBUILD2012-02-04 11:57:25 UTC (rev 148607)
@@ -2,50 +2,28 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=xaw3d
-pkgver=1.5E
-pkgrel=3
+pkgver=1.6
+pkgrel=1
 pkgdesc=Three-D Athena widgets
 arch=('i686' 'x86_64')
 url=http://directory.fsf.org/project/xaw3d/;
 license=('MIT')
-depends=('libxmu' 'libxpm')
-makedepends=('imake')
-options=('!makeflags')
-source=(ftp://ftp.visi.com/users/hawkeyd/X/Xaw3d-${pkgver}.tar.gz
-Xaw3d-1.5E-xorg-imake.patch
-   Xaw3d-1.5-i18n.patch
-Xaw3d-1.5-box.c.patch
-   Xaw3d-1.5-debian-fixes.patch
-xaw3d.patch
-   Xaw3d-1.5E-warnings.patch
-   Xaw3d-ia64.patch
-   LICENSE)
-md5sums=('29ecfdcd6bcf47f62ecfd672d31269a1'
- '2cca7950cf7d270609bc810b8996f0a9'
- 'e7105bc1452f0c5f5d0bcdcf212aac0c'
- 'c061ab65467766f5817752ef216e3cc2'
- '33bf0f1b52822b7293a3f45474178dfe'
- '5acb23e5a52c75e62a22aef59882df14'
- 'c3aa4cbf95442081e7af810c13306cc9'
- 'f766e8eb6371cbb1f68af4f2932dc118'
- '5b6b0242b3f53b7fe308e702abe28561')
+depends=('libxmu')
+makedepends=('xorg-util-macros')
+options=('!libtool')
+source=(http://xorg.freedesktop.org/archive/individual/lib/libXaw3d-${pkgver}.tar.bz2)
+md5sums=('db88f0c5afc5f285e046d84e15ad30de')
 
 build() {
-  cd ${srcdir}/xc/lib/Xaw3d
-  patch -Np0 -i ${srcdir}/Xaw3d-1.5E-xorg-imake.patch
-  patch -Np4 -i ${srcdir}/xaw3d.patch
-  patch -Np4 -i ${srcdir}/Xaw3d-ia64.patch
-  patch -Np4 -i ${srcdir}/Xaw3d-1.5-i18n.patch
-  patch -Np4 -i ${srcdir}/Xaw3d-1.5-box.c.patch
-  patch -Np4 -i ${srcdir}/Xaw3d-1.5-debian-fixes.patch
-  patch -Np4 -i ${srcdir}/Xaw3d-1.5E-warnings.patch
-  ln -s .. X11
-  xmkmf
-  make CDEBUGFLAGS=${CFLAGS} -DARROW_SCROLLBAR
+  cd ${srcdir}/libXaw3d-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
 }
 
 package() {
-  cd ${srcdir}/xc/lib/Xaw3d
-  make DESTDIR=${pkgdir} SHLIBDIR=/usr/lib INCDIR=/usr/include install
-  install -D -m644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  cd ${srcdir}/libXaw3d-${pkgver}
+  make DESTDIR=${pkgdir} install
+  
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
 }

Deleted: Xaw3d-1.5-box.c.patch
===
--- Xaw3d-1.5-box.c.patch   2012-02-04 11:19:59 UTC (rev 148606)
+++ Xaw3d-1.5-box.c.patch   

[arch-commits] Commit in linux/trunk (PKGBUILD linux.install)

2012-02-04 Thread Tobias Powalowski
Date: Saturday, February 4, 2012 @ 07:11:12
  Author: tpowa
Revision: 148608

upgpkg: linux 3.2.4-1

bump to latest version

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/linux.install

---+
 PKGBUILD  |   18 +-
 linux.install |2 +-
 2 files changed, 10 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 11:57:25 UTC (rev 148607)
+++ PKGBUILD2012-02-04 12:11:12 UTC (rev 148608)
@@ -7,7 +7,7 @@
 # pkgname=linux-custom   # Build kernel with a different name
 _kernelname=${pkgname#linux}
 _basekernel=3.2
-pkgver=${_basekernel}.2
+pkgver=${_basekernel}.4
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/;
@@ -23,14 +23,6 @@
 'change-default-console-loglevel.patch'
 'i915-fix-ghost-tv-output.patch'
 'i915-gpu-finish.patch')
-md5sums=('364066fa18767ec0ae5f4e4abcf9dc51'
- '5e53edbf75fcaa3a8d1697f3a053102d'
- 'cbd469a1ba0bc8caa765caa42d429ea9'
- '875b121a32a619e0ee262c541f330427'
- 'eb14dcfd80c00852ef81ded6e826826a'
- '9d3c56a4b999c8bfbd4018089a62f662'
- '263725f20c0b9eb9c353040792d644e5'
- '4cd79aa147825837dc8bc9f6b736c0a0')
 
 build() {
   cd ${srcdir}/linux-${_basekernel}
@@ -295,3 +287,11 @@
   # remove a file already in linux package
   rm -f ${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile
 }
+md5sums=('364066fa18767ec0ae5f4e4abcf9dc51'
+ '3032ebbde1d19fc4c4c982bec51b0fb8'
+ 'cbd469a1ba0bc8caa765caa42d429ea9'
+ '875b121a32a619e0ee262c541f330427'
+ 'eb14dcfd80c00852ef81ded6e826826a'
+ '9d3c56a4b999c8bfbd4018089a62f662'
+ '263725f20c0b9eb9c353040792d644e5'
+ '4cd79aa147825837dc8bc9f6b736c0a0')

Modified: linux.install
===
--- linux.install   2012-02-04 11:57:25 UTC (rev 148607)
+++ linux.install   2012-02-04 12:11:12 UTC (rev 148608)
@@ -2,7 +2,7 @@
 # arg 2:  the old package version
 
 KERNEL_NAME=
-KERNEL_VERSION=3.2.2-1-ARCH
+KERNEL_VERSION=3.2.4-1-ARCH
 
 post_install () {
   # updating module dependencies



[arch-commits] Commit in linux/repos (20 files)

2012-02-04 Thread Tobias Powalowski
Date: Saturday, February 4, 2012 @ 07:12:23
  Author: tpowa
Revision: 148609

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

Added:
  linux/repos/testing-i686/
  linux/repos/testing-i686/CVE-2012-0056.patch
(from rev 148608, linux/trunk/CVE-2012-0056.patch)
  linux/repos/testing-i686/PKGBUILD
(from rev 148608, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 148608, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 148608, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 148608, linux/trunk/config.x86_64)
  linux/repos/testing-i686/i915-fix-ghost-tv-output.patch
(from rev 148608, linux/trunk/i915-fix-ghost-tv-output.patch)
  linux/repos/testing-i686/i915-gpu-finish.patch
(from rev 148608, linux/trunk/i915-gpu-finish.patch)
  linux/repos/testing-i686/linux.install
(from rev 148608, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 148608, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/CVE-2012-0056.patch
(from rev 148608, linux/trunk/CVE-2012-0056.patch)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 148608, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 148608, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 148608, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 148608, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/i915-fix-ghost-tv-output.patch
(from rev 148608, linux/trunk/i915-fix-ghost-tv-output.patch)
  linux/repos/testing-x86_64/i915-gpu-finish.patch
(from rev 148608, linux/trunk/i915-gpu-finish.patch)
  linux/repos/testing-x86_64/linux.install
(from rev 148608, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 148608, linux/trunk/linux.preset)

--+
 testing-i686/CVE-2012-0056.patch |  268 
 testing-i686/PKGBUILD|  297 
 testing-i686/change-default-console-loglevel.patch   |   12 
 testing-i686/config  | 5913 +
 testing-i686/config.x86_64   | 5673 
 testing-i686/i915-fix-ghost-tv-output.patch  |   26 
 testing-i686/i915-gpu-finish.patch   |   55 
 testing-i686/linux.install   |   62 
 testing-i686/linux.preset|   14 
 testing-x86_64/CVE-2012-0056.patch   |  268 
 testing-x86_64/PKGBUILD  |  297 
 testing-x86_64/change-default-console-loglevel.patch |   12 
 testing-x86_64/config| 5913 +
 testing-x86_64/config.x86_64 | 5673 
 testing-x86_64/i915-fix-ghost-tv-output.patch|   26 
 testing-x86_64/i915-gpu-finish.patch |   55 
 testing-x86_64/linux.install |   62 
 testing-x86_64/linux.preset  |   14 
 18 files changed, 24640 insertions(+)

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


[arch-commits] Commit in xaw3d/repos (6 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 07:31:13
  Author: andyrtr
Revision: 148610

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

Added:
  xaw3d/repos/staging-i686/
  xaw3d/repos/staging-i686/PKGBUILD
(from rev 148609, xaw3d/trunk/PKGBUILD)
  xaw3d/repos/staging-i686/xaw3d.patch
(from rev 148609, xaw3d/trunk/xaw3d.patch)
  xaw3d/repos/staging-x86_64/
  xaw3d/repos/staging-x86_64/PKGBUILD
(from rev 148609, xaw3d/trunk/PKGBUILD)
  xaw3d/repos/staging-x86_64/xaw3d.patch
(from rev 148609, xaw3d/trunk/xaw3d.patch)

+
 staging-i686/PKGBUILD  |   29 +
 staging-i686/xaw3d.patch   |   30 ++
 staging-x86_64/PKGBUILD|   29 +
 staging-x86_64/xaw3d.patch |   30 ++
 4 files changed, 118 insertions(+)

Copied: xaw3d/repos/staging-i686/PKGBUILD (from rev 148609, 
xaw3d/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-02-04 12:31:13 UTC (rev 148610)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xaw3d
+pkgver=1.6
+pkgrel=1
+pkgdesc=Three-D Athena widgets
+arch=('i686' 'x86_64')
+url=http://directory.fsf.org/project/xaw3d/;
+license=('MIT')
+depends=('libxmu')
+makedepends=('xorg-util-macros')
+options=('!libtool')
+source=(http://xorg.freedesktop.org/archive/individual/lib/libXaw3d-${pkgver}.tar.bz2)
+md5sums=('db88f0c5afc5f285e046d84e15ad30de')
+
+build() {
+  cd ${srcdir}/libXaw3d-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/libXaw3d-${pkgver}
+  make DESTDIR=${pkgdir} install
+  
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xaw3d/repos/staging-i686/xaw3d.patch (from rev 148609, 
xaw3d/trunk/xaw3d.patch)
===
--- staging-i686/xaw3d.patch(rev 0)
+++ staging-i686/xaw3d.patch2012-02-04 12:31:13 UTC (rev 148610)
@@ -0,0 +1,30 @@
+diff -up Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c.orig 
Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c
+--- Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c.orig   2003-02-10 18:22:26.0 
+0100
 Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c2008-10-06 10:07:46.0 
+0200
+@@ -1087,7 +1087,11 @@ static void NotifyThumb (w, event, param
+ Cardinal *num_params; /* unused */
+ {
+ register ScrollbarWidget sbw = (ScrollbarWidget) w;
+-float top = sbw-scrollbar.top;
++union {
++  XtPointer pt;
++  float top;
++} foo;
++foo.top = sbw-scrollbar.top;
+ 
+ #ifndef XAW_ARROW_SCROLLBARS
+ if (sbw-scrollbar.direction == 0) return; /* if no StartScroll */
+@@ -1116,10 +1120,10 @@ static void NotifyThumb (w, event, param
+ /* Removed the dependancy on scrollbar arrows. Xterm as distributed in
+X11R6.6 by The XFree86 Project wants this correction, with or without
+the arrows. */
+-top += 0.0001;
++foo.top += 0.0001;
+ /* #endif */
+-XtCallCallbacks (w, XtNthumbProc, *(XtPointer*)top);
+-XtCallCallbacks (w, XtNjumpProc, (XtPointer)top);
++XtCallCallbacks (w, XtNthumbProc, foo.pt);
++XtCallCallbacks (w, XtNjumpProc, (XtPointer)sbw-scrollbar.top);
+ }
+ 
+ 

Copied: xaw3d/repos/staging-x86_64/PKGBUILD (from rev 148609, 
xaw3d/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-02-04 12:31:13 UTC (rev 148610)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xaw3d
+pkgver=1.6
+pkgrel=1
+pkgdesc=Three-D Athena widgets
+arch=('i686' 'x86_64')
+url=http://directory.fsf.org/project/xaw3d/;
+license=('MIT')
+depends=('libxmu')
+makedepends=('xorg-util-macros')
+options=('!libtool')
+source=(http://xorg.freedesktop.org/archive/individual/lib/libXaw3d-${pkgver}.tar.bz2)
+md5sums=('db88f0c5afc5f285e046d84e15ad30de')
+
+build() {
+  cd ${srcdir}/libXaw3d-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/libXaw3d-${pkgver}
+  make DESTDIR=${pkgdir} install
+  
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xaw3d/repos/staging-x86_64/xaw3d.patch (from rev 148609, 
xaw3d/trunk/xaw3d.patch)
===
--- staging-x86_64/xaw3d.patch  (rev 0)
+++ staging-x86_64/xaw3d.patch  2012-02-04 12:31:13 UTC (rev 148610)
@@ -0,0 +1,30 @@
+diff -up Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c.orig 
Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c
+--- Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c.orig   2003-02-10 18:22:26.0 
+0100
 

[arch-commits] Commit in gv/trunk (PKGBUILD buildfix.diff)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 07:53:07
  Author: andyrtr
Revision: 148611

upgpkg: gv 3.7.3-1

upstream prerelease 3.7.3; libXaw3D rebuild 

Added:
  gv/trunk/buildfix.diff
Modified:
  gv/trunk/PKGBUILD

---+
 PKGBUILD  |   17 +
 buildfix.diff |   15 +++
 2 files changed, 24 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 12:31:13 UTC (rev 148610)
+++ PKGBUILD2012-02-04 12:53:07 UTC (rev 148611)
@@ -2,24 +2,25 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=gv
-pkgver=3.7.2
+pkgver=3.7.3
 pkgrel=1
 pkgdesc=A program to view PostScript and PDF documents
 arch=('i686' 'x86_64')
 url=http://www.gnu.org/software/gv/;
 license=('GPL')
-depends=('xaw3d' 'ghostscript' 'desktop-file-utils')
+depends=('xaw3d=1.6' 'ghostscript' 'desktop-file-utils')
 install=gv.install
-source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz 
gv.desktop gv.png)
-md5sums=('eb47d465755b7291870af66431c6f2e1'
+source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz 
gv.desktop gv.png
+buildfix.diff)
+md5sums=('98ae3e9ce338b64ba5ab622389c5960e'
  'cf04652952f2d0903bc7578b4826f50c'
- 'ab0e3879dbe39e59ad1c923020c28a86')
-sha1sums=('d9573e17f5d88d150fccb257ce205dbceab83e8a'
-  'c8230fe08ee6d22525678a97832f44941237d174'
-  '35b9168e526527001b1b5b8ee34a5b69d9369590')
+ 'ab0e3879dbe39e59ad1c923020c28a86'
+ '943baf7a6bb61389a09a4ec71083a900')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+  # 
https://trac.macports.org/browser/trunk/dports/print/gv/files/patch-src-Scrollbar.c.diff?rev=89338
+  patch -Np0 -i ${srcdir}/buildfix.diff
   sed -i -e s:-dGraphicsAlphaBits=2:\0 -dAlignToPixels=0: 
src/Makefile.{am,in}
   ./configure --prefix=/usr
   make

Added: buildfix.diff
===
--- buildfix.diff   (rev 0)
+++ buildfix.diff   2012-02-04 12:53:07 UTC (rev 148611)
@@ -0,0 +1,15 @@
+This piece of code is from libXaw3d-1.6/src/Scrollbar.c (Line 644)
+
+http://bugs.gentoo.org/399753
+
+--- src/Scrollbar.c
 src/Scrollbar.c
+@@ -1006,7 +1006,7 @@
+TOPLOC = newtop;
+SHOWNLENGTH = newbot-newtop+1;
+ 
+-   (*swclass-threeD_class.shadowdraw) (w, event, region, FALSE);
++   (*swclass-threeD_class.shadowdraw) (w, event, region, sbw-threeD.relief, 
FALSE);
+ 
+ENDMESSAGE(Redisplay)
+ }



[arch-commits] Commit in gv/repos (12 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 07:54:00
  Author: andyrtr
Revision: 148612

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

Added:
  gv/repos/staging-i686/
  gv/repos/staging-i686/PKGBUILD
(from rev 148611, gv/trunk/PKGBUILD)
  gv/repos/staging-i686/buildfix.diff
(from rev 148611, gv/trunk/buildfix.diff)
  gv/repos/staging-i686/gv.desktop
(from rev 148611, gv/trunk/gv.desktop)
  gv/repos/staging-i686/gv.install
(from rev 148611, gv/trunk/gv.install)
  gv/repos/staging-i686/gv.png
(from rev 148611, gv/trunk/gv.png)
  gv/repos/staging-x86_64/
  gv/repos/staging-x86_64/PKGBUILD
(from rev 148611, gv/trunk/PKGBUILD)
  gv/repos/staging-x86_64/buildfix.diff
(from rev 148611, gv/trunk/buildfix.diff)
  gv/repos/staging-x86_64/gv.desktop
(from rev 148611, gv/trunk/gv.desktop)
  gv/repos/staging-x86_64/gv.install
(from rev 148611, gv/trunk/gv.install)
  gv/repos/staging-x86_64/gv.png
(from rev 148611, gv/trunk/gv.png)

--+
 staging-i686/PKGBUILD|   34 ++
 staging-i686/buildfix.diff   |   15 +++
 staging-i686/gv.desktop  |   11 +++
 staging-i686/gv.install  |   18 ++
 staging-x86_64/PKGBUILD  |   34 ++
 staging-x86_64/buildfix.diff |   15 +++
 staging-x86_64/gv.desktop|   11 +++
 staging-x86_64/gv.install|   18 ++
 8 files changed, 156 insertions(+)

Copied: gv/repos/staging-i686/PKGBUILD (from rev 148611, gv/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-02-04 12:54:00 UTC (rev 148612)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=gv
+pkgver=3.7.3
+pkgrel=1
+pkgdesc=A program to view PostScript and PDF documents
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/gv/;
+license=('GPL')
+depends=('xaw3d=1.6' 'ghostscript' 'desktop-file-utils')
+install=gv.install
+source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz 
gv.desktop gv.png
+buildfix.diff)
+md5sums=('98ae3e9ce338b64ba5ab622389c5960e'
+ 'cf04652952f2d0903bc7578b4826f50c'
+ 'ab0e3879dbe39e59ad1c923020c28a86'
+ '943baf7a6bb61389a09a4ec71083a900')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # 
https://trac.macports.org/browser/trunk/dports/print/gv/files/patch-src-Scrollbar.c.diff?rev=89338
+  patch -Np0 -i ${srcdir}/buildfix.diff
+  sed -i -e s:-dGraphicsAlphaBits=2:\0 -dAlignToPixels=0: 
src/Makefile.{am,in}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ../gv.desktop ${pkgdir}/usr/share/applications/gv.desktop
+  install -D -m644 ../gv.png ${pkgdir}/usr/share/pixmaps/gv.png
+}

Copied: gv/repos/staging-i686/buildfix.diff (from rev 148611, 
gv/trunk/buildfix.diff)
===
--- staging-i686/buildfix.diff  (rev 0)
+++ staging-i686/buildfix.diff  2012-02-04 12:54:00 UTC (rev 148612)
@@ -0,0 +1,15 @@
+This piece of code is from libXaw3d-1.6/src/Scrollbar.c (Line 644)
+
+http://bugs.gentoo.org/399753
+
+--- src/Scrollbar.c
 src/Scrollbar.c
+@@ -1006,7 +1006,7 @@
+TOPLOC = newtop;
+SHOWNLENGTH = newbot-newtop+1;
+ 
+-   (*swclass-threeD_class.shadowdraw) (w, event, region, FALSE);
++   (*swclass-threeD_class.shadowdraw) (w, event, region, sbw-threeD.relief, 
FALSE);
+ 
+ENDMESSAGE(Redisplay)
+ }

Copied: gv/repos/staging-i686/gv.desktop (from rev 148611, gv/trunk/gv.desktop)
===
--- staging-i686/gv.desktop (rev 0)
+++ staging-i686/gv.desktop 2012-02-04 12:54:00 UTC (rev 148612)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=GV
+MimeType=application/pdf;application/postscript;image/x-eps;application/illustrator
+GenericName=Postscript Viewer
+Exec=gv
+Icon=gv
+Categories=Application;Graphics;Viewer;Office;
+Type=Application
+Terminal=false
+StartupNotify=true

Copied: gv/repos/staging-i686/gv.install (from rev 148611, gv/trunk/gv.install)
===
--- staging-i686/gv.install (rev 0)
+++ staging-i686/gv.install 2012-02-04 12:54:00 UTC (rev 148612)
@@ -0,0 +1,18 @@
+infodir=usr/share/info
+file=gv.info.gz
+
+post_install() {
+  update-desktop-database -q
+  [ -x usr/bin/install-info ] || return 0
+install-info $infodir/$file $infodir/dir 2 /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  update-desktop-database -q
+  [ -x usr/bin/install-info ] || return 0
+install-info --delete $infodir/$file $infodir/dir 2 /dev/null
+}

Copied: gv/repos/staging-i686/gv.png (from rev 

[arch-commits] Commit in timidity++/trunk (PKGBUILD)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 07:56:20
  Author: andyrtr
Revision: 148613

upgpkg: timidity++ 2.13.2-11

libXaw3D rebuild 

Modified:
  timidity++/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 12:54:00 UTC (rev 148612)
+++ PKGBUILD2012-02-04 12:56:20 UTC (rev 148613)
@@ -4,13 +4,13 @@
 
 pkgname=timidity++
 pkgver=2.13.2
-pkgrel=10
+pkgrel=11
 pkgdesc=A MIDI to WAVE converter and player
 arch=('i686' 'x86_64')
 url=http://timidity.sourceforge.net;
 license=('GPL')
 depends=('libao' 'libvorbis' 'jack' 'ncurses')
-makedepends=('xaw3d' 'gtk2' 'tk' 'libxaw')
+makedepends=('xaw3d=1.6' 'gtk2' 'tk' 'libxaw')
 optdepends=('gtk2: for using the GTK+ interface' 'tk: for using the Tk 
interface' \
 'xaw3d: for using the Xaw interface')
 backup=('etc/timidity++/timidity.cfg')



[arch-commits] Commit in timidity++/repos (18 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 07:57:33
  Author: andyrtr
Revision: 148614

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

Added:
  timidity++/repos/staging-i686/
  timidity++/repos/staging-i686/2.13.2-gcc4.patch
(from rev 148613, timidity++/trunk/2.13.2-gcc4.patch)
  timidity++/repos/staging-i686/PKGBUILD
(from rev 148613, timidity++/trunk/PKGBUILD)
  timidity++/repos/staging-i686/TiMidity++-2.13.2+flac-1.1.3.patch
(from rev 148613, timidity++/trunk/TiMidity++-2.13.2+flac-1.1.3.patch)
  timidity++/repos/staging-i686/timidity++-2.13.2-exiterror.patch
(from rev 148613, timidity++/trunk/timidity++-2.13.2-exiterror.patch)
  timidity++/repos/staging-i686/timidity++-2.13.2-gtk26.patch
(from rev 148613, timidity++/trunk/timidity++-2.13.2-gtk26.patch)
  timidity++/repos/staging-i686/timidity++-2.13.2-polling.patch
(from rev 148613, timidity++/trunk/timidity++-2.13.2-polling.patch)
  timidity++/repos/staging-i686/timidity++.sh
(from rev 148613, timidity++/trunk/timidity++.sh)
  timidity++/repos/staging-i686/timidity.cfg
(from rev 148613, timidity++/trunk/timidity.cfg)
  timidity++/repos/staging-x86_64/
  timidity++/repos/staging-x86_64/2.13.2-gcc4.patch
(from rev 148613, timidity++/trunk/2.13.2-gcc4.patch)
  timidity++/repos/staging-x86_64/PKGBUILD
(from rev 148613, timidity++/trunk/PKGBUILD)
  timidity++/repos/staging-x86_64/TiMidity++-2.13.2+flac-1.1.3.patch
(from rev 148613, timidity++/trunk/TiMidity++-2.13.2+flac-1.1.3.patch)
  timidity++/repos/staging-x86_64/timidity++-2.13.2-exiterror.patch
(from rev 148613, timidity++/trunk/timidity++-2.13.2-exiterror.patch)
  timidity++/repos/staging-x86_64/timidity++-2.13.2-gtk26.patch
(from rev 148613, timidity++/trunk/timidity++-2.13.2-gtk26.patch)
  timidity++/repos/staging-x86_64/timidity++-2.13.2-polling.patch
(from rev 148613, timidity++/trunk/timidity++-2.13.2-polling.patch)
  timidity++/repos/staging-x86_64/timidity++.sh
(from rev 148613, timidity++/trunk/timidity++.sh)
  timidity++/repos/staging-x86_64/timidity.cfg
(from rev 148613, timidity++/trunk/timidity.cfg)

---+
 staging-i686/2.13.2-gcc4.patch|   30 
 staging-i686/PKGBUILD |   61 +
 staging-i686/TiMidity++-2.13.2+flac-1.1.3.patch   |  349 ++
 staging-i686/timidity++-2.13.2-exiterror.patch|  695 
 staging-i686/timidity++-2.13.2-gtk26.patch|   19 
 staging-i686/timidity++-2.13.2-polling.patch  |   34 
 staging-i686/timidity++.sh|   38 +
 staging-i686/timidity.cfg |   29 
 staging-x86_64/2.13.2-gcc4.patch  |   30 
 staging-x86_64/PKGBUILD   |   61 +
 staging-x86_64/TiMidity++-2.13.2+flac-1.1.3.patch |  349 ++
 staging-x86_64/timidity++-2.13.2-exiterror.patch  |  695 
 staging-x86_64/timidity++-2.13.2-gtk26.patch  |   19 
 staging-x86_64/timidity++-2.13.2-polling.patch|   34 
 staging-x86_64/timidity++.sh  |   38 +
 staging-x86_64/timidity.cfg   |   29 
 16 files changed, 2510 insertions(+)

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


[arch-commits] Commit in xbill/trunk (03_fix_ftbfs_binutils_gold.diff PKGBUILD)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 08:10:35
  Author: andyrtr
Revision: 148615

upgpkg: xbill 2.1-8

libXaw3D rebuild 

Added:
  xbill/trunk/03_fix_ftbfs_binutils_gold.diff
Modified:
  xbill/trunk/PKGBUILD

-+
 03_fix_ftbfs_binutils_gold.diff |   15 +++
 PKGBUILD|   13 +
 2 files changed, 24 insertions(+), 4 deletions(-)

Added: 03_fix_ftbfs_binutils_gold.diff
===
--- 03_fix_ftbfs_binutils_gold.diff (rev 0)
+++ 03_fix_ftbfs_binutils_gold.diff 2012-02-04 13:10:35 UTC (rev 148615)
@@ -0,0 +1,15 @@
+Description: Fix FTBFS with binutils-gold
+Author: Vincent Legout vinc...@legout.info
+Bug-Debian: http://bugs.debian.org/556690
+Last-Update: 2009-12-08
+--- a/Makefile.in
 b/Makefile.in
+@@ -21,7 +21,7 @@
+ VPATH = @srcdir@
+ 
+ ALL_CFLAGS =  $(CFLAGS) $(CPPFLAGS) -I$(srcdir)
+-ALL_LDFLAGS = $(CFLAGS) $(LDFLAGS)
++ALL_LDFLAGS = $(CFLAGS) $(LDFLAGS) -lXpm
+ IMAGE_DEFINES=-DIMAGES=\${datadir}/xbill\
+ SCORE_DEFINES=-DSCOREFILE=\${localstatedir}/xbill.scores\
+ 

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 12:57:33 UTC (rev 148614)
+++ PKGBUILD2012-02-04 13:10:35 UTC (rev 148615)
@@ -3,19 +3,24 @@
 
 pkgname=xbill
 pkgver=2.1
-pkgrel=7
+pkgrel=8
 pkgdesc=A game that tests your reflexes as you seek and destroy all forms of 
Bill
 arch=('i686' 'x86_64')
 url=http://www.xbill.org/;
 license=('GPL')
-depends=('xaw3d')
+depends=('xaw3d=1.6')
 makedepends=('libxaw')
 install=xbill.install
-source=(http://www.xbill.org/download/${pkgname}-${pkgver}.tar.gz)
-md5sums=('585e4866b15255a24203db9959407b2f')
+source=(http://www.xbill.org/download/${pkgname}-${pkgver}.tar.gz
+03_fix_ftbfs_binutils_gold.diff)
+md5sums=('585e4866b15255a24203db9959407b2f'
+ 'e260a6cd4f9af003d249961cb60e2d01')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+  # taken from Debian
+  patch -Np1 -i ${srcdir}/03_fix_ftbfs_binutils_gold.diff
+  autoconf -v -f
   ./configure --prefix=/usr --mandir=/usr/share/man --localstatedir=/var/games 
\
 --disable-motif  --enable-athena --disable-gtk
   make



[arch-commits] Commit in xbill/repos (8 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 08:11:12
  Author: andyrtr
Revision: 148616

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

Added:
  xbill/repos/staging-i686/
  xbill/repos/staging-i686/03_fix_ftbfs_binutils_gold.diff
(from rev 148615, xbill/trunk/03_fix_ftbfs_binutils_gold.diff)
  xbill/repos/staging-i686/PKGBUILD
(from rev 148615, xbill/trunk/PKGBUILD)
  xbill/repos/staging-i686/xbill.install
(from rev 148615, xbill/trunk/xbill.install)
  xbill/repos/staging-x86_64/
  xbill/repos/staging-x86_64/03_fix_ftbfs_binutils_gold.diff
(from rev 148615, xbill/trunk/03_fix_ftbfs_binutils_gold.diff)
  xbill/repos/staging-x86_64/PKGBUILD
(from rev 148615, xbill/trunk/PKGBUILD)
  xbill/repos/staging-x86_64/xbill.install
(from rev 148615, xbill/trunk/xbill.install)

+
 staging-i686/03_fix_ftbfs_binutils_gold.diff   |   15 +++
 staging-i686/PKGBUILD  |   44 +++
 staging-i686/xbill.install |   26 +
 staging-x86_64/03_fix_ftbfs_binutils_gold.diff |   15 +++
 staging-x86_64/PKGBUILD|   44 +++
 staging-x86_64/xbill.install   |   26 +
 6 files changed, 170 insertions(+)

Copied: xbill/repos/staging-i686/03_fix_ftbfs_binutils_gold.diff (from rev 
148615, xbill/trunk/03_fix_ftbfs_binutils_gold.diff)
===
--- staging-i686/03_fix_ftbfs_binutils_gold.diff
(rev 0)
+++ staging-i686/03_fix_ftbfs_binutils_gold.diff2012-02-04 13:11:12 UTC 
(rev 148616)
@@ -0,0 +1,15 @@
+Description: Fix FTBFS with binutils-gold
+Author: Vincent Legout vinc...@legout.info
+Bug-Debian: http://bugs.debian.org/556690
+Last-Update: 2009-12-08
+--- a/Makefile.in
 b/Makefile.in
+@@ -21,7 +21,7 @@
+ VPATH = @srcdir@
+ 
+ ALL_CFLAGS =  $(CFLAGS) $(CPPFLAGS) -I$(srcdir)
+-ALL_LDFLAGS = $(CFLAGS) $(LDFLAGS)
++ALL_LDFLAGS = $(CFLAGS) $(LDFLAGS) -lXpm
+ IMAGE_DEFINES=-DIMAGES=\${datadir}/xbill\
+ SCORE_DEFINES=-DSCOREFILE=\${localstatedir}/xbill.scores\
+ 

Copied: xbill/repos/staging-i686/PKGBUILD (from rev 148615, 
xbill/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-02-04 13:11:12 UTC (rev 148616)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xbill
+pkgver=2.1
+pkgrel=8
+pkgdesc=A game that tests your reflexes as you seek and destroy all forms of 
Bill
+arch=('i686' 'x86_64')
+url=http://www.xbill.org/;
+license=('GPL')
+depends=('xaw3d=1.6')
+makedepends=('libxaw')
+install=xbill.install
+source=(http://www.xbill.org/download/${pkgname}-${pkgver}.tar.gz
+03_fix_ftbfs_binutils_gold.diff)
+md5sums=('585e4866b15255a24203db9959407b2f'
+ 'e260a6cd4f9af003d249961cb60e2d01')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # taken from Debian
+  patch -Np1 -i ${srcdir}/03_fix_ftbfs_binutils_gold.diff
+  autoconf -v -f
+  ./configure --prefix=/usr --mandir=/usr/share/man --localstatedir=/var/games 
\
+--disable-motif  --enable-athena --disable-gtk
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+# set appropriate permissions and destinations
+  chown root:games ${pkgdir}/usr/bin/xbill
+  chmod 2755 ${pkgdir}/usr/bin/xbill
+
+  chown root:games ${pkgdir}/var/games
+  chmod 775 ${pkgdir}/var/games
+  chown root:games ${pkgdir}/var/games/xbill
+  chmod 775 ${pkgdir}/var/games/xbill
+
+# Handle the scores file creation in the install script
+  rm ${pkgdir}/var/games/xbill/scores
+}

Copied: xbill/repos/staging-i686/xbill.install (from rev 148615, 
xbill/trunk/xbill.install)
===
--- staging-i686/xbill.install  (rev 0)
+++ staging-i686/xbill.install  2012-02-04 13:11:12 UTC (rev 148616)
@@ -0,0 +1,26 @@
+pre_install() {
+  if [ ! -e var/games/xbill/scores -a -e usr/var/xbill/scores ]; then
+mkdir -p var/games/xbill
+mv usr/var/xbill/scores var/games/xbill/scores
+  fi
+}
+
+post_install() {
+  touch var/games/xbill/scores
+  chown root:games var/games/xbill/scores
+  chmod 664 var/games/xbill/scores
+}
+
+pre_upgrade() {
+  pre_install $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  if [ -e var/games/xbill/scores ]; then
+mv var/games/xbill/scores var/games/xbill/scores.pacsave
+  fi
+}

Copied: xbill/repos/staging-x86_64/03_fix_ftbfs_binutils_gold.diff (from rev 
148615, xbill/trunk/03_fix_ftbfs_binutils_gold.diff)
===
--- staging-x86_64/03_fix_ftbfs_binutils_gold.diff  
(rev 0)
+++ staging-x86_64/03_fix_ftbfs_binutils_gold.diff  2012-02-04 13:11:12 UTC 
(rev 148616)

[arch-commits] Commit in xfig/trunk (PKGBUILD)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 08:32:25
  Author: andyrtr
Revision: 148617

upgpkg: xfig 3.2.5b-7

libXaw3D rebuild

Modified:
  xfig/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 13:11:12 UTC (rev 148616)
+++ PKGBUILD2012-02-04 13:32:25 UTC (rev 148617)
@@ -3,12 +3,12 @@
 
 pkgname=xfig
 pkgver=3.2.5b
-pkgrel=6
+pkgrel=7
 pkgdesc=An interactive drawing tool
 arch=('i686' 'x86_64')
 url=http://www.xfig.org/userman/;
 license=('custom')
-depends=('libpng' 'libjpeg' 'xaw3d' 'libxi' 'desktop-file-utils' 'gsfonts')
+depends=('libpng' 'libjpeg' 'xaw3d=1.6' 'libxi' 'desktop-file-utils' 
'gsfonts' 'libxpm')
 makedepends=('imake')
 optdepends=('transfig: to use the frontend to convert fig files')
 options=('!makeflags' '!emptydirs')



[arch-commits] Commit in xfig/repos (28 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 08:34:26
  Author: andyrtr
Revision: 148618

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

Added:
  xfig/repos/staging-i686/
  xfig/repos/staging-i686/LICENSE
(from rev 148617, xfig/trunk/LICENSE)
  xfig/repos/staging-i686/PKGBUILD
(from rev 148617, xfig/trunk/PKGBUILD)
  xfig/repos/staging-i686/xfig-3.2.4-redhat.patch
(from rev 148617, xfig/trunk/xfig-3.2.4-redhat.patch)
  xfig/repos/staging-i686/xfig-3.2.5-color-resources.patch
(from rev 148617, xfig/trunk/xfig-3.2.5-color-resources.patch)
  xfig/repos/staging-i686/xfig-3.2.5-enable-Xaw3d.patch
(from rev 148617, xfig/trunk/xfig-3.2.5-enable-Xaw3d.patch)
  xfig/repos/staging-i686/xfig-3.2.5-fhs.patch
(from rev 148617, xfig/trunk/xfig-3.2.5-fhs.patch)
  xfig/repos/staging-i686/xfig-3.2.5-missing-protos.patch
(from rev 148617, xfig/trunk/xfig-3.2.5-missing-protos.patch)
  xfig/repos/staging-i686/xfig-3.2.5-urwfonts.patch
(from rev 148617, xfig/trunk/xfig-3.2.5-urwfonts.patch)
  xfig/repos/staging-i686/xfig-3.2.5b-fix-eps-reading.patch
(from rev 148617, xfig/trunk/xfig-3.2.5b-fix-eps-reading.patch)
  xfig/repos/staging-i686/xfig-3.2.5b-libpng-1.5.patch
(from rev 148617, xfig/trunk/xfig-3.2.5b-libpng-1.5.patch)
  xfig/repos/staging-i686/xfig.3.2.5-modularX.patch
(from rev 148617, xfig/trunk/xfig.3.2.5-modularX.patch)
  xfig/repos/staging-i686/xfig.desktop
(from rev 148617, xfig/trunk/xfig.desktop)
  xfig/repos/staging-i686/xfig.install
(from rev 148617, xfig/trunk/xfig.install)
  xfig/repos/staging-x86_64/
  xfig/repos/staging-x86_64/LICENSE
(from rev 148617, xfig/trunk/LICENSE)
  xfig/repos/staging-x86_64/PKGBUILD
(from rev 148617, xfig/trunk/PKGBUILD)
  xfig/repos/staging-x86_64/xfig-3.2.4-redhat.patch
(from rev 148617, xfig/trunk/xfig-3.2.4-redhat.patch)
  xfig/repos/staging-x86_64/xfig-3.2.5-color-resources.patch
(from rev 148617, xfig/trunk/xfig-3.2.5-color-resources.patch)
  xfig/repos/staging-x86_64/xfig-3.2.5-enable-Xaw3d.patch
(from rev 148617, xfig/trunk/xfig-3.2.5-enable-Xaw3d.patch)
  xfig/repos/staging-x86_64/xfig-3.2.5-fhs.patch
(from rev 148617, xfig/trunk/xfig-3.2.5-fhs.patch)
  xfig/repos/staging-x86_64/xfig-3.2.5-missing-protos.patch
(from rev 148617, xfig/trunk/xfig-3.2.5-missing-protos.patch)
  xfig/repos/staging-x86_64/xfig-3.2.5-urwfonts.patch
(from rev 148617, xfig/trunk/xfig-3.2.5-urwfonts.patch)
  xfig/repos/staging-x86_64/xfig-3.2.5b-fix-eps-reading.patch
(from rev 148617, xfig/trunk/xfig-3.2.5b-fix-eps-reading.patch)
  xfig/repos/staging-x86_64/xfig-3.2.5b-libpng-1.5.patch
(from rev 148617, xfig/trunk/xfig-3.2.5b-libpng-1.5.patch)
  xfig/repos/staging-x86_64/xfig.3.2.5-modularX.patch
(from rev 148617, xfig/trunk/xfig.3.2.5-modularX.patch)
  xfig/repos/staging-x86_64/xfig.desktop
(from rev 148617, xfig/trunk/xfig.desktop)
  xfig/repos/staging-x86_64/xfig.install
(from rev 148617, xfig/trunk/xfig.install)

--+
 staging-i686/LICENSE |   33 
 staging-i686/PKGBUILD|   65 +
 staging-i686/xfig-3.2.4-redhat.patch |   31 
 staging-i686/xfig-3.2.5-color-resources.patch|   39 ++
 staging-i686/xfig-3.2.5-enable-Xaw3d.patch   |   18 
 staging-i686/xfig-3.2.5-fhs.patch|   12 +++
 staging-i686/xfig-3.2.5-missing-protos.patch |   11 ++
 staging-i686/xfig-3.2.5-urwfonts.patch   |   79 +
 staging-i686/xfig-3.2.5b-fix-eps-reading.patch   |   46 
 staging-i686/xfig-3.2.5b-libpng-1.5.patch|   70 ++
 staging-i686/xfig.3.2.5-modularX.patch   |   28 +++
 staging-i686/xfig.desktop|   47 
 staging-i686/xfig.install|   11 ++
 staging-x86_64/LICENSE   |   33 
 staging-x86_64/PKGBUILD  |   65 +
 staging-x86_64/xfig-3.2.4-redhat.patch   |   31 
 staging-x86_64/xfig-3.2.5-color-resources.patch  |   39 ++
 staging-x86_64/xfig-3.2.5-enable-Xaw3d.patch |   18 
 staging-x86_64/xfig-3.2.5-fhs.patch  |   12 +++
 staging-x86_64/xfig-3.2.5-missing-protos.patch   |   11 ++
 staging-x86_64/xfig-3.2.5-urwfonts.patch |   79 +
 staging-x86_64/xfig-3.2.5b-fix-eps-reading.patch |   46 
 staging-x86_64/xfig-3.2.5b-libpng-1.5.patch  |   70 ++
 staging-x86_64/xfig.3.2.5-modularX.patch |   28 +++
 staging-x86_64/xfig.desktop  |   47 
 staging-x86_64/xfig.install  |   11 ++
 26 files changed, 980 insertions(+)

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


[arch-commits] Commit in xaw3d/repos (4 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 08:37:57
  Author: andyrtr
Revision: 148619

db-move: moved xaw3d from [staging] to [testing] (i686)

Added:
  xaw3d/repos/testing-i686/
  xaw3d/repos/testing-i686/PKGBUILD
(from rev 148618, xaw3d/repos/staging-i686/PKGBUILD)
  xaw3d/repos/testing-i686/xaw3d.patch
(from rev 148618, xaw3d/repos/staging-i686/xaw3d.patch)
Deleted:
  xaw3d/repos/staging-i686/

-+
 PKGBUILD|   29 +
 xaw3d.patch |   30 ++
 2 files changed, 59 insertions(+)

Copied: xaw3d/repos/testing-i686/PKGBUILD (from rev 148618, 
xaw3d/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-02-04 13:37:57 UTC (rev 148619)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xaw3d
+pkgver=1.6
+pkgrel=1
+pkgdesc=Three-D Athena widgets
+arch=('i686' 'x86_64')
+url=http://directory.fsf.org/project/xaw3d/;
+license=('MIT')
+depends=('libxmu')
+makedepends=('xorg-util-macros')
+options=('!libtool')
+source=(http://xorg.freedesktop.org/archive/individual/lib/libXaw3d-${pkgver}.tar.bz2)
+md5sums=('db88f0c5afc5f285e046d84e15ad30de')
+
+build() {
+  cd ${srcdir}/libXaw3d-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/libXaw3d-${pkgver}
+  make DESTDIR=${pkgdir} install
+  
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xaw3d/repos/testing-i686/xaw3d.patch (from rev 148618, 
xaw3d/repos/staging-i686/xaw3d.patch)
===
--- testing-i686/xaw3d.patch(rev 0)
+++ testing-i686/xaw3d.patch2012-02-04 13:37:57 UTC (rev 148619)
@@ -0,0 +1,30 @@
+diff -up Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c.orig 
Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c
+--- Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c.orig   2003-02-10 18:22:26.0 
+0100
 Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c2008-10-06 10:07:46.0 
+0200
+@@ -1087,7 +1087,11 @@ static void NotifyThumb (w, event, param
+ Cardinal *num_params; /* unused */
+ {
+ register ScrollbarWidget sbw = (ScrollbarWidget) w;
+-float top = sbw-scrollbar.top;
++union {
++  XtPointer pt;
++  float top;
++} foo;
++foo.top = sbw-scrollbar.top;
+ 
+ #ifndef XAW_ARROW_SCROLLBARS
+ if (sbw-scrollbar.direction == 0) return; /* if no StartScroll */
+@@ -1116,10 +1120,10 @@ static void NotifyThumb (w, event, param
+ /* Removed the dependancy on scrollbar arrows. Xterm as distributed in
+X11R6.6 by The XFree86 Project wants this correction, with or without
+the arrows. */
+-top += 0.0001;
++foo.top += 0.0001;
+ /* #endif */
+-XtCallCallbacks (w, XtNthumbProc, *(XtPointer*)top);
+-XtCallCallbacks (w, XtNjumpProc, (XtPointer)top);
++XtCallCallbacks (w, XtNthumbProc, foo.pt);
++XtCallCallbacks (w, XtNjumpProc, (XtPointer)sbw-scrollbar.top);
+ }
+ 
+ 



[arch-commits] Commit in xaw3d/repos (4 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 08:37:58
  Author: andyrtr
Revision: 148620

db-move: moved xaw3d from [staging] to [testing] (x86_64)

Added:
  xaw3d/repos/testing-x86_64/
  xaw3d/repos/testing-x86_64/PKGBUILD
(from rev 148618, xaw3d/repos/staging-x86_64/PKGBUILD)
  xaw3d/repos/testing-x86_64/xaw3d.patch
(from rev 148618, xaw3d/repos/staging-x86_64/xaw3d.patch)
Deleted:
  xaw3d/repos/staging-x86_64/

-+
 PKGBUILD|   29 +
 xaw3d.patch |   30 ++
 2 files changed, 59 insertions(+)

Copied: xaw3d/repos/testing-x86_64/PKGBUILD (from rev 148618, 
xaw3d/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-02-04 13:37:58 UTC (rev 148620)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xaw3d
+pkgver=1.6
+pkgrel=1
+pkgdesc=Three-D Athena widgets
+arch=('i686' 'x86_64')
+url=http://directory.fsf.org/project/xaw3d/;
+license=('MIT')
+depends=('libxmu')
+makedepends=('xorg-util-macros')
+options=('!libtool')
+source=(http://xorg.freedesktop.org/archive/individual/lib/libXaw3d-${pkgver}.tar.bz2)
+md5sums=('db88f0c5afc5f285e046d84e15ad30de')
+
+build() {
+  cd ${srcdir}/libXaw3d-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/libXaw3d-${pkgver}
+  make DESTDIR=${pkgdir} install
+  
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xaw3d/repos/testing-x86_64/xaw3d.patch (from rev 148618, 
xaw3d/repos/staging-x86_64/xaw3d.patch)
===
--- testing-x86_64/xaw3d.patch  (rev 0)
+++ testing-x86_64/xaw3d.patch  2012-02-04 13:37:58 UTC (rev 148620)
@@ -0,0 +1,30 @@
+diff -up Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c.orig 
Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c
+--- Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c.orig   2003-02-10 18:22:26.0 
+0100
 Xaw3d-1.5E/xc/lib/Xaw3d/Scrollbar.c2008-10-06 10:07:46.0 
+0200
+@@ -1087,7 +1087,11 @@ static void NotifyThumb (w, event, param
+ Cardinal *num_params; /* unused */
+ {
+ register ScrollbarWidget sbw = (ScrollbarWidget) w;
+-float top = sbw-scrollbar.top;
++union {
++  XtPointer pt;
++  float top;
++} foo;
++foo.top = sbw-scrollbar.top;
+ 
+ #ifndef XAW_ARROW_SCROLLBARS
+ if (sbw-scrollbar.direction == 0) return; /* if no StartScroll */
+@@ -1116,10 +1120,10 @@ static void NotifyThumb (w, event, param
+ /* Removed the dependancy on scrollbar arrows. Xterm as distributed in
+X11R6.6 by The XFree86 Project wants this correction, with or without
+the arrows. */
+-top += 0.0001;
++foo.top += 0.0001;
+ /* #endif */
+-XtCallCallbacks (w, XtNthumbProc, *(XtPointer*)top);
+-XtCallCallbacks (w, XtNjumpProc, (XtPointer)top);
++XtCallCallbacks (w, XtNthumbProc, foo.pt);
++XtCallCallbacks (w, XtNjumpProc, (XtPointer)sbw-scrollbar.top);
+ }
+ 
+ 



[arch-commits] Commit in gv/repos (7 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 08:37:59
  Author: andyrtr
Revision: 148621

db-move: moved gv from [staging] to [testing] (i686)

Added:
  gv/repos/testing-i686/
  gv/repos/testing-i686/PKGBUILD
(from rev 148618, gv/repos/staging-i686/PKGBUILD)
  gv/repos/testing-i686/buildfix.diff
(from rev 148618, gv/repos/staging-i686/buildfix.diff)
  gv/repos/testing-i686/gv.desktop
(from rev 148618, gv/repos/staging-i686/gv.desktop)
  gv/repos/testing-i686/gv.install
(from rev 148618, gv/repos/staging-i686/gv.install)
  gv/repos/testing-i686/gv.png
(from rev 148618, gv/repos/staging-i686/gv.png)
Deleted:
  gv/repos/staging-i686/

---+
 PKGBUILD  |   34 ++
 buildfix.diff |   15 +++
 gv.desktop|   11 +++
 gv.install|   18 ++
 4 files changed, 78 insertions(+)

Copied: gv/repos/testing-i686/PKGBUILD (from rev 148618, 
gv/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-02-04 13:37:59 UTC (rev 148621)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=gv
+pkgver=3.7.3
+pkgrel=1
+pkgdesc=A program to view PostScript and PDF documents
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/gv/;
+license=('GPL')
+depends=('xaw3d=1.6' 'ghostscript' 'desktop-file-utils')
+install=gv.install
+source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz 
gv.desktop gv.png
+buildfix.diff)
+md5sums=('98ae3e9ce338b64ba5ab622389c5960e'
+ 'cf04652952f2d0903bc7578b4826f50c'
+ 'ab0e3879dbe39e59ad1c923020c28a86'
+ '943baf7a6bb61389a09a4ec71083a900')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # 
https://trac.macports.org/browser/trunk/dports/print/gv/files/patch-src-Scrollbar.c.diff?rev=89338
+  patch -Np0 -i ${srcdir}/buildfix.diff
+  sed -i -e s:-dGraphicsAlphaBits=2:\0 -dAlignToPixels=0: 
src/Makefile.{am,in}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ../gv.desktop ${pkgdir}/usr/share/applications/gv.desktop
+  install -D -m644 ../gv.png ${pkgdir}/usr/share/pixmaps/gv.png
+}

Copied: gv/repos/testing-i686/buildfix.diff (from rev 148618, 
gv/repos/staging-i686/buildfix.diff)
===
--- testing-i686/buildfix.diff  (rev 0)
+++ testing-i686/buildfix.diff  2012-02-04 13:37:59 UTC (rev 148621)
@@ -0,0 +1,15 @@
+This piece of code is from libXaw3d-1.6/src/Scrollbar.c (Line 644)
+
+http://bugs.gentoo.org/399753
+
+--- src/Scrollbar.c
 src/Scrollbar.c
+@@ -1006,7 +1006,7 @@
+TOPLOC = newtop;
+SHOWNLENGTH = newbot-newtop+1;
+ 
+-   (*swclass-threeD_class.shadowdraw) (w, event, region, FALSE);
++   (*swclass-threeD_class.shadowdraw) (w, event, region, sbw-threeD.relief, 
FALSE);
+ 
+ENDMESSAGE(Redisplay)
+ }

Copied: gv/repos/testing-i686/gv.desktop (from rev 148618, 
gv/repos/staging-i686/gv.desktop)
===
--- testing-i686/gv.desktop (rev 0)
+++ testing-i686/gv.desktop 2012-02-04 13:37:59 UTC (rev 148621)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=GV
+MimeType=application/pdf;application/postscript;image/x-eps;application/illustrator
+GenericName=Postscript Viewer
+Exec=gv
+Icon=gv
+Categories=Application;Graphics;Viewer;Office;
+Type=Application
+Terminal=false
+StartupNotify=true

Copied: gv/repos/testing-i686/gv.install (from rev 148618, 
gv/repos/staging-i686/gv.install)
===
--- testing-i686/gv.install (rev 0)
+++ testing-i686/gv.install 2012-02-04 13:37:59 UTC (rev 148621)
@@ -0,0 +1,18 @@
+infodir=usr/share/info
+file=gv.info.gz
+
+post_install() {
+  update-desktop-database -q
+  [ -x usr/bin/install-info ] || return 0
+install-info $infodir/$file $infodir/dir 2 /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  update-desktop-database -q
+  [ -x usr/bin/install-info ] || return 0
+install-info --delete $infodir/$file $infodir/dir 2 /dev/null
+}

Copied: gv/repos/testing-i686/gv.png (from rev 148618, 
gv/repos/staging-i686/gv.png)
===
(Binary files differ)



[arch-commits] Commit in gv/repos (7 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 08:38:01
  Author: andyrtr
Revision: 148622

db-move: moved gv from [staging] to [testing] (x86_64)

Added:
  gv/repos/testing-x86_64/
  gv/repos/testing-x86_64/PKGBUILD
(from rev 148618, gv/repos/staging-x86_64/PKGBUILD)
  gv/repos/testing-x86_64/buildfix.diff
(from rev 148618, gv/repos/staging-x86_64/buildfix.diff)
  gv/repos/testing-x86_64/gv.desktop
(from rev 148618, gv/repos/staging-x86_64/gv.desktop)
  gv/repos/testing-x86_64/gv.install
(from rev 148618, gv/repos/staging-x86_64/gv.install)
  gv/repos/testing-x86_64/gv.png
(from rev 148618, gv/repos/staging-x86_64/gv.png)
Deleted:
  gv/repos/staging-x86_64/

---+
 PKGBUILD  |   34 ++
 buildfix.diff |   15 +++
 gv.desktop|   11 +++
 gv.install|   18 ++
 4 files changed, 78 insertions(+)

Copied: gv/repos/testing-x86_64/PKGBUILD (from rev 148618, 
gv/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-02-04 13:38:01 UTC (rev 148622)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=gv
+pkgver=3.7.3
+pkgrel=1
+pkgdesc=A program to view PostScript and PDF documents
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/gv/;
+license=('GPL')
+depends=('xaw3d=1.6' 'ghostscript' 'desktop-file-utils')
+install=gv.install
+source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz 
gv.desktop gv.png
+buildfix.diff)
+md5sums=('98ae3e9ce338b64ba5ab622389c5960e'
+ 'cf04652952f2d0903bc7578b4826f50c'
+ 'ab0e3879dbe39e59ad1c923020c28a86'
+ '943baf7a6bb61389a09a4ec71083a900')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # 
https://trac.macports.org/browser/trunk/dports/print/gv/files/patch-src-Scrollbar.c.diff?rev=89338
+  patch -Np0 -i ${srcdir}/buildfix.diff
+  sed -i -e s:-dGraphicsAlphaBits=2:\0 -dAlignToPixels=0: 
src/Makefile.{am,in}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ../gv.desktop ${pkgdir}/usr/share/applications/gv.desktop
+  install -D -m644 ../gv.png ${pkgdir}/usr/share/pixmaps/gv.png
+}

Copied: gv/repos/testing-x86_64/buildfix.diff (from rev 148618, 
gv/repos/staging-x86_64/buildfix.diff)
===
--- testing-x86_64/buildfix.diff(rev 0)
+++ testing-x86_64/buildfix.diff2012-02-04 13:38:01 UTC (rev 148622)
@@ -0,0 +1,15 @@
+This piece of code is from libXaw3d-1.6/src/Scrollbar.c (Line 644)
+
+http://bugs.gentoo.org/399753
+
+--- src/Scrollbar.c
 src/Scrollbar.c
+@@ -1006,7 +1006,7 @@
+TOPLOC = newtop;
+SHOWNLENGTH = newbot-newtop+1;
+ 
+-   (*swclass-threeD_class.shadowdraw) (w, event, region, FALSE);
++   (*swclass-threeD_class.shadowdraw) (w, event, region, sbw-threeD.relief, 
FALSE);
+ 
+ENDMESSAGE(Redisplay)
+ }

Copied: gv/repos/testing-x86_64/gv.desktop (from rev 148618, 
gv/repos/staging-x86_64/gv.desktop)
===
--- testing-x86_64/gv.desktop   (rev 0)
+++ testing-x86_64/gv.desktop   2012-02-04 13:38:01 UTC (rev 148622)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=GV
+MimeType=application/pdf;application/postscript;image/x-eps;application/illustrator
+GenericName=Postscript Viewer
+Exec=gv
+Icon=gv
+Categories=Application;Graphics;Viewer;Office;
+Type=Application
+Terminal=false
+StartupNotify=true

Copied: gv/repos/testing-x86_64/gv.install (from rev 148618, 
gv/repos/staging-x86_64/gv.install)
===
--- testing-x86_64/gv.install   (rev 0)
+++ testing-x86_64/gv.install   2012-02-04 13:38:01 UTC (rev 148622)
@@ -0,0 +1,18 @@
+infodir=usr/share/info
+file=gv.info.gz
+
+post_install() {
+  update-desktop-database -q
+  [ -x usr/bin/install-info ] || return 0
+install-info $infodir/$file $infodir/dir 2 /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  update-desktop-database -q
+  [ -x usr/bin/install-info ] || return 0
+install-info --delete $infodir/$file $infodir/dir 2 /dev/null
+}

Copied: gv/repos/testing-x86_64/gv.png (from rev 148618, 
gv/repos/staging-x86_64/gv.png)
===
(Binary files differ)



[arch-commits] Commit in timidity++/repos (10 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 08:38:03
  Author: andyrtr
Revision: 148623

db-move: moved timidity++ from [staging] to [testing] (i686)

Added:
  timidity++/repos/testing-i686/
  timidity++/repos/testing-i686/2.13.2-gcc4.patch
(from rev 148618, timidity++/repos/staging-i686/2.13.2-gcc4.patch)
  timidity++/repos/testing-i686/PKGBUILD
(from rev 148618, timidity++/repos/staging-i686/PKGBUILD)
  timidity++/repos/testing-i686/TiMidity++-2.13.2+flac-1.1.3.patch
(from rev 148618, 
timidity++/repos/staging-i686/TiMidity++-2.13.2+flac-1.1.3.patch)
  timidity++/repos/testing-i686/timidity++-2.13.2-exiterror.patch
(from rev 148618, 
timidity++/repos/staging-i686/timidity++-2.13.2-exiterror.patch)
  timidity++/repos/testing-i686/timidity++-2.13.2-gtk26.patch
(from rev 148618, 
timidity++/repos/staging-i686/timidity++-2.13.2-gtk26.patch)
  timidity++/repos/testing-i686/timidity++-2.13.2-polling.patch
(from rev 148618, 
timidity++/repos/staging-i686/timidity++-2.13.2-polling.patch)
  timidity++/repos/testing-i686/timidity++.sh
(from rev 148618, timidity++/repos/staging-i686/timidity++.sh)
  timidity++/repos/testing-i686/timidity.cfg
(from rev 148618, timidity++/repos/staging-i686/timidity.cfg)
Deleted:
  timidity++/repos/staging-i686/

+
 2.13.2-gcc4.patch  |   30 +
 PKGBUILD   |   61 +++
 TiMidity++-2.13.2+flac-1.1.3.patch |  349 +
 timidity++-2.13.2-exiterror.patch  |  695 +++
 timidity++-2.13.2-gtk26.patch  |   19 
 timidity++-2.13.2-polling.patch|   34 +
 timidity++.sh  |   38 +
 timidity.cfg   |   29 +
 8 files changed, 1255 insertions(+)

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


[arch-commits] Commit in timidity++/repos (10 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 08:38:04
  Author: andyrtr
Revision: 148624

db-move: moved timidity++ from [staging] to [testing] (x86_64)

Added:
  timidity++/repos/testing-x86_64/
  timidity++/repos/testing-x86_64/2.13.2-gcc4.patch
(from rev 148618, timidity++/repos/staging-x86_64/2.13.2-gcc4.patch)
  timidity++/repos/testing-x86_64/PKGBUILD
(from rev 148618, timidity++/repos/staging-x86_64/PKGBUILD)
  timidity++/repos/testing-x86_64/TiMidity++-2.13.2+flac-1.1.3.patch
(from rev 148618, 
timidity++/repos/staging-x86_64/TiMidity++-2.13.2+flac-1.1.3.patch)
  timidity++/repos/testing-x86_64/timidity++-2.13.2-exiterror.patch
(from rev 148618, 
timidity++/repos/staging-x86_64/timidity++-2.13.2-exiterror.patch)
  timidity++/repos/testing-x86_64/timidity++-2.13.2-gtk26.patch
(from rev 148618, 
timidity++/repos/staging-x86_64/timidity++-2.13.2-gtk26.patch)
  timidity++/repos/testing-x86_64/timidity++-2.13.2-polling.patch
(from rev 148618, 
timidity++/repos/staging-x86_64/timidity++-2.13.2-polling.patch)
  timidity++/repos/testing-x86_64/timidity++.sh
(from rev 148618, timidity++/repos/staging-x86_64/timidity++.sh)
  timidity++/repos/testing-x86_64/timidity.cfg
(from rev 148618, timidity++/repos/staging-x86_64/timidity.cfg)
Deleted:
  timidity++/repos/staging-x86_64/

+
 2.13.2-gcc4.patch  |   30 +
 PKGBUILD   |   61 +++
 TiMidity++-2.13.2+flac-1.1.3.patch |  349 +
 timidity++-2.13.2-exiterror.patch  |  695 +++
 timidity++-2.13.2-gtk26.patch  |   19 
 timidity++-2.13.2-polling.patch|   34 +
 timidity++.sh  |   38 +
 timidity.cfg   |   29 +
 8 files changed, 1255 insertions(+)

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


[arch-commits] Commit in xbill/repos (5 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 08:38:06
  Author: andyrtr
Revision: 148625

db-move: moved xbill from [staging] to [testing] (i686)

Added:
  xbill/repos/testing-i686/
  xbill/repos/testing-i686/03_fix_ftbfs_binutils_gold.diff
(from rev 148618, xbill/repos/staging-i686/03_fix_ftbfs_binutils_gold.diff)
  xbill/repos/testing-i686/PKGBUILD
(from rev 148618, xbill/repos/staging-i686/PKGBUILD)
  xbill/repos/testing-i686/xbill.install
(from rev 148618, xbill/repos/staging-i686/xbill.install)
Deleted:
  xbill/repos/staging-i686/

-+
 03_fix_ftbfs_binutils_gold.diff |   15 
 PKGBUILD|   44 ++
 xbill.install   |   26 ++
 3 files changed, 85 insertions(+)

Copied: xbill/repos/testing-i686/03_fix_ftbfs_binutils_gold.diff (from rev 
148618, xbill/repos/staging-i686/03_fix_ftbfs_binutils_gold.diff)
===
--- testing-i686/03_fix_ftbfs_binutils_gold.diff
(rev 0)
+++ testing-i686/03_fix_ftbfs_binutils_gold.diff2012-02-04 13:38:06 UTC 
(rev 148625)
@@ -0,0 +1,15 @@
+Description: Fix FTBFS with binutils-gold
+Author: Vincent Legout vinc...@legout.info
+Bug-Debian: http://bugs.debian.org/556690
+Last-Update: 2009-12-08
+--- a/Makefile.in
 b/Makefile.in
+@@ -21,7 +21,7 @@
+ VPATH = @srcdir@
+ 
+ ALL_CFLAGS =  $(CFLAGS) $(CPPFLAGS) -I$(srcdir)
+-ALL_LDFLAGS = $(CFLAGS) $(LDFLAGS)
++ALL_LDFLAGS = $(CFLAGS) $(LDFLAGS) -lXpm
+ IMAGE_DEFINES=-DIMAGES=\${datadir}/xbill\
+ SCORE_DEFINES=-DSCOREFILE=\${localstatedir}/xbill.scores\
+ 

Copied: xbill/repos/testing-i686/PKGBUILD (from rev 148618, 
xbill/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-02-04 13:38:06 UTC (rev 148625)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xbill
+pkgver=2.1
+pkgrel=8
+pkgdesc=A game that tests your reflexes as you seek and destroy all forms of 
Bill
+arch=('i686' 'x86_64')
+url=http://www.xbill.org/;
+license=('GPL')
+depends=('xaw3d=1.6')
+makedepends=('libxaw')
+install=xbill.install
+source=(http://www.xbill.org/download/${pkgname}-${pkgver}.tar.gz
+03_fix_ftbfs_binutils_gold.diff)
+md5sums=('585e4866b15255a24203db9959407b2f'
+ 'e260a6cd4f9af003d249961cb60e2d01')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # taken from Debian
+  patch -Np1 -i ${srcdir}/03_fix_ftbfs_binutils_gold.diff
+  autoconf -v -f
+  ./configure --prefix=/usr --mandir=/usr/share/man --localstatedir=/var/games 
\
+--disable-motif  --enable-athena --disable-gtk
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+# set appropriate permissions and destinations
+  chown root:games ${pkgdir}/usr/bin/xbill
+  chmod 2755 ${pkgdir}/usr/bin/xbill
+
+  chown root:games ${pkgdir}/var/games
+  chmod 775 ${pkgdir}/var/games
+  chown root:games ${pkgdir}/var/games/xbill
+  chmod 775 ${pkgdir}/var/games/xbill
+
+# Handle the scores file creation in the install script
+  rm ${pkgdir}/var/games/xbill/scores
+}

Copied: xbill/repos/testing-i686/xbill.install (from rev 148618, 
xbill/repos/staging-i686/xbill.install)
===
--- testing-i686/xbill.install  (rev 0)
+++ testing-i686/xbill.install  2012-02-04 13:38:06 UTC (rev 148625)
@@ -0,0 +1,26 @@
+pre_install() {
+  if [ ! -e var/games/xbill/scores -a -e usr/var/xbill/scores ]; then
+mkdir -p var/games/xbill
+mv usr/var/xbill/scores var/games/xbill/scores
+  fi
+}
+
+post_install() {
+  touch var/games/xbill/scores
+  chown root:games var/games/xbill/scores
+  chmod 664 var/games/xbill/scores
+}
+
+pre_upgrade() {
+  pre_install $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  if [ -e var/games/xbill/scores ]; then
+mv var/games/xbill/scores var/games/xbill/scores.pacsave
+  fi
+}



[arch-commits] Commit in xbill/repos (5 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 08:38:07
  Author: andyrtr
Revision: 148626

db-move: moved xbill from [staging] to [testing] (x86_64)

Added:
  xbill/repos/testing-x86_64/
  xbill/repos/testing-x86_64/03_fix_ftbfs_binutils_gold.diff
(from rev 148618, 
xbill/repos/staging-x86_64/03_fix_ftbfs_binutils_gold.diff)
  xbill/repos/testing-x86_64/PKGBUILD
(from rev 148618, xbill/repos/staging-x86_64/PKGBUILD)
  xbill/repos/testing-x86_64/xbill.install
(from rev 148618, xbill/repos/staging-x86_64/xbill.install)
Deleted:
  xbill/repos/staging-x86_64/

-+
 03_fix_ftbfs_binutils_gold.diff |   15 
 PKGBUILD|   44 ++
 xbill.install   |   26 ++
 3 files changed, 85 insertions(+)

Copied: xbill/repos/testing-x86_64/03_fix_ftbfs_binutils_gold.diff (from rev 
148618, xbill/repos/staging-x86_64/03_fix_ftbfs_binutils_gold.diff)
===
--- testing-x86_64/03_fix_ftbfs_binutils_gold.diff  
(rev 0)
+++ testing-x86_64/03_fix_ftbfs_binutils_gold.diff  2012-02-04 13:38:07 UTC 
(rev 148626)
@@ -0,0 +1,15 @@
+Description: Fix FTBFS with binutils-gold
+Author: Vincent Legout vinc...@legout.info
+Bug-Debian: http://bugs.debian.org/556690
+Last-Update: 2009-12-08
+--- a/Makefile.in
 b/Makefile.in
+@@ -21,7 +21,7 @@
+ VPATH = @srcdir@
+ 
+ ALL_CFLAGS =  $(CFLAGS) $(CPPFLAGS) -I$(srcdir)
+-ALL_LDFLAGS = $(CFLAGS) $(LDFLAGS)
++ALL_LDFLAGS = $(CFLAGS) $(LDFLAGS) -lXpm
+ IMAGE_DEFINES=-DIMAGES=\${datadir}/xbill\
+ SCORE_DEFINES=-DSCOREFILE=\${localstatedir}/xbill.scores\
+ 

Copied: xbill/repos/testing-x86_64/PKGBUILD (from rev 148618, 
xbill/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-02-04 13:38:07 UTC (rev 148626)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xbill
+pkgver=2.1
+pkgrel=8
+pkgdesc=A game that tests your reflexes as you seek and destroy all forms of 
Bill
+arch=('i686' 'x86_64')
+url=http://www.xbill.org/;
+license=('GPL')
+depends=('xaw3d=1.6')
+makedepends=('libxaw')
+install=xbill.install
+source=(http://www.xbill.org/download/${pkgname}-${pkgver}.tar.gz
+03_fix_ftbfs_binutils_gold.diff)
+md5sums=('585e4866b15255a24203db9959407b2f'
+ 'e260a6cd4f9af003d249961cb60e2d01')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # taken from Debian
+  patch -Np1 -i ${srcdir}/03_fix_ftbfs_binutils_gold.diff
+  autoconf -v -f
+  ./configure --prefix=/usr --mandir=/usr/share/man --localstatedir=/var/games 
\
+--disable-motif  --enable-athena --disable-gtk
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+# set appropriate permissions and destinations
+  chown root:games ${pkgdir}/usr/bin/xbill
+  chmod 2755 ${pkgdir}/usr/bin/xbill
+
+  chown root:games ${pkgdir}/var/games
+  chmod 775 ${pkgdir}/var/games
+  chown root:games ${pkgdir}/var/games/xbill
+  chmod 775 ${pkgdir}/var/games/xbill
+
+# Handle the scores file creation in the install script
+  rm ${pkgdir}/var/games/xbill/scores
+}

Copied: xbill/repos/testing-x86_64/xbill.install (from rev 148618, 
xbill/repos/staging-x86_64/xbill.install)
===
--- testing-x86_64/xbill.install(rev 0)
+++ testing-x86_64/xbill.install2012-02-04 13:38:07 UTC (rev 148626)
@@ -0,0 +1,26 @@
+pre_install() {
+  if [ ! -e var/games/xbill/scores -a -e usr/var/xbill/scores ]; then
+mkdir -p var/games/xbill
+mv usr/var/xbill/scores var/games/xbill/scores
+  fi
+}
+
+post_install() {
+  touch var/games/xbill/scores
+  chown root:games var/games/xbill/scores
+  chmod 664 var/games/xbill/scores
+}
+
+pre_upgrade() {
+  pre_install $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  if [ -e var/games/xbill/scores ]; then
+mv var/games/xbill/scores var/games/xbill/scores.pacsave
+  fi
+}



[arch-commits] Commit in xfig/repos (27 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 08:38:10
  Author: andyrtr
Revision: 148627

db-move: moved xfig from [staging] to [testing] (i686)

Added:
  xfig/repos/testing-i686/LICENSE
(from rev 148618, xfig/repos/staging-i686/LICENSE)
  xfig/repos/testing-i686/PKGBUILD
(from rev 148618, xfig/repos/staging-i686/PKGBUILD)
  xfig/repos/testing-i686/xfig-3.2.4-redhat.patch
(from rev 148618, xfig/repos/staging-i686/xfig-3.2.4-redhat.patch)
  xfig/repos/testing-i686/xfig-3.2.5-color-resources.patch
(from rev 148618, xfig/repos/staging-i686/xfig-3.2.5-color-resources.patch)
  xfig/repos/testing-i686/xfig-3.2.5-enable-Xaw3d.patch
(from rev 148618, xfig/repos/staging-i686/xfig-3.2.5-enable-Xaw3d.patch)
  xfig/repos/testing-i686/xfig-3.2.5-fhs.patch
(from rev 148618, xfig/repos/staging-i686/xfig-3.2.5-fhs.patch)
  xfig/repos/testing-i686/xfig-3.2.5-missing-protos.patch
(from rev 148618, xfig/repos/staging-i686/xfig-3.2.5-missing-protos.patch)
  xfig/repos/testing-i686/xfig-3.2.5-urwfonts.patch
(from rev 148618, xfig/repos/staging-i686/xfig-3.2.5-urwfonts.patch)
  xfig/repos/testing-i686/xfig-3.2.5b-fix-eps-reading.patch
(from rev 148618, xfig/repos/staging-i686/xfig-3.2.5b-fix-eps-reading.patch)
  xfig/repos/testing-i686/xfig-3.2.5b-libpng-1.5.patch
(from rev 148618, xfig/repos/staging-i686/xfig-3.2.5b-libpng-1.5.patch)
  xfig/repos/testing-i686/xfig.3.2.5-modularX.patch
(from rev 148618, xfig/repos/staging-i686/xfig.3.2.5-modularX.patch)
  xfig/repos/testing-i686/xfig.desktop
(from rev 148618, xfig/repos/staging-i686/xfig.desktop)
  xfig/repos/testing-i686/xfig.install
(from rev 148618, xfig/repos/staging-i686/xfig.install)
Deleted:
  xfig/repos/staging-i686/
  xfig/repos/testing-i686/LICENSE
  xfig/repos/testing-i686/PKGBUILD
  xfig/repos/testing-i686/xfig-3.2.4-redhat.patch
  xfig/repos/testing-i686/xfig-3.2.5-color-resources.patch
  xfig/repos/testing-i686/xfig-3.2.5-enable-Xaw3d.patch
  xfig/repos/testing-i686/xfig-3.2.5-fhs.patch
  xfig/repos/testing-i686/xfig-3.2.5-missing-protos.patch
  xfig/repos/testing-i686/xfig-3.2.5-urwfonts.patch
  xfig/repos/testing-i686/xfig-3.2.5b-fix-eps-reading.patch
  xfig/repos/testing-i686/xfig-3.2.5b-libpng-1.5.patch
  xfig/repos/testing-i686/xfig.3.2.5-modularX.patch
  xfig/repos/testing-i686/xfig.desktop
  xfig/repos/testing-i686/xfig.install

---+
 LICENSE   |   66 +++
 PKGBUILD  |  130 ++---
 xfig-3.2.4-redhat.patch   |   62 +++---
 xfig-3.2.5-color-resources.patch  |   78 -
 xfig-3.2.5-enable-Xaw3d.patch |   36 
 xfig-3.2.5-fhs.patch  |   24 ++---
 xfig-3.2.5-missing-protos.patch   |   22 ++---
 xfig-3.2.5-urwfonts.patch |  158 ++--
 xfig-3.2.5b-fix-eps-reading.patch |   92 ++--
 xfig-3.2.5b-libpng-1.5.patch  |  140 +++
 xfig.3.2.5-modularX.patch |   56 ++--
 xfig.desktop  |   94 ++---
 xfig.install  |   22 ++---
 13 files changed, 490 insertions(+), 490 deletions(-)

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


[arch-commits] Commit in xfig/repos (27 files)

2012-02-04 Thread andyrtr
Date: Saturday, February 4, 2012 @ 08:38:12
  Author: andyrtr
Revision: 148628

db-move: moved xfig from [staging] to [testing] (x86_64)

Added:
  xfig/repos/testing-x86_64/LICENSE
(from rev 148618, xfig/repos/staging-x86_64/LICENSE)
  xfig/repos/testing-x86_64/PKGBUILD
(from rev 148618, xfig/repos/staging-x86_64/PKGBUILD)
  xfig/repos/testing-x86_64/xfig-3.2.4-redhat.patch
(from rev 148618, xfig/repos/staging-x86_64/xfig-3.2.4-redhat.patch)
  xfig/repos/testing-x86_64/xfig-3.2.5-color-resources.patch
(from rev 148618, 
xfig/repos/staging-x86_64/xfig-3.2.5-color-resources.patch)
  xfig/repos/testing-x86_64/xfig-3.2.5-enable-Xaw3d.patch
(from rev 148618, xfig/repos/staging-x86_64/xfig-3.2.5-enable-Xaw3d.patch)
  xfig/repos/testing-x86_64/xfig-3.2.5-fhs.patch
(from rev 148618, xfig/repos/staging-x86_64/xfig-3.2.5-fhs.patch)
  xfig/repos/testing-x86_64/xfig-3.2.5-missing-protos.patch
(from rev 148618, xfig/repos/staging-x86_64/xfig-3.2.5-missing-protos.patch)
  xfig/repos/testing-x86_64/xfig-3.2.5-urwfonts.patch
(from rev 148618, xfig/repos/staging-x86_64/xfig-3.2.5-urwfonts.patch)
  xfig/repos/testing-x86_64/xfig-3.2.5b-fix-eps-reading.patch
(from rev 148618, 
xfig/repos/staging-x86_64/xfig-3.2.5b-fix-eps-reading.patch)
  xfig/repos/testing-x86_64/xfig-3.2.5b-libpng-1.5.patch
(from rev 148618, xfig/repos/staging-x86_64/xfig-3.2.5b-libpng-1.5.patch)
  xfig/repos/testing-x86_64/xfig.3.2.5-modularX.patch
(from rev 148618, xfig/repos/staging-x86_64/xfig.3.2.5-modularX.patch)
  xfig/repos/testing-x86_64/xfig.desktop
(from rev 148618, xfig/repos/staging-x86_64/xfig.desktop)
  xfig/repos/testing-x86_64/xfig.install
(from rev 148618, xfig/repos/staging-x86_64/xfig.install)
Deleted:
  xfig/repos/staging-x86_64/
  xfig/repos/testing-x86_64/LICENSE
  xfig/repos/testing-x86_64/PKGBUILD
  xfig/repos/testing-x86_64/xfig-3.2.4-redhat.patch
  xfig/repos/testing-x86_64/xfig-3.2.5-color-resources.patch
  xfig/repos/testing-x86_64/xfig-3.2.5-enable-Xaw3d.patch
  xfig/repos/testing-x86_64/xfig-3.2.5-fhs.patch
  xfig/repos/testing-x86_64/xfig-3.2.5-missing-protos.patch
  xfig/repos/testing-x86_64/xfig-3.2.5-urwfonts.patch
  xfig/repos/testing-x86_64/xfig-3.2.5b-fix-eps-reading.patch
  xfig/repos/testing-x86_64/xfig-3.2.5b-libpng-1.5.patch
  xfig/repos/testing-x86_64/xfig.3.2.5-modularX.patch
  xfig/repos/testing-x86_64/xfig.desktop
  xfig/repos/testing-x86_64/xfig.install

---+
 LICENSE   |   66 +++
 PKGBUILD  |  130 ++---
 xfig-3.2.4-redhat.patch   |   62 +++---
 xfig-3.2.5-color-resources.patch  |   78 -
 xfig-3.2.5-enable-Xaw3d.patch |   36 
 xfig-3.2.5-fhs.patch  |   24 ++---
 xfig-3.2.5-missing-protos.patch   |   22 ++---
 xfig-3.2.5-urwfonts.patch |  158 ++--
 xfig-3.2.5b-fix-eps-reading.patch |   92 ++--
 xfig-3.2.5b-libpng-1.5.patch  |  140 +++
 xfig.3.2.5-modularX.patch |   56 ++--
 xfig.desktop  |   94 ++---
 xfig.install  |   22 ++---
 13 files changed, 490 insertions(+), 490 deletions(-)

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


[arch-commits] Commit in namcap/trunk (PKGBUILD)

2012-02-04 Thread Rémy Oudompheng
Date: Saturday, February 4, 2012 @ 09:35:07
  Author: remy
Revision: 148629

upgpkg: namcap 3.2.2-1

New release.

Modified:
  namcap/trunk/PKGBUILD

--+
 PKGBUILD |   10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 13:38:12 UTC (rev 148628)
+++ PKGBUILD2012-02-04 14:35:07 UTC (rev 148629)
@@ -3,16 +3,18 @@
 # Contributor: Hugo Doria h...@archlinux.org
 
 pkgname=namcap
-pkgver=3.2.1
-pkgrel=2
+pkgver=3.2.2
+pkgrel=1
 pkgdesc=A Pacman package analyzer
 arch=('any')
 url=http://projects.archlinux.org/namcap.git/;
 license=('GPL')
-depends=('python' 'pyalpm=0.5' 'binutils' 'licenses')
+depends=('python' 'pyalpm=0.5' 'licenses'
+ # Utilities for executable analysis.
+ 'binutils' 'elfutils' 'prelink')
 makedepends=('python-distribute')
 source=(ftp://ftp.archlinux.org/other/$pkgname/${pkgname}-${pkgver}.tar.gz)
-md5sums=('b5e612e9c8b539620711597486877b92')
+sha1sums=('2d5a8111cbdf64a3e52ab15fe6c5ef52de515f02')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in namcap/repos (testing-any testing-any/PKGBUILD)

2012-02-04 Thread Rémy Oudompheng
Date: Saturday, February 4, 2012 @ 09:35:13
  Author: remy
Revision: 148630

archrelease: copy trunk to testing-any

Added:
  namcap/repos/testing-any/
  namcap/repos/testing-any/PKGBUILD
(from rev 148629, namcap/trunk/PKGBUILD)

--+
 PKGBUILD |   34 ++
 1 file changed, 34 insertions(+)

Copied: namcap/repos/testing-any/PKGBUILD (from rev 148629, 
namcap/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-02-04 14:35:13 UTC (rev 148630)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer : Rémy Oudompheng r...@archlinux.org
+# Contributor: Hugo Doria h...@archlinux.org
+
+pkgname=namcap
+pkgver=3.2.2
+pkgrel=1
+pkgdesc=A Pacman package analyzer
+arch=('any')
+url=http://projects.archlinux.org/namcap.git/;
+license=('GPL')
+depends=('python' 'pyalpm=0.5' 'licenses'
+ # Utilities for executable analysis.
+ 'binutils' 'elfutils' 'prelink')
+makedepends=('python-distribute')
+source=(ftp://ftp.archlinux.org/other/$pkgname/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('2d5a8111cbdf64a3e52ab15fe6c5ef52de515f02')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  env PARSE_PKGBUILD_PATH=${srcdir}/${pkgname}-${pkgver} \
+  PATH=${srcdir}/${pkgname}-${pkgver}:$PATH \
+  python setup.py test || true
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  python setup.py install --root=${pkgdir}
+}



[arch-commits] Commit in lame/trunk (PKGBUILD)

2012-02-04 Thread Ray Rashif
Date: Saturday, February 4, 2012 @ 11:03:02
  Author: schiv
Revision: 148631

upgpkg: lame 3.99.4-1

upstream release

Modified:
  lame/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 14:35:13 UTC (rev 148630)
+++ PKGBUILD2012-02-04 16:03:02 UTC (rev 148631)
@@ -4,7 +4,7 @@
 # Contributor: Hugo Doria h...@archlinux.org
 
 pkgname=lame
-pkgver=3.99.3
+pkgver=3.99.4
 pkgrel=1
 pkgdesc=A high quality MPEG Audio Layer III (MP3) encoder
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 license=('LGPL')
 options=('!libtool')
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('5ad31e33e70455eb3a7b79a5dd934fce')
+md5sums=('e54d7847bfd01f18d56c07e65147d75a')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in lame/repos (4 files)

2012-02-04 Thread Ray Rashif
Date: Saturday, February 4, 2012 @ 11:03:37
  Author: schiv
Revision: 148632

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

Added:
  lame/repos/extra-i686/PKGBUILD
(from rev 148631, lame/trunk/PKGBUILD)
  lame/repos/extra-x86_64/PKGBUILD
(from rev 148631, lame/trunk/PKGBUILD)
Deleted:
  lame/repos/extra-i686/PKGBUILD
  lame/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-02-04 16:03:02 UTC (rev 148631)
+++ extra-i686/PKGBUILD 2012-02-04 16:03:37 UTC (rev 148632)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Ionut Biru ib...@archlinux.org
-# Contributor: Hugo Doria h...@archlinux.org
-
-pkgname=lame
-pkgver=3.99.3
-pkgrel=1
-pkgdesc=A high quality MPEG Audio Layer III (MP3) encoder
-arch=('i686' 'x86_64')
-url=http://lame.sourceforge.net/;
-depends=('ncurses')
-makedepends=('nasm')
-license=('LGPL')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('5ad31e33e70455eb3a7b79a5dd934fce')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr \
-  --enable-nasm \
-  --enable-shared
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lame/repos/extra-i686/PKGBUILD (from rev 148631, lame/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-02-04 16:03:37 UTC (rev 148632)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Hugo Doria h...@archlinux.org
+
+pkgname=lame
+pkgver=3.99.4
+pkgrel=1
+pkgdesc=A high quality MPEG Audio Layer III (MP3) encoder
+arch=('i686' 'x86_64')
+url=http://lame.sourceforge.net/;
+depends=('ncurses')
+makedepends=('nasm')
+license=('LGPL')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('e54d7847bfd01f18d56c07e65147d75a')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+  --enable-nasm \
+  --enable-shared
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-02-04 16:03:02 UTC (rev 148631)
+++ extra-x86_64/PKGBUILD   2012-02-04 16:03:37 UTC (rev 148632)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Ionut Biru ib...@archlinux.org
-# Contributor: Hugo Doria h...@archlinux.org
-
-pkgname=lame
-pkgver=3.99.3
-pkgrel=1
-pkgdesc=A high quality MPEG Audio Layer III (MP3) encoder
-arch=('i686' 'x86_64')
-url=http://lame.sourceforge.net/;
-depends=('ncurses')
-makedepends=('nasm')
-license=('LGPL')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('5ad31e33e70455eb3a7b79a5dd934fce')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr \
-  --enable-nasm \
-  --enable-shared
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lame/repos/extra-x86_64/PKGBUILD (from rev 148631, lame/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-02-04 16:03:37 UTC (rev 148632)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Hugo Doria h...@archlinux.org
+
+pkgname=lame
+pkgver=3.99.4
+pkgrel=1
+pkgdesc=A high quality MPEG Audio Layer III (MP3) encoder
+arch=('i686' 'x86_64')
+url=http://lame.sourceforge.net/;
+depends=('ncurses')
+makedepends=('nasm')
+license=('LGPL')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('e54d7847bfd01f18d56c07e65147d75a')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+  --enable-nasm \
+  --enable-shared
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in audiofile/trunk (PKGBUILD)

2012-02-04 Thread Ray Rashif
Date: Saturday, February 4, 2012 @ 11:07:55
  Author: schiv
Revision: 148633

upgpkg: audiofile 0.3.3-1

upstream release

Modified:
  audiofile/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 16:03:37 UTC (rev 148632)
+++ PKGBUILD2012-02-04 16:07:55 UTC (rev 148633)
@@ -3,7 +3,7 @@
 # Contributor: dorphell dorph...@archlinux.org
 
 pkgname=audiofile
-pkgver=0.3.2
+pkgver=0.3.3
 pkgrel=1
 pkgdesc=Silicon Graphics Audio File Library
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('gcc-libs' 'alsa-lib')
 options=('!libtool')
 source=(http://audiofile.68k.org/$pkgname-$pkgver.tar.gz;)
-md5sums=('cb2c4fe6e899e688ffe5d1568581cb63')
+md5sums=('64c7a03023b4b181d997ff0b272d29e4')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in audiofile/repos (4 files)

2012-02-04 Thread Ray Rashif
Date: Saturday, February 4, 2012 @ 11:08:33
  Author: schiv
Revision: 148634

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

Added:
  audiofile/repos/extra-i686/PKGBUILD
(from rev 148633, audiofile/trunk/PKGBUILD)
  audiofile/repos/extra-x86_64/PKGBUILD
(from rev 148633, audiofile/trunk/PKGBUILD)
Deleted:
  audiofile/repos/extra-i686/PKGBUILD
  audiofile/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-02-04 16:07:55 UTC (rev 148633)
+++ extra-i686/PKGBUILD 2012-02-04 16:08:33 UTC (rev 148634)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: dorphell dorph...@archlinux.org
-
-pkgname=audiofile
-pkgver=0.3.2
-pkgrel=1
-pkgdesc=Silicon Graphics Audio File Library
-arch=('i686' 'x86_64')
-url=http://www.68k.org/~michael/audiofile/;
-license=('LGPL')
-depends=('gcc-libs' 'alsa-lib')
-options=('!libtool')
-source=(http://audiofile.68k.org/$pkgname-$pkgver.tar.gz;)
-md5sums=('cb2c4fe6e899e688ffe5d1568581cb63')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: audiofile/repos/extra-i686/PKGBUILD (from rev 148633, 
audiofile/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-02-04 16:08:33 UTC (rev 148634)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: dorphell dorph...@archlinux.org
+
+pkgname=audiofile
+pkgver=0.3.3
+pkgrel=1
+pkgdesc=Silicon Graphics Audio File Library
+arch=('i686' 'x86_64')
+url=http://www.68k.org/~michael/audiofile/;
+license=('LGPL')
+depends=('gcc-libs' 'alsa-lib')
+options=('!libtool')
+source=(http://audiofile.68k.org/$pkgname-$pkgver.tar.gz;)
+md5sums=('64c7a03023b4b181d997ff0b272d29e4')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-02-04 16:07:55 UTC (rev 148633)
+++ extra-x86_64/PKGBUILD   2012-02-04 16:08:33 UTC (rev 148634)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: dorphell dorph...@archlinux.org
-
-pkgname=audiofile
-pkgver=0.3.2
-pkgrel=1
-pkgdesc=Silicon Graphics Audio File Library
-arch=('i686' 'x86_64')
-url=http://www.68k.org/~michael/audiofile/;
-license=('LGPL')
-depends=('gcc-libs' 'alsa-lib')
-options=('!libtool')
-source=(http://audiofile.68k.org/$pkgname-$pkgver.tar.gz;)
-md5sums=('cb2c4fe6e899e688ffe5d1568581cb63')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: audiofile/repos/extra-x86_64/PKGBUILD (from rev 148633, 
audiofile/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-02-04 16:08:33 UTC (rev 148634)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: dorphell dorph...@archlinux.org
+
+pkgname=audiofile
+pkgver=0.3.3
+pkgrel=1
+pkgdesc=Silicon Graphics Audio File Library
+arch=('i686' 'x86_64')
+url=http://www.68k.org/~michael/audiofile/;
+license=('LGPL')
+depends=('gcc-libs' 'alsa-lib')
+options=('!libtool')
+source=(http://audiofile.68k.org/$pkgname-$pkgver.tar.gz;)
+md5sums=('64c7a03023b4b181d997ff0b272d29e4')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in snd/trunk (PKGBUILD)

2012-02-04 Thread Ray Rashif
Date: Saturday, February 4, 2012 @ 11:32:37
  Author: schiv
Revision: 148635

upgpkg: snd 12.7-1

upstream release; doesn't work wth --as-needed

Modified:
  snd/trunk/PKGBUILD

--+
 PKGBUILD |2 ++
 1 file changed, 2 insertions(+)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 16:08:33 UTC (rev 148634)
+++ PKGBUILD2012-02-04 16:32:37 UTC (rev 148635)
@@ -21,6 +21,8 @@
 build() {
   cd $srcdir/$pkgname-$pkgver
 
+  export LDFLAGS=${LDFLAGS/--as-needed,}
+
   ./configure --prefix=/usr \
   --with-alsa \
   --with-jack



[arch-commits] Commit in snd/repos (6 files)

2012-02-04 Thread Ray Rashif
Date: Saturday, February 4, 2012 @ 11:33:10
  Author: schiv
Revision: 148636

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

Added:
  snd/repos/extra-i686/.contrib
(from rev 148635, snd/trunk/.contrib)
  snd/repos/extra-i686/PKGBUILD
(from rev 148635, snd/trunk/PKGBUILD)
  snd/repos/extra-x86_64/.contrib
(from rev 148635, snd/trunk/.contrib)
  snd/repos/extra-x86_64/PKGBUILD
(from rev 148635, snd/trunk/PKGBUILD)
Deleted:
  snd/repos/extra-i686/PKGBUILD
  snd/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/.contrib   |2 +
 extra-i686/PKGBUILD   |   81 
 extra-x86_64/.contrib |2 +
 extra-x86_64/PKGBUILD |   81 
 4 files changed, 86 insertions(+), 80 deletions(-)

Copied: snd/repos/extra-i686/.contrib (from rev 148635, snd/trunk/.contrib)
===
--- extra-i686/.contrib (rev 0)
+++ extra-i686/.contrib 2012-02-04 16:33:10 UTC (rev 148636)
@@ -0,0 +1,2 @@
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Contributor: dorphell dorph...@archlinux.org

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-02-04 16:32:37 UTC (rev 148635)
+++ extra-i686/PKGBUILD 2012-02-04 16:33:10 UTC (rev 148636)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: dorphell dorph...@archlinux.org
-
-pkgname=snd
-pkgver=12.5
-pkgrel=1
-pkgdesc=An advanced sound editor
-arch=('i686' 'x86_64')
-url=http://ccrma.stanford.edu/software/snd/;
-license=('custom')
-depends=('lesstif' 'jack' 'gamin' 'gsl' 'fftw')
-makedepends=('ladspa' 'wavpack' 'flac' 'speex' 'libxpm'
- 'timidity++' 'mpg123' 'vorbis-tools' 'gmp')
-optdepends=('ladspa' 'wavpack' 'flac' 'speex'
-'timidity++' 'mpg123' 'vorbis-tools')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('53bed2048fe9287f9a0e6a6d63536729')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr \
-  --with-alsa \
-  --with-jack
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make prefix=$pkgdir/usr install
-
-  install -Dm644 COPYING \
-$pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-# vim:set ts=2 sw=2 et:

Copied: snd/repos/extra-i686/PKGBUILD (from rev 148635, snd/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-02-04 16:33:10 UTC (rev 148636)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+# Contributor: see .contrib
+
+pkgname=snd
+pkgver=12.7
+pkgrel=1
+pkgdesc=An advanced sound editor
+arch=('i686' 'x86_64')
+url=http://ccrma.stanford.edu/software/snd/;
+license=('custom')
+depends=('lesstif' 'jack' 'gamin' 'gsl' 'fftw')
+makedepends=('ladspa' 'wavpack' 'flac' 'speex' 'libxpm'
+ 'timidity++' 'mpg123' 'vorbis-tools' 'gmp')
+optdepends=('ladspa' 'wavpack' 'flac' 'speex'
+'timidity++' 'mpg123' 'vorbis-tools')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('5edb4ee488c3406c9aa582c5f11a4492')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  export LDFLAGS=${LDFLAGS/--as-needed,}
+
+  ./configure --prefix=/usr \
+  --with-alsa \
+  --with-jack
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make prefix=$pkgdir/usr install
+
+  install -Dm644 COPYING \
+$pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:

Copied: snd/repos/extra-x86_64/.contrib (from rev 148635, snd/trunk/.contrib)
===
--- extra-x86_64/.contrib   (rev 0)
+++ extra-x86_64/.contrib   2012-02-04 16:33:10 UTC (rev 148636)
@@ -0,0 +1,2 @@
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Contributor: dorphell dorph...@archlinux.org

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-02-04 16:32:37 UTC (rev 148635)
+++ extra-x86_64/PKGBUILD   2012-02-04 16:33:10 UTC (rev 148636)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: dorphell dorph...@archlinux.org
-
-pkgname=snd
-pkgver=12.5
-pkgrel=1
-pkgdesc=An advanced sound editor
-arch=('i686' 'x86_64')
-url=http://ccrma.stanford.edu/software/snd/;
-license=('custom')
-depends=('lesstif' 'jack' 'gamin' 'gsl' 'fftw')
-makedepends=('ladspa' 'wavpack' 'flac' 'speex' 'libxpm'
- 

[arch-commits] Commit in eric4/trunk (PKGBUILD)

2012-02-04 Thread Ray Rashif
Date: Saturday, February 4, 2012 @ 13:24:33
  Author: schiv
Revision: 148637

upgpkg: eric4 4.5.0-1

upstream release

Modified:
  eric4/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 16:33:10 UTC (rev 148636)
+++ PKGBUILD2012-02-04 18:24:33 UTC (rev 148637)
@@ -4,7 +4,7 @@
 # See .contrib for older/other contributors
 
 pkgname=eric4
-pkgver=4.4.19
+pkgver=4.5.0
 pkgrel=1
 pkgdesc=A full-featured Python 2.x and Ruby IDE in PyQt4
 arch=('any')
@@ -15,7 +15,7 @@
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/eric-ide/$pkgname-$pkgver.tar.gz;
 $pkgname.desktop)
-md5sums=('58ac6cb0f0af79b07f0b95421dc89f53'
+md5sums=('ec72accc3fcb70523eec53bc88a52e74'
  'bce515b66a2c63dfc76a0f92edbe2ecb')
 
 build() {



[arch-commits] Commit in eric4/repos/extra-any (8 files)

2012-02-04 Thread Ray Rashif
Date: Saturday, February 4, 2012 @ 13:24:59
  Author: schiv
Revision: 148638

archrelease: copy trunk to extra-any

Added:
  eric4/repos/extra-any/.contrib
(from rev 148637, eric4/trunk/.contrib)
  eric4/repos/extra-any/PKGBUILD
(from rev 148637, eric4/trunk/PKGBUILD)
  eric4/repos/extra-any/eric4.desktop
(from rev 148637, eric4/trunk/eric4.desktop)
  eric4/repos/extra-any/eric4.install
(from rev 148637, eric4/trunk/eric4.install)
Deleted:
  eric4/repos/extra-any/.contrib
  eric4/repos/extra-any/PKGBUILD
  eric4/repos/extra-any/eric4.desktop
  eric4/repos/extra-any/eric4.install

---+
 .contrib  |8 ++---
 PKGBUILD  |   82 
 eric4.desktop |   20 ++---
 eric4.install |   20 ++---
 4 files changed, 65 insertions(+), 65 deletions(-)

Deleted: .contrib
===
--- .contrib2012-02-04 18:24:33 UTC (rev 148637)
+++ .contrib2012-02-04 18:24:59 UTC (rev 148638)
@@ -1,4 +0,0 @@
-This is a list of (past) contributors not already credited in the PKGBUILD:
-
-riai r...@bigfoot.com
-Ben b...@benmazer.net

Copied: eric4/repos/extra-any/.contrib (from rev 148637, eric4/trunk/.contrib)
===
--- .contrib(rev 0)
+++ .contrib2012-02-04 18:24:59 UTC (rev 148638)
@@ -0,0 +1,4 @@
+This is a list of (past) contributors not already credited in the PKGBUILD:
+
+riai r...@bigfoot.com
+Ben b...@benmazer.net

Deleted: PKGBUILD
===
--- PKGBUILD2012-02-04 18:24:33 UTC (rev 148637)
+++ PKGBUILD2012-02-04 18:24:59 UTC (rev 148638)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-# See .contrib for older/other contributors
-
-pkgname=eric4
-pkgver=4.4.19
-pkgrel=1
-pkgdesc=A full-featured Python 2.x and Ruby IDE in PyQt4
-arch=('any')
-url=http://eric-ide.python-projects.org/;
-license=('GPL3')
-depends=('python2-qscintilla')
-conflicts=('eric5')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/eric-ide/$pkgname-$pkgver.tar.gz;
-$pkgname.desktop)
-md5sums=('58ac6cb0f0af79b07f0b95421dc89f53'
- 'bce515b66a2c63dfc76a0f92edbe2ecb')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-
-   # our pyxml is patched
-   # not version-depending because not critical
-   sed -i 's/v  (0, 8, 6)/v  (0, 8, 4)/' install.py
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-   python2 install.py -c -b /usr/bin -i $pkgdir
-
-  # freedesktop.org compatibility
-   install -Dm644 $srcdir/$pkgname.desktop \
-   $pkgdir/usr/share/applications/$pkgname.desktop
-  install -Dm644 eric/icons/default/eric.png \
-   $pkgdir/usr/share/pixmaps/$pkgname.png
-}
-
-# vim:set ts=2 sw=2 et:

Copied: eric4/repos/extra-any/PKGBUILD (from rev 148637, eric4/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-02-04 18:24:59 UTC (rev 148638)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# See .contrib for older/other contributors
+
+pkgname=eric4
+pkgver=4.5.0
+pkgrel=1
+pkgdesc=A full-featured Python 2.x and Ruby IDE in PyQt4
+arch=('any')
+url=http://eric-ide.python-projects.org/;
+license=('GPL3')
+depends=('python2-qscintilla')
+conflicts=('eric5')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/eric-ide/$pkgname-$pkgver.tar.gz;
+$pkgname.desktop)
+md5sums=('ec72accc3fcb70523eec53bc88a52e74'
+ 'bce515b66a2c63dfc76a0f92edbe2ecb')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+
+   # our pyxml is patched
+   # not version-depending because not critical
+   sed -i 's/v  (0, 8, 6)/v  (0, 8, 4)/' install.py
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+   python2 install.py -c -b /usr/bin -i $pkgdir
+
+  # freedesktop.org compatibility
+   install -Dm644 $srcdir/$pkgname.desktop \
+   $pkgdir/usr/share/applications/$pkgname.desktop
+  install -Dm644 eric/icons/default/eric.png \
+   $pkgdir/usr/share/pixmaps/$pkgname.png
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: eric4.desktop
===
--- eric4.desktop   2012-02-04 18:24:33 UTC (rev 148637)
+++ eric4.desktop   2012-02-04 18:24:59 UTC (rev 148638)
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Type=Application
-Exec=eric4
-MimeType=application/x-eric4;
-Icon=eric4
-Terminal=false
-Name=Eric 4
-Comment=Python 2.x  Ruby IDE
-Categories=Qt;Python;Development;IDE;
-StartupNotify=true

Copied: eric4/repos/extra-any/eric4.desktop (from rev 148637, 
eric4/trunk/eric4.desktop)

[arch-commits] Commit in kmod/trunk (9 files)

2012-02-04 Thread Dave Reisner
Date: Saturday, February 4, 2012 @ 16:39:41
  Author: dreisner
Revision: 148639

upgpkg: kmod 4-3

backport more fixes
- modprobe: avoid bailing immediately on module insertion fail
- modprobe: remove support for path based loading
- modinfo: be more careful about path based loading
- lib (depmod): use realpath to canonicalize paths

Added:
  kmod/trunk/0005-continue-after-module-insert-fail.patch
  kmod/trunk/0006-modprobe-remove-support-for-path-based-loading.patch
  kmod/trunk/0007-modinfo-handle-arguments-more-carefully.patch
  kmod/trunk/0008-Use-realpath-to-canonicalize-provided-paths.patch
Modified:
  kmod/trunk/0001-partially-fix-parsing-of-alias-with-dots.patch
  kmod/trunk/0002-libkmod-module-used-shared-code-in-module-creation.patch
  kmod/trunk/0003-modprobe-handle-all-error-returns-from-init_module.patch
  kmod/trunk/0004-modprobe-remove-0-refcnt-deps.patch
  kmod/trunk/PKGBUILD

---+
 0001-partially-fix-parsing-of-alias-with-dots.patch   |4 
 0002-libkmod-module-used-shared-code-in-module-creation.patch |4 
 0003-modprobe-handle-all-error-returns-from-init_module.patch |4 
 0004-modprobe-remove-0-refcnt-deps.patch  |4 
 0005-continue-after-module-insert-fail.patch  |   25 +
 0006-modprobe-remove-support-for-path-based-loading.patch |   79 
 0007-modinfo-handle-arguments-more-carefully.patch|   86 +
 0008-Use-realpath-to-canonicalize-provided-paths.patch|  163 ++
 PKGBUILD  |   31 +
 9 files changed, 382 insertions(+), 18 deletions(-)

Modified: 0001-partially-fix-parsing-of-alias-with-dots.patch
===
--- 0001-partially-fix-parsing-of-alias-with-dots.patch 2012-02-04 18:24:59 UTC 
(rev 148638)
+++ 0001-partially-fix-parsing-of-alias-with-dots.patch 2012-02-04 21:39:41 UTC 
(rev 148639)
@@ -1,7 +1,7 @@
-From cdaf4b2f3ef60365c6b8006a63410368a7b38f39 Mon Sep 17 00:00:00 2001
+From 7b67a2c080e77acef0344d5a7518c07dbac830f1 Mon Sep 17 00:00:00 2001
 From: Dave Reisner dreis...@archlinux.org
 Date: Tue, 31 Jan 2012 00:12:32 -0500
-Subject: [PATCH 1/4] partially fix parsing of alias with dots
+Subject: [PATCH 1/8] partially fix parsing of alias with dots
 
 ---
  libkmod/libkmod-util.c |4 +---

Modified: 0002-libkmod-module-used-shared-code-in-module-creation.patch
===
--- 0002-libkmod-module-used-shared-code-in-module-creation.patch   
2012-02-04 18:24:59 UTC (rev 148638)
+++ 0002-libkmod-module-used-shared-code-in-module-creation.patch   
2012-02-04 21:39:41 UTC (rev 148639)
@@ -1,7 +1,7 @@
-From 1d2f64689b2456ade81d6d489c4f5bfb5fdb92fd Mon Sep 17 00:00:00 2001
+From 133132b6129f86c1f0aabdf3e807f56ea0190f8a Mon Sep 17 00:00:00 2001
 From: Dave Reisner dreis...@archlinux.org
 Date: Tue, 31 Jan 2012 00:13:43 -0500
-Subject: [PATCH 2/4] libkmod-module: used shared code in module creation
+Subject: [PATCH 2/8] libkmod-module: used shared code in module creation
 
 ---
  libkmod/libkmod-module.c |  135 ++---

Modified: 0003-modprobe-handle-all-error-returns-from-init_module.patch
===
--- 0003-modprobe-handle-all-error-returns-from-init_module.patch   
2012-02-04 18:24:59 UTC (rev 148638)
+++ 0003-modprobe-handle-all-error-returns-from-init_module.patch   
2012-02-04 21:39:41 UTC (rev 148639)
@@ -1,7 +1,7 @@
-From fdf78d80d298353c29e1fe8c00602669dd9662bb Mon Sep 17 00:00:00 2001
+From 2e42e3b3af219575dc855971f08d8bed226ebfa8 Mon Sep 17 00:00:00 2001
 From: Dave Reisner dreis...@archlinux.org
 Date: Mon, 30 Jan 2012 23:05:26 -0500
-Subject: [PATCH 3/4] modprobe: handle all error returns from init_module
+Subject: [PATCH 3/8] modprobe: handle all error returns from init_module
 
 ---
  tools/kmod-modprobe.c |4 +++-

Modified: 0004-modprobe-remove-0-refcnt-deps.patch
===
--- 0004-modprobe-remove-0-refcnt-deps.patch2012-02-04 18:24:59 UTC (rev 
148638)
+++ 0004-modprobe-remove-0-refcnt-deps.patch2012-02-04 21:39:41 UTC (rev 
148639)
@@ -1,7 +1,7 @@
-From 4e3dd21aff55b5bbaa08b037fc2a5625bfffc0a5 Mon Sep 17 00:00:00 2001
+From f169a0c3737b8ac69499240fca8314a2bd67a0a1 Mon Sep 17 00:00:00 2001
 From: Dave Reisner dreis...@archlinux.org
 Date: Mon, 30 Jan 2012 23:39:30 -0500
-Subject: [PATCH 4/4] modprobe: remove 0 refcnt deps
+Subject: [PATCH 4/8] modprobe: remove 0 refcnt deps
 
 ---
  tools/kmod-modprobe.c |   15 +--

Added: 0005-continue-after-module-insert-fail.patch
===
--- 0005-continue-after-module-insert-fail.patch
(rev 0)
+++ 

[arch-commits] Commit in kmod/repos (22 files)

2012-02-04 Thread Dave Reisner
Date: Saturday, February 4, 2012 @ 16:40:08
  Author: dreisner
Revision: 148640

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/0001-partially-fix-parsing-of-alias-with-dots.patch
(from rev 148639, 
kmod/trunk/0001-partially-fix-parsing-of-alias-with-dots.patch)
  
kmod/repos/testing-i686/0002-libkmod-module-used-shared-code-in-module-creation.patch
(from rev 148639, 
kmod/trunk/0002-libkmod-module-used-shared-code-in-module-creation.patch)
  
kmod/repos/testing-i686/0003-modprobe-handle-all-error-returns-from-init_module.patch
(from rev 148639, 
kmod/trunk/0003-modprobe-handle-all-error-returns-from-init_module.patch)
  kmod/repos/testing-i686/0004-modprobe-remove-0-refcnt-deps.patch
(from rev 148639, kmod/trunk/0004-modprobe-remove-0-refcnt-deps.patch)
  kmod/repos/testing-i686/0005-continue-after-module-insert-fail.patch
(from rev 148639, kmod/trunk/0005-continue-after-module-insert-fail.patch)
  
kmod/repos/testing-i686/0006-modprobe-remove-support-for-path-based-loading.patch
(from rev 148639, 
kmod/trunk/0006-modprobe-remove-support-for-path-based-loading.patch)
  kmod/repos/testing-i686/0007-modinfo-handle-arguments-more-carefully.patch
(from rev 148639, 
kmod/trunk/0007-modinfo-handle-arguments-more-carefully.patch)
  kmod/repos/testing-i686/0008-Use-realpath-to-canonicalize-provided-paths.patch
(from rev 148639, 
kmod/trunk/0008-Use-realpath-to-canonicalize-provided-paths.patch)
  kmod/repos/testing-i686/PKGBUILD
(from rev 148639, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 148639, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/0001-partially-fix-parsing-of-alias-with-dots.patch
(from rev 148639, 
kmod/trunk/0001-partially-fix-parsing-of-alias-with-dots.patch)
  
kmod/repos/testing-x86_64/0002-libkmod-module-used-shared-code-in-module-creation.patch
(from rev 148639, 
kmod/trunk/0002-libkmod-module-used-shared-code-in-module-creation.patch)
  
kmod/repos/testing-x86_64/0003-modprobe-handle-all-error-returns-from-init_module.patch
(from rev 148639, 
kmod/trunk/0003-modprobe-handle-all-error-returns-from-init_module.patch)
  kmod/repos/testing-x86_64/0004-modprobe-remove-0-refcnt-deps.patch
(from rev 148639, kmod/trunk/0004-modprobe-remove-0-refcnt-deps.patch)
  kmod/repos/testing-x86_64/0005-continue-after-module-insert-fail.patch
(from rev 148639, kmod/trunk/0005-continue-after-module-insert-fail.patch)
  
kmod/repos/testing-x86_64/0006-modprobe-remove-support-for-path-based-loading.patch
(from rev 148639, 
kmod/trunk/0006-modprobe-remove-support-for-path-based-loading.patch)
  kmod/repos/testing-x86_64/0007-modinfo-handle-arguments-more-carefully.patch
(from rev 148639, 
kmod/trunk/0007-modinfo-handle-arguments-more-carefully.patch)
  
kmod/repos/testing-x86_64/0008-Use-realpath-to-canonicalize-provided-paths.patch
(from rev 148639, 
kmod/trunk/0008-Use-realpath-to-canonicalize-provided-paths.patch)
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 148639, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 148639, kmod/trunk/depmod-search.conf)

--+
 testing-i686/0001-partially-fix-parsing-of-alias-with-dots.patch | 
  34 +
 testing-i686/0002-libkmod-module-used-shared-code-in-module-creation.patch   | 
 196 ++
 testing-i686/0003-modprobe-handle-all-error-returns-from-init_module.patch   | 
  34 +
 testing-i686/0004-modprobe-remove-0-refcnt-deps.patch| 
  52 ++
 testing-i686/0005-continue-after-module-insert-fail.patch| 
  25 +
 testing-i686/0006-modprobe-remove-support-for-path-based-loading.patch   | 
  79 
 testing-i686/0007-modinfo-handle-arguments-more-carefully.patch  | 
  86 
 testing-i686/0008-Use-realpath-to-canonicalize-provided-paths.patch  | 
 163 
 testing-i686/PKGBUILD| 
  80 
 testing-i686/depmod-search.conf  | 
   5 
 testing-x86_64/0001-partially-fix-parsing-of-alias-with-dots.patch   | 
  34 +
 testing-x86_64/0002-libkmod-module-used-shared-code-in-module-creation.patch | 
 196 ++
 testing-x86_64/0003-modprobe-handle-all-error-returns-from-init_module.patch | 
  34 +
 testing-x86_64/0004-modprobe-remove-0-refcnt-deps.patch  | 
  52 ++
 testing-x86_64/0005-continue-after-module-insert-fail.patch  | 
  25 +
 testing-x86_64/0006-modprobe-remove-support-for-path-based-loading.patch | 
  79 
 testing-x86_64/0007-modinfo-handle-arguments-more-carefully.patch| 
  86 
 testing-x86_64/0008-Use-realpath-to-canonicalize-provided-paths.patch| 
 163 
 testing-x86_64/PKGBUILD  

[arch-commits] Commit in smb4k/trunk (PKGBUILD smb4k.install)

2012-02-04 Thread Giovanni Scafora
Date: Saturday, February 4, 2012 @ 18:31:39
  Author: giovanni
Revision: 148641

upgpkg: smb4k 1.0.0-1

upstream release

Modified:
  smb4k/trunk/PKGBUILD
  smb4k/trunk/smb4k.install

---+
 PKGBUILD  |   13 +++--
 smb4k.install |   11 ++-
 2 files changed, 13 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 21:40:08 UTC (rev 148640)
+++ PKGBUILD2012-02-04 23:31:39 UTC (rev 148641)
@@ -3,22 +3,23 @@
 # Contributor: Emanuele Rampichini emanuele.rampich...@gmail.com
 
 pkgname=smb4k
-pkgver=0.10.90
-pkgrel=2
+pkgver=1.0.0
+pkgrel=1
 pkgdesc=A KDE program that browses samba shares
 arch=('i686' 'x86_64')
-url=http://smb4k.berlios.de/;
+url=http://smb4k.sourceforge.net/;
 license=('GPL')
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4' 'docbook-xsl')
 install=smb4k.install
-source=(http://downloads.sourceforge.net/project/${pkgname}/Smb4K%20%28development%20releases%29/${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('6e166eead700e0a21d4f324be4471e11')
+source=(http://downloads.sourceforge.net/project/${pkgname}/Smb4K%20%28stable%20releases%29/${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('d00b71aac63aa9c68e68e5980c07a01b')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
 
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=RELEASE
   make VERBOSE=1
 }
 

Modified: smb4k.install
===
--- smb4k.install   2012-02-04 21:40:08 UTC (rev 148640)
+++ smb4k.install   2012-02-04 23:31:39 UTC (rev 148641)
@@ -1,10 +1,11 @@
 post_install() {
-echo == Note: To enable mounting and unmounting of smb/cifs shares as
-echo == user, you will need to issue the following command as root:
-echo # chmod +s \$(which mount.cifs)
-echo == These command will need to be re-run every upgrade of smbclient
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
 }
 
 post_upgrade() {
-post_install $1 
+  post_install
 }
+
+post_remove() {
+  post_install
+}



[arch-commits] Commit in smb4k/repos (8 files)

2012-02-04 Thread Giovanni Scafora
Date: Saturday, February 4, 2012 @ 18:32:14
  Author: giovanni
Revision: 148642

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

Added:
  smb4k/repos/extra-i686/PKGBUILD
(from rev 148641, smb4k/trunk/PKGBUILD)
  smb4k/repos/extra-i686/smb4k.install
(from rev 148641, smb4k/trunk/smb4k.install)
  smb4k/repos/extra-x86_64/PKGBUILD
(from rev 148641, smb4k/trunk/PKGBUILD)
  smb4k/repos/extra-x86_64/smb4k.install
(from rev 148641, smb4k/trunk/smb4k.install)
Deleted:
  smb4k/repos/extra-i686/PKGBUILD
  smb4k/repos/extra-i686/smb4k.install
  smb4k/repos/extra-x86_64/PKGBUILD
  smb4k/repos/extra-x86_64/smb4k.install

+
 extra-i686/PKGBUILD|   59 +--
 extra-i686/smb4k.install   |   21 ---
 extra-x86_64/PKGBUILD  |   59 +--
 extra-x86_64/smb4k.install |   21 ---
 4 files changed, 82 insertions(+), 78 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-02-04 23:31:39 UTC (rev 148641)
+++ extra-i686/PKGBUILD 2012-02-04 23:32:14 UTC (rev 148642)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Emanuele Rampichini emanuele.rampich...@gmail.com
-
-pkgname=smb4k
-pkgver=0.10.90
-pkgrel=2
-pkgdesc=A KDE program that browses samba shares
-arch=('i686' 'x86_64')
-url=http://smb4k.berlios.de/;
-license=('GPL')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4' 'docbook-xsl')
-install=smb4k.install
-source=(http://downloads.sourceforge.net/project/${pkgname}/Smb4K%20%28development%20releases%29/${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('6e166eead700e0a21d4f324be4471e11')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE
-  make VERBOSE=1
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}

Copied: smb4k/repos/extra-i686/PKGBUILD (from rev 148641, smb4k/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-02-04 23:32:14 UTC (rev 148642)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Emanuele Rampichini emanuele.rampich...@gmail.com
+
+pkgname=smb4k
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=A KDE program that browses samba shares
+arch=('i686' 'x86_64')
+url=http://smb4k.sourceforge.net/;
+license=('GPL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'docbook-xsl')
+install=smb4k.install
+source=(http://downloads.sourceforge.net/project/${pkgname}/Smb4K%20%28stable%20releases%29/${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('d00b71aac63aa9c68e68e5980c07a01b')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=RELEASE
+  make VERBOSE=1
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/smb4k.install
===
--- extra-i686/smb4k.install2012-02-04 23:31:39 UTC (rev 148641)
+++ extra-i686/smb4k.install2012-02-04 23:32:14 UTC (rev 148642)
@@ -1,10 +0,0 @@
-post_install() {
-echo == Note: To enable mounting and unmounting of smb/cifs shares as
-echo == user, you will need to issue the following command as root:
-echo # chmod +s \$(which mount.cifs)
-echo == These command will need to be re-run every upgrade of smbclient
-}
-
-post_upgrade() {
-post_install $1 
-}

Copied: smb4k/repos/extra-i686/smb4k.install (from rev 148641, 
smb4k/trunk/smb4k.install)
===
--- extra-i686/smb4k.install(rev 0)
+++ extra-i686/smb4k.install2012-02-04 23:32:14 UTC (rev 148642)
@@ -0,0 +1,11 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-02-04 23:31:39 UTC (rev 148641)
+++ extra-x86_64/PKGBUILD   2012-02-04 23:32:14 UTC (rev 148642)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Emanuele Rampichini emanuele.rampich...@gmail.com
-
-pkgname=smb4k
-pkgver=0.10.90
-pkgrel=2
-pkgdesc=A KDE program that browses samba shares
-arch=('i686' 'x86_64')
-url=http://smb4k.berlios.de/;
-license=('GPL')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4' 'docbook-xsl')
-install=smb4k.install
-source=(http://downloads.sourceforge.net/project/${pkgname}/Smb4K%20%28development%20releases%29/${pkgver}/${pkgname}-${pkgver}.tar.bz2;)

[arch-commits] Commit in fcitx/trunk (PKGBUILD fcitx.install)

2012-02-04 Thread Eric Bélanger
Date: Saturday, February 4, 2012 @ 20:56:09
  Author: eric
Revision: 148643

upgpkg: fcitx 4.2.0-1

Upstream update, Add missing depends

Modified:
  fcitx/trunk/PKGBUILD
  fcitx/trunk/fcitx.install

---+
 PKGBUILD  |7 ---
 fcitx.install |5 +++--
 2 files changed, 7 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-04 23:32:14 UTC (rev 148642)
+++ PKGBUILD2012-02-05 01:56:09 UTC (rev 148643)
@@ -4,14 +4,14 @@
 
 pkgbase=fcitx
 pkgname=('fcitx' 'fcitx-gtk2' 'fcitx-gtk3' 'fcitx-qt')
-pkgver=4.1.2
+pkgver=4.2.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://code.google.com/p/fcitx/;
 license=('GPL')
 makedepends=('cmake' 'intltool' 'doxygen' 'gtk2' 'gtk3' 'qt' 'dbus-glib' 'icu')
 source=(http://fcitx.googlecode.com/files/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('d2d4e725b1c2ed60543d466504954b631d5689e3')
+sha1sums=('b3c09f1eda7fb71208d348c34389dc824d6b2a80')
 
 build() {
   cd ${srcdir}
@@ -28,7 +28,8 @@
 
 package_fcitx() {
   pkgdesc=Free Chinese Input Toy of X - Input Method Server for X window 
system
-  depends=('dbus-core' 'pango')
+  depends=('dbus-core' 'pango' 'libxinerama' 'gtk-update-icon-cache' \
+   'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils')
   install=fcitx.install
 
   cd ${srcdir}/build

Modified: fcitx.install
===
--- fcitx.install   2012-02-04 23:32:14 UTC (rev 148642)
+++ fcitx.install   2012-02-05 01:56:09 UTC (rev 148643)
@@ -1,6 +1,7 @@
 post_install() {
-  [[ -x usr/bin/gtk-update-icon-cache ]]  gtk-update-icon-cache -q -t -f 
usr/share/icons/hicolor || true
-  [[ -x usr/bin/update-desktop-database ]]  update-desktop-database -q || 
true
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+  update-mime-database usr/share/mime  /dev/null
 }
 
 post_upgrade() {



[arch-commits] Commit in fcitx/repos (16 files)

2012-02-04 Thread Eric Bélanger
Date: Saturday, February 4, 2012 @ 20:57:05
  Author: eric
Revision: 148644

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

Added:
  fcitx/repos/extra-i686/PKGBUILD
(from rev 148643, fcitx/trunk/PKGBUILD)
  fcitx/repos/extra-i686/fcitx-gtk2.install
(from rev 148643, fcitx/trunk/fcitx-gtk2.install)
  fcitx/repos/extra-i686/fcitx-gtk3.install
(from rev 148643, fcitx/trunk/fcitx-gtk3.install)
  fcitx/repos/extra-i686/fcitx.install
(from rev 148643, fcitx/trunk/fcitx.install)
  fcitx/repos/extra-x86_64/PKGBUILD
(from rev 148643, fcitx/trunk/PKGBUILD)
  fcitx/repos/extra-x86_64/fcitx-gtk2.install
(from rev 148643, fcitx/trunk/fcitx-gtk2.install)
  fcitx/repos/extra-x86_64/fcitx-gtk3.install
(from rev 148643, fcitx/trunk/fcitx-gtk3.install)
  fcitx/repos/extra-x86_64/fcitx.install
(from rev 148643, fcitx/trunk/fcitx.install)
Deleted:
  fcitx/repos/extra-i686/PKGBUILD
  fcitx/repos/extra-i686/fcitx-gtk2.install
  fcitx/repos/extra-i686/fcitx-gtk3.install
  fcitx/repos/extra-i686/fcitx.install
  fcitx/repos/extra-x86_64/PKGBUILD
  fcitx/repos/extra-x86_64/fcitx-gtk2.install
  fcitx/repos/extra-x86_64/fcitx-gtk3.install
  fcitx/repos/extra-x86_64/fcitx.install

-+
 extra-i686/PKGBUILD |  129 +++---
 extra-i686/fcitx-gtk2.install   |   22 +++---
 extra-i686/fcitx-gtk3.install   |   22 +++---
 extra-i686/fcitx.install|   25 +++
 extra-x86_64/PKGBUILD   |  129 +++---
 extra-x86_64/fcitx-gtk2.install |   22 +++---
 extra-x86_64/fcitx-gtk3.install |   22 +++---
 extra-x86_64/fcitx.install  |   25 +++
 8 files changed, 200 insertions(+), 196 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-02-05 01:56:09 UTC (rev 148643)
+++ extra-i686/PKGBUILD 2012-02-05 01:57:05 UTC (rev 148644)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: csslayer wengxt AT gmail com
-
-pkgbase=fcitx
-pkgname=('fcitx' 'fcitx-gtk2' 'fcitx-gtk3' 'fcitx-qt')
-pkgver=4.1.2
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://code.google.com/p/fcitx/;
-license=('GPL')
-makedepends=('cmake' 'intltool' 'doxygen' 'gtk2' 'gtk3' 'qt' 'dbus-glib' 'icu')
-source=(http://fcitx.googlecode.com/files/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('d2d4e725b1c2ed60543d466504954b631d5689e3')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgbase}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_OPENCC=OFF \
--DENABLE_GTK3_IM_MODULE=ON \
--DENABLE_QT_IM_MODULE=ON
-  make
-}
-
-package_fcitx() {
-  pkgdesc=Free Chinese Input Toy of X - Input Method Server for X window 
system
-  depends=('dbus-core' 'pango')
-  install=fcitx.install
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-
-  rm -r ${pkgdir}/usr/lib/{gtk-2.0,gtk-3.0,qt}
-}
-
-package_fcitx-gtk2() {
-  pkgdesc='GTK2 IM Module for fcitx'
-  depends=('gtk2' 'dbus-glib' 'fcitx')
-  install=fcitx-gtk2.install
-
-  cd ${srcdir}/build/src/frontend/gtk2
-  make DESTDIR=${pkgdir} install
-}
-
-package_fcitx-gtk3() {
-  pkgdesc='GTK3 IM Module for fcitx'
-  depends=('gtk3' 'dbus-glib' 'fcitx')
-  install=fcitx-gtk3.install
-
-  cd ${srcdir}/build/src/frontend/gtk3
-  make DESTDIR=${pkgdir} install
-}
-
-package_fcitx-qt() {
-  pkgdesc='QT IM Module for fcitx'
-  depends=('qt' 'icu' 'fcitx')
-
-  cd ${srcdir}/build/src/frontend/qt
-  make DESTDIR=${pkgdir} install
-}

Copied: fcitx/repos/extra-i686/PKGBUILD (from rev 148643, fcitx/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-02-05 01:57:05 UTC (rev 148644)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: csslayer wengxt AT gmail com
+
+pkgbase=fcitx
+pkgname=('fcitx' 'fcitx-gtk2' 'fcitx-gtk3' 'fcitx-qt')
+pkgver=4.2.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://code.google.com/p/fcitx/;
+license=('GPL')
+makedepends=('cmake' 'intltool' 'doxygen' 'gtk2' 'gtk3' 'qt' 'dbus-glib' 'icu')
+source=(http://fcitx.googlecode.com/files/${pkgbase}-${pkgver}.tar.bz2;)
+sha1sums=('b3c09f1eda7fb71208d348c34389dc824d6b2a80')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_OPENCC=OFF \
+-DENABLE_GTK3_IM_MODULE=ON \
+-DENABLE_QT_IM_MODULE=ON
+  make
+}
+
+package_fcitx() {
+  pkgdesc=Free Chinese Input Toy of X - Input Method Server for X window 
system
+  depends=('dbus-core' 'pango' 'libxinerama' 'gtk-update-icon-cache' \
+   'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils')
+  install=fcitx.install
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  rm -r 

[arch-commits] Commit in xine-lib/trunk (PKGBUILD)

2012-02-04 Thread Eric Bélanger
Date: Saturday, February 4, 2012 @ 22:52:20
  Author: eric
Revision: 148645

upgpkg: xine-lib 1.2.1-1

Upstream update

Modified:
  xine-lib/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-05 01:57:05 UTC (rev 148644)
+++ PKGBUILD2012-02-05 03:52:20 UTC (rev 148645)
@@ -2,8 +2,8 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=xine-lib
-pkgver=1.2.0
-pkgrel=2
+pkgver=1.2.1
+pkgrel=1
 pkgdesc=A multimedia playback engine
 arch=('i686' 'x86_64')
 url=http://www.xine-project.org;
@@ -31,7 +31,7 @@
 'libvdpau: for using the VDPAU plugin')
 options=('!libtool')
 
source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('5d5385f2a0c3bb7beaba1079cd9b62c4c92a301d')
+sha1sums=('ebb2648456504ff4ce08c34de258d3125832bb94')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in xine-lib/repos (4 files)

2012-02-04 Thread Eric Bélanger
Date: Saturday, February 4, 2012 @ 22:52:36
  Author: eric
Revision: 148646

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

Added:
  xine-lib/repos/extra-i686/PKGBUILD
(from rev 148645, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/extra-x86_64/PKGBUILD
(from rev 148645, xine-lib/trunk/PKGBUILD)
Deleted:
  xine-lib/repos/extra-i686/PKGBUILD
  xine-lib/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-02-05 03:52:20 UTC (rev 148645)
+++ extra-i686/PKGBUILD 2012-02-05 03:52:36 UTC (rev 148646)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=xine-lib
-pkgver=1.2.0
-pkgrel=2
-pkgdesc=A multimedia playback engine
-arch=('i686' 'x86_64')
-url=http://www.xine-project.org;
-license=('LGPL' 'GPL')
-depends=('libxvmc' 'ffmpeg' 'libxinerama')
-makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
- 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
- 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau')
-optdepends=('imagemagick: for using the imagemagick plugin' \
-'jack: for using the jack plugin' \
-'vcdimager: for using the vcd plugin' \
-'mesa: for using the opengl plugin' \
-'wavpack: for using the wavpack plugin' \
-'faad2: for using the faad plugin' \
-'libmng: for using the mng plugin' \
-'aalib: for using the aalib plugin' \
-'libmodplug: for using the modplug plugin' \
-'libdca: for using the dca plugin' \
-'a52dec: for using the a52 plugin' \
-'libmad: for using the mp3 plugin' \
-'libmpcdec: for using the musepack plugin' \
-'libcaca: for using the caca plugin' \
-'libbluray: for using the bluray plugin' \
-'gnome-vfs: for using the gnome-vfs plugin' \
-'libvdpau: for using the VDPAU plugin')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('5d5385f2a0c3bb7beaba1079cd9b62c4c92a301d')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xine-lib/repos/extra-i686/PKGBUILD (from rev 148645, 
xine-lib/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-02-05 03:52:36 UTC (rev 148646)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.1
+pkgrel=1
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'mesa: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('ebb2648456504ff4ce08c34de258d3125832bb94')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-02-05 03:52:20 UTC (rev 148645)
+++ extra-x86_64/PKGBUILD   2012-02-05 03:52:36 UTC (rev 148646)
@@ -1,45 +0,0 @@
-# $Id$
-# 

[arch-commits] Commit in isl/repos (3 files)

2012-02-04 Thread Allan McRae
Date: Saturday, February 4, 2012 @ 22:55:31
  Author: allan
Revision: 148647

db-move: moved isl from [testing] to [core] (i686)

Added:
  isl/repos/core-i686/PKGBUILD
(from rev 148646, isl/repos/testing-i686/PKGBUILD)
Deleted:
  isl/repos/core-i686/PKGBUILD
  isl/repos/testing-i686/

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-02-05 03:52:36 UTC (rev 148646)
+++ core-i686/PKGBUILD  2012-02-05 03:55:31 UTC (rev 148647)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=isl
-pkgver=0.07
-pkgrel=1
-pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
-arch=('i686' 'x86_64')
-url=http://www.kotnet.org/~skimo/isl/;
-license=('LGPL2.1')
-options=('!libtool')
-source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
-md5sums=('0d1a38db9f1c7d526758092b985827ea')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make -j1 DESTDIR=$pkgdir/ install
-  
-  # this seems a better place for this file...
-  install -dm755 $pkgdir/usr/share/gdb/auto-load/
-  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.7.0.0-gdb.py
-}

Copied: isl/repos/core-i686/PKGBUILD (from rev 148646, 
isl/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-02-05 03:55:31 UTC (rev 148647)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=isl
+pkgver=0.09
+pkgrel=1
+pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
+arch=('i686' 'x86_64')
+url=http://www.kotnet.org/~skimo/isl/;
+license=('LGPL2.1')
+options=('!libtool')
+source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
+md5sums=('6873f0b3c9f4d1fb8efae4aea53f2ab2')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make -j1 DESTDIR=$pkgdir/ install
+  
+  # this seems a better place for this file...
+  install -dm755 $pkgdir/usr/share/gdb/auto-load/
+  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.9.0.0-gdb.py
+}



[arch-commits] Commit in isl/repos (3 files)

2012-02-04 Thread Allan McRae
Date: Saturday, February 4, 2012 @ 22:55:32
  Author: allan
Revision: 148648

db-move: moved isl from [testing] to [core] (x86_64)

Added:
  isl/repos/core-x86_64/PKGBUILD
(from rev 148646, isl/repos/testing-x86_64/PKGBUILD)
Deleted:
  isl/repos/core-x86_64/PKGBUILD
  isl/repos/testing-x86_64/

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2012-02-05 03:55:31 UTC (rev 148647)
+++ core-x86_64/PKGBUILD2012-02-05 03:55:32 UTC (rev 148648)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=isl
-pkgver=0.07
-pkgrel=1
-pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
-arch=('i686' 'x86_64')
-url=http://www.kotnet.org/~skimo/isl/;
-license=('LGPL2.1')
-options=('!libtool')
-source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
-md5sums=('0d1a38db9f1c7d526758092b985827ea')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make -j1 DESTDIR=$pkgdir/ install
-  
-  # this seems a better place for this file...
-  install -dm755 $pkgdir/usr/share/gdb/auto-load/
-  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.7.0.0-gdb.py
-}

Copied: isl/repos/core-x86_64/PKGBUILD (from rev 148646, 
isl/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2012-02-05 03:55:32 UTC (rev 148648)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=isl
+pkgver=0.09
+pkgrel=1
+pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
+arch=('i686' 'x86_64')
+url=http://www.kotnet.org/~skimo/isl/;
+license=('LGPL2.1')
+options=('!libtool')
+source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
+md5sums=('6873f0b3c9f4d1fb8efae4aea53f2ab2')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make -j1 DESTDIR=$pkgdir/ install
+  
+  # this seems a better place for this file...
+  install -dm755 $pkgdir/usr/share/gdb/auto-load/
+  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.9.0.0-gdb.py
+}



[arch-commits] Commit in cloog/repos (3 files)

2012-02-04 Thread Allan McRae
Date: Saturday, February 4, 2012 @ 22:55:33
  Author: allan
Revision: 148649

db-move: moved cloog from [testing] to [core] (i686)

Added:
  cloog/repos/core-i686/PKGBUILD
(from rev 148646, cloog/repos/testing-i686/PKGBUILD)
Deleted:
  cloog/repos/core-i686/PKGBUILD
  cloog/repos/testing-i686/

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-02-05 03:55:32 UTC (rev 148648)
+++ core-i686/PKGBUILD  2012-02-05 03:55:33 UTC (rev 148649)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=cloog
-pkgver=0.16.3
-pkgrel=1
-pkgdesc=Library that generates loops for scanning polyhedra
-arch=('i686' 'x86_64')
-url=http://www.bastoul.net/cloog/;
-license=('GPL')
-depends=('isl' 'gmp')
-conflicts=('cloog-ppl0.15.10-2')
-options=('!libtool')
-source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
-md5sums=('a0f8a241cd1c4f103f8d2c91642b3498')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --with-isl=system --with-gmp=system
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}

Copied: cloog/repos/core-i686/PKGBUILD (from rev 148646, 
cloog/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-02-05 03:55:33 UTC (rev 148649)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=cloog
+pkgver=0.17.0
+pkgrel=1
+pkgdesc=Library that generates loops for scanning polyhedra
+arch=('i686' 'x86_64')
+url=http://www.bastoul.net/cloog/;
+license=('GPL')
+depends=('isl' 'gmp')
+conflicts=('cloog-ppl0.15.10-2')
+options=('!libtool')
+source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
+md5sums=('0aa3302c81f65ca62c114e5264f8a802')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --with-isl=system --with-gmp=system
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}



[arch-commits] Commit in cloog/repos (3 files)

2012-02-04 Thread Allan McRae
Date: Saturday, February 4, 2012 @ 22:55:34
  Author: allan
Revision: 148650

db-move: moved cloog from [testing] to [core] (x86_64)

Added:
  cloog/repos/core-x86_64/PKGBUILD
(from rev 148646, cloog/repos/testing-x86_64/PKGBUILD)
Deleted:
  cloog/repos/core-x86_64/PKGBUILD
  cloog/repos/testing-x86_64/

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2012-02-05 03:55:33 UTC (rev 148649)
+++ core-x86_64/PKGBUILD2012-02-05 03:55:34 UTC (rev 148650)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=cloog
-pkgver=0.16.3
-pkgrel=1
-pkgdesc=Library that generates loops for scanning polyhedra
-arch=('i686' 'x86_64')
-url=http://www.bastoul.net/cloog/;
-license=('GPL')
-depends=('isl' 'gmp')
-conflicts=('cloog-ppl0.15.10-2')
-options=('!libtool')
-source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
-md5sums=('a0f8a241cd1c4f103f8d2c91642b3498')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --with-isl=system --with-gmp=system
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}

Copied: cloog/repos/core-x86_64/PKGBUILD (from rev 148646, 
cloog/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2012-02-05 03:55:34 UTC (rev 148650)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=cloog
+pkgver=0.17.0
+pkgrel=1
+pkgdesc=Library that generates loops for scanning polyhedra
+arch=('i686' 'x86_64')
+url=http://www.bastoul.net/cloog/;
+license=('GPL')
+depends=('isl' 'gmp')
+conflicts=('cloog-ppl0.15.10-2')
+options=('!libtool')
+source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
+md5sums=('0aa3302c81f65ca62c114e5264f8a802')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --with-isl=system --with-gmp=system
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}



[arch-commits] Commit in gcc/repos (18 files)

2012-02-04 Thread Allan McRae
Date: Saturday, February 4, 2012 @ 22:55:36
  Author: allan
Revision: 148651

db-move: moved gcc from [testing] to [core] (i686)

Added:
  gcc/repos/core-i686/PKGBUILD
(from rev 148646, gcc/repos/testing-i686/PKGBUILD)
  gcc/repos/core-i686/gcc-4.6.2-cloog-0.17.patch
(from rev 148646, gcc/repos/testing-i686/gcc-4.6.2-cloog-0.17.patch)
  gcc/repos/core-i686/gcc-ada.install
(from rev 148646, gcc/repos/testing-i686/gcc-ada.install)
  gcc/repos/core-i686/gcc-fortran.install
(from rev 148646, gcc/repos/testing-i686/gcc-fortran.install)
  gcc/repos/core-i686/gcc-go.install
(from rev 148646, gcc/repos/testing-i686/gcc-go.install)
  gcc/repos/core-i686/gcc-hash-style-both.patch
(from rev 148646, gcc/repos/testing-i686/gcc-hash-style-both.patch)
  gcc/repos/core-i686/gcc-libs.install
(from rev 148646, gcc/repos/testing-i686/gcc-libs.install)
  gcc/repos/core-i686/gcc.install
(from rev 148646, gcc/repos/testing-i686/gcc.install)
  gcc/repos/core-i686/gcc_pure64.patch
(from rev 148646, gcc/repos/testing-i686/gcc_pure64.patch)
Deleted:
  gcc/repos/core-i686/PKGBUILD
  gcc/repos/core-i686/gcc-ada.install
  gcc/repos/core-i686/gcc-fortran.install
  gcc/repos/core-i686/gcc-go.install
  gcc/repos/core-i686/gcc-hash-style-both.patch
  gcc/repos/core-i686/gcc-libs.install
  gcc/repos/core-i686/gcc.install
  gcc/repos/core-i686/gcc_pure64.patch
  gcc/repos/testing-i686/

+
 PKGBUILD   |  525 +--
 gcc-4.6.2-cloog-0.17.patch |   36 ++
 gcc-ada.install|   40 +--
 gcc-fortran.install|   32 +-
 gcc-go.install |   40 +--
 gcc-hash-style-both.patch  |  244 +--
 gcc-libs.install   |   32 +-
 gcc.install|   40 +--
 gcc_pure64.patch   |   52 ++--
 9 files changed, 541 insertions(+), 500 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-02-05 03:55:34 UTC (rev 148650)
+++ core-i686/PKGBUILD  2012-02-05 03:55:36 UTC (rev 148651)
@@ -1,260 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
-# NOTE: libtool requires rebuilt with each new gcc version
-
-pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-ada' 'gcc-go')
-pkgver=4.6.2
-pkgrel=6
-_snapshot=4.6-20120120
-_libstdcppmanver=20111215  # Note: check source directory name 
when updating this
-pkgdesc=The GNU Compiler Collection
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL' 'custom')
-url=http://gcc.gnu.org;
-makedepends=('binutils=2.22' 'libmpc' 'cloog' 'ppl' 'gcc-ada')
-checkdepends=('dejagnu')
-options=('!libtool' '!emptydirs')
-source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
-   
ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
-   
ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/libstdc++-man.${_libstdcppmanver}.tar.bz2
-   gcc_pure64.patch
-   gcc-hash-style-both.patch)
-md5sums=('f7ca5d9f7a07216577f81318b7cf56ef'
- '450772ce32daed97d7383199f8797f33'
- '4030ee1c08dd1e843c0225b772360e76'
- '4df25b623799b148a0703eaeec8fdf3f')
-
-if [ -n ${_snapshot} ]; then
-  _basedir=${srcdir}/gcc-${_snapshot}
-else
-  _basedir=${srcdir}/gcc-${pkgver}
-fi
-
-build() {
-  cd ${_basedir}
-
-  # Do not install libiberty
-  sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
-
-  # Do not run fixincludes
-  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
-
-  if [ ${CARCH} = x86_64 ]; then
-patch -Np1 -i ${srcdir}/gcc_pure64.patch
-  fi
-  patch -Np0 -i ${srcdir}/gcc-hash-style-both.patch
-
-  echo ${pkgver}  gcc/BASE-VER
-
-  cd ${srcdir}
-  mkdir gcc-build  cd gcc-build
-
-  ${_basedir}/configure --prefix=/usr \
-  --libdir=/usr/lib --libexecdir=/usr/lib \
-  --mandir=/usr/share/man --infodir=/usr/share/info \
-  --with-bugurl=https://bugs.archlinux.org/ \
-  --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ \
-  --enable-shared --enable-threads=posix \
-  --with-system-zlib --enable-__cxa_atexit \
-  --disable-libunwind-exceptions --enable-clocale=gnu \
-  --disable-libstdcxx-pch --enable-libstdcxx-time \
-  --enable-gnu-unique-object --enable-linker-build-id \
-  --with-ppl --enable-cloog-backend=isl \
-  --enable-lto --enable-gold --enable-ld=default \
-  --enable-plugin --with-plugin-ld=ld.gold \
-  --disable-multilib --disable-libssp \
-  --enable-checking=release
-  make
-}
-
-check() {
-  cd gcc-build
-
-  # increase stack size to prevent test failures
-  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31827
-  ulimit -s 32768
-
-  # do not abort on error as some are expected
-  make -k check || true
-  ${_basedir}/contrib/test_summary
-}
-
-package_gcc-libs()
-{
-  pkgdesc=Runtime libraries shipped by GCC
-  

[arch-commits] Commit in gcc/repos (18 files)

2012-02-04 Thread Allan McRae
Date: Saturday, February 4, 2012 @ 22:55:39
  Author: allan
Revision: 148652

db-move: moved gcc from [testing] to [core] (x86_64)

Added:
  gcc/repos/core-x86_64/PKGBUILD
(from rev 148646, gcc/repos/testing-x86_64/PKGBUILD)
  gcc/repos/core-x86_64/gcc-4.6.2-cloog-0.17.patch
(from rev 148646, gcc/repos/testing-x86_64/gcc-4.6.2-cloog-0.17.patch)
  gcc/repos/core-x86_64/gcc-ada.install
(from rev 148646, gcc/repos/testing-x86_64/gcc-ada.install)
  gcc/repos/core-x86_64/gcc-fortran.install
(from rev 148646, gcc/repos/testing-x86_64/gcc-fortran.install)
  gcc/repos/core-x86_64/gcc-go.install
(from rev 148646, gcc/repos/testing-x86_64/gcc-go.install)
  gcc/repos/core-x86_64/gcc-hash-style-both.patch
(from rev 148646, gcc/repos/testing-x86_64/gcc-hash-style-both.patch)
  gcc/repos/core-x86_64/gcc-libs.install
(from rev 148646, gcc/repos/testing-x86_64/gcc-libs.install)
  gcc/repos/core-x86_64/gcc.install
(from rev 148646, gcc/repos/testing-x86_64/gcc.install)
  gcc/repos/core-x86_64/gcc_pure64.patch
(from rev 148646, gcc/repos/testing-x86_64/gcc_pure64.patch)
Deleted:
  gcc/repos/core-x86_64/PKGBUILD
  gcc/repos/core-x86_64/gcc-ada.install
  gcc/repos/core-x86_64/gcc-fortran.install
  gcc/repos/core-x86_64/gcc-go.install
  gcc/repos/core-x86_64/gcc-hash-style-both.patch
  gcc/repos/core-x86_64/gcc-libs.install
  gcc/repos/core-x86_64/gcc.install
  gcc/repos/core-x86_64/gcc_pure64.patch
  gcc/repos/testing-x86_64/

+
 PKGBUILD   |  525 +--
 gcc-4.6.2-cloog-0.17.patch |   36 ++
 gcc-ada.install|   40 +--
 gcc-fortran.install|   32 +-
 gcc-go.install |   40 +--
 gcc-hash-style-both.patch  |  244 +--
 gcc-libs.install   |   32 +-
 gcc.install|   40 +--
 gcc_pure64.patch   |   52 ++--
 9 files changed, 541 insertions(+), 500 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2012-02-05 03:55:36 UTC (rev 148651)
+++ core-x86_64/PKGBUILD2012-02-05 03:55:39 UTC (rev 148652)
@@ -1,260 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
-# NOTE: libtool requires rebuilt with each new gcc version
-
-pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-ada' 'gcc-go')
-pkgver=4.6.2
-pkgrel=6
-_snapshot=4.6-20120120
-_libstdcppmanver=20111215  # Note: check source directory name 
when updating this
-pkgdesc=The GNU Compiler Collection
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL' 'custom')
-url=http://gcc.gnu.org;
-makedepends=('binutils=2.22' 'libmpc' 'cloog' 'ppl' 'gcc-ada')
-checkdepends=('dejagnu')
-options=('!libtool' '!emptydirs')
-source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
-   
ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
-   
ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/libstdc++-man.${_libstdcppmanver}.tar.bz2
-   gcc_pure64.patch
-   gcc-hash-style-both.patch)
-md5sums=('f7ca5d9f7a07216577f81318b7cf56ef'
- '450772ce32daed97d7383199f8797f33'
- '4030ee1c08dd1e843c0225b772360e76'
- '4df25b623799b148a0703eaeec8fdf3f')
-
-if [ -n ${_snapshot} ]; then
-  _basedir=${srcdir}/gcc-${_snapshot}
-else
-  _basedir=${srcdir}/gcc-${pkgver}
-fi
-
-build() {
-  cd ${_basedir}
-
-  # Do not install libiberty
-  sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
-
-  # Do not run fixincludes
-  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
-
-  if [ ${CARCH} = x86_64 ]; then
-patch -Np1 -i ${srcdir}/gcc_pure64.patch
-  fi
-  patch -Np0 -i ${srcdir}/gcc-hash-style-both.patch
-
-  echo ${pkgver}  gcc/BASE-VER
-
-  cd ${srcdir}
-  mkdir gcc-build  cd gcc-build
-
-  ${_basedir}/configure --prefix=/usr \
-  --libdir=/usr/lib --libexecdir=/usr/lib \
-  --mandir=/usr/share/man --infodir=/usr/share/info \
-  --with-bugurl=https://bugs.archlinux.org/ \
-  --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ \
-  --enable-shared --enable-threads=posix \
-  --with-system-zlib --enable-__cxa_atexit \
-  --disable-libunwind-exceptions --enable-clocale=gnu \
-  --disable-libstdcxx-pch --enable-libstdcxx-time \
-  --enable-gnu-unique-object --enable-linker-build-id \
-  --with-ppl --enable-cloog-backend=isl \
-  --enable-lto --enable-gold --enable-ld=default \
-  --enable-plugin --with-plugin-ld=ld.gold \
-  --disable-multilib --disable-libssp \
-  --enable-checking=release
-  make
-}
-
-check() {
-  cd gcc-build
-
-  # increase stack size to prevent test failures
-  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31827
-  ulimit -s 32768
-
-  # do not abort on error as some are expected
-  make -k check || true
-  ${_basedir}/contrib/test_summary
-}
-