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

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 04:12:32
  Author: eric
Revision: 140110

Fix url (close FS#26322)

Modified:
  libvorbis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-06 19:11:44 UTC (rev 140109)
+++ PKGBUILD2011-10-07 08:12:32 UTC (rev 140110)
@@ -9,21 +9,21 @@
 pkgdesc=Vorbis codec library
 arch=('i686' 'x86_64')
 license=('custom')
-url=http://www.xiph.org/ogg/vorbis/;
+url=http://www.xiph.org/vorbis/;
 depends=('libogg')
 options=('!libtool')
 source=(http://downloads.xiph.org/releases/vorbis/${pkgname}-${pkgver}.tar.gz)
 md5sums=('c870b9bd5858a0ecb5275c14486d9554')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgname}-${pkgver}
   #-march=i686 optimizes too much, strip it out
   CFLAGS=${CFLAGS/-march=$CARCH} ./configure --prefix=/usr --disable-static
   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
 }



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

2011-10-07 Thread Ionut Biru
Date: Friday, October 7, 2011 @ 04:17:30
  Author: ibiru
Revision: 140111

fix compilation when python 3 is installed. FS#26325

Modified:
  glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 08:12:32 UTC (rev 140110)
+++ PKGBUILD2011-10-07 08:17:30 UTC (rev 140111)
@@ -21,7 +21,7 @@
 
 build() {
   cd ${srcdir}/glib-${pkgver}
-  ./configure --prefix=/usr \
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
   --sysconfdir=/etc \
   --with-pcre=system \
   --disable-fam



[arch-commits] Commit in glib2/repos/core-i686 (6 files)

2011-10-07 Thread Ionut Biru
Date: Friday, October 7, 2011 @ 04:18:24
  Author: ibiru
Revision: 140112

archrelease: copy trunk to core-i686

Added:
  glib2/repos/core-i686/PKGBUILD
(from rev 140111, glib2/trunk/PKGBUILD)
  glib2/repos/core-i686/glib2.csh
(from rev 140111, glib2/trunk/glib2.csh)
  glib2/repos/core-i686/glib2.sh
(from rev 140111, glib2/trunk/glib2.sh)
Deleted:
  glib2/repos/core-i686/PKGBUILD
  glib2/repos/core-i686/glib2.csh
  glib2/repos/core-i686/glib2.sh

---+
 PKGBUILD  |   86 ++--
 glib2.csh |2 -
 glib2.sh  |2 -
 3 files changed, 45 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-10-07 08:17:30 UTC (rev 140111)
+++ PKGBUILD2011-10-07 08:18:24 UTC (rev 140112)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=glib2
-pkgver=2.30.0
-pkgrel=1
-pkgdesc=Common C routines used by GTK+ and other libs
-url=http://www.gtk.org/;
-arch=(i686 x86_64)
-license=('LGPL')
-depends=('pcre' 'libffi')
-makedepends=('pkgconfig' 'python2')
-optdepends=('python2: for gdbus-codegen')
-options=('!libtool' '!docs' '!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/glib/2.30/glib-${pkgver}.tar.xz
-glib2.sh
-glib2.csh)
-sha256sums=('d64c00b43409eabb89aad78501fcb1a992b002b314a4414a9bd069585cb7cdc1'
-'9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a'
-'8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3')
-
-build() {
-  cd ${srcdir}/glib-${pkgver}
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --with-pcre=system \
-  --disable-fam
-  make
-}
-
-package() {
-  cd ${srcdir}/glib-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -d ${pkgdir}/etc/profile.d
-  install -m755 ${srcdir}/glib2.sh ${pkgdir}/etc/profile.d/
-  install -m755 ${srcdir}/glib2.csh ${pkgdir}/etc/profile.d/
-
-  for _i in ${pkgdir}/etc/bash_completion.d/*; do
-  chmod -x ${_i}
-  done
-  sed -i s|#!/usr/bin/env python|#!/usr/bin/env python2| 
$pkgdir/usr/bin/gdbus-codegen
-}

Copied: glib2/repos/core-i686/PKGBUILD (from rev 140111, glib2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-10-07 08:18:24 UTC (rev 140112)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=glib2
+pkgver=2.30.0
+pkgrel=1
+pkgdesc=Common C routines used by GTK+ and other libs
+url=http://www.gtk.org/;
+arch=(i686 x86_64)
+license=('LGPL')
+depends=('pcre' 'libffi')
+makedepends=('pkgconfig' 'python2')
+optdepends=('python2: for gdbus-codegen')
+options=('!libtool' '!docs' '!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/glib/2.30/glib-${pkgver}.tar.xz
+glib2.sh
+glib2.csh)
+sha256sums=('d64c00b43409eabb89aad78501fcb1a992b002b314a4414a9bd069585cb7cdc1'
+'9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a'
+'8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3')
+
+build() {
+  cd ${srcdir}/glib-${pkgver}
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --with-pcre=system \
+  --disable-fam
+  make
+}
+
+package() {
+  cd ${srcdir}/glib-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -d ${pkgdir}/etc/profile.d
+  install -m755 ${srcdir}/glib2.sh ${pkgdir}/etc/profile.d/
+  install -m755 ${srcdir}/glib2.csh ${pkgdir}/etc/profile.d/
+
+  for _i in ${pkgdir}/etc/bash_completion.d/*; do
+  chmod -x ${_i}
+  done
+  sed -i s|#!/usr/bin/env python|#!/usr/bin/env python2| 
$pkgdir/usr/bin/gdbus-codegen
+}

Deleted: glib2.csh
===
--- glib2.csh   2011-10-07 08:17:30 UTC (rev 140111)
+++ glib2.csh   2011-10-07 08:18:24 UTC (rev 140112)
@@ -1 +0,0 @@
-setenv G_BROKEN_FILENAMES 1

Copied: glib2/repos/core-i686/glib2.csh (from rev 140111, glib2/trunk/glib2.csh)
===
--- glib2.csh   (rev 0)
+++ glib2.csh   2011-10-07 08:18:24 UTC (rev 140112)
@@ -0,0 +1 @@
+setenv G_BROKEN_FILENAMES 1

Deleted: glib2.sh
===
--- glib2.sh2011-10-07 08:17:30 UTC (rev 140111)
+++ glib2.sh2011-10-07 08:18:24 UTC (rev 140112)
@@ -1 +0,0 @@
-export G_BROKEN_FILENAMES=1

Copied: glib2/repos/core-i686/glib2.sh (from rev 140111, glib2/trunk/glib2.sh)
===
--- glib2.sh(rev 0)
+++ glib2.sh2011-10-07 08:18:24 UTC (rev 140112)
@@ -0,0 +1 @@
+export G_BROKEN_FILENAMES=1



[arch-commits] Commit in glib2/repos/core-x86_64 (6 files)

2011-10-07 Thread Ionut Biru
Date: Friday, October 7, 2011 @ 04:18:56
  Author: ibiru
Revision: 140113

archrelease: copy trunk to core-x86_64

Added:
  glib2/repos/core-x86_64/PKGBUILD
(from rev 140112, glib2/trunk/PKGBUILD)
  glib2/repos/core-x86_64/glib2.csh
(from rev 140112, glib2/trunk/glib2.csh)
  glib2/repos/core-x86_64/glib2.sh
(from rev 140112, glib2/trunk/glib2.sh)
Deleted:
  glib2/repos/core-x86_64/PKGBUILD
  glib2/repos/core-x86_64/glib2.csh
  glib2/repos/core-x86_64/glib2.sh

---+
 PKGBUILD  |   86 ++--
 glib2.csh |2 -
 glib2.sh  |2 -
 3 files changed, 45 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-10-07 08:18:24 UTC (rev 140112)
+++ PKGBUILD2011-10-07 08:18:56 UTC (rev 140113)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=glib2
-pkgver=2.30.0
-pkgrel=1
-pkgdesc=Common C routines used by GTK+ and other libs
-url=http://www.gtk.org/;
-arch=(i686 x86_64)
-license=('LGPL')
-depends=('pcre' 'libffi')
-makedepends=('pkgconfig' 'python2')
-optdepends=('python2: for gdbus-codegen')
-options=('!libtool' '!docs' '!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/glib/2.30/glib-${pkgver}.tar.xz
-glib2.sh
-glib2.csh)
-sha256sums=('d64c00b43409eabb89aad78501fcb1a992b002b314a4414a9bd069585cb7cdc1'
-'9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a'
-'8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3')
-
-build() {
-  cd ${srcdir}/glib-${pkgver}
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --with-pcre=system \
-  --disable-fam
-  make
-}
-
-package() {
-  cd ${srcdir}/glib-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -d ${pkgdir}/etc/profile.d
-  install -m755 ${srcdir}/glib2.sh ${pkgdir}/etc/profile.d/
-  install -m755 ${srcdir}/glib2.csh ${pkgdir}/etc/profile.d/
-
-  for _i in ${pkgdir}/etc/bash_completion.d/*; do
-  chmod -x ${_i}
-  done
-  sed -i s|#!/usr/bin/env python|#!/usr/bin/env python2| 
$pkgdir/usr/bin/gdbus-codegen
-}

Copied: glib2/repos/core-x86_64/PKGBUILD (from rev 140112, glib2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-10-07 08:18:56 UTC (rev 140113)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=glib2
+pkgver=2.30.0
+pkgrel=1
+pkgdesc=Common C routines used by GTK+ and other libs
+url=http://www.gtk.org/;
+arch=(i686 x86_64)
+license=('LGPL')
+depends=('pcre' 'libffi')
+makedepends=('pkgconfig' 'python2')
+optdepends=('python2: for gdbus-codegen')
+options=('!libtool' '!docs' '!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/glib/2.30/glib-${pkgver}.tar.xz
+glib2.sh
+glib2.csh)
+sha256sums=('d64c00b43409eabb89aad78501fcb1a992b002b314a4414a9bd069585cb7cdc1'
+'9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a'
+'8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3')
+
+build() {
+  cd ${srcdir}/glib-${pkgver}
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --with-pcre=system \
+  --disable-fam
+  make
+}
+
+package() {
+  cd ${srcdir}/glib-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -d ${pkgdir}/etc/profile.d
+  install -m755 ${srcdir}/glib2.sh ${pkgdir}/etc/profile.d/
+  install -m755 ${srcdir}/glib2.csh ${pkgdir}/etc/profile.d/
+
+  for _i in ${pkgdir}/etc/bash_completion.d/*; do
+  chmod -x ${_i}
+  done
+  sed -i s|#!/usr/bin/env python|#!/usr/bin/env python2| 
$pkgdir/usr/bin/gdbus-codegen
+}

Deleted: glib2.csh
===
--- glib2.csh   2011-10-07 08:18:24 UTC (rev 140112)
+++ glib2.csh   2011-10-07 08:18:56 UTC (rev 140113)
@@ -1 +0,0 @@
-setenv G_BROKEN_FILENAMES 1

Copied: glib2/repos/core-x86_64/glib2.csh (from rev 140112, 
glib2/trunk/glib2.csh)
===
--- glib2.csh   (rev 0)
+++ glib2.csh   2011-10-07 08:18:56 UTC (rev 140113)
@@ -0,0 +1 @@
+setenv G_BROKEN_FILENAMES 1

Deleted: glib2.sh
===
--- glib2.sh2011-10-07 08:18:24 UTC (rev 140112)
+++ glib2.sh2011-10-07 08:18:56 UTC (rev 140113)
@@ -1 +0,0 @@
-export G_BROKEN_FILENAMES=1

Copied: glib2/repos/core-x86_64/glib2.sh (from rev 140112, glib2/trunk/glib2.sh)
===
--- glib2.sh(rev 0)
+++ glib2.sh2011-10-07 08:18:56 UTC (rev 140113)
@@ -0,0 +1 @@
+export G_BROKEN_FILENAMES=1



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

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 04:31:11
  Author: eric
Revision: 140114

upgpkg: perl-event 1.20-1

Upstream update, Add check function

Modified:
  perl-event/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 08:18:56 UTC (rev 140113)
+++ PKGBUILD2011-10-07 08:31:11 UTC (rev 140114)
@@ -5,16 +5,16 @@
 
 pkgname=perl-event
 _srcname=Event
-pkgver=1.17
+pkgver=1.20
 pkgrel=1
 pkgdesc=Framework for GUI events
 arch=('i686' 'x86_64')
 license=('PerlArtistic' 'GPL')
 url=http://search.cpan.org/dist/${_srcname}/;
 depends=('perl')
-options=(!emptydirs)
+options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/J/JP/JPRIT/${_srcname}-${pkgver}.tar.gz)
-md5sums=('c58cdf7c56cd5f10a58b234d2c81295f')
+md5sums=('bdbdf6c1b235c3e13c25f3b0491c5134')
 
 build() {
   cd ${srcdir}/${_srcname}-${pkgver}
@@ -22,6 +22,10 @@
   # install module in vendor directories.
   perl Makefile.PL INSTALLDIRS=vendor
   make
+}
+
+check() {
+  cd ${srcdir}/${_srcname}-${pkgver}
   make test
 }
 
@@ -31,6 +35,6 @@
   make install DESTDIR=${pkgdir}
 
   # remove perllocal.pod and .packlist
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
+  find ${pkgdir} -name perllocal.pod -delete
+  find ${pkgdir} -name .packlist -delete
 }



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

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 04:31:40
  Author: eric
Revision: 140115

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

Added:
  perl-event/repos/extra-i686/PKGBUILD
(from rev 140114, perl-event/trunk/PKGBUILD)
  perl-event/repos/extra-x86_64/PKGBUILD
(from rev 140114, perl-event/trunk/PKGBUILD)
Deleted:
  perl-event/repos/extra-i686/PKGBUILD
  perl-event/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-07 08:31:11 UTC (rev 140114)
+++ extra-i686/PKGBUILD 2011-10-07 08:31:40 UTC (rev 140115)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: tobias tob...@archlinux.org
-# Contributor: Tobias Kieslich tob...@justdreams.de
-# Contributor: François Charette francois.archlinux.org
-
-pkgname=perl-event
-_srcname=Event
-pkgver=1.17
-pkgrel=1
-pkgdesc=Framework for GUI events
-arch=('i686' 'x86_64')
-license=('PerlArtistic' 'GPL')
-url=http://search.cpan.org/dist/${_srcname}/;
-depends=('perl')
-options=(!emptydirs)
-source=(http://search.cpan.org/CPAN/authors/id/J/JP/JPRIT/${_srcname}-${pkgver}.tar.gz)
-md5sums=('c58cdf7c56cd5f10a58b234d2c81295f')
-
-build() {
-  cd ${srcdir}/${_srcname}-${pkgver}
-
-  # install module in vendor directories.
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-  make test
-}
-
-package() {
-  cd ${srcdir}/${_srcname}-${pkgver}
-
-  make install DESTDIR=${pkgdir}
-
-  # remove perllocal.pod and .packlist
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
-}

Copied: perl-event/repos/extra-i686/PKGBUILD (from rev 140114, 
perl-event/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-07 08:31:40 UTC (rev 140115)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: tobias tob...@archlinux.org
+# Contributor: Tobias Kieslich tob...@justdreams.de
+# Contributor: François Charette francois.archlinux.org
+
+pkgname=perl-event
+_srcname=Event
+pkgver=1.20
+pkgrel=1
+pkgdesc=Framework for GUI events
+arch=('i686' 'x86_64')
+license=('PerlArtistic' 'GPL')
+url=http://search.cpan.org/dist/${_srcname}/;
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/J/JP/JPRIT/${_srcname}-${pkgver}.tar.gz)
+md5sums=('bdbdf6c1b235c3e13c25f3b0491c5134')
+
+build() {
+  cd ${srcdir}/${_srcname}-${pkgver}
+
+  # install module in vendor directories.
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd ${srcdir}/${_srcname}-${pkgver}
+  make test
+}
+
+package() {
+  cd ${srcdir}/${_srcname}-${pkgver}
+
+  make install DESTDIR=${pkgdir}
+
+  # remove perllocal.pod and .packlist
+  find ${pkgdir} -name perllocal.pod -delete
+  find ${pkgdir} -name .packlist -delete
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-07 08:31:11 UTC (rev 140114)
+++ extra-x86_64/PKGBUILD   2011-10-07 08:31:40 UTC (rev 140115)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: tobias tob...@archlinux.org
-# Contributor: Tobias Kieslich tob...@justdreams.de
-# Contributor: François Charette francois.archlinux.org
-
-pkgname=perl-event
-_srcname=Event
-pkgver=1.17
-pkgrel=1
-pkgdesc=Framework for GUI events
-arch=('i686' 'x86_64')
-license=('PerlArtistic' 'GPL')
-url=http://search.cpan.org/dist/${_srcname}/;
-depends=('perl')
-options=(!emptydirs)
-source=(http://search.cpan.org/CPAN/authors/id/J/JP/JPRIT/${_srcname}-${pkgver}.tar.gz)
-md5sums=('c58cdf7c56cd5f10a58b234d2c81295f')
-
-build() {
-  cd ${srcdir}/${_srcname}-${pkgver}
-
-  # install module in vendor directories.
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-  make test
-}
-
-package() {
-  cd ${srcdir}/${_srcname}-${pkgver}
-
-  make install DESTDIR=${pkgdir}
-
-  # remove perllocal.pod and .packlist
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
-}

Copied: perl-event/repos/extra-x86_64/PKGBUILD (from rev 140114, 
perl-event/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-10-07 08:31:40 UTC (rev 140115)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: tobias tob...@archlinux.org
+# Contributor: Tobias Kieslich tob...@justdreams.de
+# Contributor: François Charette francois.archlinux.org
+
+pkgname=perl-event
+_srcname=Event
+pkgver=1.20
+pkgrel=1
+pkgdesc=Framework for GUI events
+arch=('i686' 'x86_64')
+license=('PerlArtistic' 'GPL')
+url=http://search.cpan.org/dist/${_srcname}/;
+depends=('perl')
+options=('!emptydirs')

[arch-commits] Commit in perl-gtk2-ex-formfactory/trunk (PKGBUILD)

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 04:44:06
  Author: eric
Revision: 140116

upgpkg: perl-gtk2-ex-formfactory 0.67-1

Upstream update, Add check function

Modified:
  perl-gtk2-ex-formfactory/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 08:31:40 UTC (rev 140115)
+++ PKGBUILD2011-10-07 08:44:06 UTC (rev 140116)
@@ -4,30 +4,35 @@
 
 pkgname=perl-gtk2-ex-formfactory
 _realname=Gtk2-Ex-FormFactory
-pkgver=0.66
-pkgrel=2
+pkgver=0.67
+pkgrel=1
 pkgdesc=Framework for perl-gtk2 development
-arch=(any)
+arch=('any')
 license=('LGPL')
 url=http://www.exit1.org/${_realname}/;
 depends=('gtk2-perl' 'perl=5.10.0')
-options=(!emptydirs)
+options=('!emptydirs')
+DLAGENTS=('http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u') # curl doesn't 
work
 
source=(http://www.exit1.org/packages/${_realname}/dist/${_realname}-${pkgver}.tar.gz)
-md5sums=('1e8c18e6a3e7c2683c6af69873eb0da7')
+md5sums=('17f0cfd4957196f9928d023a4801ed5c')
 
 build() {
-  cd ${srcdir}/${_realname}-${pkgver}
+  cd ${srcdir}/${_realname}-${pkgver}
   # install module in vendor directories.
   perl Makefile.PL INSTALLDIRS=vendor
   make
+}
+
+check() {
+  cd ${srcdir}/${_realname}-${pkgver}
   make test
 }
 
 package() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  make install DESTDIR=${pkgdir}
+  cd ${srcdir}/${_realname}-${pkgver}
+  make install DESTDIR=${pkgdir}
 
   # remove perllocal.pod and .packlist
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
+  find ${pkgdir} -name perllocal.pod -delete
+  find ${pkgdir} -name .packlist -delete
 }



[arch-commits] Commit in perl-gtk2-ex-formfactory/repos/extra-any (PKGBUILD PKGBUILD)

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 04:44:17
  Author: eric
Revision: 140117

archrelease: copy trunk to extra-any

Added:
  perl-gtk2-ex-formfactory/repos/extra-any/PKGBUILD
(from rev 140116, perl-gtk2-ex-formfactory/trunk/PKGBUILD)
Deleted:
  perl-gtk2-ex-formfactory/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   71 -
 1 file changed, 38 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-10-07 08:44:06 UTC (rev 140116)
+++ PKGBUILD2011-10-07 08:44:17 UTC (rev 140117)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: tobias tob...@archlinux.org
-# Contributor: Tobias Kieslich tob...@justdreams.de
-
-pkgname=perl-gtk2-ex-formfactory
-_realname=Gtk2-Ex-FormFactory
-pkgver=0.66
-pkgrel=2
-pkgdesc=Framework for perl-gtk2 development
-arch=(any)
-license=('LGPL')
-url=http://www.exit1.org/${_realname}/;
-depends=('gtk2-perl' 'perl=5.10.0')
-options=(!emptydirs)
-source=(http://www.exit1.org/packages/${_realname}/dist/${_realname}-${pkgver}.tar.gz)
-md5sums=('1e8c18e6a3e7c2683c6af69873eb0da7')
-
-build() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  # install module in vendor directories.
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-  make test
-}
-
-package() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  make install DESTDIR=${pkgdir}
-
-  # remove perllocal.pod and .packlist
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
-}

Copied: perl-gtk2-ex-formfactory/repos/extra-any/PKGBUILD (from rev 140116, 
perl-gtk2-ex-formfactory/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-10-07 08:44:17 UTC (rev 140117)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: tobias tob...@archlinux.org
+# Contributor: Tobias Kieslich tob...@justdreams.de
+
+pkgname=perl-gtk2-ex-formfactory
+_realname=Gtk2-Ex-FormFactory
+pkgver=0.67
+pkgrel=1
+pkgdesc=Framework for perl-gtk2 development
+arch=('any')
+license=('LGPL')
+url=http://www.exit1.org/${_realname}/;
+depends=('gtk2-perl' 'perl=5.10.0')
+options=('!emptydirs')
+DLAGENTS=('http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u') # curl doesn't 
work
+source=(http://www.exit1.org/packages/${_realname}/dist/${_realname}-${pkgver}.tar.gz)
+md5sums=('17f0cfd4957196f9928d023a4801ed5c')
+
+build() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  # install module in vendor directories.
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  make test
+}
+
+package() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  make install DESTDIR=${pkgdir}
+
+  # remove perllocal.pod and .packlist
+  find ${pkgdir} -name perllocal.pod -delete
+  find ${pkgdir} -name .packlist -delete
+}



[arch-commits] Commit in linux/trunk (PKGBUILD config config.x86_64)

2011-10-07 Thread Tobias Powalowski
Date: Friday, October 7, 2011 @ 06:27:56
  Author: tpowa
Revision: 140119

upgpkg: linux 3.0.6-2

fix archiso support and change back governor to performance as default

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/config
  linux/trunk/config.x86_64

---+
 PKGBUILD  |7 +++
 config|6 +++---
 config.x86_64 |8 
 3 files changed, 10 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 09:20:22 UTC (rev 140118)
+++ PKGBUILD2011-10-07 10:27:56 UTC (rev 140119)
@@ -8,7 +8,7 @@
 _kernelname=${pkgname#linux}
 _basekernel=3.0
 pkgver=${_basekernel}.6
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/;
 license=('GPL2')
@@ -25,8 +25,8 @@
 'change-default-console-loglevel.patch')
 md5sums=('398e95866794def22b12dfbc15ce89c0'
  '792f01cc8874d03a84e47fd0e7065df8'
- '3565fb177244f965ba04bd116c6e33ab'
- '14f0e5ef7b5111e5ed1d93479bb3fa29'
+ '750c90895c49a3f42a33bcbc8d1d70f5'
+ '272092c6fb09dd503a4d70d26dbcd214'
  'eb14dcfd80c00852ef81ded6e826826a'
  '263725f20c0b9eb9c353040792d644e5'
  '9d3c56a4b999c8bfbd4018089a62f662')
@@ -281,4 +281,3 @@
   # remove a file already in linux package
   rm -f ${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile
 }
-

Modified: config
===
--- config  2011-10-07 09:20:22 UTC (rev 140118)
+++ config  2011-10-07 10:27:56 UTC (rev 140119)
@@ -514,11 +514,11 @@
 CONFIG_CPU_FREQ_TABLE=y
 CONFIG_CPU_FREQ_STAT=m
 CONFIG_CPU_FREQ_STAT_DETAILS=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
+CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
 # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
-CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
+# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
 # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
-CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_PERFORMANCE=m
 CONFIG_CPU_FREQ_GOV_POWERSAVE=m
 CONFIG_CPU_FREQ_GOV_USERSPACE=m
 CONFIG_CPU_FREQ_GOV_ONDEMAND=y

Modified: config.x86_64
===
--- config.x86_64   2011-10-07 09:20:22 UTC (rev 140118)
+++ config.x86_64   2011-10-07 10:27:56 UTC (rev 140119)
@@ -497,14 +497,14 @@
 CONFIG_CPU_FREQ_TABLE=m
 CONFIG_CPU_FREQ_STAT=m
 CONFIG_CPU_FREQ_STAT_DETAILS=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
+CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
 # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
-CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
+# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
 # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
-CONFIG_CPU_FREQ_GOV_PERFORMANCE=m
+CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
 CONFIG_CPU_FREQ_GOV_POWERSAVE=m
 CONFIG_CPU_FREQ_GOV_USERSPACE=m
-CONFIG_CPU_FREQ_GOV_ONDEMAND=y
+CONFIG_CPU_FREQ_GOV_ONDEMAND=m
 CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m
 
 #



[arch-commits] Commit in linux/repos (16 files)

2011-10-07 Thread Tobias Powalowski
Date: Friday, October 7, 2011 @ 06:30:25
  Author: tpowa
Revision: 140120

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

Added:
  linux/repos/testing-i686/
  linux/repos/testing-i686/PKGBUILD
(from rev 140119, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 140119, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 140119, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 140119, linux/trunk/config.x86_64)
  linux/repos/testing-i686/fix-i915.patch
(from rev 140119, linux/trunk/fix-i915.patch)
  linux/repos/testing-i686/linux.install
(from rev 140119, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 140119, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/PKGBUILD
(from rev 140119, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 140119, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 140119, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 140119, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/fix-i915.patch
(from rev 140119, linux/trunk/fix-i915.patch)
  linux/repos/testing-x86_64/linux.install
(from rev 140119, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 140119, linux/trunk/linux.preset)

--+
 testing-i686/PKGBUILD|  283 
 testing-i686/change-default-console-loglevel.patch   |   12 
 testing-i686/config  | 5831 +
 testing-i686/config.x86_64   | 5570 
 testing-i686/fix-i915.patch  |   26 
 testing-i686/linux.install   |   66 
 testing-i686/linux.preset|   14 
 testing-x86_64/PKGBUILD  |  283 
 testing-x86_64/change-default-console-loglevel.patch |   12 
 testing-x86_64/config| 5831 +
 testing-x86_64/config.x86_64 | 5570 
 testing-x86_64/fix-i915.patch|   26 
 testing-x86_64/linux.install |   66 
 testing-x86_64/linux.preset  |   14 
 14 files changed, 23604 insertions(+)

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


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

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 06:35:05
  Author: eric
Revision: 140121

upgpkg: python-lxml 2.3.1-1

Upstream update, Update optdepends

Modified:
  python-lxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 10:30:25 UTC (rev 140120)
+++ PKGBUILD2011-10-07 10:35:05 UTC (rev 140121)
@@ -6,18 +6,18 @@
 # Contributor: Guillem Rieu guill...@gmx.net
 
 pkgname=python-lxml
-pkgver=2.3
+pkgver=2.3.1
 pkgrel=1
 pkgdesc=Python binding for the libxml2 and libxslt libraries
 arch=('i686' 'x86_64')
 license=('BSD' 'GPL' 'custom')
 url=http://lxml.de/;
 depends=('python2' 'libxslt')
-optdepends=(beautiful-soup: support for parsing not well formed HTML)
+optdepends=('python-beautifulsoup: support for parsing not well formed HTML')
 conflicts=('lxml')
 replaces=('lxml')
 source=(http://codespeak.net/lxml/lxml-${pkgver}.tgz;)
-md5sums=('a245a015fd59b63e220005f263e1682a')
+md5sums=('87931fbf35df60cd71cfe7484b4b36ed')
 
 package() {
   cd ${srcdir}/lxml-$pkgver



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

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 06:35:34
  Author: eric
Revision: 140122

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

Added:
  python-lxml/repos/extra-i686/PKGBUILD
(from rev 140121, python-lxml/trunk/PKGBUILD)
  python-lxml/repos/extra-x86_64/PKGBUILD
(from rev 140121, python-lxml/trunk/PKGBUILD)
Deleted:
  python-lxml/repos/extra-i686/PKGBUILD
  python-lxml/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-07 10:35:05 UTC (rev 140121)
+++ extra-i686/PKGBUILD 2011-10-07 10:35:34 UTC (rev 140122)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
-# Contributor: William Rea sillywi...@gmail.com
-# Contributor: Guillem Rieu guill...@gmx.net
-
-pkgname=python-lxml
-pkgver=2.3
-pkgrel=1
-pkgdesc=Python binding for the libxml2 and libxslt libraries
-arch=('i686' 'x86_64')
-license=('BSD' 'GPL' 'custom')
-url=http://codespeak.net/lxml;
-depends=('python2' 'libxslt')
-optdepends=(beautiful-soup: support for parsing not well formed HTML)
-conflicts=('lxml')
-replaces=('lxml')
-source=(http://codespeak.net/lxml/lxml-${pkgver}.tgz;)
-md5sums=('a245a015fd59b63e220005f263e1682a')
-
-package() {
-  cd ${srcdir}/lxml-$pkgver
-
-  python2 setup.py install --root=${pkgdir} --optimize=1
-
-  install -D -m644 LICENSES.txt ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-  install -D -m644 doc/licenses/BSD.txt 
${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
-  install -D -m644 doc/licenses/elementtree.txt 
${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
-}

Copied: python-lxml/repos/extra-i686/PKGBUILD (from rev 140121, 
python-lxml/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-07 10:35:34 UTC (rev 140122)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
+# Contributor: William Rea sillywi...@gmail.com
+# Contributor: Guillem Rieu guill...@gmx.net
+
+pkgname=python-lxml
+pkgver=2.3.1
+pkgrel=1
+pkgdesc=Python binding for the libxml2 and libxslt libraries
+arch=('i686' 'x86_64')
+license=('BSD' 'GPL' 'custom')
+url=http://lxml.de/;
+depends=('python2' 'libxslt')
+optdepends=('python-beautifulsoup: support for parsing not well formed HTML')
+conflicts=('lxml')
+replaces=('lxml')
+source=(http://codespeak.net/lxml/lxml-${pkgver}.tgz;)
+md5sums=('87931fbf35df60cd71cfe7484b4b36ed')
+
+package() {
+  cd ${srcdir}/lxml-$pkgver
+
+  python2 setup.py install --root=${pkgdir} --optimize=1
+
+  install -Dm644 LICENSES.txt \
+${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 doc/licenses/BSD.txt \
+${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
+  install -Dm644 doc/licenses/elementtree.txt \
+${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-07 10:35:05 UTC (rev 140121)
+++ extra-x86_64/PKGBUILD   2011-10-07 10:35:34 UTC (rev 140122)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
-# Contributor: William Rea sillywi...@gmail.com
-# Contributor: Guillem Rieu guill...@gmx.net
-
-pkgname=python-lxml
-pkgver=2.3
-pkgrel=1
-pkgdesc=Python binding for the libxml2 and libxslt libraries
-arch=('i686' 'x86_64')
-license=('BSD' 'GPL' 'custom')
-url=http://codespeak.net/lxml;
-depends=('python2' 'libxslt')
-optdepends=(beautiful-soup: support for parsing not well formed HTML)
-conflicts=('lxml')
-replaces=('lxml')
-source=(http://codespeak.net/lxml/lxml-${pkgver}.tgz;)
-md5sums=('a245a015fd59b63e220005f263e1682a')
-
-package() {
-  cd ${srcdir}/lxml-$pkgver
-
-  python2 setup.py install --root=${pkgdir} --optimize=1
-
-  install -D -m644 LICENSES.txt ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-  install -D -m644 doc/licenses/BSD.txt 
${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
-  install -D -m644 doc/licenses/elementtree.txt 
${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
-}

Copied: python-lxml/repos/extra-x86_64/PKGBUILD (from rev 140121, 
python-lxml/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ 

[arch-commits] Commit in linux/repos (15 files)

2011-10-07 Thread Tobias Powalowski
Date: Friday, October 7, 2011 @ 10:24:54
  Author: tpowa
Revision: 140123

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

Added:
  linux/repos/core-i686/PKGBUILD
(from rev 140122, linux/repos/testing-i686/PKGBUILD)
  linux/repos/core-i686/change-default-console-loglevel.patch
(from rev 140122, 
linux/repos/testing-i686/change-default-console-loglevel.patch)
  linux/repos/core-i686/config
(from rev 140122, linux/repos/testing-i686/config)
  linux/repos/core-i686/config.x86_64
(from rev 140122, linux/repos/testing-i686/config.x86_64)
  linux/repos/core-i686/fix-i915.patch
(from rev 140122, linux/repos/testing-i686/fix-i915.patch)
  linux/repos/core-i686/linux.install
(from rev 140122, linux/repos/testing-i686/linux.install)
  linux/repos/core-i686/linux.preset
(from rev 140122, linux/repos/testing-i686/linux.preset)
Deleted:
  linux/repos/core-i686/PKGBUILD
  linux/repos/core-i686/change-default-console-loglevel.patch
  linux/repos/core-i686/config
  linux/repos/core-i686/config.x86_64
  linux/repos/core-i686/fix-i915.patch
  linux/repos/core-i686/linux.install
  linux/repos/core-i686/linux.preset
  linux/repos/testing-i686/

---+
 PKGBUILD  |  567 -
 change-default-console-loglevel.patch |   24 
 config|11662 
 config.x86_64 |11140 +++---
 fix-i915.patch|   52 
 linux.install |  132 
 linux.preset  |   28 
 7 files changed, 11802 insertions(+), 11803 deletions(-)

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


[arch-commits] Commit in linux/repos (15 files)

2011-10-07 Thread Tobias Powalowski
Date: Friday, October 7, 2011 @ 10:24:58
  Author: tpowa
Revision: 140124

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

Added:
  linux/repos/core-x86_64/PKGBUILD
(from rev 140122, linux/repos/testing-x86_64/PKGBUILD)
  linux/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 140122, 
linux/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux/repos/core-x86_64/config
(from rev 140122, linux/repos/testing-x86_64/config)
  linux/repos/core-x86_64/config.x86_64
(from rev 140122, linux/repos/testing-x86_64/config.x86_64)
  linux/repos/core-x86_64/fix-i915.patch
(from rev 140122, linux/repos/testing-x86_64/fix-i915.patch)
  linux/repos/core-x86_64/linux.install
(from rev 140122, linux/repos/testing-x86_64/linux.install)
  linux/repos/core-x86_64/linux.preset
(from rev 140122, linux/repos/testing-x86_64/linux.preset)
Deleted:
  linux/repos/core-x86_64/PKGBUILD
  linux/repos/core-x86_64/change-default-console-loglevel.patch
  linux/repos/core-x86_64/config
  linux/repos/core-x86_64/config.x86_64
  linux/repos/core-x86_64/fix-i915.patch
  linux/repos/core-x86_64/linux.install
  linux/repos/core-x86_64/linux.preset
  linux/repos/testing-x86_64/

---+
 PKGBUILD  |  567 -
 change-default-console-loglevel.patch |   24 
 config|11662 
 config.x86_64 |11140 +++---
 fix-i915.patch|   52 
 linux.install |  132 
 linux.preset  |   28 
 7 files changed, 11802 insertions(+), 11803 deletions(-)

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


[arch-commits] Commit in perl-net-ssleay/trunk (PKGBUILD)

2011-10-07 Thread Giovanni Scafora
Date: Friday, October 7, 2011 @ 11:32:12
  Author: giovanni
Revision: 140125

upgpkg: perl-net-ssleay 1.42-1

upstream release

Modified:
  perl-net-ssleay/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 14:24:58 UTC (rev 140124)
+++ PKGBUILD2011-10-07 15:32:12 UTC (rev 140125)
@@ -4,8 +4,8 @@
 
 pkgname=perl-net-ssleay
 _cpanname=Net-SSLeay
-pkgver=1.36
-pkgrel=5
+pkgver=1.42
+pkgrel=1
 pkgdesc=Perl extension for using OpenSSL
 arch=('i686' 'x86_64')
 license=('custom:BSD')
@@ -14,8 +14,8 @@
 options=(!emptydirs)
 replaces=('net-ssleay')
 provides=('net-ssleay')
-source=(http://www.cpan.org/authors/id/F/FL/FLORA/${_cpanname}-${pkgver}.tar.gz)
-md5sums=('54061638720dd6a325395331c77f21d8')
+source=(http://www.cpan.org/authors/id/M/MI/MIKEM/${_cpanname}-${pkgver}.tar.gz;)
+md5sums=('3f9c9589495301c14bfc03097388ca4f')
 
 build() {
   cd ${srcdir}/${_cpanname}-${pkgver}



[arch-commits] Commit in perl-net-ssleay/repos (4 files)

2011-10-07 Thread Giovanni Scafora
Date: Friday, October 7, 2011 @ 11:32:39
  Author: giovanni
Revision: 140126

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

Added:
  perl-net-ssleay/repos/extra-i686/PKGBUILD
(from rev 140125, perl-net-ssleay/trunk/PKGBUILD)
  perl-net-ssleay/repos/extra-x86_64/PKGBUILD
(from rev 140125, perl-net-ssleay/trunk/PKGBUILD)
Deleted:
  perl-net-ssleay/repos/extra-i686/PKGBUILD
  perl-net-ssleay/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-07 15:32:12 UTC (rev 140125)
+++ extra-i686/PKGBUILD 2011-10-07 15:32:39 UTC (rev 140126)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Manolis Tzanidakis
-
-pkgname=perl-net-ssleay
-_cpanname=Net-SSLeay
-pkgver=1.36
-pkgrel=5
-pkgdesc=Perl extension for using OpenSSL
-arch=('i686' 'x86_64')
-license=('custom:BSD')
-url=http://search.cpan.org/dist/${_cpanname}/;
-depends=('perl' 'openssl')
-options=(!emptydirs)
-replaces=('net-ssleay')
-provides=('net-ssleay')
-source=(http://www.cpan.org/authors/id/F/FL/FLORA/${_cpanname}-${pkgver}.tar.gz)
-md5sums=('54061638720dd6a325395331c77f21d8')
-
-build() {
-  cd ${srcdir}/${_cpanname}-${pkgver}
-  # install module in vendor directories.
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL -- INSTALLDIRS=vendor 
-  make  
-  make install DESTDIR=${pkgdir} 
-
-  # remove perllocal.pod and .packlist
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
-
-  install -D -m644 README ${pkgdir}/usr/share/licenses/${pkgname}/README
-}
-# vim: ts=2 sw=2 et ft=sh

Copied: perl-net-ssleay/repos/extra-i686/PKGBUILD (from rev 140125, 
perl-net-ssleay/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-07 15:32:39 UTC (rev 140126)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Manolis Tzanidakis
+
+pkgname=perl-net-ssleay
+_cpanname=Net-SSLeay
+pkgver=1.42
+pkgrel=1
+pkgdesc=Perl extension for using OpenSSL
+arch=('i686' 'x86_64')
+license=('custom:BSD')
+url=http://search.cpan.org/dist/${_cpanname}/;
+depends=('perl' 'openssl')
+options=(!emptydirs)
+replaces=('net-ssleay')
+provides=('net-ssleay')
+source=(http://www.cpan.org/authors/id/M/MI/MIKEM/${_cpanname}-${pkgver}.tar.gz;)
+md5sums=('3f9c9589495301c14bfc03097388ca4f')
+
+build() {
+  cd ${srcdir}/${_cpanname}-${pkgver}
+  # install module in vendor directories.
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL -- INSTALLDIRS=vendor 
+  make  
+  make install DESTDIR=${pkgdir} 
+
+  # remove perllocal.pod and .packlist
+  find ${pkgdir} -name perllocal.pod -delete
+  find ${pkgdir} -name .packlist -delete
+
+  install -D -m644 README ${pkgdir}/usr/share/licenses/${pkgname}/README
+}
+# vim: ts=2 sw=2 et ft=sh

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-07 15:32:12 UTC (rev 140125)
+++ extra-x86_64/PKGBUILD   2011-10-07 15:32:39 UTC (rev 140126)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Manolis Tzanidakis
-
-pkgname=perl-net-ssleay
-_cpanname=Net-SSLeay
-pkgver=1.36
-pkgrel=5
-pkgdesc=Perl extension for using OpenSSL
-arch=('i686' 'x86_64')
-license=('custom:BSD')
-url=http://search.cpan.org/dist/${_cpanname}/;
-depends=('perl' 'openssl')
-options=(!emptydirs)
-replaces=('net-ssleay')
-provides=('net-ssleay')
-source=(http://www.cpan.org/authors/id/F/FL/FLORA/${_cpanname}-${pkgver}.tar.gz)
-md5sums=('54061638720dd6a325395331c77f21d8')
-
-build() {
-  cd ${srcdir}/${_cpanname}-${pkgver}
-  # install module in vendor directories.
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL -- INSTALLDIRS=vendor 
-  make  
-  make install DESTDIR=${pkgdir} 
-
-  # remove perllocal.pod and .packlist
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
-
-  install -D -m644 README ${pkgdir}/usr/share/licenses/${pkgname}/README
-}
-# vim: ts=2 sw=2 et ft=sh

Copied: perl-net-ssleay/repos/extra-x86_64/PKGBUILD (from rev 140125, 
perl-net-ssleay/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-10-07 15:32:39 UTC (rev 140126)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Manolis Tzanidakis
+
+pkgname=perl-net-ssleay
+_cpanname=Net-SSLeay
+pkgver=1.42
+pkgrel=1
+pkgdesc=Perl extension for using OpenSSL
+arch=('i686' 'x86_64')
+license=('custom:BSD')

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

2011-10-07 Thread Giovanni Scafora
Date: Friday, October 7, 2011 @ 11:35:53
  Author: giovanni
Revision: 140127

upgpkg: perl-fcgi 0.74-1

upstream release

Modified:
  perl-fcgi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 15:32:39 UTC (rev 140126)
+++ PKGBUILD2011-10-07 15:35:53 UTC (rev 140127)
@@ -3,7 +3,7 @@
 # Contributor: François Charette firmicus ατ gmx δοτ net
 
 pkgname=perl-fcgi
-pkgver=0.73
+pkgver=0.74
 pkgrel=1
 pkgdesc=Fast CGI
 arch=('i686' 'x86_64')
@@ -11,8 +11,8 @@
 license=('GPL' 'PerlArtistic')
 depends=('perl=5.14')
 options=('!emptydirs')
-source=(http://www.cpan.org/CPAN/authors/id/F/FL/FLORA/FCGI-${pkgver}.tar.gz)
-md5sums=('b55c8b93ccd175b3c0e4473f1a6c0bdd')
+source=(http://www.cpan.org/CPAN/authors/id/F/FL/FLORA/FCGI-${pkgver}.tar.gz;)
+md5sums=('462a77a0072480fea791a4d3095eb486')
 
 build() {
   cd  ${srcdir}/FCGI-${pkgver}



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

2011-10-07 Thread Giovanni Scafora
Date: Friday, October 7, 2011 @ 11:36:23
  Author: giovanni
Revision: 140128

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

Added:
  perl-fcgi/repos/extra-i686/PKGBUILD
(from rev 140127, perl-fcgi/trunk/PKGBUILD)
  perl-fcgi/repos/extra-x86_64/PKGBUILD
(from rev 140127, perl-fcgi/trunk/PKGBUILD)
Deleted:
  perl-fcgi/repos/extra-i686/PKGBUILD
  perl-fcgi/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-07 15:35:53 UTC (rev 140127)
+++ extra-i686/PKGBUILD 2011-10-07 15:36:23 UTC (rev 140128)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-fcgi
-pkgver=0.73
-pkgrel=1
-pkgdesc=Fast CGI
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/FCGI;
-license=('GPL' 'PerlArtistic')
-depends=('perl=5.14')
-options=('!emptydirs')
-source=(http://www.cpan.org/CPAN/authors/id/F/FL/FLORA/FCGI-${pkgver}.tar.gz)
-md5sums=('b55c8b93ccd175b3c0e4473f1a6c0bdd')
-
-build() {
-  cd  ${srcdir}/FCGI-${pkgver}
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd  ${srcdir}/FCGI-${pkgver}
-  make test
-}
-
-package() {
-  cd  ${srcdir}/FCGI-${pkgver}
-  make install DESTDIR=${pkgdir}
-}

Copied: perl-fcgi/repos/extra-i686/PKGBUILD (from rev 140127, 
perl-fcgi/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-07 15:36:23 UTC (rev 140128)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-fcgi
+pkgver=0.74
+pkgrel=1
+pkgdesc=Fast CGI
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/FCGI;
+license=('GPL' 'PerlArtistic')
+depends=('perl=5.14')
+options=('!emptydirs')
+source=(http://www.cpan.org/CPAN/authors/id/F/FL/FLORA/FCGI-${pkgver}.tar.gz;)
+md5sums=('462a77a0072480fea791a4d3095eb486')
+
+build() {
+  cd  ${srcdir}/FCGI-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd  ${srcdir}/FCGI-${pkgver}
+  make test
+}
+
+package() {
+  cd  ${srcdir}/FCGI-${pkgver}
+  make install DESTDIR=${pkgdir}
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-07 15:35:53 UTC (rev 140127)
+++ extra-x86_64/PKGBUILD   2011-10-07 15:36:23 UTC (rev 140128)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-fcgi
-pkgver=0.73
-pkgrel=1
-pkgdesc=Fast CGI
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/FCGI;
-license=('GPL' 'PerlArtistic')
-depends=('perl=5.14')
-options=('!emptydirs')
-source=(http://www.cpan.org/CPAN/authors/id/F/FL/FLORA/FCGI-${pkgver}.tar.gz)
-md5sums=('b55c8b93ccd175b3c0e4473f1a6c0bdd')
-
-build() {
-  cd  ${srcdir}/FCGI-${pkgver}
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd  ${srcdir}/FCGI-${pkgver}
-  make test
-}
-
-package() {
-  cd  ${srcdir}/FCGI-${pkgver}
-  make install DESTDIR=${pkgdir}
-}

Copied: perl-fcgi/repos/extra-x86_64/PKGBUILD (from rev 140127, 
perl-fcgi/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-10-07 15:36:23 UTC (rev 140128)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-fcgi
+pkgver=0.74
+pkgrel=1
+pkgdesc=Fast CGI
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/FCGI;
+license=('GPL' 'PerlArtistic')
+depends=('perl=5.14')
+options=('!emptydirs')
+source=(http://www.cpan.org/CPAN/authors/id/F/FL/FLORA/FCGI-${pkgver}.tar.gz;)
+md5sums=('462a77a0072480fea791a4d3095eb486')
+
+build() {
+  cd  ${srcdir}/FCGI-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd  ${srcdir}/FCGI-${pkgver}
+  make test
+}
+
+package() {
+  cd  ${srcdir}/FCGI-${pkgver}
+  make install DESTDIR=${pkgdir}
+}



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

2011-10-07 Thread Giovanni Scafora
Date: Friday, October 7, 2011 @ 11:50:56
  Author: giovanni
Revision: 140129

upgpkg: vlc 1.1.12-1

upstream release

Modified:
  vlc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 15:36:23 UTC (rev 140128)
+++ PKGBUILD2011-10-07 15:50:56 UTC (rev 140129)
@@ -4,8 +4,8 @@
 # Contributor: Martin Sandsmark martin.sandsm...@kde.org
 
 pkgname=vlc
-pkgver=1.1.11
-pkgrel=5
+pkgver=1.1.12
+pkgrel=1
 pkgdesc=A multi-platform MPEG, VCD/DVD, and DivX player
 arch=('i686' 'x86_64')
 url=http://www.videolan.org/vlc/;
@@ -39,7 +39,7 @@
 options=('!libtool')
 install=vlc.install
 
source=(http://download.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('a64846d6f21ea179ae8e8bfb6f9447fe')
+md5sums=('91de1ad308c947e35380f9d747ff5713')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-10-07 Thread Giovanni Scafora
Date: Friday, October 7, 2011 @ 11:51:39
  Author: giovanni
Revision: 140130

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

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

--+
 extra-i686/PKGBUILD  |  146 ++---
 extra-i686/vlc.install   |   36 +--
 extra-x86_64/PKGBUILD|  146 ++---
 extra-x86_64/vlc.install |   36 +--
 4 files changed, 182 insertions(+), 182 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-07 15:50:56 UTC (rev 140129)
+++ extra-i686/PKGBUILD 2011-10-07 15:51:39 UTC (rev 140130)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Sarah Hay sarah...@mb.sympatico.ca
-# Contributor: Martin Sandsmark martin.sandsm...@kde.org
-
-pkgname=vlc
-pkgver=1.1.11
-pkgrel=5
-pkgdesc=A multi-platform MPEG, VCD/DVD, and DivX player
-arch=('i686' 'x86_64')
-url=http://www.videolan.org/vlc/;
-license=('GPL')
-depends=('a52dec' 'fluidsynth' 'libmtp' 'libdvbpsi' 'libxpm' 'libcdio'
- 'libdca' 'qt' 'libproxy' 'sdl_image' 'libdvdnav' 'mesa'
- 'lua' 'v4l-utils' 'libcddb' 'smbclient' 'libmatroska' 'zvbi'
- 'taglib' 'sysfsutils' 'libmpcdec' 'ffmpeg' 'faad2' 'libupnp'
- 'libshout' 'libmad' 'fribidi' 'libmpeg2' 'libmodplug'
- 'ttf-freefont' 'libxv' 'libass' 'xdg-utils' 'desktop-file-utils')
-makedepends=('avahi' 'pkgconfig' 'live-media' 'libnotify'
- 'flac' 'libtheora' 'alsa-lib' 'jack' 'kdelibs' 'udev'
- 'libraw1394' 'libdc1394' 'libavc1394' 'libva' 'libpulse'
- 'lirc-utils' 'gnutls' 'libcaca')
-optdepends=('avahi: for service discovery using bonjour protocol'
-'libnotify: for notification plugin'
-'ncurses: for ncurses interface support'
-'libdvdcss: for decoding encrypted DVDs'
-'lirc-utils: for lirc plugin'
-'libavc1394: for devices using the 1394ta AV/C'
-'libdc1394: for IEEE 1394 plugin'
-'kdelibs: KDE Solid hardware integration'
-'vdpau-video: VDPAU backend for VA API (for GPU acceleration on 
Nvidia cards)'
-'libpulse: PulseAudio support')
-conflicts=('vlc-plugin')
-replaces=('vlc-plugin')
-backup=('usr/share/vlc/http/.hosts'
-'usr/share/vlc/http/dialogs/.hosts'
-'usr/share/vlc/lua/http/.hosts'
-'usr/share/vlc/lua/http/dialogs/.hosts')
-options=('!libtool')
-install=vlc.install
-source=(http://download.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('a64846d6f21ea179ae8e8bfb6f9447fe')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  sed -i -e 's:truetype/freefont:TTF:g' modules/misc/freetype.c
-
-  ./configure --prefix=/usr \
-  --disable-rpath \
-  --enable-faad \
-  --enable-v4l \
-  --enable-snapshot \
-  --enable-dbus-control \
-  --enable-nls \
-  --enable-lirc \
-  --enable-pvr \
-  --enable-ncurses \
-  --with-live555-tree=/usr/lib/live \
-  --enable-upnp \
-  --enable-realrtsp
-  make
-}
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir}/ install
-
-  for res in 16 32 48 128; do
-install -D -m644 
${srcdir}/vlc-${pkgver}/share/icons/${res}x${res}/vlc.png \
-${pkgdir}/usr/share/icons/hicolor/${res}x${res}/apps/vlc.png
-  done
-}

Copied: vlc/repos/extra-i686/PKGBUILD (from rev 140129, vlc/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-07 15:51:39 UTC (rev 140130)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Sarah Hay sarah...@mb.sympatico.ca
+# Contributor: Martin Sandsmark martin.sandsm...@kde.org
+
+pkgname=vlc
+pkgver=1.1.12
+pkgrel=1
+pkgdesc=A multi-platform MPEG, VCD/DVD, and DivX player
+arch=('i686' 'x86_64')
+url=http://www.videolan.org/vlc/;
+license=('GPL')
+depends=('a52dec' 'fluidsynth' 'libmtp' 'libdvbpsi' 'libxpm' 'libcdio'
+ 'libdca' 'qt' 'libproxy' 'sdl_image' 'libdvdnav' 'mesa'
+ 'lua' 'v4l-utils' 'libcddb' 'smbclient' 'libmatroska' 'zvbi'
+ 'taglib' 'sysfsutils' 'libmpcdec' 'ffmpeg' 'faad2' 'libupnp'
+ 'libshout' 'libmad' 'fribidi' 'libmpeg2' 'libmodplug'
+ 

[arch-commits] Commit in perl-xml-sax/trunk (PKGBUILD perl-xml-sax.patch)

2011-10-07 Thread Giovanni Scafora
Date: Friday, October 7, 2011 @ 12:37:08
  Author: giovanni
Revision: 140131

upgpkg: perl-xml-sax 0.99-1

upstream release

Modified:
  perl-xml-sax/trunk/PKGBUILD
  perl-xml-sax/trunk/perl-xml-sax.patch

+
 PKGBUILD   |   19 +++
 perl-xml-sax.patch |9 +
 2 files changed, 16 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 15:51:39 UTC (rev 140130)
+++ PKGBUILD2011-10-07 16:37:08 UTC (rev 140131)
@@ -3,8 +3,8 @@
 # Contributor: François Charette firmicus ατ gmx δοτ net
 
 pkgname=perl-xml-sax
-pkgver=0.96
-pkgrel=3
+pkgver=0.99
+pkgrel=1
 pkgdesc=Simple API for XML
 arch=('any')
 url=http://search.cpan.org/dist/XML-SAX;
@@ -12,17 +12,20 @@
 depends=('perl=5.10.0' 'perl-xml-namespacesupport=0.03')
 options=('!emptydirs')
 install=perl-xml-sax.install
-source=(http://www.cpan.org/authors/id/G/GR/GRANTM/XML-SAX-$pkgver.tar.gz; 
'perl-xml-sax.patch') 
-md5sums=('bdcd4119a62505184e211e9dfaef0ab1'
- 'b8ad2da4195ac0eede28dfaed4d874c3')
+source=(http://www.cpan.org/authors/id/G/GR/GRANTM/XML-SAX-$pkgver.tar.gz;
+'perl-xml-sax.patch') 
+md5sums=('290f5375ae87fdebfdb5bc3854019f24'
+ 'f114c4aad3221d3e7d8314d13b84a869')
 
 build() {
-  cd  $srcdir
-  patch -p0  perl-xml-sax.patch
-
   cd  $srcdir/XML-SAX-$pkgver
+  patch -Np1 -i ${srcdir}/perl-xml-sax.patch
   PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
   make
+}
+
+check() {
+  cd  $srcdir/XML-SAX-$pkgver
   make test
 }
 

Modified: perl-xml-sax.patch
===
--- perl-xml-sax.patch  2011-10-07 15:51:39 UTC (rev 140130)
+++ perl-xml-sax.patch  2011-10-07 16:37:08 UTC (rev 140131)
@@ -1,9 +1,10 @@
 XML-SAX-0.96/Makefile.PL.orig  2008-08-04 23:07:21.0 +0200
-+++ XML-SAX-0.96/Makefile.PL   2008-12-09 11:52:24.806540909 +0100
-@@ -12,42 +12,3 @@
+--- a/Makefile.PL  2011-09-04 23:37:48.0 +0200
 b/Makefile.PL  2011-10-07 18:12:50.0 +0200
+@@ -12,43 +12,3 @@
+ 'XML::NamespaceSupport' = 0.03,
  },
  );
- 
+-
 -sub MY::install {
 -package MY;
 -my $script = shift-SUPER::install(@_);



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

2011-10-07 Thread Giovanni Scafora
Date: Friday, October 7, 2011 @ 12:37:40
  Author: giovanni
Revision: 140132

archrelease: copy trunk to extra-any

Added:
  perl-xml-sax/repos/extra-any/PKGBUILD
(from rev 140131, perl-xml-sax/trunk/PKGBUILD)
  perl-xml-sax/repos/extra-any/perl-xml-sax.install
(from rev 140131, perl-xml-sax/trunk/perl-xml-sax.install)
  perl-xml-sax/repos/extra-any/perl-xml-sax.patch
(from rev 140131, perl-xml-sax/trunk/perl-xml-sax.patch)
Deleted:
  perl-xml-sax/repos/extra-any/PKGBUILD
  perl-xml-sax/repos/extra-any/perl-xml-sax.install
  perl-xml-sax/repos/extra-any/perl-xml-sax.patch

--+
 PKGBUILD |   73 ---
 perl-xml-sax.install |   26 +-
 perl-xml-sax.patch   |   91 -
 3 files changed, 95 insertions(+), 95 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-10-07 16:37:08 UTC (rev 140131)
+++ PKGBUILD2011-10-07 16:37:40 UTC (rev 140132)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-xml-sax
-pkgver=0.96
-pkgrel=3
-pkgdesc=Simple API for XML
-arch=('any')
-url=http://search.cpan.org/dist/XML-SAX;
-license=('GPL' 'PerlArtistic')
-depends=('perl=5.10.0' 'perl-xml-namespacesupport=0.03')
-options=('!emptydirs')
-install=perl-xml-sax.install
-source=(http://www.cpan.org/authors/id/G/GR/GRANTM/XML-SAX-$pkgver.tar.gz; 
'perl-xml-sax.patch') 
-md5sums=('bdcd4119a62505184e211e9dfaef0ab1'
- 'b8ad2da4195ac0eede28dfaed4d874c3')
-
-build() {
-  cd  $srcdir
-  patch -p0  perl-xml-sax.patch
-
-  cd  $srcdir/XML-SAX-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-  make test
-}
-
-package() {
-  cd  $srcdir/XML-SAX-$pkgver
-  make install DESTDIR=$pkgdir
-
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-xml-sax/repos/extra-any/PKGBUILD (from rev 140131, 
perl-xml-sax/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-10-07 16:37:40 UTC (rev 140132)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-xml-sax
+pkgver=0.99
+pkgrel=1
+pkgdesc=Simple API for XML
+arch=('any')
+url=http://search.cpan.org/dist/XML-SAX;
+license=('GPL' 'PerlArtistic')
+depends=('perl=5.10.0' 'perl-xml-namespacesupport=0.03')
+options=('!emptydirs')
+install=perl-xml-sax.install
+source=(http://www.cpan.org/authors/id/G/GR/GRANTM/XML-SAX-$pkgver.tar.gz;
+'perl-xml-sax.patch') 
+md5sums=('290f5375ae87fdebfdb5bc3854019f24'
+ 'f114c4aad3221d3e7d8314d13b84a869')
+
+build() {
+  cd  $srcdir/XML-SAX-$pkgver
+  patch -Np1 -i ${srcdir}/perl-xml-sax.patch
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd  $srcdir/XML-SAX-$pkgver
+  make test
+}
+
+package() {
+  cd  $srcdir/XML-SAX-$pkgver
+  make install DESTDIR=$pkgdir
+
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}

Deleted: perl-xml-sax.install
===
--- perl-xml-sax.install2011-10-07 16:37:08 UTC (rev 140131)
+++ perl-xml-sax.install2011-10-07 16:37:40 UTC (rev 140132)
@@ -1,15 +0,0 @@
-post_install() {
-if [ ! -r /usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini ]; then 
-perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::SAX::PurePerl))-save_parsers() /dev/null
-fi
-}
-
-post_upgrade() {
-if [ ! -r /usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini ]; then 
-perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::SAX::PurePerl))-save_parsers() /dev/null
-fi
-}
-
-op=$1
-shift
-$op $*

Copied: perl-xml-sax/repos/extra-any/perl-xml-sax.install (from rev 140131, 
perl-xml-sax/trunk/perl-xml-sax.install)
===
--- perl-xml-sax.install(rev 0)
+++ perl-xml-sax.install2011-10-07 16:37:40 UTC (rev 140132)
@@ -0,0 +1,11 @@
+post_install() {
+if [ ! -r /usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini ]; then 
+perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::SAX::PurePerl))-save_parsers() /dev/null
+fi
+}
+
+post_upgrade() {
+if [ ! -r /usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini ]; then 
+perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::SAX::PurePerl))-save_parsers() /dev/null
+fi
+}

Deleted: perl-xml-sax.patch
===
--- perl-xml-sax.patch  2011-10-07 16:37:08 UTC (rev 140131)
+++ perl-xml-sax.patch  2011-10-07 16:37:40 UTC (rev 140132)
@@ -1,45 +0,0 @@
 XML-SAX-0.96/Makefile.PL.orig  2008-08-04 23:07:21.0 +0200
-+++ XML-SAX-0.96/Makefile.PL   

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

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 15:19:39
  Author: eric
Revision: 140133

upgpkg: acpid 2.0.12-1

Upstream update

Modified:
  acpid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 16:37:40 UTC (rev 140132)
+++ PKGBUILD2011-10-07 19:19:39 UTC (rev 140133)
@@ -5,20 +5,25 @@
 # Contributor: Jonathan Schmidt j.schm...@archlinux.us
 
 pkgname=acpid
-pkgver=2.0.10
-pkgrel=2
+pkgver=2.0.12
+pkgrel=1
 pkgdesc=A daemon for delivering ACPI power management events with netlink 
support
 arch=('i686' 'x86_64')
 url=http://tedfelix.com/linux/acpid-netlink.html;
 license=('GPL')
 depends=('bash')
+replaces=('acpid2')
+backup=('etc/acpi/handler.sh' 'etc/acpi/events/anything' 'etc/conf.d/acpid')
 source=(http://www.tedfelix.com/linux/$pkgname-$pkgver.tar.gz;
 'acpid'
 'anything'
 'handler.sh'
 'acpid.conf.d')
-replaces=('acpid2')
-backup=('etc/acpi/handler.sh' 'etc/acpi/events/anything' 'etc/conf.d/acpid')
+md5sums=('c5104722f72451f64f893b5541bd9ab4'
+ '955490c4db5233ec44461db694b873a4'
+ '2d37b98d6e74bab815604b8b48c6cfd4'
+ '24bd717aeb6b628a144b6956ff661ab0'
+ '929c6d2e91295c22ed9ec6212d7eabef')
 
 build() {
   cd ${srcdir}/$pkgname-$pkgver
@@ -36,8 +41,3 @@
 
   chmod 755 ${pkgdir}/usr/sbin/acpid
 }
-md5sums=('d5dd88bcfaa4a0bf51905e95115da6df'
- '955490c4db5233ec44461db694b873a4'
- '2d37b98d6e74bab815604b8b48c6cfd4'
- '24bd717aeb6b628a144b6956ff661ab0'
- '929c6d2e91295c22ed9ec6212d7eabef')



[arch-commits] Commit in acpid/repos (20 files)

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 15:20:48
  Author: eric
Revision: 140134

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

Added:
  acpid/repos/extra-i686/PKGBUILD
(from rev 140133, acpid/trunk/PKGBUILD)
  acpid/repos/extra-i686/acpid
(from rev 140133, acpid/trunk/acpid)
  acpid/repos/extra-i686/acpid.conf.d
(from rev 140133, acpid/trunk/acpid.conf.d)
  acpid/repos/extra-i686/anything
(from rev 140133, acpid/trunk/anything)
  acpid/repos/extra-i686/handler.sh
(from rev 140133, acpid/trunk/handler.sh)
  acpid/repos/extra-x86_64/PKGBUILD
(from rev 140133, acpid/trunk/PKGBUILD)
  acpid/repos/extra-x86_64/acpid
(from rev 140133, acpid/trunk/acpid)
  acpid/repos/extra-x86_64/acpid.conf.d
(from rev 140133, acpid/trunk/acpid.conf.d)
  acpid/repos/extra-x86_64/anything
(from rev 140133, acpid/trunk/anything)
  acpid/repos/extra-x86_64/handler.sh
(from rev 140133, acpid/trunk/handler.sh)
Deleted:
  acpid/repos/extra-i686/PKGBUILD
  acpid/repos/extra-i686/acpid
  acpid/repos/extra-i686/acpid.conf.d
  acpid/repos/extra-i686/anything
  acpid/repos/extra-i686/handler.sh
  acpid/repos/extra-x86_64/PKGBUILD
  acpid/repos/extra-x86_64/acpid
  acpid/repos/extra-x86_64/acpid.conf.d
  acpid/repos/extra-x86_64/anything
  acpid/repos/extra-x86_64/handler.sh

---+
 extra-i686/PKGBUILD   |   86 ++---
 extra-i686/acpid  |   74 -
 extra-i686/acpid.conf.d   |   10 +--
 extra-i686/anything   |6 +-
 extra-i686/handler.sh |  130 ++--
 extra-x86_64/PKGBUILD |   86 ++---
 extra-x86_64/acpid|   74 -
 extra-x86_64/acpid.conf.d |   10 +--
 extra-x86_64/anything |6 +-
 extra-x86_64/handler.sh   |  130 ++--
 10 files changed, 306 insertions(+), 306 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-07 19:19:39 UTC (rev 140133)
+++ extra-i686/PKGBUILD 2011-10-07 19:20:48 UTC (rev 140134)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: xduugu
-# Contributor: Manolis Tzanidakis
-# Contributor: Jonathan Schmidt j.schm...@archlinux.us
-
-pkgname=acpid
-pkgver=2.0.10
-pkgrel=2
-pkgdesc=A daemon for delivering ACPI power management events with netlink 
support
-arch=('i686' 'x86_64')
-url=http://tedfelix.com/linux/acpid-netlink.html;
-license=('GPL')
-depends=('bash')
-source=(http://www.tedfelix.com/linux/$pkgname-$pkgver.tar.gz;
-'acpid'
-'anything'
-'handler.sh'
-'acpid.conf.d')
-replaces=('acpid2')
-backup=('etc/acpi/handler.sh' 'etc/acpi/events/anything' 'etc/conf.d/acpid')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-
-  install -Dm755 $srcdir/acpid $pkgdir/etc/rc.d/acpid
-  install -Dm644 $srcdir/anything $pkgdir/etc/acpi/events/anything
-  install -Dm755 $srcdir/handler.sh $pkgdir/etc/acpi/handler.sh
-  install -Dm644 $srcdir/acpid.conf.d $pkgdir/etc/conf.d/acpid
-
-  chmod 755 ${pkgdir}/usr/sbin/acpid
-}
-md5sums=('d5dd88bcfaa4a0bf51905e95115da6df'
- '955490c4db5233ec44461db694b873a4'
- '2d37b98d6e74bab815604b8b48c6cfd4'
- '24bd717aeb6b628a144b6956ff661ab0'
- '929c6d2e91295c22ed9ec6212d7eabef')

Copied: acpid/repos/extra-i686/PKGBUILD (from rev 140133, acpid/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-07 19:20:48 UTC (rev 140134)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer:
+# Contributor: xduugu
+# Contributor: Manolis Tzanidakis
+# Contributor: Jonathan Schmidt j.schm...@archlinux.us
+
+pkgname=acpid
+pkgver=2.0.12
+pkgrel=1
+pkgdesc=A daemon for delivering ACPI power management events with netlink 
support
+arch=('i686' 'x86_64')
+url=http://tedfelix.com/linux/acpid-netlink.html;
+license=('GPL')
+depends=('bash')
+replaces=('acpid2')
+backup=('etc/acpi/handler.sh' 'etc/acpi/events/anything' 'etc/conf.d/acpid')
+source=(http://www.tedfelix.com/linux/$pkgname-$pkgver.tar.gz;
+'acpid'
+'anything'
+'handler.sh'
+'acpid.conf.d')
+md5sums=('c5104722f72451f64f893b5541bd9ab4'
+ '955490c4db5233ec44461db694b873a4'
+ '2d37b98d6e74bab815604b8b48c6cfd4'
+ '24bd717aeb6b628a144b6956ff661ab0'
+ '929c6d2e91295c22ed9ec6212d7eabef')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+
+  install -Dm755 $srcdir/acpid $pkgdir/etc/rc.d/acpid
+  install -Dm644 $srcdir/anything $pkgdir/etc/acpi/events/anything
+  install -Dm755 $srcdir/handler.sh $pkgdir/etc/acpi/handler.sh
+  install -Dm644 $srcdir/acpid.conf.d $pkgdir/etc/conf.d/acpid
+
+  chmod 

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

2011-10-07 Thread Angel Velásquez
Date: Friday, October 7, 2011 @ 16:30:59
  Author: angvp
Revision: 140135

upgpkg: python-pysqlite 2.6.3-1

Version bump to 2.6.3

Modified:
  python-pysqlite/trunk/ChangeLog
  python-pysqlite/trunk/PKGBUILD

---+
 ChangeLog |3 +++
 PKGBUILD  |   19 ---
 2 files changed, 15 insertions(+), 7 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2011-10-07 19:20:48 UTC (rev 140134)
+++ ChangeLog   2011-10-07 20:30:59 UTC (rev 140135)
@@ -1,3 +1,6 @@
+2011-10-07  Angel Velasquez an...@archlinux.org
+   * Updated to: 2.6.3
+   * Added check function
 
 2009-08-06  Douglas Soares de Andrade  doug...@archlinux.org
 

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 19:20:48 UTC (rev 140134)
+++ PKGBUILD2011-10-07 20:30:59 UTC (rev 140135)
@@ -1,11 +1,10 @@
 # $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
 # Contributor: Aaron Griffin aa...@archlinux.org
-# Contributor: Aaron Griffin aa...@archlinux.org
-# Maintainer: Daniel J Griffiths ghost1...@archlinux.us
-
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
 pkgname=python-pysqlite
-pkgver=2.6.0
-pkgrel=2
+pkgver=2.6.3
+pkgrel=1
 pkgdesc=A Python DB-API 2.0 interface for the SQLite embedded relational 
database engine
 license=('custom')
 arch=('i686' 'x86_64')
@@ -14,8 +13,14 @@
 replaces=('pysqlite2')
 source=(http://pysqlite.googlecode.com/files/pysqlite-${pkgver}.tar.gz \
 setup.cfg)
-md5sums=('fc92618b3b39d02e6ff10dc467c36640'
-'86dd356c65afd14a22f2f8f64a26441e')
+md5sums=('711afa1062a1d2c4a67acdf02a33d86e'
+ '86dd356c65afd14a22f2f8f64a26441e')
+
+check() {
+cd ${pkgdir}/usr/lib/python2.7/site-packages
+python2 -c from pysqlite2 import test; test.test()
+}
+
 build() {
cd ${srcdir}/pysqlite-${pkgver}
cp ${srcdir}/setup.cfg .



[arch-commits] Commit in python-pysqlite/repos (12 files)

2011-10-07 Thread Angel Velásquez
Date: Friday, October 7, 2011 @ 16:31:49
  Author: angvp
Revision: 140136

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

Added:
  python-pysqlite/repos/extra-i686/ChangeLog
(from rev 140135, python-pysqlite/trunk/ChangeLog)
  python-pysqlite/repos/extra-i686/PKGBUILD
(from rev 140135, python-pysqlite/trunk/PKGBUILD)
  python-pysqlite/repos/extra-i686/setup.cfg
(from rev 140135, python-pysqlite/trunk/setup.cfg)
  python-pysqlite/repos/extra-x86_64/ChangeLog
(from rev 140135, python-pysqlite/trunk/ChangeLog)
  python-pysqlite/repos/extra-x86_64/PKGBUILD
(from rev 140135, python-pysqlite/trunk/PKGBUILD)
  python-pysqlite/repos/extra-x86_64/setup.cfg
(from rev 140135, python-pysqlite/trunk/setup.cfg)
Deleted:
  python-pysqlite/repos/extra-i686/ChangeLog
  python-pysqlite/repos/extra-i686/PKGBUILD
  python-pysqlite/repos/extra-i686/setup.cfg
  python-pysqlite/repos/extra-x86_64/ChangeLog
  python-pysqlite/repos/extra-x86_64/PKGBUILD
  python-pysqlite/repos/extra-x86_64/setup.cfg

+
 extra-i686/ChangeLog   |   29 +++--
 extra-i686/PKGBUILD|   63 +--
 extra-i686/setup.cfg   |   10 +++
 extra-x86_64/ChangeLog |   29 +++--
 extra-x86_64/PKGBUILD  |   63 +--
 extra-x86_64/setup.cfg |   10 +++
 6 files changed, 110 insertions(+), 94 deletions(-)

Deleted: extra-i686/ChangeLog
===
--- extra-i686/ChangeLog2011-10-07 20:30:59 UTC (rev 140135)
+++ extra-i686/ChangeLog2011-10-07 20:31:49 UTC (rev 140136)
@@ -1,13 +0,0 @@
-
-2009-08-06  Douglas Soares de Andrade  doug...@archlinux.org
-
-   * Updated to: 2.5.5
-
-2009-07-19  Douglas Soares de Andrade  doug...@archlinux.org
-
-   * Updated for i686: 2.5.5
-
-2008-07-15  Douglas Soares de Andrade  doug...@archlinux.org
-
-   * Updated for i686: 2.4.1
-

Copied: python-pysqlite/repos/extra-i686/ChangeLog (from rev 140135, 
python-pysqlite/trunk/ChangeLog)
===
--- extra-i686/ChangeLog(rev 0)
+++ extra-i686/ChangeLog2011-10-07 20:31:49 UTC (rev 140136)
@@ -0,0 +1,16 @@
+2011-10-07  Angel Velasquez an...@archlinux.org
+   * Updated to: 2.6.3
+   * Added check function
+
+2009-08-06  Douglas Soares de Andrade  doug...@archlinux.org
+
+   * Updated to: 2.5.5
+
+2009-07-19  Douglas Soares de Andrade  doug...@archlinux.org
+
+   * Updated for i686: 2.5.5
+
+2008-07-15  Douglas Soares de Andrade  doug...@archlinux.org
+
+   * Updated for i686: 2.4.1
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-07 20:30:59 UTC (rev 140135)
+++ extra-i686/PKGBUILD 2011-10-07 20:31:49 UTC (rev 140136)
@@ -1,29 +0,0 @@
-# $Id$
-# Contributor: Aaron Griffin aa...@archlinux.org
-# Contributor: Aaron Griffin aa...@archlinux.org
-# Maintainer: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=python-pysqlite
-pkgver=2.6.0
-pkgrel=2
-pkgdesc=A Python DB-API 2.0 interface for the SQLite embedded relational 
database engine
-license=('custom')
-arch=('i686' 'x86_64')
-url=http://code.google.com/p/pysqlite/;
-depends=('python2' 'sqlite3')
-replaces=('pysqlite2')
-source=(http://pysqlite.googlecode.com/files/pysqlite-${pkgver}.tar.gz \
-setup.cfg)
-md5sums=('fc92618b3b39d02e6ff10dc467c36640'
-'86dd356c65afd14a22f2f8f64a26441e')
-build() {
-   cd ${srcdir}/pysqlite-${pkgver}
-   cp ${srcdir}/setup.cfg .
-   python2 setup.py install --root=${pkgdir}
-}
-
-package() {
-   cd ${srcdir}/pysqlite-${pkgver}
-   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-   rm -r ${pkgdir}/usr/pysqlite2-doc
-}

Copied: python-pysqlite/repos/extra-i686/PKGBUILD (from rev 140135, 
python-pysqlite/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-07 20:31:49 UTC (rev 140136)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+pkgname=python-pysqlite
+pkgver=2.6.3
+pkgrel=1
+pkgdesc=A Python DB-API 2.0 interface for the SQLite embedded relational 
database engine
+license=('custom')
+arch=('i686' 'x86_64')
+url=http://code.google.com/p/pysqlite/;
+depends=('python2' 'sqlite3')
+replaces=('pysqlite2')
+source=(http://pysqlite.googlecode.com/files/pysqlite-${pkgver}.tar.gz \
+setup.cfg)
+md5sums=('711afa1062a1d2c4a67acdf02a33d86e'
+ '86dd356c65afd14a22f2f8f64a26441e')
+
+check() {
+cd ${pkgdir}/usr/lib/python2.7/site-packages
+python2 -c from pysqlite2 import test; test.test()
+}
+
+build() {
+   cd 

[arch-commits] Commit in perl-mozilla-ca/trunk (PKGBUILD)

2011-10-07 Thread Justin Davis
Date: Friday, October 7, 2011 @ 17:25:51
  Author: juster
Revision: 140137

upgpkg: perl-mozilla-ca 20110914-1
Update to version 20110914.

Modified:
  perl-mozilla-ca/trunk/PKGBUILD(contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 20:31:49 UTC (rev 140136)
+++ PKGBUILD2011-10-07 21:25:51 UTC (rev 140137)
@@ -1,8 +1,8 @@
-# Maintainer : Justin juster Davis jrc...@gmail.com
-# Generator  : pbjam 0.01
+# Maintainer: Justin juster Davis jrc...@gmail.com
+# $Id$
 
 pkgname=perl-mozilla-ca
-pkgver=20110409
+pkgver=20110914
 pkgrel=1
 pkgdesc=Mozilla's CA cert bundle in PEM format
 arch=(any)
@@ -10,9 +10,9 @@
 options=(!emptydirs)
 depends=('perl=5.006')
 url=http://search.cpan.org/dist/Mozilla-CA
-source=(http://search.cpan.org/CPAN/authors/id/A/AB/ABH/Mozilla-CA-${pkgver}.tar.gz;)
-md5sums=(b68cbbc2a364de8e2c418b46126221d0)
-sha512sums=(73fab34743ae36737a6365aa07d486a033604a4be70216ceccf3c9dd4ade0ddc4bb14c14bf84132364a2eeaad56130a312c6c42463b077d119a1b471a779fe82)
+source=('http://search.cpan.org/CPAN/authors/id/A/AB/ABH/Mozilla-CA-20110914.tar.gz')
+md5sums=(10774d7598c8bb2c242669648ff663e3)
+sha512sums=(669fca6229142517408eb503a2b53dead7345b35ab8864a8c0651e0977ff2ed21908eb8825e3d338539d03ceed3b983bf8eedda9d688f121c153dcf1c21150aa)
 _distdir=${srcdir}/Mozilla-CA-${pkgver}
 
 build() {


Property changes on: perl-mozilla-ca/trunk/PKGBUILD
___
Added: svn:keywords
   + Id



[arch-commits] Commit in perl-mozilla-ca/repos (extra-any)

2011-10-07 Thread Justin Davis
Date: Friday, October 7, 2011 @ 18:03:33
  Author: juster
Revision: 140138

archrelease: remove extra-any

Deleted:
  perl-mozilla-ca/repos/extra-any/



[arch-commits] Commit in perl-mozilla-ca/repos (extra-any)

2011-10-07 Thread Justin Davis
Date: Friday, October 7, 2011 @ 18:03:43
  Author: juster
Revision: 140139

archrelease: copy trunk to extra-any

Added:
  perl-mozilla-ca/repos/extra-any/



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

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 18:03:59
  Author: eric
Revision: 140140

upgpkg: python2-httplib2 0.7.1-1

Upstream update

Modified:
  python2-httplib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 22:03:43 UTC (rev 140139)
+++ PKGBUILD2011-10-07 22:03:59 UTC (rev 140140)
@@ -7,18 +7,18 @@
 pkgbase=python2-httplib2
 pkgname=(python-httplib2 python2-httplib2)
 _pkgbasename=httplib2
-pkgver=0.6.0
-pkgrel=5
+pkgver=0.7.1
+pkgrel=1
 pkgdesc=A comprehensive HTTP client library, supporting many features
 url=http://code.google.com/p/httplib2/;
 license=('MIT')
-arch=(any)
-makedepends=(python python2)
-provides=(httplib2)
-replaces=(httplib2)
+arch=('any')
+makedepends=('python' 'python2')
+provides=('httplib2')
+replaces=('httplib2')
 source=(http://httplib2.googlecode.com/files/${_pkgbasename}-${pkgver}.tar.gz
 COPYING)
-md5sums=('04f73e296c02c9cd7151db33a2671b7c'
+md5sums=('03e798858cebbdde189b02ed97e85a45'
  'd65321d20730e3d9291dd63b43fdcda9')
 
 build() {



[arch-commits] Commit in perl-mozilla-ca/repos (extra-any)

2011-10-07 Thread Justin Davis
Date: Friday, October 7, 2011 @ 18:04:16
  Author: juster
Revision: 140141

archrelease: remove extra-any

Deleted:
  perl-mozilla-ca/repos/extra-any/



[arch-commits] Commit in python2-httplib2/repos/extra-any (4 files)

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 18:04:17
  Author: eric
Revision: 140142

archrelease: copy trunk to extra-any

Added:
  python2-httplib2/repos/extra-any/COPYING
(from rev 140140, python2-httplib2/trunk/COPYING)
  python2-httplib2/repos/extra-any/PKGBUILD
(from rev 140140, python2-httplib2/trunk/PKGBUILD)
Deleted:
  python2-httplib2/repos/extra-any/COPYING
  python2-httplib2/repos/extra-any/PKGBUILD

--+
 COPYING  |   48 -
 PKGBUILD |   88 ++---
 2 files changed, 68 insertions(+), 68 deletions(-)

Deleted: COPYING
===
--- COPYING 2011-10-07 22:04:16 UTC (rev 140141)
+++ COPYING 2011-10-07 22:04:17 UTC (rev 140142)
@@ -1,24 +0,0 @@
-Httplib2 Software License
-
-Copyright (c) 2006 by Joe Gregorio
-
-Permission is hereby granted, free of charge, to any person 
-obtaining a copy of this software and associated documentation 
-files (the Software), to deal in the Software without restriction, 
-including without limitation the rights to use, copy, modify, merge, 
-publish, distribute, sublicense, and/or sell copies of the Software, 
-and to permit persons to whom the Software is furnished to do so, 
-subject to the following conditions:
-
-The above copyright notice and this permission notice shall be 
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, 
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 
-BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 
-ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
-SOFTWARE.
-

Copied: python2-httplib2/repos/extra-any/COPYING (from rev 140140, 
python2-httplib2/trunk/COPYING)
===
--- COPYING (rev 0)
+++ COPYING 2011-10-07 22:04:17 UTC (rev 140142)
@@ -0,0 +1,24 @@
+Httplib2 Software License
+
+Copyright (c) 2006 by Joe Gregorio
+
+Permission is hereby granted, free of charge, to any person 
+obtaining a copy of this software and associated documentation 
+files (the Software), to deal in the Software without restriction, 
+including without limitation the rights to use, copy, modify, merge, 
+publish, distribute, sublicense, and/or sell copies of the Software, 
+and to permit persons to whom the Software is furnished to do so, 
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be 
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, 
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 
+BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
+SOFTWARE.
+

Deleted: PKGBUILD
===
--- PKGBUILD2011-10-07 22:04:16 UTC (rev 140141)
+++ PKGBUILD2011-10-07 22:04:17 UTC (rev 140142)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Giorgio Lando patroc...@gmail.com
-# Contributor: Nicolas Quienot niQo@aur
-# Contributor: Jesse Young jesse.yo...@gmail.com
-
-pkgbase=python2-httplib2
-pkgname=(python-httplib2 python2-httplib2)
-_pkgbasename=httplib2
-pkgver=0.6.0
-pkgrel=5
-pkgdesc=A comprehensive HTTP client library, supporting many features
-url=http://code.google.com/p/httplib2/;
-license=('MIT')
-arch=(any)
-makedepends=(python python2)
-provides=(httplib2)
-replaces=(httplib2)
-source=(http://httplib2.googlecode.com/files/${_pkgbasename}-${pkgver}.tar.gz
-COPYING)
-md5sums=('04f73e296c02c9cd7151db33a2671b7c'
- 'd65321d20730e3d9291dd63b43fdcda9')
-
-build() {
-  cd ${srcdir}
-  cp -Rpv ${_pkgbasename}-${pkgver} ${pkgname[0]}-$pkgver
-  cp -Rpv ${_pkgbasename}-${pkgver} ${pkgname[1]}-$pkgver
-}
-
-package_python-httplib2() {
-  depends=('python')
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python setup.py install --root=${pkgdir}
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 ${srcdir}/COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}
-
-package_python2-httplib2() {
-  depends=(python2)
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python2 setup.py install --root=${pkgdir}
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 ${srcdir}/COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: 

[arch-commits] Commit in perl-mozilla-ca/repos (extra-any)

2011-10-07 Thread Justin Davis
Date: Friday, October 7, 2011 @ 18:04:26
  Author: juster
Revision: 140143

archrelease: copy trunk to extra-any

Added:
  perl-mozilla-ca/repos/extra-any/



[arch-commits] Commit in perl-file-listing/repos (extra-any)

2011-10-07 Thread Justin Davis
Date: Friday, October 7, 2011 @ 18:05:54
  Author: juster
Revision: 140145

archrelease: remove extra-any

Deleted:
  perl-file-listing/repos/extra-any/



[arch-commits] Commit in perl-file-listing/repos (extra-any)

2011-10-07 Thread Justin Davis
Date: Friday, October 7, 2011 @ 18:06:04
  Author: juster
Revision: 140146

archrelease: copy trunk to extra-any

Added:
  perl-file-listing/repos/extra-any/



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

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 18:10:51
  Author: eric
Revision: 140147

upgpkg: pysmbc 1.0.11.1-1

Upstream update

Modified:
  pysmbc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 22:06:04 UTC (rev 140146)
+++ PKGBUILD2011-10-07 22:10:51 UTC (rev 140147)
@@ -3,7 +3,7 @@
 # Contributor: Shane Peelar lookatyouhacker@gm@il(d0t)c0m
 
 pkgname=pysmbc
-pkgver=1.0.11
+pkgver=1.0.11.1
 pkgrel=1
 pkgdesc=Python bindings for libsmbclient
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 license=('GPL')
 depends=('python2' 'smbclient')
 
source=(http://pypi.python.org/packages/source/p/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('8593053cfe3cc0b79d8c4ab892044d4b')
+md5sums=('97a2a9738f41f89400c510efb2c20f77')
 
 build(){
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 18:11:09
  Author: eric
Revision: 140148

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-07 22:10:51 UTC (rev 140147)
+++ extra-i686/PKGBUILD 2011-10-07 22:11:09 UTC (rev 140148)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Shane Peelar lookatyouhacker@gm@il(d0t)c0m
-
-pkgname=pysmbc
-pkgver=1.0.11
-pkgrel=1
-pkgdesc=Python bindings for libsmbclient
-arch=('i686' 'x86_64')
-url=http://pypi.python.org/pypi/pysmbc/;
-license=('GPL')
-depends=('python2' 'smbclient')
-source=(http://pypi.python.org/packages/source/p/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('8593053cfe3cc0b79d8c4ab892044d4b')
-
-build(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python2 setup.py build
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python2 setup.py install --root=$pkgdir --optimize=1
-}

Copied: pysmbc/repos/extra-i686/PKGBUILD (from rev 140147, 
pysmbc/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-07 22:11:09 UTC (rev 140148)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Shane Peelar lookatyouhacker@gm@il(d0t)c0m
+
+pkgname=pysmbc
+pkgver=1.0.11.1
+pkgrel=1
+pkgdesc=Python bindings for libsmbclient
+arch=('i686' 'x86_64')
+url=http://pypi.python.org/pypi/pysmbc/;
+license=('GPL')
+depends=('python2' 'smbclient')
+source=(http://pypi.python.org/packages/source/p/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('97a2a9738f41f89400c510efb2c20f77')
+
+build(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  python2 setup.py build
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  python2 setup.py install --root=$pkgdir --optimize=1
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-07 22:10:51 UTC (rev 140147)
+++ extra-x86_64/PKGBUILD   2011-10-07 22:11:09 UTC (rev 140148)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Shane Peelar lookatyouhacker@gm@il(d0t)c0m
-
-pkgname=pysmbc
-pkgver=1.0.11
-pkgrel=1
-pkgdesc=Python bindings for libsmbclient
-arch=('i686' 'x86_64')
-url=http://pypi.python.org/pypi/pysmbc/;
-license=('GPL')
-depends=('python2' 'smbclient')
-source=(http://pypi.python.org/packages/source/p/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('8593053cfe3cc0b79d8c4ab892044d4b')
-
-build(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python2 setup.py build
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python2 setup.py install --root=$pkgdir --optimize=1
-}

Copied: pysmbc/repos/extra-x86_64/PKGBUILD (from rev 140147, 
pysmbc/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-10-07 22:11:09 UTC (rev 140148)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Shane Peelar lookatyouhacker@gm@il(d0t)c0m
+
+pkgname=pysmbc
+pkgver=1.0.11.1
+pkgrel=1
+pkgdesc=Python bindings for libsmbclient
+arch=('i686' 'x86_64')
+url=http://pypi.python.org/pypi/pysmbc/;
+license=('GPL')
+depends=('python2' 'smbclient')
+source=(http://pypi.python.org/packages/source/p/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('97a2a9738f41f89400c510efb2c20f77')
+
+build(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  python2 setup.py build
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  python2 setup.py install --root=$pkgdir --optimize=1
+}



[arch-commits] Commit in perl-class-inspector/trunk (PKGBUILD)

2011-10-07 Thread Justin Davis
Date: Friday, October 7, 2011 @ 18:20:04
  Author: juster
Revision: 140149

upgpkg: perl-class-inspector 1.25-1
Update to version 1.25. New PKGBUILD.

Modified:
  perl-class-inspector/trunk/PKGBUILD   (contents, properties)

--+
 PKGBUILD |   59 +--
 1 file changed, 37 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 22:11:09 UTC (rev 140148)
+++ PKGBUILD2011-10-07 22:20:04 UTC (rev 140149)
@@ -1,33 +1,48 @@
-#$Id:$
+# Maintainer: Justin juster Davis jrc...@gmail.com
+# $Id$
+
 pkgname=perl-class-inspector
-_realname=Class-Inspector
-pkgver=1.24
-pkgrel=2
-pkgdesc='Get information about a class and its structure'
+pkgver=1.25
+pkgrel=1
+pkgdesc=Get information about a class and its structure
 arch=(any)
-license=('GPL' 'PerlArtistic')
-url=http://search.cpan.org/~adamk/Class-Inspector;
+license=(PerlArtistic GPL)
 options=(!emptydirs)
-depends=('perl=5.10.1')
-provides=('class-inspector=1.24' 'Class::Inspector=1.24' 
'perl-class-inspector=1.24' 'Class::Inspector::Functions=1.24' 
'perl-class-inspector-functions=1.24')
-source=(http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Class-Inspector-1.24.tar.gz)
-md5sums=('609189b49f64d329a6e413e0a6d8724a')
+depends=('perl=5.6.0')
+url=http://search.cpan.org/dist/Class-Inspector
+source=('http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Class-Inspector-1.25.tar.gz')
+md5sums=(5830bff10a0966993edd14435b8a579b)
+sha512sums=(026af5d99e0e5d8192577a6ea36214158280bceb89ca02e27a0a9609906802fcf871a021fceb762c056cad428dbcaac29305c288619692136cbf90c3a64ce560)
+_distdir=${srcdir}/Class-Inspector-${pkgver}
 
 build() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  # install module in vendor directories.
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-  make test
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+
+cd $_distdir
+/usr/bin/perl Makefile.PL
+make
+  )
 }
 
+check() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+cd $_distdir
+make test
+  )
+}
+
 package() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  make install DESTDIR=${pkgdir}
-  # remove perllocal.pod and .packlist
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
+cd $_distdir
+make DESTDIR=$pkgdir install
+find $pkgdir -name .packlist -o -name perllocal.pod -delete
 }
 
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
 # vim:set ts=2 sw=2 et:
-


Property changes on: perl-class-inspector/trunk/PKGBUILD
___
Added: svn:keywords
   + Id



[arch-commits] Commit in perl-class-inspector/repos (extra-any)

2011-10-07 Thread Justin Davis
Date: Friday, October 7, 2011 @ 18:20:06
  Author: juster
Revision: 140150

archrelease: remove extra-any

Deleted:
  perl-class-inspector/repos/extra-any/



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

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 18:27:00
  Author: eric
Revision: 140152

upgpkg: pycups 1.9.59-1

Upstream update

Modified:
  pycups/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 22:20:16 UTC (rev 140151)
+++ PKGBUILD2011-10-07 22:27:00 UTC (rev 140152)
@@ -3,15 +3,16 @@
 # Contributor: nesl247 nesl...@gmail.com
 
 pkgname=pycups
-pkgver=1.9.58
+pkgver=1.9.59
 pkgrel=1
 pkgdesc=Python CUPS Bindings
 url=http://cyberelk.net/tim/software/pycups/;
 arch=('i686' 'x86_64')
 license=('GPL')
 depends=('libcups' 'python2')
-source=(http://cyberelk.net/tim/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('320d8ce1f10dea9a3dd9054befaf6239')
+source=(http://cyberelk.net/tim/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.asc})
+md5sums=('636598c3fbf49af8df26ca9afef81559'
+ '0ae46bd1db1bf6414cb1ff11ef24d678')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-10-07 Thread Eric Bélanger
Date: Friday, October 7, 2011 @ 18:27:20
  Author: eric
Revision: 140153

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-07 22:27:00 UTC (rev 140152)
+++ extra-i686/PKGBUILD 2011-10-07 22:27:20 UTC (rev 140153)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: nesl247 nesl...@gmail.com
-
-pkgname=pycups
-pkgver=1.9.58
-pkgrel=1
-pkgdesc=Python CUPS Bindings
-url=http://cyberelk.net/tim/software/pycups/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libcups' 'python2')
-source=(http://cyberelk.net/tim/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('320d8ce1f10dea9a3dd9054befaf6239')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python2 setup.py build
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: pycups/repos/extra-i686/PKGBUILD (from rev 140152, 
pycups/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-07 22:27:20 UTC (rev 140153)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: nesl247 nesl...@gmail.com
+
+pkgname=pycups
+pkgver=1.9.59
+pkgrel=1
+pkgdesc=Python CUPS Bindings
+url=http://cyberelk.net/tim/software/pycups/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libcups' 'python2')
+source=(http://cyberelk.net/tim/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.asc})
+md5sums=('636598c3fbf49af8df26ca9afef81559'
+ '0ae46bd1db1bf6414cb1ff11ef24d678')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  python2 setup.py build
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-07 22:27:00 UTC (rev 140152)
+++ extra-x86_64/PKGBUILD   2011-10-07 22:27:20 UTC (rev 140153)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: nesl247 nesl...@gmail.com
-
-pkgname=pycups
-pkgver=1.9.58
-pkgrel=1
-pkgdesc=Python CUPS Bindings
-url=http://cyberelk.net/tim/software/pycups/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libcups' 'python2')
-source=(http://cyberelk.net/tim/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('320d8ce1f10dea9a3dd9054befaf6239')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python2 setup.py build
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: pycups/repos/extra-x86_64/PKGBUILD (from rev 140152, 
pycups/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-10-07 22:27:20 UTC (rev 140153)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: nesl247 nesl...@gmail.com
+
+pkgname=pycups
+pkgver=1.9.59
+pkgrel=1
+pkgdesc=Python CUPS Bindings
+url=http://cyberelk.net/tim/software/pycups/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libcups' 'python2')
+source=(http://cyberelk.net/tim/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.asc})
+md5sums=('636598c3fbf49af8df26ca9afef81559'
+ '0ae46bd1db1bf6414cb1ff11ef24d678')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  python2 setup.py build
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}



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

2011-10-07 Thread Andrea Scarpino
Date: Friday, October 7, 2011 @ 19:21:46
  Author: andrea
Revision: 140154

upgpkg: bluedevil 1.2.1-1

upstream release

Modified:
  bluedevil/trunk/PKGBUILD
  bluedevil/trunk/bluedevil.install

---+
 PKGBUILD  |7 ---
 bluedevil.install |1 +
 2 files changed, 5 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 22:27:20 UTC (rev 140153)
+++ PKGBUILD2011-10-07 23:21:46 UTC (rev 140154)
@@ -1,8 +1,9 @@
 # $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
 
 pkgname=bluedevil
-pkgver=1.2
+pkgver=1.2.1
 pkgrel=1
 pkgdesc='KDE bluetooth framework'
 arch=('i686' 'x86_64')
@@ -12,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('09ed36095367dd51ab8c23e0705cf411')
+md5sums=('e5f53fa306f11732f18eaed141cbd51b')
 
 build(){
   cd ${srcdir}

Modified: bluedevil.install
===
--- bluedevil.install   2011-10-07 22:27:20 UTC (rev 140153)
+++ bluedevil.install   2011-10-07 23:21:46 UTC (rev 140154)
@@ -1,5 +1,6 @@
 post_install() {
   update-mime-database usr/share/mime  /dev/null
+  update-desktop-database -q
 }
 
 post_upgrade() {



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

2011-10-07 Thread Andrea Scarpino
Date: Friday, October 7, 2011 @ 19:23:46
  Author: andrea
Revision: 140155

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

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

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

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

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

Deleted: extra-i686/bluedevil.install
===
--- extra-i686/bluedevil.install2011-10-07 23:21:46 UTC (rev 140154)
+++ extra-i686/bluedevil.install2011-10-07 23:23:46 UTC (rev 140155)
@@ -1,11 +0,0 @@
-post_install() {
-  update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

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

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-07 23:21:46 UTC (rev 140154)
+++ extra-x86_64/PKGBUILD   2011-10-07 23:23:46 UTC (rev 140155)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=bluedevil
-pkgver=1.2
-pkgrel=1
-pkgdesc='KDE bluetooth framework'
-arch=('i686' 'x86_64')
-url=https://projects.kde.org/projects/extragear/base/bluedevil;
-license=('GPL')
-depends=('kdebase-workspace' 'libbluedevil' 'obex-data-server' 'obexd-client')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('09ed36095367dd51ab8c23e0705cf411')
-
-build(){
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release 

[arch-commits] Commit in kdeplasma-applets-networkmanagement/trunk (PKGBUILD)

2011-10-07 Thread Andrea Scarpino
Date: Friday, October 7, 2011 @ 19:55:20
  Author: andrea
Revision: 140156

Fix source url to use kde.org

Modified:
  kdeplasma-applets-networkmanagement/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 23:23:46 UTC (rev 140155)
+++ PKGBUILD2011-10-07 23:55:20 UTC (rev 140156)
@@ -5,7 +5,7 @@
 pkgname=kdeplasma-applets-networkmanagement
 epoch=1
 pkgver=0.9.0beta1
-_commit=90c59c37c68920a44860ff5b8f7bcc146850efcf
+_pkgver=0.8.80
 pkgrel=1
 pkgdesc=KDE control panel and widget network connections
 arch=('i686' 'x86_64')
@@ -17,14 +17,14 @@
 optdepends=('mobile-broadband-provider-info: Database of mobile broadband 
service providers'
 'openconnect: Cisco AnyConnect compatible VPN client')
 install=${pkgname}.install
-source=(${pkgname}-${pkgver}.tar.gz::http://quickgit.kde.org/?p=networkmanagement.gita=snapshoth=${_commit};)
-md5sums=('d6100be03b9114bffc079ef4b690a33e')
+source=(ftp://ftp.kde.org/pub/kde/unstable/networkmanagement/${_pkgver}/src/networkmanagement-${_pkgver}.tar.bz2;)
+sha1sums=('4c60e4cd30f69a2bc47091b7472040e0f69c4404')
 
 build() {
   cd ${srcdir}
   mkdir build
   cd build
-  cmake ../networkmanagement \
+  cmake ../networkmanagement-${_pkgver} \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_BUILD_TYPE=Release
   make



[arch-commits] Commit in mpfr/trunk (PKGBUILD mpfr-3.1.0.p1.patch)

2011-10-07 Thread Allan McRae
Date: Friday, October 7, 2011 @ 20:50:47
  Author: allan
Revision: 140157

upgpkg: mpfr 3.1.0.p1-1

upstream patch-level update

Added:
  mpfr/trunk/mpfr-3.1.0.p1.patch
Modified:
  mpfr/trunk/PKGBUILD

-+
 PKGBUILD|   15 ---
 mpfr-3.1.0.p1.patch |   50 ++
 2 files changed, 58 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-10-07 23:55:20 UTC (rev 140156)
+++ PKGBUILD2011-10-08 00:50:47 UTC (rev 140157)
@@ -4,10 +4,9 @@
 
 pkgname=mpfr
 _pkgver=3.1.0
-pkgver=${_pkgver}
-#_patchlevel=p4
-#pkgver=${_pkgver}.${_patchlevel}
-pkgrel=2
+_patchlevel=p1
+pkgver=${_pkgver}.${_patchlevel}
+pkgrel=1
 pkgdesc=Multiple-precision floating-point library
 arch=('i686' 'x86_64')
 url=http://www.mpfr.org/;
@@ -15,12 +14,14 @@
 depends=('gmp=5.0')
 options=('!libtool')
 install=mpfr.install
-source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz)
-md5sums=('6e495841bb026481567006cec0f821c3')
+source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz
+mpfr-${_pkgver}.${_patchlevel}.patch)
+md5sums=('6e495841bb026481567006cec0f821c3'
+ 'ec988293368d4988c76f50d6a3460166')
 
 build() {
   cd ${srcdir}/${pkgname}-${_pkgver}
-  #patch -Np1 -i $srcdir/mpfr-${_pkgver}.${_patchlevel}.patch
+  patch -Np1 -i $srcdir/mpfr-${_pkgver}.${_patchlevel}.patch
   ./configure --prefix=/usr --enable-thread-safe --enable-shared
   make
 }

Added: mpfr-3.1.0.p1.patch
===
--- mpfr-3.1.0.p1.patch (rev 0)
+++ mpfr-3.1.0.p1.patch 2011-10-08 00:50:47 UTC (rev 140157)
@@ -0,0 +1,50 @@
+diff -Naurd mpfr-3.1.0-a/PATCHES mpfr-3.1.0-b/PATCHES
+--- mpfr-3.1.0-a/PATCHES   2011-10-05 21:39:57.0 +
 mpfr-3.1.0-b/PATCHES   2011-10-05 21:39:57.0 +
+@@ -0,0 +1 @@
++mpfr_unlikely
+diff -Naurd mpfr-3.1.0-a/VERSION mpfr-3.1.0-b/VERSION
+--- mpfr-3.1.0-a/VERSION   2011-10-03 08:17:15.0 +
 mpfr-3.1.0-b/VERSION   2011-10-05 21:39:57.0 +
+@@ -1 +1 @@
+-3.1.0
++3.1.0-p1
+diff -Naurd mpfr-3.1.0-a/src/mpfr-impl.h mpfr-3.1.0-b/src/mpfr-impl.h
+--- mpfr-3.1.0-a/src/mpfr-impl.h   2011-10-03 08:17:09.0 +
 mpfr-3.1.0-b/src/mpfr-impl.h   2011-10-05 21:39:57.0 +
+@@ -988,10 +988,11 @@
+  **/
+ 
+ /* Theses macros help the compiler to determine if a test is
+- * likely or unlikely. */
++   likely or unlikely. The !! is necessary in case x is larger
++   than a long. */
+ #if __MPFR_GNUC(3,0) || __MPFR_ICC(8,1,0)
+ # define MPFR_LIKELY(x) (__builtin_expect(!!(x),1))
+-# define MPFR_UNLIKELY(x) (__builtin_expect((x),0))
++# define MPFR_UNLIKELY(x) (__builtin_expect(!!(x),0))
+ #else
+ # define MPFR_LIKELY(x) (x)
+ # define MPFR_UNLIKELY(x) (x)
+diff -Naurd mpfr-3.1.0-a/src/mpfr.h mpfr-3.1.0-b/src/mpfr.h
+--- mpfr-3.1.0-a/src/mpfr.h2011-10-03 08:17:09.0 +
 mpfr-3.1.0-b/src/mpfr.h2011-10-05 21:39:57.0 +
+@@ -27,7 +27,7 @@
+ #define MPFR_VERSION_MAJOR 3
+ #define MPFR_VERSION_MINOR 1
+ #define MPFR_VERSION_PATCHLEVEL 0
+-#define MPFR_VERSION_STRING 3.1.0
++#define MPFR_VERSION_STRING 3.1.0-p1
+ 
+ /* Macros dealing with MPFR VERSION */
+ #define MPFR_VERSION_NUM(a,b,c) (((a)  16L) | ((b)  8) | (c))
+diff -Naurd mpfr-3.1.0-a/src/version.c mpfr-3.1.0-b/src/version.c
+--- mpfr-3.1.0-a/src/version.c 2011-10-03 08:17:09.0 +
 mpfr-3.1.0-b/src/version.c 2011-10-05 21:39:57.0 +
+@@ -25,5 +25,5 @@
+ const char *
+ mpfr_get_version (void)
+ {
+-  return 3.1.0;
++  return 3.1.0-p1;
+ }



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

2011-10-07 Thread Allan McRae
Date: Friday, October 7, 2011 @ 20:54:01
  Author: allan
Revision: 140158

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

Added:
  mpfr/repos/testing-i686/
  mpfr/repos/testing-i686/PKGBUILD
(from rev 140157, mpfr/trunk/PKGBUILD)
  mpfr/repos/testing-i686/mpfr-3.1.0.p1.patch
(from rev 140157, mpfr/trunk/mpfr-3.1.0.p1.patch)
  mpfr/repos/testing-i686/mpfr.install
(from rev 140157, mpfr/trunk/mpfr.install)
  mpfr/repos/testing-x86_64/
  mpfr/repos/testing-x86_64/PKGBUILD
(from rev 140157, mpfr/trunk/PKGBUILD)
  mpfr/repos/testing-x86_64/mpfr-3.1.0.p1.patch
(from rev 140157, mpfr/trunk/mpfr-3.1.0.p1.patch)
  mpfr/repos/testing-x86_64/mpfr.install
(from rev 140157, mpfr/trunk/mpfr.install)

+
 testing-i686/PKGBUILD  |   37 +
 testing-i686/mpfr-3.1.0.p1.patch   |   50 +++
 testing-i686/mpfr.install  |   20 ++
 testing-x86_64/PKGBUILD|   37 +
 testing-x86_64/mpfr-3.1.0.p1.patch |   50 +++
 testing-x86_64/mpfr.install|   20 ++
 6 files changed, 214 insertions(+)

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

Copied: mpfr/repos/testing-i686/mpfr-3.1.0.p1.patch (from rev 140157, 
mpfr/trunk/mpfr-3.1.0.p1.patch)
===
--- testing-i686/mpfr-3.1.0.p1.patch(rev 0)
+++ testing-i686/mpfr-3.1.0.p1.patch2011-10-08 00:54:01 UTC (rev 140158)
@@ -0,0 +1,50 @@
+diff -Naurd mpfr-3.1.0-a/PATCHES mpfr-3.1.0-b/PATCHES
+--- mpfr-3.1.0-a/PATCHES   2011-10-05 21:39:57.0 +
 mpfr-3.1.0-b/PATCHES   2011-10-05 21:39:57.0 +
+@@ -0,0 +1 @@
++mpfr_unlikely
+diff -Naurd mpfr-3.1.0-a/VERSION mpfr-3.1.0-b/VERSION
+--- mpfr-3.1.0-a/VERSION   2011-10-03 08:17:15.0 +
 mpfr-3.1.0-b/VERSION   2011-10-05 21:39:57.0 +
+@@ -1 +1 @@
+-3.1.0
++3.1.0-p1
+diff -Naurd mpfr-3.1.0-a/src/mpfr-impl.h mpfr-3.1.0-b/src/mpfr-impl.h
+--- mpfr-3.1.0-a/src/mpfr-impl.h   2011-10-03 08:17:09.0 +
 mpfr-3.1.0-b/src/mpfr-impl.h   2011-10-05 21:39:57.0 +
+@@ -988,10 +988,11 @@
+  **/
+ 
+ /* Theses macros help the compiler to determine if a test is
+- * likely or unlikely. */
++   likely or unlikely. The !! is necessary in case x is larger
++   than a long. */
+ #if __MPFR_GNUC(3,0) || __MPFR_ICC(8,1,0)
+ # define MPFR_LIKELY(x) (__builtin_expect(!!(x),1))
+-# define MPFR_UNLIKELY(x) (__builtin_expect((x),0))
++# define MPFR_UNLIKELY(x) (__builtin_expect(!!(x),0))
+ #else
+ # define MPFR_LIKELY(x) (x)
+ # define MPFR_UNLIKELY(x) (x)
+diff -Naurd mpfr-3.1.0-a/src/mpfr.h mpfr-3.1.0-b/src/mpfr.h
+--- mpfr-3.1.0-a/src/mpfr.h2011-10-03 08:17:09.0 +
 mpfr-3.1.0-b/src/mpfr.h2011-10-05 21:39:57.0 +
+@@ -27,7 +27,7 @@
+ #define MPFR_VERSION_MAJOR 3
+ #define MPFR_VERSION_MINOR 1
+ #define MPFR_VERSION_PATCHLEVEL 0
+-#define MPFR_VERSION_STRING 3.1.0
++#define MPFR_VERSION_STRING 3.1.0-p1
+ 
+ /* Macros dealing with MPFR VERSION */
+ #define MPFR_VERSION_NUM(a,b,c) (((a)  16L) | ((b)  8) | (c))
+diff -Naurd mpfr-3.1.0-a/src/version.c mpfr-3.1.0-b/src/version.c
+--- mpfr-3.1.0-a/src/version.c 2011-10-03 08:17:09.0 +
 mpfr-3.1.0-b/src/version.c 2011-10-05 21:39:57.0 +
+@@ -25,5 +25,5 @@
+ const char *
+ mpfr_get_version (void)
+ {
+-  return 3.1.0;
++  return 3.1.0-p1;
+ }

Copied: mpfr/repos/testing-i686/mpfr.install (from rev 140157, 
mpfr/trunk/mpfr.install)
===
--- testing-i686/mpfr.install

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

2011-10-07 Thread Giovanni Scafora
Date: Saturday, October 8, 2011 @ 01:52:28
  Author: giovanni
Revision: 140159

upgpkg: amule 10624-1

upstream release

Modified:
  amule/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-08 00:54:01 UTC (rev 140158)
+++ PKGBUILD2011-10-08 05:52:28 UTC (rev 140159)
@@ -5,7 +5,7 @@
 # Contributor: Dario 'Dax' Vilardi dax [at] deelab [dot] org
 
 pkgname=amule
-pkgver=10616
+pkgver=10624
 pkgrel=1
 pkgdesc=An eMule-like client for ed2k p2p network
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 license=('GPL')
 depends=('wxgtk' 'gd' 'geoip' 'libupnp' 'crypto++' 'libsm')
 source=(http://amule.sourceforge.net/tarballs/aMule-SVN-r${pkgver}.tar.bz2;)
-md5sums=('b94fa71f713e1bd3c39ad12b08ca8a2f')
+md5sums=('9b66eb490210a0c89d6e70c131565db0')
 
 build() {
   cd ${srcdir}/aMule-SVN-r${pkgver}



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

2011-10-07 Thread Giovanni Scafora
Date: Saturday, October 8, 2011 @ 01:52:53
  Author: giovanni
Revision: 140160

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-08 05:52:28 UTC (rev 140159)
+++ extra-i686/PKGBUILD 2011-10-08 05:52:53 UTC (rev 140160)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Henrik Ronellenfitsch seari...@web.de
-# Contributor: Alessio Sergi sergi.alessio {at} gmail.com
-# Contributor: Dario 'Dax' Vilardi dax [at] deelab [dot] org
-
-pkgname=amule
-pkgver=10616
-pkgrel=1
-pkgdesc=An eMule-like client for ed2k p2p network
-arch=('i686' 'x86_64')
-url=http://www.amule.org;
-license=('GPL')
-depends=('wxgtk' 'gd' 'geoip' 'libupnp' 'crypto++' 'libsm')
-source=(http://amule.sourceforge.net/tarballs/aMule-SVN-r${pkgver}.tar.bz2;)
-md5sums=('b94fa71f713e1bd3c39ad12b08ca8a2f')
-
-build() {
-  cd ${srcdir}/aMule-SVN-r${pkgver}
-
-  ./configure --prefix=/usr \
-  --mandir=/usr/share/man \
-  --enable-cas \
-  --enable-wxcas \
-  --enable-amule-daemon \
-  --enable-amulecmd \
-  --enable-amule-gui \
-  --enable-alc \
-  --enable-alcc \
-  --enable-webserver \
-  --disable-debug \
-  --enable-optimize \
-  --enable-ccache \
-  --enable-geoip \
-  --enable-upnp
-
-  make
-}
-
-package() {
-  cd ${srcdir}/aMule-SVN-r${pkgver}
-
-  make DESTDIR=${pkgdir}/ install
-}

Copied: amule/repos/extra-i686/PKGBUILD (from rev 140159, amule/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-08 05:52:53 UTC (rev 140160)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Henrik Ronellenfitsch seari...@web.de
+# Contributor: Alessio Sergi sergi.alessio {at} gmail.com
+# Contributor: Dario 'Dax' Vilardi dax [at] deelab [dot] org
+
+pkgname=amule
+pkgver=10624
+pkgrel=1
+pkgdesc=An eMule-like client for ed2k p2p network
+arch=('i686' 'x86_64')
+url=http://www.amule.org;
+license=('GPL')
+depends=('wxgtk' 'gd' 'geoip' 'libupnp' 'crypto++' 'libsm')
+source=(http://amule.sourceforge.net/tarballs/aMule-SVN-r${pkgver}.tar.bz2;)
+md5sums=('9b66eb490210a0c89d6e70c131565db0')
+
+build() {
+  cd ${srcdir}/aMule-SVN-r${pkgver}
+
+  ./configure --prefix=/usr \
+  --mandir=/usr/share/man \
+  --enable-cas \
+  --enable-wxcas \
+  --enable-amule-daemon \
+  --enable-amulecmd \
+  --enable-amule-gui \
+  --enable-alc \
+  --enable-alcc \
+  --enable-webserver \
+  --disable-debug \
+  --enable-optimize \
+  --enable-ccache \
+  --enable-geoip \
+  --enable-upnp
+
+  make
+}
+
+package() {
+  cd ${srcdir}/aMule-SVN-r${pkgver}
+
+  make DESTDIR=${pkgdir}/ install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-08 05:52:28 UTC (rev 140159)
+++ extra-x86_64/PKGBUILD   2011-10-08 05:52:53 UTC (rev 140160)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Henrik Ronellenfitsch seari...@web.de
-# Contributor: Alessio Sergi sergi.alessio {at} gmail.com
-# Contributor: Dario 'Dax' Vilardi dax [at] deelab [dot] org
-
-pkgname=amule
-pkgver=10616
-pkgrel=1
-pkgdesc=An eMule-like client for ed2k p2p network
-arch=('i686' 'x86_64')
-url=http://www.amule.org;
-license=('GPL')
-depends=('wxgtk' 'gd' 'geoip' 'libupnp' 'crypto++' 'libsm')
-source=(http://amule.sourceforge.net/tarballs/aMule-SVN-r${pkgver}.tar.bz2;)
-md5sums=('b94fa71f713e1bd3c39ad12b08ca8a2f')
-
-build() {
-  cd ${srcdir}/aMule-SVN-r${pkgver}
-
-  ./configure --prefix=/usr \
-  --mandir=/usr/share/man \
-  --enable-cas \
-  --enable-wxcas \
-  --enable-amule-daemon \
-  --enable-amulecmd \
-  --enable-amule-gui \
-  --enable-alc \
-  --enable-alcc \
-  --enable-webserver \
-  --disable-debug \
-  --enable-optimize \
-  --enable-ccache \
-  --enable-geoip \
-