[arch-commits] Commit in gen-init-cpio/trunk (PKGBUILD gen_init_cpio.c)

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 04:37:46
  Author: allan
Revision: 102143

upgpkg: gen-init-cpio 2.6.36-1
bump to latest release, fix license (FS#20062)

Modified:
  gen-init-cpio/trunk/PKGBUILD
  gen-init-cpio/trunk/gen_init_cpio.c

-+
 PKGBUILD|   19 ---
 gen_init_cpio.c |5 -
 2 files changed, 16 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 07:48:07 UTC (rev 102142)
+++ PKGBUILD2010-12-06 09:37:46 UTC (rev 102143)
@@ -2,20 +2,25 @@
 # Maintainer : Tobias Powalowski tp...@archlinux.org
 
 pkgname=gen-init-cpio
-pkgver=2.6.32
+pkgver=2.6.36
 pkgrel=1
 pkgdesc=Program to compress initramfs images
-arch=(i686 x86_64)
-license=('custom:none')
+arch=('i686' 'x86_64')
+license=('GPL2')
 url=http://www.kernel.org/;
 depends=('glibc')
-source=(Makefile gen_init_cpio.c)
+source=(Makefile
+gen_init_cpio.c)
 md5sums=('8e3a142a522d65121c3bead41013be98'
- '1e930eb3d6255aca3b91a73e31bf9da6')
+ 'c0c0844d9e2e2c1bfb948201dc7b4c97')
 
 build()
 {
-  cd $srcdir/
-  make || return 1
+  cd $srcdir
+  make
+}
+
+package() {
+  cd $srcdir
   make DESTDIR=$pkgdir install
 }

Modified: gen_init_cpio.c
===
--- gen_init_cpio.c 2010-12-06 07:48:07 UTC (rev 102142)
+++ gen_init_cpio.c 2010-12-06 09:37:46 UTC (rev 102143)
@@ -354,7 +354,10 @@
push_pad();
 
if (size) {
-   fwrite(filebuf, size, 1, stdout);
+   if (fwrite(filebuf, size, 1, stdout) != 1) {
+   fprintf(stderr, writing filebuf failed\n);
+   goto error;
+   }
offset += size;
push_pad();
}



[arch-commits] Commit in gen-init-cpio/repos (testing-i686)

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 04:38:51
  Author: allan
Revision: 102144

archrelease: copy trunk to testing-i686

Added:
  gen-init-cpio/repos/testing-i686/



[arch-commits] Commit in gen-init-cpio/repos (testing-x86_64)

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 04:39:53
  Author: allan
Revision: 102145

archrelease: copy trunk to testing-x86_64

Added:
  gen-init-cpio/repos/testing-x86_64/



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 04:49:56
  Author: allan
Revision: 102146

upgpkg: libgssglue 0.1-3
rebuild of old package, tidy up PKGBUILD

Modified:
  libgssglue/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 09:39:53 UTC (rev 102145)
+++ PKGBUILD2010-12-06 09:49:56 UTC (rev 102146)
@@ -3,8 +3,8 @@
 
 pkgname=libgssglue
 pkgver=0.1
-pkgrel=2
-pkgdesc=exports a gssapi interface which calls other random gssapi libraries
+pkgrel=3
+pkgdesc=Exports a gssapi interface which calls other random gssapi libraries
 arch=('i686' 'x86_64')
 url=http://www.citi.umich.edu/projects/nfsv4/linux/;
 license=('BSD')
@@ -18,12 +18,17 @@
  '234b9cca75a33af98eda3f1683756879')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $srcdir/$pkgname-$pkgver
   ./configure --prefix=/usr 
-  make || return 1
-  make DESTDIR=$pkgdir/ install || return 1
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+
   # Configuration
-  install -D -m 644 ../gssapi_mech.conf $pkgdir/etc/gssapi_mech.conf
+  install -Dm644 $srcdir/gssapi_mech.conf $pkgdir/etc/gssapi_mech.conf
   # install license
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/libgssglue/COPYING
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/libgssglue/COPYING
 }



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 04:50:56
  Author: allan
Revision: 102147

archrelease: copy trunk to testing-i686

Added:
  libgssglue/repos/testing-i686/



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 04:52:06
  Author: allan
Revision: 102148

archrelease: copy trunk to testing-x86_64

Added:
  libgssglue/repos/testing-x86_64/



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 05:06:50
  Author: allan
Revision: 102149

upgpkg: gnutls 2.10.3-1
upstream update

Modified:
  gnutls/trunk/PKGBUILD
  gnutls/trunk/gnutls.install

+
 PKGBUILD   |   16 ++--
 gnutls.install |2 +-
 2 files changed, 11 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 09:52:06 UTC (rev 102148)
+++ PKGBUILD2010-12-06 10:06:50 UTC (rev 102149)
@@ -2,21 +2,25 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnutls
-pkgver=2.8.6
+pkgver=2.10.3
 pkgrel=1
 pkgdesc=A library which provides a secure layer over a reliable transport 
layer
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 license=('GPL3' 'LGPL')
 url=http://www.gnu.org/software/gnutls/;
 install=gnutls.install
 options=('libtool')
 depends=('gcc-libs=4.4.3' 'libtasn1=2.5' 'readline=6.0' 'zlib' 
'libgcrypt=1.4.5' 'texinfo')
 source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('eb0a6d7d3cb9ac684d971c14f9f6d3ba')
+md5sums=('8e8f024d5d3bd8e5298ae7ed33401f9a')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-zlib --disable-guile || return 1
-  make || return 1
-  make DESTDIR=${pkgdir} install || return 1
+  ./configure --prefix=/usr --with-zlib --disable-guile
+  make
 }
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Modified: gnutls.install
===
--- gnutls.install  2010-12-06 09:52:06 UTC (rev 102148)
+++ gnutls.install  2010-12-06 10:06:50 UTC (rev 102149)
@@ -1,4 +1,4 @@
-infodir=/usr/share/info
+infodir=usr/share/info
 filelist=(gnutls.info gnutls.info-1 gnutls.info-2 gnutls.info-3)
 
 post_install() {



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 05:08:17
  Author: allan
Revision: 102150

archrelease: copy trunk to testing-i686

Added:
  gnutls/repos/testing-i686/



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 05:09:46
  Author: allan
Revision: 102151

archrelease: copy trunk to testing-x86_64

Added:
  gnutls/repos/testing-x86_64/



Re: [arch-commits] Commit in icu/repos (testing-i686)

2010-12-06 Thread Andrea Scarpino
Hi  Andreas,
On 6 December 2010 08:35,  andy...@archlinux.org wrote:
 archrelease: copy trunk to testing-i686

 Added:
  icu/repos/testing-i686/
This should go in staging for the rebuilds, shouldn't it?

-- 
Andrea Scarpino
Arch Linux Developer


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

2010-12-06 Thread Pierre Schmitz
Date: Monday, December 6, 2010 @ 06:03:59
  Author: pierre
Revision: 102152

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

Added:
  icu/repos/staging-i686/
Deleted:
  icu/repos/testing-i686/



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

2010-12-06 Thread Pierre Schmitz
Date: Monday, December 6, 2010 @ 06:03:59
  Author: pierre
Revision: 102153

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

Added:
  icu/repos/staging-x86_64/
Deleted:
  icu/repos/testing-x86_64/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 06:49:04
  Author: ibiru
Revision: 102154

archrelease: remove extra-i686

Deleted:
  python-telepathy/repos/extra-i686/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 06:49:16
  Author: ibiru
Revision: 102155

archrelease: copy trunk to extra-i686

Added:
  python-telepathy/repos/extra-i686/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 06:49:22
  Author: ibiru
Revision: 102156

archrelease: remove extra-x86_64

Deleted:
  python-telepathy/repos/extra-x86_64/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 06:49:35
  Author: ibiru
Revision: 102157

archrelease: copy trunk to extra-x86_64

Added:
  python-telepathy/repos/extra-x86_64/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 06:49:54
  Author: ibiru
Revision: 102158

upgpkg: papyon 0.5.4-1
update to 0.5.4

Modified:
  papyon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 11:49:35 UTC (rev 102157)
+++ PKGBUILD2010-12-06 11:49:54 UTC (rev 102158)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=papyon
-pkgver=0.5.2
+pkgver=0.5.4
 pkgrel=1
 pkgdesc=papyon is the library behind the msn connection manager: 
telepathy-butterfly.
 arch=('any')
@@ -10,7 +10,7 @@
 license=(GPL)
 depends=('pygobject' 'pyopenssl' 'pycrypto')
 
source=(http://www.freedesktop.org/software/${pkgname}/releases/${pkgname}-${pkgver}.tar.gz)
-md5sums=('3e413828c6904dccfed3df34559aa29b')
+md5sums=('42005206dfdc01221da140e30687b0b9')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 06:50:01
  Author: ibiru
Revision: 102159

archrelease: remove extra-any

Deleted:
  papyon/repos/extra-any/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 06:50:49
  Author: ibiru
Revision: 102161

upgpkg: telepathy-butterfly 0.5.15-1
update to 0.5.15

Modified:
  telepathy-butterfly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 11:50:16 UTC (rev 102160)
+++ PKGBUILD2010-12-06 11:50:49 UTC (rev 102161)
@@ -2,17 +2,17 @@
 # Maintainer:  Ionut Biru ib...@archlinux.org
 # Contributor: Daniel Balieiro dan...@balieiro.com
 pkgname=telepathy-butterfly
-pkgver=0.5.14
-pkgrel=4
+pkgver=0.5.15
+pkgrel=1
 pkgdesc=A MSN connection manager for Telepathy
 arch=('i686' 'x86_64')
 url=http://telepathy.freedesktop.org;
 groups=('telepathy')
 license=('GPL')
-depends=('papyon=0.5.1' 'python-telepathy=0.15.17')
+depends=('papyon=0.5.4' 'python-telepathy=0.15.19')
 
source=(http://telepathy.freedesktop.org/releases/telepathy-butterfly/telepathy-butterfly-${pkgver}.tar.gz)
 install=telepathy-butterfly.install
-md5sums=('d7ef545a469a0b0fd87a0988ed7d9b13')
+md5sums=('4baa6337822f01d817c4b9d8fd406e82')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 06:51:09
  Author: ibiru
Revision: 102163

archrelease: copy trunk to extra-i686

Added:
  telepathy-butterfly/repos/extra-i686/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 06:51:14
  Author: ibiru
Revision: 102164

archrelease: remove extra-x86_64

Deleted:
  telepathy-butterfly/repos/extra-x86_64/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 06:51:26
  Author: ibiru
Revision: 102165

archrelease: copy trunk to extra-x86_64

Added:
  telepathy-butterfly/repos/extra-x86_64/



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 06:54:27
  Author: allan
Revision: 102166

upgpkg: ttf-dejavu 2.32-2
add lgc fonts

Modified:
  ttf-dejavu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 11:51:26 UTC (rev 102165)
+++ PKGBUILD2010-12-06 11:54:27 UTC (rev 102166)
@@ -5,24 +5,26 @@
 
 pkgname=ttf-dejavu
 pkgver=2.32
-pkgrel=1
+pkgrel=2
 pkgdesc=Font family based on the Bitstream Vera Fonts with a wider range of 
characters
 arch=('any')
 url=http://dejavu.sourceforge.net/;
 license=('custom')
 depends=('fontconfig' 'xorg-fonts-encodings')
 install=ttf-dejavu.install
-source=(http://downloads.sourceforge.net/project/dejavu/dejavu/${pkgver}/dejavu-fonts-ttf-${pkgver}.tar.bz2)
-md5sums=('63b1bf644cd54188a2ec43aff1846104')
+source=(http://downloads.sourceforge.net/project/dejavu/dejavu/${pkgver}/dejavu-{,lgc-}fonts-ttf-${pkgver}.tar.bz2)
+md5sums=('63b1bf644cd54188a2ec43aff1846104'
+ '2813b852ded0c1c89264627ce1bfcadc')
 
 package() {
-  cd ${srcdir}/dejavu-fonts-ttf-${pkgver}
-
+  install -dm755 ${pkgdir}/etc/fonts/conf.avail
   install -dm755 ${pkgdir}/usr/share/fonts/TTF
-  install -m644 ttf/*.ttf ${pkgdir}/usr/share/fonts/TTF/
+  
+  for i in dejavu-{,lgc-}fonts-ttf; do
+cd ${srcdir}/${i}-${pkgver}
+install -m644 ttf/*.ttf ${pkgdir}/usr/share/fonts/TTF/
+install -m644 fontconfig/*.conf ${pkgdir}/etc/fonts/conf.avail/
+  done
 
-  install -dm755 ${pkgdir}/etc/fonts/conf.avail
-  install -m644 fontconfig/*.conf ${pkgdir}/etc/fonts/conf.avail/
-
   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }



[arch-commits] Commit in ttf-dejavu/repos (extra-any)

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 06:55:09
  Author: allan
Revision: 102167

archrelease: remove extra-any

Deleted:
  ttf-dejavu/repos/extra-any/



[arch-commits] Commit in ttf-dejavu/repos (extra-any)

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 06:55:38
  Author: allan
Revision: 102168

archrelease: copy trunk to extra-any

Added:
  ttf-dejavu/repos/extra-any/



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

2010-12-06 Thread Pierre Schmitz
Date: Monday, December 6, 2010 @ 06:57:53
  Author: pierre
Revision: 102169

icu rebuild

Modified:
  php/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 11:55:38 UTC (rev 102168)
+++ PKGBUILD2010-12-06 11:57:53 UTC (rev 102169)
@@ -24,7 +24,7 @@
  'php-tidy'
  'php-xsl')
 pkgver=5.3.3
-pkgrel=3
+pkgrel=4
 _suhosinver=${pkgver}-0.9.10
 arch=('i686' 'x86_64')
 license=('PHP')



[arch-commits] Commit in php/repos (staging-i686)

2010-12-06 Thread Pierre Schmitz
Date: Monday, December 6, 2010 @ 07:35:05
  Author: pierre
Revision: 102170

archrelease: copy trunk to staging-i686

Added:
  php/repos/staging-i686/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 07:36:03
  Author: ibiru
Revision: 102171

upgpkg: telepathy-butterfly 0.5.15-1
fix bad import

Added:
  telepathy-butterfly/trunk/0001-bugfix-remove-bad-import-from-im-module.patch
Modified:
  telepathy-butterfly/trunk/PKGBUILD

+
 0001-bugfix-remove-bad-import-from-im-module.patch |   26 +++
 PKGBUILD   |7 +++--
 2 files changed, 31 insertions(+), 2 deletions(-)

Added: 0001-bugfix-remove-bad-import-from-im-module.patch
===
--- 0001-bugfix-remove-bad-import-from-im-module.patch  
(rev 0)
+++ 0001-bugfix-remove-bad-import-from-im-module.patch  2010-12-06 12:36:03 UTC 
(rev 102171)
@@ -0,0 +1,26 @@
+From 501b46c364c5608d1b3b84dd48fe57abcabd4aea Mon Sep 17 00:00:00 2001
+From: Ionut Biru ib...@archlinux.org
+Date: Mon, 6 Dec 2010 04:22:45 -0800
+Subject: [PATCH] bugfix: remove bad import from im module
+
+Signed-off-by: Ionut Biru ib...@archlinux.org
+---
+ butterfly/channel/im.py |2 --
+ 1 files changed, 0 insertions(+), 2 deletions(-)
+
+diff --git a/butterfly/channel/im.py b/butterfly/channel/im.py
+index 1781234..ac8dd44 100644
+--- a/butterfly/channel/im.py
 b/butterfly/channel/im.py
+@@ -30,8 +30,6 @@ import papyon.event
+ 
+ from butterfly.channel.text import ButterflyTextChannel
+ 
+-from butterfly.Channel_Interface_Conference import 
CHANNEL_INTERFACE_CONFERENCE
+-
+ __all__ = ['ButterflyImChannel']
+ 
+ logger = logging.getLogger('Butterfly.ImChannel')
+-- 
+1.7.3.2
+

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 12:35:05 UTC (rev 102170)
+++ PKGBUILD2010-12-06 12:36:03 UTC (rev 102171)
@@ -10,12 +10,15 @@
 groups=('telepathy')
 license=('GPL')
 depends=('papyon=0.5.4' 'python-telepathy=0.15.19')
-source=(http://telepathy.freedesktop.org/releases/telepathy-butterfly/telepathy-butterfly-${pkgver}.tar.gz)
+source=(http://telepathy.freedesktop.org/releases/telepathy-butterfly/telepathy-butterfly-${pkgver}.tar.gz
+0001-bugfix-remove-bad-import-from-im-module.patch)
 install=telepathy-butterfly.install
-md5sums=('4baa6337822f01d817c4b9d8fd406e82')
+md5sums=('4baa6337822f01d817c4b9d8fd406e82'
+ '08417a06a0e4a1875f1baf4b910cdcf4')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/0001-bugfix-remove-bad-import-from-im-module.patch
   ./configure --prefix=/usr --libexecdir=/usr/lib/telepathy
   make
   make DESTDIR=${pkgdir} install



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 07:36:09
  Author: ibiru
Revision: 102172

archrelease: remove extra-i686

Deleted:
  telepathy-butterfly/repos/extra-i686/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 07:36:22
  Author: ibiru
Revision: 102173

archrelease: copy trunk to extra-i686

Added:
  telepathy-butterfly/repos/extra-i686/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 07:36:28
  Author: ibiru
Revision: 102174

archrelease: remove extra-x86_64

Deleted:
  telepathy-butterfly/repos/extra-x86_64/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 07:36:40
  Author: ibiru
Revision: 102175

archrelease: copy trunk to extra-x86_64

Added:
  telepathy-butterfly/repos/extra-x86_64/



[arch-commits] Commit in php/repos (staging-x86_64)

2010-12-06 Thread Pierre Schmitz
Date: Monday, December 6, 2010 @ 07:37:59
  Author: pierre
Revision: 102176

archrelease: copy trunk to staging-x86_64

Added:
  php/repos/staging-x86_64/



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

2010-12-06 Thread Dan McGee
Date: Monday, December 6, 2010 @ 09:17:25
  Author: dan
Revision: 102177

upgpkg: git 1.7.3.3-1
verbump

Modified:
  git/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 12:37:59 UTC (rev 102176)
+++ PKGBUILD2010-12-06 14:17:25 UTC (rev 102177)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee d...@archlinux.org
 
 pkgname=git
-pkgver=1.7.3.2
+pkgver=1.7.3.3
 pkgrel=1
 pkgdesc=the fast distributed version control system
 arch=(i686 x86_64)
@@ -70,11 +70,11 @@
   install -D -m644 $srcdir/git-daemon.conf $pkgdir/etc/conf.d/git-daemon.conf
 }
 
-md5sums=('902f7f07a789fedc0d2ac03656b85969'
- '80bbef2adeaae852f04a9f143aaa5204'
+md5sums=('0430440eeb7c037afd4254bc6fd2cce8'
+ '554b648ee9859c73955978e65d9a8c94'
  'd777ff1a239b3d810dcf5d89f9d894af'
  '9d065134210aa0dd3f2b40d12d915040')
-sha256sums=('bc4cf6bc7c116056050ef43b051691828d7101327b23311d424b02eaee553e71'
-'ce6ca1cb1c62b7dd8d258cf9a94cda7de90a9476b7bb315968f3ed1976dc621e'
+sha256sums=('c707c14ed5d2fc9dd9166fead73ca213d88f3264086a5892ca2139e7d9d437a0'
+'c01796a53d0f4c03cd77fb1a39517e664fca2ca7f77512963fd8c9cc95dd2b41'
 'd2741714a477029ca1ed63f8584040bcba6a53b2332028f9005feef4ae500113'
 '6e1475974fae315c55da344c0527923061ad7d9478d39396d147aea497f501b7')



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

2010-12-06 Thread Dan McGee
Date: Monday, December 6, 2010 @ 09:17:37
  Author: dan
Revision: 102178

archrelease: remove extra-x86_64

Deleted:
  git/repos/extra-x86_64/



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

2010-12-06 Thread Dan McGee
Date: Monday, December 6, 2010 @ 09:17:46
  Author: dan
Revision: 102179

archrelease: copy trunk to extra-x86_64

Added:
  git/repos/extra-x86_64/



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

2010-12-06 Thread Dan McGee
Date: Monday, December 6, 2010 @ 09:24:38
  Author: dan
Revision: 102180

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



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

2010-12-06 Thread Dan McGee
Date: Monday, December 6, 2010 @ 09:24:47
  Author: dan
Revision: 102181

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 09:43:36
  Author: allan
Revision: 102182

upgpkg: fakeroot 1.14.5-1
upstream update

Modified:
  fakeroot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 14:24:47 UTC (rev 102181)
+++ PKGBUILD2010-12-06 14:43:36 UTC (rev 102182)
@@ -3,8 +3,8 @@
 # Contributor: Jochem Kossen j.kos...@home.nl
 
 pkgname=fakeroot
-pkgver=1.14.4
-pkgrel=3
+pkgver=1.14.5
+pkgrel=1
 pkgdesc=Gives a fake root environment, useful for building packages as a 
non-privileged user
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -14,7 +14,7 @@
 depends=('glibc' 'filesystem' 'grep' 'sed' 'sh')
 options=('!libtool')
 
source=(http://ftp.debian.org/debian/pool/main/f/${pkgname}/${pkgname}_${pkgver}.orig.tar.bz2)
-md5sums=('bea628be77838aaa7323a2f7601c2d7e')
+md5sums=('659a1f3a36554abfc2a3eaad2fdc0604')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 09:44:12
  Author: allan
Revision: 102183

archrelease: copy trunk to testing-i686

Added:
  fakeroot/repos/testing-i686/



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 09:44:49
  Author: allan
Revision: 102184

archrelease: copy trunk to testing-x86_64

Added:
  fakeroot/repos/testing-x86_64/



[arch-commits] Commit in libwebkit/trunk (PKGBUILD smp_fix.diff)

2010-12-06 Thread andyrtr
Date: Monday, December 6, 2010 @ 09:46:53
  Author: andyrtr
Revision: 102185

upgpkg: libwebkit 1.2.5-2
rebuild for icu-4.6

Added:
  libwebkit/trunk/smp_fix.diff
Modified:
  libwebkit/trunk/PKGBUILD

--+
 PKGBUILD |   17 -
 smp_fix.diff |   11 +++
 2 files changed, 23 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 14:44:49 UTC (rev 102184)
+++ PKGBUILD2010-12-06 14:46:53 UTC (rev 102185)
@@ -3,25 +3,32 @@
 
 pkgname=libwebkit
 pkgver=1.2.5
-pkgrel=1
+pkgrel=2
 pkgdesc=an opensource web content engine, derived from KHTML and KJS from KDE
 arch=('i686' 'x86_64')
 url=http://webkitgtk.org/;
 license=('custom')
-depends=('libxt' 'libxslt' 'sqlite3' 'gtk2' 'icu=4.4' 'gstreamer0.10-base' 
'libsoup' 'enchant')
+depends=('libxt' 'libxslt' 'sqlite3' 'gtk2' 'icu=4.6' 'gstreamer0.10-base' 
'libsoup' 'enchant')
 makedepends=('gperf' 'gtk-doc' 'gobject-introspection')
 provides=('webkitgtk-svn')
 conflicts=('webkitgtk-svn')
 replaces=('webkitgtk-svn')
-options=('!libtool') # '!makeflags')
+options=('!libtool' '!makeflags')
 source=(http://webkitgtk.org/webkit-${pkgver}.tar.gz
-introspection.patch)
+introspection.patch
+   # 
smp_fix::http://trac.webkit.org/changeset/71535?format=diffnew=71535;
+   smp_fix.diff)
 md5sums=('09f04985665b9abf6f0d9956f86a6a31'
- 'e7e83312618cb30cc9a1567a21cd0e06')
+ 'e7e83312618cb30cc9a1567a21cd0e06'
+ '43ba9c43e638b06eb70df9f3990c81d8')
 
+
 build() {
   cd ${srcdir}/webkit-${pkgver}
   patch -Np0 -i ${srcdir}/introspection.patch
+  # fix smp build - https://bugs.webkit.org/show_bug.cgi?id=49128
+#  patch -Np1 -i ${srcdir}/smp_fix.diff - doesn't solve it
+  
   ./configure --prefix=/usr \
   --enable-video --enable-introspection \
   --with-font-backend=freetype --enable-gtk-doc \

Added: smp_fix.diff
===
--- smp_fix.diff(rev 0)
+++ smp_fix.diff2010-12-06 14:46:53 UTC (rev 102185)
@@ -0,0 +1,11 @@
+--- webkit-1.2.5/JavaScriptCore/wtf/Platform.h 2010-09-10 15:20:23.0 
+0200
 webkit-1.2.5/JavaScriptCore/wtf/Platform.h.new 2010-12-06 
10:49:06.0 +0100
+@@ -775,7 +775,7 @@
+ /* ENABLE macro defaults */
+ 
+ #if PLATFORM(QT)
+-// We musn't customize the global operator new and delete for the Qt port.
++/* We musn't customize the global operator new and delete for the Qt port. */
+ #define ENABLE_GLOBAL_FASTMALLOC_NEW 0
+ #endif
+ 



[arch-commits] Commit in libwebkit/repos (staging-i686)

2010-12-06 Thread andyrtr
Date: Monday, December 6, 2010 @ 09:47:55
  Author: andyrtr
Revision: 102186

archrelease: copy trunk to staging-i686

Added:
  libwebkit/repos/staging-i686/



[arch-commits] Commit in libwebkit/repos (staging-x86_64)

2010-12-06 Thread andyrtr
Date: Monday, December 6, 2010 @ 09:49:19
  Author: andyrtr
Revision: 102187

archrelease: copy trunk to staging-x86_64

Added:
  libwebkit/repos/staging-x86_64/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 10:30:14
  Author: ibiru
Revision: 102188

upgpkg: telepathy-qt4 0.4.0-1
update to 0.4.0

Modified:
  telepathy-qt4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 14:49:19 UTC (rev 102187)
+++ PKGBUILD2010-12-06 15:30:14 UTC (rev 102188)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Ionut Biru ib...@archlinux.org
 pkgname=telepathy-qt4
-pkgver=0.3.5
+pkgver=0.4.0
 pkgrel=1
 pkgdesc=A library for Qt-based Telepathy clients.
 arch=('i686' 'x86_64')
@@ -10,14 +10,23 @@
 license=('LGPL')
 options=('!libtool')
 depends=('qt' 'telepathy-farsight')
-makedepends=('libxslt' 'python')
+makedepends=('libxslt' 'python2' 'cmake')
 
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('d4ac911d95d18bfaaa683912b0aed519')
+md5sums=('ee77a0f3178370ad851acfe622b882cf')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --libexecdir=/usr/lib/telepathy \
-   --disable-static
-  make
-  make DESTDIR=$pkgdir install
+cd ${srcdir}
+
+mkdir build
+cd build
+cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DHAVE_QDBUSVARIANT_OPERATOR_EQUAL=1
+make
 }
+
+package() {
+cd ${srcdir}/build
+make DESTDIR=$pkgdir install
+}



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 10:30:32
  Author: ibiru
Revision: 102190

archrelease: copy trunk to extra-i686

Added:
  telepathy-qt4/repos/extra-i686/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 10:30:39
  Author: ibiru
Revision: 102191

archrelease: remove extra-x86_64

Deleted:
  telepathy-qt4/repos/extra-x86_64/



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

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 10:30:51
  Author: ibiru
Revision: 102192

archrelease: copy trunk to extra-x86_64

Added:
  telepathy-qt4/repos/extra-x86_64/



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

2010-12-06 Thread Andrea Scarpino
Date: Monday, December 6, 2010 @ 11:20:30
  Author: andrea
Revision: 102193

upgpkg: brltty 4.2-3
icu rebuild

Modified:
  brltty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 15:30:51 UTC (rev 102192)
+++ PKGBUILD2010-12-06 16:20:30 UTC (rev 102193)
@@ -4,7 +4,7 @@
 
 pkgname=brltty
 pkgver=4.2
-pkgrel=2
+pkgrel=3
 pkgdesc=Braille display driver for Linux/Unix
 arch=('i686' 'x86_64')
 url=http://mielke.cc/brltty;
@@ -15,9 +15,9 @@
 backup=(etc/brltty.conf etc/conf.d/brltty.conf)
 options=('!makeflags' '!emptydirs')
 source=(http://mielke.cc/${pkgname}/releases/${pkgname}-${pkgver}.tar.gz
-   brltty-4.2-S_ISCHR.patch
-   brltty
-   brltty.conf)
+'brltty-4.2-S_ISCHR.patch'
+'brltty'
+'brltty.conf')
 md5sums=('192af5e634210616928496645e392097'
  '5954b289efaf2ff17676d06de9a88854'
  '831ebaf0c56091702929c68805d20c4f'
@@ -27,21 +27,22 @@
   cd ${srcdir}/${pkgname}-${pkgver}
   CFLAGS+=${CFLAGS} -D_GNU_SOURCE \
   ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --mandir=/usr/share/man \
-  --localstatedir=/var \
-  --enable-gpm \
-  --disable-java-bindings \
- --disable-caml-bindings \
-  PYTHON=/usr/bin/python2
+--sysconfdir=/etc \
+--mandir=/usr/share/man \
+--localstatedir=/var \
+--enable-gpm \
+--disable-java-bindings \
+--disable-caml-bindings \
+PYTHON=/usr/bin/python2
+
   patch -Np1 -i ${srcdir}/brltty-4.2-S_ISCHR.patch
-  make || return 1
+  make
 }
 
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}
   make INSTALL_ROOT=${pkgdir} install
-  install -D -m 755 ${srcdir}/brltty ${pkgdir}/etc/rc.d/brltty
-  install -D -m 644 ${srcdir}/brltty.conf ${pkgdir}/etc/conf.d/brltty.conf
-  install -D -m 644 Documents/brltty.conf ${pkgdir}/etc/brltty.conf
+  install -D -m755 ${srcdir}/brltty ${pkgdir}/etc/rc.d/brltty
+  install -D -m644 ${srcdir}/brltty.conf ${pkgdir}/etc/conf.d/brltty.conf
+  install -D -m644 Documents/brltty.conf ${pkgdir}/etc/brltty.conf
 }



[arch-commits] Commit in brltty/repos (staging-i686)

2010-12-06 Thread Andrea Scarpino
Date: Monday, December 6, 2010 @ 11:20:51
  Author: andrea
Revision: 102194

archrelease: copy trunk to staging-i686

Added:
  brltty/repos/staging-i686/



[arch-commits] Commit in brltty/repos (staging-x86_64)

2010-12-06 Thread Andrea Scarpino
Date: Monday, December 6, 2010 @ 11:21:08
  Author: andrea
Revision: 102195

archrelease: copy trunk to staging-x86_64

Added:
  brltty/repos/staging-x86_64/



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

2010-12-06 Thread Rémy Oudompheng
Date: Monday, December 6, 2010 @ 11:37:18
  Author: remy
Revision: 102196

upgpkg: haskell-haskell-src 1.0.1.3-4
Rebuild with documentation.

Modified:
  haskell-haskell-src/trunk/PKGBUILD
  haskell-haskell-src/trunk/haskell-haskell-src.install

-+
 PKGBUILD|   21 -
 haskell-haskell-src.install |8 ++--
 2 files changed, 22 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 16:21:08 UTC (rev 102195)
+++ PKGBUILD2010-12-06 16:37:18 UTC (rev 102196)
@@ -1,10 +1,11 @@
 # Maintainer: Vesa Kaihlavirta v...@archlinux.org
 # Contributor: Arch Haskell Team arch-hask...@haskell.org
+_hkgname=haskell-src
 pkgname=haskell-haskell-src
 pkgver=1.0.1.3
-pkgrel=3
+pkgrel=4
 pkgdesc=Facilities for manipulating Haskell source code: an abstract syntax, 
lexer, parser and pretty-printer.
-url=http://hackage.haskell.org/cgi-bin/hackage-scripts/package/haskell-src;
+url=http://hackage.haskell.org/package/${_hkgname};
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 makedepends=(happy)
@@ -12,16 +13,26 @@
 options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/haskell-src/$pkgver/haskell-src-$pkgver.tar.gz)
 install=${pkgname}.install
+md5sums=('27ec8f55eca844852815f916935f192d')
 
 build() {
-cd ${srcdir}/haskell-src-$pkgver
-runhaskell Setup configure -p --enable-split-objs --enable-shared 
--prefix=/usr
+cd ${srcdir}/${_hkgname}-${pkgver}
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared 
--prefix=/usr --docdir=/usr/share/doc/${pkgname}
 runhaskell Setup build
+runhaskell Setup haddock
 runhaskell Setup register   --gen-script
 runhaskell Setup unregister --gen-script
+sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+cd ${srcdir}/${_hkgname}-${pkgver}
 install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
 install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
 runhaskell Setup copy --destdir=${pkgdir}
 install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
 }
-md5sums=('27ec8f55eca844852815f916935f192d')
+

Modified: haskell-haskell-src.install
===
--- haskell-haskell-src.install 2010-12-06 16:21:08 UTC (rev 102195)
+++ haskell-haskell-src.install 2010-12-06 16:37:18 UTC (rev 102196)
@@ -1,14 +1,18 @@
 HS_DIR=usr/share/haskell/haskell-haskell-src
 post_install() {
   ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
 }
 pre_upgrade() {
-  ${HS_DIR}/unregister.sh  /dev/null
-  exit 0
+  ${HS_DIR}/unregister.sh
 }
 post_upgrade() {
   ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
 }
 pre_remove() {
   ${HS_DIR}/unregister.sh
 }
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}



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

2010-12-06 Thread Rémy Oudompheng
Date: Monday, December 6, 2010 @ 11:37:25
  Author: remy
Revision: 102197

archrelease: remove extra-i686

Deleted:
  haskell-haskell-src/repos/extra-i686/



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

2010-12-06 Thread Rémy Oudompheng
Date: Monday, December 6, 2010 @ 11:37:47
  Author: remy
Revision: 102199

archrelease: remove extra-x86_64

Deleted:
  haskell-haskell-src/repos/extra-x86_64/



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

2010-12-06 Thread Rémy Oudompheng
Date: Monday, December 6, 2010 @ 11:38:01
  Author: remy
Revision: 102200

archrelease: copy trunk to extra-x86_64

Added:
  haskell-haskell-src/repos/extra-x86_64/



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

2010-12-06 Thread Rémy Oudompheng
Date: Monday, December 6, 2010 @ 12:03:27
  Author: remy
Revision: 102201

upgpkg: haskell-quickcheck 2.4.0.1-1
Update to latest 2.4.0.1 (for ghc-7 and Haskell Platform 2011 draft)

Modified:
  haskell-quickcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 16:38:01 UTC (rev 102200)
+++ PKGBUILD2010-12-06 17:03:27 UTC (rev 102201)
@@ -1,35 +1,37 @@
 # Maintainer: Vesa Kaihlavirta v...@archlinux.org
 # Contributor: Arch Haskell Team arch-hask...@haskell.org
 # Package generated by cabal2arch 0.7.5
+_hkgname=QuickCheck
 pkgname=haskell-quickcheck
-pkgver=2.1.1.1
-pkgrel=2
+pkgver=2.4.0.1
+pkgrel=1
 pkgdesc=Automatic testing of Haskell programs
 url=http://hackage.haskell.org/package/QuickCheck;
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
-depends=(ghc=6.12.3 haskell-mtl=1.1.0.2 sh)
+depends=(ghc=7.0.1 haskell-mtl=1.1.1.0 sh)
 options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/QuickCheck/$pkgver/QuickCheck-$pkgver.tar.gz)
 install=${pkgname}.install
-md5sums=('a9e9170599223dc21c21a0190aadb195')
+md5sums=('e8c86e95fd1fa4c58fc8e53e2853db5e')
 
 build() {
-cd $srcdir/QuickCheck-$pkgver
-runhaskell Setup configure -p --enable-split-objs --enable-shared 
--prefix=/usr --docdir=/usr/share/doc/${pkgname}
+cd ${srcdir}/${_hkgname}-${pkgver}
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared 
--prefix=/usr --docdir=/usr/share/doc/${pkgname}
 runhaskell Setup build
 runhaskell Setup haddock
 runhaskell Setup register   --gen-script
 runhaskell Setup unregister --gen-script
+sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
 }
 
 package() {
-cd ${srcdir}/QuickCheck-$pkgver
-install -D -m744 register.sh   
$pkgdir/usr/share/haskell/${pkgname}/register.sh
-install-m744 unregister.sh 
$pkgdir/usr/share/haskell/${pkgname}/unregister.sh
+cd ${srcdir}/${_hkgname}-${pkgver}
+install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
 install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
-ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/QuickCheck
-runhaskell Setup copy --destdir=$pkgdir
-install -D -m644 LICENSE $pkgdir/usr/share/licenses/${pkgname}/LICENSE
+ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
 }



[arch-commits] Commit in haskell-quickcheck/repos (staging-i686)

2010-12-06 Thread Rémy Oudompheng
Date: Monday, December 6, 2010 @ 12:03:45
  Author: remy
Revision: 102202

archrelease: copy trunk to staging-i686

Added:
  haskell-quickcheck/repos/staging-i686/



[arch-commits] Commit in haskell-quickcheck/repos (staging-x86_64)

2010-12-06 Thread Rémy Oudompheng
Date: Monday, December 6, 2010 @ 12:04:06
  Author: remy
Revision: 102203

archrelease: copy trunk to staging-x86_64

Added:
  haskell-quickcheck/repos/staging-x86_64/



[arch-commits] Commit in openoffice-base/trunk (ChangeLog PKGBUILD libx11.diff)

2010-12-06 Thread andyrtr
Date: Monday, December 6, 2010 @ 13:46:33
  Author: andyrtr
Revision: 102204

upgpkg: openoffice-base 3.2.1-4
rebuild for icu-4.6; add a buildfix; remove ChangeLog

Added:
  openoffice-base/trunk/libx11.diff
Modified:
  openoffice-base/trunk/PKGBUILD
Deleted:
  openoffice-base/trunk/ChangeLog

-+
 ChangeLog   |  168 --
 PKGBUILD|  104 ++-
 libx11.diff |   12 
 3 files changed, 66 insertions(+), 218 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2010-12-06 17:04:06 UTC (rev 102203)
+++ ChangeLog   2010-12-06 18:46:33 UTC (rev 102204)
@@ -1,168 +0,0 @@
-2010-10-30 Andreas Radke andyrtr at archlinux.org
-
-* 3.2.1-3 :
-   - db5.1 rebuild, add buildfix
-
-2010-10-04 Andreas Radke andyrtr at archlinux.org
-
-* 3.2.1-2 :
-   - python2 - 2.7 rebuild
-
-2010-06-01 Andreas Radke andyrtr at archlinux.org
-
-* 3.2.1-1 :
-   - new 3.2.1 release pkg based on OOO320_m18/m19
-   - apply changes made over the last months in the *beta pkg
-
-2010-04-02 Andreas Radke andyrtr at archlinux.org
-
-* 3.2.0-3 :
-   - rebuild for icu 4.4
-   - use internal redland. system one is still too broken
-
-2010-03-31 Andreas Radke andyrtr at archlinux.org
-
-* 3.2.0-2 :
-   - fix many system redland issues
-   - fix pkgdesc
-   - add PYTHONPATH to the profile #18493
-
-2010-02-10 Andreas Radke andyrtr at archlinux.org
-
-* 3.2.0-1 :
-   - new 3.2.0 release pkg based on OOO320_m12
-   - apply changes made over the last months in the *beta pkg
-
-2009-09-27 Andreas Radke andyrtr at archlinux.org
-
-* 3.1.1-2 :
-   - rebuild for db4.8
-
-2009-08-25 Andreas Radke andyrtr at archlinux.org
-
-* 3.1.1-1 :
-   - ooo310_m19 = 3.1.1RC2 = final
-   - add 2 patches to fix plugin + remove plugin option
-   - change libxul buildfix to make the plugin work
-
-2009-08-07 Andreas Radke andyrtr at archlinux.org
-
-* 3.1.0.91-ooo310_m18-1 :
-   - 3.1.1rc1
-   - backup sofficerc file to fix
- http://bugs.archlinux.org/task/15161
-   - move all files to /usr/lib
-   - add startcenter menu entry, drop templates entry
-   
-2009-07-03 Andreas Radke andyrtr at archlinux.org
-
-   * 3.1.0-5 :
-   rebuild with lowered compiler optimizations
-   http://bugs.archlinux.org/task/15290
-
-2009-07-02 Andreas Radke andyrtr at archlinux.org
-
-   * 3.1.0-4 :
-   buildfix for new xulrunner
-   enable the plugin again
-
-2009-07-02 Andreas Radke andyrtr at archlinux.org
-
-   * 3.1.0-3 :
-   - rebuild for libjpeg 7 
-   - temporarely disable plugin, cannot be built
- with new xulrunner 1.9.1
-   - fix apache-ant detection
-   - add libsm dependency
-
-2009-05-30 Andreas Radke andyrtr at archlinux.org
-
-* 3.1.0-2 :
-   - rebuild for icu 4.2
-   - add gcc4.4 fix
-   - add glibc 2.10.1 fix
-
-2009-05-05 Andreas Radke andyrtr at archlinux.org
-
-* 3.1.0-1 :
-   - based on OOO310_m11 = RC2 = final
-   - major bump
-   - see changes developed in openoffice-base-beta pkg
-
-openoffice-base 3.0.1-1
-- modify install msg
-- build with stlport for i686 and
-  without for x86_64
-- fix high cpu load in file dialog FS #11710
-- change to internal boost
-
-openoffice-base 3.0.0-4
-- rebuild for heimdal 1.2.1
-
-openoffice-base 3.0.0-3
-- rebuild for python 2.6
-
-openoffice-base 3.0.0-2
-- add libxslt dependency to fix file recovering issue
-- add profile.d script to preset the gnome vcl usage
-- reenable stlport to be compatible with crappy old 
-  Sun extensions
-
-openoffice-base 3.0.0-1
-- major bump
-- see changes developed in openoffice-base-beta pkg
-
-openoffice-base 2.4.1-2
-- rebuild for new db4.7 - fix detection
-- fix xulrunner 1.9 detection
-- add libsndfile dep again, fixes #10680
-- disable the gtkunixprintdialog.diff 
-  as it _may_ be the reason for trouble on
-  *box desktops
-- fix FS#10143 (duplicate menu entries)
-
-openoffice-base 2.4.1-1
-- try shell.patch to non-gtk solve integration
-- disable crashdump that would break with gcc-4.3
-- use system Xrender-headers and sane headers again
-- cleanup deps/makedeps
-- fix FS#10143 (duplicate menu entries)
-
-openoffice-base 2.4.0-1
-- rebuild against extra
-- rc6 is final
-
-openoffice-base 2.4.0-0.4
-- ooh680-m12 = 2.4 RC6
-- fix gcc-4.3 compile issues
-- fix gcj lib paths
-
-openoffice-base 2.4.0-0.3
-- ooh680-m9 = 2.4 RC3
-
-openoffice-base 2.4.0-0.2
-- ooh680-m8 = 2.4 RC2
-- added soffice.diff to solve OOo not stating in certain DEs (#9638)
-
-openoffice-base 2.4.0-0.1
-- ooh680-m7 = 2.4 RC1
-- remove gstreamer patch that breaks letter wizard on x86_64
-- removed Arch splash
-- removed obsolete patches
-- added gtk-printing patch to provide the nice dialog on gtk based desktops
-

[arch-commits] Commit in openoffice-base/repos (staging-x86_64)

2010-12-06 Thread andyrtr
Date: Monday, December 6, 2010 @ 14:09:04
  Author: andyrtr
Revision: 102205

archrelease: copy trunk to staging-x86_64

Added:
  openoffice-base/repos/staging-x86_64/



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

2010-12-06 Thread andyrtr
Date: Monday, December 6, 2010 @ 14:14:42
  Author: andyrtr
Revision: 102206

add patches that moved upstream to a different location

Added:
  openoffice-base/trunk/cppu-lbnames-enable-gcc-4.5.diff
  openoffice-base/trunk/redland-remove-patches.diff?h=ooo-build-3-2-1
  openoffice-base/trunk/vcl-system-graphite-with-stlport.diff

---+
 cppu-lbnames-enable-gcc-4.5.diff  |   17 
 redland-remove-patches.diff?h=ooo-build-3-2-1 |  623 
 vcl-system-graphite-with-stlport.diff |  291 +++
 3 files changed, 931 insertions(+)

Added: cppu-lbnames-enable-gcc-4.5.diff
===
--- cppu-lbnames-enable-gcc-4.5.diff(rev 0)
+++ cppu-lbnames-enable-gcc-4.5.diff2010-12-06 19:14:42 UTC (rev 102206)
@@ -0,0 +1,17 @@
+--- cppu/inc/uno/lbnames.h.old 2010-02-02 12:49:41.0 +0100
 cppu/inc/uno/lbnames.h 2010-03-05 17:13:22.0 +0100
+@@ -62,12 +62,12 @@ provoking error here, because PP ignores
+ #error Tested gcc 2 versions are 2.91 and 2.95.  Patch uno/lbnames.h to try 
your gcc 2 version.
+ #elif (__GNUC__ == 3  __GNUC_MINOR__ = 4)
+ #define __CPPU_ENV gcc3
+-#elif (__GNUC__ == 4  __GNUC_MINOR__ = 4)
++#elif (__GNUC__ == 4  __GNUC_MINOR__ = 5)
+ #define __CPPU_ENV gcc3
+ #elif (__GNUC__ == 3)
+ #error Tested gcc 3 version is = 3.4.  Patch uno/lbnames.h to try your gcc 
3 version.
+ #else
+-#error Supported gcc majors are 2 , 3 and 4 = 4.4.  Unsupported gcc major 
version.
++#error Supported gcc majors are 2 , 3 and 4 = 4.5.  Unsupported gcc major 
version.
+ #endif /* defined (__GNUC__) */
+ #endif /* defined (_MSC_VER) */
+ 


Property changes on: openoffice-base/trunk/cppu-lbnames-enable-gcc-4.5.diff
___
Added: svn:executable
   + *

Added: redland-remove-patches.diff?h=ooo-build-3-2-1
===
--- redland-remove-patches.diff?h=ooo-build-3-2-1   
(rev 0)
+++ redland-remove-patches.diff?h=ooo-build-3-2-1   2010-12-06 19:14:42 UTC 
(rev 102206)
@@ -0,0 +1,623 @@
+Index: configure.in
+===
+--- configure.in   (Revision 277995)
 configure.in   (Arbeitskopie)
+@@ -528,6 +528,9 @@
+ AC_ARG_WITH(system-lpsolve,
+ [  --with-system-lpsolve Use lpsolve already on system
+ ],,)
++AC_ARG_WITH(system-redland,
++[  --with-system-redland   Use redland library already on system
++],,)
+ AC_ARG_WITH(system-mozilla,
+ [  --with-system-mozilla   Use mozilla already on system. Note that some
+   components cannot be built against a contemporary
+@@ -4889,16 +4892,12 @@
+ dnl Check for system redland
+ dnl ===
+ AC_MSG_CHECKING([which redland library to use])
+-dnl if test -n $with_system_redland -o -n $with_system_libs  \
+-dnl   test $with_system_redland != no; then
+-dnl mst: NOTE: right now we need patches against redland
+-dnlso we only enable system redland if explicitly requested
+-dnlif next version includes patches, insert version check here
+-if test -n $with_system_redland  \
++if test -n $with_system_redland -o -n $with_system_libs  \
+   test $with_system_redland != no; then
+   AC_MSG_RESULT([external])
+   SYSTEM_REDLAND=YES
+-  PKG_CHECK_MODULES(REDLAND, redland)
++   dnl versions before 1.0.8 write RDF/XML that is useless for ODF (@xml:base)
++   PKG_CHECK_MODULES(REDLAND, redland = 1.0.8)
+ else
+   AC_MSG_RESULT([internal])
+   BUILD_TYPE=$BUILD_TYPE REDLAND
+Index: redland/redland/makefile.mk
+===
+--- redland/redland/makefile.mk(Revision 278035)
 redland/redland/makefile.mk(Arbeitskopie)
+@@ -62,9 +62,6 @@
+ 
+ 
+ PATCH_FILES=$(OOO_PATCH_FILES) \
+-$(TARFILE_NAME).patch.free_null \
+-$(TARFILE_NAME).patch.storage_hashes_context_serialize_get_statement \
+-$(TARFILE_NAME).patch.storage_hashes_list_duplicates \
+ 
+ 
+ .IF $(OS)==OS2
+Index: redland/README
+===
+--- redland/README (Revision 278035)
 redland/README (Arbeitskopie)
+@@ -22,7 +22,8 @@
+ Patches:
+ There are several patches, most of which contain only hacks to get it to
+ build with OOo build system.
+-There are also 3 patches that fix bugs in redland and are of general interest:
++There used to be also 3 patches here that fix bugs in redland and ought to be
++of general interest:
+ - redland-1.0.8.patch.free_null:
+   redland destructor functions don't check if argument is NULL
+ - redland-1.0.8.patch.storage_hashes_context_serialize_get_statement:
+@@ -31,4 +32,7 @@
+ - redland-1.0.8.patch.storage_hashes_list_duplicates:

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

2010-12-06 Thread andyrtr
Date: Monday, December 6, 2010 @ 14:23:41
  Author: andyrtr
Revision: 102207

upgpkg: libwpd 0.9.0-1
new version 0.9.0

Modified:
  libwpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 19:14:42 UTC (rev 102206)
+++ PKGBUILD2010-12-06 19:23:41 UTC (rev 102207)
@@ -2,7 +2,7 @@
 # Maintainer: Giovanni Scafora giova...@archlinux.org
 
 pkgname=libwpd
-pkgver=0.8.14
+pkgver=0.9.0
 pkgrel=1
 pkgdesc=Library for importing WordPerfect (tm) documents
 arch=('i686' 'x86_64')
@@ -11,13 +11,17 @@
 depends=('libgsf=1.14.3-2')
 options=('!libtool')
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('64d66018897d759358f454010b6e75d2')
+md5sums=('a48717413de46ccca59df1b07ac70225')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
 
   ./configure --prefix=/usr \
   --without-docs
-  make || return 1
-  make DESTDIR=${pkgdir} install || return 1
+  make
 }
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in libwpd/repos (staging-i686)

2010-12-06 Thread andyrtr
Date: Monday, December 6, 2010 @ 14:24:04
  Author: andyrtr
Revision: 102208

archrelease: copy trunk to staging-i686

Added:
  libwpd/repos/staging-i686/



[arch-commits] Commit in libwpd/repos (staging-x86_64)

2010-12-06 Thread andyrtr
Date: Monday, December 6, 2010 @ 14:24:27
  Author: andyrtr
Revision: 102209

archrelease: copy trunk to staging-x86_64

Added:
  libwpd/repos/staging-x86_64/



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

2010-12-06 Thread andyrtr
Date: Monday, December 6, 2010 @ 14:32:38
  Author: andyrtr
Revision: 102210

upgpkg: libwpg 0.2.0-1
new version 0.2.0

Modified:
  libwpg/trunk/PKGBUILD (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 19:24:27 UTC (rev 102209)
+++ PKGBUILD2010-12-06 19:32:38 UTC (rev 102210)
@@ -1,20 +1,25 @@
+# $Id$
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=libwpg
-pkgver=0.1.3
+pkgver=0.2.0
 pkgrel=1
 pkgdesc=Library for importing and converting Corel WordPerfect(tm) Graphics 
images.
 arch=('i686' 'x86_64')
 url=http://libwpg.sourceforge.net/;
 license=('LGPL')
-depends=('libwpd')
+depends=('libwpd=0.9.0' 'perl')
 options=('!libtool')
 source=(http://downloads.sourceforge.net/libwpg/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('1069ad84fdf65f1c47b63b639137613f')
+md5sums=('5ba6a61a2f66dfd5fee8cdd4cd262a37')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
   ./configure --prefix=/usr
-  make || return 1
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
 }


Property changes on: libwpg/trunk/PKGBUILD
___
Added: svn:keywords
   + Id



[arch-commits] Commit in libwpg/repos (staging-i686)

2010-12-06 Thread andyrtr
Date: Monday, December 6, 2010 @ 14:33:00
  Author: andyrtr
Revision: 102211

archrelease: copy trunk to staging-i686

Added:
  libwpg/repos/staging-i686/



[arch-commits] Commit in libwpg/repos (staging-x86_64)

2010-12-06 Thread andyrtr
Date: Monday, December 6, 2010 @ 14:33:23
  Author: andyrtr
Revision: 102212

archrelease: copy trunk to staging-x86_64

Added:
  libwpg/repos/staging-x86_64/



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

2010-12-06 Thread Gaetan Bisson
Date: Monday, December 6, 2010 @ 16:07:07
  Author: bisson
Revision: 102213

minor upstream update

Modified:
  feh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 19:33:23 UTC (rev 102212)
+++ PKGBUILD2010-12-06 21:07:07 UTC (rev 102213)
@@ -5,7 +5,7 @@
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=feh
-pkgver=1.10
+pkgver=1.10.1
 pkgrel=1
 pkgdesc='Fast, lightweight image viewer which uses imlib2'
 arch=('i686' 'x86_64')
@@ -13,19 +13,17 @@
 license=('MIT')
 depends=('libxinerama' 'giblib' 'perl')
 makedepends=('libxt')
-source=(https://derf.homelinux.org/~derf/projects/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('c42095ed6a7636fe9d1ec90d3994f4a57af84681')
+source=(${url}${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('2784c80f58e8d5ecc2ed05d6473ec6a574aa25cf')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-
   sed -i -e 's:/usr/local:/usr:g' config.mk
   make
 }
 
 package(){
   cd ${srcdir}/${pkgname}-${pkgver}
-
   make DESTDIR=${pkgdir} install
   install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }



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

2010-12-06 Thread Gaetan Bisson
Date: Monday, December 6, 2010 @ 16:07:23
  Author: bisson
Revision: 102214

archrelease: remove extra-i686

Deleted:
  feh/repos/extra-i686/



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

2010-12-06 Thread Gaetan Bisson
Date: Monday, December 6, 2010 @ 16:07:44
  Author: bisson
Revision: 102215

archrelease: copy trunk to extra-i686

Added:
  feh/repos/extra-i686/



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

2010-12-06 Thread Gaetan Bisson
Date: Monday, December 6, 2010 @ 16:08:01
  Author: bisson
Revision: 102216

archrelease: remove extra-x86_64

Deleted:
  feh/repos/extra-x86_64/



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

2010-12-06 Thread Gaetan Bisson
Date: Monday, December 6, 2010 @ 16:08:23
  Author: bisson
Revision: 102217

archrelease: copy trunk to extra-x86_64

Added:
  feh/repos/extra-x86_64/



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

2010-12-06 Thread Pierre Schmitz
Date: Monday, December 6, 2010 @ 16:12:22
  Author: pierre
Revision: 102218

use local sources

Modified:
  openoffice-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 21:08:23 UTC (rev 102217)
+++ PKGBUILD2010-12-06 21:12:22 UTC (rev 102218)
@@ -32,10 +32,10 @@
buildfix_system_db51.diff
libx11.diff

http://www.openoffice.org/nonav/issues/showattachment.cgi/72052/configure.set-redland-cflags.patch
-   
http://cgit.freedesktop.org/ooo-build/ooo-build/plain/patches/dev300/cppu-lbnames-enable-gcc-4.5.diff
-   
http://cgit.freedesktop.org/ooo-build/ooo-build/plain/patches/dev300/vcl-system-graphite-with-stlport.diff
+   cppu-lbnames-enable-gcc-4.5.diff
+   vcl-system-graphite-with-stlport.diff

http://cgit.freedesktop.org/libreoffice/build/plain/patches/dev300/fix-system-mythes-for-mythes-1.2.diff?h=ooo-build-3-2-1
-   
http://cgit.freedesktop.org/ooo-build/ooo-build/plain/patches/dev300/redland-remove-patches.diff?h=ooo-build-3-2-1
+   redland-remove-patches.diff?h=ooo-build-3-2-1
openoffice.profile)
 options=('!distcc' '!ccache' '!makeflags')
 md5sums=('74d11db8100701bd08c97e93f12da021'



[arch-commits] Commit in openoffice-base/repos (staging-i686)

2010-12-06 Thread Pierre Schmitz
Date: Monday, December 6, 2010 @ 16:15:06
  Author: pierre
Revision: 102219

archrelease: copy trunk to staging-i686

Added:
  openoffice-base/repos/staging-i686/



[arch-commits] Commit in conky/trunk (PKGBUILD current-power.patch)

2010-12-06 Thread Gaetan Bisson
Date: Monday, December 6, 2010 @ 16:41:49
  Author: bisson
Revision: 102220

fix FS#21984

Added:
  conky/trunk/current-power.patch
Modified:
  conky/trunk/PKGBUILD

-+
 PKGBUILD|   12 +---
 current-power.patch |   12 
 2 files changed, 21 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 21:15:06 UTC (rev 102219)
+++ PKGBUILD2010-12-06 21:41:49 UTC (rev 102220)
@@ -5,7 +5,7 @@
 
 pkgname=conky
 pkgver=1.8.1
-pkgrel=1
+pkgrel=2
 pkgdesc='An advanced, highly configurable system monitor for X based on torsmo'
 arch=('i686' 'x86_64')
 url='http://conky.sourceforge.net/'
@@ -14,11 +14,17 @@
 depends=('alsa-lib' 'libxml2' 'curl' 'wireless_tools' 'libxft' 'glib2' 
'libxdamage' 'imlib2')
 makedepends=('pkg-config')
 backup=('etc/conky/conky.conf' 'etc/conky/conky_no_x11.conf')
-source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('06bbe9b7eed8603fa7a971b27c5c61f38424ac6f')
+source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+'current-power.patch')
 
+sha1sums=('06bbe9b7eed8603fa7a971b27c5c61f38424ac6f'
+  '2eeef0cc5a0b612826b2a7f0b43b7a3b7e10bf0b')
+
 build() {
cd ${srcdir}/${pkgname}-${pkgver}
+
+   patch -p1  ../current-power.patch # See FS#21984
+
./configure \
--prefix=/usr \
--sysconfdir=/etc \

Added: current-power.patch
===
--- current-power.patch (rev 0)
+++ current-power.patch 2010-12-06 21:41:49 UTC (rev 102220)
@@ -0,0 +1,12 @@
+diff -aur old/src/linux.c new/src/linux.c
+--- old/src/linux.c2010-10-05 23:29:36.0 +0200
 new/src/linux.c2010-12-06 22:18:59.346667183 +0100
+@@ -1671,6 +1671,8 @@
+   the tradition! */
+   else if (strncmp(buf, POWER_SUPPLY_CURRENT_NOW=, 25) 
== 0)
+   sscanf(buf, POWER_SUPPLY_CURRENT_NOW=%d, 
present_rate);
++  else if (strncmp(buf, POWER_SUPPLY_POWER_NOW=, 23) == 
0)
++  sscanf(buf, POWER_SUPPLY_POWER_NOW=%d, 
present_rate);
+   else if (strncmp(buf, POWER_SUPPLY_ENERGY_NOW=, 24) 
== 0)
+   sscanf(buf, POWER_SUPPLY_ENERGY_NOW=%d, 
remaining_capacity);
+   else if (strncmp(buf, POWER_SUPPLY_ENERGY_FULL=, 25) 
== 0)



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

2010-12-06 Thread Gaetan Bisson
Date: Monday, December 6, 2010 @ 16:41:57
  Author: bisson
Revision: 102221

archrelease: remove extra-i686

Deleted:
  conky/repos/extra-i686/



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

2010-12-06 Thread Gaetan Bisson
Date: Monday, December 6, 2010 @ 16:42:12
  Author: bisson
Revision: 10

archrelease: copy trunk to extra-i686

Added:
  conky/repos/extra-i686/



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

2010-12-06 Thread Gaetan Bisson
Date: Monday, December 6, 2010 @ 16:42:19
  Author: bisson
Revision: 102223

archrelease: remove extra-x86_64

Deleted:
  conky/repos/extra-x86_64/



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

2010-12-06 Thread Gaetan Bisson
Date: Monday, December 6, 2010 @ 16:42:35
  Author: bisson
Revision: 102224

archrelease: copy trunk to extra-x86_64

Added:
  conky/repos/extra-x86_64/



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

2010-12-06 Thread Andrea Scarpino
Date: Monday, December 6, 2010 @ 17:05:54
  Author: andrea
Revision: 102225

KDE 4.5.85 beta2

Modified:
  kdelibs/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 21:42:35 UTC (rev 102224)
+++ PKGBUILD2010-12-06 22:05:54 UTC (rev 102225)
@@ -19,7 +19,7 @@
 install='kdelibs.install'
 
source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;
 'kde-applications-menu.patch' 'archlinux-menu.patch' 
'abs-syntax-highlight.patch')
-sha1sums=('d1a89ea1bfb925c1e51c9a794644315e9e2b6300'
+sha1sums=('d48591373e3d9a3de9ee2bd7940eaf111c04eb98'
   '86ee8c8660f19de8141ac99cd6943964d97a1ed7'
   '63a850ab4196b9d06934f2b4a13acd9f7739bc67'
   'd994f262356af5b9e4e9619646e471bd98c91efb')



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

2010-12-06 Thread Andrea Scarpino
Date: Monday, December 6, 2010 @ 17:06:04
  Author: andrea
Revision: 102226

KDE 4.5.85 beta2

Modified:
  kdepimlibs/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 22:05:54 UTC (rev 102225)
+++ PKGBUILD2010-12-06 22:06:04 UTC (rev 102226)
@@ -14,7 +14,7 @@
 'docbook-xsl')
 install='kdepimlibs.install'
 
source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('11b76b6b8ab9c67da214dec6b97432505f1a9689')
+sha1sums=('51fcffbac91305af3db0f4da6ee7a6ddebd9ae1e')
 
 build() {
cd ${srcdir}



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

2010-12-06 Thread Andrea Scarpino
Date: Monday, December 6, 2010 @ 17:06:08
  Author: andrea
Revision: 102227

KDE 4.5.85 beta2

Modified:
  kdenetwork/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 22:06:04 UTC (rev 102226)
+++ PKGBUILD2010-12-06 22:06:08 UTC (rev 102227)
@@ -21,7 +21,7 @@
'ppp' 'v4l-utils' 'libidn' 'qimageblitz' 'libxdamage' 'libgadu'
'telepathy-qt4' 'docbook-xsl' 'libktorrent' 'kwebkitpart')
 
source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;)
-sha1sums=('d0eced494b568ee4c8967fcc9fd975b10bb2aeea')
+sha1sums=('4c2570b918a3fb6f3f86b55647123e79c03e8b20')
 
 build() {
cd ${srcdir}



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

2010-12-06 Thread Andrea Scarpino
Date: Monday, December 6, 2010 @ 17:06:12
  Author: andrea
Revision: 102228

KDE 4.5.85 beta2

Modified:
  kdesdk/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 22:06:08 UTC (rev 102227)
+++ PKGBUILD2010-12-06 22:06:12 UTC (rev 102228)
@@ -34,7 +34,7 @@
 
source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2;
 'fix-antlr2-executable.patch'
 'fix-python2-path.patch')
-sha1sums=('88f2f40ad39feb59294e03447300fc3a7da42fc7'
+sha1sums=('cdaf596549b40e9189f4705dec166da147d68e8d'
   'dc2caaa29bebb49b496bd12eec4e5718e9af0c8f'
   'd05ca0231869c484fd3861955d960a60aff7dcfb')
 



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

2010-12-06 Thread Thomas Bächler
Date: Monday, December 6, 2010 @ 17:11:19
  Author: thomas
Revision: 102229

Upstream microcode update

Modified:
  microcode_ctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 22:06:12 UTC (rev 102228)
+++ PKGBUILD2010-12-06 22:11:19 UTC (rev 102229)
@@ -6,7 +6,7 @@
 # Version of the update tool
 _toolver=1.17
 # Version of the microcode image
-_microcodever=20100826
+_microcodever=20100914
 pkgver=${_toolver}.${_microcodever}
 pkgrel=1
 pkgdesc=A companion to the IA32 microcode kernel driver
@@ -15,15 +15,25 @@
 license=('GPL')
 install=microcode.install
 source=(http://www.urbanmyth.org/microcode/$pkgname-${_toolver}.tar.gz
-
http://downloadmirror.intel.com/19299/eng/microcode-${_microcodever}.tgz
+
http://downloadmirror.intel.com/19342/eng/microcode-${_microcodever}.tgz
 microcode)
 md5sums=('98a7f06acef8459c8ef2a1b0fb86a99e'
- '4f0922e5e0e97331fa63c085a74f80cf'
+ 'c6e765670173dd6e3d9a5c72f6cd1c40'
  '483c198659b8d716bdfbf05a57182394')
 
 build() {
-  cd $startdir/src/$pkgname-${_toolver}
-  make all || return 1
-  make DESTDIR=$startdir/pkg PREFIX=/usr RCFILETO=/etc/rc.d 
RCFILE=../microcode RCFILEFINAL=microcode MANDIR=/usr/share/man/man8 install || 
return 1
-  install -D -m644 ../microcode-${_microcodever}.dat 
$startdir/pkg/etc/microcode.dat
+  cd $srcdir/$pkgname-${_toolver}
+  make all
 }
+
+package() {
+  cd $srcdir/$pkgname-${_toolver}
+  make DESTDIR=$pkgdir \
+   PREFIX=/usr \
+   RCFILETO=/etc/rc.d \
+   RCFILE=../microcode \
+   RCFILEFINAL=microcode \
+   MANDIR=/usr/share/man/man8 \
+   install
+  install -D -m644 ../microcode-${_microcodever}.dat 
$pkgdir/etc/microcode.dat
+}



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

2010-12-06 Thread Thomas Bächler
Date: Monday, December 6, 2010 @ 17:11:29
  Author: thomas
Revision: 102230

archrelease: remove extra-i686

Deleted:
  microcode_ctl/repos/extra-i686/



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

2010-12-06 Thread Thomas Bächler
Date: Monday, December 6, 2010 @ 17:11:38
  Author: thomas
Revision: 102231

archrelease: copy trunk to extra-i686

Added:
  microcode_ctl/repos/extra-i686/



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

2010-12-06 Thread Thomas Bächler
Date: Monday, December 6, 2010 @ 17:11:52
  Author: thomas
Revision: 102233

archrelease: copy trunk to extra-x86_64

Added:
  microcode_ctl/repos/extra-x86_64/



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

2010-12-06 Thread Thomas Bächler
Date: Monday, December 6, 2010 @ 17:11:45
  Author: thomas
Revision: 102232

archrelease: remove extra-x86_64

Deleted:
  microcode_ctl/repos/extra-x86_64/



[arch-commits] Commit in abiword/trunk (PKGBUILD compat_libwpg_0_9.patch)

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 17:32:25
  Author: ibiru
Revision: 102234

upgpkg: abiword 2.8.6-4
libwpd 0.9 rebuild. backport support for it from trunk

Added:
  abiword/trunk/compat_libwpg_0_9.patch
Modified:
  abiword/trunk/PKGBUILD

-+
 PKGBUILD|   13 +
 compat_libwpg_0_9.patch |  371 ++
 2 files changed, 381 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 22:11:52 UTC (rev 102233)
+++ PKGBUILD2010-12-06 22:32:25 UTC (rev 102234)
@@ -5,17 +5,24 @@
 pkgbase=abiword
 pkgname=('abiword' 'abiword-plugins')
 pkgver=2.8.6
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 license=('GPL')
 url=http://www.abisource.com;
 makedepends=('pkgconfig' 'asio' 'boost' 'fribidi' 'goffice' 'libwmf' 'wv' 
'link-grammar' 'gtkmathview' 'aiksaurus' 'libxslt' 'enchant' 'libots' 'libwpg' 
'librsvg' 'loudmouth' 'libsoup')
 options=('!makeflags' '!libtool')
-source=(http://www.abisource.com/downloads/${pkgbase}/${pkgver}/source/${pkgbase}-${pkgver}.tar.gz;)
-sha1sums=('998f69d038000b3fc027d4259548f02d67c8d0df')
+source=(http://www.abisource.com/downloads/${pkgbase}/${pkgver}/source/${pkgbase}-${pkgver}.tar.gz;
+compat_libwpg_0_9.patch)
+sha1sums=('998f69d038000b3fc027d4259548f02d67c8d0df'
+  'e5374f439e3d9b63a4bbd2cd39146c67cf1e85ea')
 
 build() {
   cd ${srcdir}/${pkgbase}-${pkgver}
+
+  patch -Np1 -i ${srcdir}/compat_libwpg_0_9.patch
+  libtoolize --force
+  autoreconf
+
   ./configure --prefix=/usr --enable-clipart --enable-templates 
--enable-collab-backend-xmpp --enable-collab-backend-tcp 
--enable-collab-backend-service --disable-collab-backend-sugar --enable-plugins 
--without-gnomevfs --with-gio --with-goffice --disable-static 
--with-psiconv-config=/nothere
   make
 }

Added: compat_libwpg_0_9.patch
===
--- compat_libwpg_0_9.patch (rev 0)
+++ compat_libwpg_0_9.patch 2010-12-06 22:32:25 UTC (rev 102234)
@@ -0,0 +1,371 @@
+diff -Nur abiword-2.8.6.orig//plugin-configure.m4 
abiword-2.8.6/plugin-configure.m4
+--- abiword-2.8.6.orig//plugin-configure.m42010-06-13 14:17:27.0 
-0700
 abiword-2.8.6/plugin-configure.m4  2010-12-06 13:59:43.083048588 -0800
+@@ -794,7 +794,7 @@
+ AC_SUBST([OPENXML_LIBS])
+ 
+ 
+-wpg_pkgs=$gsf_req libwpg-0.1 = 0.1.0 libwpd-0.8 = 0.8.0
++wpg_pkgs=$gsf_req libwpg-0.2 = 0.2.0 libwpd-0.9 = 0.9.0 libwpd-stream-0.9 
= 0.9.0
+ wpg_deps=no
+ 
+ if test $enable_wpg != ; then
+@@ -1497,8 +1497,8 @@
+ AC_SUBST([EML_LIBS])
+ 
+ 
+-wordperfect_pkgs=libwpd-0.8 = 0.8.0 $gsf_req
+-wordperfect_wps_pkgs='libwps-0.1 = 0.1.0'
++wordperfect_pkgs=libwpg-0.2 = 0.2.0 libwpd-0.9 = 0.9.0 libwpd-stream-0.9 
= 0.9.0 $gsf_req
++wordperfect_wps_pkgs='libwps-0.2 = 0.1.0'
+ wordperfect_deps=no
+ 
+ WORDPERFECT_CFLAGS=
+diff -Nur abiword-2.8.6.orig//plugins/wordperfect/plugin.m4 
abiword-2.8.6/plugins/wordperfect/plugin.m4
+--- abiword-2.8.6.orig//plugins/wordperfect/plugin.m4  2010-05-30 
07:50:46.0 -0700
 abiword-2.8.6/plugins/wordperfect/plugin.m42010-12-06 
13:59:53.929715254 -0800
+@@ -1,6 +1,6 @@
+ 
+-wordperfect_pkgs=libwpd-0.8 = 0.8.0 $gsf_req
+-wordperfect_wps_pkgs='libwps-0.1 = 0.1.0'
++wordperfect_pkgs=libwpg-0.2 = 0.2.0 libwpd-0.9 = 0.9.0 libwpd-stream-0.9 
= 0.9.0 $gsf_req
++wordperfect_wps_pkgs='libwps-0.2 = 0.1.0'
+ wordperfect_deps=no
+ 
+ WORDPERFECT_CFLAGS=
+diff -Nur abiword-2.8.6.orig//plugins/wordperfect/xp/ie_imp_WordPerfect.cpp 
abiword-2.8.6/plugins/wordperfect/xp/ie_imp_WordPerfect.cpp
+--- abiword-2.8.6.orig//plugins/wordperfect/xp/ie_imp_WordPerfect.cpp  
2010-02-06 13:06:11.0 -0800
 abiword-2.8.6/plugins/wordperfect/xp/ie_imp_WordPerfect.cpp
2010-12-06 13:59:53.926381921 -0800
+@@ -60,7 +60,7 @@
+ 
+ // Stream class
+ 
+-#include libwpd/WPXStream.h
++#include libwpd-stream/libwpd-stream.h
+ 
+ #include gsf/gsf-input.h
+ #include gsf/gsf-infile.h
+@@ -70,12 +70,7 @@
+ #include libwps/libwps.h
+ #endif
+ 
+-class AbiWordperfectInputStream :
+-#ifdef HAVE_LIBWPS
+-  public WPSInputStream
+-#else
+-public WPXInputStream
+-#endif
++class AbiWordperfectInputStream : public WPXInputStream
+ {
+ public:
+   AbiWordperfectInputStream(GsfInput *input);
+@@ -86,7 +81,7 @@
+ 
+   virtual WPXInputStream * getDocumentOLEStream(const char * name);
+ 
+-  virtual const uint8_t *read(size_t numBytes, size_t numBytesRead);
++  virtual const unsigned char *read(unsigned long numBytes, unsigned long 
numBytesRead);
+   virtual int seek(long offset, WPX_SEEK_TYPE seekType);
+   virtual long tell();
+   virtual bool atEOS();
+@@ -98,11 +93,7 @@
+ };
+ 
+ AbiWordperfectInputStream::AbiWordperfectInputStream(GsfInput *input) :
+-#ifdef HAVE_LIBWPS
+-  WPSInputStream(),
+-#else
+-  WPXInputStream(true),
+-#endif
++  

[arch-commits] Commit in abiword/repos (staging-i686)

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 17:32:47
  Author: ibiru
Revision: 102235

archrelease: copy trunk to staging-i686

Added:
  abiword/repos/staging-i686/



[arch-commits] Commit in abiword/repos (staging-x86_64)

2010-12-06 Thread Ionut Biru
Date: Monday, December 6, 2010 @ 17:33:07
  Author: ibiru
Revision: 102236

archrelease: copy trunk to staging-x86_64

Added:
  abiword/repos/staging-x86_64/



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

2010-12-06 Thread Andrea Scarpino
Date: Monday, December 6, 2010 @ 18:00:53
  Author: andrea
Revision: 102237

new tarball

Modified:
  kdepimlibs/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-06 22:33:07 UTC (rev 102236)
+++ PKGBUILD2010-12-06 23:00:53 UTC (rev 102237)
@@ -14,7 +14,7 @@
 'docbook-xsl')
 install='kdepimlibs.install'
 
source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('51fcffbac91305af3db0f4da6ee7a6ddebd9ae1e')
+sha1sums=('550cdfce0351131215d310e3f1d92fce2b780506')
 
 build() {
cd ${srcdir}



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 19:02:04
  Author: allan
Revision: 102238

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

Deleted:
  iptables/repos/core-i686/



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 19:02:05
  Author: allan
Revision: 102239

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

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



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 19:02:06
  Author: allan
Revision: 102240

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

Deleted:
  iptables/repos/core-x86_64/



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 19:02:07
  Author: allan
Revision: 102241

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

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



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 19:02:09
  Author: allan
Revision: 102242

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

Deleted:
  texinfo/repos/core-i686/



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 19:02:12
  Author: allan
Revision: 102243

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

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



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 19:02:13
  Author: allan
Revision: 102244

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

Deleted:
  texinfo/repos/core-x86_64/



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

2010-12-06 Thread Allan McRae
Date: Monday, December 6, 2010 @ 19:02:14
  Author: allan
Revision: 102245

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

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



  1   2   >