[arch-commits] Commit in mdadm/trunk (PKGBUILD segfault-3.2.1.patch)

2011-04-13 Thread Tobias Powalowski
Date: Wednesday, April 13, 2011 @ 03:07:09
  Author: tpowa
Revision: 119650

upgpkg: mdadm 3.2.1-2
fix segfaults in mdadm monitor mode

Added:
  mdadm/trunk/segfault-3.2.1.patch
Modified:
  mdadm/trunk/PKGBUILD

--+
 PKGBUILD |   22 ++-
 segfault-3.2.1.patch |   68 +
 2 files changed, 83 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-13 04:54:21 UTC (rev 119649)
+++ PKGBUILD2011-04-13 07:07:09 UTC (rev 119650)
@@ -3,7 +3,7 @@
 # Contributor: Judd Vinet jvi...@zeroflux.org
 pkgname=mdadm
 pkgver=3.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc=A tool for managing/monitoring Linux md device arrays, also known as 
Software RAID
 arch=(i686 x86_64)
 license=('GPL')
@@ -16,17 +16,14 @@
 mdadm 
 mdadm.conf 
 mdadm_install
-mdadm_hook)
+mdadm_hook
+segfault-3.2.1.patch)
 install=mdadm.install
 replaces=('raidtools')
-md5sums=('d1e2549202bd79d9e99f1498d1109530'
- '7bff0e506fb6017510c8ec4a01896952'
- '00cbed931db4f15b6ce49e3e7d433966'
- '865c3d39e5f5dae58388160b563981f1'
- '1a3eb63832cecd6550f5b0a21d58cfdb')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
+  patch -Np1 -i ../segfault-3.2.1.patch
   make CXFLAGS=$CFLAGS
 }
 
@@ -43,3 +40,14 @@
   make MDASSEMBLE_AUTO=1 mdassemble
   install -D -m755 mdassemble $pkgdir/sbin/mdassemble
 }
+md5sums=('5af65c32193fe0aea1aac4c4d44ac383'
+ '7bff0e506fb6017510c8ec4a01896952'
+ '00cbed931db4f15b6ce49e3e7d433966'
+ '865c3d39e5f5dae58388160b563981f1'
+ '1a3eb63832cecd6550f5b0a21d58cfdb')
+md5sums=('d1e2549202bd79d9e99f1498d1109530'
+ '7bff0e506fb6017510c8ec4a01896952'
+ '00cbed931db4f15b6ce49e3e7d433966'
+ '865c3d39e5f5dae58388160b563981f1'
+ '1a3eb63832cecd6550f5b0a21d58cfdb'
+ '2fd25605bd1836a33c689ac442cb73ed')

Added: segfault-3.2.1.patch
===
--- segfault-3.2.1.patch(rev 0)
+++ segfault-3.2.1.patch2011-04-13 07:07:09 UTC (rev 119650)
@@ -0,0 +1,68 @@
+From 4019ad07013a5d8618b867f724d1c4a13c5cb05d Mon Sep 17 00:00:00 2001
+From: Jonathan Liu net...@gmail.com
+Date: Tue, 12 Apr 2011 18:28:01 +1000
+Subject: [PATCH] Monitor: avoid NULL dereference with 0.90 metadata
+
+0.90 array do not report the metadata type in /proc/mdstat, so
+we cannot assume that mse-metadata_version is non-NULL.
+
+So add an appropriate check.
+
+This adds an additional check missed by commit
+eb28e119b03fd5149886ed516fa4bb006ad3602e.
+
+Signed-off-by: NeilBrown ne...@suse.de
+---
+ Monitor.c |3 ++-
+ 1 files changed, 2 insertions(+), 1 deletions(-)
+
+diff --git a/Monitor.c b/Monitor.c
+index a3ea724..55aebeb 100644
+--- a/Monitor.c
 b/Monitor.c
+@@ -577,7 +577,8 @@ static int check_array(struct state *st, struct mdstat_ent 
*mdstat,
+   info[i].major = info[i].minor = 0;
+   }
+ 
+-  if (strncmp(mse-metadata_version, external:, 9) == 0 
++  if (mse-metadata_version 
++  strncmp(mse-metadata_version, external:, 9) == 0 
+   is_subarray(mse-metadata_version+9))
+   st-parent_dev =
+   devname2devnum(mse-metadata_version+10);
+-- 
+1.7.2.3
+
+From eb28e119b03fd5149886ed516fa4bb006ad3602e Mon Sep 17 00:00:00 2001
+From: NeilBrown ne...@suse.de
+Date: Tue, 5 Apr 2011 09:16:57 +1000
+Subject: [PATCH] Monitor: avoid NULL dereference with 0.90 metadata
+
+0.90 array do not report the metadata type in /proc/mdstat, so
+we cannot assume that mse-metadata_version is non-NULL.
+
+So add an appropriate check.
+
+Reported-by: Eugene hde...@yahoo.com
+Signed-off-by: NeilBrown ne...@suse.de
+---
+ Monitor.c |3 ++-
+ 1 files changed, 2 insertions(+), 1 deletions(-)
+
+diff --git a/Monitor.c b/Monitor.c
+index 291e465..337785d 100644
+--- a/Monitor.c
 b/Monitor.c
+@@ -688,7 +688,8 @@ static int add_new_arrays(struct mdstat_ent *mdstat, 
struct state **statelist,
+   st-devnum = mse-devnum;
+   st-percent = -2;
+   st-expected_spares = -1;
+-  if (strncmp(mse-metadata_version, external:, 9) == 0 

++  if (mse-metadata_version 
++  strncmp(mse-metadata_version, external:, 9) == 0 

+   is_subarray(mse-metadata_version+9))
+   st-parent_dev =
+   
devname2devnum(mse-metadata_version+10);
+-- 
+1.7.2.3
+



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

2011-04-13 Thread Tobias Powalowski
Date: Wednesday, April 13, 2011 @ 03:07:47
  Author: tpowa
Revision: 119651

archrelease: copy trunk to testing-i686

Added:
  mdadm/repos/testing-i686/



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

2011-04-13 Thread Tobias Powalowski
Date: Wednesday, April 13, 2011 @ 03:08:00
  Author: tpowa
Revision: 119652

archrelease: copy trunk to testing-x86_64

Added:
  mdadm/repos/testing-x86_64/



[arch-commits] Commit in kdepim-runtime/kde-unstable (PKGBUILD)

2011-04-13 Thread Andrea Scarpino
Date: Wednesday, April 13, 2011 @ 04:38:54
  Author: andrea
Revision: 119653

new tarball

Modified:
  kdepim-runtime/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-13 07:08:00 UTC (rev 119652)
+++ PKGBUILD2011-04-13 08:38:54 UTC (rev 119653)
@@ -15,8 +15,8 @@
 
#source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
 
source=(http://download.kde.org/unstable/kdepim/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;
 'disable-l10n.patch')
-sha1sums=('511d7518dccdc4c64aea1db89bca7906c2452161'
-'991d81435205185dcb2285a6e728f7756ae92b0d')
+sha1sums=('0607224f725ee161d16d41a44bd02bacb8245434'
+  '991d81435205185dcb2285a6e728f7756ae92b0d')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in kdepim/kde-unstable (PKGBUILD)

2011-04-13 Thread Andrea Scarpino
Date: Wednesday, April 13, 2011 @ 04:39:02
  Author: andrea
Revision: 119654

new tarball

Modified:
  kdepim/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-13 08:38:54 UTC (rev 119653)
+++ PKGBUILD2011-04-13 08:39:02 UTC (rev 119654)
@@ -31,8 +31,8 @@
 
#source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
 
source=(http://download.kde.org/unstable/${pkgbase}/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;
 'disable-l10n.patch')
-sha1sums=('fa457e271f0861762c47a2f592f0530c44b572b2'
-'25e36f160ced051268e59fad6ed2de33a9c7657a')
+sha1sums=('5227ac466247f043643bb9eaa7568e8b936edafe'
+  '25e36f160ced051268e59fad6ed2de33a9c7657a')
 
 build() {
 cd ${srcdir}/${pkgbase}-${pkgver}



[arch-commits] Commit in (4 files)

2011-04-13 Thread Ionut Biru
Date: Wednesday, April 13, 2011 @ 06:39:02
  Author: ibiru
Revision: 119655

needed by gnome-control-center, Printer

Added:
  cups-pk-helper/
  cups-pk-helper/repos/
  cups-pk-helper/trunk/
  cups-pk-helper/trunk/PKGBUILD

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

Added: cups-pk-helper/trunk/PKGBUILD
===
--- cups-pk-helper/trunk/PKGBUILD   (rev 0)
+++ cups-pk-helper/trunk/PKGBUILD   2011-04-13 10:39:02 UTC (rev 119655)
@@ -0,0 +1,28 @@
+#$Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+pkgname=cups-pk-helper
+pkgver=0.1.2
+pkgrel=1
+pkgdesc=A helper that makes system-config-printer use PolicyKit
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/software/cups-pk-helper/releases/;
+license=('GPL')
+depends=(dbus-glib polkit libcups)
+makedepends=(intltool)
+install=
+source=(http://www.freedesktop.org/software/${pkgname}/releases/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('ccc5f35c5232b83c16929431b352775dd4c63cb92759ec45a525edb6fcb805df')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/cups-pk-helper
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: cups-pk-helper/trunk/PKGBUILD
___
Added: svn:keywords
   + Id



[arch-commits] Commit in cups-pk-helper/repos (testing-i686)

2011-04-13 Thread Ionut Biru
Date: Wednesday, April 13, 2011 @ 06:40:38
  Author: ibiru
Revision: 119656

archrelease: copy trunk to testing-i686

Added:
  cups-pk-helper/repos/testing-i686/



[arch-commits] Commit in cups-pk-helper/repos (testing-x86_64)

2011-04-13 Thread Ionut Biru
Date: Wednesday, April 13, 2011 @ 06:40:50
  Author: ibiru
Revision: 119657

archrelease: copy trunk to testing-x86_64

Added:
  cups-pk-helper/repos/testing-x86_64/



[arch-commits] Commit in gnome-control-center/trunk (PKGBUILD)

2011-04-13 Thread Ionut Biru
Date: Wednesday, April 13, 2011 @ 06:50:33
  Author: ibiru
Revision: 119658

upgpkg: gnome-control-center 3.0.0.1-2
add cups-pk-helper to depends

Modified:
  gnome-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-13 10:40:50 UTC (rev 119657)
+++ PKGBUILD2011-04-13 10:50:33 UTC (rev 119658)
@@ -3,10 +3,10 @@
 
 pkgname=gnome-control-center
 pkgver=3.0.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc=The Control Center for GNOME
 arch=('i686' 'x86_64')
-depends=('gtk3' 'gsettings-desktop-schemas' 'gconf' 'gnome-menus' 
'gnome-desktop' 'gnome-settings-daemon' 'upower' 'libgtop')
+depends=('gtk3' 'gsettings-desktop-schemas' 'gconf' 'gnome-menus' 
'gnome-desktop' 'gnome-settings-daemon' 'upower' 'libgtop' 'cups-pk-helper')
 makedepends=('gnome-doc-utils' 'intltool' 'networkmanager')
 url=http://www.gnome.org;
 groups=('gnome')



[arch-commits] Commit in gnome-control-center/repos (testing-i686)

2011-04-13 Thread Ionut Biru
Date: Wednesday, April 13, 2011 @ 06:50:37
  Author: ibiru
Revision: 119659

archrelease: remove testing-i686

Deleted:
  gnome-control-center/repos/testing-i686/



[arch-commits] Commit in gnome-control-center/repos (testing-i686)

2011-04-13 Thread Ionut Biru
Date: Wednesday, April 13, 2011 @ 06:50:49
  Author: ibiru
Revision: 119660

archrelease: copy trunk to testing-i686

Added:
  gnome-control-center/repos/testing-i686/



[arch-commits] Commit in gnome-control-center/repos (testing-x86_64)

2011-04-13 Thread Ionut Biru
Date: Wednesday, April 13, 2011 @ 06:50:52
  Author: ibiru
Revision: 119661

archrelease: remove testing-x86_64

Deleted:
  gnome-control-center/repos/testing-x86_64/



[arch-commits] Commit in gnome-control-center/repos (testing-x86_64)

2011-04-13 Thread Ionut Biru
Date: Wednesday, April 13, 2011 @ 06:51:06
  Author: ibiru
Revision: 119662

archrelease: copy trunk to testing-x86_64

Added:
  gnome-control-center/repos/testing-x86_64/



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 07:20:17
  Author: allan
Revision: 119663

db-move: mlocate removed by allan for move to [core] (i686)

Deleted:
  mlocate/repos/core-i686/



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 07:20:18
  Author: allan
Revision: 119664

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

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



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 07:20:19
  Author: allan
Revision: 119665

db-move: mlocate removed by allan for move to [core] (x86_64)

Deleted:
  mlocate/repos/core-x86_64/



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 07:20:20
  Author: allan
Revision: 119666

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

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



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 07:20:21
  Author: allan
Revision: 119667

db-move: ncurses removed by allan for move to [core] (i686)

Deleted:
  ncurses/repos/core-i686/



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 07:20:23
  Author: allan
Revision: 119668

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

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



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 07:20:26
  Author: allan
Revision: 119669

db-move: ncurses removed by allan for move to [core] (x86_64)

Deleted:
  ncurses/repos/core-x86_64/



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 07:20:28
  Author: allan
Revision: 119671

db-move: sudo removed by allan for move to [core] (i686)

Deleted:
  sudo/repos/core-i686/



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 07:20:27
  Author: allan
Revision: 119670

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

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



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 07:20:30
  Author: allan
Revision: 119673

db-move: sudo removed by allan for move to [core] (x86_64)

Deleted:
  sudo/repos/core-x86_64/



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 07:20:29
  Author: allan
Revision: 119672

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

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



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 07:20:30
  Author: allan
Revision: 119674

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

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



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

2011-04-13 Thread Andrea Scarpino
Date: Wednesday, April 13, 2011 @ 08:39:30
  Author: andrea
Revision: 119675

upgpkg: oxygen-gtk 1.0.4-1
upstream release

Modified:
  oxygen-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-13 11:20:30 UTC (rev 119674)
+++ PKGBUILD2011-04-13 12:39:30 UTC (rev 119675)
@@ -3,7 +3,7 @@
 # Contributor: birdflesh antkoul at gmail dot com
 
 pkgname=oxygen-gtk
-pkgver=1.0.3
+pkgver=1.0.4
 pkgrel=1
 pkgdesc=Port of the default KDE widget theme (Oxygen) to GTK
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('gtk2')
 makedepends=('cmake')
 
source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('df17f4a9b233a9c9e028932f11d05058')
+md5sums=('0aed63523f8abe79860e6b934a9d6210')
 
 build() {
   cd ${srcdir}



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

2011-04-13 Thread Andrea Scarpino
Date: Wednesday, April 13, 2011 @ 08:39:33
  Author: andrea
Revision: 119676

archrelease: remove extra-i686

Deleted:
  oxygen-gtk/repos/extra-i686/



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

2011-04-13 Thread Andrea Scarpino
Date: Wednesday, April 13, 2011 @ 08:39:49
  Author: andrea
Revision: 119677

archrelease: copy trunk to extra-i686

Added:
  oxygen-gtk/repos/extra-i686/



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

2011-04-13 Thread Andrea Scarpino
Date: Wednesday, April 13, 2011 @ 08:39:52
  Author: andrea
Revision: 119678

archrelease: remove extra-x86_64

Deleted:
  oxygen-gtk/repos/extra-x86_64/



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

2011-04-13 Thread Andrea Scarpino
Date: Wednesday, April 13, 2011 @ 08:40:07
  Author: andrea
Revision: 119679

archrelease: copy trunk to extra-x86_64

Added:
  oxygen-gtk/repos/extra-x86_64/



[arch-commits] Commit in nvidia-173xx/repos (extra-i686)

2011-04-13 Thread Pierre Schmitz
Date: Wednesday, April 13, 2011 @ 11:50:53
  Author: pierre
Revision: 119680

db-remove: nvidia-173xx removed by pierre

Deleted:
  nvidia-173xx/repos/extra-i686/



[arch-commits] Commit in nvidia-173xx/repos (extra-x86_64)

2011-04-13 Thread Pierre Schmitz
Date: Wednesday, April 13, 2011 @ 11:51:06
  Author: pierre
Revision: 119681

db-remove: nvidia-173xx removed by pierre

Deleted:
  nvidia-173xx/repos/extra-x86_64/



[arch-commits] Commit in nvidia-173xx-utils/repos (extra-x86_64)

2011-04-13 Thread Pierre Schmitz
Date: Wednesday, April 13, 2011 @ 11:51:25
  Author: pierre
Revision: 119682

db-remove: nvidia-173xx-utils removed by pierre

Deleted:
  nvidia-173xx-utils/repos/extra-x86_64/



[arch-commits] Commit in nvidia-173xx-utils/repos (extra-i686)

2011-04-13 Thread Pierre Schmitz
Date: Wednesday, April 13, 2011 @ 11:51:41
  Author: pierre
Revision: 119683

db-remove: nvidia-173xx-utils removed by pierre

Deleted:
  nvidia-173xx-utils/repos/extra-i686/



[arch-commits] Commit in python2/trunk (2 files)

2011-04-13 Thread Stéphane Gaudreault
Date: Wednesday, April 13, 2011 @ 12:35:24
  Author: stephane
Revision: 119684

upgpkg: python2 2.7.1-8
fix import decimal in the Turkish locale

Added:
  python2/trunk/python-2.7.1-fix-decimal-in-turkish-locale.patch
Modified:
  python2/trunk/PKGBUILD

--+
 PKGBUILD |   12 +++--
 python-2.7.1-fix-decimal-in-turkish-locale.patch |   48 +
 2 files changed, 57 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-13 15:51:41 UTC (rev 119683)
+++ PKGBUILD2011-04-13 16:35:24 UTC (rev 119684)
@@ -5,7 +5,7 @@
 
 pkgname=python2
 pkgver=2.7.1
-pkgrel=7
+pkgrel=8
 _pybasever=2.7
 pkgdesc=A high-level scripting language
 arch=('i686' 'x86_64')
@@ -17,15 +17,21 @@
 conflicts=('python3')
 options=('!makeflags')
 source=(http://www.python.org/ftp/python/${pkgver}/Python-${pkgver}.tar.bz2
-python-2.7-db51.diff)
+python-2.7-db51.diff
+python-2.7.1-fix-decimal-in-turkish-locale.patch)
 md5sums=('aa27bc25725137ba155910bd8e5ddc4f'
- 'd9b8161568ce17a305c1b71e61ccd4b5')
+ 'd9b8161568ce17a305c1b71e61ccd4b5'
+ '5032449f1ff2abfe18d14cc674165b23')
 
 build() {
   cd ${srcdir}/Python-${pkgver}
 
   patch -Np1 -i ../python-2.7-db51.diff
 
+  # Fix import decimal in the Turkish locale
+  # cf : https://bugzilla.redhat.com/show_bug.cgi?id=694928
+  patch -Np1 -i ../python-2.7.1-fix-decimal-in-turkish-locale.patch
+
   # Temporary workaround for FS#22322
   # See http://bugs.python.org/issue10835 for upstream report
   sed -i /progname =/s/python/python${_pybasever}/ Python/pythonrun.c

Added: python-2.7.1-fix-decimal-in-turkish-locale.patch
===
--- python-2.7.1-fix-decimal-in-turkish-locale.patch
(rev 0)
+++ python-2.7.1-fix-decimal-in-turkish-locale.patch2011-04-13 16:35:24 UTC 
(rev 119684)
@@ -0,0 +1,48 @@
+diff -up Python-2.7.1/Lib/decimal.py.fix-decimal-in-turkish-locale 
Python-2.7.1/Lib/decimal.py
+--- Python-2.7.1/Lib/decimal.py.fix-decimal-in-turkish-locale  2010-07-08 
17:22:54.0 -0400
 Python-2.7.1/Lib/decimal.py2011-04-12 11:30:40.850350842 -0400
+@@ -1720,8 +1720,6 @@ class Decimal(object):
+ # here self was representable to begin with; return unchanged
+ return Decimal(self)
+
+-_pick_rounding_function = {}
+-
+ # for each of the rounding functions below:
+ #   self is a finite, nonzero Decimal
+ #   prec is an integer satisfying 0 = prec  len(self._int)
+@@ -1788,6 +1786,17 @@ class Decimal(object):
+ else:
+ return -self._round_down(prec)
+
++_pick_rounding_function = dict(
++ROUND_DOWN = '_round_down',
++ROUND_UP = '_round_up',
++ROUND_HALF_UP = '_round_half_up',
++ROUND_HALF_DOWN = '_round_half_down',
++ROUND_HALF_EVEN = '_round_half_even',
++ROUND_CEILING = '_round_ceiling',
++ROUND_FLOOR = '_round_floor',
++ROUND_05UP = '_round_05up',
++)
++
+ def fma(self, other, third, context=None):
+ Fused multiply-add.
+
+@@ -3705,18 +3714,6 @@ _numbers.Number.register(Decimal)
+
+ # Context class ###
+
+-
+-# get rounding method function:
+-rounding_functions = [name for name in Decimal.__dict__.keys()
+-if name.startswith('_round_')]
+-for name in rounding_functions:
+-# name is like _round_half_even, goes to the global ROUND_HALF_EVEN value.
+-globalname = name[1:].upper()
+-val = globals()[globalname]
+-Decimal._pick_rounding_function[val] = name
+-
+-del name, val, globalname, rounding_functions
+-
+ class _ContextManager(object):
+ Context manager class to support localcontext().



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

2011-04-13 Thread Stéphane Gaudreault
Date: Wednesday, April 13, 2011 @ 12:35:30
  Author: stephane
Revision: 119685

archrelease: copy trunk to testing-i686

Added:
  python2/repos/testing-i686/



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

2011-04-13 Thread Stéphane Gaudreault
Date: Wednesday, April 13, 2011 @ 12:35:36
  Author: stephane
Revision: 119686

archrelease: copy trunk to testing-x86_64

Added:
  python2/repos/testing-x86_64/



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

2011-04-13 Thread andyrtr
Date: Wednesday, April 13, 2011 @ 12:45:31
  Author: andyrtr
Revision: 119687

upgpkg: man-db 2.6.0.2-1
update to 2.6.0.2; solves FS#22866

Modified:
  man-db/trunk/PKGBUILD
  man-db/trunk/man-db.install

+
 PKGBUILD   |4 ++--
 man-db.install |6 +-
 2 files changed, 7 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-13 16:35:36 UTC (rev 119686)
+++ PKGBUILD2011-04-13 16:45:31 UTC (rev 119687)
@@ -3,7 +3,7 @@
 # Contributor: Sergej Pupykin ser...@aur.archlinux.org
 
 pkgname=man-db
-pkgver=2.6.0.1
+pkgver=2.6.0.2
 pkgrel=1
 pkgdesc=A utility for reading man pages
 arch=('i686' 'x86_64')
@@ -21,7 +21,7 @@
 source=(http://savannah.nongnu.org/download/man-db/$pkgname-$pkgver.tar.gz

#http://launchpad.net/man-db/main/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz
 convert-mans man-db.cron.daily)
-md5sums=('664519fbee417dc4934f94caf6627fc3'
+md5sums=('2b41c96efec032d2b74ccbf2e401f93e'
  '2b7662a7d5b33fe91f9f3e034361a2f6'
  'd30c39ae47560304471b5461719e0f03')
 options=('!libtool')

Modified: man-db.install
===
--- man-db.install  2011-04-13 16:35:36 UTC (rev 119686)
+++ man-db.install  2011-04-13 16:45:31 UTC (rev 119687)
@@ -10,9 +10,13 @@
  echo run \userdel man\. please also
  echo chown root:root /var/cache/man
   fi
+  # force database rebuild to get rid off badly imported pages
+  if [ `vercmp $2 2.6.0.2` -lt 0 ]; then
+ echo (re)building database...
+ mandb -c --quiet
+  fi
 }
 
 post_remove() {
   rm -rf /var/cache/man
 }
-



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

2011-04-13 Thread andyrtr
Date: Wednesday, April 13, 2011 @ 12:45:35
  Author: andyrtr
Revision: 119688

archrelease: remove testing-i686

Deleted:
  man-db/repos/testing-i686/



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

2011-04-13 Thread andyrtr
Date: Wednesday, April 13, 2011 @ 12:45:53
  Author: andyrtr
Revision: 119689

archrelease: copy trunk to testing-i686

Added:
  man-db/repos/testing-i686/



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

2011-04-13 Thread andyrtr
Date: Wednesday, April 13, 2011 @ 12:45:57
  Author: andyrtr
Revision: 119690

archrelease: remove testing-x86_64

Deleted:
  man-db/repos/testing-x86_64/



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

2011-04-13 Thread andyrtr
Date: Wednesday, April 13, 2011 @ 12:46:14
  Author: andyrtr
Revision: 119691

archrelease: copy trunk to testing-x86_64

Added:
  man-db/repos/testing-x86_64/



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

2011-04-13 Thread andyrtr
Date: Wednesday, April 13, 2011 @ 13:22:23
  Author: andyrtr
Revision: 119692

upgpkg: bin86 0.16.18-1
update to 0.16.18

Modified:
  bin86/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-13 16:46:14 UTC (rev 119691)
+++ PKGBUILD2011-04-13 17:22:23 UTC (rev 119692)
@@ -1,21 +1,24 @@
 # $Id$
-# Maintainer: judd jvi...@zeroflux.org
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
 pkgname=bin86
-pkgver=0.16.17
-pkgrel=5
+pkgver=0.16.18
+pkgrel=1
 pkgdesc=A complete 8086 assembler and loader
 arch=(i686 x86_64)
 license=('GPL')
 url=http://www.debath.co.uk/;
 depends=('glibc')
-source=(http://homepage.ntlworld.com/robert.debath/dev86/$pkgname-$pkgver.tar.gz
+source=(http://www.debath.co.uk/dev86//$pkgname-$pkgver.tar.gz
bin86-0.16.17-x86_64-1.patch)
-md5sums=('c9e8d72dd2e7457b52d0e3164fc199a1' '92bdce7b0655cd2e9f83c83fc56d128e')
+md5sums=('914068fb649b93642d1cf21857b75699'
+ '92bdce7b0655cd2e9f83c83fc56d128e')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
   if [ $CARCH = x86_64 ]; then
- patch -Np1 -i ../bin86-0.16.17-x86_64-1.patch || return 1
+ patch -Np1 -i ../bin86-0.16.17-x86_64-1.patch
   fi
   make PREFIX=/usr
 }



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

2011-04-13 Thread andyrtr
Date: Wednesday, April 13, 2011 @ 13:22:42
  Author: andyrtr
Revision: 119693

archrelease: copy trunk to testing-i686

Added:
  bin86/repos/testing-i686/



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

2011-04-13 Thread andyrtr
Date: Wednesday, April 13, 2011 @ 13:22:59
  Author: andyrtr
Revision: 119694

archrelease: copy trunk to testing-x86_64

Added:
  bin86/repos/testing-x86_64/



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

2011-04-13 Thread andyrtr
Date: Wednesday, April 13, 2011 @ 15:29:24
  Author: andyrtr
Revision: 119695

upgpkg: dovecot 2.0.12-1
upstream update 2.0.12

Modified:
  dovecot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-13 17:22:59 UTC (rev 119694)
+++ PKGBUILD2011-04-13 19:29:24 UTC (rev 119695)
@@ -5,8 +5,8 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgname=dovecot
-pkgver=2.0.11
-pkgrel=2
+pkgver=2.0.12
+pkgrel=1
 pkgdesc=An IMAP and POP3 server written with security primarily in mind
 arch=('i686' 'x86_64')
 url=http://dovecot.org/;
@@ -25,7 +25,7 @@
etc/ssl/dovecot-openssl.cnf)
 install=$pkgname.install
 source=(http://dovecot.org/releases/2.0/${pkgname}-${pkgver}.tar.gz dovecot.sh)
-md5sums=('088a850d6583a7ec0a8074ce929b3496'
+md5sums=('689e1a8863d4fb2fd252e1a6121dd181'
  'd020d43eab4ded6fb379dadc570a9490')
 
 build() {



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

2011-04-13 Thread andyrtr
Date: Wednesday, April 13, 2011 @ 15:29:29
  Author: andyrtr
Revision: 119696

archrelease: remove extra-i686

Deleted:
  dovecot/repos/extra-i686/



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

2011-04-13 Thread andyrtr
Date: Wednesday, April 13, 2011 @ 15:29:45
  Author: andyrtr
Revision: 119697

archrelease: copy trunk to extra-i686

Added:
  dovecot/repos/extra-i686/



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

2011-04-13 Thread andyrtr
Date: Wednesday, April 13, 2011 @ 15:29:49
  Author: andyrtr
Revision: 119698

archrelease: remove extra-x86_64

Deleted:
  dovecot/repos/extra-x86_64/



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

2011-04-13 Thread andyrtr
Date: Wednesday, April 13, 2011 @ 15:30:06
  Author: andyrtr
Revision: 119699

archrelease: copy trunk to extra-x86_64

Added:
  dovecot/repos/extra-x86_64/



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 17:50:08
  Author: allan
Revision: 119700

upgpkg: less 443-1
upstream update

Modified:
  less/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-13 19:30:06 UTC (rev 119699)
+++ PKGBUILD2011-04-13 21:50:08 UTC (rev 119700)
@@ -3,8 +3,8 @@
 # Contributor: judd jvi...@zeroflux.org
 
 pkgname=less
-pkgver=436
-pkgrel=2
+pkgver=443
+pkgrel=1
 pkgdesc=A terminal based program for viewing text files
 license=('GPL3')
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 groups=('base')
 depends=('ncurses' 'pcre')
 source=(http://www.greenwoodsoftware.com/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('817bf051953ad2dea825a1cdf460caa4')
+md5sums=('47db098fb3cdaf847b3c4be05ee954fc')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 17:50:32
  Author: allan
Revision: 119701

archrelease: copy trunk to testing-i686

Added:
  less/repos/testing-i686/



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 17:50:59
  Author: allan
Revision: 119702

archrelease: copy trunk to testing-x86_64

Added:
  less/repos/testing-x86_64/



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

2011-04-13 Thread Ray Rashif
Date: Wednesday, April 13, 2011 @ 18:27:56
  Author: schiv
Revision: 119703

upgpkg: qjackctl 0.3.7-2
rebuild against latest jack for session support

Modified:
  qjackctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-13 21:50:59 UTC (rev 119702)
+++ PKGBUILD2011-04-13 22:27:56 UTC (rev 119703)
@@ -4,7 +4,7 @@
 
 pkgname=qjackctl
 pkgver=0.3.7
-pkgrel=1
+pkgrel=2
 pkgdesc=A Qt front-end for the JACK low-latency audio server
 url=http://qjackctl.sourceforge.net/;
 arch=('i686' 'x86_64')



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

2011-04-13 Thread Ray Rashif
Date: Wednesday, April 13, 2011 @ 18:27:59
  Author: schiv
Revision: 119704

archrelease: remove extra-i686

Deleted:
  qjackctl/repos/extra-i686/



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

2011-04-13 Thread Ray Rashif
Date: Wednesday, April 13, 2011 @ 18:28:16
  Author: schiv
Revision: 119705

archrelease: copy trunk to extra-i686

Added:
  qjackctl/repos/extra-i686/



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

2011-04-13 Thread Ray Rashif
Date: Wednesday, April 13, 2011 @ 18:28:19
  Author: schiv
Revision: 119706

archrelease: remove extra-x86_64

Deleted:
  qjackctl/repos/extra-x86_64/



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

2011-04-13 Thread Ray Rashif
Date: Wednesday, April 13, 2011 @ 18:28:35
  Author: schiv
Revision: 119707

archrelease: copy trunk to extra-x86_64

Added:
  qjackctl/repos/extra-x86_64/



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

2011-04-13 Thread Ray Rashif
Date: Wednesday, April 13, 2011 @ 18:45:29
  Author: schiv
Revision: 119708

upgpkg: mpd 0.16.2-2
add jack support; FS#23409

Modified:
  mpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-13 22:28:35 UTC (rev 119707)
+++ PKGBUILD2011-04-13 22:45:29 UTC (rev 119708)
@@ -6,7 +6,7 @@
 
 pkgname=mpd
 pkgver=0.16.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Music daemon that plays MP3, FLAC, and Ogg Vorbis files
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -14,7 +14,7 @@
 depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
  'sqlite3' 'libsamplerate' 'libmms' 'wavpack' 'libmpcdec' 'avahi' 
'libid3tag'
  'libpulse')
-makedepends=('pkgconfig' 'doxygen')
+makedepends=('pkgconfig' 'doxygen' 'jack')
 install=${pkgname}.install
 source=(http://downloads.sourceforge.net/musicpd/${pkgname}-${pkgver}.tar.bz2;
 'mpd')
@@ -26,6 +26,7 @@
   ./configure --prefix=/usr \
 --sysconfdir=/etc \
 --enable-lastfm \
+--enable-jack \
 --enable-pulse \
 --enable-documentation \
 --disable-libwrap \



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

2011-04-13 Thread Ray Rashif
Date: Wednesday, April 13, 2011 @ 18:45:44
  Author: schiv
Revision: 119709

archrelease: copy trunk to testing-i686

Added:
  mpd/repos/testing-i686/



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

2011-04-13 Thread Ray Rashif
Date: Wednesday, April 13, 2011 @ 18:46:00
  Author: schiv
Revision: 119710

archrelease: copy trunk to testing-x86_64

Added:
  mpd/repos/testing-x86_64/



[arch-commits] Commit in opencv/trunk (PKGBUILD gcc46.patch nov4l1.patch)

2011-04-13 Thread Ray Rashif
Date: Wednesday, April 13, 2011 @ 19:48:14
  Author: schiv
Revision: 119711

upgpkg: opencv 2.2.0-4
gcc 4.6 compat; FS#23741, no-v4l1 kernel compat

Added:
  opencv/trunk/gcc46.patch
  opencv/trunk/nov4l1.patch
Modified:
  opencv/trunk/PKGBUILD

--+
 PKGBUILD |   18 +++---
 gcc46.patch  |   10 ++
 nov4l1.patch |   25 +
 3 files changed, 50 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-13 22:46:00 UTC (rev 119710)
+++ PKGBUILD2011-04-13 23:48:14 UTC (rev 119711)
@@ -5,7 +5,7 @@
 pkgname=opencv
 _realname=OpenCV
 pkgver=2.2.0
-pkgrel=3
+pkgrel=4
 pkgdesc=Open Source Computer Vision Library
 arch=('i686' 'x86_64')
 license=('BSD')
@@ -18,9 +18,13 @@
 'python2-numpy')
 options=('!libtool')
 
source=(http://downloads.sourceforge.net/opencvlibrary/$_realname-$pkgver.tar.bz2
-ptrcvcapture.patch)
+ptrcvcapture.patch
+gcc46.patch
+nov4l1.patch)
 md5sums=('122c9ac793a46854ef2819fedbbd6b1b'
- '461a8b1b0f2264521e13d9ae051d13be')
+ '461a8b1b0f2264521e13d9ae051d13be'
+ 'b5fb8d6786578ae7bf272615279e8865'
+ '0164bdbd54ee28b1f6cba20fcfd53812')
 
 build() {
   cd $srcdir/$_realname-$pkgver
@@ -41,6 +45,14 @@
   # see https://bugs.archlinux.org/task/22841
   patch -Np0 -i $srcdir/ptrcvcapture.patch
 
+  # gcc 4.6 compatibility
+  # see https://bugs.archlinux.org/task/23741
+  patch -Np3 -i $srcdir/gcc46.patch
+
+  # distro kernel no longer has v4l1
+  # see https://code.ros.org/trac/opencv/ticket/862
+  patch -Np1 -i $srcdir/nov4l1.patch
+
   cmake . -DCMAKE_BUILD_TYPE=Release \
   -DCMAKE_INSTALL_PREFIX=/usr \
   -DCMAKE_SKIP_RPATH=ON \

Added: gcc46.patch
===
--- gcc46.patch (rev 0)
+++ gcc46.patch 2011-04-13 23:48:14 UTC (rev 119711)
@@ -0,0 +1,10 @@
+Index: /trunk/opencv/modules/core/include/opencv2/core/core.hpp
+===
+--- /trunk/opencv/modules/core/include/opencv2/core/core.hpp   (revision 4804)
 /trunk/opencv/modules/core/include/opencv2/core/core.hpp   (revision 4861)
+@@ -56,4 +56,5 @@
+ #include algorithm
+ #include cmath
++#include cstddef
+ #include complex
+ #include map

Added: nov4l1.patch
===
--- nov4l1.patch(rev 0)
+++ nov4l1.patch2011-04-13 23:48:14 UTC (rev 119711)
@@ -0,0 +1,25 @@
+diff -up OpenCV-2.2.0/modules/highgui/src/cap_v4l.cpp.nov4l1 
OpenCV-2.2.0/modules/highgui/src/cap_v4l.cpp
+--- OpenCV-2.2.0/modules/highgui/src/cap_v4l.cpp.nov4l12011-02-02 
16:55:22.844244001 +0100
 OpenCV-2.2.0/modules/highgui/src/cap_v4l.cpp   2011-02-02 
16:53:22.224244002 +0100
+@@ -214,7 +214,9 @@ make  enjoy!
+ #include sys/types.h
+ #include sys/mman.h
+ 
++#ifdef HAVE_CAMV4L
+ #include linux/videodev.h
++#endif
+ 
+ #include string.h
+ #include stdlib.h
+diff -up OpenCV-2.2.0/modules/highgui/src/cap.cpp.nov4l1 
OpenCV-2.2.0/modules/highgui/src/cap.cpp
+--- OpenCV-2.2.0/modules/highgui/src/cap.cpp.nov4l12011-02-04 
15:10:51.461243999 +0100
 OpenCV-2.2.0/modules/highgui/src/cap.cpp   2011-02-04 15:11:22.040244001 
+0100
+@@ -171,7 +171,7 @@ CV_IMPL CvCapture * cvCreateCameraCaptur
+ if (capture)
+ return capture;
+ #endif
+-#if defined (HAVE_CAMV4L) || defined (HAVE_CAMV4L2)
++#if defined (HAVE_CAMV4L)
+ capture = cvCreateCameraCapture_V4L (index);
+ if (capture)
+ return capture;



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

2011-04-13 Thread Ray Rashif
Date: Wednesday, April 13, 2011 @ 19:48:32
  Author: schiv
Revision: 119712

archrelease: copy trunk to testing-i686

Added:
  opencv/repos/testing-i686/



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

2011-04-13 Thread Ray Rashif
Date: Wednesday, April 13, 2011 @ 19:48:53
  Author: schiv
Revision: 119713

archrelease: copy trunk to testing-x86_64

Added:
  opencv/repos/testing-x86_64/



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 21:48:09
  Author: allan
Revision: 119714

upstream update

Modified:
  coreutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-13 23:48:53 UTC (rev 119713)
+++ PKGBUILD2011-04-14 01:48:09 UTC (rev 119714)
@@ -3,7 +3,7 @@
 # Contributor: judd jvi...@zeroflux.org
 
 pkgname=coreutils
-pkgver=8.10
+pkgver=8.11
 pkgrel=1
 pkgdesc=The basic file, shell and text manipulation utilities of the GNU 
operating system
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
coreutils-uname.patch
coreutils-pam.patch
su.pam)
-md5sums=('4bb81c051da6e5436fc1ad9a67ae44fe'
+md5sums=('b623ee9b1b768a14e40dfd35ff446f4c'
  'c4fcca138b6abf6d443d48a6f0cd8833'
  'aad79a2aa6d566c375d7bdd1b0767278'
  'fa85e5cce5d723275b14365ba71a8aad')
@@ -39,6 +39,10 @@
   --enable-no-install-program=groups,hostname,kill,uptime \
   --enable-pam
   make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
   make RUN_EXPENSIVE_TESTS=yes check
 }
 



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 21:52:52
  Author: allan
Revision: 119715

archrelease: copy trunk to testing-i686

Added:
  coreutils/repos/testing-i686/



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 21:53:16
  Author: allan
Revision: 119716

archrelease: copy trunk to testing-x86_64

Added:
  coreutils/repos/testing-x86_64/



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 22:01:29
  Author: allan
Revision: 119717

db-move: fakeroot removed by allan for move to [core] (i686)

Deleted:
  fakeroot/repos/core-i686/



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 22:01:30
  Author: allan
Revision: 119718

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

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



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 22:01:30
  Author: allan
Revision: 119719

db-move: fakeroot removed by allan for move to [core] (x86_64)

Deleted:
  fakeroot/repos/core-x86_64/



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

2011-04-13 Thread Allan McRae
Date: Wednesday, April 13, 2011 @ 22:01:31
  Author: allan
Revision: 119720

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

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



[arch-commits] Commit in nvidia-96xx/repos (extra-i686)

2011-04-13 Thread Pierre Schmitz
Date: Thursday, April 14, 2011 @ 01:48:53
  Author: pierre
Revision: 119721

db-remove: nvidia-96xx removed by pierre

Deleted:
  nvidia-96xx/repos/extra-i686/



[arch-commits] Commit in nvidia-96xx/repos (extra-x86_64)

2011-04-13 Thread Pierre Schmitz
Date: Thursday, April 14, 2011 @ 01:49:09
  Author: pierre
Revision: 119722

db-remove: nvidia-96xx removed by pierre

Deleted:
  nvidia-96xx/repos/extra-x86_64/



[arch-commits] Commit in nvidia-96xx-utils/repos (extra-x86_64)

2011-04-13 Thread Pierre Schmitz
Date: Thursday, April 14, 2011 @ 01:49:32
  Author: pierre
Revision: 119723

db-remove: nvidia-96xx-utils removed by pierre

Deleted:
  nvidia-96xx-utils/repos/extra-x86_64/



[arch-commits] Commit in nvidia-96xx-utils/repos (extra-i686)

2011-04-13 Thread Pierre Schmitz
Date: Thursday, April 14, 2011 @ 01:49:45
  Author: pierre
Revision: 119724

db-remove: nvidia-96xx-utils removed by pierre

Deleted:
  nvidia-96xx-utils/repos/extra-i686/