[arch-commits] Commit in xorg-server/trunk (3 files)

2011-10-10 Thread Jan de Groot
Date: Monday, October 10, 2011 @ 05:05:46
  Author: jgc
Revision: 140221

upgpkg: xorg-server 1.11.1-2

Add upstream patches from 1.11 branch, revert commit that causes huge slowdown 
with nvidia drivers

Added:
  xorg-server/trunk/git-fixes.patch
  xorg-server/trunk/revert-trapezoids.patch
Modified:
  xorg-server/trunk/PKGBUILD

-+
 PKGBUILD|   12 +
 git-fixes.patch |  288 ++
 revert-trapezoids.patch |  179 
 3 files changed, 478 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-10-09 23:40:26 UTC (rev 140220)
+++ PKGBUILD2011-10-10 09:05:46 UTC (rev 140221)
@@ -4,7 +4,7 @@
 pkgbase=xorg-server
 pkgname=('xorg-server' 'xorg-server-xephyr' 'xorg-server-xdmx' 
'xorg-server-xvfb' 'xorg-server-xnest' 'xorg-server-common' 'xorg-server-devel')
 pkgver=1.11.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('custom')
 url=http://xorg.freedesktop.org;
@@ -13,12 +13,16 @@
 source=(${url}/releases/individual/xserver/${pkgbase}-${pkgver}.tar.bz2
 autoconfig-nvidia.patch
 autoconfig-sis.patch
+revert-trapezoids.patch
+git-fixes.patch
 xvfb-run
 xvfb-run.1
 10-quirks.conf)
 sha1sums=('ed0358b61294f1283aad42cf1e609752ceeffafd'
   '0249b892f27243d8fe6fe6d226bf4c2391cedf49'
   '962fecc159c128728f14e8ba231c5b00391ff4ac'
+  'd9f7d9553e772c2682c15079019d30c658a4f83b'
+  'd73125bf93aea09b0beb55e75c510b9f72f5d21a'
   'c94f742d3f9cabf958ae58e4015d9dd185aabedc'
   '6838fc00ef4618c924a77e0fb03c05346080908a'
   '993798f3d22ad672d769dae5f48d1fa068d5578f')
@@ -32,6 +36,12 @@
   # Use unofficial imedia SiS driver for supported SiS devices
   patch -Np0 -i ${srcdir}/autoconfig-sis.patch
 
+  # Revert commit that causes huge slowdowns with binary nVidia driver
+  patch -Np1 -i ${srcdir}/revert-trapezoids.patch
+
+  # Add post-release patches from 1.11 branch
+  patch -Np1 -i ${srcdir}/git-fixes.patch
+
   autoreconf
   ./configure --prefix=/usr \
   --enable-ipv6 \

Added: git-fixes.patch
===
--- git-fixes.patch (rev 0)
+++ git-fixes.patch 2011-10-10 09:05:46 UTC (rev 140221)
@@ -0,0 +1,288 @@
+From bd6ea85209e5ab80375d4ec9994d10a89fd1374a Mon Sep 17 00:00:00 2001
+From: Jamey Sharp ja...@minilop.net
+Date: Wed, 15 Sep 2010 01:35:21 +
+Subject: Fix pixmap double-frees on error paths.
+
+If AddResource fails, it will automatically free the object that was
+passed to it by calling the appropriate deleteFunc; and of course
+FreeResource also calls the deleteFunc. In both cases it's wrong to call
+the destroy hook manually.
+
+Commit by Jamey Sharp and Josh Triplett.
+
+Signed-off-by: Jamey Sharp ja...@minilop.net
+Signed-off-by: Josh Triplett j...@joshtriplett.org
+Reviewed-by: Peter Hutterer peter.hutte...@who-t.net
+Reviewed-by: Aaron Plattner aplatt...@nvidia.com
+(cherry picked from commit 0f380a5005f800572773cd4667ce43c7459cc467)
+---
+diff --git a/Xext/shm.c b/Xext/shm.c
+index b08af82..4141a8f 100644
+--- a/Xext/shm.c
 b/Xext/shm.c
+@@ -991,7 +991,6 @@ CreatePmap:
+   pMap-drawable.serialNumber = NEXT_SERIAL_NUMBER;
+   pMap-drawable.id = newPix-info[j].id;
+   if (!AddResource(newPix-info[j].id, RT_PIXMAP, (pointer)pMap)) {
+-  (*pScreen-DestroyPixmap)(pMap);
+   result = BadAlloc;
+   break;
+   }
+@@ -1002,10 +1001,8 @@ CreatePmap:
+ }
+ 
+ if(result == BadAlloc) {
+-  while(j--) {
+-  (*pScreen-DestroyPixmap)(pMap);
++  while(j--)
+   FreeResource(newPix-info[j].id, RT_NONE);
+-  }
+   free(newPix);
+ } else 
+   AddResource(stuff-pid, XRT_PIXMAP, newPix);
+@@ -1110,7 +1107,6 @@ CreatePmap:
+   {
+   return Success;
+   }
+-  pDraw-pScreen-DestroyPixmap(pMap);
+ }
+ return BadAlloc;
+ }
+diff --git a/dix/dispatch.c b/dix/dispatch.c
+index 192c8c3..f8200b1 100644
+--- a/dix/dispatch.c
 b/dix/dispatch.c
+@@ -1419,7 +1419,6 @@ CreatePmap:
+   }
+   if (AddResource(stuff-pid, RT_PIXMAP, (pointer)pMap))
+   return Success;
+-  (*pDraw-pScreen-DestroyPixmap)(pMap);
+ }
+ return BadAlloc;
+ }
+--
+cgit v0.9.0.2-2-gbebe
+From 347f5610ca023fb31485aa19c20607af8bf9c834 Mon Sep 17 00:00:00 2001
+From: Carlos Garnacho carl...@gnome.org
+Date: Tue, 30 Aug 2011 22:46:52 +
+Subject: Xi: Fix passive XI2 ungrabs on XIAll[Master]Devices
+
+The corresponding DeviceIntPtr wasn't being gotten properly,
+resulting in BadDevice from dixLookupDevice().
+
+Signed-off-by: Carlos Garnacho carl...@gnome.org
+Reviewed-by: Peter Hutterer peter.hutte...@who-t.net
+Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
+(cherry picked from commit 

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

2011-10-10 Thread Jan de Groot
Date: Monday, October 10, 2011 @ 05:08:07
  Author: jgc
Revision: 140222

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

Added:
  xorg-server/repos/testing-i686/10-quirks.conf
(from rev 140221, xorg-server/trunk/10-quirks.conf)
  xorg-server/repos/testing-i686/PKGBUILD
(from rev 140221, xorg-server/trunk/PKGBUILD)
  xorg-server/repos/testing-i686/autoconfig-nvidia.patch
(from rev 140221, xorg-server/trunk/autoconfig-nvidia.patch)
  xorg-server/repos/testing-i686/autoconfig-sis.patch
(from rev 140221, xorg-server/trunk/autoconfig-sis.patch)
  xorg-server/repos/testing-i686/git-fixes.patch
(from rev 140221, xorg-server/trunk/git-fixes.patch)
  xorg-server/repos/testing-i686/revert-trapezoids.patch
(from rev 140221, xorg-server/trunk/revert-trapezoids.patch)
  xorg-server/repos/testing-i686/xvfb-run
(from rev 140221, xorg-server/trunk/xvfb-run)
  xorg-server/repos/testing-i686/xvfb-run.1
(from rev 140221, xorg-server/trunk/xvfb-run.1)
  xorg-server/repos/testing-x86_64/10-quirks.conf
(from rev 140221, xorg-server/trunk/10-quirks.conf)
  xorg-server/repos/testing-x86_64/PKGBUILD
(from rev 140221, xorg-server/trunk/PKGBUILD)
  xorg-server/repos/testing-x86_64/autoconfig-nvidia.patch
(from rev 140221, xorg-server/trunk/autoconfig-nvidia.patch)
  xorg-server/repos/testing-x86_64/autoconfig-sis.patch
(from rev 140221, xorg-server/trunk/autoconfig-sis.patch)
  xorg-server/repos/testing-x86_64/git-fixes.patch
(from rev 140221, xorg-server/trunk/git-fixes.patch)
  xorg-server/repos/testing-x86_64/revert-trapezoids.patch
(from rev 140221, xorg-server/trunk/revert-trapezoids.patch)
  xorg-server/repos/testing-x86_64/xvfb-run
(from rev 140221, xorg-server/trunk/xvfb-run)
  xorg-server/repos/testing-x86_64/xvfb-run.1
(from rev 140221, xorg-server/trunk/xvfb-run.1)
Deleted:
  xorg-server/repos/testing-i686/10-quirks.conf
  xorg-server/repos/testing-i686/PKGBUILD
  xorg-server/repos/testing-i686/autoconfig-nvidia.patch
  xorg-server/repos/testing-i686/autoconfig-sis.patch
  xorg-server/repos/testing-i686/xvfb-run
  xorg-server/repos/testing-i686/xvfb-run.1
  xorg-server/repos/testing-x86_64/10-quirks.conf
  xorg-server/repos/testing-x86_64/PKGBUILD
  xorg-server/repos/testing-x86_64/autoconfig-nvidia.patch
  xorg-server/repos/testing-x86_64/autoconfig-sis.patch
  xorg-server/repos/testing-x86_64/xvfb-run
  xorg-server/repos/testing-x86_64/xvfb-run.1

+
 testing-i686/10-quirks.conf|   20 -
 testing-i686/PKGBUILD  |  376 ++--
 testing-i686/autoconfig-nvidia.patch   |   58 +--
 testing-i686/autoconfig-sis.patch  |   38 +-
 testing-i686/git-fixes.patch   |  288 +++
 testing-i686/revert-trapezoids.patch   |  179 +
 testing-i686/xvfb-run  |  360 +--
 testing-i686/xvfb-run.1|  564 +++
 testing-x86_64/10-quirks.conf  |   20 -
 testing-x86_64/PKGBUILD|  376 ++--
 testing-x86_64/autoconfig-nvidia.patch |   58 +--
 testing-x86_64/autoconfig-sis.patch|   38 +-
 testing-x86_64/git-fixes.patch |  288 +++
 testing-x86_64/revert-trapezoids.patch |  179 +
 testing-x86_64/xvfb-run|  360 +--
 testing-x86_64/xvfb-run.1  |  564 +++
 16 files changed, 2360 insertions(+), 1406 deletions(-)

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


[arch-commits] Commit in xf86-video-savage/trunk (PKGBUILD git-fixes.patch)

2011-10-10 Thread Jan de Groot
Date: Monday, October 10, 2011 @ 05:14:48
  Author: jgc
Revision: 140223

upgpkg: xf86-video-savage 2.3.3-1

Update to 2.3.3, remove patch

Modified:
  xf86-video-savage/trunk/PKGBUILD
Deleted:
  xf86-video-savage/trunk/git-fixes.patch

-+
 PKGBUILD|   11 
 git-fixes.patch | 1076 --
 2 files changed, 4 insertions(+), 1083 deletions(-)

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


[arch-commits] Commit in xf86-video-savage/repos (4 files)

2011-10-10 Thread Jan de Groot
Date: Monday, October 10, 2011 @ 05:15:14
  Author: jgc
Revision: 140224

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

Added:
  xf86-video-savage/repos/testing-i686/PKGBUILD
(from rev 140223, xf86-video-savage/trunk/PKGBUILD)
  xf86-video-savage/repos/testing-x86_64/PKGBUILD
(from rev 140223, xf86-video-savage/trunk/PKGBUILD)
Deleted:
  xf86-video-savage/repos/testing-i686/PKGBUILD
  xf86-video-savage/repos/testing-x86_64/PKGBUILD

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

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2011-10-10 09:14:48 UTC (rev 140223)
+++ testing-i686/PKGBUILD   2011-10-10 09:15:14 UTC (rev 140224)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-video-savage
-pkgver=2.3.2
-pkgrel=3
-pkgdesc=X.org savage video driver
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('glibc' 'savage-dri')
-makedepends=('xorg-server-devel' 'libdrm' 'xf86driproto' 'mesa' 'glproto')
-conflicts=('xorg-server1.10.0')
-options=(!libtool !makeflags)
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
-git-fixes.patch)
-sha1sums=('d675693d0b29cb24f624ef57c1fe2f271f6bf6c3'
-  '0ee1dd57cd48dad4d46ebcfe914b88027e44c3f1')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ${srcdir}/git-fixes.patch
-  ./configure --prefix=/usr --enable-dri
-  make
-  make DESTDIR=${pkgdir} install
-
-  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-video-savage/repos/testing-i686/PKGBUILD (from rev 140223, 
xf86-video-savage/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-10-10 09:15:14 UTC (rev 140224)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-savage
+pkgver=2.3.3
+pkgrel=1
+pkgdesc=X.org savage video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc' 'savage-dri')
+makedepends=('xorg-server-devel' 'libdrm' 'xf86driproto' 'mesa' 'glproto')
+conflicts=('xorg-server1.10.0')
+options=(!libtool !makeflags)
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('d3854d375dbf7d83bf90e30d72837ce60d808119c6fa4bb98088e68e7cc7e7b2')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --enable-dri
+  make
+  make DESTDIR=${pkgdir} install
+
+  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2011-10-10 09:14:48 UTC (rev 140223)
+++ testing-x86_64/PKGBUILD 2011-10-10 09:15:14 UTC (rev 140224)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-video-savage
-pkgver=2.3.2
-pkgrel=3
-pkgdesc=X.org savage video driver
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('glibc' 'savage-dri')
-makedepends=('xorg-server-devel' 'libdrm' 'xf86driproto' 'mesa' 'glproto')
-conflicts=('xorg-server1.10.0')
-options=(!libtool !makeflags)
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
-git-fixes.patch)
-sha1sums=('d675693d0b29cb24f624ef57c1fe2f271f6bf6c3'
-  '0ee1dd57cd48dad4d46ebcfe914b88027e44c3f1')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ${srcdir}/git-fixes.patch
-  ./configure --prefix=/usr --enable-dri
-  make
-  make DESTDIR=${pkgdir} install
-
-  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-video-savage/repos/testing-x86_64/PKGBUILD (from rev 140223, 
xf86-video-savage/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-10-10 09:15:14 UTC (rev 140224)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-savage
+pkgver=2.3.3
+pkgrel=1
+pkgdesc=X.org savage video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc' 'savage-dri')
+makedepends=('xorg-server-devel' 'libdrm' 'xf86driproto' 'mesa' 'glproto')
+conflicts=('xorg-server1.10.0')
+options=(!libtool !makeflags)
+groups=('xorg-drivers' 

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

2011-10-10 Thread Jan de Groot
Date: Monday, October 10, 2011 @ 05:55:23
  Author: jgc
Revision: 140225

upgpkg: shared-mime-info 0.91-1

Update to 0.91, chop last chunk from patch

Modified:
  shared-mime-info/trunk/PKGBUILD
  shared-mime-info/trunk/pbm.patch

---+
 PKGBUILD  |   10 +-
 pbm.patch |7 ---
 2 files changed, 5 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-10-10 09:15:14 UTC (rev 140224)
+++ PKGBUILD2011-10-10 09:55:23 UTC (rev 140225)
@@ -2,19 +2,19 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=shared-mime-info
-pkgver=0.90
+pkgver=0.91
 pkgrel=1
 pkgdesc=Freedesktop.org Shared MIME Info
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('libxml2=2.7.7' 'glib2=2.26.0')
+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.bz2
+source=(http://freedesktop.org/~hadess/${pkgname}-${pkgver}.tar.xz
 pbm.patch)
-md5sums=('967d68d3890ba3994cfce3adf5b8f15b'
- '39fcc08fbd33145684ba97f1f64644c2')
+md5sums=('982a211560ba4c47dc791ccff34e8fbc'
+ '3ec0e21a746f75a890716eb83d73e754')
 options=(!makeflags)
 
 build() {

Modified: pbm.patch
===
--- pbm.patch   2011-10-10 09:15:14 UTC (rev 140224)
+++ pbm.patch   2011-10-10 09:55:23 UTC (rev 140225)
@@ -40,10 +40,3 @@
/match
/match
  /magic
-@@ -23926,4 +23920,4 @@
- /treemagic
-   /mime-type
- 
--/mime-info
-\ No newline at end of file
-+/mime-info



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

2011-10-10 Thread Jan de Groot
Date: Monday, October 10, 2011 @ 05:56:21
  Author: jgc
Revision: 140226

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

Added:
  shared-mime-info/repos/extra-i686/PKGBUILD
(from rev 140225, shared-mime-info/trunk/PKGBUILD)
  shared-mime-info/repos/extra-i686/pbm.patch
(from rev 140225, shared-mime-info/trunk/pbm.patch)
  shared-mime-info/repos/extra-i686/shared-mime-info.install
(from rev 140225, shared-mime-info/trunk/shared-mime-info.install)
  shared-mime-info/repos/extra-x86_64/PKGBUILD
(from rev 140225, shared-mime-info/trunk/PKGBUILD)
  shared-mime-info/repos/extra-x86_64/pbm.patch
(from rev 140225, shared-mime-info/trunk/pbm.patch)
  shared-mime-info/repos/extra-x86_64/shared-mime-info.install
(from rev 140225, 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   |   60 ++---
 extra-i686/pbm.patch  |   91 ++--
 extra-i686/shared-mime-info.install   |   30 +-
 extra-x86_64/PKGBUILD |   60 ++---
 extra-x86_64/pbm.patch|   91 ++--
 extra-x86_64/shared-mime-info.install |   30 +-
 6 files changed, 174 insertions(+), 188 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-10 09:55:23 UTC (rev 140225)
+++ extra-i686/PKGBUILD 2011-10-10 09:56:21 UTC (rev 140226)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=shared-mime-info
-pkgver=0.90
-pkgrel=1
-pkgdesc=Freedesktop.org Shared MIME Info
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libxml2=2.7.7' 'glib2=2.26.0')
-makedepends=('intltool' 'pkgconfig')
-install=shared-mime-info.install
-url=http://freedesktop.org/Software/shared-mime-info;
-source=(http://freedesktop.org/~hadess/${pkgname}-${pkgver}.tar.bz2
-pbm.patch)
-md5sums=('967d68d3890ba3994cfce3adf5b8f15b'
- '39fcc08fbd33145684ba97f1f64644c2')
-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 140225, 
shared-mime-info/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-10 09:56:21 UTC (rev 140226)
@@ -0,0 +1,30 @@
+# $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
+}

Deleted: extra-i686/pbm.patch
===
--- extra-i686/pbm.patch2011-10-10 09:55:23 UTC (rev 140225)
+++ extra-i686/pbm.patch2011-10-10 09:56:21 UTC (rev 140226)
@@ -1,49 +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 

[arch-commits] Commit in (4 files)

2011-10-10 Thread Giovanni Scafora
Date: Monday, October 10, 2011 @ 06:23:36
  Author: giovanni
Revision: 140227

Added to fix FS26357

Added:
  perl-xml-sax-base/
  perl-xml-sax-base/repos/
  perl-xml-sax-base/trunk/
  perl-xml-sax-base/trunk/PKGBUILD

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

Added: perl-xml-sax-base/trunk/PKGBUILD
===
--- perl-xml-sax-base/trunk/PKGBUILD(rev 0)
+++ perl-xml-sax-base/trunk/PKGBUILD2011-10-10 10:23:36 UTC (rev 140227)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: James Hunt lazy at brandnewmath dot com
+
+pkgname=perl-xml-sax-base
+pkgver=1.08
+pkgrel=1
+pkgdesc=Base class SAX Drivers and Filters
+arch=('any')
+url=http://search.cpan.org/dist/XML-SAX-Base;
+license=('GPL' 'PerlArtistic')
+depends=('perl=5.10.0')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/G/GR/GRANTM/XML-SAX-Base-$pkgver.tar.gz;)
+md5sums=('38c8c3247dfd080712596118d70dbe32')
+
+build() {
+  cd  $srcdir/XML-SAX-Base-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd  $srcdir/XML-SAX-Base-$pkgver
+  make test
+}
+
+package() {
+  cd  $srcdir/XML-SAX-Base-$pkgver
+  make install DESTDIR=$pkgdir
+
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


Property changes on: perl-xml-sax-base/trunk/PKGBUILD
___
Added: svn:keywords
   + Id



[arch-commits] Commit in perl-xml-sax-base/repos (extra-any extra-any/PKGBUILD)

2011-10-10 Thread Giovanni Scafora
Date: Monday, October 10, 2011 @ 06:27:13
  Author: giovanni
Revision: 140228

archrelease: copy trunk to extra-any

Added:
  perl-xml-sax-base/repos/extra-any/
  perl-xml-sax-base/repos/extra-any/PKGBUILD
(from rev 140227, perl-xml-sax-base/trunk/PKGBUILD)

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

Copied: perl-xml-sax-base/repos/extra-any/PKGBUILD (from rev 140227, 
perl-xml-sax-base/trunk/PKGBUILD)
===
--- extra-any/PKGBUILD  (rev 0)
+++ extra-any/PKGBUILD  2011-10-10 10:27:13 UTC (rev 140228)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: James Hunt lazy at brandnewmath dot com
+
+pkgname=perl-xml-sax-base
+pkgver=1.08
+pkgrel=1
+pkgdesc=Base class SAX Drivers and Filters
+arch=('any')
+url=http://search.cpan.org/dist/XML-SAX-Base;
+license=('GPL' 'PerlArtistic')
+depends=('perl=5.10.0')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/G/GR/GRANTM/XML-SAX-Base-$pkgver.tar.gz;)
+md5sums=('38c8c3247dfd080712596118d70dbe32')
+
+build() {
+  cd  $srcdir/XML-SAX-Base-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd  $srcdir/XML-SAX-Base-$pkgver
+  make test
+}
+
+package() {
+  cd  $srcdir/XML-SAX-Base-$pkgver
+  make install DESTDIR=$pkgdir
+
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}



[arch-commits] Commit in xorg-xdm/trunk (PKGBUILD xdm-consolekit.patch)

2011-10-10 Thread Jan de Groot
Date: Monday, October 10, 2011 @ 06:29:11
  Author: jgc
Revision: 140229

upgpkg: xorg-xdm 1.1.11-1

Update to 1.1.11, add consolekit support (FS#22671)

Added:
  xorg-xdm/trunk/xdm-consolekit.patch
Modified:
  xorg-xdm/trunk/PKGBUILD

--+
 PKGBUILD |   20 +++-
 xdm-consolekit.patch |  225 +
 2 files changed, 240 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-10-10 10:27:13 UTC (rev 140228)
+++ PKGBUILD2011-10-10 10:29:11 UTC (rev 140229)
@@ -2,29 +2,39 @@
 # Maintainer: Alexander Baldeck alexan...@archlinux.org
 # Contributor: Jan de Groot j...@archlinux.org
 pkgname=xorg-xdm
-pkgver=1.1.10
-pkgrel=2
+pkgver=1.1.11
+pkgrel=1
 pkgdesc=X Display Manager
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
-depends=('pam' 'libxaw' 'libxinerama' 'xorg-xrdb' 'xorg-sessreg' 'libxft')
-makedepends=('pkgconfig')
+depends=('pam' 'libxaw' 'libxinerama' 'xorg-xrdb' 'xorg-sessreg' 'libxft' 
'consolekit')
+makedepends=('pkgconfig' 'xorg-util-macros')
 backup=(etc/X11/xdm/Xaccess etc/X11/xdm/Xresources etc/X11/xdm/Xservers 
etc/X11/xdm/xdm-config etc/pam.d/xdm etc/X11/xdm/Xsetup_0 etc/X11/xdm/Xsession)
 options=('!libtool')
 source=(${url}/releases/individual/app/xdm-${pkgver}.tar.bz2
 Xsession-loginshell.patch
 Xsession-xsm.patch
+xdm-consolekit.patch
 xdm.pam)
-md5sums=('329383040cdbda5b5c8ce6c7e1120c97'
+md5sums=('64a1af1f7eb69feae12e75d4cc3aaf19'
  '234ae568e7b22cbc09433bb396ff3d80'
  '2c30078c50bc653d72eb5114506eb313'
+ '46b11173b58e2241577d5ffd48ab8f8d'
  '419d6289ba6f851135f5c70c0e3cbec4')
+sha256sums=('d4da426ddea0124279a3f2e00a26db61944690628ee818a64df9d27352081c47'
+'fd3e7c20837b42a8ab111369fd6dc9612f9edb91c1f6904cca1d6a1fa3cfa0ff'
+'77a1ce9bdf363591b72798db08b4df3589bd4e64737fd32cf9028f9245450edb'
+'47190f311c97c0d85b1fcab47ee5a8575013db1200a5e30a57a7ea4ef3e0c23a'
+'36cf924a893ef851855ebcdc5468523a9d182c3620698e01dffc35d05d74764b')
 
 build() {
   cd ${srcdir}/xdm-${pkgver}
   patch -Np0 -i ${srcdir}/Xsession-loginshell.patch
   patch -Np1 -i ${srcdir}/Xsession-xsm.patch
+  patch -Np1 -i ${srcdir}/xdm-consolekit.patch
+
+  autoreconf -fi
   ./configure --prefix=/usr \
   --disable-xdm-auth \
   --disable-static \

Added: xdm-consolekit.patch
===
--- xdm-consolekit.patch(rev 0)
+++ xdm-consolekit.patch2011-10-10 10:29:11 UTC (rev 140229)
@@ -0,0 +1,225 @@
+--- a/configure.ac
 b/configure.ac
+@@ -362,6 +362,20 @@
+ 
+ AM_CONDITIONAL(DYNAMIC_GREETER, test x$DYNAMIC_GREETER = xyes)
+ 
++# ConsoleKit support
++AC_ARG_WITH(consolekit, AC_HELP_STRING([--with-consolekit], [Use ConsoleKit]),
++  [USE_CONSOLEKIT=$withval], [USE_CONSOLEKIT=yes])
++if test x$USE_CONSOLEKIT != xno; then
++  PKG_CHECK_MODULES(CK_CONNECTOR, ck-connector,
++  [USE_CONSOLEKIT=yes], [USE_CONSOLEKIT=no])
++  if test x$USE_CONSOLEKIT = xyes; then
++  AC_DEFINE([USE_CONSOLEKIT], 1, [Define to 1 to use ConsoleKit])
++  XDM_CFLAGS=$XDM_CFLAGS $CK_CONNECTOR_CFLAGS -DUSE_CONSOLEKIT
++  XDM_LIBS=$XDM_LIBS $CK_CONNECTOR_LIBS
++  fi
++fi
++dnl AM_CONDITIONAL(USE_CONSOLEKIT, test$USE_CONSOLEKIT = xyes)
++
+ #
+ #  XDM
+ #
+--- a/xdm/session.c
 b/xdm/session.c
+@@ -66,6 +66,11 @@
+ #endif
+ #endif /* USE_PAM */
+ 
++#ifdef USE_CONSOLEKIT
++#include ck-connector.h
++#include dbus/dbus.h
++#endif
++
+ #ifdef __SCO__
+ #include prot.h
+ #endif
+@@ -472,6 +477,97 @@
+ }
+ }
+ 
++#ifdef USE_CONSOLEKIT
++
++static CkConnector *connector;
++
++static int openCKSession(struct verify_info *verify, struct display *d)
++{
++int ret;
++DBusError error;
++char  *remote_host_name = ;
++dbus_bool_t is_local;
++char *display_name = ;
++char *display_device = ;
++char devtmp[16];
++
++if (!use_consolekit)
++  return 1;
++
++is_local = d-displayType.location == Local;
++if (d-peerlen  0  d-peer)
++  remote_host_name = d-peer;
++if (d-name)
++  display_name = d-name;
++/* how can we get the corresponding tty at best...? */
++if (d-windowPath) {
++  display_device = strchr(d-windowPath, ':');
++  if (display_device  display_device[1])
++  display_device++;
++  else
++  display_device = d-windowPath;
++  snprintf(devtmp, sizeof(devtmp), /dev/tty%s, display_device);
++  display_device = devtmp;
++}
++
++connector = ck_connector_new();
++if (!connector) {
++  LogOutOfMem(ck_connector);
++  return 0;
++}
++
++dbus_error_init(error);
++ret = ck_connector_open_session_with_parameters(
++  connector, error,
++  unix-user, verify-uid,

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

2011-10-10 Thread Jan de Groot
Date: Monday, October 10, 2011 @ 06:45:01
  Author: jgc
Revision: 140232

Fix URL (FS#26314)

Modified:
  glibmm/trunk/PKGBUILD
  libgnomecanvasmm/trunk/PKGBUILD

-+
 glibmm/trunk/PKGBUILD   |2 +-
 libgnomecanvasmm/trunk/PKGBUILD |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: glibmm/trunk/PKGBUILD
===
--- glibmm/trunk/PKGBUILD   2011-10-10 10:40:34 UTC (rev 140231)
+++ glibmm/trunk/PKGBUILD   2011-10-10 10:45:01 UTC (rev 140232)
@@ -11,7 +11,7 @@
 makedepends=('glib2' 'libsigc++2.0' 'pkgconfig')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
 options=('!libtool')
-url=http://gtkmm.sourceforge.net/;
+url=http://www.gtkmm.org/;
 sha256sums=('a7ad3fc34c2ba108511738a6ecbf9396edeb26776b2f9b5f4490551509ee0db4')
 
 build() {

Modified: libgnomecanvasmm/trunk/PKGBUILD
===
--- libgnomecanvasmm/trunk/PKGBUILD 2011-10-10 10:40:34 UTC (rev 140231)
+++ libgnomecanvasmm/trunk/PKGBUILD 2011-10-10 10:45:01 UTC (rev 140232)
@@ -11,7 +11,7 @@
 depends=('gtkmm' 'libgnomecanvas')
 makedepends=('pkgconfig')
 options=('!libtool')
-url=http://gtkmm.sourceforge.net/;
+url=http://www.gtkmm.org/;
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.26/${pkgname}-${pkgver}.tar.bz2;)
 md5sums=('a148c99311d46397de6e4a31736771ab')
 



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

2011-10-10 Thread Andrea Scarpino
Date: Monday, October 10, 2011 @ 06:51:00
  Author: andrea
Revision: 140233

upgpkg: bluedevil 1.2.2-1

upstream release

Modified:
  bluedevil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-10 10:45:01 UTC (rev 140232)
+++ PKGBUILD2011-10-10 10:51:00 UTC (rev 140233)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino and...@archlinux.org
 
 pkgname=bluedevil
-pkgver=1.2.1
+pkgver=1.2.2
 pkgrel=1
 pkgdesc='KDE bluetooth framework'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('e5f53fa306f11732f18eaed141cbd51b')
+md5sums=('f1b2b932f3e1e52b13b0bad515bf4125')
 
 build(){
   cd ${srcdir}



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

2011-10-10 Thread Andrea Scarpino
Date: Monday, October 10, 2011 @ 06:51:49
  Author: andrea
Revision: 140234

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

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

+
 extra-i686/PKGBUILD|   62 +++
 extra-i686/bluedevil.install   |   24 +++
 extra-x86_64/PKGBUILD  |   62 +++
 extra-x86_64/bluedevil.install |   24 +++
 4 files changed, 86 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-10 10:51:00 UTC (rev 140233)
+++ extra-i686/PKGBUILD 2011-10-10 10:51:49 UTC (rev 140234)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=bluedevil
-pkgver=1.2.1
-pkgrel=1
-pkgdesc='KDE bluetooth framework'
-arch=('i686' 'x86_64')
-url=https://projects.kde.org/projects/extragear/base/bluedevil;
-license=('GPL')
-depends=('kdebase-workspace' 'libbluedevil' 'obex-data-server' 'obexd-client')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('e5f53fa306f11732f18eaed141cbd51b')
-
-build(){
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: bluedevil/repos/extra-i686/PKGBUILD (from rev 140233, 
bluedevil/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-10 10:51:49 UTC (rev 140234)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=bluedevil
+pkgver=1.2.2
+pkgrel=1
+pkgdesc='KDE bluetooth framework'
+arch=('i686' 'x86_64')
+url=https://projects.kde.org/projects/extragear/base/bluedevil;
+license=('GPL')
+depends=('kdebase-workspace' 'libbluedevil' 'obex-data-server' 'obexd-client')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('f1b2b932f3e1e52b13b0bad515bf4125')
+
+build(){
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/bluedevil.install
===
--- extra-i686/bluedevil.install2011-10-10 10:51:00 UTC (rev 140233)
+++ extra-i686/bluedevil.install2011-10-10 10:51:49 UTC (rev 140234)
@@ -1,12 +0,0 @@
-post_install() {
-  update-mime-database usr/share/mime  /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: bluedevil/repos/extra-i686/bluedevil.install (from rev 140233, 
bluedevil/trunk/bluedevil.install)
===
--- extra-i686/bluedevil.install(rev 0)
+++ extra-i686/bluedevil.install2011-10-10 10:51:49 UTC (rev 140234)
@@ -0,0 +1,12 @@
+post_install() {
+  update-mime-database usr/share/mime  /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-10 10:51:00 UTC (rev 140233)
+++ extra-x86_64/PKGBUILD   2011-10-10 10:51:49 UTC (rev 140234)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=bluedevil
-pkgver=1.2.1
-pkgrel=1
-pkgdesc='KDE bluetooth framework'
-arch=('i686' 'x86_64')
-url=https://projects.kde.org/projects/extragear/base/bluedevil;
-license=('GPL')
-depends=('kdebase-workspace' 'libbluedevil' 'obex-data-server' 'obexd-client')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('e5f53fa306f11732f18eaed141cbd51b')
-
-build(){
-  cd ${srcdir}
-  mkdir build
-  cd 

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

2011-10-10 Thread Andrea Scarpino
Date: Monday, October 10, 2011 @ 06:55:24
  Author: andrea
Revision: 140235

upgpkg: libbluedevil 1.9.1-1

upstream release

Modified:
  libbluedevil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-10 10:51:49 UTC (rev 140234)
+++ PKGBUILD2011-10-10 10:55:24 UTC (rev 140235)
@@ -1,8 +1,9 @@
 # $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
 
 pkgname=libbluedevil
-pkgver=1.9
+pkgver=1.9.1
 pkgrel=1
 pkgdesc='A Qt wrapper for bluez used in the new KDE bluetooth stack'
 arch=('i686' 'x86_64')
@@ -10,11 +11,11 @@
 license=('GPL')
 depends=('qt' 'bluez')
 makedepends=('cmake')
-source=(http://download.kde.org/unstable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('5f22614dfb840734da6e8b8710c2472e')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('b3f04954f75f78c874cdb462c2454afc')
 
 build(){
-  cd ${srcdir}
+  cd ${srcdir}
   mkdir build
   cd build
   cmake ../${pkgname}-${pkgver} \
@@ -24,6 +25,6 @@
 }
 
 package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
 }



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

2011-10-10 Thread Andrea Scarpino
Date: Monday, October 10, 2011 @ 06:55:52
  Author: andrea
Revision: 140236

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-10 10:55:24 UTC (rev 140235)
+++ extra-i686/PKGBUILD 2011-10-10 10:55:52 UTC (rev 140236)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libbluedevil
-pkgver=1.9
-pkgrel=1
-pkgdesc='A Qt wrapper for bluez used in the new KDE bluetooth stack'
-arch=('i686' 'x86_64')
-url=https://projects.kde.org/projects/playground/libs/libbluedevil;
-license=('GPL')
-depends=('qt' 'bluez')
-makedepends=('cmake')
-source=(http://download.kde.org/unstable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('5f22614dfb840734da6e8b8710c2472e')
-
-build(){
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: libbluedevil/repos/extra-i686/PKGBUILD (from rev 140235, 
libbluedevil/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-10 10:55:52 UTC (rev 140236)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=libbluedevil
+pkgver=1.9.1
+pkgrel=1
+pkgdesc='A Qt wrapper for bluez used in the new KDE bluetooth stack'
+arch=('i686' 'x86_64')
+url=https://projects.kde.org/projects/playground/libs/libbluedevil;
+license=('GPL')
+depends=('qt' 'bluez')
+makedepends=('cmake')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('b3f04954f75f78c874cdb462c2454afc')
+
+build(){
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-10 10:55:24 UTC (rev 140235)
+++ extra-x86_64/PKGBUILD   2011-10-10 10:55:52 UTC (rev 140236)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libbluedevil
-pkgver=1.9
-pkgrel=1
-pkgdesc='A Qt wrapper for bluez used in the new KDE bluetooth stack'
-arch=('i686' 'x86_64')
-url=https://projects.kde.org/projects/playground/libs/libbluedevil;
-license=('GPL')
-depends=('qt' 'bluez')
-makedepends=('cmake')
-source=(http://download.kde.org/unstable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('5f22614dfb840734da6e8b8710c2472e')
-
-build(){
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: libbluedevil/repos/extra-x86_64/PKGBUILD (from rev 140235, 
libbluedevil/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-10-10 10:55:52 UTC (rev 140236)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=libbluedevil
+pkgver=1.9.1
+pkgrel=1
+pkgdesc='A Qt wrapper for bluez used in the new KDE bluetooth stack'
+arch=('i686' 'x86_64')
+url=https://projects.kde.org/projects/playground/libs/libbluedevil;
+license=('GPL')
+depends=('qt' 'bluez')
+makedepends=('cmake')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('b3f04954f75f78c874cdb462c2454afc')
+
+build(){
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in gtk (trunk/PKGBUILD 2/trunk/PKGBUILD 3/trunk/PKGBUILD)

2011-10-10 Thread Ionut Biru
Date: Monday, October 10, 2011 @ 07:09:19
  Author: ibiru
Revision: 140239

better description FS#24314

Modified:
  gtk/trunk/PKGBUILD
  gtk2/trunk/PKGBUILD
  gtk3/trunk/PKGBUILD

--+
 2/trunk/PKGBUILD |2 +-
 3/trunk/PKGBUILD |2 +-
 trunk/PKGBUILD   |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/PKGBUILD
===
--- trunk/PKGBUILD  2011-10-10 11:04:00 UTC (rev 140238)
+++ trunk/PKGBUILD  2011-10-10 11:09:19 UTC (rev 140239)
@@ -4,7 +4,7 @@
 pkgname=gtk
 pkgver=1.2.10
 pkgrel=11
-pkgdesc=The GTK+ toolkit
+pkgdesc=GTK+ is a multi-platform toolkit (v1)
 arch=('i686' 'x86_64')
 url=http://www.gtk.org/;
 license=('LGPL')

Modified: 2/trunk/PKGBUILD
===
--- 2/trunk/PKGBUILD2011-10-10 11:04:00 UTC (rev 140238)
+++ 2/trunk/PKGBUILD2011-10-10 11:09:19 UTC (rev 140239)
@@ -36,7 +36,7 @@
 }
 
 package_gtk2() {
-pkgdesc=The GTK+ Toolkit (v2)
+pkgdesc=GTK+ is a multi-platform toolkit (v2)
 install=gtk2.install
 depends=('atk' 'pango' 'libxcursor' 'libxinerama' 'libxrandr' 'libxi' 
'libxcomposite' 'libxdamage' 'shared-mime-info' 'cairo' 'libcups' 
'gtk-update-icon-cache')
 backup=(etc/gtk-2.0/gtkrc)

Modified: 3/trunk/PKGBUILD
===
--- 3/trunk/PKGBUILD2011-10-10 11:04:00 UTC (rev 140238)
+++ 3/trunk/PKGBUILD2011-10-10 11:09:19 UTC (rev 140239)
@@ -4,7 +4,7 @@
 pkgname=gtk3
 pkgver=3.2.0
 pkgrel=2
-pkgdesc=The GTK+ Toolkit (v3)
+pkgdesc=GTK+ is a multi-platform toolkit (v3)
 arch=('i686' 'x86_64')
 url=http://www.gtk.org/;
 install=gtk3.install



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

2011-10-10 Thread Ionut Biru
Date: Monday, October 10, 2011 @ 11:21:40
  Author: ibiru
Revision: 140240

they released a fixed tarball

Modified:
  transmission/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-10 11:09:19 UTC (rev 140239)
+++ PKGBUILD2011-10-10 15:21:40 UTC (rev 140240)
@@ -4,18 +4,18 @@
 pkgbase=transmission
 pkgname=('transmission-cli' 'transmission-gtk' 'transmission-qt')
 pkgver=2.41
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url=http://www.transmissionbt.com/;
 license=('MIT')
 makedepends=('gtk2' 'intltool' 'curl' 'qt' 'libevent')
-source=(http://mirrors.m0k.org/transmission/files/${pkgbase}-${pkgver}.tar.bz2
+source=(http://mirrors.m0k.org/transmission/files/${pkgbase}-${pkgver}.tar.xz
 transmissiond transmissiond.conf)
-md5sums=('71a7ccf74019283bd4998fa2c57b2fc1'
+md5sums=('0d0a061dfb92c0cb359dc531d5da0a94'
  '08875299e3fbb68fc546c1f350ac1f06'
  'be39806c35b7544856fa4070b00fc960')
 build() {
-  cd ${srcdir}/${pkgbase}-2.40
+  cd ${srcdir}/${pkgbase}-${pkgver}
 
   ./configure --prefix=/usr
   make
@@ -29,7 +29,7 @@
   backup=('etc/conf.d/transmissiond')
   install=transmission-cli.install
 
-  cd ${srcdir}/${pkgbase}-2.40
+  cd ${srcdir}/${pkgbase}-${pkgver}
 
   for dir in daemon cli web utils
   do
@@ -48,7 +48,7 @@
  'transmission-cli: daemon and web support')
   install=transmission-gtk.install
 
-  cd ${srcdir}/${pkgbase}-2.40
+  cd ${srcdir}/${pkgbase}-${pkgver}
 
   make -C gtk DESTDIR=${pkgdir} install
   make -C po DESTDIR=${pkgdir} install
@@ -61,7 +61,7 @@
   optdepends=('transmission-cli: daemon and web support')
   install=transmission-qt.install
 
-  cd ${srcdir}/${pkgbase}-2.40
+  cd ${srcdir}/${pkgbase}-${pkgver}
 
   make -C qt INSTALL_ROOT=${pkgdir}/usr install
 



[arch-commits] Commit in transmission/repos (24 files)

2011-10-10 Thread Ionut Biru
Date: Monday, October 10, 2011 @ 11:24:45
  Author: ibiru
Revision: 140241

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

Added:
  transmission/repos/extra-i686/PKGBUILD
(from rev 140240, transmission/trunk/PKGBUILD)
  transmission/repos/extra-i686/transmission-cli.install
(from rev 140240, transmission/trunk/transmission-cli.install)
  transmission/repos/extra-i686/transmission-gtk.install
(from rev 140240, transmission/trunk/transmission-gtk.install)
  transmission/repos/extra-i686/transmission-qt.install
(from rev 140240, transmission/trunk/transmission-qt.install)
  transmission/repos/extra-i686/transmissiond
(from rev 140240, transmission/trunk/transmissiond)
  transmission/repos/extra-i686/transmissiond.conf
(from rev 140240, transmission/trunk/transmissiond.conf)
  transmission/repos/extra-x86_64/PKGBUILD
(from rev 140240, transmission/trunk/PKGBUILD)
  transmission/repos/extra-x86_64/transmission-cli.install
(from rev 140240, transmission/trunk/transmission-cli.install)
  transmission/repos/extra-x86_64/transmission-gtk.install
(from rev 140240, transmission/trunk/transmission-gtk.install)
  transmission/repos/extra-x86_64/transmission-qt.install
(from rev 140240, transmission/trunk/transmission-qt.install)
  transmission/repos/extra-x86_64/transmissiond
(from rev 140240, transmission/trunk/transmissiond)
  transmission/repos/extra-x86_64/transmissiond.conf
(from rev 140240, transmission/trunk/transmissiond.conf)
Deleted:
  transmission/repos/extra-i686/PKGBUILD
  transmission/repos/extra-i686/transmission-cli.install
  transmission/repos/extra-i686/transmission-gtk.install
  transmission/repos/extra-i686/transmission-qt.install
  transmission/repos/extra-i686/transmissiond
  transmission/repos/extra-i686/transmissiond.conf
  transmission/repos/extra-x86_64/PKGBUILD
  transmission/repos/extra-x86_64/transmission-cli.install
  transmission/repos/extra-x86_64/transmission-gtk.install
  transmission/repos/extra-x86_64/transmission-qt.install
  transmission/repos/extra-x86_64/transmissiond
  transmission/repos/extra-x86_64/transmissiond.conf

---+
 extra-i686/PKGBUILD   |  142 
 extra-i686/transmission-cli.install   |   18 ++--
 extra-i686/transmission-gtk.install   |   24 ++---
 extra-i686/transmission-qt.install|   22 ++--
 extra-i686/transmissiond  |   92 ++--
 extra-i686/transmissiond.conf |   10 +-
 extra-x86_64/PKGBUILD |  142 
 extra-x86_64/transmission-cli.install |   18 ++--
 extra-x86_64/transmission-gtk.install |   24 ++---
 extra-x86_64/transmission-qt.install  |   22 ++--
 extra-x86_64/transmissiond|   92 ++--
 extra-x86_64/transmissiond.conf   |   10 +-
 12 files changed, 308 insertions(+), 308 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-10 15:21:40 UTC (rev 140240)
+++ extra-i686/PKGBUILD 2011-10-10 15:24:45 UTC (rev 140241)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-
-pkgbase=transmission
-pkgname=('transmission-cli' 'transmission-gtk' 'transmission-qt')
-pkgver=2.41
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://www.transmissionbt.com/;
-license=('MIT')
-makedepends=('gtk2' 'intltool' 'curl' 'qt' 'libevent')
-source=(http://mirrors.m0k.org/transmission/files/${pkgbase}-${pkgver}.tar.bz2
-transmissiond transmissiond.conf)
-md5sums=('71a7ccf74019283bd4998fa2c57b2fc1'
- '08875299e3fbb68fc546c1f350ac1f06'
- 'be39806c35b7544856fa4070b00fc960')
-build() {
-  cd ${srcdir}/${pkgbase}-2.40
-
-  ./configure --prefix=/usr
-  make
-  pushd qt
-  qmake qtr.pro
-  make
-}
-package_transmission-cli() {
-  pkgdesc=Fast, easy, and free BitTorrent client (CLI tools, daemon and web 
client)
-  depends=('curl' 'libevent')
-  backup=('etc/conf.d/transmissiond')
-  install=transmission-cli.install
-
-  cd ${srcdir}/${pkgbase}-2.40
-
-  for dir in daemon cli web utils
-  do
-  make -C ${dir} DESTDIR=${pkgdir} install
-  done
-
-  install -D -m755 ${srcdir}/transmissiond ${pkgdir}/etc/rc.d/transmissiond
-  install -D -m644 ${srcdir}/transmissiond.conf 
${pkgdir}/etc/conf.d/transmissiond
-  install -D -m644 COPYING 
${pkgdir}/usr/share/licenses/transmission-cli/COPYING
-}
-
-package_transmission-gtk() {
-  pkgdesc=Fast, easy, and free BitTorrent client (GTK+ GUI)
-  depends=('curl' 'libevent' 'gtk2' 'desktop-file-utils' 'hicolor-icon-theme')
-  optdepends=('notification-daemon: Desktop notification support'
- 'transmission-cli: daemon and web support')
-  install=transmission-gtk.install
-
-  cd ${srcdir}/${pkgbase}-2.40
-
-  make -C gtk DESTDIR=${pkgdir} install
-  make -C po DESTDIR=${pkgdir} install
-  install -D -m644 COPYING 
${pkgdir}/usr/share/licenses/transmission-gtk/COPYING
-}

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

2011-10-10 Thread Dieter Plaetinck
Date: Monday, October 10, 2011 @ 11:33:09
  Author: dieter
Revision: 140242

bump version to 2011.10.09

Modified:
  aif/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-10 15:24:45 UTC (rev 140241)
+++ PKGBUILD2011-10-10 15:33:09 UTC (rev 140242)
@@ -2,27 +2,30 @@
 # Maintainer: Dieter Plaetinck die...@plaetinck.be
 
 pkgname=aif
-pkgver=2011.08.04
+pkgver=2011.10.09
 pkgrel=1
 pkgdesc=The ArchLinux Installation Framework
 arch=('any')
 url=http://projects.archlinux.org/?p=aif.git;a=summary;
 license=('GPL3')
-depends=('util-linux-ng' 'bash' 'pacman' 'coreutils' 'grub' 'grep' 
'mkinitcpio' 'awk' 'sed' 'libui-sh')
+depends=('util-linux-ng' 'bash' 'pacman' 'coreutils' 'grub' 'grep' 'awk' 'sed' 
'libui-sh')
 optdepends=('markdown: to generate the html installation guide'
 'cryptsetup: for encryption support'
 'lvm2: for LVM support'
 'dhcpd: for dhcp networking support'
+'btrfs-progs-unstable: Btrfs support'
 'e2fsprogs: Ext support'
 'jfsutils: JFS support'
 'reiserfsprogs: ReiserFS support'
+'nilfs-utils: Nilfs2 support'
 'xfsprogs: XFS support'
 'ntp: setting date with NTP'
 'dialog: for ncurses support'
 'curl: for the aif-report-issues.sh script'
+'syslinux: syslinux support'
 )
 source=(ftp://ftp.archlinux.org/other/aif/aif-$pkgver.tar.gz)
-md5sums=('64e3d377f73efa865e68d18e36bc3eca')
+md5sums=('fd52c99e9146da6caf95069e62b83696')
 
 build() {
 



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

2011-10-10 Thread Dieter Plaetinck
Date: Monday, October 10, 2011 @ 11:34:10
  Author: dieter
Revision: 140243

upgpkg: aif 2011.10.09-1

clean up PKGBUILD

Modified:
  aif/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-10 15:33:09 UTC (rev 140242)
+++ PKGBUILD2011-10-10 15:34:10 UTC (rev 140243)
@@ -28,11 +28,8 @@
 md5sums=('fd52c99e9146da6caf95069e62b83696')
 
 build() {
-
   cd $srcdir/aif-$pkgver/
-  
   make DESTDIR=$pkgdir/ install
-
 }
 
 # vim:set ts=2 sw=2 et:



[arch-commits] Commit in aif/repos/extra-any (PKGBUILD PKGBUILD)

2011-10-10 Thread Dieter Plaetinck
Date: Monday, October 10, 2011 @ 11:34:27
  Author: dieter
Revision: 140244

archrelease: copy trunk to extra-any

Added:
  aif/repos/extra-any/PKGBUILD
(from rev 140243, aif/trunk/PKGBUILD)
Deleted:
  aif/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-10-10 15:34:10 UTC (rev 140243)
+++ PKGBUILD2011-10-10 15:34:27 UTC (rev 140244)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Dieter Plaetinck die...@plaetinck.be
-
-pkgname=aif
-pkgver=2011.08.04
-pkgrel=1
-pkgdesc=The ArchLinux Installation Framework
-arch=('any')
-url=http://projects.archlinux.org/?p=aif.git;a=summary;
-license=('GPL3')
-depends=('util-linux-ng' 'bash' 'pacman' 'coreutils' 'grub' 'grep' 
'mkinitcpio' 'awk' 'sed' 'libui-sh')
-optdepends=('markdown: to generate the html installation guide'
-'cryptsetup: for encryption support'
-'lvm2: for LVM support'
-'dhcpd: for dhcp networking support'
-'e2fsprogs: Ext support'
-'jfsutils: JFS support'
-'reiserfsprogs: ReiserFS support'
-'xfsprogs: XFS support'
-'ntp: setting date with NTP'
-'dialog: for ncurses support'
-'curl: for the aif-report-issues.sh script'
-)
-source=(ftp://ftp.archlinux.org/other/aif/aif-$pkgver.tar.gz)
-md5sums=('64e3d377f73efa865e68d18e36bc3eca')
-
-build() {
-
-  cd $srcdir/aif-$pkgver/
-  
-  make DESTDIR=$pkgdir/ install
-
-}
-
-# vim:set ts=2 sw=2 et:
-

Copied: aif/repos/extra-any/PKGBUILD (from rev 140243, aif/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-10-10 15:34:27 UTC (rev 140244)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Dieter Plaetinck die...@plaetinck.be
+
+pkgname=aif
+pkgver=2011.10.09
+pkgrel=1
+pkgdesc=The ArchLinux Installation Framework
+arch=('any')
+url=http://projects.archlinux.org/?p=aif.git;a=summary;
+license=('GPL3')
+depends=('util-linux-ng' 'bash' 'pacman' 'coreutils' 'grub' 'grep' 'awk' 'sed' 
'libui-sh')
+optdepends=('markdown: to generate the html installation guide'
+'cryptsetup: for encryption support'
+'lvm2: for LVM support'
+'dhcpd: for dhcp networking support'
+'btrfs-progs-unstable: Btrfs support'
+'e2fsprogs: Ext support'
+'jfsutils: JFS support'
+'reiserfsprogs: ReiserFS support'
+'nilfs-utils: Nilfs2 support'
+'xfsprogs: XFS support'
+'ntp: setting date with NTP'
+'dialog: for ncurses support'
+'curl: for the aif-report-issues.sh script'
+'syslinux: syslinux support'
+)
+source=(ftp://ftp.archlinux.org/other/aif/aif-$pkgver.tar.gz)
+md5sums=('fd52c99e9146da6caf95069e62b83696')
+
+build() {
+  cd $srcdir/aif-$pkgver/
+  make DESTDIR=$pkgdir/ install
+}
+
+# vim:set ts=2 sw=2 et:
+



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

2011-10-10 Thread Gaetan Bisson
Date: Monday, October 10, 2011 @ 17:07:09
  Author: bisson
Revision: 140245

upstream update

Modified:
  feh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-10 15:34:27 UTC (rev 140244)
+++ PKGBUILD2011-10-10 21:07:09 UTC (rev 140245)
@@ -5,17 +5,17 @@
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=feh
-pkgver=1.16.2
+pkgver=2.0
 pkgrel=1
-pkgdesc='Fast, lightweight image viewer which uses imlib2'
-arch=('i686' 'x86_64')
+pkgdesc='Fast and light imlib2-based image viewer'
 url='http://feh.finalrewind.org/'
 license=('MIT')
+arch=('i686' 'x86_64')
 depends=('giblib' 'curl' 'libxinerama')
 optdepends=('perl: feh-cam, webcam wrapper for feh')
 makedepends=('libxt')
 source=(${url}${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('bbb530f1bca9140040052164c3f79289011c45f1')
+sha1sums=('890e4f7343e7c2157f25f1011a75688adcf6c3f2')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}



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

2011-10-10 Thread Gaetan Bisson
Date: Monday, October 10, 2011 @ 17:07:53
  Author: bisson
Revision: 140246

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-10 21:07:09 UTC (rev 140245)
+++ extra-i686/PKGBUILD 2011-10-10 21:07:53 UTC (rev 140246)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: dorphell dorph...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=feh
-pkgver=1.16.2
-pkgrel=1
-pkgdesc='Fast, lightweight image viewer which uses imlib2'
-arch=('i686' 'x86_64')
-url='http://feh.finalrewind.org/'
-license=('MIT')
-depends=('giblib' 'curl' 'libxinerama')
-optdepends=('perl: feh-cam, webcam wrapper for feh')
-makedepends=('libxt')
-source=(${url}${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('bbb530f1bca9140040052164c3f79289011c45f1')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make PREFIX=/usr
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make PREFIX=/usr DESTDIR=${pkgdir} install
-   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: feh/repos/extra-i686/PKGBUILD (from rev 140245, feh/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-10 21:07:53 UTC (rev 140246)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: dorphell dorph...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=feh
+pkgver=2.0
+pkgrel=1
+pkgdesc='Fast and light imlib2-based image viewer'
+url='http://feh.finalrewind.org/'
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('giblib' 'curl' 'libxinerama')
+optdepends=('perl: feh-cam, webcam wrapper for feh')
+makedepends=('libxt')
+source=(${url}${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('890e4f7343e7c2157f25f1011a75688adcf6c3f2')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make PREFIX=/usr
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make PREFIX=/usr DESTDIR=${pkgdir} install
+   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-10 21:07:09 UTC (rev 140245)
+++ extra-x86_64/PKGBUILD   2011-10-10 21:07:53 UTC (rev 140246)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: dorphell dorph...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=feh
-pkgver=1.16.2
-pkgrel=1
-pkgdesc='Fast, lightweight image viewer which uses imlib2'
-arch=('i686' 'x86_64')
-url='http://feh.finalrewind.org/'
-license=('MIT')
-depends=('giblib' 'curl' 'libxinerama')
-optdepends=('perl: feh-cam, webcam wrapper for feh')
-makedepends=('libxt')
-source=(${url}${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('bbb530f1bca9140040052164c3f79289011c45f1')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make PREFIX=/usr
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make PREFIX=/usr DESTDIR=${pkgdir} install
-   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: feh/repos/extra-x86_64/PKGBUILD (from rev 140245, feh/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-10-10 21:07:53 UTC (rev 140246)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: dorphell dorph...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=feh
+pkgver=2.0
+pkgrel=1
+pkgdesc='Fast and light imlib2-based image viewer'
+url='http://feh.finalrewind.org/'
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('giblib' 'curl' 'libxinerama')
+optdepends=('perl: feh-cam, webcam wrapper for feh')
+makedepends=('libxt')
+source=(${url}${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('890e4f7343e7c2157f25f1011a75688adcf6c3f2')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make PREFIX=/usr
+}
+
+package() {
+   cd 

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

2011-10-10 Thread Andrea Scarpino
Date: Monday, October 10, 2011 @ 17:29:58
  Author: andrea
Revision: 140247

upgpkg: srcpac 0.10.8-1

new release

Modified:
  srcpac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-10 21:07:53 UTC (rev 140246)
+++ PKGBUILD2011-10-10 21:29:58 UTC (rev 140247)
@@ -3,7 +3,7 @@
 # Contributor: Jason Chu ja...@archlinux.org
 
 pkgname=srcpac
-pkgver=0.10.4
+pkgver=0.10.8
 pkgrel=1
 pkgdesc=The pacman from-source wrapper
 arch=('any')
@@ -11,10 +11,10 @@
 license=('GPL')
 depends=('pacman' 'abs')
 optdepends=('sudo')
-source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('1a5512385b6437d252f78e579e1be8be')
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('41998d331e081367415d804a1ac70455')
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
 }



[arch-commits] Commit in srcpac/repos/extra-any (PKGBUILD PKGBUILD)

2011-10-10 Thread Andrea Scarpino
Date: Monday, October 10, 2011 @ 17:30:15
  Author: andrea
Revision: 140248

archrelease: copy trunk to extra-any

Added:
  srcpac/repos/extra-any/PKGBUILD
(from rev 140247, srcpac/trunk/PKGBUILD)
Deleted:
  srcpac/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   40 
 1 file changed, 20 insertions(+), 20 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-10-10 21:29:58 UTC (rev 140247)
+++ PKGBUILD2011-10-10 21:30:15 UTC (rev 140248)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Jason Chu ja...@archlinux.org
-
-pkgname=srcpac
-pkgver=0.10.4
-pkgrel=1
-pkgdesc=The pacman from-source wrapper
-arch=('any')
-url=http://projects.archlinux.org/srcpac.git/;
-license=('GPL')
-depends=('pacman' 'abs')
-optdepends=('sudo')
-source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('1a5512385b6437d252f78e579e1be8be')
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: srcpac/repos/extra-any/PKGBUILD (from rev 140247, srcpac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-10-10 21:30:15 UTC (rev 140248)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=srcpac
+pkgver=0.10.8
+pkgrel=1
+pkgdesc=The pacman from-source wrapper
+arch=('any')
+url=http://projects.archlinux.org/srcpac.git/;
+license=('GPL')
+depends=('pacman' 'abs')
+optdepends=('sudo')
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('41998d331e081367415d804a1ac70455')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



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

2011-10-10 Thread Giovanni Scafora
Date: Monday, October 10, 2011 @ 18:44:46
  Author: giovanni
Revision: 140249

upgpkg: libass 0.10.0-1

upstream release

Modified:
  libass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-10 21:30:15 UTC (rev 140248)
+++ PKGBUILD2011-10-10 22:44:46 UTC (rev 140249)
@@ -3,17 +3,17 @@
 # Contributor: G_Syme demichan(at)mail(dot)upb(dot)de
 
 pkgname=libass
-pkgver=0.9.13
+pkgver=0.10.0
 pkgrel=1
 pkgdesc=A portable library for SSA/ASS subtitles rendering
 arch=('i686' 'x86_64')
 url=http://code.google.com/p/libass/;
 license=('BSD')
-depends=('enca' 'fontconfig' 'libpng')
-makedepends=('pkgconfig')
+depends=('enca' 'fontconfig' 'libpng' 'fribidi')
+makedepends=('pkg-config')
 options=(!libtool)
 source=(http://libass.googlecode.com/files/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('d99381922dcbeb7a766d2e7825cca193')
+md5sums=('1855bddc4c167f96968dddeeda0eb45c')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-10-10 Thread Giovanni Scafora
Date: Monday, October 10, 2011 @ 18:45:12
  Author: giovanni
Revision: 140250

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

Added:
  libass/repos/extra-i686/PKGBUILD
(from rev 140249, libass/trunk/PKGBUILD)
  libass/repos/extra-x86_64/PKGBUILD
(from rev 140249, libass/trunk/PKGBUILD)
Deleted:
  libass/repos/extra-i686/PKGBUILD
  libass/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 2011-10-10 22:44:46 UTC (rev 140249)
+++ extra-i686/PKGBUILD 2011-10-10 22:45:12 UTC (rev 140250)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: G_Syme demichan(at)mail(dot)upb(dot)de
-
-pkgname=libass
-pkgver=0.9.13
-pkgrel=1
-pkgdesc=A portable library for SSA/ASS subtitles rendering
-arch=('i686' 'x86_64')
-url=http://code.google.com/p/libass/;
-license=('BSD')
-depends=('enca' 'fontconfig' 'libpng')
-makedepends=('pkgconfig')
-options=(!libtool)
-source=(http://libass.googlecode.com/files/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('d99381922dcbeb7a766d2e7825cca193')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: libass/repos/extra-i686/PKGBUILD (from rev 140249, 
libass/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-10 22:45:12 UTC (rev 140250)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: G_Syme demichan(at)mail(dot)upb(dot)de
+
+pkgname=libass
+pkgver=0.10.0
+pkgrel=1
+pkgdesc=A portable library for SSA/ASS subtitles rendering
+arch=('i686' 'x86_64')
+url=http://code.google.com/p/libass/;
+license=('BSD')
+depends=('enca' 'fontconfig' 'libpng' 'fribidi')
+makedepends=('pkg-config')
+options=(!libtool)
+source=(http://libass.googlecode.com/files/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('1855bddc4c167f96968dddeeda0eb45c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-10 22:44:46 UTC (rev 140249)
+++ extra-x86_64/PKGBUILD   2011-10-10 22:45:12 UTC (rev 140250)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: G_Syme demichan(at)mail(dot)upb(dot)de
-
-pkgname=libass
-pkgver=0.9.13
-pkgrel=1
-pkgdesc=A portable library for SSA/ASS subtitles rendering
-arch=('i686' 'x86_64')
-url=http://code.google.com/p/libass/;
-license=('BSD')
-depends=('enca' 'fontconfig' 'libpng')
-makedepends=('pkgconfig')
-options=(!libtool)
-source=(http://libass.googlecode.com/files/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('d99381922dcbeb7a766d2e7825cca193')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: libass/repos/extra-x86_64/PKGBUILD (from rev 140249, 
libass/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-10-10 22:45:12 UTC (rev 140250)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: G_Syme demichan(at)mail(dot)upb(dot)de
+
+pkgname=libass
+pkgver=0.10.0
+pkgrel=1
+pkgdesc=A portable library for SSA/ASS subtitles rendering
+arch=('i686' 'x86_64')
+url=http://code.google.com/p/libass/;
+license=('BSD')
+depends=('enca' 'fontconfig' 'libpng' 'fribidi')
+makedepends=('pkg-config')
+options=(!libtool)
+source=(http://libass.googlecode.com/files/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('1855bddc4c167f96968dddeeda0eb45c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



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

2011-10-10 Thread Allan McRae
Date: Monday, October 10, 2011 @ 20:43:42
  Author: allan
Revision: 140251

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

Added:
  mpfr/repos/core-i686/PKGBUILD
(from rev 140250, mpfr/repos/testing-i686/PKGBUILD)
  mpfr/repos/core-i686/mpfr-3.1.0.p1.patch
(from rev 140250, mpfr/repos/testing-i686/mpfr-3.1.0.p1.patch)
  mpfr/repos/core-i686/mpfr.install
(from rev 140250, mpfr/repos/testing-i686/mpfr.install)
Deleted:
  mpfr/repos/core-i686/PKGBUILD
  mpfr/repos/core-i686/mpfr.install
  mpfr/repos/testing-i686/

-+
 PKGBUILD|   73 +-
 mpfr-3.1.0.p1.patch |   50 ++
 mpfr.install|   40 +--
 3 files changed, 107 insertions(+), 56 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-10-10 22:45:12 UTC (rev 140250)
+++ core-i686/PKGBUILD  2011-10-11 00:43:42 UTC (rev 140251)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: damir da...@archlinux.org
-
-pkgname=mpfr
-_pkgver=3.1.0
-pkgver=${_pkgver}
-#_patchlevel=p4
-#pkgver=${_pkgver}.${_patchlevel}
-pkgrel=2
-pkgdesc=Multiple-precision floating-point library
-arch=('i686' 'x86_64')
-url=http://www.mpfr.org/;
-license=('LGPL')
-depends=('gmp=5.0')
-options=('!libtool')
-install=mpfr.install
-source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz)
-md5sums=('6e495841bb026481567006cec0f821c3')
-
-build() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-  #patch -Np1 -i $srcdir/mpfr-${_pkgver}.${_patchlevel}.patch
-  ./configure --prefix=/usr --enable-thread-safe --enable-shared
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: mpfr/repos/core-i686/PKGBUILD (from rev 140250, 
mpfr/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-10-11 00:43:42 UTC (rev 140251)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: damir da...@archlinux.org
+
+pkgname=mpfr
+_pkgver=3.1.0
+_patchlevel=p1
+pkgver=${_pkgver}.${_patchlevel}
+pkgrel=1
+pkgdesc=Multiple-precision floating-point library
+arch=('i686' 'x86_64')
+url=http://www.mpfr.org/;
+license=('LGPL')
+depends=('gmp=5.0')
+options=('!libtool')
+install=mpfr.install
+source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz
+mpfr-${_pkgver}.${_patchlevel}.patch)
+md5sums=('6e495841bb026481567006cec0f821c3'
+ 'ec988293368d4988c76f50d6a3460166')
+
+build() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  patch -Np1 -i $srcdir/mpfr-${_pkgver}.${_patchlevel}.patch
+  ./configure --prefix=/usr --enable-thread-safe --enable-shared
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: mpfr/repos/core-i686/mpfr-3.1.0.p1.patch (from rev 140250, 
mpfr/repos/testing-i686/mpfr-3.1.0.p1.patch)
===
--- core-i686/mpfr-3.1.0.p1.patch   (rev 0)
+++ core-i686/mpfr-3.1.0.p1.patch   2011-10-11 00:43:42 UTC (rev 140251)
@@ -0,0 +1,50 @@
+diff -Naurd mpfr-3.1.0-a/PATCHES mpfr-3.1.0-b/PATCHES
+--- mpfr-3.1.0-a/PATCHES   2011-10-05 21:39:57.0 +
 mpfr-3.1.0-b/PATCHES   2011-10-05 21:39:57.0 +
+@@ -0,0 +1 @@
++mpfr_unlikely
+diff -Naurd mpfr-3.1.0-a/VERSION mpfr-3.1.0-b/VERSION
+--- mpfr-3.1.0-a/VERSION   2011-10-03 08:17:15.0 +
 mpfr-3.1.0-b/VERSION   2011-10-05 21:39:57.0 +
+@@ -1 +1 @@
+-3.1.0
++3.1.0-p1
+diff -Naurd mpfr-3.1.0-a/src/mpfr-impl.h mpfr-3.1.0-b/src/mpfr-impl.h
+--- mpfr-3.1.0-a/src/mpfr-impl.h   2011-10-03 08:17:09.0 +
 mpfr-3.1.0-b/src/mpfr-impl.h   2011-10-05 21:39:57.0 +
+@@ -988,10 +988,11 @@
+  **/
+ 
+ /* Theses macros help the compiler to determine if a test is
+- * likely or unlikely. */
++   likely or unlikely. The !! is necessary in case x is larger
++   than a long. */
+ #if __MPFR_GNUC(3,0) || __MPFR_ICC(8,1,0)
+ # define MPFR_LIKELY(x) (__builtin_expect(!!(x),1))
+-# define MPFR_UNLIKELY(x) (__builtin_expect((x),0))
++# define MPFR_UNLIKELY(x) (__builtin_expect(!!(x),0))
+ #else
+ # define MPFR_LIKELY(x) (x)
+ # define MPFR_UNLIKELY(x) (x)
+diff -Naurd mpfr-3.1.0-a/src/mpfr.h mpfr-3.1.0-b/src/mpfr.h
+--- mpfr-3.1.0-a/src/mpfr.h2011-10-03 08:17:09.0 +
 mpfr-3.1.0-b/src/mpfr.h2011-10-05 21:39:57.0 +
+@@ -27,7 +27,7 @@
+ #define MPFR_VERSION_MAJOR 3
+ #define MPFR_VERSION_MINOR 1
+ #define MPFR_VERSION_PATCHLEVEL 0

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

2011-10-10 Thread Allan McRae
Date: Monday, October 10, 2011 @ 20:43:43
  Author: allan
Revision: 140252

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

Added:
  mpfr/repos/core-x86_64/PKGBUILD
(from rev 140250, mpfr/repos/testing-x86_64/PKGBUILD)
  mpfr/repos/core-x86_64/mpfr-3.1.0.p1.patch
(from rev 140250, mpfr/repos/testing-x86_64/mpfr-3.1.0.p1.patch)
  mpfr/repos/core-x86_64/mpfr.install
(from rev 140250, mpfr/repos/testing-x86_64/mpfr.install)
Deleted:
  mpfr/repos/core-x86_64/PKGBUILD
  mpfr/repos/core-x86_64/mpfr.install
  mpfr/repos/testing-x86_64/

-+
 PKGBUILD|   73 +-
 mpfr-3.1.0.p1.patch |   50 ++
 mpfr.install|   40 +--
 3 files changed, 107 insertions(+), 56 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-10-11 00:43:42 UTC (rev 140251)
+++ core-x86_64/PKGBUILD2011-10-11 00:43:43 UTC (rev 140252)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: damir da...@archlinux.org
-
-pkgname=mpfr
-_pkgver=3.1.0
-pkgver=${_pkgver}
-#_patchlevel=p4
-#pkgver=${_pkgver}.${_patchlevel}
-pkgrel=2
-pkgdesc=Multiple-precision floating-point library
-arch=('i686' 'x86_64')
-url=http://www.mpfr.org/;
-license=('LGPL')
-depends=('gmp=5.0')
-options=('!libtool')
-install=mpfr.install
-source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz)
-md5sums=('6e495841bb026481567006cec0f821c3')
-
-build() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-  #patch -Np1 -i $srcdir/mpfr-${_pkgver}.${_patchlevel}.patch
-  ./configure --prefix=/usr --enable-thread-safe --enable-shared
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: mpfr/repos/core-x86_64/PKGBUILD (from rev 140250, 
mpfr/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-10-11 00:43:43 UTC (rev 140252)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: damir da...@archlinux.org
+
+pkgname=mpfr
+_pkgver=3.1.0
+_patchlevel=p1
+pkgver=${_pkgver}.${_patchlevel}
+pkgrel=1
+pkgdesc=Multiple-precision floating-point library
+arch=('i686' 'x86_64')
+url=http://www.mpfr.org/;
+license=('LGPL')
+depends=('gmp=5.0')
+options=('!libtool')
+install=mpfr.install
+source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz
+mpfr-${_pkgver}.${_patchlevel}.patch)
+md5sums=('6e495841bb026481567006cec0f821c3'
+ 'ec988293368d4988c76f50d6a3460166')
+
+build() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  patch -Np1 -i $srcdir/mpfr-${_pkgver}.${_patchlevel}.patch
+  ./configure --prefix=/usr --enable-thread-safe --enable-shared
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: mpfr/repos/core-x86_64/mpfr-3.1.0.p1.patch (from rev 140250, 
mpfr/repos/testing-x86_64/mpfr-3.1.0.p1.patch)
===
--- core-x86_64/mpfr-3.1.0.p1.patch (rev 0)
+++ core-x86_64/mpfr-3.1.0.p1.patch 2011-10-11 00:43:43 UTC (rev 140252)
@@ -0,0 +1,50 @@
+diff -Naurd mpfr-3.1.0-a/PATCHES mpfr-3.1.0-b/PATCHES
+--- mpfr-3.1.0-a/PATCHES   2011-10-05 21:39:57.0 +
 mpfr-3.1.0-b/PATCHES   2011-10-05 21:39:57.0 +
+@@ -0,0 +1 @@
++mpfr_unlikely
+diff -Naurd mpfr-3.1.0-a/VERSION mpfr-3.1.0-b/VERSION
+--- mpfr-3.1.0-a/VERSION   2011-10-03 08:17:15.0 +
 mpfr-3.1.0-b/VERSION   2011-10-05 21:39:57.0 +
+@@ -1 +1 @@
+-3.1.0
++3.1.0-p1
+diff -Naurd mpfr-3.1.0-a/src/mpfr-impl.h mpfr-3.1.0-b/src/mpfr-impl.h
+--- mpfr-3.1.0-a/src/mpfr-impl.h   2011-10-03 08:17:09.0 +
 mpfr-3.1.0-b/src/mpfr-impl.h   2011-10-05 21:39:57.0 +
+@@ -988,10 +988,11 @@
+  **/
+ 
+ /* Theses macros help the compiler to determine if a test is
+- * likely or unlikely. */
++   likely or unlikely. The !! is necessary in case x is larger
++   than a long. */
+ #if __MPFR_GNUC(3,0) || __MPFR_ICC(8,1,0)
+ # define MPFR_LIKELY(x) (__builtin_expect(!!(x),1))
+-# define MPFR_UNLIKELY(x) (__builtin_expect((x),0))
++# define MPFR_UNLIKELY(x) (__builtin_expect(!!(x),0))
+ #else
+ # define MPFR_LIKELY(x) (x)
+ # define MPFR_UNLIKELY(x) (x)
+diff -Naurd mpfr-3.1.0-a/src/mpfr.h mpfr-3.1.0-b/src/mpfr.h
+--- mpfr-3.1.0-a/src/mpfr.h2011-10-03 08:17:09.0 +
 mpfr-3.1.0-b/src/mpfr.h2011-10-05 21:39:57.0 +
+@@ -27,7 +27,7 @@
+ #define MPFR_VERSION_MAJOR 3
+ #define 

[arch-commits] Commit in python-egenix-mx-base/trunk (PKGBUILD)

2011-10-10 Thread Stéphane Gaudreault
Date: Monday, October 10, 2011 @ 20:44:46
  Author: stephane
Revision: 140253

upgpkg: python-egenix-mx-base 3.2.1-1

upstream update

Modified:
  python-egenix-mx-base/trunk/PKGBUILD

--+
 PKGBUILD |   18 +++---
 1 file changed, 11 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-10-11 00:43:43 UTC (rev 140252)
+++ PKGBUILD2011-10-11 00:44:46 UTC (rev 140253)
@@ -1,10 +1,10 @@
 # $Id$
-# Maintainer:
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
 # Contributor: Douglas Soares de Andrade doug...@archlinux.org
 
 pkgname=python-egenix-mx-base
-origname=egenix-mx-base
-pkgver=3.2.0
+_origname=egenix-mx-base
+pkgver=3.2.1
 pkgrel=1
 pkgdesc=A collection of Python tools
 arch=('i686' 'x86_64')
@@ -14,16 +14,20 @@
 makedepends=('python2-distribute')
 replaces=('egenix-mx-base')
 provides=('egenix-mx-base')
-source=(http://downloads.egenix.com/python/${origname}-${pkgver}.tar.gz;)
-sha1sums=('7346268002461512ef59da726047f79649a82b27')
+source=(http://downloads.egenix.com/python/${_origname}-${pkgver}.tar.gz;)
+sha1sums=('a82f7f155ea92f26f40a6a3bf9160bfac7c52a00')
 
 build() {
-  cd ${srcdir}/${origname}-${pkgver}
+  cd ${srcdir}/${_origname}-${pkgver}
+
+  find . -name \*.py -exec sed -i -e s|#!/usr/bin/env python|#!/usr/bin/env 
python2| \
+  -e s|#!/usr/local/.*python.*|#!/usr/bin/env 
python2| {} \;
+
   python2 setup.py build
 }
 
 package() {
-  cd ${srcdir}/${origname}-${pkgver}
+  cd ${srcdir}/${_origname}-${pkgver}
   python2 setup.py install --root=${pkgdir} --skip-build --optimize=1
   install -D -m644 COPYRIGHT ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }



[arch-commits] Commit in python-egenix-mx-base/repos (4 files)

2011-10-10 Thread Stéphane Gaudreault
Date: Monday, October 10, 2011 @ 20:44:55
  Author: stephane
Revision: 140254

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

Added:
  python-egenix-mx-base/repos/extra-i686/PKGBUILD
(from rev 140253, python-egenix-mx-base/trunk/PKGBUILD)
  python-egenix-mx-base/repos/extra-x86_64/PKGBUILD
(from rev 140253, python-egenix-mx-base/trunk/PKGBUILD)
Deleted:
  python-egenix-mx-base/repos/extra-i686/PKGBUILD
  python-egenix-mx-base/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-11 00:44:46 UTC (rev 140253)
+++ extra-i686/PKGBUILD 2011-10-11 00:44:55 UTC (rev 140254)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgname=python-egenix-mx-base
-origname=egenix-mx-base
-pkgver=3.2.0
-pkgrel=1
-pkgdesc=A collection of Python tools
-arch=('i686' 'x86_64')
-license=('custom')
-url=http://www.egenix.com/products/python/mxBase/;
-depends=('python2')
-makedepends=('python2-distribute')
-replaces=('egenix-mx-base')
-provides=('egenix-mx-base')
-source=(http://downloads.egenix.com/python/${origname}-${pkgver}.tar.gz;)
-sha1sums=('7346268002461512ef59da726047f79649a82b27')
-
-build() {
-  cd ${srcdir}/${origname}-${pkgver}
-  python2 setup.py build
-}
-
-package() {
-  cd ${srcdir}/${origname}-${pkgver}
-  python2 setup.py install --root=${pkgdir} --skip-build --optimize=1
-  install -D -m644 COPYRIGHT ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-egenix-mx-base/repos/extra-i686/PKGBUILD (from rev 140253, 
python-egenix-mx-base/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-11 00:44:55 UTC (rev 140254)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=python-egenix-mx-base
+_origname=egenix-mx-base
+pkgver=3.2.1
+pkgrel=1
+pkgdesc=A collection of Python tools
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.egenix.com/products/python/mxBase/;
+depends=('python2')
+makedepends=('python2-distribute')
+replaces=('egenix-mx-base')
+provides=('egenix-mx-base')
+source=(http://downloads.egenix.com/python/${_origname}-${pkgver}.tar.gz;)
+sha1sums=('a82f7f155ea92f26f40a6a3bf9160bfac7c52a00')
+
+build() {
+  cd ${srcdir}/${_origname}-${pkgver}
+
+  find . -name \*.py -exec sed -i -e s|#!/usr/bin/env python|#!/usr/bin/env 
python2| \
+  -e s|#!/usr/local/.*python.*|#!/usr/bin/env 
python2| {} \;
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${srcdir}/${_origname}-${pkgver}
+  python2 setup.py install --root=${pkgdir} --skip-build --optimize=1
+  install -D -m644 COPYRIGHT ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-11 00:44:46 UTC (rev 140253)
+++ extra-x86_64/PKGBUILD   2011-10-11 00:44:55 UTC (rev 140254)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgname=python-egenix-mx-base
-origname=egenix-mx-base
-pkgver=3.2.0
-pkgrel=1
-pkgdesc=A collection of Python tools
-arch=('i686' 'x86_64')
-license=('custom')
-url=http://www.egenix.com/products/python/mxBase/;
-depends=('python2')
-makedepends=('python2-distribute')
-replaces=('egenix-mx-base')
-provides=('egenix-mx-base')
-source=(http://downloads.egenix.com/python/${origname}-${pkgver}.tar.gz;)
-sha1sums=('7346268002461512ef59da726047f79649a82b27')
-
-build() {
-  cd ${srcdir}/${origname}-${pkgver}
-  python2 setup.py build
-}
-
-package() {
-  cd ${srcdir}/${origname}-${pkgver}
-  python2 setup.py install --root=${pkgdir} --skip-build --optimize=1
-  install -D -m644 COPYRIGHT ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-egenix-mx-base/repos/extra-x86_64/PKGBUILD (from rev 140253, 
python-egenix-mx-base/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-10-11 00:44:55 UTC (rev 140254)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=python-egenix-mx-base
+_origname=egenix-mx-base
+pkgver=3.2.1
+pkgrel=1
+pkgdesc=A collection of Python tools
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.egenix.com/products/python/mxBase/;
+depends=('python2')
+makedepends=('python2-distribute')

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

2011-10-10 Thread Eric Bélanger
Date: Monday, October 10, 2011 @ 22:47:19
  Author: eric
Revision: 140255

upgpkg: di 4.30-1

Upstream update

Modified:
  di/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-11 00:44:55 UTC (rev 140254)
+++ PKGBUILD2011-10-11 02:47:19 UTC (rev 140255)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=di
-pkgver=4.29
+pkgver=4.30
 pkgrel=1
 pkgdesc=A disk information utility, displaying everything (and more) that 
your df command does
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('ZLIB')
 depends=('glibc')
 source=(http://www.gentoo.com/di/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('620b22b362067b48c25674b1af494015453d7cd9')
+sha1sums=('45fae9dd34df9f5f2c391237fb316c056d4854fe')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-10-10 Thread Eric Bélanger
Date: Monday, October 10, 2011 @ 23:22:16
  Author: eric
Revision: 140258

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-11 03:21:56 UTC (rev 140257)
+++ extra-i686/PKGBUILD 2011-10-11 03:22:16 UTC (rev 140258)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=enlightenment
-pkgver=1.0.9
-_themever=1.0.1
-pkgrel=2
-pkgdesc=A fast, flexible, and very extensible Window Manager
-arch=('i686' 'x86_64')
-url=http://www.enlightenment.org;
-license=('BSD' 'custom')
-depends=('libxinerama' 'imlib2' 'perl' 'pango' 'libxcomposite' \
- 'libxdamage' 'libxrandr' 'libpulse' 'audiofile')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/e16-${pkgver}.tar.gz
 \
-
http://downloads.sourceforge.net/enlightenment/e16-themes-${_themever}.tar.gz)
-md5sums=('ad85044366efe64cb67f4a8e49a37f84'
- 'bbd9cfd969610c29c7627c2ba1ce3094')
-sha1sums=('97929090b5d66fa28067b21b17f48cedea1f81bb'
-  'ae34e2df1294198795736bf953bf695aba93b710')
-
-build() {
-  cd ${srcdir}/e16-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --enable-sound-pulse 
-  make
-
-  cd ${srcdir}/e16-themes-${_themever}
-  ./configure --prefix=/usr
-}
-
-package() {
-  cd ${srcdir}/e16-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -D -m755 ${pkgdir}/usr/share/e16/misc/Xclients.e16-gnome.sh 
${pkgdir}/usr/bin/e16-gnome
-  install -D -m755 ${pkgdir}/usr/share/e16/misc/Xclients.e16-kde.sh 
${pkgdir}/usr/bin/e16-kde
-  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-  install -D -m644 fonts/COPYRIGHT.Vera 
${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT.Vera
-
-  cd ${srcdir}/e16-themes-${_themever}
-  make DESTDIR=${pkgdir} install
-  chown -R root:root ${pkgdir}/usr/share/*
-}

Copied: enlightenment/repos/extra-i686/PKGBUILD (from rev 140257, 
enlightenment/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-11 03:22:16 UTC (rev 140258)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=enlightenment
+pkgver=1.0.10
+_themever=1.0.1
+pkgrel=1
+pkgdesc=A fast, flexible, and very extensible Window Manager
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('BSD' 'custom')
+depends=('libxinerama' 'imlib2' 'perl' 'pango' 'libxcomposite' \
+ 'libxdamage' 'libxrandr' 'libpulse' 'audiofile')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/e16-${pkgver}.tar.gz
 \
+
http://downloads.sourceforge.net/enlightenment/e16-themes-${_themever}.tar.gz)
+sha1sums=('20e56c851aeb5279479eb43570b5d58bcc1d6ef9'
+  'ae34e2df1294198795736bf953bf695aba93b710')
+
+build() {
+  cd ${srcdir}/e16-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-sound-pulse 
+  make
+
+  cd ${srcdir}/e16-themes-${_themever}
+  ./configure --prefix=/usr
+}
+
+package() {
+  cd ${srcdir}/e16-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m755 ${pkgdir}/usr/share/e16/misc/Xclients.e16-gnome.sh 
${pkgdir}/usr/bin/e16-gnome
+  install -D -m755 ${pkgdir}/usr/share/e16/misc/Xclients.e16-kde.sh 
${pkgdir}/usr/bin/e16-kde
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+  install -D -m644 fonts/COPYRIGHT.Vera 
${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT.Vera
+
+  cd ${srcdir}/e16-themes-${_themever}
+  make DESTDIR=${pkgdir} install
+  chown -R root:root ${pkgdir}/usr/share/*
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-11 03:21:56 UTC (rev 140257)
+++ extra-x86_64/PKGBUILD   2011-10-11 03:22:16 UTC (rev 140258)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=enlightenment
-pkgver=1.0.9
-_themever=1.0.1
-pkgrel=2
-pkgdesc=A fast, flexible, and very extensible Window Manager
-arch=('i686' 'x86_64')
-url=http://www.enlightenment.org;
-license=('BSD' 'custom')
-depends=('libxinerama' 'imlib2' 'perl' 'pango' 'libxcomposite' \
- 'libxdamage' 'libxrandr' 'libpulse' 'audiofile')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/e16-${pkgver}.tar.gz
 \
-

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

2011-10-10 Thread Eric Bélanger
Date: Monday, October 10, 2011 @ 23:24:04
  Author: eric
Revision: 140259

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-11 03:22:16 UTC (rev 140258)
+++ extra-i686/PKGBUILD 2011-10-11 03:24:04 UTC (rev 140259)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=enlightenment
-pkgver=1.0.10
-_themever=1.0.1
-pkgrel=1
-pkgdesc=A fast, flexible, and very extensible Window Manager
-arch=('i686' 'x86_64')
-url=http://www.enlightenment.org;
-license=('BSD' 'custom')
-depends=('libxinerama' 'imlib2' 'perl' 'pango' 'libxcomposite' \
- 'libxdamage' 'libxrandr' 'libpulse' 'audiofile')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/e16-${pkgver}.tar.gz
 \
-
http://downloads.sourceforge.net/enlightenment/e16-themes-${_themever}.tar.gz)
-sha1sums=('20e56c851aeb5279479eb43570b5d58bcc1d6ef9'
-  'ae34e2df1294198795736bf953bf695aba93b710')
-
-build() {
-  cd ${srcdir}/e16-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --enable-sound-pulse 
-  make
-
-  cd ${srcdir}/e16-themes-${_themever}
-  ./configure --prefix=/usr
-}
-
-package() {
-  cd ${srcdir}/e16-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -D -m755 ${pkgdir}/usr/share/e16/misc/Xclients.e16-gnome.sh 
${pkgdir}/usr/bin/e16-gnome
-  install -D -m755 ${pkgdir}/usr/share/e16/misc/Xclients.e16-kde.sh 
${pkgdir}/usr/bin/e16-kde
-  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-  install -D -m644 fonts/COPYRIGHT.Vera 
${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT.Vera
-
-  cd ${srcdir}/e16-themes-${_themever}
-  make DESTDIR=${pkgdir} install
-  chown -R root:root ${pkgdir}/usr/share/*
-}

Copied: enlightenment/repos/extra-i686/PKGBUILD (from rev 140258, 
enlightenment/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-11 03:24:04 UTC (rev 140259)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=enlightenment
+pkgver=1.0.10
+_themever=1.0.1
+pkgrel=1
+pkgdesc=A fast, flexible, and very extensible Window Manager
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('BSD' 'custom')
+depends=('libxinerama' 'imlib2' 'perl' 'pango' 'libxcomposite' \
+ 'libxdamage' 'libxrandr' 'libpulse' 'audiofile')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/e16-${pkgver}.tar.gz
 \
+
http://downloads.sourceforge.net/enlightenment/e16-themes-${_themever}.tar.gz)
+sha1sums=('20e56c851aeb5279479eb43570b5d58bcc1d6ef9'
+  'ae34e2df1294198795736bf953bf695aba93b710')
+
+build() {
+  cd ${srcdir}/e16-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-sound-pulse 
+  make
+
+  cd ${srcdir}/e16-themes-${_themever}
+  ./configure --prefix=/usr
+}
+
+package() {
+  cd ${srcdir}/e16-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m755 ${pkgdir}/usr/share/e16/misc/Xclients.e16-gnome.sh 
${pkgdir}/usr/bin/e16-gnome
+  install -D -m755 ${pkgdir}/usr/share/e16/misc/Xclients.e16-kde.sh 
${pkgdir}/usr/bin/e16-kde
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+  install -D -m644 fonts/COPYRIGHT.Vera 
${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT.Vera
+
+  cd ${srcdir}/e16-themes-${_themever}
+  make DESTDIR=${pkgdir} install
+  chown -R root:root ${pkgdir}/usr/share/*
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-11 03:22:16 UTC (rev 140258)
+++ extra-x86_64/PKGBUILD   2011-10-11 03:24:04 UTC (rev 140259)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=enlightenment
-pkgver=1.0.10
-_themever=1.0.1
-pkgrel=1
-pkgdesc=A fast, flexible, and very extensible Window Manager
-arch=('i686' 'x86_64')
-url=http://www.enlightenment.org;
-license=('BSD' 'custom')
-depends=('libxinerama' 'imlib2' 'perl' 'pango' 'libxcomposite' \
- 'libxdamage' 'libxrandr' 'libpulse' 'audiofile')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/e16-${pkgver}.tar.gz
 \
-
http://downloads.sourceforge.net/enlightenment/e16-themes-${_themever}.tar.gz)

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

2011-10-10 Thread Eric Bélanger
Date: Tuesday, October 11, 2011 @ 00:47:37
  Author: eric
Revision: 140260

upgpkg: imagemagick 6.7.3.0-1

Upstream update, Update backup array

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-11 03:24:04 UTC (rev 140259)
+++ PKGBUILD2011-10-11 04:47:37 UTC (rev 140260)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.7.2.8
+pkgver=6.7.3.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.imagemagick.org/;
@@ -12,7 +12,7 @@
 makedepends=('ghostscript' 'openexr' 'libwmf' 'librsvg' 'libxml2' 'jasper' 
'libpng')
 
source=(ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz
 \
 perlmagick.rpath.patch)
-sha1sums=('227cc36d2a82d438cfb8b34ff1c7049e43d287ea'
+sha1sums=('bbcdb092f6c4cc4c1d29163bef1199e86dd5ab05'
   '23405f80904b1de94ebd7bd6fe2a332471b8c283')
 
 build() {
@@ -48,7 +48,7 @@
   'etc/ImageMagick/magic.xml'
   'etc/ImageMagick/mime.xml'
   'etc/ImageMagick/policy.xml'
-  'etc/ImageMagick/sRGB.icm'
+  'etc/ImageMagick/sRGB.icc'
   'etc/ImageMagick/thresholds.xml'
   'etc/ImageMagick/type.xml'
   'etc/ImageMagick/type-dejavu.xml'



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

2011-10-10 Thread Eric Bélanger
Date: Tuesday, October 11, 2011 @ 00:48:20
  Author: eric
Revision: 140261

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

Added:
  imagemagick/repos/extra-i686/PKGBUILD
(from rev 140260, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
(from rev 140260, imagemagick/trunk/perlmagick.rpath.patch)
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 140260, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch
(from rev 140260, imagemagick/trunk/perlmagick.rpath.patch)
Deleted:
  imagemagick/repos/extra-i686/PKGBUILD
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch

-+
 extra-i686/PKGBUILD |  158 +-
 extra-i686/perlmagick.rpath.patch   |   20 ++--
 extra-x86_64/PKGBUILD   |  158 +-
 extra-x86_64/perlmagick.rpath.patch |   20 ++--
 4 files changed, 178 insertions(+), 178 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-11 04:47:37 UTC (rev 140260)
+++ extra-i686/PKGBUILD 2011-10-11 04:48:20 UTC (rev 140261)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgbase=imagemagick
-pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.7.2.8
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://www.imagemagick.org/;
-license=('custom')
-depends=('libltdl' 'lcms2' 'libxt' 'bzip2' 'xz' 'fontconfig' 'libxext' 
'libjpeg-turbo')
-makedepends=('ghostscript' 'openexr' 'libwmf' 'librsvg' 'libxml2' 'jasper' 
'libpng')
-source=(ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz
 \
-perlmagick.rpath.patch)
-sha1sums=('227cc36d2a82d438cfb8b34ff1c7049e43d287ea'
-  '23405f80904b1de94ebd7bd6fe2a332471b8c283')
-
-build() {
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-
-  sed '/AC_PATH_XTRA/d' -i configure.ac
-  autoreconf
-  patch -Np0 -i ../perlmagick.rpath.patch
-
-  LIBS=$LIBS -L/usr/lib/perl5/core_perl/CORE -lperl \
-./configure --prefix=/usr --sysconfdir=/etc --with-modules 
--disable-static \
---enable-openmp --with-wmf --with-openexr --with-xml --with-lcms2 
--with-jp2 \
---with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
---with-perl --with-perl-options=INSTALLDIRS=vendor \
---without-gvc --without-djvu --without-autotrace --without-webp \
---without-jbig --without-fpx --without-dps --without-fftw --without-lqr
-  make
-}
-
-package_imagemagick() {
-  pkgdesc=An image viewing/manipulation program
-  optdepends=('ghostscript: for Ghostscript support' 
-  'openexr: for OpenEXR support' 
-  'libwmf: for WMF support' 
-  'librsvg: for SVG support' 
-  'libxml2: for XML support' 
-  'jasper: for JPEG-2000 support' 
-  'libpng: for PNG support')
-  backup=('etc/ImageMagick/coder.xml'
-  'etc/ImageMagick/colors.xml'
-  'etc/ImageMagick/delegates.xml'
-  'etc/ImageMagick/log.xml'
-  'etc/ImageMagick/magic.xml'
-  'etc/ImageMagick/mime.xml'
-  'etc/ImageMagick/policy.xml'
-  'etc/ImageMagick/sRGB.icm'
-  'etc/ImageMagick/thresholds.xml'
-  'etc/ImageMagick/type.xml'
-  'etc/ImageMagick/type-dejavu.xml'
-  'etc/ImageMagick/type-ghostscript.xml'
-  'etc/ImageMagick/type-windows.xml')
-  options=('!makeflags' '!docs' 'libtool')
-
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make DESTDIR=${pkgdir} install
-  chmod 755 ${pkgdir}/usr/lib/perl5/vendor_perl/auto/Image/Magick/Magick.so 
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/imagemagick/LICENSE
-  install -Dm644 NOTICE ${pkgdir}/usr/share/licenses/imagemagick/NOTICE
-
-#Cleaning
-  find ${pkgdir} -name '*.bs' -delete
-  rm -f ${pkgdir}/usr/lib/*.la
-}
-
-package_imagemagick-doc() {
-  pkgdesc=The ImageMagick documentation (utilities manuals and libraries API)
-  depends=()
-  options=('!makeflags')
-
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make DESTDIR=${pkgdir} install-data-html
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/imagemagick-doc/LICENSE
-  install -Dm644 NOTICE ${pkgdir}/usr/share/licenses/imagemagick-doc/NOTICE
-}

Copied: imagemagick/repos/extra-i686/PKGBUILD (from rev 140260, 
imagemagick/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-11 04:48:20 UTC (rev 140261)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgbase=imagemagick
+pkgname=('imagemagick' 'imagemagick-doc')
+pkgver=6.7.3.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://www.imagemagick.org/;
+license=('custom')