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

2010-05-29 Thread Ionut Biru
Date: Saturday, May 29, 2010 @ 05:04:55
  Author: ibiru
Revision: 81353

upgpkg: udisks 1.0.1-2
fix bash_completion location helper

Modified:
  udisks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-05-28 21:21:11 UTC (rev 81352)
+++ PKGBUILD2010-05-29 09:04:55 UTC (rev 81353)
@@ -3,7 +3,7 @@
 
 pkgname=udisks
 pkgver=1.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Disk Management Service
 arch=('i686' 'x86_64')
 url=http://www.freedesktop.org/wiki/Software/udisks;
@@ -18,9 +18,11 @@
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
   export CFLAGS=$CFLAGS -fno-strict-aliasing
-
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
   --libexecdir=/usr/lib/udisks --disable-static || return 1
+  #fix location for bash_completion helper
+  sed -i -e 's|profile.d|bash_completion.d|' tools/Makefile
+
   make || return 1
   make DESTDIR=${pkgdir} install || return 1
 }



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

2010-05-29 Thread Ionut Biru
Date: Saturday, May 29, 2010 @ 05:05:02
  Author: ibiru
Revision: 81354

archrelease: remove extra-i686

Deleted:
  udisks/repos/extra-i686/



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

2010-05-29 Thread Ionut Biru
Date: Saturday, May 29, 2010 @ 05:05:28
  Author: ibiru
Revision: 81355

archrelease: copy trunk to extra-i686

Added:
  udisks/repos/extra-i686/



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

2010-05-29 Thread Ionut Biru
Date: Saturday, May 29, 2010 @ 05:05:36
  Author: ibiru
Revision: 81356

archrelease: remove extra-x86_64

Deleted:
  udisks/repos/extra-x86_64/



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

2010-05-29 Thread Ionut Biru
Date: Saturday, May 29, 2010 @ 05:05:55
  Author: ibiru
Revision: 81357

archrelease: copy trunk to extra-x86_64

Added:
  udisks/repos/extra-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 06:23:19
  Author: allan
Revision: 81358

upgpkg: valgrind 3.5.0-5
fix excess output with glibc-2.12 (FS#19634), move the sed to use our CFLAGS to 
a place that actually works...

Added:
  valgrind/trunk/valgrind-3.5.0-elf-indirect-functions.patch
Modified:
  valgrind/trunk/PKGBUILD
  valgrind/trunk/glibc-2.12.patch

-+
 PKGBUILD|   20 
 glibc-2.12.patch|   87 
 valgrind-3.5.0-elf-indirect-functions.patch |  528 ++
 3 files changed, 556 insertions(+), 79 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-05-29 09:05:55 UTC (rev 81357)
+++ PKGBUILD2010-05-29 10:23:19 UTC (rev 81358)
@@ -4,7 +4,7 @@
 
 pkgname=valgrind
 pkgver=3.5.0
-pkgrel=4
+pkgrel=5
 pkgdesc=A tool to help find memory-management problems in programs
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -15,22 +15,26 @@
 source=(http://valgrind.org/downloads/${pkgname}-${pkgver}.tar.bz2
 glibc-patch-version.patch
 glibc-2.12.patch
-valgrind-3.5.0-stat_h.patch)
+valgrind-3.5.0-stat_h.patch
+valgrind-3.5.0-elf-indirect-functions.patch)
 md5sums=('f03522a4687cf76c676c9494fcc0a517'
  'b657f0ebdde3d9aefc9fd16f9e653702'
- 'feb92ea98059b4e57239220e4b695f9d'
- 'e435a0debedf207b279256eff50c68f6')
+ '0ac843aecfc539a53ae88c48b1a17047'
+ 'e435a0debedf207b279256eff50c68f6'
+ '10af3a098fa1f62441b7e52dbce38969')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+
+  # make sure our CFLAGS are respected
+  sed -i -e 's:^CFLAGS=-Wno-long-long:CFLAGS=$CFLAGS -Wno-long-long:' 
configure.in
+
   patch -Np1 -i ${srcdir}/glibc-patch-version.patch || return 1
-  patch -Np1 -i ${srcdir}/glibc-2.12.patch || return 1
+  patch -Np0 -i ${srcdir}/glibc-2.12.patch || return 1
   patch -Np1 -i ${srcdir}/valgrind-3.5.0-stat_h.patch || return 1
+  patch -Np0 -i ${srcdir}/valgrind-3.5.0-elf-indirect-functions.patch || 
return 1
   autoreconf
 
-  # make sure our CFLAGS are respected
-  sed -i -e 's:^CFLAGS=-Wno-long-long:CFLAGS=$CFLAGS -Wno-long-long:' 
configure.in
-
   if [ ${CARCH} = x86_64 ]; then
 ./configure --prefix=/usr --mandir=/usr/share/man --enable-only64bit || 
return 1
   else

Modified: glibc-2.12.patch
===
--- glibc-2.12.patch2010-05-29 09:05:55 UTC (rev 81357)
+++ glibc-2.12.patch2010-05-29 10:23:19 UTC (rev 81358)
@@ -1,72 +1,8 @@
-diff -Naur valgrind-3.5.0-old//config.h.in valgrind-3.5.0/config.h.in
 valgrind-3.5.0-old//config.h.in2009-08-19 23:39:05.0 +1000
-+++ valgrind-3.5.0/config.h.in 2010-05-22 19:55:31.065364428 +1000
-@@ -15,6 +15,9 @@
- /* Define to 1 if you're using glibc 2.10.x */
- #undef GLIBC_2_10
- 
-+/* Define to 1 if you're using glibc 2.12.x */
-+#undef GLIBC_2_12
-+
- /* Define to 1 if you're using glibc 2.2.x */
- #undef GLIBC_2_2
- 
-diff -Naur valgrind-3.5.0-old//configure valgrind-3.5.0/configure
 valgrind-3.5.0-old//configure  2009-08-19 23:44:07.0 +1000
-+++ valgrind-3.5.0/configure   2010-05-22 20:01:04.822065382 +1000
-@@ -5025,6 +5025,29 @@
- cat conftest.$ac_ext _ACEOF
- /* end confdefs.h.  */
- 
-+#include features.h
-+#ifdef __GNU_LIBRARY__
-+ #if (__GLIBC__ == 2  __GLIBC_MINOR__ == 12)
-+  GLIBC_212
-+ #endif
-+#endif
-+
-+_ACEOF
-+if (eval $ac_cpp conftest.$ac_ext) 25 |
-+  $EGREP GLIBC_212 /dev/null 21; then
-+  GLIBC_VERSION=2.12
-+fi
-+rm -f conftest*
-+
-+
-+cat conftest.$ac_ext _ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h conftest.$ac_ext
-+cat conftest.$ac_ext _ACEOF
-+/* end confdefs.h.  */
-+
-+
- #include standards.h
- #if defined(_AIXVERSION_510) || defined(_AIXVERSION_520) || 
defined(_AIXVERSION_530)
-   AIX5_LIBC
-@@ -5171,6 +5194,18 @@
- _ACEOF
- 
-   DEFAULT_SUPP=glibc-2.X.supp ${DEFAULT_SUPP}
-+  DEFAULT_SUPP=glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}
-+  DEFAULT_SUPP=glibc-2.X-drd.supp ${DEFAULT_SUPP}
-+  ;;
-+ 2.12)
-+  echo $as_me:$LINENO: result: 2.12 family 5
-+echo ${ECHO_T}2.12 family 6
-+
-+cat confdefs.h \_ACEOF
-+#define GLIBC_2_12 1
-+_ACEOF
-+
-+  DEFAULT_SUPP=glibc-2.X.supp ${DEFAULT_SUPP}
-   DEFAULT_SUPP=glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}
-   DEFAULT_SUPP=glibc-2.X-drd.supp ${DEFAULT_SUPP}
-   ;;
-diff -Naur valgrind-3.5.0-old//configure.in valgrind-3.5.0/configure.in
 valgrind-3.5.0-old//configure.in   2009-08-19 23:37:48.0 +1000
-+++ valgrind-3.5.0/configure.in2010-05-22 19:54:43.788423252 +1000
-@@ -656,6 +656,16 @@
+Index: configure.in
+===
+--- configure.in   (revision 11128)
 configure.in   (revision 11129)
+@@ -684,6 +684,16 @@
  ],
  GLIBC_VERSION=2.10)
  
@@ -83,11 +19,11 @@
  

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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 06:24:11
  Author: allan
Revision: 81359

archrelease: remove testing-i686

Deleted:
  valgrind/repos/testing-i686/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 06:24:43
  Author: allan
Revision: 81360

archrelease: copy trunk to testing-i686

Added:
  valgrind/repos/testing-i686/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 06:25:37
  Author: allan
Revision: 81361

archrelease: remove testing-x86_64

Deleted:
  valgrind/repos/testing-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 06:26:08
  Author: allan
Revision: 81362

archrelease: copy trunk to testing-x86_64

Added:
  valgrind/repos/testing-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 06:42:22
  Author: allan
Revision: 81363

db-move: shadow removed by allan for move to core

Deleted:
  shadow/repos/core-i686/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 06:42:22
  Author: allan
Revision: 81364

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

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



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 06:42:29
  Author: allan
Revision: 81365

db-move: shadow removed by allan for move to core

Deleted:
  shadow/repos/core-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 06:42:30
  Author: allan
Revision: 81366

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

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



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

2010-05-29 Thread Jan de Groot
Date: Saturday, May 29, 2010 @ 07:34:44
  Author: jgc
Revision: 81367

Add lvm2 to depends. Not rebuilding now, lvm2 is a core package

Modified:
  udisks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-05-29 10:42:30 UTC (rev 81366)
+++ PKGBUILD2010-05-29 11:34:44 UTC (rev 81367)
@@ -8,7 +8,7 @@
 arch=('i686' 'x86_64')
 url=http://www.freedesktop.org/wiki/Software/udisks;
 license=('GPL')
-depends=('udev=151' 'sg3_utils=1.28' 'glib2=2.24.0' 'dbus-glib=0.82' 
'polkit=0.96' 'parted=2.2' 'device-mapper=2.02.60' 'libatasmart=0.17' 
'lsof')
+depends=('udev=151' 'sg3_utils=1.28' 'glib2=2.24.0' 'dbus-glib=0.82' 
'polkit=0.96' 'parted=2.2' 'device-mapper=2.02.60' 'libatasmart=0.17' 
'lsof' 'lvm2')
 options=(!libtool)
 makedepends=('intltool')
 replaces=('devicekit-disks')



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

2010-05-29 Thread Giovanni Scafora
Date: Saturday, May 29, 2010 @ 08:13:22
  Author: giovanni
Revision: 81368

upgpkg: whois 5.0.5-1
upstream release

Modified:
  whois/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-05-29 11:34:44 UTC (rev 81367)
+++ PKGBUILD2010-05-29 12:13:22 UTC (rev 81368)
@@ -1,9 +1,9 @@
-# $Id$
+# $
 # Maintainer: Giovanni Scafora giova...@archlinux.org
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=whois
-pkgver=5.0.4
+pkgver=5.0.5
 pkgrel=1
 pkgdesc=The whois client by Marco d'Itri
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('libidn')
 makedepends=('perl')
 
source=(http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.gz)
-md5sums=('87319ca1e5eeae0631fc3ca249b43671')
+md5sums=('0a045c041a58ca8e8449c9f96fba47e0')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2010-05-29 Thread Giovanni Scafora
Date: Saturday, May 29, 2010 @ 08:13:30
  Author: giovanni
Revision: 81369

archrelease: remove extra-i686

Deleted:
  whois/repos/extra-i686/



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

2010-05-29 Thread Giovanni Scafora
Date: Saturday, May 29, 2010 @ 08:13:49
  Author: giovanni
Revision: 81370

archrelease: copy trunk to extra-i686

Added:
  whois/repos/extra-i686/



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

2010-05-29 Thread Giovanni Scafora
Date: Saturday, May 29, 2010 @ 08:13:57
  Author: giovanni
Revision: 81371

archrelease: remove extra-x86_64

Deleted:
  whois/repos/extra-x86_64/



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

2010-05-29 Thread Giovanni Scafora
Date: Saturday, May 29, 2010 @ 08:14:16
  Author: giovanni
Revision: 81372

archrelease: copy trunk to extra-x86_64

Added:
  whois/repos/extra-x86_64/



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

2010-05-29 Thread Giovanni Scafora
Date: Saturday, May 29, 2010 @ 08:30:14
  Author: giovanni
Revision: 81373

upgpkg: link-grammar 4.6.7-1
upstream release

Modified:
  link-grammar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-05-29 12:14:16 UTC (rev 81372)
+++ PKGBUILD2010-05-29 12:30:14 UTC (rev 81373)
@@ -3,16 +3,16 @@
 # Contributor: Jan de Groot j...@archlinux.org
 
 pkgname=link-grammar
-pkgver=4.2.4
-pkgrel=2
+pkgver=4.6.7
+pkgrel=1
 pkgdesc=A Grammar Checking library
 arch=('i686' 'x86_64')
-url=http://bobo.link.cs.cmu.edu/link/;
+url=http://www.abisource.com/downloads/link-grammar/;
 license=('BSD')
 depends=('glibc')
 options=('!libtool' '!makeflags')
 
source=(http://www.abisource.com/downloads/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('56ed2a55cc6d2c8ec013b75bd0bcc01b')
+md5sums=('63f491c66e85b751b83ae6d20831ff00')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2010-05-29 Thread Giovanni Scafora
Date: Saturday, May 29, 2010 @ 08:30:26
  Author: giovanni
Revision: 81374

archrelease: remove extra-i686

Deleted:
  link-grammar/repos/extra-i686/



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

2010-05-29 Thread Giovanni Scafora
Date: Saturday, May 29, 2010 @ 08:30:46
  Author: giovanni
Revision: 81375

archrelease: copy trunk to extra-i686

Added:
  link-grammar/repos/extra-i686/



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

2010-05-29 Thread Giovanni Scafora
Date: Saturday, May 29, 2010 @ 08:30:59
  Author: giovanni
Revision: 81376

archrelease: remove extra-x86_64

Deleted:
  link-grammar/repos/extra-x86_64/



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

2010-05-29 Thread Giovanni Scafora
Date: Saturday, May 29, 2010 @ 08:31:17
  Author: giovanni
Revision: 81377

archrelease: copy trunk to extra-x86_64

Added:
  link-grammar/repos/extra-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 09:34:40
  Author: allan
Revision: 81378

upgpkg: glibc 2.12-2
disable multi-arch, fixes issues on x86_64

Modified:
  glibc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-05-29 12:31:17 UTC (rev 81377)
+++ PKGBUILD2010-05-29 13:34:40 UTC (rev 81378)
@@ -7,7 +7,7 @@
 
 pkgname=glibc
 pkgver=2.12
-pkgrel=1
+pkgrel=2
 _glibcdate=20100521
 pkgdesc=GNU C Library
 arch=('i686' 'x86_64')
@@ -74,7 +74,7 @@
   --enable-kernel=2.6.18 --disable-profile \
   --with-headers=/usr/include --libexecdir=/usr/lib \
   --enable-bind-now --with-tls --with-__thread \
-  --libdir=/usr/lib --without-gd
+  --libdir=/usr/lib --without-gd --disable-multi-arch
 
   make || return 1
 }



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 09:36:08
  Author: allan
Revision: 81379

archrelease: remove testing-i686

Deleted:
  glibc/repos/testing-i686/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 09:36:49
  Author: allan
Revision: 81380

archrelease: copy trunk to testing-i686

Added:
  glibc/repos/testing-i686/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 09:38:24
  Author: allan
Revision: 81381

archrelease: remove testing-x86_64

Deleted:
  glibc/repos/testing-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 09:38:56
  Author: allan
Revision: 81382

archrelease: copy trunk to testing-x86_64

Added:
  glibc/repos/testing-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 09:57:56
  Author: allan
Revision: 81383

upgpkg: pkg-config 0.25-1
upstream update

Modified:
  pkg-config/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-05-29 13:38:56 UTC (rev 81382)
+++ PKGBUILD2010-05-29 13:57:56 UTC (rev 81383)
@@ -3,8 +3,8 @@
 # Committer: Judd Vinet jvi...@zeroflux.org
 
 pkgname=pkg-config
-pkgver=0.24
-pkgrel=2
+pkgver=0.25
+pkgrel=1
 pkgdesc=A system for managing library compile/link flags
 arch=('i686' 'x86_64')
 url=http://pkgconfig.freedesktop.org/wiki/;
@@ -15,7 +15,7 @@
 conflicts=('pkgconfig')
 replaces=('pkgconfig')
 source=(http://pkgconfig.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz)
-md5sums=('597a98e254943995f2ad5f3f1dac0e4a')
+md5sums=('a3270bab3f4b69b7dc6dbdacbcae9745')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 09:58:09
  Author: allan
Revision: 81384

archrelease: remove testing-i686

Deleted:
  pkg-config/repos/testing-i686/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 09:58:40
  Author: allan
Revision: 81385

archrelease: copy trunk to testing-i686

Added:
  pkg-config/repos/testing-i686/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 09:58:53
  Author: allan
Revision: 81386

archrelease: remove testing-x86_64

Deleted:
  pkg-config/repos/testing-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 09:59:23
  Author: allan
Revision: 81387

archrelease: copy trunk to testing-x86_64

Added:
  pkg-config/repos/testing-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 10:13:27
  Author: allan
Revision: 81388

upgpkg: tar 1.23-3
actually apply patch...

Modified:
  tar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-05-29 13:59:23 UTC (rev 81387)
+++ PKGBUILD2010-05-29 14:13:27 UTC (rev 81388)
@@ -4,7 +4,7 @@
 
 pkgname=tar
 pkgver=1.23
-pkgrel=2
+pkgrel=3
 pkgdesc=Utility used to store, backup, and transport files
 arch=('i686' 'x86_64')
 url=http://www.gnu.org/software/tar/tar.html;
@@ -22,6 +22,7 @@
 
 build() {
   cd ${srcdir}/$pkgname-$pkgver
+  patch -Np1 -i $srcdir/tar-1.22-fortifysourcessigabrt.patch
   ./configure --prefix=/usr --libexecdir=/usr/lib/tar --bindir=/bin
   make || return 1
 }



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 10:19:17
  Author: allan
Revision: 81389

archrelease: copy trunk to testing-i686

Added:
  tar/repos/testing-i686/



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

2010-05-29 Thread Allan McRae
Date: Saturday, May 29, 2010 @ 10:20:08
  Author: allan
Revision: 81390

archrelease: copy trunk to testing-x86_64

Added:
  tar/repos/testing-x86_64/



[arch-commits] Commit in chromium/trunk (PKGBUILD drop_sse2.patch)

2010-05-29 Thread Daniel Griffiths
Date: Saturday, May 29, 2010 @ 22:30:49
  Author: dgriffiths
Revision: 81391

Modified:
  chromium/trunk/PKGBUILD
  chromium/trunk/drop_sse2.patch

-+
 PKGBUILD|  142 ++
 drop_sse2.patch |6 +-
 2 files changed, 83 insertions(+), 65 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-05-29 14:20:08 UTC (rev 81390)
+++ PKGBUILD2010-05-30 02:30:49 UTC (rev 81391)
@@ -1,9 +1,10 @@
 # $Id$
 # Contributor: Pierre Schmitz pie...@archlinux.de
+# Contributor: Jan heftig Steffens jan.steff...@gmail.com
 # Maintainer: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=chromium
-pkgver=5.0.342.9
+pkgver=5.0.396.0
 pkgrel=1
 pkgdesc='The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser.'
 arch=('i686' 'x86_64')
@@ -14,82 +15,99 @@
 provides=('chromium-browser')
 conflicts=('chromium-browser')
 install='chromium.install'
-source=(ftp://ftp.archlinux.org/other/chromium/chromium-${pkgver}.tar.xz;
+source=(http://build.chromium.org/buildbot/official/chromium-${pkgver}.tar.bz2;
 'chromium.desktop' 'chromium.sh'
 'drop_sse2.patch' 'ffmpeg_branding_mime.patch' 'libpng-1.4.patch')
-md5sums=('cb96a81e31d38fad1d220216e71ffbbf'
+md5sums=('1ca0f15f3bbf39bc298228d9abfcbe1b'
  '897de25e9c25a01f8b1b67abe554a6b7'
- '93cd6f5f53b15546dc9d3de49118534c'
- 'dfbc18bb26dffa2dc6d4d3a857730902'
+ '096a46ef386817988250d2d7bddd1b34'
+ '2003a31e2968768fadcea368e7b8b17a'
  'ae9e26e6c2d164e6af0e513dae2273a3'
  'bb75bfdfe85db26639abbea9054b85f9')
 
 build() {
-   cd ${srcdir}/chromium-${pkgver}
+  cd ${srcdir}/chromium-${pkgver}
 
-   export GYP_GENERATORS='make'
-   export BUILDTYPE='Release'
-   # we need to disable system_ssl until next protocol negotiation 
support
-   # is available in our nss package
-   # see https://bugzilla.mozilla.org/show_bug.cgi?id=547312
-   export GYP_DEFINES=gcc_version=44 \
-   no_strict_aliasing=1 \
-   linux_sandbox_path=/usr/lib/chromium/chromium-sandbox \
-   linux_strip_binary=1 \
-   release_extra_cflags='${CFLAGS}' \
-   ffmpeg_branding=Chrome \
-   use_system_libjpeg=1 \
-   use_system_libxslt=0 \
-   use_system_libxml=0 \
-   use_system_bzip2=1 \
-   use_system_zlib=1 \
-   use_system_libpng=1 \
-   use_system_ffmpeg=0 \
-   use_system_yasm=1 \
-   use_system_libevent=1 \
-   use_system_ssl=0
+### Patch
 
-   patch -p0 -i ${srcdir}/ffmpeg_branding_mime.patch || return 1
-   # i686 does not include SSE2
-   # see http://code.google.com/p/chromium/issues/detail?id=9007
-   patch -p0 -i ${srcdir}/drop_sse2.patch || return 1
-   # see http://codereview.chromium.org/569009/show
-   patch -p0 -i ${srcdir}/libpng-1.4.patch || return 1
+  patch -p1 -i ${srcdir}/ffmpeg_branding_mime.patch || return 1
 
-   export PATH=./depot_tools/:$PATH
-   gclient.py runhooks --force || return 1
+  # i686 does not include SSE2
+  # see http://code.google.com/p/chromium/issues/detail?id=9007
+  # patch -p1 -i ${srcdir}/drop_sse2.patch || return 1
 
-   cd src
-   make chrome chrome_sandbox || return 1
+  # see http://codereview.chromium.org/569009/show
+  # patch -p1 -i ${srcdir}/libpng-1.4.patch || return 1
+
+### Configure
+
+  # we need to disable system_ssl until next protocol negotiation support
+  # is available in our nss package
+  # see https://bugzilla.mozilla.org/show_bug.cgi?id=547312
+
+  build/gyp_chromium -f make build/all.gyp --depth=. \
+-Dgcc_version=45 \
+-Dno_strict_aliasing=1 \
+-Dwerror= \
+-Dlinux_sandbox_path=/usr/lib/chromium/chromium-sandbox \
+-Dlinux_strip_binary=1 \
+-Drelease_extra_cflags=${CFLAGS} \
+-Dffmpeg_branding=Chrome \
+-Duse_system_libjpeg=1 \
+-Duse_system_libxslt=0 \
+-Duse_system_libxml=0 \
+-Duse_system_bzip2=1 \
+-Duse_system_zlib=1 \
+-Duse_system_libpng=1 \
+-Duse_system_ffmpeg=0 \
+-Duse_system_yasm=1 \
+-Duse_system_libevent=1 \
+-Duse_system_ssl=0 \
+-Ddisable_sse2=1
+
+### Build
+
+  make chrome chrome_sandbox BUILDTYPE=Release || return 1
 }
 
 package() {
-   cd ${srcdir}/chromium-${pkgver}
+  cd ${srcdir}/chromium-${pkgver}
 
-   install -m 0755 -D src/out/Release/chrome \
-   ${pkgdir}/usr/lib/chromium/chromium
-   install -m 4555 -o root -g root -D src/out/Release/chrome_sandbox \
-   ${pkgdir}/usr/lib/chromium/chromium-sandbox
-   install -m 0644 -D src/out/Release/chrome.pak \
-   ${pkgdir}/usr/lib/chromium/chrome.pak
-   install -m 0644 -D src/out/Release/libffmpegsumo.so \
-   

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

2010-05-29 Thread Daniel Griffiths
Date: Saturday, May 29, 2010 @ 22:31:06
  Author: dgriffiths
Revision: 81392

archrelease: remove extra-i686

Modified:
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/drop_sse2.patch
Deleted:
  chromium/repos/extra-i686/

-+
 PKGBUILD|  142 ++
 drop_sse2.patch |6 +-
 2 files changed, 83 insertions(+), 65 deletions(-)

Modified: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2010-05-30 02:30:49 UTC (rev 81391)
+++ extra-x86_64/PKGBUILD   2010-05-30 02:31:06 UTC (rev 81392)
@@ -1,9 +1,10 @@
 # $Id$
 # Contributor: Pierre Schmitz pie...@archlinux.de
+# Contributor: Jan heftig Steffens jan.steff...@gmail.com
 # Maintainer: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=chromium
-pkgver=5.0.342.9
+pkgver=5.0.396.0
 pkgrel=1
 pkgdesc='The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser.'
 arch=('i686' 'x86_64')
@@ -14,82 +15,99 @@
 provides=('chromium-browser')
 conflicts=('chromium-browser')
 install='chromium.install'
-source=(ftp://ftp.archlinux.org/other/chromium/chromium-${pkgver}.tar.xz;
+source=(http://build.chromium.org/buildbot/official/chromium-${pkgver}.tar.bz2;
 'chromium.desktop' 'chromium.sh'
 'drop_sse2.patch' 'ffmpeg_branding_mime.patch' 'libpng-1.4.patch')
-md5sums=('cb96a81e31d38fad1d220216e71ffbbf'
+md5sums=('1ca0f15f3bbf39bc298228d9abfcbe1b'
  '897de25e9c25a01f8b1b67abe554a6b7'
- '93cd6f5f53b15546dc9d3de49118534c'
- 'dfbc18bb26dffa2dc6d4d3a857730902'
+ '096a46ef386817988250d2d7bddd1b34'
+ '2003a31e2968768fadcea368e7b8b17a'
  'ae9e26e6c2d164e6af0e513dae2273a3'
  'bb75bfdfe85db26639abbea9054b85f9')
 
 build() {
-   cd ${srcdir}/chromium-${pkgver}
+  cd ${srcdir}/chromium-${pkgver}
 
-   export GYP_GENERATORS='make'
-   export BUILDTYPE='Release'
-   # we need to disable system_ssl until next protocol negotiation 
support
-   # is available in our nss package
-   # see https://bugzilla.mozilla.org/show_bug.cgi?id=547312
-   export GYP_DEFINES=gcc_version=44 \
-   no_strict_aliasing=1 \
-   linux_sandbox_path=/usr/lib/chromium/chromium-sandbox \
-   linux_strip_binary=1 \
-   release_extra_cflags='${CFLAGS}' \
-   ffmpeg_branding=Chrome \
-   use_system_libjpeg=1 \
-   use_system_libxslt=0 \
-   use_system_libxml=0 \
-   use_system_bzip2=1 \
-   use_system_zlib=1 \
-   use_system_libpng=1 \
-   use_system_ffmpeg=0 \
-   use_system_yasm=1 \
-   use_system_libevent=1 \
-   use_system_ssl=0
+### Patch
 
-   patch -p0 -i ${srcdir}/ffmpeg_branding_mime.patch || return 1
-   # i686 does not include SSE2
-   # see http://code.google.com/p/chromium/issues/detail?id=9007
-   patch -p0 -i ${srcdir}/drop_sse2.patch || return 1
-   # see http://codereview.chromium.org/569009/show
-   patch -p0 -i ${srcdir}/libpng-1.4.patch || return 1
+  patch -p1 -i ${srcdir}/ffmpeg_branding_mime.patch || return 1
 
-   export PATH=./depot_tools/:$PATH
-   gclient.py runhooks --force || return 1
+  # i686 does not include SSE2
+  # see http://code.google.com/p/chromium/issues/detail?id=9007
+  # patch -p1 -i ${srcdir}/drop_sse2.patch || return 1
 
-   cd src
-   make chrome chrome_sandbox || return 1
+  # see http://codereview.chromium.org/569009/show
+  # patch -p1 -i ${srcdir}/libpng-1.4.patch || return 1
+
+### Configure
+
+  # we need to disable system_ssl until next protocol negotiation support
+  # is available in our nss package
+  # see https://bugzilla.mozilla.org/show_bug.cgi?id=547312
+
+  build/gyp_chromium -f make build/all.gyp --depth=. \
+-Dgcc_version=45 \
+-Dno_strict_aliasing=1 \
+-Dwerror= \
+-Dlinux_sandbox_path=/usr/lib/chromium/chromium-sandbox \
+-Dlinux_strip_binary=1 \
+-Drelease_extra_cflags=${CFLAGS} \
+-Dffmpeg_branding=Chrome \
+-Duse_system_libjpeg=1 \
+-Duse_system_libxslt=0 \
+-Duse_system_libxml=0 \
+-Duse_system_bzip2=1 \
+-Duse_system_zlib=1 \
+-Duse_system_libpng=1 \
+-Duse_system_ffmpeg=0 \
+-Duse_system_yasm=1 \
+-Duse_system_libevent=1 \
+-Duse_system_ssl=0 \
+-Ddisable_sse2=1
+
+### Build
+
+  make chrome chrome_sandbox BUILDTYPE=Release || return 1
 }
 
 package() {
-   cd ${srcdir}/chromium-${pkgver}
+  cd ${srcdir}/chromium-${pkgver}
 
-   install -m 0755 -D src/out/Release/chrome \
-   ${pkgdir}/usr/lib/chromium/chromium
-   install -m 4555 -o root -g root -D src/out/Release/chrome_sandbox \
-   ${pkgdir}/usr/lib/chromium/chromium-sandbox
-   install -m 0644 -D src/out/Release/chrome.pak \
-   

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

2010-05-29 Thread Eric Bélanger
Date: Sunday, May 30, 2010 @ 00:47:17
  Author: eric
Revision: 81394

upgpkg: freeciv 2.2.1-1
Upstream update

Modified:
  freeciv/trunk/ChangeLog
  freeciv/trunk/PKGBUILD

---+
 ChangeLog |5 +
 PKGBUILD  |   14 +-
 2 files changed, 14 insertions(+), 5 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2010-05-30 02:31:13 UTC (rev 81393)
+++ ChangeLog   2010-05-30 04:47:17 UTC (rev 81394)
@@ -1,3 +1,8 @@
+2010-05-29  Eric Belanger  e...@archlinux.org
+
+   * freeciv 2.2.1-1
+   * Upstream update
+
 2010-02-22  Eric Belanger  e...@archlinux.org
 
* freeciv 2.2.0-2

Modified: PKGBUILD
===
--- PKGBUILD2010-05-30 02:31:13 UTC (rev 81393)
+++ PKGBUILD2010-05-30 04:47:17 UTC (rev 81394)
@@ -4,22 +4,26 @@
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=freeciv
-pkgver=2.2.0
-pkgrel=2
+pkgver=2.2.1
+pkgrel=1
 pkgdesc=A multiuser clone of the famous Microprose game of Civilization
 arch=('i686' 'x86_64')
 url=http://www.freeciv.org/;
 license=('GPL')
-depends=('gtk2' 'sdl_mixer' 'readline')
+depends=('gtk2' 'sdl_mixer' 'readline' 'bzip2')
 options=('!libtool')
 install=freeciv.install
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('49c08904d2402fe46248641a8bbd9ef3')
-sha1sums=('9cdb5630159ec3c4a0def8039b02c8b5ed46d413')
+md5sums=('b43269e38ecd32cb09850778befc72b3')
+sha1sums=('f9d141a04e447a57f4fc001dbd789d92717735e4')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
   ./configure --prefix=/usr --mandir=/usr/share/man --enable-client=gtk 
--enable-shared || return 1
   make || return 1
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install || return 1
 }



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

2010-05-29 Thread Eric Bélanger
Date: Sunday, May 30, 2010 @ 00:49:36
  Author: eric
Revision: 81395

archrelease: remove extra-i686

Deleted:
  freeciv/repos/extra-i686/



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

2010-05-29 Thread Eric Bélanger
Date: Sunday, May 30, 2010 @ 00:49:45
  Author: eric
Revision: 81396

archrelease: copy trunk to extra-i686

Added:
  freeciv/repos/extra-i686/



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

2010-05-29 Thread Eric Bélanger
Date: Sunday, May 30, 2010 @ 00:51:50
  Author: eric
Revision: 81397

archrelease: remove extra-x86_64

Deleted:
  freeciv/repos/extra-x86_64/



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

2010-05-29 Thread Eric Bélanger
Date: Sunday, May 30, 2010 @ 00:51:59
  Author: eric
Revision: 81398

archrelease: copy trunk to extra-x86_64

Added:
  freeciv/repos/extra-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:01:13
  Author: allan
Revision: 81399

db-move: tar removed by allan for move to core

Deleted:
  tar/repos/core-i686/



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:01:13
  Author: allan
Revision: 81400

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

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



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:01:20
  Author: allan
Revision: 81401

db-move: tar removed by allan for move to core

Deleted:
  tar/repos/core-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:01:21
  Author: allan
Revision: 81402

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

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



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:02:35
  Author: allan
Revision: 81403

db-move: gcc removed by allan for move to core

Deleted:
  gcc/repos/core-i686/



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:02:35
  Author: allan
Revision: 81404

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

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



[arch-commits] Commit in linux-api-headers/repos (core-i686)

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:02:41
  Author: allan
Revision: 81405

db-move: linux-api-headers removed by allan for move to core

Deleted:
  linux-api-headers/repos/core-i686/



[arch-commits] Commit in linux-api-headers/repos (core-i686 testing-i686)

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:02:42
  Author: allan
Revision: 81406

db-move: moved linux-api-headers from [testing] to [core] (i686)

Added:
  linux-api-headers/repos/core-i686/
Deleted:
  linux-api-headers/repos/testing-i686/



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:02:45
  Author: allan
Revision: 81407

db-move: binutils removed by allan for move to core

Deleted:
  binutils/repos/core-i686/



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:02:46
  Author: allan
Revision: 81408

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

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



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:02:48
  Author: allan
Revision: 81409

db-move: glibc removed by allan for move to core

Deleted:
  glibc/repos/core-i686/



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:02:49
  Author: allan
Revision: 81410

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

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



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:02:51
  Author: allan
Revision: 81411

db-move: valgrind removed by allan for move to extra

Deleted:
  valgrind/repos/extra-i686/



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:02:52
  Author: allan
Revision: 81412

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

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



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:03:08
  Author: allan
Revision: 81413

db-move: gcc removed by allan for move to core

Deleted:
  gcc/repos/core-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:03:09
  Author: allan
Revision: 81414

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

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



[arch-commits] Commit in linux-api-headers/repos (core-x86_64)

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:03:15
  Author: allan
Revision: 81415

db-move: linux-api-headers removed by allan for move to core

Deleted:
  linux-api-headers/repos/core-x86_64/



[arch-commits] Commit in linux-api-headers/repos (core-x86_64 testing-x86_64)

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:03:16
  Author: allan
Revision: 81416

db-move: moved linux-api-headers from [testing] to [core] (x86_64)

Added:
  linux-api-headers/repos/core-x86_64/
Deleted:
  linux-api-headers/repos/testing-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:03:18
  Author: allan
Revision: 81417

db-move: binutils removed by allan for move to core

Deleted:
  binutils/repos/core-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:03:19
  Author: allan
Revision: 81418

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

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



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:03:24
  Author: allan
Revision: 81419

db-move: glibc removed by allan for move to core

Deleted:
  glibc/repos/core-x86_64/



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:03:26
  Author: allan
Revision: 81420

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

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



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

2010-05-29 Thread Allan McRae
Date: Sunday, May 30, 2010 @ 01:03:29
  Author: allan
Revision: 81421

db-move: valgrind removed by allan for move to extra

Deleted:
  valgrind/repos/extra-x86_64/