[arch-commits] Commit in lilo/repos (core-i686)

2011-04-10 Thread Tobias Powalowski
Date: Sunday, April 10, 2011 @ 02:29:31
  Author: tpowa
Revision: 119000

db-move: lilo removed by tpowa for move to [core] (i686)

Deleted:
  lilo/repos/core-i686/



[arch-commits] Commit in lilo/repos (core-i686 testing-i686)

2011-04-10 Thread Tobias Powalowski
Date: Sunday, April 10, 2011 @ 02:29:31
  Author: tpowa
Revision: 119001

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

Added:
  lilo/repos/core-i686/
Deleted:
  lilo/repos/testing-i686/



[arch-commits] Commit in lilo/repos (core-x86_64)

2011-04-10 Thread Tobias Powalowski
Date: Sunday, April 10, 2011 @ 02:29:32
  Author: tpowa
Revision: 119002

db-move: lilo removed by tpowa for move to [core] (x86_64)

Deleted:
  lilo/repos/core-x86_64/



[arch-commits] Commit in lilo/repos (core-x86_64 testing-x86_64)

2011-04-10 Thread Tobias Powalowski
Date: Sunday, April 10, 2011 @ 02:29:33
  Author: tpowa
Revision: 119003

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

Added:
  lilo/repos/core-x86_64/
Deleted:
  lilo/repos/testing-x86_64/



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

2011-04-10 Thread Eric Bélanger
Date: Sunday, April 10, 2011 @ 07:32:39
  Author: eric
Revision: 119004

upgpkg: miro 3.5.1-2
Rebuilt against libwebkit 1.3.13

Modified:
  miro/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 06:29:33 UTC (rev 119003)
+++ PKGBUILD2011-04-10 11:32:39 UTC (rev 119004)
@@ -3,7 +3,7 @@
 
 pkgname=miro
 pkgver=3.5.1
-pkgrel=1
+pkgrel=2
 pkgdesc=The free and open source internet TV platform
 arch=('i686' 'x86_64')
 url=http://www.getmiro.com;
@@ -13,7 +13,7 @@
  'desktop-file-utils' 'gstreamer0.10' 'hicolor-icon-theme'
  'gstreamer0.10-python' 'python-notify' 'libtorrent-rasterbar'
 'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 
'python-pycurl')
-makedepends=('pkgconfig')
+makedepends=('pkg-config')
 install=miro.install
 
source=(http://ftp.osuosl.org/pub/pculture.org/${pkgname}/src/${pkgname}-${pkgver}.tar.gz)
 sha1sums=('0f5c2a307e7040c9c2895ee9a2d1c3ff99d34e9e')
@@ -21,9 +21,9 @@
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}/linux
 
-  python2 setup.py install --root=${pkgdir}
+  python2 setup.py install --root=${pkgdir}
 
   # fix miro startup script so --debug works with python2
-  sed -i s|which python|which python2| ${pkgdir}/usr/bin/miro
-  sed -i s|./miro.real|/usr/bin/miro.real| ${pkgdir}/usr/bin/miro
+  sed -i s|which python|which python2| ${pkgdir}/usr/bin/miro
+  sed -i s|./miro.real|/usr/bin/miro.real| ${pkgdir}/usr/bin/miro
 }



[arch-commits] Commit in miro/repos (testing-i686)

2011-04-10 Thread Eric Bélanger
Date: Sunday, April 10, 2011 @ 07:32:52
  Author: eric
Revision: 119005

archrelease: copy trunk to testing-i686

Added:
  miro/repos/testing-i686/



[arch-commits] Commit in miro/repos (testing-x86_64)

2011-04-10 Thread Eric Bélanger
Date: Sunday, April 10, 2011 @ 07:33:03
  Author: eric
Revision: 119006

archrelease: copy trunk to testing-x86_64

Added:
  miro/repos/testing-x86_64/



[arch-commits] Commit in udisks/trunk (01-mkfs-tempdir.patch PKGBUILD)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 08:50:18
  Author: ibiru
Revision: 119007

upgpkg: udisks 1.0.3-1
use a git snapshot since it contains too many commits that are useful, nuke 
/var/run/udisks and use debian patch to use /tmp instead of /var/run

Added:
  udisks/trunk/01-mkfs-tempdir.patch
Modified:
  udisks/trunk/PKGBUILD

---+
 01-mkfs-tempdir.patch |   17 +
 PKGBUILD  |   25 +
 2 files changed, 34 insertions(+), 8 deletions(-)

Added: 01-mkfs-tempdir.patch
===
--- 01-mkfs-tempdir.patch   (rev 0)
+++ 01-mkfs-tempdir.patch   2011-04-10 12:50:18 UTC (rev 119007)
@@ -0,0 +1,17 @@
+# Description: Daemon does not create /var/run/udisks/, so mkfs jobs fail.
+# Just create the directory in /tmp, this is what /tmp is for, after all.
+# Upstream: https://bugs.freedesktop.org/show_bug.cgi?id=24265
+
+Index: udisks/src/helpers/job-mkfs.c
+===
+--- udisks.orig/src/helpers/job-mkfs.c 2010-12-05 23:08:54.587881164 +0100
 udisks/src/helpers/job-mkfs.c  2010-12-05 23:09:12.399889312 +0100
+@@ -546,7 +546,7 @@
+   /* take ownership of the device if requested */
+   if (take_ownership_uid != 0 || take_ownership_gid != 0)
+ {
+-  char dir[256] = PACKAGE_LOCALSTATE_DIR /run/udisks/job-mkfs-XX;
++  char dir[256] = /tmp/job-mkfs-XX;
+ 
+   if (mkdtemp (dir) == NULL)
+ {

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 11:33:03 UTC (rev 119006)
+++ PKGBUILD2011-04-10 12:50:18 UTC (rev 119007)
@@ -2,27 +2,36 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=udisks
-pkgver=1.0.2
-pkgrel=2
+pkgver=1.0.3
+pkgrel=1
 pkgdesc=Disk Management Service
 arch=('i686' 'x86_64')
 url=http://www.freedesktop.org/wiki/Software/udisks;
 license=('GPL')
-depends=('udev=164' 'sg3_utils=1.29' 'glib2=2.26.1' 'dbus-glib=0.92' 
'polkit=0.98' 'parted=2.3' 'device-mapper=2.02.77' 'libatasmart=0.17' 
'lsof' 'lvm2=2.02.77' 'eject')
-makedepends=('intltool' 'docbook-xsl')
+depends=('udev' 'sg3_utils' 'glib2' 'dbus-glib' 'polkit' 'parted' 
'device-mapper' 'libatasmart' 'lsof' 'lvm2' 'eject')
+makedepends=('intltool' 'docbook-xsl' 'gtk-doc')
 options=(!libtool)
-replaces=('devicekit-disks')
-source=(http://hal.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('7dc1a150a6a31b2727144603fa5a8f9852696fc5bdc4a11917b9b0f1b8e3dcf1')
+#source=(http://hal.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz)
+source=(ftp://ftp.archlinux.org/other/${pkgname}-${pkgver}.tar.xz
+01-mkfs-tempdir.patch)
+sha256sums=('a4d18b2de59c1567df5342f26960c6c3e70a0320f7bafe42893f2708c9b57dd5'
+'786c0adb1a37e16b351c906527e3cbd17193bb51d8c1dd0889f216556c419c6c')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-
+  patch -Np1 -i ${srcdir}/01-mkfs-tempdir.patch
+  ./autogen.sh
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
   --libexecdir=/usr/lib/udisks --disable-static
   #fix location for bash_completion helper
   sed -i -e 's|profile.d|bash_completion.d|' tools/Makefile
 
   make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
+
+  rm -rf ${pkgdir}/var/run
 }



[arch-commits] Commit in udisks/repos (testing-i686)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 08:50:35
  Author: ibiru
Revision: 119008

archrelease: copy trunk to testing-i686

Added:
  udisks/repos/testing-i686/



[arch-commits] Commit in udisks/repos (testing-x86_64)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 08:50:51
  Author: ibiru
Revision: 119009

archrelease: copy trunk to testing-x86_64

Added:
  udisks/repos/testing-x86_64/



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

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 09:15:03
  Author: ibiru
Revision: 119010

upgpkg: networkmanager 0.8.998-2
nuke /var/run

Modified:
  networkmanager/trunk/PKGBUILD

--+
 PKGBUILD |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 12:50:51 UTC (rev 119009)
+++ PKGBUILD2011-04-10 13:15:03 UTC (rev 119010)
@@ -7,7 +7,7 @@
 
 pkgname=networkmanager
 pkgver=0.8.998
-pkgrel=1
+pkgrel=2
 pkgdesc=Network Management daemon
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -55,4 +55,6 @@
   make DESTDIR=${pkgdir} install
 
   install -m644 ${srcdir}/NetworkManager.conf ${pkgdir}/etc/NetworkManager/
+
+  rm -rf ${pkgdir}/var/run/
 }



[arch-commits] Commit in networkmanager/repos (testing-i686)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 09:15:09
  Author: ibiru
Revision: 119011

archrelease: remove testing-i686

Deleted:
  networkmanager/repos/testing-i686/



[arch-commits] Commit in networkmanager/repos (testing-i686)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 09:15:23
  Author: ibiru
Revision: 119012

archrelease: copy trunk to testing-i686

Added:
  networkmanager/repos/testing-i686/



[arch-commits] Commit in networkmanager/repos (testing-x86_64)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 09:15:29
  Author: ibiru
Revision: 119013

archrelease: remove testing-x86_64

Deleted:
  networkmanager/repos/testing-x86_64/



[arch-commits] Commit in networkmanager/repos (testing-x86_64)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 09:15:42
  Author: ibiru
Revision: 119014

archrelease: copy trunk to testing-x86_64

Added:
  networkmanager/repos/testing-x86_64/



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

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 09:37:10
  Author: ibiru
Revision: 119015

upgpkg: consolekit 0.4.3-3
nuke /var/run

Modified:
  consolekit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 13:15:42 UTC (rev 119014)
+++ PKGBUILD2011-04-10 13:37:10 UTC (rev 119015)
@@ -4,12 +4,12 @@
 
 pkgname=consolekit
 pkgver=0.4.3
-pkgrel=2
+pkgrel=3
 pkgdesc=A framework for defining and tracking users, login sessions, and 
seats
 arch=('i686' 'x86_64')
 url=http://www.freedesktop.org/wiki/Software/ConsoleKit;
 license=('GPL')
-depends=('polkit=0.99' 'zlib' 'libx11=1.4.1' 'dbus-glib=0.92')
+depends=('polkit' 'zlib' 'libx11' 'dbus-glib')
 makedepends=('pkgconfig' 'xmlto' 'docbook-xsl')
 options=(!libtool)
 
source=(http://www.freedesktop.org/software/ConsoleKit/dist/ConsoleKit-${pkgver}.tar.bz2
@@ -27,9 +27,15 @@
   --enable-pam-module \
   --enable-docbook-docs
   make
+}
+
+package() {
+  cd ${srcdir}/ConsoleKit-${pkgver}
   make DESTDIR=${pkgdir} install
   install -m755 ${srcdir}/pam-foreground-compat.ck 
${pkgdir}/usr/lib/ConsoleKit/run-session.d/
 
   # install the logrotate config
   install -D -m644 ${srcdir}/consolekit.logrotate 
${pkgdir}/etc/logrotate.d/consolekit
+
+  rm -rf ${pkgdir}/var/run
 }



[arch-commits] Commit in consolekit/repos (extra-i686)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 09:37:16
  Author: ibiru
Revision: 119016

archrelease: remove extra-i686

Deleted:
  consolekit/repos/extra-i686/



[arch-commits] Commit in consolekit/repos (extra-i686)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 09:37:30
  Author: ibiru
Revision: 119017

archrelease: copy trunk to extra-i686

Added:
  consolekit/repos/extra-i686/



[arch-commits] Commit in consolekit/repos (extra-x86_64)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 09:37:36
  Author: ibiru
Revision: 119018

archrelease: remove extra-x86_64

Deleted:
  consolekit/repos/extra-x86_64/



[arch-commits] Commit in consolekit/repos (extra-x86_64)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 09:37:49
  Author: ibiru
Revision: 119019

archrelease: copy trunk to extra-x86_64

Added:
  consolekit/repos/extra-x86_64/



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

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 09:42:00
  Author: andyrtr
Revision: 119020

upgpkg: claws-mail 3.7.9-1
upstream update 3.7.9

Modified:
  claws-mail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 13:37:49 UTC (rev 119019)
+++ PKGBUILD2011-04-10 13:42:00 UTC (rev 119020)
@@ -2,14 +2,14 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgname=claws-mail
-pkgver=3.7.8
+pkgver=3.7.9
 pkgrel=1
 pkgdesc=A GTK+ based e-mail client.
 arch=('i686' 'x86_64')
 license=('GPL3')
 url=http://www.claws-mail.org;
-depends=('gtk2=2.18.5' 'gnutls=2.8.5' 'startup-notification=0.10' 
'pilot-link=0.12.4' 'enchant=1.5.0-2'
- 'gpgme=1.2.0' 'libetpan=1.0' 'libsm=1.1.1' 'db' 
'dbus-glib=0.82-2' 'hicolor-icon-theme')
+depends=('gtk2' 'gnutls' 'startup-notification' 'pilot-link' 'enchant'
+ 'gpgme' 'libetpan' 'libsm' 'db' 'dbus-glib' 'hicolor-icon-theme')
 makedepends=('compface' 'spamassassin' 'bogofilter' 'valgrind')
 optdepends=('python2:   needed for some tools'
 'perl:  needed for some tools'
@@ -21,7 +21,7 @@
 options=(!libtool)
 install=claws-mail.install
 
source=(http://downloads.sourceforge.net/sourceforge/sylpheed-claws/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('e8c516f67df195ee605ed5e5408b2a42')
+md5sums=('2f9d2dcabf84e312cfeb56efa799b5b3')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in claws-mail/repos (extra-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 09:42:04
  Author: andyrtr
Revision: 119021

archrelease: remove extra-i686

Deleted:
  claws-mail/repos/extra-i686/



[arch-commits] Commit in claws-mail/repos (extra-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 09:42:23
  Author: andyrtr
Revision: 119022

archrelease: copy trunk to extra-i686

Added:
  claws-mail/repos/extra-i686/



[arch-commits] Commit in claws-mail-extra-plugins/trunk (PKGBUILD)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 09:51:10
  Author: andyrtr
Revision: 119025

upgpkg: claws-mail-extra-plugins 3.7.9-1
upstream update 3.7.9

Modified:
  claws-mail-extra-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 13:42:44 UTC (rev 119024)
+++ PKGBUILD2011-04-10 13:51:10 UTC (rev 119025)
@@ -3,15 +3,15 @@
 # Contributor: Mildred mildred593 at online dot fr
 
 pkgname=claws-mail-extra-plugins
-pkgver=3.7.8
-pkgrel=3
+pkgver=3.7.9
+pkgrel=1
 pkgdesc=Extra plugins for claws-mail
 url=http://www.claws-mail.org/plugins.php?branch=EXT;
 license=('GPL3')
 arch=('i686' 'x86_64')
 depends=('claws-mail=3.7.8')
 makedepends=('make' 'bc' 'perl=5.10.1-5' 'libgtkhtml=2.11.1-2' 
'libnotify=0.7'
- 'libxml2=2.7.6' 'curl=7.19.7' 'libytnef=1.5-2' 
'libwebkit=1.3.13'
+ 'libxml2=2.7.6' 'curl=7.19.7' 'libytnef=1.5-2' 'libwebkit=1.2'
  'pygtk=2.16.0' 'libsoup-gnome' 'libcanberra')
 optdepends=('libgtkhtml: for gtkhtml2_viewer plugin'
 'perl: for perl plugin'
@@ -33,7 +33,7 @@
 options=('!libtool')
 
source=(http://downloads.sourceforge.net/project/sylpheed-claws/extra%20plugins/$pkgver/claws-mail-extra-plugins-$pkgver.tar.bz2
 claws-mail-notification-0.26-libnotify-0.7.patch)
-md5sums=('8a67a00598262f8ca07a4af5cd43361d'
+md5sums=('3d1ebc48f686ab10702380c776b5d5d0'
  'b76e1cdbff7af46d6594c34646c06fd0')
 
 build() {



[arch-commits] Commit in claws-mail-extra-plugins/repos (extra-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 09:51:15
  Author: andyrtr
Revision: 119026

archrelease: remove extra-i686

Deleted:
  claws-mail-extra-plugins/repos/extra-i686/



[arch-commits] Commit in claws-mail-extra-plugins/repos (extra-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 09:51:34
  Author: andyrtr
Revision: 119027

archrelease: copy trunk to extra-i686

Added:
  claws-mail-extra-plugins/repos/extra-i686/



[arch-commits] Commit in claws-mail-extra-plugins/repos (extra-x86_64)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 09:51:39
  Author: andyrtr
Revision: 119028

archrelease: remove extra-x86_64

Deleted:
  claws-mail-extra-plugins/repos/extra-x86_64/



[arch-commits] Commit in claws-mail-extra-plugins/repos (extra-x86_64)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 09:51:57
  Author: andyrtr
Revision: 119029

archrelease: copy trunk to extra-x86_64

Added:
  claws-mail-extra-plugins/repos/extra-x86_64/



[arch-commits] Commit in claws-mail-extra-plugins/trunk (PKGBUILD)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 10:07:06
  Author: andyrtr
Revision: 119030

upgpkg: claws-mail-extra-plugins 3.7.9-2
rebuild for libwebkit 1.3.13

Modified:
  claws-mail-extra-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 13:51:57 UTC (rev 119029)
+++ PKGBUILD2011-04-10 14:07:06 UTC (rev 119030)
@@ -4,14 +4,14 @@
 
 pkgname=claws-mail-extra-plugins
 pkgver=3.7.9
-pkgrel=1
+pkgrel=2
 pkgdesc=Extra plugins for claws-mail
 url=http://www.claws-mail.org/plugins.php?branch=EXT;
 license=('GPL3')
 arch=('i686' 'x86_64')
 depends=('claws-mail=3.7.8')
 makedepends=('make' 'bc' 'perl=5.10.1-5' 'libgtkhtml=2.11.1-2' 
'libnotify=0.7'
- 'libxml2=2.7.6' 'curl=7.19.7' 'libytnef=1.5-2' 'libwebkit=1.2'
+ 'libxml2=2.7.6' 'curl=7.19.7' 'libytnef=1.5-2' 
'libwebkit=1.3.13'
  'pygtk=2.16.0' 'libsoup-gnome' 'libcanberra')
 optdepends=('libgtkhtml: for gtkhtml2_viewer plugin'
 'perl: for perl plugin'



[arch-commits] Commit in claws-mail-extra-plugins/repos (testing-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 10:07:10
  Author: andyrtr
Revision: 119031

archrelease: remove testing-i686

Deleted:
  claws-mail-extra-plugins/repos/testing-i686/



[arch-commits] Commit in claws-mail-extra-plugins/repos (testing-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 10:07:29
  Author: andyrtr
Revision: 119032

archrelease: copy trunk to testing-i686

Added:
  claws-mail-extra-plugins/repos/testing-i686/



[arch-commits] Commit in claws-mail-extra-plugins/repos (testing-x86_64)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 10:07:33
  Author: andyrtr
Revision: 119033

archrelease: remove testing-x86_64

Deleted:
  claws-mail-extra-plugins/repos/testing-x86_64/



[arch-commits] Commit in claws-mail-extra-plugins/repos (testing-x86_64)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 10:07:50
  Author: andyrtr
Revision: 119034

archrelease: copy trunk to testing-x86_64

Added:
  claws-mail-extra-plugins/repos/testing-x86_64/



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

2011-04-10 Thread Andrea Scarpino
Date: Sunday, April 10, 2011 @ 11:08:06
  Author: andrea
Revision: 119035

upgpkg: bluez 4.91-1
upstream release

Modified:
  bluez/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 14:07:50 UTC (rev 119034)
+++ PKGBUILD2011-04-10 15:08:06 UTC (rev 119035)
@@ -3,7 +3,7 @@
 # Contributor: Geoffroy Carrier geoff...@archlinux.org
 
 pkgname=bluez
-pkgver=4.90
+pkgver=4.91
 pkgrel=1
 pkgdesc=Libraries and tools for the Bluetooth protocol stack
 url=http://www.bluez.org/;
@@ -27,7 +27,7 @@
 
source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;
 'bluetooth.conf.d'
 'rc.bluetooth')
-md5sums=('b111de22ff0f5c2b31f62b6be44dca00'
+md5sums=('0a293ae6cf0d0e0bdd74fb65e655842a'
  '8f60a5eb9d84b9c64c478d63e1c24b10'
  'ca4c39eb4bb201bd2eacad01492cd735')
 



[arch-commits] Commit in bluez/repos (extra-i686)

2011-04-10 Thread Andrea Scarpino
Date: Sunday, April 10, 2011 @ 11:08:15
  Author: andrea
Revision: 119036

archrelease: remove extra-i686

Deleted:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-i686)

2011-04-10 Thread Andrea Scarpino
Date: Sunday, April 10, 2011 @ 11:08:28
  Author: andrea
Revision: 119037

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/



[arch-commits] Commit in bluez/repos (extra-x86_64)

2011-04-10 Thread Andrea Scarpino
Date: Sunday, April 10, 2011 @ 11:08:36
  Author: andrea
Revision: 119038

archrelease: remove extra-x86_64

Deleted:
  bluez/repos/extra-x86_64/



[arch-commits] Commit in bluez/repos (extra-x86_64)

2011-04-10 Thread Andrea Scarpino
Date: Sunday, April 10, 2011 @ 11:08:49
  Author: andrea
Revision: 119039

archrelease: copy trunk to extra-x86_64

Added:
  bluez/repos/extra-x86_64/



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

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:24:51
  Author: andyrtr
Revision: 119040

upgpkg: libburn 1.0.6.pl00-1
upstream update 1.0.6

Modified:
  libburn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 15:08:49 UTC (rev 119039)
+++ PKGBUILD2011-04-10 17:24:51 UTC (rev 119040)
@@ -3,7 +3,7 @@
 # Contributor: William Rea sillywi...@gmail.com
 
 pkgname=libburn
-pkgver=1.0.4.pl00
+pkgver=1.0.6.pl00
 pkgrel=1
 pkgdesc=Library for reading, mastering and writing optical discs
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('glibc')
 
source=(http://files.libburnia-project.org/releases/${pkgname}-${pkgver}.tar.gz)
 options=('!libtool' '!emptydirs')
-md5sums=('edc117aa6d02a19c5aafe30d95df5e80')
+md5sums=('7c3bd62964e5885f7733cf904089f82d')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver/.pl??/}



[arch-commits] Commit in libburn/repos (extra-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:24:56
  Author: andyrtr
Revision: 119041

archrelease: remove extra-i686

Deleted:
  libburn/repos/extra-i686/



[arch-commits] Commit in libburn/repos (extra-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:25:20
  Author: andyrtr
Revision: 119042

archrelease: copy trunk to extra-i686

Added:
  libburn/repos/extra-i686/



[arch-commits] Commit in libburn/repos (extra-x86_64)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:25:26
  Author: andyrtr
Revision: 119043

archrelease: remove extra-x86_64

Deleted:
  libburn/repos/extra-x86_64/



[arch-commits] Commit in libburn/repos (extra-x86_64)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:25:46
  Author: andyrtr
Revision: 119044

archrelease: copy trunk to extra-x86_64

Added:
  libburn/repos/extra-x86_64/



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

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:31:05
  Author: andyrtr
Revision: 119045

upgpkg: libisofs 1.0.6-1
upstream update 1.0.6

Modified:
  libisofs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 17:25:46 UTC (rev 119044)
+++ PKGBUILD2011-04-10 17:31:05 UTC (rev 119045)
@@ -4,7 +4,7 @@
 # Contributor: Bjorn Martensen
 
 pkgname=libisofs
-pkgver=1.0.4
+pkgver=1.0.6
 pkgrel=1
 pkgdesc=Library to pack up hard disk files and directories into a ISO 9660 
disk image
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('acl' 'zlib')
 
source=(http://files.libburnia-project.org/releases/${pkgname}-${pkgver}.tar.gz)
 options=('!libtool')
-md5sums=('5a8abcec98c312f5c3550cb66754eb66')
+md5sums=('85b8d2c9e378dc01c4b6039bcc1c6b43')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in libisofs/repos (extra-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:31:12
  Author: andyrtr
Revision: 119046

archrelease: remove extra-i686

Deleted:
  libisofs/repos/extra-i686/



[arch-commits] Commit in libisofs/repos (extra-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:31:29
  Author: andyrtr
Revision: 119047

archrelease: copy trunk to extra-i686

Added:
  libisofs/repos/extra-i686/



[arch-commits] Commit in libisofs/repos (extra-x86_64)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:31:33
  Author: andyrtr
Revision: 119048

archrelease: remove extra-x86_64

Deleted:
  libisofs/repos/extra-x86_64/



[arch-commits] Commit in libisofs/repos (extra-x86_64)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:31:50
  Author: andyrtr
Revision: 119049

archrelease: copy trunk to extra-x86_64

Added:
  libisofs/repos/extra-x86_64/



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

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:34:53
  Author: andyrtr
Revision: 119050

upgpkg: libisoburn 1.0.6.pl00-1
upstream update 1.0.6

Modified:
  libisoburn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 17:31:50 UTC (rev 119049)
+++ PKGBUILD2011-04-10 17:34:53 UTC (rev 119050)
@@ -3,20 +3,24 @@
 # Contributor: Gour Gour g...@mail.inet.hr
 
 pkgname=libisoburn
-pkgver=1.0.4.pl00
+pkgver=1.0.6.pl00
 pkgrel=1
 pkgdesc=frontend for libraries libburn and libisofs
 url=http://libburnia.pykix.org/wiki/Libisoburn;
 arch=('i686' 'x86_64')
 license=('GPL2')
-depends=('libburn=1.0.4' 'libisofs=1.0.4' 'readline=6.1')
+depends=('libburn=1.0.6' 'libisofs=1.0.6' 'readline=6.1')
 options=('!libtool')
 
source=(http://files.libburnia-project.org/releases/${pkgname}-${pkgver}.tar.gz)
-md5sums=('ba21567325bda50f02d406f46c3c8392')
+md5sums=('f4eff76915c08dba533180d618df95a1')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver/.pl??/}
   ./configure --prefix=/usr
   make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver/.pl??/}
   make DESTDIR=${pkgdir} install
 }



[arch-commits] Commit in libisoburn/repos (extra-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:34:57
  Author: andyrtr
Revision: 119051

archrelease: remove extra-i686

Deleted:
  libisoburn/repos/extra-i686/



[arch-commits] Commit in libisoburn/repos (extra-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:35:15
  Author: andyrtr
Revision: 119052

archrelease: copy trunk to extra-i686

Added:
  libisoburn/repos/extra-i686/



[arch-commits] Commit in libisoburn/repos (extra-x86_64)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:35:19
  Author: andyrtr
Revision: 119053

archrelease: remove extra-x86_64

Deleted:
  libisoburn/repos/extra-x86_64/



[arch-commits] Commit in libisoburn/repos (extra-x86_64)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 13:35:37
  Author: andyrtr
Revision: 119054

archrelease: copy trunk to extra-x86_64

Added:
  libisoburn/repos/extra-x86_64/



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

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 14:17:00
  Author: andyrtr
Revision: 119055

upgpkg: mesa 7.10.2-1
upstream update stable 7.10.2; disable nouveau-dri for now because the build is 
broken (runtime too for some cards) and can only be reenabled in 7.11 branch

Modified:
  mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 17:35:37 UTC (rev 119054)
+++ PKGBUILD2011-04-10 18:17:00 UTC (rev 119055)
@@ -3,7 +3,7 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgbase=mesa
-pkgname=('mesa' 'libgl' 'libgles' 'libegl' 'ati-dri' 'intel-dri' 
'unichrome-dri' 'mach64-dri' 'mga-dri' 'r128-dri' 'savage-dri' 'sis-dri' 
'tdfx-dri' 'nouveau-dri')
+pkgname=('mesa' 'libgl' 'libgles' 'libegl' 'ati-dri' 'intel-dri' 
'unichrome-dri' 'mach64-dri' 'mga-dri' 'r128-dri' 'savage-dri' 'sis-dri' 
'tdfx-dri') # 'nouveau-dri')
 
 #_git=true
 _git=false
@@ -13,7 +13,7 @@
   else
 pkgver=7.10.2
 fi
-pkgrel=2
+pkgrel=1
 arch=('i686' 'x86_64')
 makedepends=('glproto=1.4.12' 'pkgconfig' 'libdrm=2.4.23' 
'libxxf86vm=1.1.0' 'libxdamage=1.1.3' 'expat=2.0.1' 'libx11=1.3.5' 
'libxt=1.0.8' 
  'gcc-libs=4.5' 'dri2proto=2.3' 'python2' 'libxml2' 'imake')
@@ -64,7 +64,7 @@
 --with-dri-driverdir=/usr/lib/xorg/modules/dri \
 --enable-gallium-radeon \
 --enable-gallium-r600 \
---enable-gallium-nouveau \
+--disable-gallium-nouveau \
 --enable-gallium-swrast \
 --enable-glx-tls \
 --with-driver=dri \



[arch-commits] Commit in mesa/repos (testing-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 14:17:12
  Author: andyrtr
Revision: 119056

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-x86_64)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 14:17:45
  Author: andyrtr
Revision: 119058

archrelease: remove testing-x86_64

Deleted:
  mesa/repos/testing-x86_64/



[arch-commits] Commit in mesa/repos (testing-x86_64)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 14:18:04
  Author: andyrtr
Revision: 119059

archrelease: copy trunk to testing-x86_64

Added:
  mesa/repos/testing-x86_64/



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

2011-04-10 Thread Andrea Scarpino
Date: Sunday, April 10, 2011 @ 14:47:30
  Author: andrea
Revision: 119060

upgpkg: phonon-gstreamer 4.5.0-1
upstream release

Modified:
  phonon-gstreamer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 18:18:04 UTC (rev 119059)
+++ PKGBUILD2011-04-10 18:47:30 UTC (rev 119060)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=phonon-gstreamer
-pkgver=4.4.4
+pkgver=4.5.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://phonon.kde.org;
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'automoc4' 'phonon' 'mesa')
 provides=('phonon-backend')
 
source=(http://download.kde.org/stable/phonon/phonon-backend-gstreamer/${pkgver}/src/phonon-backend-gstreamer-${pkgver}.tar.bz2;)
-md5sums=('fa313a77db3da9df20bc8991352378cb')
+md5sums=('2875139f2b7b649396125f4acc66de67')
 
 build() {
   cd ${srcdir}



[arch-commits] Commit in phonon-gstreamer/repos (extra-i686)

2011-04-10 Thread Andrea Scarpino
Date: Sunday, April 10, 2011 @ 14:47:35
  Author: andrea
Revision: 119061

archrelease: remove extra-i686

Deleted:
  phonon-gstreamer/repos/extra-i686/



[arch-commits] Commit in phonon-gstreamer/repos (extra-i686)

2011-04-10 Thread Andrea Scarpino
Date: Sunday, April 10, 2011 @ 14:47:48
  Author: andrea
Revision: 119062

archrelease: copy trunk to extra-i686

Added:
  phonon-gstreamer/repos/extra-i686/



[arch-commits] Commit in phonon-gstreamer/repos (extra-x86_64)

2011-04-10 Thread Andrea Scarpino
Date: Sunday, April 10, 2011 @ 14:47:54
  Author: andrea
Revision: 119063

archrelease: remove extra-x86_64

Deleted:
  phonon-gstreamer/repos/extra-x86_64/



[arch-commits] Commit in phonon-gstreamer/repos (extra-x86_64)

2011-04-10 Thread Andrea Scarpino
Date: Sunday, April 10, 2011 @ 14:48:07
  Author: andrea
Revision: 119064

archrelease: copy trunk to extra-x86_64

Added:
  phonon-gstreamer/repos/extra-x86_64/



[arch-commits] Commit in (4 files)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 14:53:50
  Author: ibiru
Revision: 119065

replace iptraf with iptraf-ng. Implement FS#22143

Added:
  iptraf-ng/
  iptraf-ng/repos/
  iptraf-ng/trunk/
  iptraf-ng/trunk/PKGBUILD

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

Added: iptraf-ng/trunk/PKGBUILD
===
--- iptraf-ng/trunk/PKGBUILD(rev 0)
+++ iptraf-ng/trunk/PKGBUILD2011-04-10 18:53:50 UTC (rev 119065)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Maintainer: sh0 m...@sh0.org
+
+pkgname=iptraf-ng
+pkgver=1.0.2
+pkgrel=1
+pkgdesc=A console-based network monitoring utility (a fork of original 
iptraf)
+url=https://fedorahosted.org/iptraf-ng/;
+arch=('i686' 'x86_64')
+depends=('ncurses')
+license=('GPL2')
+replaces=('iptraf')
+options=('!libtool')
+source=(https://fedorahosted.org/releases/i/p/iptraf-ng/${pkgname}-${pkgver}.tar.gz)
+md5sums=('b2adbbbee4c269fb97a1951981c9047c')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static
+  make CFLAGS=$CFLAGS
+}
+
+package() {
+  cd $srcdir/${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir install
+}
+
+# vim: ts=2: ft=sh


Property changes on: iptraf-ng/trunk/PKGBUILD
___
Added: svn:keywords
   + Id



[arch-commits] Commit in iptraf-ng/repos (extra-i686)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 14:55:07
  Author: ibiru
Revision: 119066

archrelease: copy trunk to extra-i686

Added:
  iptraf-ng/repos/extra-i686/



[arch-commits] Commit in iptraf/repos (extra-x86_64)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 14:55:13
  Author: ibiru
Revision: 119067

db-remove: iptraf removed by ibiru

Deleted:
  iptraf/repos/extra-x86_64/



[arch-commits] Commit in iptraf-ng/repos (extra-x86_64)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 14:55:23
  Author: ibiru
Revision: 119068

archrelease: copy trunk to extra-x86_64

Added:
  iptraf-ng/repos/extra-x86_64/



[arch-commits] Commit in iptraf/repos (extra-i686)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 14:55:26
  Author: ibiru
Revision: 119069

db-remove: iptraf removed by ibiru

Deleted:
  iptraf/repos/extra-i686/



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

2011-04-10 Thread Eric Bélanger
Date: Sunday, April 10, 2011 @ 15:38:26
  Author: eric
Revision: 119070

Installed bash completion in /etc/bash_completion.d (close FS#23681)

Modified:
  aria2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 18:55:26 UTC (rev 119069)
+++ PKGBUILD2011-04-10 19:38:26 UTC (rev 119070)
@@ -24,4 +24,6 @@
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
+  install -D -m644 doc/bash_completion/aria2c 
${pkgdir}/etc/bash_completion.d/aria2c
+  rm -r ${pkgdir}/usr/share/doc/aria2/bash_completion
 }



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

2011-04-10 Thread Thomas Bächler
Date: Sunday, April 10, 2011 @ 15:42:14
  Author: thomas
Revision: 119071

mkinitcpio: update to 0.6.10

Modified:
  mkinitcpio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 19:38:26 UTC (rev 119070)
+++ PKGBUILD2011-04-10 19:42:14 UTC (rev 119071)
@@ -2,7 +2,7 @@
 # Maintainer: Thomas Baechler tho...@archlinux.org
 
 pkgname=mkinitcpio
-pkgver=0.6.9
+pkgver=0.6.10
 pkgrel=1
 pkgdesc=Modular initramfs image creation utility
 arch=(any)
@@ -18,7 +18,7 @@
   'klibc-module-init-tools' 'klibc-udev')
 source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz)
 backup=(etc/mkinitcpio.conf)
-sha256sums=('36865b84a458386bb26077c8602f98338802a9d4c228003f32dab26e4cc22cfd')
+sha256sums=('ef86f9b495fca9d8e330154bdfc8590c4efeb2256519544f5389f73c52606e8f')
 
 package() {
   cd $srcdir/${pkgname}-${pkgver}



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

2011-04-10 Thread Thomas Bächler
Date: Sunday, April 10, 2011 @ 15:42:16
  Author: thomas
Revision: 119072

archrelease: remove testing-any

Deleted:
  mkinitcpio/repos/testing-any/



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

2011-04-10 Thread Thomas Bächler
Date: Sunday, April 10, 2011 @ 15:42:25
  Author: thomas
Revision: 119073

archrelease: copy trunk to testing-any

Added:
  mkinitcpio/repos/testing-any/



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

2011-04-10 Thread Eric Bélanger
Date: Sunday, April 10, 2011 @ 15:43:59
  Author: eric
Revision: 119074

Removed conflict with rubygems (close FS#23408)

Modified:
  ruby/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 19:42:25 UTC (rev 119073)
+++ PKGBUILD2011-04-10 19:43:59 UTC (rev 119074)
@@ -32,7 +32,7 @@
 package_ruby() {
   depends=('gdbm' 'db' 'openssl' 'zlib' 'readline' 'libffi')
   provides=('rubygems' 'rake')
-  conflicts=('rubygems' 'rake')
+  conflicts=('rake')
   optdepends=('tk: for Ruby/TK')
 
   cd ${srcdir}/${pkgbase}-${pkgver//_/-}



[arch-commits] Commit in mesa/trunk (PKGBUILD nouveau-fix-header.patch)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 16:11:41
  Author: ibiru
Revision: 119075

upgpkg: mesa 7.10.2-2
bring back nouveau-dri. fix include header in nouveau when using libdrm 2.4.24

Added:
  mesa/trunk/nouveau-fix-header.patch
Modified:
  mesa/trunk/PKGBUILD

--+
 PKGBUILD |   10 +++--
 nouveau-fix-header.patch |   86 +
 2 files changed, 92 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 19:43:59 UTC (rev 119074)
+++ PKGBUILD2011-04-10 20:11:41 UTC (rev 119075)
@@ -3,7 +3,7 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgbase=mesa
-pkgname=('mesa' 'libgl' 'libgles' 'libegl' 'ati-dri' 'intel-dri' 
'unichrome-dri' 'mach64-dri' 'mga-dri' 'r128-dri' 'savage-dri' 'sis-dri' 
'tdfx-dri') # 'nouveau-dri')
+pkgname=('mesa' 'libgl' 'libgles' 'libegl' 'ati-dri' 'intel-dri' 
'unichrome-dri' 'mach64-dri' 'mga-dri' 'r128-dri' 'savage-dri' 'sis-dri' 
'tdfx-dri' 'nouveau-dri')
 
 #_git=true
 _git=false
@@ -13,13 +13,13 @@
   else
 pkgver=7.10.2
 fi
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 makedepends=('glproto=1.4.12' 'pkgconfig' 'libdrm=2.4.23' 
'libxxf86vm=1.1.0' 'libxdamage=1.1.3' 'expat=2.0.1' 'libx11=1.3.5' 
'libxt=1.0.8' 
  'gcc-libs=4.5' 'dri2proto=2.3' 'python2' 'libxml2' 'imake')
 url=http://mesa3d.sourceforge.net;
 license=('custom')
-source=(LICENSE gnome-shell-shader-fix.patch)
+source=(LICENSE gnome-shell-shader-fix.patch nouveau-fix-header.patch)
 if [ ${_git} = true ]; then
# mesa git shot from 7.10 branch - see for state: 
http://cgit.freedesktop.org/mesa/mesa/commit/?h=7.10id=cc1636b6db85604510f97f8a37d7fd0ecf453866
source=(${source[@]} 
'ftp://ftp.archlinux.org/other/mesa/mesa-cc1636b6db85604510f97f8a37d7fd0ecf453866.tar.bz2')
@@ -29,6 +29,7 @@
 fi
 md5sums=('5c65a0fe315dd347e09b1f2826a1df5a'
  '3ec78f340f9387abd7a37b195e764cbf'
+ '67c87b77cc2236b52a3b47dad3fbb5d4'
  'f5de82852f1243f42cc004039e10b771')
 
 build() {
@@ -42,6 +43,7 @@
 #backport from master to fix gnome-shell shader
 #https://bugs.freedesktop.org/show_bug.cgi?id=35714
 patch -Np1 -i ${srcdir}/gnome-shell-shader-fix.patch
+patch -Np1 -i ${srcdir}/nouveau-fix-header.patch
 
 if [ ${_git} = true ]; then
 ./autogen.sh --prefix=/usr \
@@ -64,7 +66,7 @@
 --with-dri-driverdir=/usr/lib/xorg/modules/dri \
 --enable-gallium-radeon \
 --enable-gallium-r600 \
---disable-gallium-nouveau \
+--enable-gallium-nouveau \
 --enable-gallium-swrast \
 --enable-glx-tls \
 --with-driver=dri \

Added: nouveau-fix-header.patch
===
--- nouveau-fix-header.patch(rev 0)
+++ nouveau-fix-header.patch2011-04-10 20:11:41 UTC (rev 119075)
@@ -0,0 +1,86 @@
+From 5c102dd94f435e97507213fbd128e50dd15f5f54 Mon Sep 17 00:00:00 2001
+From: Ben Skeggs bske...@redhat.com
+Date: Mon, 20 Dec 2010 03:39:36 +
+Subject: nouveau: fix includes for latest libdrm
+
+Signed-off-by: Ben Skeggs bske...@redhat.com
+---
+diff --git a/src/gallium/drivers/nouveau/nouveau_winsys.h 
b/src/gallium/drivers/nouveau/nouveau_winsys.h
+index ab480ca..747b084 100644
+--- a/src/gallium/drivers/nouveau/nouveau_winsys.h
 b/src/gallium/drivers/nouveau/nouveau_winsys.h
+@@ -10,7 +10,7 @@
+ #include nouveau/nouveau_grobj.h
+ #include nouveau/nouveau_notifier.h
+ #include nouveau/nouveau_resource.h
+-#include nouveau/nouveau_pushbuf.h
++#include nouveau/nv04_pushbuf.h
+ 
+ #ifndef NV04_PFIFO_MAX_PACKET_LEN
+ #define NV04_PFIFO_MAX_PACKET_LEN 2047
+diff --git a/src/gallium/drivers/nv50/nv50_surface.c 
b/src/gallium/drivers/nv50/nv50_surface.c
+index ce48022..a99df76 100644
+--- a/src/gallium/drivers/nv50/nv50_surface.c
 b/src/gallium/drivers/nv50/nv50_surface.c
+@@ -22,7 +22,7 @@
+ 
+ #define __NOUVEAU_PUSH_H__
+ #include stdint.h
+-#include nouveau/nouveau_pushbuf.h
++#include nouveau/nv04_pushbuf.h
+ #include nv50_context.h
+ #include nv50_resource.h
+ #include pipe/p_defines.h
+diff --git a/src/gallium/drivers/nvfx/nv04_2d.c 
b/src/gallium/drivers/nvfx/nv04_2d.c
+index e0e65e7..e2fadd3 100644
+--- a/src/gallium/drivers/nvfx/nv04_2d.c
 b/src/gallium/drivers/nvfx/nv04_2d.c
+@@ -34,11 +34,11 @@
+ #include stdio.h
+ #include stdint.h
+ #include nouveau/nouveau_device.h
+-#include nouveau/nouveau_pushbuf.h
+ #include nouveau/nouveau_channel.h
+ #include nouveau/nouveau_bo.h
+ #include nouveau/nouveau_notifier.h
+ #include nouveau/nouveau_grobj.h
++#include nouveau/nv04_pushbuf.h
+ #include nv04_2d.h
+ 
+ #include nouveau/nv_object.xml.h
+diff --git a/src/gallium/drivers/nvfx/nvfx_vbo.c 
b/src/gallium/drivers/nvfx/nvfx_vbo.c
+index 597664e..339b317 100644
+--- a/src/gallium/drivers/nvfx/nvfx_vbo.c
 b/src/gallium/drivers/nvfx/nvfx_vbo.c
+@@ -9,8 +9,7 @@
+ #include nvfx_resource.h
+ 
+ #include 

[arch-commits] Commit in mesa/repos (testing-i686)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 16:12:32
  Author: ibiru
Revision: 119076

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 16:12:44
  Author: ibiru
Revision: 119077

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-x86_64)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 16:13:37
  Author: ibiru
Revision: 119078

archrelease: remove testing-x86_64

Deleted:
  mesa/repos/testing-x86_64/



[arch-commits] Commit in mesa/repos (testing-x86_64)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 16:13:50
  Author: ibiru
Revision: 119079

archrelease: copy trunk to testing-x86_64

Added:
  mesa/repos/testing-x86_64/



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

2011-04-10 Thread Eric Bélanger
Date: Sunday, April 10, 2011 @ 16:19:22
  Author: eric
Revision: 119080

upgpkg: geeqie 1.0-5
Added install scriptlet to run update-desktop-database (close FS#23316), Added 
gnome-doc-utils makedepends

Added:
  geeqie/trunk/geeqie.install
Modified:
  geeqie/trunk/PKGBUILD

+
 PKGBUILD   |7 ---
 geeqie.install |   11 +++
 2 files changed, 15 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 20:13:50 UTC (rev 119079)
+++ PKGBUILD2011-04-10 20:19:22 UTC (rev 119080)
@@ -4,15 +4,16 @@
 
 pkgname=geeqie
 pkgver=1.0
-pkgrel=4
+pkgrel=5
 pkgdesc=A lightweight image browser and viewer (fork of GQview)
 arch=('i686' 'x86_64')
 url=http://geeqie.sourceforge.net/;
 license=('GPL3')
-depends=('exiv2' 'gtk2' 'lcms')
-makedepends=('intltool' 'doxygen')
+depends=('exiv2' 'gtk2' 'lcms' 'desktop-file-utils')
+makedepends=('intltool' 'doxygen' 'gnome-doc-utils')
 optdepends=('librsvg: SVG rendering')
 replaces=('gqview-devel')
+install=geeqie.install
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
 md5sums=('1d67ef990390224c5052697d93bb49c0')
 sha1sums=('8494a557d67d20e6ad720645ec789dd2b33a3266')

Added: geeqie.install
===
--- geeqie.install  (rev 0)
+++ geeqie.install  2011-04-10 20:19:22 UTC (rev 119080)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}



[arch-commits] Commit in geeqie/repos (extra-i686)

2011-04-10 Thread Eric Bélanger
Date: Sunday, April 10, 2011 @ 16:19:27
  Author: eric
Revision: 119081

archrelease: remove extra-i686

Deleted:
  geeqie/repos/extra-i686/



[arch-commits] Commit in geeqie/repos (extra-i686)

2011-04-10 Thread Eric Bélanger
Date: Sunday, April 10, 2011 @ 16:19:37
  Author: eric
Revision: 119082

archrelease: copy trunk to extra-i686

Added:
  geeqie/repos/extra-i686/



[arch-commits] Commit in geeqie/repos (extra-x86_64)

2011-04-10 Thread Eric Bélanger
Date: Sunday, April 10, 2011 @ 16:19:40
  Author: eric
Revision: 119083

archrelease: remove extra-x86_64

Deleted:
  geeqie/repos/extra-x86_64/



[arch-commits] Commit in geeqie/repos (extra-x86_64)

2011-04-10 Thread Eric Bélanger
Date: Sunday, April 10, 2011 @ 16:19:50
  Author: eric
Revision: 119084

archrelease: copy trunk to extra-x86_64

Added:
  geeqie/repos/extra-x86_64/



[arch-commits] Commit in rsync/repos (extra-i686)

2011-04-10 Thread Angel Velásquez
Date: Sunday, April 10, 2011 @ 16:34:46
  Author: angvp
Revision: 119085

db-move: rsync removed by angvp for move to [extra] (i686)

Deleted:
  rsync/repos/extra-i686/



[arch-commits] Commit in rsync/repos (extra-i686 testing-i686)

2011-04-10 Thread Angel Velásquez
Date: Sunday, April 10, 2011 @ 16:34:46
  Author: angvp
Revision: 119086

db-move: moved rsync from [testing] to [extra] (i686)

Added:
  rsync/repos/extra-i686/
Deleted:
  rsync/repos/testing-i686/



[arch-commits] Commit in rsync/repos (extra-x86_64)

2011-04-10 Thread Angel Velásquez
Date: Sunday, April 10, 2011 @ 16:34:47
  Author: angvp
Revision: 119087

db-move: rsync removed by angvp for move to [extra] (x86_64)

Deleted:
  rsync/repos/extra-x86_64/



[arch-commits] Commit in rsync/repos (extra-x86_64 testing-x86_64)

2011-04-10 Thread Angel Velásquez
Date: Sunday, April 10, 2011 @ 16:34:48
  Author: angvp
Revision: 119088

db-move: moved rsync from [testing] to [extra] (x86_64)

Added:
  rsync/repos/extra-x86_64/
Deleted:
  rsync/repos/testing-x86_64/



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

2011-04-10 Thread Allan McRae
Date: Sunday, April 10, 2011 @ 17:34:57
  Author: allan
Revision: 119089

upgpkg: isl 0.06-1
upstream update, soname bump

Modified:
  isl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 20:34:48 UTC (rev 119088)
+++ PKGBUILD2011-04-10 21:34:57 UTC (rev 119089)
@@ -2,7 +2,7 @@
 # Maintainer: Allan McRae al...@archlinux.org
 
 pkgname=isl
-pkgver=0.05.1
+pkgver=0.06
 pkgrel=1
 pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
 arch=('i686' 'x86_64')
@@ -10,16 +10,24 @@
 license=('LGPL2.1')
 options=('!libtool')
 source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
-md5sums=('8ef8f307d3f042434e358ddf3320dcad')
+md5sums=('504f054eaffdd8d07c497ebe3ebc7e04')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
   ./configure --prefix=/usr
   make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
   make check
 }
 
 package() {
   cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
+  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.6.0.0-gdb.py
 }



[arch-commits] Commit in isl/repos (testing-i686)

2011-04-10 Thread Allan McRae
Date: Sunday, April 10, 2011 @ 17:35:03
  Author: allan
Revision: 119090

archrelease: remove testing-i686

Deleted:
  isl/repos/testing-i686/



[arch-commits] Commit in isl/repos (testing-i686)

2011-04-10 Thread Allan McRae
Date: Sunday, April 10, 2011 @ 17:35:29
  Author: allan
Revision: 119091

archrelease: copy trunk to testing-i686

Added:
  isl/repos/testing-i686/



[arch-commits] Commit in isl/repos (testing-x86_64)

2011-04-10 Thread Allan McRae
Date: Sunday, April 10, 2011 @ 17:35:34
  Author: allan
Revision: 119092

archrelease: remove testing-x86_64

Deleted:
  isl/repos/testing-x86_64/



[arch-commits] Commit in isl/repos (testing-x86_64)

2011-04-10 Thread Allan McRae
Date: Sunday, April 10, 2011 @ 17:35:58
  Author: allan
Revision: 119093

archrelease: copy trunk to testing-x86_64

Added:
  isl/repos/testing-x86_64/



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

2011-04-10 Thread Allan McRae
Date: Sunday, April 10, 2011 @ 17:37:04
  Author: allan
Revision: 119094

upgpkg: cloog 0.16.2-1
upstream update, rebuild for isl soname bump

Modified:
  cloog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 21:35:58 UTC (rev 119093)
+++ PKGBUILD2011-04-10 21:37:04 UTC (rev 119094)
@@ -2,7 +2,7 @@
 # Maintainer: Allan McRae al...@archlinux.org
 
 pkgname=cloog
-pkgver=0.16.1
+pkgver=0.16.2
 pkgrel=1
 pkgdesc=Library that generates loops for scanning polyhedra
 arch=('i686' 'x86_64')
@@ -12,12 +12,16 @@
 conflicts=('cloog-ppl0.15.10-2')
 options=('!libtool')
 source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
-md5sums=('947123350d1ff6dcb4b0774947ac015a')
+md5sums=('83877caaa879c7160063138bb18348e7')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
   ./configure --prefix=/usr --with-isl=system --with-gmp=system
   make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
   make check
 }
 



[arch-commits] Commit in cloog/repos (testing-i686)

2011-04-10 Thread Allan McRae
Date: Sunday, April 10, 2011 @ 17:37:10
  Author: allan
Revision: 119095

archrelease: remove testing-i686

Deleted:
  cloog/repos/testing-i686/



[arch-commits] Commit in cloog/repos (testing-i686)

2011-04-10 Thread Allan McRae
Date: Sunday, April 10, 2011 @ 17:37:34
  Author: allan
Revision: 119096

archrelease: copy trunk to testing-i686

Added:
  cloog/repos/testing-i686/



[arch-commits] Commit in cloog/repos (testing-x86_64)

2011-04-10 Thread Allan McRae
Date: Sunday, April 10, 2011 @ 17:37:40
  Author: allan
Revision: 119097

archrelease: remove testing-x86_64

Deleted:
  cloog/repos/testing-x86_64/



[arch-commits] Commit in cloog/repos (testing-x86_64)

2011-04-10 Thread Allan McRae
Date: Sunday, April 10, 2011 @ 17:38:04
  Author: allan
Revision: 119098

archrelease: copy trunk to testing-x86_64

Added:
  cloog/repos/testing-x86_64/



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

2011-04-10 Thread Allan McRae
Date: Sunday, April 10, 2011 @ 17:45:04
  Author: allan
Revision: 119099

upgpkg: gcc 4.6.0-2
new upstream snapshot, rebuild for isl soname bump

Modified:
  gcc/trunk/PKGBUILD

--+
 PKGBUILD |   24 
 1 file changed, 12 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-10 21:38:04 UTC (rev 119098)
+++ PKGBUILD2011-04-10 21:45:04 UTC (rev 119099)
@@ -6,8 +6,8 @@
 
 pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-ada' 'gcc-go')
 pkgver=4.6.0
-pkgrel=1
-#_snapshot=4.6.0-RC-20110321
+pkgrel=2
+_snapshot=4.6-20110408
 _libstdcppmanver=20110201  # Note: check source directory name 
when updating this
 pkgdesc=The GNU Compiler Collection
 arch=('i686' 'x86_64')
@@ -15,18 +15,18 @@
 url=http://gcc.gnu.org;
 makedepends=('binutils=2.21' 'libmpc' 'cloog' 'ppl' 'gcc-ada' 'dejagnu')
 options=('!libtool' '!emptydirs')
-source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-{core,g++,fortran,objc,ada,go,testsuite}-${pkgver}.tar.bz2
-   
#ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-{core,g++,fortran,objc,ada,go,testsuite}-${_snapshot}.tar.bz2
+source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-{core,g++,fortran,objc,ada,go,testsuite}-${pkgver}.tar.bz2
+   
ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-{core,g++,fortran,objc,ada,go,testsuite}-${_snapshot}.tar.bz2

ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/libstdc++-api.${_libstdcppmanver}.man.tar.bz2
gcc_pure64.patch
gcc-hash-style-both.patch)
-md5sums=('b1957f3209080b2f55bc3756d3a62b7c'
- 'a30090fa655d0db4c970740d353c81f1'
- 'a4687a9035c3e92db7e84fc01fc548ef'
- '120d4675366ee82ea52f9ed65b57da04'
- 'ea003fee5123f5bfbe17cc569cffe867'
- 'c182dfcad477564af9d94e2aa1552bcd'
- '8c76d751c5b99560e8acc3111f62263a'
+md5sums=('51ee21d6bd7955c78cb29038ff8089d0'
+ '92144f8790ca850317b6f4496e534aef'
+ '7286e62b51e126226e10e0e6a1706eae'
+ 'a9da84a451c4484126b2befa446b1638'
+ '94de82b3148b7686901f35c223477813'
+ '6719f6e005e2e443ebc5a3609607e8ef'
+ '0a870e1180a0cb4ffa5264f0b79abe3f'
  '1e9fd2eaf0ee47ea64e82c48998f1999'
  '4030ee1c08dd1e843c0225b772360e76'
  '4df25b623799b148a0703eaeec8fdf3f')
@@ -69,7 +69,7 @@
   --enable-lto --enable-gold --enable-ld=default \
   --enable-plugin --with-plugin-ld=ld.gold \
   --disable-multilib --disable-libstdcxx-pch \
-  --enable-checking=release   
+  --enable-checking=release
   make
 }
 



[arch-commits] Commit in gcc/repos (testing-i686)

2011-04-10 Thread Allan McRae
Date: Sunday, April 10, 2011 @ 17:45:10
  Author: allan
Revision: 119100

archrelease: remove testing-i686

Deleted:
  gcc/repos/testing-i686/



[arch-commits] Commit in gcc/repos (testing-i686)

2011-04-10 Thread Allan McRae
Date: Sunday, April 10, 2011 @ 17:45:33
  Author: allan
Revision: 119101

archrelease: copy trunk to testing-i686

Added:
  gcc/repos/testing-i686/



[arch-commits] Commit in gcc/repos (testing-x86_64)

2011-04-10 Thread Allan McRae
Date: Sunday, April 10, 2011 @ 17:45:38
  Author: allan
Revision: 119102

archrelease: remove testing-x86_64

Deleted:
  gcc/repos/testing-x86_64/



  1   2   >