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

2014-04-10 Thread Bartłomiej Piotrowski
Date: Thursday, April 10, 2014 @ 09:18:12
  Author: bpiotrowski
Revision: 210120

upgpkg: ffmpeg 1:2.2-3

rebuild against x265 0.9

Added:
  ffmpeg/trunk/0001-libx265-Support-API-version-9.patch
Modified:
  ffmpeg/trunk/PKGBUILD

--+
 0001-libx265-Support-API-version-9.patch |   50 +
 PKGBUILD |   13 +--
 2 files changed, 60 insertions(+), 3 deletions(-)

Added: 0001-libx265-Support-API-version-9.patch
===
--- 0001-libx265-Support-API-version-9.patch(rev 0)
+++ 0001-libx265-Support-API-version-9.patch2014-04-10 07:18:12 UTC (rev 
210120)
@@ -0,0 +1,50 @@
+From d67dbfa7c195fabce706ca03c439419450f9bd8a Mon Sep 17 00:00:00 2001
+From: Derek Buitenhuis derek.buitenh...@gmail.com
+Date: Thu, 6 Mar 2014 20:01:17 +
+Subject: [PATCH] libx265: Support API version 9
+
+Signed-off-by: Derek Buitenhuis derek.buitenh...@gmail.com
+---
+ configure|4 ++--
+ libavcodec/libx265.c |   10 +-
+ 2 files changed, 7 insertions(+), 7 deletions(-)
+
+diff --git a/configure b/configure
+index d3f5f33..4d7382a 100755
+--- a/configure
 b/configure
+@@ -3980,8 +3980,8 @@ enabled libx264require libx264 x264.h 
x264_encoder_encode -lx264 
+  { check_cpp_condition x264.h X264_BUILD = 118 
||
+die ERROR: libx264 version must be = 
0.118.; }
+ enabled libx265require_pkg_config x265 x265.h 
x265_encoder_encode 
+- { check_cpp_condition x265.h X265_BUILD = 7 ||
+-   die ERROR: libx265 version must be = 7.; }
++ { check_cpp_condition x265.h X265_BUILD = 9 ||
++   die ERROR: libx265 version must be = 9.; }
+ enabled libxavsrequire libxavs xavs.h xavs_encoder_encode -lxavs
+ enabled libxvidrequire libxvid xvid.h xvid_global -lxvidcore
+ enabled openssl{ check_lib openssl/ssl.h SSL_library_init -lssl 
-lcrypto ||
+diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c
+index 961fc74..a6e4193 100644
+--- a/libavcodec/libx265.c
 b/libavcodec/libx265.c
+@@ -121,11 +121,11 @@ static av_cold int libx265_encode_init(AVCodecContext 
*avctx)
+ av_reduce(sar_num, sar_den,
+   avctx-sample_aspect_ratio.num,
+   avctx-sample_aspect_ratio.den, 4096);
+-ctx-params-bEnableVuiParametersPresentFlag = 1;
+-ctx-params-bEnableAspectRatioIdc   = 1;
+-ctx-params-aspectRatioIdc  = 255;
+-ctx-params-sarWidth= sar_num;
+-ctx-params-sarHeight   = sar_den;
++ctx-params-vui.bEnableVuiParametersPresentFlag = 1;
++ctx-params-vui.bEnableAspectRatioIdc   = 1;
++ctx-params-vui.aspectRatioIdc  = 255;
++ctx-params-vui.sarWidth= sar_num;
++ctx-params-vui.sarHeight   = sar_den;
+ 
+ if (x265_max_bit_depth == 8)
+ ctx-params-internalBitDepth = 8;
+-- 
+1.7.10.4
+

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 04:11:29 UTC (rev 210119)
+++ PKGBUILD2014-04-10 07:18:12 UTC (rev 210120)
@@ -6,7 +6,7 @@
 
 pkgname=ffmpeg
 pkgver=2.2
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc='Complete and free Internet live audio and video broadcasting solution'
 arch=('i686' 'x86_64')
@@ -19,10 +19,17 @@
   'v4l-utils' 'x264' 'xvidcore' 'zlib' 'x265'
   )
 makedepends=('libvdpau' 'yasm')
-source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
+source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc}
+0001-libx265-Support-API-version-9.patch)
 md5sums=('744febca199548c9393b1f1ed05ccdd8'
- 'SKIP')
+ 'SKIP'
+ '4cbf9b13dc013e96be36445b4a2bfdac')
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../0001-libx265-Support-API-version-9.patch
+}
+
 build() {
   cd $pkgname-$pkgver
 



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

2014-04-10 Thread Bartłomiej Piotrowski
Date: Thursday, April 10, 2014 @ 09:18:21
  Author: bpiotrowski
Revision: 210121

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

Added:
  ffmpeg/repos/extra-i686/0001-libx265-Support-API-version-9.patch
(from rev 210120, ffmpeg/trunk/0001-libx265-Support-API-version-9.patch)
  ffmpeg/repos/extra-i686/PKGBUILD
(from rev 210120, ffmpeg/trunk/PKGBUILD)
  ffmpeg/repos/extra-x86_64/0001-libx265-Support-API-version-9.patch
(from rev 210120, ffmpeg/trunk/0001-libx265-Support-API-version-9.patch)
  ffmpeg/repos/extra-x86_64/PKGBUILD
(from rev 210120, ffmpeg/trunk/PKGBUILD)
Deleted:
  ffmpeg/repos/extra-i686/PKGBUILD
  ffmpeg/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  172 
 extra-i686/0001-libx265-Support-API-version-9.patch   |   50 
 extra-i686/PKGBUILD   |   79 ---
 extra-x86_64/0001-libx265-Support-API-version-9.patch |   50 
 extra-x86_64/PKGBUILD |   79 ---
 5 files changed, 272 insertions(+), 158 deletions(-)

Copied: ffmpeg/repos/extra-i686/0001-libx265-Support-API-version-9.patch (from 
rev 210120, ffmpeg/trunk/0001-libx265-Support-API-version-9.patch)
===
--- extra-i686/0001-libx265-Support-API-version-9.patch 
(rev 0)
+++ extra-i686/0001-libx265-Support-API-version-9.patch 2014-04-10 07:18:21 UTC 
(rev 210121)
@@ -0,0 +1,50 @@
+From d67dbfa7c195fabce706ca03c439419450f9bd8a Mon Sep 17 00:00:00 2001
+From: Derek Buitenhuis derek.buitenh...@gmail.com
+Date: Thu, 6 Mar 2014 20:01:17 +
+Subject: [PATCH] libx265: Support API version 9
+
+Signed-off-by: Derek Buitenhuis derek.buitenh...@gmail.com
+---
+ configure|4 ++--
+ libavcodec/libx265.c |   10 +-
+ 2 files changed, 7 insertions(+), 7 deletions(-)
+
+diff --git a/configure b/configure
+index d3f5f33..4d7382a 100755
+--- a/configure
 b/configure
+@@ -3980,8 +3980,8 @@ enabled libx264require libx264 x264.h 
x264_encoder_encode -lx264 
+  { check_cpp_condition x264.h X264_BUILD = 118 
||
+die ERROR: libx264 version must be = 
0.118.; }
+ enabled libx265require_pkg_config x265 x265.h 
x265_encoder_encode 
+- { check_cpp_condition x265.h X265_BUILD = 7 ||
+-   die ERROR: libx265 version must be = 7.; }
++ { check_cpp_condition x265.h X265_BUILD = 9 ||
++   die ERROR: libx265 version must be = 9.; }
+ enabled libxavsrequire libxavs xavs.h xavs_encoder_encode -lxavs
+ enabled libxvidrequire libxvid xvid.h xvid_global -lxvidcore
+ enabled openssl{ check_lib openssl/ssl.h SSL_library_init -lssl 
-lcrypto ||
+diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c
+index 961fc74..a6e4193 100644
+--- a/libavcodec/libx265.c
 b/libavcodec/libx265.c
+@@ -121,11 +121,11 @@ static av_cold int libx265_encode_init(AVCodecContext 
*avctx)
+ av_reduce(sar_num, sar_den,
+   avctx-sample_aspect_ratio.num,
+   avctx-sample_aspect_ratio.den, 4096);
+-ctx-params-bEnableVuiParametersPresentFlag = 1;
+-ctx-params-bEnableAspectRatioIdc   = 1;
+-ctx-params-aspectRatioIdc  = 255;
+-ctx-params-sarWidth= sar_num;
+-ctx-params-sarHeight   = sar_den;
++ctx-params-vui.bEnableVuiParametersPresentFlag = 1;
++ctx-params-vui.bEnableAspectRatioIdc   = 1;
++ctx-params-vui.aspectRatioIdc  = 255;
++ctx-params-vui.sarWidth= sar_num;
++ctx-params-vui.sarHeight   = sar_den;
+ 
+ if (x265_max_bit_depth == 8)
+ ctx-params-internalBitDepth = 8;
+-- 
+1.7.10.4
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-10 07:18:12 UTC (rev 210120)
+++ extra-i686/PKGBUILD 2014-04-10 07:18:21 UTC (rev 210121)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer:  Ionut Biru ib...@archlinux.org
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: Paul Mattal p...@archlinux.org
-
-pkgname=ffmpeg
-pkgver=2.2
-pkgrel=2
-epoch=1
-pkgdesc='Complete and free Internet live audio and video broadcasting solution'
-arch=('i686' 'x86_64')
-url='http://ffmpeg.org/'
-license=('GPL')
-depends=(
-  'alsa-lib' 'bzip2' 'fontconfig' 'gnutls' 'gsm' 'lame' 'libass' 'libvdpau'
-  'libbluray' 'libmodplug' 'libpulse' 'libtheora' 'libva' 'libvorbis' 
'libvpx'
-  'opencore-amr' 'openjpeg' 'opus' 'rtmpdump' 'schroedinger' 'sdl' 'speex'
-  'v4l-utils' 'x264' 'xvidcore' 'zlib' 'x265'
-  )

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

2014-04-10 Thread Bartłomiej Piotrowski
Date: Thursday, April 10, 2014 @ 09:33:31
  Author: bpiotrowski
Revision: 210123

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

Added:
  perl-dbd-mysql/repos/extra-i686/PKGBUILD
(from rev 210122, perl-dbd-mysql/trunk/PKGBUILD)
  perl-dbd-mysql/repos/extra-x86_64/PKGBUILD
(from rev 210122, perl-dbd-mysql/trunk/PKGBUILD)
Deleted:
  perl-dbd-mysql/repos/extra-i686/PKGBUILD
  perl-dbd-mysql/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-10 07:33:20 UTC (rev 210122)
+++ extra-i686/PKGBUILD 2014-04-10 07:33:31 UTC (rev 210123)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: kevin ke...@archlinux.org
-# Contributor: Eric Johnson e...@coding-zone.com
-
-pkgname=perl-dbd-mysql
-_realname=DBD-mysql
-pkgver=4.026
-pkgrel=1
-pkgdesc='Perl/CPAN DBD::mysql module for interacting with MySQL via DBD'
-arch=('i686' 'x86_64')
-license=('GPL' 'PerlArtistic')
-url=http://search.cpan.org/dist/$_realname/;
-depends=('libmariadbclient' 'perl-dbi')
-makedepends=('mariadb')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/C/CA/CAPTTOFU/${_realname}-${pkgver}.tar.gz)
-md5sums=('b18dc2795ec8628a9b84b6e5f1b58775')
-
-build() {
-  cd $_realname-$pkgver
-
-  # install module in vendor directories.
-  perl Makefile.PL INSTALLDIRS=vendor --testsocket=/tmp/socket.mysql
-  make
-}
-
-check() {
-  cd $_realname-$pkgver
-  mkdir -p /tmp/mysql_test
-  mysql_install_db \
- --basedir=/usr \
- --datadir=/tmp/mysql_test
-  mysqld -P 17999 \
- --socket=/tmp/socket.mysql \
- --datadir=/tmp/mysql_test 
-  sleep 10
-  DAEMON_PORT=$!
-  make test || true
-  kill -9 $DAEMON_PORT
-}
-
-package() {
-  cd $_realname-$pkgver
-  make install DESTDIR=$pkgdir
-}

Copied: perl-dbd-mysql/repos/extra-i686/PKGBUILD (from rev 210122, 
perl-dbd-mysql/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-10 07:33:31 UTC (rev 210123)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: kevin ke...@archlinux.org
+# Contributor: Eric Johnson e...@coding-zone.com
+
+pkgname=perl-dbd-mysql
+_realname=DBD-mysql
+pkgver=4.027
+pkgrel=1
+pkgdesc='Perl/CPAN DBD::mysql module for interacting with MySQL via DBD'
+arch=('i686' 'x86_64')
+license=('GPL' 'PerlArtistic')
+url=http://search.cpan.org/dist/$_realname/;
+depends=('libmariadbclient' 'perl-dbi')
+makedepends=('mariadb')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/C/CA/CAPTTOFU/${_realname}-${pkgver}.tar.gz)
+md5sums=('11fa6449715ba9d3fa5f4ee5ae688d6f')
+
+build() {
+  cd $_realname-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor --testsocket=/tmp/socket.mysql
+  make
+}
+
+check() {
+  cd $_realname-$pkgver
+  mkdir -p /tmp/mysql_test
+  mysql_install_db \
+ --basedir=/usr \
+ --datadir=/tmp/mysql_test
+  mysqld -P 17999 \
+ --socket=/tmp/socket.mysql \
+ --datadir=/tmp/mysql_test 
+  sleep 10
+  DAEMON_PORT=$!
+  make test || true
+  kill -9 $DAEMON_PORT
+}
+
+package() {
+  cd $_realname-$pkgver
+  make install DESTDIR=$pkgdir
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-04-10 07:33:20 UTC (rev 210122)
+++ extra-x86_64/PKGBUILD   2014-04-10 07:33:31 UTC (rev 210123)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: kevin ke...@archlinux.org
-# Contributor: Eric Johnson e...@coding-zone.com
-
-pkgname=perl-dbd-mysql
-_realname=DBD-mysql
-pkgver=4.026
-pkgrel=1
-pkgdesc='Perl/CPAN DBD::mysql module for interacting with MySQL via DBD'
-arch=('i686' 'x86_64')
-license=('GPL' 'PerlArtistic')
-url=http://search.cpan.org/dist/$_realname/;
-depends=('libmariadbclient' 'perl-dbi')
-makedepends=('mariadb')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/C/CA/CAPTTOFU/${_realname}-${pkgver}.tar.gz)
-md5sums=('b18dc2795ec8628a9b84b6e5f1b58775')
-
-build() {
-  cd $_realname-$pkgver
-
-  # install module in vendor directories.
-  perl Makefile.PL INSTALLDIRS=vendor --testsocket=/tmp/socket.mysql
-  make
-}
-
-check() {
-  cd $_realname-$pkgver
-  mkdir -p /tmp/mysql_test
-  mysql_install_db \
- --basedir=/usr \
- --datadir=/tmp/mysql_test
-  mysqld -P 17999 \
- --socket=/tmp/socket.mysql \
- --datadir=/tmp/mysql_test 
-  sleep 10
-  DAEMON_PORT=$!
-  make test || true
-  kill -9 $DAEMON_PORT
-}
-
-package() {
-  cd $_realname-$pkgver
-  make install 

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

2014-04-10 Thread Bartłomiej Piotrowski
Date: Thursday, April 10, 2014 @ 09:33:20
  Author: bpiotrowski
Revision: 210122

upgpkg: perl-dbd-mysql 4.027-1

new upstream release

Modified:
  perl-dbd-mysql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 07:18:21 UTC (rev 210121)
+++ PKGBUILD2014-04-10 07:33:20 UTC (rev 210122)
@@ -1,11 +1,11 @@
 # $Id$
-# Maintainer: Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
 # Contributor: kevin ke...@archlinux.org
 # Contributor: Eric Johnson e...@coding-zone.com
 
 pkgname=perl-dbd-mysql
 _realname=DBD-mysql
-pkgver=4.026
+pkgver=4.027
 pkgrel=1
 pkgdesc='Perl/CPAN DBD::mysql module for interacting with MySQL via DBD'
 arch=('i686' 'x86_64')
@@ -15,12 +15,10 @@
 makedepends=('mariadb')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/C/CA/CAPTTOFU/${_realname}-${pkgver}.tar.gz)
-md5sums=('b18dc2795ec8628a9b84b6e5f1b58775')
+md5sums=('11fa6449715ba9d3fa5f4ee5ae688d6f')
 
 build() {
   cd $_realname-$pkgver
-
-  # install module in vendor directories.
   perl Makefile.PL INSTALLDIRS=vendor --testsocket=/tmp/socket.mysql
   make
 }



[arch-commits] Commit in mongodb/trunk (PKGBUILD removeWerror.patch)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 09:45:33
  Author: fyan
Revision: 109069

upgpkg: mongodb 2.6.0-1

- new major release, no c++ driver since this version

Modified:
  mongodb/trunk/PKGBUILD
  mongodb/trunk/removeWerror.patch

+
 PKGBUILD   |   19 +--
 removeWerror.patch |   22 ++
 2 files changed, 15 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 04:03:04 UTC (rev 109068)
+++ PKGBUILD2014-04-10 07:45:33 UTC (rev 109069)
@@ -6,13 +6,13 @@
 # Contributor: Alec Thomas
 
 pkgname=mongodb
-pkgver=2.4.10
+pkgver=2.6.0
 pkgrel=1
 pkgdesc='A high-performance, open source, schema-free document-oriented 
database'
 arch=('i686' 'x86_64')
 url='http://www.mongodb.org'
 license=('AGPL3')
-depends=('boost-libs' 'pcre' 'snappy' 'openssl' 'gperftools') # 'libsasl')
+depends=('boost-libs' 'pcre' 'snappy' 'openssl' 'gperftools' 'libsasl') # 
'libyaml' 'yaml-cpp' 'v8')
 makedepends=('scons' 'boost' 'readline' 'ncurses' 'libpcap')
 checkdepends=('python2-pymongo')
 optdepends=('libpcap: needed for mongosniff')
@@ -35,9 +35,9 @@
 --use-system-pcre \
 --use-system-snappy \
 --use-system-tcmalloc \
---ssl \
---sharedclient
-# --use-sasl-client
+--use-sasl-client \
+--ssl
+# --use-system-yaml
 # --use-system-v8
 }
 
@@ -60,11 +60,10 @@
 --use-system-pcre \
 --use-system-snappy \
 --use-system-tcmalloc \
+--use-sasl-client \
 --ssl \
---sharedclient \
---full \
 --prefix=$pkgdir/usr
-# --use-sasl-client
+# --use-system-yaml
 # --use-system-v8
 
   install -Dm644 $srcdir/mongodb.conf $pkgdir/etc/mongodb.conf
@@ -73,7 +72,7 @@
   install -dm755 $pkgdir/var/log/mongodb
 }
 
-sha512sums=('970364dda2dba18bf979a0fc8291d9656b3cc3ba0aec1ca26d81f14f833e355c023d19b3cfaa81704013bf2c0e732d72de08b0f8236dafe85a3ac4d51b87edc6'
+sha512sums=('60747ebd2fce9cffdb6b5ea3472a4efa46cd7e1ee38aee2a806a15667b5d86a61da89bf176876553ab348c0f3b3b925125921330b333a8349275e6ce79ccd337'
 
'05dead727d3ea5fe8af1a3c3888693f6b3e2b8cb7f197a5d793352e10d2c524e96c9a5c55ad2e88c1114643a9612ec0b26a2574b48a5260a9b51ec8941461f1c'
 
'177251404b2e818ae2b546fe8b13cb76e348c99e85c7bef22a04b0f07b600fd515a309ede50214f4198594388a6d2b31f46e945b9dae84aabb4dfa13b1123bb9'
-
'e709f76fa71a10d6b72d2eeae65d715e0a0a7e6cb93704114f22db8662d7102de77bd1e6706049351beb159aaa04548cfe4b14fe6ee498a166c5ad54c8275f84')
+'SKIP')

Modified: removeWerror.patch
===
--- removeWerror.patch  2014-04-10 04:03:04 UTC (rev 109068)
+++ removeWerror.patch  2014-04-10 07:45:33 UTC (rev 109069)
@@ -1,21 +1,11 @@
 a/SConstruct   2013-03-16 02:59:55.0 +0800
-+++ b/SConstruct   2013-03-20 10:55:20.009645869 +0800
-@@ -692,7 +692,7 @@
+--- a/SConstruct   2014-04-08 22:55:57.206075327 +0800
 b/SConstruct   2014-04-08 22:57:58.692240224 +0800
+@@ -819,7 +819,7 @@
   -Winvalid-pch] )
  # env.Append(  -Wconversion ) TODO: this doesn't really work yet
- if linux:
+ if linux or darwin:
 -env.Append( CCFLAGS=[-Werror, -pipe] )
 +env.Append( CCFLAGS=[-pipe] )
- if not has_option('clang'):
- env.Append( CCFLAGS=[-fno-builtin-memcmp] ) # glibc's memcmp is 
faster than gcc's
  
 a/src/third_party/v8/SConscript2013-04-17 03:21:23.0 +0800
-+++ b/src/third_party/v8/SConscript2013-04-18 17:41:29.878618892 +0800
-@@ -47,7 +47,6 @@
-   'gcc': {
- 'all': {
-   'CCFLAGS':  ['-Wall',
--   '-Werror',
-'-W',
-'-Wno-unused-parameter',
-'-Woverloaded-virtual',
+ env.Append( CPPDEFINES=[_FILE_OFFSET_BITS=64] )
+ env.Append( CXXFLAGS=[-Wnon-virtual-dtor, -Woverloaded-virtual] )



[arch-commits] Commit in mongodb/repos (14 files)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 09:48:03
  Author: fyan
Revision: 109070

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

Added:
  mongodb/repos/community-testing-i686/
  mongodb/repos/community-testing-i686/PKGBUILD
(from rev 109069, mongodb/trunk/PKGBUILD)
  mongodb/repos/community-testing-i686/SConscript.client.patch
(from rev 109069, mongodb/trunk/SConscript.client.patch)
  mongodb/repos/community-testing-i686/mongodb.conf
(from rev 109069, mongodb/trunk/mongodb.conf)
  mongodb/repos/community-testing-i686/mongodb.install
(from rev 109069, mongodb/trunk/mongodb.install)
  mongodb/repos/community-testing-i686/mongodb.service
(from rev 109069, mongodb/trunk/mongodb.service)
  mongodb/repos/community-testing-i686/removeWerror.patch
(from rev 109069, mongodb/trunk/removeWerror.patch)
  mongodb/repos/community-testing-x86_64/
  mongodb/repos/community-testing-x86_64/PKGBUILD
(from rev 109069, mongodb/trunk/PKGBUILD)
  mongodb/repos/community-testing-x86_64/SConscript.client.patch
(from rev 109069, mongodb/trunk/SConscript.client.patch)
  mongodb/repos/community-testing-x86_64/mongodb.conf
(from rev 109069, mongodb/trunk/mongodb.conf)
  mongodb/repos/community-testing-x86_64/mongodb.install
(from rev 109069, mongodb/trunk/mongodb.install)
  mongodb/repos/community-testing-x86_64/mongodb.service
(from rev 109069, mongodb/trunk/mongodb.service)
  mongodb/repos/community-testing-x86_64/removeWerror.patch
(from rev 109069, mongodb/trunk/removeWerror.patch)

--+
 community-testing-i686/PKGBUILD  |   78 +
 community-testing-i686/SConscript.client.patch   |   13 +++
 community-testing-i686/mongodb.conf  |8 ++
 community-testing-i686/mongodb.install   |   32 
 community-testing-i686/mongodb.service   |   10 ++
 community-testing-i686/removeWerror.patch|   11 ++
 community-testing-x86_64/PKGBUILD|   78 +
 community-testing-x86_64/SConscript.client.patch |   13 +++
 community-testing-x86_64/mongodb.conf|8 ++
 community-testing-x86_64/mongodb.install |   32 
 community-testing-x86_64/mongodb.service |   10 ++
 community-testing-x86_64/removeWerror.patch  |   11 ++
 12 files changed, 304 insertions(+)

Copied: mongodb/repos/community-testing-i686/PKGBUILD (from rev 109069, 
mongodb/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-04-10 07:48:03 UTC (rev 109070)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Mathias Stearn math...@10gen.com
+# Contributor: Alec Thomas
+
+pkgname=mongodb
+pkgver=2.6.0
+pkgrel=1
+pkgdesc='A high-performance, open source, schema-free document-oriented 
database'
+arch=('i686' 'x86_64')
+url='http://www.mongodb.org'
+license=('AGPL3')
+depends=('boost-libs' 'pcre' 'snappy' 'openssl' 'gperftools' 'libsasl') # 
'libyaml' 'yaml-cpp' 'v8')
+makedepends=('scons' 'boost' 'readline' 'ncurses' 'libpcap')
+checkdepends=('python2-pymongo')
+optdepends=('libpcap: needed for mongosniff')
+backup=('etc/mongodb.conf')
+install=mongodb.install
+source=(http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz;
+'mongodb.conf' 'mongodb.service' 'removeWerror.patch')
+
+build() {
+  # fucking mongo aint no fun to package
+  export SCONSFLAGS=$MAKEFLAGS
+
+  cd mongodb-src-r${pkgver}
+
+  # failed to build with -Werror since 2.4.0
+  patch -Np1 -i $srcdir/removeWerror.patch
+
+  scons all \
+--use-system-boost \
+--use-system-pcre \
+--use-system-snappy \
+--use-system-tcmalloc \
+--use-sasl-client \
+--ssl
+# --use-system-yaml
+# --use-system-v8
+}
+
+check() {
+  # Tests not passing
+  export SCONSFLAGS=$MAKEFLAGS
+
+  cd mongodb-src-r${pkgver}
+
+  #scons smokeAll --smokedbprefix=$srcdir
+}
+
+package() {
+  export SCONSFLAGS=$MAKEFLAGS
+
+  cd mongodb-src-r${pkgver}
+
+  scons install \
+--use-system-boost \
+--use-system-pcre \
+--use-system-snappy \
+--use-system-tcmalloc \
+--use-sasl-client \
+--ssl \
+--prefix=$pkgdir/usr
+# --use-system-yaml
+# --use-system-v8
+
+  install -Dm644 $srcdir/mongodb.conf $pkgdir/etc/mongodb.conf
+  install -Dm644 $srcdir/mongodb.service 
$pkgdir/usr/lib/systemd/system/mongodb.service
+  install -dm700 $pkgdir/var/lib/mongodb
+  install -dm755 $pkgdir/var/log/mongodb
+}
+
+sha512sums=('60747ebd2fce9cffdb6b5ea3472a4efa46cd7e1ee38aee2a806a15667b5d86a61da89bf176876553ab348c0f3b3b925125921330b333a8349275e6ce79ccd337'
+

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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 09:50:35
  Author: fyan
Revision: 109071

upgpkg: php-mongo 1.5.1-1

Modified:
  php-mongo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 07:48:03 UTC (rev 109070)
+++ PKGBUILD2014-04-10 07:50:35 UTC (rev 109071)
@@ -2,7 +2,7 @@
 # Contributor: Jarek Sedlacek jareksedla...@gmail.com
 
 pkgname=php-mongo
-pkgver=1.4.5
+pkgver=1.5.1
 pkgrel=1
 pkgdesc=Officially supported PHP driver for MongoDB
 arch=(i686 x86_64)
@@ -26,5 +26,6 @@
make INSTALL_ROOT=$pkgdir install
install -Dm644 $srcdir/mongo.ini $pkgdir/etc/php/conf.d/mongo.ini
 }
-sha256sums=('45b20d4fc37e2ce1bc85dfb79418993ecfe61c519d6ad24e7d28cb4e1b380a55'
+
+sha256sums=('883aad17c44e8f053b10c8e31d7ff6487d5b5660ea8bd17a7b62976e988c4ea4'
 'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 09:53:33
  Author: fyan
Revision: 109072

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

Added:
  php-mongo/repos/community-i686/PKGBUILD
(from rev 109071, php-mongo/trunk/PKGBUILD)
  php-mongo/repos/community-i686/mongo.ini
(from rev 109071, php-mongo/trunk/mongo.ini)
  php-mongo/repos/community-x86_64/PKGBUILD
(from rev 109071, php-mongo/trunk/PKGBUILD)
  php-mongo/repos/community-x86_64/mongo.ini
(from rev 109071, php-mongo/trunk/mongo.ini)
Deleted:
  php-mongo/repos/community-i686/PKGBUILD
  php-mongo/repos/community-i686/mongo.ini
  php-mongo/repos/community-x86_64/PKGBUILD
  php-mongo/repos/community-x86_64/mongo.ini

+
 /PKGBUILD  |   62 +++
 /mongo.ini |   56 ++
 community-i686/PKGBUILD|   30 
 community-i686/mongo.ini   |   28 ---
 community-x86_64/PKGBUILD  |   30 
 community-x86_64/mongo.ini |   28 ---
 6 files changed, 118 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-10 07:50:35 UTC (rev 109071)
+++ community-i686/PKGBUILD 2014-04-10 07:53:33 UTC (rev 109072)
@@ -1,30 +0,0 @@
-# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Jarek Sedlacek jareksedla...@gmail.com
-
-pkgname=php-mongo
-pkgver=1.4.5
-pkgrel=1
-pkgdesc=Officially supported PHP driver for MongoDB
-arch=(i686 x86_64)
-url=http://www.mongodb.org/display/DOCS/PHP+Language+Center;
-license=(APACHE)
-depends=(php)
-backup=(etc/php/conf.d/mongo.ini)
-source=(
-   http://pecl.php.net/get/mongo-$pkgver.tgz;
-   mongo.ini
-)
-
-build() {
-   cd mongo-$pkgver
-   phpize
-   ./configure --prefix=/usr --enable-mongo
-}
-
-package() {
-   cd mongo-$pkgver
-   make INSTALL_ROOT=$pkgdir install
-   install -Dm644 $srcdir/mongo.ini $pkgdir/etc/php/conf.d/mongo.ini
-}
-sha256sums=('45b20d4fc37e2ce1bc85dfb79418993ecfe61c519d6ad24e7d28cb4e1b380a55'
-'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')

Copied: php-mongo/repos/community-i686/PKGBUILD (from rev 109071, 
php-mongo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-10 07:53:33 UTC (rev 109072)
@@ -0,0 +1,31 @@
+# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Contributor: Jarek Sedlacek jareksedla...@gmail.com
+
+pkgname=php-mongo
+pkgver=1.5.1
+pkgrel=1
+pkgdesc=Officially supported PHP driver for MongoDB
+arch=(i686 x86_64)
+url=http://www.mongodb.org/display/DOCS/PHP+Language+Center;
+license=(APACHE)
+depends=(php)
+backup=(etc/php/conf.d/mongo.ini)
+source=(
+   http://pecl.php.net/get/mongo-$pkgver.tgz;
+   mongo.ini
+)
+
+build() {
+   cd mongo-$pkgver
+   phpize
+   ./configure --prefix=/usr --enable-mongo
+}
+
+package() {
+   cd mongo-$pkgver
+   make INSTALL_ROOT=$pkgdir install
+   install -Dm644 $srcdir/mongo.ini $pkgdir/etc/php/conf.d/mongo.ini
+}
+
+sha256sums=('883aad17c44e8f053b10c8e31d7ff6487d5b5660ea8bd17a7b62976e988c4ea4'
+'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')

Deleted: community-i686/mongo.ini
===
--- community-i686/mongo.ini2014-04-10 07:50:35 UTC (rev 109071)
+++ community-i686/mongo.ini2014-04-10 07:53:33 UTC (rev 109072)
@@ -1,28 +0,0 @@
-; Tell PHP to load the Mongo Extension on startup
-extension=mongo.so
-
-[mongo]
-; If the driver should reconnect to mongo
-mongo.auto_reconnect = False
-
-; Whether to allow persistent connections
-mongo.allow_persistent = On
-
-; Maximum number of persistent connections (-1 means unlimited)
-mongo.max_persistent = -1
-
-; Maximum number of links (persistent and non-persistent, -1 means unlimited)
-mongo.max_connections = -1
-
-; Default host for mongo connection
-mongo.default_host = localhost
-
-; Default port for mongo database
-mongo.default_port = 27017
-
-; When saving files to the database, size of chunks to split them into
-mongo.chunk_size = 262400
-
-; Specify an alternate character to $ to use for special db functions ($set, 
$push, $exists, etc.)
-mongo.cmd = $
-

Copied: php-mongo/repos/community-i686/mongo.ini (from rev 109071, 
php-mongo/trunk/mongo.ini)
===
--- community-i686/mongo.ini(rev 0)
+++ community-i686/mongo.ini2014-04-10 07:53:33 UTC (rev 109072)
@@ -0,0 +1,28 @@
+; Tell PHP to load the Mongo Extension on startup
+extension=mongo.so
+
+[mongo]
+; If the driver should reconnect to mongo
+mongo.auto_reconnect = False
+
+; 

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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 10:23:17
  Author: fyan
Revision: 210126

upgpkg: flickrnet 3.10.0-1

- f-spot doesn't work with the new version, figuring out what to do

Modified:
  flickrnet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 08:10:37 UTC (rev 210125)
+++ PKGBUILD2014-04-10 08:23:17 UTC (rev 210126)
@@ -2,8 +2,8 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 # Contributor: György Balló ball...@freestart.hu
 pkgname=flickrnet
-pkgver=3.7.0.0
-_pkgver=103861
+pkgver=3.10.0
+_pkgver=105368
 pkgrel=1
 pkgdesc=Flickr.Net API Library
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('unzip')
 
source=($pkgname-$pkgver.zip::http://download.codeplex.com/Project/Download/SourceControlFileDownload.ashx?ProjectName=FlickrNetchangeSetId=$_pkgver;
 $pkgname.pc)
-md5sums=('SKIP'
+md5sums=('358e164c86d3d6749a05b429e447f069'
  '131dd6e01f99c0533e9367b5cfda3a13')
 
 prepare() {



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 10:25:24
  Author: fyan
Revision: 210127

archrelease: copy trunk to testing-any

Added:
  flickrnet/repos/testing-any/
  flickrnet/repos/testing-any/PKGBUILD
(from rev 210126, flickrnet/trunk/PKGBUILD)
  flickrnet/repos/testing-any/flickrnet.pc
(from rev 210126, flickrnet/trunk/flickrnet.pc)

--+
 PKGBUILD |   36 
 flickrnet.pc |7 +++
 2 files changed, 43 insertions(+)

Copied: flickrnet/repos/testing-any/PKGBUILD (from rev 210126, 
flickrnet/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2014-04-10 08:25:24 UTC (rev 210127)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Contributor: György Balló ball...@freestart.hu
+pkgname=flickrnet
+pkgver=3.10.0
+_pkgver=105368
+pkgrel=1
+pkgdesc=Flickr.Net API Library
+arch=('any')
+url=http://www.codeplex.com/FlickrNet;
+license=('LGPL')
+depends=('mono')
+makedepends=('unzip')
+source=($pkgname-$pkgver.zip::http://download.codeplex.com/Project/Download/SourceControlFileDownload.ashx?ProjectName=FlickrNetchangeSetId=$_pkgver;
+$pkgname.pc)
+md5sums=('358e164c86d3d6749a05b429e447f069'
+ '131dd6e01f99c0533e9367b5cfda3a13')
+
+prepare() {
+  cd $srcdir/FlickrNet
+
+  sed -i s/@VERSION@/$pkgver/ $srcdir/$pkgname.pc
+}
+
+build() {
+  cd $srcdir/FlickrNet
+
+  xbuild  /property:Configuration=Release FlickrNet.csproj
+}
+
+package() {
+  cd $srcdir/FlickrNet
+
+  gacutil -i bin/Release/FlickrNet.dll -package $pkgname-$pkgver -root 
$pkgdir/usr/lib/
+  install -Dm644 $srcdir/$pkgname.pc $pkgdir/usr/lib/pkgconfig/$pkgname.pc
+}

Copied: flickrnet/repos/testing-any/flickrnet.pc (from rev 210126, 
flickrnet/trunk/flickrnet.pc)
===
--- testing-any/flickrnet.pc(rev 0)
+++ testing-any/flickrnet.pc2014-04-10 08:25:24 UTC (rev 210127)
@@ -0,0 +1,7 @@
+prefix=/usr
+libdir=${prefix}/lib
+
+Name: flickrnet
+Description: Flickr.Net API Library
+Version: @VERSION@
+Libs: -r:${libdir}/mono/flickrnet-@VERSION@/FlickrNet.dll



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 10:51:00
  Author: fyan
Revision: 210128

upgpkg: perl-netaddr-ip 4.073-1

Modified:
  perl-netaddr-ip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 08:25:24 UTC (rev 210127)
+++ PKGBUILD2014-04-10 08:51:00 UTC (rev 210128)
@@ -2,7 +2,7 @@
 # Maintainer:
 
 pkgname=perl-netaddr-ip
-pkgver=4.072
+pkgver=4.073
 pkgrel=1
 pkgdesc=Perl module to manage IP addresses and subnets
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/M/MI/MIKER/NetAddr-IP-${pkgver}.tar.gz)
-md5sums=('7764bf54881cd014880c0b77161f16aa')
+md5sums=('4dc78e95809450100c1037cc10942fdf')
 
 build() {
   cd NetAddr-IP-${pkgver}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 10:52:42
  Author: fyan
Revision: 210130

upgpkg: perl-log-log4perl 1.43-1

Modified:
  perl-log-log4perl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 08:52:32 UTC (rev 210129)
+++ PKGBUILD2014-04-10 08:52:42 UTC (rev 210130)
@@ -2,7 +2,7 @@
 # Maintainer:
 
 pkgname=perl-log-log4perl
-pkgver=1.42
+pkgver=1.43
 pkgrel=1
 pkgdesc='Log4j implementation for Perl'
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/M/MS/MSCHILLI/Log-Log4perl-$pkgver.tar.gz;)
-md5sums=('76fcadf1dad78a31d582ffaca95bf251')
+md5sums=('c7b15008426c31f14726ed1257cd7b68')
 
 build() {
   cd Log-Log4perl-$pkgver



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 10:52:32
  Author: fyan
Revision: 210129

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

Added:
  perl-netaddr-ip/repos/extra-i686/PKGBUILD
(from rev 210128, perl-netaddr-ip/trunk/PKGBUILD)
  perl-netaddr-ip/repos/extra-x86_64/PKGBUILD
(from rev 210128, perl-netaddr-ip/trunk/PKGBUILD)
Deleted:
  perl-netaddr-ip/repos/extra-i686/PKGBUILD
  perl-netaddr-ip/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 extra-i686/PKGBUILD   |   30 
 extra-x86_64/PKGBUILD |   30 
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-10 08:51:00 UTC (rev 210128)
+++ extra-i686/PKGBUILD 2014-04-10 08:52:32 UTC (rev 210129)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=perl-netaddr-ip
-pkgver=4.072
-pkgrel=1
-pkgdesc=Perl module to manage IP addresses and subnets
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/NetAddr-IP/;
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/M/MI/MIKER/NetAddr-IP-${pkgver}.tar.gz)
-md5sums=('7764bf54881cd014880c0b77161f16aa')
-
-build() {
-  cd NetAddr-IP-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd NetAddr-IP-${pkgver}
-  make test
-}
-
-package() {
-  cd NetAddr-IP-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: perl-netaddr-ip/repos/extra-i686/PKGBUILD (from rev 210128, 
perl-netaddr-ip/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-10 08:52:32 UTC (rev 210129)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:
+
+pkgname=perl-netaddr-ip
+pkgver=4.073
+pkgrel=1
+pkgdesc=Perl module to manage IP addresses and subnets
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/NetAddr-IP/;
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/M/MI/MIKER/NetAddr-IP-${pkgver}.tar.gz)
+md5sums=('4dc78e95809450100c1037cc10942fdf')
+
+build() {
+  cd NetAddr-IP-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd NetAddr-IP-${pkgver}
+  make test
+}
+
+package() {
+  cd NetAddr-IP-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-04-10 08:51:00 UTC (rev 210128)
+++ extra-x86_64/PKGBUILD   2014-04-10 08:52:32 UTC (rev 210129)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=perl-netaddr-ip
-pkgver=4.072
-pkgrel=1
-pkgdesc=Perl module to manage IP addresses and subnets
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/NetAddr-IP/;
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/M/MI/MIKER/NetAddr-IP-${pkgver}.tar.gz)
-md5sums=('7764bf54881cd014880c0b77161f16aa')
-
-build() {
-  cd NetAddr-IP-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd NetAddr-IP-${pkgver}
-  make test
-}
-
-package() {
-  cd NetAddr-IP-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: perl-netaddr-ip/repos/extra-x86_64/PKGBUILD (from rev 210128, 
perl-netaddr-ip/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-04-10 08:52:32 UTC (rev 210129)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:
+
+pkgname=perl-netaddr-ip
+pkgver=4.073
+pkgrel=1
+pkgdesc=Perl module to manage IP addresses and subnets
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/NetAddr-IP/;
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/M/MI/MIKER/NetAddr-IP-${pkgver}.tar.gz)
+md5sums=('4dc78e95809450100c1037cc10942fdf')
+
+build() {
+  cd NetAddr-IP-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd NetAddr-IP-${pkgver}
+  make test
+}
+
+package() {
+  cd NetAddr-IP-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in perl-log-log4perl/repos/extra-any (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 10:53:35
  Author: fyan
Revision: 210131

archrelease: copy trunk to extra-any

Added:
  perl-log-log4perl/repos/extra-any/PKGBUILD
(from rev 210130, perl-log-log4perl/trunk/PKGBUILD)
Deleted:
  perl-log-log4perl/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 08:52:42 UTC (rev 210130)
+++ PKGBUILD2014-04-10 08:53:35 UTC (rev 210131)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=perl-log-log4perl
-pkgver=1.42
-pkgrel=1
-pkgdesc='Log4j implementation for Perl'
-arch=('any')
-url=https://metacpan.org/release/Log-Log4perl;
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/M/MS/MSCHILLI/Log-Log4perl-$pkgver.tar.gz;)
-md5sums=('76fcadf1dad78a31d582ffaca95bf251')
-
-build() {
-  cd Log-Log4perl-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Log-Log4perl-$pkgver
-  make test
-}
-
-package() {
-  cd Log-Log4perl-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: perl-log-log4perl/repos/extra-any/PKGBUILD (from rev 210130, 
perl-log-log4perl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 08:53:35 UTC (rev 210131)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:
+
+pkgname=perl-log-log4perl
+pkgver=1.43
+pkgrel=1
+pkgdesc='Log4j implementation for Perl'
+arch=('any')
+url=https://metacpan.org/release/Log-Log4perl;
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/M/MS/MSCHILLI/Log-Log4perl-$pkgver.tar.gz;)
+md5sums=('c7b15008426c31f14726ed1257cd7b68')
+
+build() {
+  cd Log-Log4perl-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Log-Log4perl-$pkgver
+  make test
+}
+
+package() {
+  cd Log-Log4perl-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 10:58:52
  Author: fyan
Revision: 109073

upgpkg: perl-xml-libxslt 1.89-1

Modified:
  perl-xml-libxslt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 07:53:33 UTC (rev 109072)
+++ PKGBUILD2014-04-10 08:58:52 UTC (rev 109073)
@@ -4,7 +4,7 @@
 # Contributor: François Charette firmicus ατ gmx δοτ net
 
 pkgname=perl-xml-libxslt
-pkgver=1.87
+pkgver=1.89
 pkgrel=1
 pkgdesc=Interface to the gnome libxslt library
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('perl-xml-libxml' 'libxslt')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXSLT-$pkgver.tar.gz)
-md5sums=('6a9303ffada82422781a36c54d3f4a8f')
+md5sums=('692d2491b3ebf3465960c270c6a10e8b')
 
 build() {
   cd XML-LibXSLT-$pkgver



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 10:59:37
  Author: fyan
Revision: 210132

upgpkg: perl-try-tiny 0.20-1

Modified:
  perl-try-tiny/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 08:53:35 UTC (rev 210131)
+++ PKGBUILD2014-04-10 08:59:37 UTC (rev 210132)
@@ -2,7 +2,7 @@
 # Maintainer: 
 
 pkgname=perl-try-tiny
-pkgver=0.19
+pkgver=0.20
 pkgrel=1
 pkgdesc=Minimal try/catch with proper localization of \$@
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Try-Tiny-${pkgver}.tar.gz;)
-sha1sums=('78613f8c77793032ddf10a88ef5182592b96d553')
+sha1sums=('79b5513c2b4c94497493558e5fcdddba9a7e648f')
 
 build() {
   cd Try-Tiny-${pkgver}



[arch-commits] Commit in perl-try-tiny/repos/extra-any (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 11:00:30
  Author: fyan
Revision: 210133

archrelease: copy trunk to extra-any

Added:
  perl-try-tiny/repos/extra-any/PKGBUILD
(from rev 210132, perl-try-tiny/trunk/PKGBUILD)
Deleted:
  perl-try-tiny/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 08:59:37 UTC (rev 210132)
+++ PKGBUILD2014-04-10 09:00:30 UTC (rev 210133)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: 
-
-pkgname=perl-try-tiny
-pkgver=0.19
-pkgrel=1
-pkgdesc=Minimal try/catch with proper localization of \$@
-arch=('any')
-url=http://search.cpan.org/dist/Try-Tiny;
-license=('MIT')
-depends=('perl')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Try-Tiny-${pkgver}.tar.gz;)
-sha1sums=('78613f8c77793032ddf10a88ef5182592b96d553')
-
-build() {
-  cd Try-Tiny-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Try-Tiny-${pkgver}
-  make test
-}
-
-package() {
-  cd Try-Tiny-${pkgver}
-  make DESTDIR=$pkgdir install
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: perl-try-tiny/repos/extra-any/PKGBUILD (from rev 210132, 
perl-try-tiny/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 09:00:30 UTC (rev 210133)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: 
+
+pkgname=perl-try-tiny
+pkgver=0.20
+pkgrel=1
+pkgdesc=Minimal try/catch with proper localization of \$@
+arch=('any')
+url=http://search.cpan.org/dist/Try-Tiny;
+license=('MIT')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Try-Tiny-${pkgver}.tar.gz;)
+sha1sums=('79b5513c2b4c94497493558e5fcdddba9a7e648f')
+
+build() {
+  cd Try-Tiny-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Try-Tiny-${pkgver}
+  make test
+}
+
+package() {
+  cd Try-Tiny-${pkgver}
+  make DESTDIR=$pkgdir install
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 11:00:23
  Author: fyan
Revision: 109074

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

Added:
  perl-xml-libxslt/repos/community-i686/PKGBUILD
(from rev 109073, perl-xml-libxslt/trunk/PKGBUILD)
  perl-xml-libxslt/repos/community-x86_64/PKGBUILD
(from rev 109073, perl-xml-libxslt/trunk/PKGBUILD)
Deleted:
  perl-xml-libxslt/repos/community-i686/PKGBUILD
  perl-xml-libxslt/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   64 
 community-i686/PKGBUILD   |   32 --
 community-x86_64/PKGBUILD |   32 --
 3 files changed, 64 insertions(+), 64 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-10 08:58:52 UTC (rev 109073)
+++ community-i686/PKGBUILD 2014-04-10 09:00:23 UTC (rev 109074)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel jst...@aur.archlinux.org
-# Contributor: Justin juster Davis jrc...@gmail.com
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-xml-libxslt
-pkgver=1.87
-pkgrel=1
-pkgdesc=Interface to the gnome libxslt library
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/XML-LibXSLT;
-license=('GPL')
-depends=('perl-xml-libxml' 'libxslt')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXSLT-$pkgver.tar.gz)
-md5sums=('6a9303ffada82422781a36c54d3f4a8f')
-
-build() {
-  cd XML-LibXSLT-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd XML-LibXSLT-$pkgver
-  make test
-}
-
-package() {
-  cd XML-LibXSLT-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: perl-xml-libxslt/repos/community-i686/PKGBUILD (from rev 109073, 
perl-xml-libxslt/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-10 09:00:23 UTC (rev 109074)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jonathan Steel jst...@aur.archlinux.org
+# Contributor: Justin juster Davis jrc...@gmail.com
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-xml-libxslt
+pkgver=1.89
+pkgrel=1
+pkgdesc=Interface to the gnome libxslt library
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/XML-LibXSLT;
+license=('GPL')
+depends=('perl-xml-libxml' 'libxslt')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXSLT-$pkgver.tar.gz)
+md5sums=('692d2491b3ebf3465960c270c6a10e8b')
+
+build() {
+  cd XML-LibXSLT-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd XML-LibXSLT-$pkgver
+  make test
+}
+
+package() {
+  cd XML-LibXSLT-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-10 08:58:52 UTC (rev 109073)
+++ community-x86_64/PKGBUILD   2014-04-10 09:00:23 UTC (rev 109074)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel jst...@aur.archlinux.org
-# Contributor: Justin juster Davis jrc...@gmail.com
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-xml-libxslt
-pkgver=1.87
-pkgrel=1
-pkgdesc=Interface to the gnome libxslt library
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/XML-LibXSLT;
-license=('GPL')
-depends=('perl-xml-libxml' 'libxslt')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXSLT-$pkgver.tar.gz)
-md5sums=('6a9303ffada82422781a36c54d3f4a8f')
-
-build() {
-  cd XML-LibXSLT-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd XML-LibXSLT-$pkgver
-  make test
-}
-
-package() {
-  cd XML-LibXSLT-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: perl-xml-libxslt/repos/community-x86_64/PKGBUILD (from rev 109073, 
perl-xml-libxslt/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-10 09:00:23 UTC (rev 109074)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jonathan Steel jst...@aur.archlinux.org
+# Contributor: Justin juster Davis jrc...@gmail.com
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-xml-libxslt
+pkgver=1.89
+pkgrel=1
+pkgdesc=Interface to the gnome libxslt library
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/XML-LibXSLT;
+license=('GPL')
+depends=('perl-xml-libxml' 'libxslt')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXSLT-$pkgver.tar.gz)
+md5sums=('692d2491b3ebf3465960c270c6a10e8b')
+
+build() {
+  cd XML-LibXSLT-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd XML-LibXSLT-$pkgver
+  make test
+}
+
+package() {
+  cd XML-LibXSLT-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2014-04-10 Thread Sergej Pupykin
Date: Thursday, April 10, 2014 @ 11:01:51
  Author: spupykin
Revision: 109076

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

Added:
  couchdb/repos/community-i686/PKGBUILD
(from rev 109075, couchdb/trunk/PKGBUILD)
  couchdb/repos/community-i686/couchdb.install
(from rev 109075, couchdb/trunk/couchdb.install)
  couchdb/repos/community-i686/couchdb.service
(from rev 109075, couchdb/trunk/couchdb.service)
  couchdb/repos/community-i686/couchdb.tmpfiles
(from rev 109075, couchdb/trunk/couchdb.tmpfiles)
  couchdb/repos/community-x86_64/PKGBUILD
(from rev 109075, couchdb/trunk/PKGBUILD)
  couchdb/repos/community-x86_64/couchdb.install
(from rev 109075, couchdb/trunk/couchdb.install)
  couchdb/repos/community-x86_64/couchdb.service
(from rev 109075, couchdb/trunk/couchdb.service)
  couchdb/repos/community-x86_64/couchdb.tmpfiles
(from rev 109075, couchdb/trunk/couchdb.tmpfiles)
Deleted:
  couchdb/repos/community-i686/PKGBUILD
  couchdb/repos/community-i686/couchdb.install
  couchdb/repos/community-i686/couchdb.service
  couchdb/repos/community-i686/couchdb.tmpfiles
  couchdb/repos/community-x86_64/PKGBUILD
  couchdb/repos/community-x86_64/couchdb.install
  couchdb/repos/community-x86_64/couchdb.service
  couchdb/repos/community-x86_64/couchdb.tmpfiles

---+
 /PKGBUILD |   94 
 /couchdb.install  |   44 
 /couchdb.service  |   24 +
 /couchdb.tmpfiles |2 
 community-i686/PKGBUILD   |   47 --
 community-i686/couchdb.install|   22 
 community-i686/couchdb.service|   12 
 community-i686/couchdb.tmpfiles   |1 
 community-x86_64/PKGBUILD |   47 --
 community-x86_64/couchdb.install  |   22 
 community-x86_64/couchdb.service  |   12 
 community-x86_64/couchdb.tmpfiles |1 
 12 files changed, 164 insertions(+), 164 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-10 09:01:31 UTC (rev 109075)
+++ community-i686/PKGBUILD 2014-04-10 09:01:51 UTC (rev 109076)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
-# Contributor: Michael Fellinger m.fellin...@gmail.com
-
-pkgname=couchdb
-pkgver=1.5.0
-pkgrel=1
-pkgdesc=A document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON
-arch=('i686' 'x86_64')
-url=http://couchdb.apache.org;
-license=('APACHE')
-depends=('icu' 'erlang-nox' 'js185' 'openssl' 'curl')
-makedepends=('autoconf-archive' 'git')
-install=couchdb.install
-backup=('etc/couchdb/local.ini'
-   'etc/conf.d/couchdb'
-   'etc/logrotate.d/couchdb')
-#source=(git://github.com/apache/couchdb.git#commit=8d7ab8b18dd20f8785e69f4420c6f93a2edbfa60
-source=(http://www.eu.apache.org/dist/couchdb/source/$pkgver/apache-couchdb-$pkgver.tar.gz{,.asc}
-   couchdb.service
-   couchdb.tmpfiles)
-md5sums=('55a2f86469e0697817da8defee730f04'
- 'SKIP'
- '8914a7ffc6745f94106d96206709acb4'
- '1e254ebe32eeb061be64193bafa35dbf')
-
-build() {
-  cd $srcdir/apache-couchdb-$pkgver
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var
-  make
-}
-
-package() {
-  cd $srcdir/apache-couchdb-$pkgver
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 etc/default/couchdb $pkgdir/etc/conf.d/couchdb
-  sed -i 's|\(COUCHDB_OPTIONS=\)|\1-p /var/run/couchdb/couchdb.pid|' 
$pkgdir/etc/conf.d/couchdb
-
-  rm -rf $pkgdir/etc/default/ $pkgdir/var/run
-
-  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-  install -Dm0644 $srcdir/$pkgname.tmpfiles 
$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf
-}

Copied: couchdb/repos/community-i686/PKGBUILD (from rev 109075, 
couchdb/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-10 09:01:51 UTC (rev 109076)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
+# Contributor: Michael Fellinger m.fellin...@gmail.com
+
+pkgname=couchdb
+pkgver=1.5.1
+pkgrel=1
+pkgdesc=A document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON
+arch=('i686' 'x86_64')
+url=http://couchdb.apache.org;
+license=('APACHE')
+depends=('icu' 'erlang-nox' 'js185' 'openssl' 'curl')
+makedepends=('autoconf-archive' 'git')
+install=couchdb.install
+backup=('etc/couchdb/local.ini'
+   'etc/conf.d/couchdb'
+   'etc/logrotate.d/couchdb')
+#source=(git://github.com/apache/couchdb.git#commit=8d7ab8b18dd20f8785e69f4420c6f93a2edbfa60

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

2014-04-10 Thread Sergej Pupykin
Date: Thursday, April 10, 2014 @ 11:01:59
  Author: spupykin
Revision: 109077

upgpkg: dillo 3.0.4-1

upd

Modified:
  dillo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 09:01:51 UTC (rev 109076)
+++ PKGBUILD2014-04-10 09:01:59 UTC (rev 109077)
@@ -3,8 +3,8 @@
 # Maintainer: dorphell dorph...@archlinux.org
 
 pkgname=dillo
-pkgver=3.0.3
-pkgrel=2
+pkgver=3.0.4
+pkgrel=1
 pkgdesc=A small, fast graphical web browser built on FLTK
 arch=(i686 x86_64)
 url=http://www.dillo.org;
@@ -13,7 +13,7 @@
  'libxi' 'libxinerama')
 backup=(etc/dillo/{dillorc,dpidrc})
 source=(http://www.dillo.org/download/$pkgname-$pkgver.tar.bz2)
-md5sums=('726cd0b7a18c5e25f4d80ebeffe7607e')
+md5sums=('c85aab6b840527e1dd71b220a1dcfbab')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



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

2014-04-10 Thread Sergej Pupykin
Date: Thursday, April 10, 2014 @ 11:01:31
  Author: spupykin
Revision: 109075

upgpkg: couchdb 1.5.1-1

upd

Modified:
  couchdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 09:00:23 UTC (rev 109074)
+++ PKGBUILD2014-04-10 09:01:31 UTC (rev 109075)
@@ -4,8 +4,8 @@
 # Contributor: Michael Fellinger m.fellin...@gmail.com
 
 pkgname=couchdb
-pkgver=1.5.0
-pkgrel=2
+pkgver=1.5.1
+pkgrel=1
 pkgdesc=A document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON
 arch=('i686' 'x86_64')
 url=http://couchdb.apache.org;
@@ -20,7 +20,7 @@
 
source=(http://www.eu.apache.org/dist/couchdb/source/$pkgver/apache-couchdb-$pkgver.tar.gz{,.asc}
couchdb.service
couchdb.tmpfiles)
-md5sums=('55a2f86469e0697817da8defee730f04'
+md5sums=('1118a9f4ca6f58b751d3187838248b3c'
  'SKIP'
  '8914a7ffc6745f94106d96206709acb4'
  '1e254ebe32eeb061be64193bafa35dbf')



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

2014-04-10 Thread Sergej Pupykin
Date: Thursday, April 10, 2014 @ 11:02:19
  Author: spupykin
Revision: 109078

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

Added:
  dillo/repos/community-i686/PKGBUILD
(from rev 109077, dillo/trunk/PKGBUILD)
  dillo/repos/community-x86_64/PKGBUILD
(from rev 109077, dillo/trunk/PKGBUILD)
Deleted:
  dillo/repos/community-i686/PKGBUILD
  dillo/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   56 
 community-i686/PKGBUILD   |   28 --
 community-x86_64/PKGBUILD |   28 --
 3 files changed, 56 insertions(+), 56 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-10 09:01:59 UTC (rev 109077)
+++ community-i686/PKGBUILD 2014-04-10 09:02:19 UTC (rev 109078)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: dorphell dorph...@archlinux.org
-
-pkgname=dillo
-pkgver=3.0.3
-pkgrel=2
-pkgdesc=A small, fast graphical web browser built on FLTK
-arch=(i686 x86_64)
-url=http://www.dillo.org;
-license=('GPL')
-depends=('fltk' 'libjpeg' 'perl' 'openssl' 'libpng' 'gcc-libs' 'libxcursor'
- 'libxi' 'libxinerama')
-backup=(etc/dillo/{dillorc,dpidrc})
-source=(http://www.dillo.org/download/$pkgname-$pkgver.tar.bz2)
-md5sums=('726cd0b7a18c5e25f4d80ebeffe7607e')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --enable-cookies --enable-dlgui \
-  --enable-ssl
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: dillo/repos/community-i686/PKGBUILD (from rev 109077, 
dillo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-10 09:02:19 UTC (rev 109078)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: dorphell dorph...@archlinux.org
+
+pkgname=dillo
+pkgver=3.0.4
+pkgrel=1
+pkgdesc=A small, fast graphical web browser built on FLTK
+arch=(i686 x86_64)
+url=http://www.dillo.org;
+license=('GPL')
+depends=('fltk' 'libjpeg' 'perl' 'openssl' 'libpng' 'gcc-libs' 'libxcursor'
+ 'libxi' 'libxinerama')
+backup=(etc/dillo/{dillorc,dpidrc})
+source=(http://www.dillo.org/download/$pkgname-$pkgver.tar.bz2)
+md5sums=('c85aab6b840527e1dd71b220a1dcfbab')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-cookies --enable-dlgui \
+  --enable-ssl
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-10 09:01:59 UTC (rev 109077)
+++ community-x86_64/PKGBUILD   2014-04-10 09:02:19 UTC (rev 109078)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: dorphell dorph...@archlinux.org
-
-pkgname=dillo
-pkgver=3.0.3
-pkgrel=2
-pkgdesc=A small, fast graphical web browser built on FLTK
-arch=(i686 x86_64)
-url=http://www.dillo.org;
-license=('GPL')
-depends=('fltk' 'libjpeg' 'perl' 'openssl' 'libpng' 'gcc-libs' 'libxcursor'
- 'libxi' 'libxinerama')
-backup=(etc/dillo/{dillorc,dpidrc})
-source=(http://www.dillo.org/download/$pkgname-$pkgver.tar.bz2)
-md5sums=('726cd0b7a18c5e25f4d80ebeffe7607e')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --enable-cookies --enable-dlgui \
-  --enable-ssl
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: dillo/repos/community-x86_64/PKGBUILD (from rev 109077, 
dillo/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-10 09:02:19 UTC (rev 109078)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: dorphell dorph...@archlinux.org
+
+pkgname=dillo
+pkgver=3.0.4
+pkgrel=1
+pkgdesc=A small, fast graphical web browser built on FLTK
+arch=(i686 x86_64)
+url=http://www.dillo.org;
+license=('GPL')
+depends=('fltk' 'libjpeg' 'perl' 'openssl' 'libpng' 'gcc-libs' 'libxcursor'
+ 'libxi' 'libxinerama')
+backup=(etc/dillo/{dillorc,dpidrc})
+source=(http://www.dillo.org/download/$pkgname-$pkgver.tar.bz2)
+md5sums=('c85aab6b840527e1dd71b220a1dcfbab')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-cookies --enable-dlgui \
+  --enable-ssl
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 11:04:47
  Author: fyan
Revision: 210134

upgpkg: perl-file-mimeinfo 0.25-1

Modified:
  perl-file-mimeinfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 09:00:30 UTC (rev 210133)
+++ PKGBUILD2014-04-10 09:04:47 UTC (rev 210134)
@@ -2,7 +2,7 @@
 # Maintainer: 
 
 pkgname=perl-file-mimeinfo
-pkgver=0.21
+pkgver=0.25
 pkgrel=1
 pkgdesc='Determine file type, includes mimeopen and mimetype'
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('perl-file-basedir' 'perl-file-desktopentry' 'shared-mime-info')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/M/MI/MICHIELB/File-MimeInfo-${pkgver}.tar.gz)
-sha1sums=('871bd30ab78b3533da7389c6af176e17d7737bb7')
+sha1sums=('c0037a6db313e00dbe1786bda87b878a6c04d061')
 
 build() {
   cd File-MimeInfo-${pkgver}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 11:05:46
  Author: fyan
Revision: 210135

archrelease: copy trunk to extra-any

Added:
  perl-file-mimeinfo/repos/extra-any/PKGBUILD
(from rev 210134, perl-file-mimeinfo/trunk/PKGBUILD)
Deleted:
  perl-file-mimeinfo/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 09:04:47 UTC (rev 210134)
+++ PKGBUILD2014-04-10 09:05:46 UTC (rev 210135)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: 
-
-pkgname=perl-file-mimeinfo
-pkgver=0.21
-pkgrel=1
-pkgdesc='Determine file type, includes mimeopen and mimetype'
-arch=('any')
-url=http://search.cpan.org/dist/File-MimeInfo/;
-license=('GPL' 'PerlArtistic')
-depends=('perl-file-basedir' 'perl-file-desktopentry' 'shared-mime-info')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/M/MI/MICHIELB/File-MimeInfo-${pkgver}.tar.gz)
-sha1sums=('871bd30ab78b3533da7389c6af176e17d7737bb7')
-
-build() {
-  cd File-MimeInfo-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd File-MimeInfo-${pkgver}
-  make test
-}
-
-package() {
-  cd File-MimeInfo-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: perl-file-mimeinfo/repos/extra-any/PKGBUILD (from rev 210134, 
perl-file-mimeinfo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 09:05:46 UTC (rev 210135)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: 
+
+pkgname=perl-file-mimeinfo
+pkgver=0.25
+pkgrel=1
+pkgdesc='Determine file type, includes mimeopen and mimetype'
+arch=('any')
+url=http://search.cpan.org/dist/File-MimeInfo/;
+license=('GPL' 'PerlArtistic')
+depends=('perl-file-basedir' 'perl-file-desktopentry' 'shared-mime-info')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/M/MI/MICHIELB/File-MimeInfo-${pkgver}.tar.gz)
+sha1sums=('c0037a6db313e00dbe1786bda87b878a6c04d061')
+
+build() {
+  cd File-MimeInfo-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd File-MimeInfo-${pkgver}
+  make test
+}
+
+package() {
+  cd File-MimeInfo-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 11:08:59
  Author: fyan
Revision: 210136

upgpkg: perl-extutils-makemaker 6.94-1

Modified:
  perl-extutils-makemaker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 09:05:46 UTC (rev 210135)
+++ PKGBUILD2014-04-10 09:08:59 UTC (rev 210136)
@@ -2,7 +2,7 @@
 # Maintainer:
 
 pkgname=perl-extutils-makemaker
-pkgver=6.88
+pkgver=6.94
 pkgrel=1
 pkgdesc=ExtUtils::MakeMaker - Create a module Makefile
 arch=('any')
@@ -14,7 +14,7 @@
 replaces=('perl-file-copy-recursive')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/ExtUtils-MakeMaker-${pkgver}.tar.gz;)
-sha1sums=('b0876f4d8853cff3842bb1bf07c252a9799028bf')
+sha1sums=('bf7b1de7e8380a89b8523f91a54c1c5e0cae6f13')
 
 build() {
   cd ExtUtils-MakeMaker-$pkgver



[arch-commits] Commit in perl-extutils-makemaker/repos/extra-any (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 11:09:50
  Author: fyan
Revision: 210137

archrelease: copy trunk to extra-any

Added:
  perl-extutils-makemaker/repos/extra-any/PKGBUILD
(from rev 210136, perl-extutils-makemaker/trunk/PKGBUILD)
Deleted:
  perl-extutils-makemaker/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 09:08:59 UTC (rev 210136)
+++ PKGBUILD2014-04-10 09:09:50 UTC (rev 210137)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=perl-extutils-makemaker
-pkgver=6.88
-pkgrel=1
-pkgdesc=ExtUtils::MakeMaker - Create a module Makefile
-arch=('any')
-url=http://search.cpan.org/~bingos/ExtUtils-MakeMaker/;
-license=('GPL' 'PerlArtistic')
-depends=('perl')
-provides=('perl-file-copy-recursive')
-conflicts=('perl-file-copy-recursive')
-replaces=('perl-file-copy-recursive')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/ExtUtils-MakeMaker-${pkgver}.tar.gz;)
-sha1sums=('b0876f4d8853cff3842bb1bf07c252a9799028bf')
-
-build() {
-  cd ExtUtils-MakeMaker-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check () {
-  cd ExtUtils-MakeMaker-$pkgver
-  make test
-}
-
-package () {
-  cd ExtUtils-MakeMaker-$pkgver
-  make DESTDIR=${pkgdir} install
-}
-

Copied: perl-extutils-makemaker/repos/extra-any/PKGBUILD (from rev 210136, 
perl-extutils-makemaker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 09:09:50 UTC (rev 210137)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer:
+
+pkgname=perl-extutils-makemaker
+pkgver=6.94
+pkgrel=1
+pkgdesc=ExtUtils::MakeMaker - Create a module Makefile
+arch=('any')
+url=http://search.cpan.org/~bingos/ExtUtils-MakeMaker/;
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+provides=('perl-file-copy-recursive')
+conflicts=('perl-file-copy-recursive')
+replaces=('perl-file-copy-recursive')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/ExtUtils-MakeMaker-${pkgver}.tar.gz;)
+sha1sums=('bf7b1de7e8380a89b8523f91a54c1c5e0cae6f13')
+
+build() {
+  cd ExtUtils-MakeMaker-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check () {
+  cd ExtUtils-MakeMaker-$pkgver
+  make test
+}
+
+package () {
+  cd ExtUtils-MakeMaker-$pkgver
+  make DESTDIR=${pkgdir} install
+}
+



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 11:11:28
  Author: fyan
Revision: 210138

upgpkg: perl-xml-twig 3.48-1

Modified:
  perl-xml-twig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 09:09:50 UTC (rev 210137)
+++ PKGBUILD2014-04-10 09:11:28 UTC (rev 210138)
@@ -2,7 +2,7 @@
 # Maintainer:
 
 pkgname=perl-xml-twig
-pkgver=3.46
+pkgver=3.48
 pkgrel=1
 pkgdesc=A module for easy processing of XML
 arch=('any')
@@ -12,7 +12,7 @@
 checkdepends=('perl-libwww' 'perl-test-pod' 'perl-xml-simple' 'perl-html-tree' 
'perl-xml-xpath' 'perl-tie-ixhash')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/M/MI/MIROD/XML-Twig-${pkgver}.tar.gz;)
-sha1sums=('0b31fa34cc67c739a961c55ccbf9103a8e333c3b')
+sha1sums=('55801d6c88f76403dd30bf503691f241a335d176')
 
 build() {
   cd XML-Twig-${pkgver}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 11:12:21
  Author: fyan
Revision: 210139

archrelease: copy trunk to extra-any

Deleted:
  perl-xml-twig/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 09:11:28 UTC (rev 210138)
+++ PKGBUILD2014-04-10 09:12:21 UTC (rev 210139)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=perl-xml-twig
-pkgver=3.46
-pkgrel=1
-pkgdesc=A module for easy processing of XML
-arch=('any')
-url=http://search.cpan.org/dist/XML-Twig/;
-license=('GPL' 'PerlArtistic')
-depends=('perl-xml-parser' 'perl-text-iconv' 'perl')
-checkdepends=('perl-libwww' 'perl-test-pod' 'perl-xml-simple' 'perl-html-tree' 
'perl-xml-xpath' 'perl-tie-ixhash')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/M/MI/MIROD/XML-Twig-${pkgver}.tar.gz;)
-sha1sums=('0b31fa34cc67c739a961c55ccbf9103a8e333c3b')
-
-build() {
-  cd XML-Twig-${pkgver}
-  perl Makefile.PL -y INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd XML-Twig-${pkgver}
-#  make test
-}
-
-package() {
-  cd XML-Twig-${pkgver}
-  make DESTDIR=${pkgdir} install
-}



[arch-commits] Commit in chromium/trunk (4 files)

2014-04-10 Thread Evangelos Foutras
Date: Thursday, April 10, 2014 @ 11:12:57
  Author: foutrelis
Revision: 210140

upgpkg: chromium 34.0.1847.116-1

New upstream release.

Added:
  chromium/trunk/chromium-depot-tools-r0.patch
  chromium/trunk/chromium-gn-r1.patch
Modified:
  chromium/trunk/PKGBUILD
Deleted:
  chromium/trunk/chromium-gn-r0.patch

---+
 PKGBUILD  |   37 ++---
 chromium-depot-tools-r0.patch |   11 +++
 chromium-gn-r0.patch  |   12 
 chromium-gn-r1.patch  |   11 +++
 4 files changed, 44 insertions(+), 27 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 09:12:21 UTC (rev 210139)
+++ PKGBUILD2014-04-10 09:12:57 UTC (rev 210140)
@@ -5,14 +5,14 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=chromium
-pkgver=33.0.1750.152
-_toolchains_rev=12526
-pkgrel=2
+pkgver=34.0.1847.116
+_toolchains_rev=12773
+pkgrel=1
 pkgdesc=The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser
 arch=('i686' 'x86_64')
 url=http://www.chromium.org/;
 license=('BSD')
-depends=('gtk2' 'nss' 'alsa-lib' 'xdg-utils' 'bzip2' 'libevent' 'libxss' 'icu'
+depends=('gtk2' 'nss' 'alsa-lib' 'xdg-utils' 'bzip2' 'libevent' 'libxss'
  'libgcrypt' 'ttf-font' 'systemd' 'dbus' 'flac' 'opus' 'snappy'
  'speech-dispatcher' 'pciutils' 'libpulse' 'harfbuzz' 'harfbuzz-icu'
  'desktop-file-utils' 'hicolor-icon-theme')
@@ -33,19 +33,21 @@
 
naclsdk_pnacl_translator-$_toolchains_rev.tgz.sha1hash::https://commondatastorage.googleapis.com/nativeclient-archive2/toolchain/$_toolchains_rev/naclsdk_pnacl_translator.tgz.sha1hash
 chromium.desktop
 chromium.default
-chromium-gn-r0.patch
+chromium-gn-r1.patch
+chromium-depot-tools-r0.patch
 chromium.sh)
 noextract=(naclsdk_nacl_linux_x86-$_toolchains_rev.tgz
naclsdk_pnacl_linux_x86-$_toolchains_rev.tgz
naclsdk_pnacl_translator-$_toolchains_rev.tgz)
-sha256sums=('9fd462840bee3ae205b0548e8a483f7589beecdb7c6309d4d65425cbf710cc2f'
-'4bc956815bd45a82ed7c3b623d0ffb55fcc6c6af55828a0bf1560733def68e8d'
-'3ae77302adf775f2d513e7d9cb730cbe3e42d515002c4388d25fa3ec11b7b12f'
-'ce89d9c53b32a83f477e9ac2c2269d573477e23908462fccbf945c3303a9fb1f'
-'4408c8d4cb6d072929ba6e7f3edac170bfea8f54eb009ee7ceaa131a0c1fa92e'
+sha256sums=('dd6579c170eecd8d1f366461575e9754e44200e0b9fefde20941e15cb6729711'
+'4c2adc718e53f36e38202aabf6518ceaa0244e281567433489b0a4e6dab1dc2f'
+'13cf0e23176787fcaa039c0bd230745e5cf5699877a51e77694c97392dc0973d'
+'3a087d34cf2890d85d1e2fad0d63e9db82d47c400994dfe6f0e2ee8bcedb4195'
+'581fb67410dad60fbe484294e4da2fed0de2487caabe33d595fa7abdf72e0f59'
 '09bfac44104f4ccda4c228053f689c947b3e97da9a4ab6fa34ce061ee83d0322'
 '478340d5760a9bd6c549e19b1b5d1c5b4933ebf5f8cfb2b3e2d70d07443fe232'
-'a1145e83d775101b28dcdceb3ca076fc7e9a4b9f69a1a2236d0c97ad39afb3d3'
+'b1ca3f17959be4fb6c031563b1ee587b7e990166c41b9d5b9dce2f91bf01fe1c'
+'14d86770eaaead42e244007ebe5a94d188f8668c2598fa6042ada87a90cae671'
 '4999fded897af692f4974f0a3e3bbb215193519918a1fa9b31ed51e74a2dccb9')
 
 # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
@@ -59,7 +61,9 @@
 prepare() {
   cd $srcdir/$pkgname-$pkgver
 
-  patch -Np0 -i $srcdir/chromium-gn-r0.patch
+  # Build fixes (patches from Gentoo)
+  patch -Np0 -i $srcdir/chromium-gn-r1.patch
+  patch -Np0 -i $srcdir/chromium-depot-tools-r0.patch
 
   # Use Python 2
   find . -type f -exec sed -i -r \
@@ -115,7 +119,6 @@
 -Duse_system_flac=1
 -Duse_system_ffmpeg=0
 -Duse_system_harfbuzz=1
--Duse_system_icu=1
 -Duse_system_libevent=1
 -Duse_system_libjpeg=1
 -Duse_system_libpng=1
@@ -133,7 +136,7 @@
   build/linux/unbundle/replace_gyp_files.py ${_chromium_conf[@]}
   build/gyp_chromium -f make --depth=. ${_chromium_conf[@]}
 
-  make chrome chrome_sandbox BUILDTYPE=Release
+  make BUILDTYPE=Release chrome chrome_sandbox chromedriver
 }
 
 package() {
@@ -144,6 +147,8 @@
   install -Dm4755 -o root -g root out/Release/chrome_sandbox \
 $pkgdir/usr/lib/chromium/chrome-sandbox
 
+  install -D out/Release/chromedriver $pkgdir/usr/lib/chromium/chromedriver
+
   cp out/Release/{*.pak,libffmpegsumo.so,nacl_helper{,_bootstrap}} \
 out/Release/{libppGoogleNaClPluginChrome.so,nacl_irt_*.nexe} \
 $pkgdir/usr/lib/chromium/
@@ -150,6 +155,7 @@
 
   # Manually strip binaries so that 'nacl_irt_*.nexe' is left intact
   strip $STRIP_BINARIES $pkgdir/usr/lib/chromium/{chromium,chrome-sandbox} \
+$pkgdir/usr/lib/chromium/chromedriver \
 $pkgdir/usr/lib/chromium/nacl_helper{,_bootstrap}
   strip $STRIP_SHARED 

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

2014-04-10 Thread Evangelos Foutras
Date: Thursday, April 10, 2014 @ 11:13:17
  Author: foutrelis
Revision: 210141

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

Added:
  chromium/repos/extra-i686/PKGBUILD
(from rev 210140, chromium/trunk/PKGBUILD)
  chromium/repos/extra-i686/chromium-depot-tools-r0.patch
(from rev 210140, chromium/trunk/chromium-depot-tools-r0.patch)
  chromium/repos/extra-i686/chromium-gn-r1.patch
(from rev 210140, chromium/trunk/chromium-gn-r1.patch)
  chromium/repos/extra-i686/chromium.default
(from rev 210140, chromium/trunk/chromium.default)
  chromium/repos/extra-i686/chromium.desktop
(from rev 210140, chromium/trunk/chromium.desktop)
  chromium/repos/extra-i686/chromium.install
(from rev 210140, chromium/trunk/chromium.install)
  chromium/repos/extra-i686/chromium.sh
(from rev 210140, chromium/trunk/chromium.sh)
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 210140, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-depot-tools-r0.patch
(from rev 210140, chromium/trunk/chromium-depot-tools-r0.patch)
  chromium/repos/extra-x86_64/chromium-gn-r1.patch
(from rev 210140, chromium/trunk/chromium-gn-r1.patch)
  chromium/repos/extra-x86_64/chromium.default
(from rev 210140, chromium/trunk/chromium.default)
  chromium/repos/extra-x86_64/chromium.desktop
(from rev 210140, chromium/trunk/chromium.desktop)
  chromium/repos/extra-x86_64/chromium.install
(from rev 210140, chromium/trunk/chromium.install)
  chromium/repos/extra-x86_64/chromium.sh
(from rev 210140, chromium/trunk/chromium.sh)
Deleted:
  chromium/repos/extra-i686/PKGBUILD
  chromium/repos/extra-i686/chromium-gn-r0.patch
  chromium/repos/extra-i686/chromium.default
  chromium/repos/extra-i686/chromium.desktop
  chromium/repos/extra-i686/chromium.install
  chromium/repos/extra-i686/chromium.sh
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium-gn-r0.patch
  chromium/repos/extra-x86_64/chromium.default
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install
  chromium/repos/extra-x86_64/chromium.sh

+
 /PKGBUILD  |  378 +++
 /chromium.default  |8 
 /chromium.desktop  |  226 
 /chromium.install  |   24 +
 /chromium.sh   |   32 ++
 extra-i686/PKGBUILD|  179 
 extra-i686/chromium-depot-tools-r0.patch   |   11 
 extra-i686/chromium-gn-r0.patch|   12 
 extra-i686/chromium-gn-r1.patch|   11 
 extra-i686/chromium.default|4 
 extra-i686/chromium.desktop|  113 
 extra-i686/chromium.install|   12 
 extra-i686/chromium.sh |   16 -
 extra-x86_64/PKGBUILD  |  179 
 extra-x86_64/chromium-depot-tools-r0.patch |   11 
 extra-x86_64/chromium-gn-r0.patch  |   12 
 extra-x86_64/chromium-gn-r1.patch  |   11 
 extra-x86_64/chromium.default  |4 
 extra-x86_64/chromium.desktop  |  113 
 extra-x86_64/chromium.install  |   12 
 extra-x86_64/chromium.sh   |   16 -
 21 files changed, 712 insertions(+), 672 deletions(-)

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


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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 11:13:31
  Author: fyan
Revision: 210142

archrelease: copy trunk to extra-any

Added:
  perl-xml-twig/repos/extra-any/PKGBUILD
(from rev 210140, perl-xml-twig/trunk/PKGBUILD)

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

Copied: perl-xml-twig/repos/extra-any/PKGBUILD (from rev 210140, 
perl-xml-twig/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 09:13:31 UTC (rev 210142)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:
+
+pkgname=perl-xml-twig
+pkgver=3.48
+pkgrel=1
+pkgdesc=A module for easy processing of XML
+arch=('any')
+url=http://search.cpan.org/dist/XML-Twig/;
+license=('GPL' 'PerlArtistic')
+depends=('perl-xml-parser' 'perl-text-iconv' 'perl')
+checkdepends=('perl-libwww' 'perl-test-pod' 'perl-xml-simple' 'perl-html-tree' 
'perl-xml-xpath' 'perl-tie-ixhash')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/M/MI/MIROD/XML-Twig-${pkgver}.tar.gz;)
+sha1sums=('55801d6c88f76403dd30bf503691f241a335d176')
+
+build() {
+  cd XML-Twig-${pkgver}
+  perl Makefile.PL -y INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd XML-Twig-${pkgver}
+#  make test
+}
+
+package() {
+  cd XML-Twig-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 11:15:59
  Author: fyan
Revision: 210143

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

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

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 09:13:31 UTC (rev 210142)
+++ PKGBUILD2014-04-10 09:15:59 UTC (rev 210143)
@@ -4,7 +4,7 @@
 
 pkgbase=python-egenix-mx-base
 pkgname=('python2-egenix-mx-base')
-pkgver=3.2.6
+pkgver=3.2.7
 pkgrel=1
 pkgdesc=A collection of Python tools
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 conflicts=('python-egenix-mx-base=3.2.4-1')
 replaces=('python-egenix-mx-base=3.2.4-1')
 
source=(http://downloads.egenix.com/python/egenix-mx-base-${pkgver}.tar.gz{,.asc})
-sha1sums=('3e21c6eba53a841070a4e9430a85ecf8a28df20f'
+sha1sums=('fd9e470f8d8b14f793d65991858e5cc95ae17fcf'
   'SKIP')
 
 prepare() {



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 11:20:23
  Author: fyan
Revision: 210144

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

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

---+
 /PKGBUILD |   74 
 extra-i686/PKGBUILD   |   37 
 extra-x86_64/PKGBUILD |   37 
 3 files changed, 74 insertions(+), 74 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-10 09:15:59 UTC (rev 210143)
+++ extra-i686/PKGBUILD 2014-04-10 09:20:23 UTC (rev 210144)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgbase=python-egenix-mx-base
-pkgname=('python2-egenix-mx-base')
-pkgver=3.2.6
-pkgrel=1
-pkgdesc=A collection of Python tools
-arch=('i686' 'x86_64')
-license=('custom')
-url=http://www.egenix.com/products/python/mxBase/;
-makedepends=('python2')
-conflicts=('python-egenix-mx-base=3.2.4-1')
-replaces=('python-egenix-mx-base=3.2.4-1')
-source=(http://downloads.egenix.com/python/egenix-mx-base-${pkgver}.tar.gz{,.asc})
-sha1sums=('3e21c6eba53a841070a4e9430a85ecf8a28df20f'
-  'SKIP')
-
-prepare() {
-  cd egenix-mx-base-${pkgver}
-  find . -name \*.py -exec sed -i -e s|^#!.*python|#!/usr/bin/python2| {} \;
-}
-
-build() {
-  cd egenix-mx-base-${pkgver}
-  python2 setup.py build
-}
-
-package_python2-egenix-mx-base() {
-  depends=('python2')
-
-  cd egenix-mx-base-${pkgver}
-  python2 setup.py install --root=${pkgdir} --skip-build --optimize=1
-  chmod 644 
${pkgdir}/usr/lib/python2.7/site-packages/mx/{URL/Doc/mxURL.pdf,DateTime/Doc/mxDateTime.pdf}
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-egenix-mx-base/repos/extra-i686/PKGBUILD (from rev 210143, 
python-egenix-mx-base/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-10 09:20:23 UTC (rev 210144)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgbase=python-egenix-mx-base
+pkgname=('python2-egenix-mx-base')
+pkgver=3.2.7
+pkgrel=1
+pkgdesc=A collection of Python tools
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.egenix.com/products/python/mxBase/;
+makedepends=('python2')
+conflicts=('python-egenix-mx-base=3.2.4-1')
+replaces=('python-egenix-mx-base=3.2.4-1')
+source=(http://downloads.egenix.com/python/egenix-mx-base-${pkgver}.tar.gz{,.asc})
+sha1sums=('fd9e470f8d8b14f793d65991858e5cc95ae17fcf'
+  'SKIP')
+
+prepare() {
+  cd egenix-mx-base-${pkgver}
+  find . -name \*.py -exec sed -i -e s|^#!.*python|#!/usr/bin/python2| {} \;
+}
+
+build() {
+  cd egenix-mx-base-${pkgver}
+  python2 setup.py build
+}
+
+package_python2-egenix-mx-base() {
+  depends=('python2')
+
+  cd egenix-mx-base-${pkgver}
+  python2 setup.py install --root=${pkgdir} --skip-build --optimize=1
+  chmod 644 
${pkgdir}/usr/lib/python2.7/site-packages/mx/{URL/Doc/mxURL.pdf,DateTime/Doc/mxDateTime.pdf}
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-04-10 09:15:59 UTC (rev 210143)
+++ extra-x86_64/PKGBUILD   2014-04-10 09:20:23 UTC (rev 210144)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgbase=python-egenix-mx-base
-pkgname=('python2-egenix-mx-base')
-pkgver=3.2.6
-pkgrel=1
-pkgdesc=A collection of Python tools
-arch=('i686' 'x86_64')
-license=('custom')
-url=http://www.egenix.com/products/python/mxBase/;
-makedepends=('python2')
-conflicts=('python-egenix-mx-base=3.2.4-1')
-replaces=('python-egenix-mx-base=3.2.4-1')
-source=(http://downloads.egenix.com/python/egenix-mx-base-${pkgver}.tar.gz{,.asc})
-sha1sums=('3e21c6eba53a841070a4e9430a85ecf8a28df20f'
-  'SKIP')
-
-prepare() {
-  cd egenix-mx-base-${pkgver}
-  find . -name \*.py -exec sed -i -e s|^#!.*python|#!/usr/bin/python2| {} \;
-}
-
-build() {
-  cd egenix-mx-base-${pkgver}
-  python2 setup.py build
-}
-
-package_python2-egenix-mx-base() {
-  depends=('python2')
-
-  cd egenix-mx-base-${pkgver}
-  python2 setup.py install --root=${pkgdir} --skip-build --optimize=1
-  chmod 644 

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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 11:23:40
  Author: fyan
Revision: 109079

upgpkg: pep8 1.5.5-1

Modified:
  pep8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 09:02:19 UTC (rev 109078)
+++ PKGBUILD2014-04-10 09:23:40 UTC (rev 109079)
@@ -5,7 +5,7 @@
 
 pkgbase=pep8
 pkgname=($pkgbase $pkgbase-python2)
-pkgver=1.5.4
+pkgver=1.5.5
 pkgrel=1
 pkgdesc=Python style guide checker
 arch=('any')



[arch-commits] Commit in pep8/repos/community-any (LICENSE LICENSE PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 11:24:32
  Author: fyan
Revision: 109080

archrelease: copy trunk to community-any

Added:
  pep8/repos/community-any/LICENSE
(from rev 109079, pep8/trunk/LICENSE)
  pep8/repos/community-any/PKGBUILD
(from rev 109079, pep8/trunk/PKGBUILD)
Deleted:
  pep8/repos/community-any/LICENSE
  pep8/repos/community-any/PKGBUILD

--+
 LICENSE  |   48 +++
 PKGBUILD |  124 ++---
 2 files changed, 86 insertions(+), 86 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-04-10 09:23:40 UTC (rev 109079)
+++ LICENSE 2014-04-10 09:24:32 UTC (rev 109080)
@@ -1,24 +0,0 @@
-Copyright © 2006-2009 Johann C. Rocholl joh...@rocholl.net
-Copyright © 2009-2013 Florent Xicluna florent.xicl...@gmail.com
-
-Licensed under the terms of the Expat License
-
-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: pep8/repos/community-any/LICENSE (from rev 109079, pep8/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-04-10 09:24:32 UTC (rev 109080)
@@ -0,0 +1,24 @@
+Copyright © 2006-2009 Johann C. Rocholl joh...@rocholl.net
+Copyright © 2009-2013 Florent Xicluna florent.xicl...@gmail.com
+
+Licensed under the terms of the Expat License
+
+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
===
--- PKGBUILD2014-04-10 09:23:40 UTC (rev 109079)
+++ PKGBUILD2014-04-10 09:24:32 UTC (rev 109080)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Ismael Carnales icarnales at gmail dot com
-# Contributor: Sergey Mastykov smastykov[at]gmail[dot]com
-
-pkgbase=pep8
-pkgname=($pkgbase $pkgbase-python2)
-pkgver=1.5.4
-pkgrel=1
-pkgdesc=Python style guide checker
-arch=('any')
-url=http://github.com/jcrocholl/pep8/;
-license=('custom:Expat')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-source=(git+https://github.com/jcrocholl/${pkgbase}.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cp -r $pkgbase{,-py2}
-
-  sed -i '1s/env python$/python2/' $pkgbase-py2/pep8.py
-}
-
-build() {
-  cd ${srcdir}/${pkgbase}
-  python setup.py build
-
-  cd ${srcdir}/${pkgbase}-py2
-  python2 setup.py build
-}
-
-check() {
-  cd ${srcdir}/${pkgbase}
-  python setup.py test
-
-  cd ${srcdir}/${pkgbase}-py2
-  python2 setup.py test
-}
-
-package_pep8() {
-  depends=('python' 'python-setuptools')
-  provides=('pep8-python3')
-  conflicts=('pep8-python3')
-  replaces=('pep8-python3')
-
-  cd $pkgbase
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_pep8-python2() {
-  depends=('python2' 'python2-setuptools')
-  
-  cd $pkgbase-py2
-  python2 setup.py install -O1 --prefix=/usr --root=$pkgdir/
- 

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

2014-04-10 Thread Dave Reisner
Date: Thursday, April 10, 2014 @ 13:58:46
  Author: dreisner
Revision: 210145

upgpkg: dnsmasq 2.69-2

- include trust-anchors.conf, munge example config to point to loc (FS#39801)

Modified:
  dnsmasq/trunk/PKGBUILD

--+
 PKGBUILD |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 09:20:23 UTC (rev 210144)
+++ PKGBUILD2014-04-10 11:58:46 UTC (rev 210145)
@@ -5,7 +5,7 @@
 
 pkgname=dnsmasq
 pkgver=2.69
-pkgrel=1
+pkgrel=2
 pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
 url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
 arch=('i686' 'x86_64')
@@ -36,6 +36,10 @@
   install -Dm644 dbus/dnsmasq.conf $pkgdir/etc/dbus-1/system.d/dnsmasq.conf
   install -Dm644 dnsmasq.conf.example $pkgdir/etc/dnsmasq.conf
   install -Dm644 $srcdir/dnsmasq.service 
$pkgdir/usr/lib/systemd/system/dnsmasq.service
+
+  # DNSSEC setup
+  sed -i 's,%%PREFIX%%,/usr,' $pkgdir/etc/dnsmasq.conf
+  install -Dm644 trust-anchors.conf 
$pkgdir/usr/share/dnsmasq/trust-anchors.conf
 }
 
 # vim: ts=2 sw=2 et ft=sh



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

2014-04-10 Thread Dave Reisner
Date: Thursday, April 10, 2014 @ 13:59:27
  Author: dreisner
Revision: 210146

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

Added:
  dnsmasq/repos/extra-i686/PKGBUILD
(from rev 210145, dnsmasq/trunk/PKGBUILD)
  dnsmasq/repos/extra-i686/dnsmasq.install
(from rev 210145, dnsmasq/trunk/dnsmasq.install)
  dnsmasq/repos/extra-i686/dnsmasq.service
(from rev 210145, dnsmasq/trunk/dnsmasq.service)
  dnsmasq/repos/extra-x86_64/PKGBUILD
(from rev 210145, dnsmasq/trunk/PKGBUILD)
  dnsmasq/repos/extra-x86_64/dnsmasq.install
(from rev 210145, dnsmasq/trunk/dnsmasq.install)
  dnsmasq/repos/extra-x86_64/dnsmasq.service
(from rev 210145, dnsmasq/trunk/dnsmasq.service)
Deleted:
  dnsmasq/repos/extra-i686/PKGBUILD
  dnsmasq/repos/extra-i686/dnsmasq.install
  dnsmasq/repos/extra-i686/dnsmasq.service
  dnsmasq/repos/extra-x86_64/PKGBUILD
  dnsmasq/repos/extra-x86_64/dnsmasq.install
  dnsmasq/repos/extra-x86_64/dnsmasq.service

--+
 /PKGBUILD|   90 +
 /dnsmasq.install |   42 +++
 /dnsmasq.service |   30 +
 extra-i686/PKGBUILD  |   41 --
 extra-i686/dnsmasq.install   |   21 -
 extra-i686/dnsmasq.service   |   15 --
 extra-x86_64/PKGBUILD|   41 --
 extra-x86_64/dnsmasq.install |   21 -
 extra-x86_64/dnsmasq.service |   15 --
 9 files changed, 162 insertions(+), 154 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-10 11:58:46 UTC (rev 210145)
+++ extra-i686/PKGBUILD 2014-04-10 11:59:27 UTC (rev 210146)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner dreis...@archlinux.org
-# Contributor: Paul Mattal p...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=dnsmasq
-pkgver=2.69
-pkgrel=1
-pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
-url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('glibc' 'libdbus' 'gmp' 'nettle')
-install=$pkgname.install
-backup=('etc/dnsmasq.conf')
-source=(http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.xz{,.asc}
-'dnsmasq.service')
-md5sums=('c5a1152e646eb54db4f33f8e0deee180'
- 'SKIP'
- '7ac45726cabef4145db40d758cc7fedf')
-
-build() {
-  cd $pkgname-$pkgver
-
-  make \
-CFLAGS=$CPPFLAGS $CFLAGS \
-LDFLAGS=$LDFLAGS \
-COPTS=-DHAVE_DNSSEC -DHAVE_DBUS
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make BINDIR=/usr/bin PREFIX=/usr DESTDIR=$pkgdir install
-
-  install -Dm644 dbus/dnsmasq.conf $pkgdir/etc/dbus-1/system.d/dnsmasq.conf
-  install -Dm644 dnsmasq.conf.example $pkgdir/etc/dnsmasq.conf
-  install -Dm644 $srcdir/dnsmasq.service 
$pkgdir/usr/lib/systemd/system/dnsmasq.service
-}
-
-# vim: ts=2 sw=2 et ft=sh

Copied: dnsmasq/repos/extra-i686/PKGBUILD (from rev 210145, 
dnsmasq/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-10 11:59:27 UTC (rev 210146)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Contributor: Paul Mattal p...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=dnsmasq
+pkgver=2.69
+pkgrel=2
+pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
+url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('glibc' 'libdbus' 'gmp' 'nettle')
+install=$pkgname.install
+backup=('etc/dnsmasq.conf')
+source=(http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.xz{,.asc}
+'dnsmasq.service')
+md5sums=('c5a1152e646eb54db4f33f8e0deee180'
+ 'SKIP'
+ '7ac45726cabef4145db40d758cc7fedf')
+
+build() {
+  cd $pkgname-$pkgver
+
+  make \
+CFLAGS=$CPPFLAGS $CFLAGS \
+LDFLAGS=$LDFLAGS \
+COPTS=-DHAVE_DNSSEC -DHAVE_DBUS
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make BINDIR=/usr/bin PREFIX=/usr DESTDIR=$pkgdir install
+
+  install -Dm644 dbus/dnsmasq.conf $pkgdir/etc/dbus-1/system.d/dnsmasq.conf
+  install -Dm644 dnsmasq.conf.example $pkgdir/etc/dnsmasq.conf
+  install -Dm644 $srcdir/dnsmasq.service 
$pkgdir/usr/lib/systemd/system/dnsmasq.service
+
+  # DNSSEC setup
+  sed -i 's,%%PREFIX%%,/usr,' $pkgdir/etc/dnsmasq.conf
+  install -Dm644 trust-anchors.conf 
$pkgdir/usr/share/dnsmasq/trust-anchors.conf
+}
+
+# vim: ts=2 sw=2 et ft=sh

Deleted: extra-i686/dnsmasq.install
===
--- extra-i686/dnsmasq.install  2014-04-10 11:58:46 UTC (rev 210145)
+++ extra-i686/dnsmasq.install  2014-04-10 11:59:27 UTC (rev 210146)
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-add_dnsmasq_user() {
-  if ! getent passwd dnsmasq /dev/null; then
-useradd -r -d / -c 'dnsmasq daemon' -s /sbin/nologin dnsmasq
-  fi
-}
-

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

2014-04-10 Thread Andrea Scarpino
Date: Thursday, April 10, 2014 @ 14:04:17
  Author: andrea
Revision: 210148

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

Added:
  oxygen-gtk2/repos/extra-i686/PKGBUILD
(from rev 210147, oxygen-gtk2/trunk/PKGBUILD)
  oxygen-gtk2/repos/extra-x86_64/PKGBUILD
(from rev 210147, oxygen-gtk2/trunk/PKGBUILD)
Deleted:
  oxygen-gtk2/repos/extra-i686/PKGBUILD
  oxygen-gtk2/repos/extra-i686/kdebug-331879.patch
  oxygen-gtk2/repos/extra-x86_64/PKGBUILD
  oxygen-gtk2/repos/extra-x86_64/kdebug-331879.patch

--+
 /PKGBUILD|   68 +
 extra-i686/PKGBUILD  |   39 -
 extra-i686/kdebug-331879.patch   |   35 ---
 extra-x86_64/PKGBUILD|   39 -
 extra-x86_64/kdebug-331879.patch |   35 ---
 5 files changed, 68 insertions(+), 148 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-10 12:04:07 UTC (rev 210147)
+++ extra-i686/PKGBUILD 2014-04-10 12:04:17 UTC (rev 210148)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: birdflesh antkoul at gmail dot com
-
-pkgname=oxygen-gtk2
-pkgver=1.4.4
-pkgrel=2
-pkgdesc=Port of the default KDE widget theme (Oxygen) to GTK2
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/playground/artwork/oxygen-gtk/'
-license=('LGPL')
-depends=('gtk2')
-conflicts=('oxygen-gtk')
-replaces=('oxygen-gtk')
-makedepends=('cmake')
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;
-'kdebug-331879.patch')
-md5sums=('dd55d704f97e0c9e2fcc0d4d88d2eb1d'
- '1900b38a9e5fbfe681aa3074fd95b64e')
-
-prepare() {
-  mkdir build
-
-  cd ${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/kdebug-331879.patch
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: oxygen-gtk2/repos/extra-i686/PKGBUILD (from rev 210147, 
oxygen-gtk2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-10 12:04:17 UTC (rev 210148)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: birdflesh antkoul at gmail dot com
+
+pkgname=oxygen-gtk2
+pkgver=1.4.5
+pkgrel=1
+pkgdesc=Port of the default KDE widget theme (Oxygen) to GTK2
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/playground/artwork/oxygen-gtk/'
+license=('LGPL')
+depends=('gtk2')
+conflicts=('oxygen-gtk')
+replaces=('oxygen-gtk')
+makedepends=('cmake')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('b368d074cb13a6020e6ed43016866d93')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/kdebug-331879.patch
===
--- extra-i686/kdebug-331879.patch  2014-04-10 12:04:07 UTC (rev 210147)
+++ extra-i686/kdebug-331879.patch  2014-04-10 12:04:17 UTC (rev 210148)
@@ -1,35 +0,0 @@
-From: Hugo Pereira Da Costa hugo.pere...@free.fr
-Date: Sun, 09 Mar 2014 12:00:33 +
-Subject: make sure parent is registered to innerShadowEngine before 
registering child
-X-Git-Url: 
http://quickgit.kde.org/?p=oxygen-gtk.gita=commitdiffh=b39931fa3ad7a2756bcb1494d5c3559513406ce2

-make sure parent is registered to innerShadowEngine before registering child
-CCBUG: 331879

-
-
 a/src/oxygenstylewrapper.cpp
-+++ b/src/oxygenstylewrapper.cpp
-@@ -1669,7 +1669,10 @@
- }
- 
- // register to inner shadow engine
--if( shadow == GTK_SHADOW_IN  
gtk_scrolled_window_get_shadow_type( GTK_SCROLLED_WINDOW( widget ) ) == 
GTK_SHADOW_IN )
-+if(
-+shadow == GTK_SHADOW_IN 
-+gtk_scrolled_window_get_shadow_type( GTK_SCROLLED_WINDOW( 
widget ) ) == GTK_SHADOW_IN 
-+Style::instance().animations().innerShadowEngine().contains( 
widget ) )
- { 
Style::instance().animations().innerShadowEngine().registerChild( widget, 
gtk_bin_get_child( GTK_BIN( widget ) ) ); }
- 
- } else if(
-@@ -2074,7 +2077,8 @@
- if( gtk_scrolled_window_get_shadow_type( scrolledWindow ) 
!= GTK_SHADOW_IN )
- {
- gtk_scrolled_window_set_shadow_type( scrolledWindow, 
GTK_SHADOW_IN );
--
Style::instance().animations().innerShadowEngine().registerChild( child, 
gtk_bin_get_child( GTK_BIN( child ) ) );

[arch-commits] Commit in oxygen-gtk2/trunk (PKGBUILD kdebug-331879.patch)

2014-04-10 Thread Andrea Scarpino
Date: Thursday, April 10, 2014 @ 14:04:07
  Author: andrea
Revision: 210147

upgpkg: oxygen-gtk2 1.4.5-1

Upstream release

Modified:
  oxygen-gtk2/trunk/PKGBUILD
Deleted:
  oxygen-gtk2/trunk/kdebug-331879.patch

-+
 PKGBUILD|   13 -
 kdebug-331879.patch |   35 ---
 2 files changed, 4 insertions(+), 44 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 11:59:27 UTC (rev 210146)
+++ PKGBUILD2014-04-10 12:04:07 UTC (rev 210147)
@@ -3,8 +3,8 @@
 # Contributor: birdflesh antkoul at gmail dot com
 
 pkgname=oxygen-gtk2
-pkgver=1.4.4
-pkgrel=2
+pkgver=1.4.5
+pkgrel=1
 pkgdesc=Port of the default KDE widget theme (Oxygen) to GTK2
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/playground/artwork/oxygen-gtk/'
@@ -13,16 +13,11 @@
 conflicts=('oxygen-gtk')
 replaces=('oxygen-gtk')
 makedepends=('cmake')
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;
-'kdebug-331879.patch')
-md5sums=('dd55d704f97e0c9e2fcc0d4d88d2eb1d'
- '1900b38a9e5fbfe681aa3074fd95b64e')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('b368d074cb13a6020e6ed43016866d93')
 
 prepare() {
   mkdir build
-
-  cd ${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/kdebug-331879.patch
 }
 
 build() {

Deleted: kdebug-331879.patch
===
--- kdebug-331879.patch 2014-04-10 11:59:27 UTC (rev 210146)
+++ kdebug-331879.patch 2014-04-10 12:04:07 UTC (rev 210147)
@@ -1,35 +0,0 @@
-From: Hugo Pereira Da Costa hugo.pere...@free.fr
-Date: Sun, 09 Mar 2014 12:00:33 +
-Subject: make sure parent is registered to innerShadowEngine before 
registering child
-X-Git-Url: 
http://quickgit.kde.org/?p=oxygen-gtk.gita=commitdiffh=b39931fa3ad7a2756bcb1494d5c3559513406ce2

-make sure parent is registered to innerShadowEngine before registering child
-CCBUG: 331879

-
-
 a/src/oxygenstylewrapper.cpp
-+++ b/src/oxygenstylewrapper.cpp
-@@ -1669,7 +1669,10 @@
- }
- 
- // register to inner shadow engine
--if( shadow == GTK_SHADOW_IN  
gtk_scrolled_window_get_shadow_type( GTK_SCROLLED_WINDOW( widget ) ) == 
GTK_SHADOW_IN )
-+if(
-+shadow == GTK_SHADOW_IN 
-+gtk_scrolled_window_get_shadow_type( GTK_SCROLLED_WINDOW( 
widget ) ) == GTK_SHADOW_IN 
-+Style::instance().animations().innerShadowEngine().contains( 
widget ) )
- { 
Style::instance().animations().innerShadowEngine().registerChild( widget, 
gtk_bin_get_child( GTK_BIN( widget ) ) ); }
- 
- } else if(
-@@ -2074,7 +2077,8 @@
- if( gtk_scrolled_window_get_shadow_type( scrolledWindow ) 
!= GTK_SHADOW_IN )
- {
- gtk_scrolled_window_set_shadow_type( scrolledWindow, 
GTK_SHADOW_IN );
--
Style::instance().animations().innerShadowEngine().registerChild( child, 
gtk_bin_get_child( GTK_BIN( child ) ) );
-+if( 
Style::instance().animations().innerShadowEngine().contains( child ) )
-+{ 
Style::instance().animations().innerShadowEngine().registerChild( child, 
gtk_bin_get_child( GTK_BIN( child ) ) ); }
- }
- 
- return;
-



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

2014-04-10 Thread Andrea Scarpino
Date: Thursday, April 10, 2014 @ 14:04:43
  Author: andrea
Revision: 210150

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

Added:
  oxygen-gtk3/repos/extra-i686/PKGBUILD
(from rev 210149, oxygen-gtk3/trunk/PKGBUILD)
  oxygen-gtk3/repos/extra-x86_64/PKGBUILD
(from rev 210149, oxygen-gtk3/trunk/PKGBUILD)
Deleted:
  oxygen-gtk3/repos/extra-i686/PKGBUILD
  oxygen-gtk3/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-10 12:04:33 UTC (rev 210149)
+++ extra-i686/PKGBUILD 2014-04-10 12:04:43 UTC (rev 210150)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=oxygen-gtk3
-pkgver=1.3.4
-pkgrel=1
-pkgdesc=Port of the default KDE widget theme (Oxygen) to GTK3
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/playground/artwork/oxygen-gtk/'
-license=('LGPL')
-depends=('gtk3')
-makedepends=('cmake')
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('0299012f736444230bfdef0aaeb27a2f')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: oxygen-gtk3/repos/extra-i686/PKGBUILD (from rev 210149, 
oxygen-gtk3/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-10 12:04:43 UTC (rev 210150)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=oxygen-gtk3
+pkgver=1.3.5
+pkgrel=1
+pkgdesc=Port of the default KDE widget theme (Oxygen) to GTK3
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/playground/artwork/oxygen-gtk/'
+license=('LGPL')
+depends=('gtk3')
+makedepends=('cmake')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('fb0204ad8af22070b0eea2e7b5d6c686')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-04-10 12:04:33 UTC (rev 210149)
+++ extra-x86_64/PKGBUILD   2014-04-10 12:04:43 UTC (rev 210150)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=oxygen-gtk3
-pkgver=1.3.4
-pkgrel=1
-pkgdesc=Port of the default KDE widget theme (Oxygen) to GTK3
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/playground/artwork/oxygen-gtk/'
-license=('LGPL')
-depends=('gtk3')
-makedepends=('cmake')
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('0299012f736444230bfdef0aaeb27a2f')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: oxygen-gtk3/repos/extra-x86_64/PKGBUILD (from rev 210149, 
oxygen-gtk3/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-04-10 12:04:43 UTC (rev 210150)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=oxygen-gtk3
+pkgver=1.3.5
+pkgrel=1
+pkgdesc=Port of the default KDE widget theme (Oxygen) to GTK3
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/playground/artwork/oxygen-gtk/'
+license=('LGPL')
+depends=('gtk3')
+makedepends=('cmake')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('fb0204ad8af22070b0eea2e7b5d6c686')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-04-10 Thread Andrea Scarpino
Date: Thursday, April 10, 2014 @ 14:04:33
  Author: andrea
Revision: 210149

upgpkg: oxygen-gtk3 1.3.5-1

Upstream release

Modified:
  oxygen-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 12:04:17 UTC (rev 210148)
+++ PKGBUILD2014-04-10 12:04:33 UTC (rev 210149)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=oxygen-gtk3
-pkgver=1.3.4
+pkgver=1.3.5
 pkgrel=1
 pkgdesc=Port of the default KDE widget theme (Oxygen) to GTK3
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('gtk3')
 makedepends=('cmake')
 
source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('0299012f736444230bfdef0aaeb27a2f')
+md5sums=('fb0204ad8af22070b0eea2e7b5d6c686')
 
 prepare() {
   mkdir build



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:29:40
  Author: fyan
Revision: 109081

upgpkg: perl-xml-libxml 2.0115-1

Modified:
  perl-xml-libxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 09:24:32 UTC (rev 109080)
+++ PKGBUILD2014-04-10 12:29:40 UTC (rev 109081)
@@ -4,7 +4,7 @@
 # Contributor: François Charette francois.archlinux.org
 
 pkgname=perl-xml-libxml
-pkgver=2.0110
+pkgver=2.0115
 pkgrel=1
 pkgdesc=Interface to the libxml library
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 options=('!emptydirs')
 install=$pkgname.install
 source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-md5sums=('5cc869a22613e20d9d0abc58aae11bcd')
+md5sums=('456cde9d6733792e35bc45df566e82ad')
 
 build() {
   cd $srcdir/XML-LibXML-$pkgver



[arch-commits] Commit in perl-xml-libxml/repos (8 files)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:31:16
  Author: fyan
Revision: 109082

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

Added:
  perl-xml-libxml/repos/community-i686/PKGBUILD
(from rev 109081, perl-xml-libxml/trunk/PKGBUILD)
  perl-xml-libxml/repos/community-i686/perl-xml-libxml.install
(from rev 109081, perl-xml-libxml/trunk/perl-xml-libxml.install)
  perl-xml-libxml/repos/community-x86_64/PKGBUILD
(from rev 109081, perl-xml-libxml/trunk/PKGBUILD)
  perl-xml-libxml/repos/community-x86_64/perl-xml-libxml.install
(from rev 109081, perl-xml-libxml/trunk/perl-xml-libxml.install)
Deleted:
  perl-xml-libxml/repos/community-i686/PKGBUILD
  perl-xml-libxml/repos/community-i686/perl-xml-libxml.install
  perl-xml-libxml/repos/community-x86_64/PKGBUILD
  perl-xml-libxml/repos/community-x86_64/perl-xml-libxml.install

--+
 /PKGBUILD|   76 +
 /perl-xml-libxml.install |   30 +++
 community-i686/PKGBUILD  |   38 --
 community-i686/perl-xml-libxml.install   |   15 -
 community-x86_64/PKGBUILD|   38 --
 community-x86_64/perl-xml-libxml.install |   15 -
 6 files changed, 106 insertions(+), 106 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-10 12:29:40 UTC (rev 109081)
+++ community-i686/PKGBUILD 2014-04-10 12:31:16 UTC (rev 109082)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel jst...@aur.archlinux.org
-# Contributor: Justin juster Davis jrc...@gmail.com
-# Contributor: François Charette francois.archlinux.org
-
-pkgname=perl-xml-libxml
-pkgver=2.0110
-pkgrel=1
-pkgdesc=Interface to the libxml library
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/XML-LibXML;
-license=('GPL')
-depends=('libxml2' 'perl-xml-sax' 'perl-xml-namespacesupport')
-provides=('perl-libxml' 'perl-xml-libxml-common')
-replaces=('perl-libxml' 'perl-xml-libxml-common')
-options=('!emptydirs')
-install=$pkgname.install
-source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-md5sums=('5cc869a22613e20d9d0abc58aae11bcd')
-
-build() {
-  cd $srcdir/XML-LibXML-$pkgver
-
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd $srcdir/XML-LibXML-$pkgver
-
-  make test
-}
-
-package() {
-  cd $srcdir/XML-LibXML-$pkgver
-
-  make pure_install doc_install DESTDIR=$pkgdir/
-}

Copied: perl-xml-libxml/repos/community-i686/PKGBUILD (from rev 109081, 
perl-xml-libxml/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-10 12:31:16 UTC (rev 109082)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jonathan Steel jst...@aur.archlinux.org
+# Contributor: Justin juster Davis jrc...@gmail.com
+# Contributor: François Charette francois.archlinux.org
+
+pkgname=perl-xml-libxml
+pkgver=2.0115
+pkgrel=1
+pkgdesc=Interface to the libxml library
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/XML-LibXML;
+license=('GPL')
+depends=('libxml2' 'perl-xml-sax' 'perl-xml-namespacesupport')
+provides=('perl-libxml' 'perl-xml-libxml-common')
+replaces=('perl-libxml' 'perl-xml-libxml-common')
+options=('!emptydirs')
+install=$pkgname.install
+source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
+md5sums=('456cde9d6733792e35bc45df566e82ad')
+
+build() {
+  cd $srcdir/XML-LibXML-$pkgver
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/XML-LibXML-$pkgver
+
+  make test
+}
+
+package() {
+  cd $srcdir/XML-LibXML-$pkgver
+
+  make pure_install doc_install DESTDIR=$pkgdir/
+}

Deleted: community-i686/perl-xml-libxml.install
===
--- community-i686/perl-xml-libxml.install  2014-04-10 12:29:40 UTC (rev 
109081)
+++ community-i686/perl-xml-libxml.install  2014-04-10 12:31:16 UTC (rev 
109082)
@@ -1,15 +0,0 @@
-post_install() {
-  echo :: Installing SAX XML Parsers
-  /usr/bin/perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::LibXML::SAX::Parser))-save_parsers()
-  /usr/bin/perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::LibXML::SAX))-save_parsers()
-}
-
-post_upgrade() {
-  libxmlcount=`grep -c XML::LibXML::SAX 
/usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini`
-  if [[ $libxmlcount == 0 ]]; then
- echo :: Installing SAX XML Parsers
- /usr/bin/perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::LibXML::SAX::Parser))-save_parsers()
- /usr/bin/perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::LibXML::SAX))-save_parsers()
-  fi
-}
-

Copied: perl-xml-libxml/repos/community-i686/perl-xml-libxml.install (from rev 
109081, perl-xml-libxml/trunk/perl-xml-libxml.install)

[arch-commits] Commit in perl-locale-maketext-lexicon/trunk (PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:31:29
  Author: fyan
Revision: 109083

upgpkg: perl-locale-maketext-lexicon 1.00-1

Modified:
  perl-locale-maketext-lexicon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 12:31:16 UTC (rev 109082)
+++ PKGBUILD2014-04-10 12:31:29 UTC (rev 109083)
@@ -3,7 +3,7 @@
 # Contributor: Charles Mauch cma...@gmail.com
 
 pkgname=perl-locale-maketext-lexicon
-pkgver=0.99
+pkgver=1.00
 pkgrel=1
 pkgdesc=Perl/CPAN Module Locale::Maketext::Lexicon : Use other catalog 
formats in Maketext
 arch=(any)
@@ -12,7 +12,7 @@
 license=(GPL PerlArtistic)
 options=(!emptydirs)
 
source=(http://search.cpan.org/CPAN/authors/id/D/DR/DRTECH/Locale-Maketext-Lexicon-$pkgver.tar.gz;)
-md5sums=('c88e75b607a424c04613765cebb5')
+md5sums=('51acf0cb00cc01a2c8f560d74dd6c593')
 
 build() {
   cd $srcdir/Locale-Maketext-Lexicon-$pkgver



[arch-commits] Commit in perl-locale-maketext-lexicon/repos/community-any (4 files)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:32:42
  Author: fyan
Revision: 109084

archrelease: copy trunk to community-any

Added:
  perl-locale-maketext-lexicon/repos/community-any/ChangeLog
(from rev 109083, perl-locale-maketext-lexicon/trunk/ChangeLog)
  perl-locale-maketext-lexicon/repos/community-any/PKGBUILD
(from rev 109083, perl-locale-maketext-lexicon/trunk/PKGBUILD)
Deleted:
  perl-locale-maketext-lexicon/repos/community-any/ChangeLog
  perl-locale-maketext-lexicon/repos/community-any/PKGBUILD

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

Deleted: ChangeLog
===
--- ChangeLog   2014-04-10 12:31:29 UTC (rev 109083)
+++ ChangeLog   2014-04-10 12:32:42 UTC (rev 109084)
@@ -1,7 +0,0 @@
-2010-05-25 Angel Velasquez an...@archlinux.org
-   * Updated PKGBUILD (removed || return 1 and added package function)
-   * bump release to 0.86
-   * Deleted empty directories on the pkg
-
-2007-07-29 Georg Grabler (STiAT) ggrab...@gmail.com
-* Version bump to 0.64

Copied: perl-locale-maketext-lexicon/repos/community-any/ChangeLog (from rev 
109083, perl-locale-maketext-lexicon/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2014-04-10 12:32:42 UTC (rev 109084)
@@ -0,0 +1,7 @@
+2010-05-25 Angel Velasquez an...@archlinux.org
+   * Updated PKGBUILD (removed || return 1 and added package function)
+   * bump release to 0.86
+   * Deleted empty directories on the pkg
+
+2007-07-29 Georg Grabler (STiAT) ggrab...@gmail.com
+* Version bump to 0.64

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 12:31:29 UTC (rev 109083)
+++ PKGBUILD2014-04-10 12:32:42 UTC (rev 109084)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Charles Mauch cma...@gmail.com
-
-pkgname=perl-locale-maketext-lexicon
-pkgver=0.99
-pkgrel=1
-pkgdesc=Perl/CPAN Module Locale::Maketext::Lexicon : Use other catalog 
formats in Maketext
-arch=(any)
-depends=(perl)
-url=http://search.cpan.org/dist/Locale-Maketext-Lexicon;
-license=(GPL PerlArtistic)
-options=(!emptydirs)
-source=(http://search.cpan.org/CPAN/authors/id/D/DR/DRTECH/Locale-Maketext-Lexicon-$pkgver.tar.gz;)
-md5sums=('c88e75b607a424c04613765cebb5')
-
-build() {
-  cd $srcdir/Locale-Maketext-Lexicon-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd $srcdir/Locale-Maketext-Lexicon-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-locale-maketext-lexicon/repos/community-any/PKGBUILD (from rev 
109083, perl-locale-maketext-lexicon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 12:32:42 UTC (rev 109084)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Charles Mauch cma...@gmail.com
+
+pkgname=perl-locale-maketext-lexicon
+pkgver=1.00
+pkgrel=1
+pkgdesc=Perl/CPAN Module Locale::Maketext::Lexicon : Use other catalog 
formats in Maketext
+arch=(any)
+depends=(perl)
+url=http://search.cpan.org/dist/Locale-Maketext-Lexicon;
+license=(GPL PerlArtistic)
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/D/DR/DRTECH/Locale-Maketext-Lexicon-$pkgver.tar.gz;)
+md5sums=('51acf0cb00cc01a2c8f560d74dd6c593')
+
+build() {
+  cd $srcdir/Locale-Maketext-Lexicon-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd $srcdir/Locale-Maketext-Lexicon-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:33:01
  Author: fyan
Revision: 109085

upgpkg: perl-ldap 0.62-1

Modified:
  perl-ldap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 12:32:42 UTC (rev 109084)
+++ PKGBUILD2014-04-10 12:33:01 UTC (rev 109085)
@@ -3,7 +3,7 @@
 # Maintainer: Tom K t...@runbox.com
 
 pkgname=perl-ldap
-pkgver=0.58
+pkgver=0.62
 pkgrel=1
 pkgdesc=Interface to LDAP Protocol (RFC1777)
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('perl-convert-asn1' 'perl-xml-sax-writer')
 license=(GPL)
 
source=(http://search.cpan.org/CPAN/authors/id/M/MA/MARSCHAP/perl-ldap-$pkgver.tar.gz)
-md5sums=('fbd97cfbe631cc0412a6504fe210b25b')
+md5sums=('bd7bfe049b36f82f2e18cc4b47485fec')
 
 build() {
   cd  $srcdir/perl-ldap-$pkgver



[arch-commits] Commit in perl-ldap/repos/community-any (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:33:41
  Author: fyan
Revision: 109086

archrelease: copy trunk to community-any

Added:
  perl-ldap/repos/community-any/PKGBUILD
(from rev 109085, perl-ldap/trunk/PKGBUILD)
Deleted:
  perl-ldap/repos/community-any/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 12:33:01 UTC (rev 109085)
+++ PKGBUILD2014-04-10 12:33:41 UTC (rev 109086)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Tom K t...@runbox.com
-
-pkgname=perl-ldap
-pkgver=0.58
-pkgrel=1
-pkgdesc=Interface to LDAP Protocol (RFC1777)
-arch=('any')
-url=http://search.cpan.org/dist/perl-ldap;
-depends=('perl-convert-asn1' 'perl-xml-sax-writer')
-license=(GPL)
-source=(http://search.cpan.org/CPAN/authors/id/M/MA/MARSCHAP/perl-ldap-$pkgver.tar.gz)
-md5sums=('fbd97cfbe631cc0412a6504fe210b25b')
-
-build() {
-  cd  $srcdir/perl-ldap-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/perl-ldap-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-ldap/repos/community-any/PKGBUILD (from rev 109085, 
perl-ldap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 12:33:41 UTC (rev 109086)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Tom K t...@runbox.com
+
+pkgname=perl-ldap
+pkgver=0.62
+pkgrel=1
+pkgdesc=Interface to LDAP Protocol (RFC1777)
+arch=('any')
+url=http://search.cpan.org/dist/perl-ldap;
+depends=('perl-convert-asn1' 'perl-xml-sax-writer')
+license=(GPL)
+source=(http://search.cpan.org/CPAN/authors/id/M/MA/MARSCHAP/perl-ldap-$pkgver.tar.gz)
+md5sums=('bd7bfe049b36f82f2e18cc4b47485fec')
+
+build() {
+  cd  $srcdir/perl-ldap-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/perl-ldap-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:36:33
  Author: fyan
Revision: 109087

upgpkg: perl-gd 2.53-1

Modified:
  perl-gd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 12:33:41 UTC (rev 109086)
+++ PKGBUILD2014-04-10 12:36:33 UTC (rev 109087)
@@ -3,7 +3,7 @@
 # Contributor: Sergej Pupykin pupykin.s+...@gmail.com
 
 pkgname=perl-gd
-pkgver=2.51
+pkgver=2.53
 pkgrel=1
 pkgdesc=Interface to Gd Graphics Library
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('gd')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/L/LD/LDS/GD-$pkgver.tar.gz)
-md5sums=('49ab25536d4708ab10b7f4879d2fbbc8')
+md5sums=('d2c9b18123bcaff8672eb50f2eb37ed3')
 
 build() {
   cd  $srcdir/GD-$pkgver



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:37:39
  Author: fyan
Revision: 109088

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

Added:
  perl-gd/repos/community-i686/PKGBUILD
(from rev 109087, perl-gd/trunk/PKGBUILD)
  perl-gd/repos/community-x86_64/PKGBUILD
(from rev 109087, perl-gd/trunk/PKGBUILD)
Deleted:
  perl-gd/repos/community-i686/PKGBUILD
  perl-gd/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   58 
 community-i686/PKGBUILD   |   29 --
 community-x86_64/PKGBUILD |   29 --
 3 files changed, 58 insertions(+), 58 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-10 12:36:33 UTC (rev 109087)
+++ community-i686/PKGBUILD 2014-04-10 12:37:39 UTC (rev 109088)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Sergej Pupykin pupykin.s+...@gmail.com
-
-pkgname=perl-gd
-pkgver=2.51
-pkgrel=1
-pkgdesc=Interface to Gd Graphics Library
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/GD;
-license=('GPL' 'PerlArtistic')
-depends=('gd')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/L/LD/LDS/GD-$pkgver.tar.gz)
-md5sums=('49ab25536d4708ab10b7f4879d2fbbc8')
-
-build() {
-  cd  $srcdir/GD-$pkgver
-  unset CFLAGS
-  unset LDFLAGS
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make CCFLAGS=-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
-}
-package() {
-  cd  $srcdir/GD-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-gd/repos/community-i686/PKGBUILD (from rev 109087, 
perl-gd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-10 12:37:39 UTC (rev 109088)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+...@gmail.com
+
+pkgname=perl-gd
+pkgver=2.53
+pkgrel=1
+pkgdesc=Interface to Gd Graphics Library
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/GD;
+license=('GPL' 'PerlArtistic')
+depends=('gd')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/L/LD/LDS/GD-$pkgver.tar.gz)
+md5sums=('d2c9b18123bcaff8672eb50f2eb37ed3')
+
+build() {
+  cd  $srcdir/GD-$pkgver
+  unset CFLAGS
+  unset LDFLAGS
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make CCFLAGS=-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
+}
+package() {
+  cd  $srcdir/GD-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-10 12:36:33 UTC (rev 109087)
+++ community-x86_64/PKGBUILD   2014-04-10 12:37:39 UTC (rev 109088)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Sergej Pupykin pupykin.s+...@gmail.com
-
-pkgname=perl-gd
-pkgver=2.51
-pkgrel=1
-pkgdesc=Interface to Gd Graphics Library
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/GD;
-license=('GPL' 'PerlArtistic')
-depends=('gd')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/L/LD/LDS/GD-$pkgver.tar.gz)
-md5sums=('49ab25536d4708ab10b7f4879d2fbbc8')
-
-build() {
-  cd  $srcdir/GD-$pkgver
-  unset CFLAGS
-  unset LDFLAGS
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make CCFLAGS=-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
-}
-package() {
-  cd  $srcdir/GD-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-gd/repos/community-x86_64/PKGBUILD (from rev 109087, 
perl-gd/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-10 12:37:39 UTC (rev 109088)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+...@gmail.com
+
+pkgname=perl-gd
+pkgver=2.53
+pkgrel=1
+pkgdesc=Interface to Gd Graphics Library
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/GD;
+license=('GPL' 'PerlArtistic')
+depends=('gd')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/L/LD/LDS/GD-$pkgver.tar.gz)
+md5sums=('d2c9b18123bcaff8672eb50f2eb37ed3')
+
+build() {
+  cd  $srcdir/GD-$pkgver
+  unset CFLAGS
+  unset LDFLAGS
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make CCFLAGS=-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
+}
+package() {
+  cd  $srcdir/GD-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name 

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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:40:13
  Author: fyan
Revision: 109089

upgpkg: perl-class-methodmaker 2.21-1

Modified:
  perl-class-methodmaker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 12:37:39 UTC (rev 109088)
+++ PKGBUILD2014-04-10 12:40:13 UTC (rev 109089)
@@ -3,7 +3,7 @@
 # Contributor: François Charette firmicus ατ gmx δοτ net
 
 pkgname=perl-class-methodmaker
-pkgver=2.20
+pkgver=2.21
 pkgrel=1
 pkgdesc=Create generic class methods
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('perl=5.10.0')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/S/SC/SCHWIGON/class-methodmaker/Class-MethodMaker-${pkgver}.tar.gz;)
-md5sums=('6ff22acb19ebfccaa9de07c7d4358129')
+md5sums=('d53a587fb84d5c5209e55ec0d4fab21d')
 
 build() {
   cd  $srcdir/Class-MethodMaker-$pkgver



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:41:18
  Author: fyan
Revision: 109090

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

Added:
  perl-class-methodmaker/repos/community-i686/PKGBUILD
(from rev 109089, perl-class-methodmaker/trunk/PKGBUILD)
  perl-class-methodmaker/repos/community-x86_64/PKGBUILD
(from rev 109089, perl-class-methodmaker/trunk/PKGBUILD)
Deleted:
  perl-class-methodmaker/repos/community-i686/PKGBUILD
  perl-class-methodmaker/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   56 
 community-i686/PKGBUILD   |   28 --
 community-x86_64/PKGBUILD |   28 --
 3 files changed, 56 insertions(+), 56 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-10 12:40:13 UTC (rev 109089)
+++ community-i686/PKGBUILD 2014-04-10 12:41:18 UTC (rev 109090)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-class-methodmaker
-pkgver=2.20
-pkgrel=1
-pkgdesc=Create generic class methods
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/Class-MethodMaker;
-license=('GPL' 'PerlArtistic')
-depends=('perl=5.10.0')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/S/SC/SCHWIGON/class-methodmaker/Class-MethodMaker-${pkgver}.tar.gz;)
-md5sums=('6ff22acb19ebfccaa9de07c7d4358129')
-
-build() {
-  cd  $srcdir/Class-MethodMaker-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor 
-  make
-}
-
-package() {
-  cd  $srcdir/Class-MethodMaker-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-class-methodmaker/repos/community-i686/PKGBUILD (from rev 109089, 
perl-class-methodmaker/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-10 12:41:18 UTC (rev 109090)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-class-methodmaker
+pkgver=2.21
+pkgrel=1
+pkgdesc=Create generic class methods
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Class-MethodMaker;
+license=('GPL' 'PerlArtistic')
+depends=('perl=5.10.0')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/S/SC/SCHWIGON/class-methodmaker/Class-MethodMaker-${pkgver}.tar.gz;)
+md5sums=('d53a587fb84d5c5209e55ec0d4fab21d')
+
+build() {
+  cd  $srcdir/Class-MethodMaker-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor 
+  make
+}
+
+package() {
+  cd  $srcdir/Class-MethodMaker-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-10 12:40:13 UTC (rev 109089)
+++ community-x86_64/PKGBUILD   2014-04-10 12:41:18 UTC (rev 109090)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-class-methodmaker
-pkgver=2.20
-pkgrel=1
-pkgdesc=Create generic class methods
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/Class-MethodMaker;
-license=('GPL' 'PerlArtistic')
-depends=('perl=5.10.0')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/S/SC/SCHWIGON/class-methodmaker/Class-MethodMaker-${pkgver}.tar.gz;)
-md5sums=('6ff22acb19ebfccaa9de07c7d4358129')
-
-build() {
-  cd  $srcdir/Class-MethodMaker-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor 
-  make
-}
-
-package() {
-  cd  $srcdir/Class-MethodMaker-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-class-methodmaker/repos/community-x86_64/PKGBUILD (from rev 
109089, perl-class-methodmaker/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-10 12:41:18 UTC (rev 109090)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-class-methodmaker
+pkgver=2.21
+pkgrel=1
+pkgdesc=Create generic class methods
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Class-MethodMaker;
+license=('GPL' 'PerlArtistic')
+depends=('perl=5.10.0')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/S/SC/SCHWIGON/class-methodmaker/Class-MethodMaker-${pkgver}.tar.gz;)

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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:41:26
  Author: fyan
Revision: 109091

upgpkg: perl-universal-can 1.20140328-1

Modified:
  perl-universal-can/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 12:41:18 UTC (rev 109090)
+++ PKGBUILD2014-04-10 12:41:26 UTC (rev 109091)
@@ -4,7 +4,7 @@
 # Contributor: François Charette firmicus ατ gmx δοτ net
 
 pkgname=perl-universal-can
-pkgver=1.20140124
+pkgver=1.20140328
 pkgrel=1
 pkgdesc=Hack around people calling UNIVERSAL::can() as a function
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('perl=5.10.0')
 options=('!emptydirs')
 
source=(http://www.cpan.org/authors/id/C/CH/CHROMATIC/UNIVERSAL-can-$pkgver.tar.gz)
-md5sums=('e712691ee6b04c9f690aacbed3ec415c')
+md5sums=('7b89d16d59f0d27e45b25fd31300334e')
 
 build() {
   cd  $srcdir/UNIVERSAL-can-$pkgver



[arch-commits] Commit in perl-universal-can/repos/community-any (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:42:05
  Author: fyan
Revision: 109092

archrelease: copy trunk to community-any

Added:
  perl-universal-can/repos/community-any/PKGBUILD
(from rev 109091, perl-universal-can/trunk/PKGBUILD)
Deleted:
  perl-universal-can/repos/community-any/PKGBUILD

--+
 PKGBUILD |   58 +-
 1 file changed, 29 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 12:41:26 UTC (rev 109091)
+++ PKGBUILD2014-04-10 12:42:05 UTC (rev 109092)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# This PKGBUILD was generated by cpan4pacman via CPANPLUS::Dist::Pacman
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-universal-can
-pkgver=1.20140124
-pkgrel=1
-pkgdesc=Hack around people calling UNIVERSAL::can() as a function
-arch=('any')
-url=http://search.cpan.org/dist/UNIVERSAL-can;
-license=('GPL' 'PerlArtistic')
-depends=('perl=5.10.0')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/C/CH/CHROMATIC/UNIVERSAL-can-$pkgver.tar.gz)
-md5sums=('e712691ee6b04c9f690aacbed3ec415c')
-
-build() {
-  cd  $srcdir/UNIVERSAL-can-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/UNIVERSAL-can-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-universal-can/repos/community-any/PKGBUILD (from rev 109091, 
perl-universal-can/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 12:42:05 UTC (rev 109092)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# This PKGBUILD was generated by cpan4pacman via CPANPLUS::Dist::Pacman
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-universal-can
+pkgver=1.20140328
+pkgrel=1
+pkgdesc=Hack around people calling UNIVERSAL::can() as a function
+arch=('any')
+url=http://search.cpan.org/dist/UNIVERSAL-can;
+license=('GPL' 'PerlArtistic')
+depends=('perl=5.10.0')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/C/CH/CHROMATIC/UNIVERSAL-can-$pkgver.tar.gz)
+md5sums=('7b89d16d59f0d27e45b25fd31300334e')
+
+build() {
+  cd  $srcdir/UNIVERSAL-can-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/UNIVERSAL-can-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:45:00
  Author: fyan
Revision: 109093

upgpkg: perl-test-trap 0.2.4-1

Modified:
  perl-test-trap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 12:42:05 UTC (rev 109092)
+++ PKGBUILD2014-04-10 12:45:00 UTC (rev 109093)
@@ -2,7 +2,7 @@
 # Maintainer:
 
 pkgname=perl-test-trap
-pkgver=0.2.3
+pkgver=0.2.4
 pkgrel=1
 pkgdesc='Trap exit codes, exceptions, output, etc.'
 arch=('any')
@@ -11,8 +11,7 @@
 depends=('perl' 'perl-data-dump' 'perl-test-tester')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/E/EB/EBHANSSEN/Test-Trap-v$pkgver.tar.gz;)
-sha1sums=('2342990b5a96e751cdcea839efcc79a2f2223f3e')
-sha1sums=('38c4c6936973463c14daf7f1eac926d5b9da20f6')
+sha1sums=('21d5f5290e8d32258f5e63e93d797f477e9b4d71')
 
 build() {
   cd Test-Trap-v$pkgver



[arch-commits] Commit in perl-test-trap/repos/community-any (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:45:40
  Author: fyan
Revision: 109094

archrelease: copy trunk to community-any

Added:
  perl-test-trap/repos/community-any/PKGBUILD
(from rev 109093, perl-test-trap/trunk/PKGBUILD)
Deleted:
  perl-test-trap/repos/community-any/PKGBUILD

--+
 PKGBUILD |   61 ++---
 1 file changed, 30 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 12:45:00 UTC (rev 109093)
+++ PKGBUILD2014-04-10 12:45:40 UTC (rev 109094)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=perl-test-trap
-pkgver=0.2.3
-pkgrel=1
-pkgdesc='Trap exit codes, exceptions, output, etc.'
-arch=('any')
-url=https://metacpan.org/release/Test-Trap;
-license=('PerlArtistic' 'GPL')
-depends=('perl' 'perl-data-dump' 'perl-test-tester')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/E/EB/EBHANSSEN/Test-Trap-v$pkgver.tar.gz;)
-sha1sums=('2342990b5a96e751cdcea839efcc79a2f2223f3e')
-sha1sums=('38c4c6936973463c14daf7f1eac926d5b9da20f6')
-
-build() {
-  cd Test-Trap-v$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Test-Trap-v$pkgver
-  make test
-}
-
-package() {
-  cd Test-Trap-v$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: perl-test-trap/repos/community-any/PKGBUILD (from rev 109093, 
perl-test-trap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 12:45:40 UTC (rev 109094)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:
+
+pkgname=perl-test-trap
+pkgver=0.2.4
+pkgrel=1
+pkgdesc='Trap exit codes, exceptions, output, etc.'
+arch=('any')
+url=https://metacpan.org/release/Test-Trap;
+license=('PerlArtistic' 'GPL')
+depends=('perl' 'perl-data-dump' 'perl-test-tester')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/E/EB/EBHANSSEN/Test-Trap-v$pkgver.tar.gz;)
+sha1sums=('21d5f5290e8d32258f5e63e93d797f477e9b4d71')
+
+build() {
+  cd Test-Trap-v$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Test-Trap-v$pkgver
+  make test
+}
+
+package() {
+  cd Test-Trap-v$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:47:09
  Author: fyan
Revision: 109095

upgpkg: perl-devel-patchperl 1.20-1

Modified:
  perl-devel-patchperl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 12:45:40 UTC (rev 109094)
+++ PKGBUILD2014-04-10 12:47:09 UTC (rev 109095)
@@ -2,7 +2,7 @@
 # Maintainer:
 
 pkgname=perl-devel-patchperl
-pkgver=1.18
+pkgver=1.20
 pkgrel=1
 pkgdesc=Patch perl source a la Devel::PPPort's buildperl.pl
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('perl' 'perl-file-pushd')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/Devel-PatchPerl-$pkgver.tar.gz;)
-md5sums=('17868bb7dbeb60e0c145f0b561d2832d')
+md5sums=('79f9a1fd4b9ebe511d844863b777')
 
 build() {
   cd Devel-PatchPerl-$pkgver



[arch-commits] Commit in perl-devel-patchperl/repos/community-any (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:47:53
  Author: fyan
Revision: 109096

archrelease: copy trunk to community-any

Added:
  perl-devel-patchperl/repos/community-any/PKGBUILD
(from rev 109095, perl-devel-patchperl/trunk/PKGBUILD)
Deleted:
  perl-devel-patchperl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 12:47:09 UTC (rev 109095)
+++ PKGBUILD2014-04-10 12:47:53 UTC (rev 109096)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=perl-devel-patchperl
-pkgver=1.18
-pkgrel=1
-pkgdesc=Patch perl source a la Devel::PPPort's buildperl.pl
-arch=('any')
-url=https://metacpan.org/release/Devel-PatchPerl;
-license=('PerlArtistic' 'GPL')
-depends=('perl' 'perl-file-pushd')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/Devel-PatchPerl-$pkgver.tar.gz;)
-md5sums=('17868bb7dbeb60e0c145f0b561d2832d')
-
-build() {
-  cd Devel-PatchPerl-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Devel-PatchPerl-$pkgver
-  make test
-}
-
-package() {
-  cd Devel-PatchPerl-$pkgver
-  make install DESTDIR=$pkgdir
-}
-

Copied: perl-devel-patchperl/repos/community-any/PKGBUILD (from rev 109095, 
perl-devel-patchperl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 12:47:53 UTC (rev 109096)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:
+
+pkgname=perl-devel-patchperl
+pkgver=1.20
+pkgrel=1
+pkgdesc=Patch perl source a la Devel::PPPort's buildperl.pl
+arch=('any')
+url=https://metacpan.org/release/Devel-PatchPerl;
+license=('PerlArtistic' 'GPL')
+depends=('perl' 'perl-file-pushd')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/Devel-PatchPerl-$pkgver.tar.gz;)
+md5sums=('79f9a1fd4b9ebe511d844863b777')
+
+build() {
+  cd Devel-PatchPerl-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Devel-PatchPerl-$pkgver
+  make test
+}
+
+package() {
+  cd Devel-PatchPerl-$pkgver
+  make install DESTDIR=$pkgdir
+}
+



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:49:26
  Author: fyan
Revision: 109097

upgpkg: perl-mail-box 2.112-1

Modified:
  perl-mail-box/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 12:47:53 UTC (rev 109096)
+++ PKGBUILD2014-04-10 12:49:26 UTC (rev 109097)
@@ -4,7 +4,7 @@
 # Contributor: Francois Charette firmi...@gmx.net
 
 pkgname=perl-mail-box
-pkgver=2.111
+pkgver=2.112
 pkgrel=1
 pkgdesc=Mail folder manager and MUA backend
 arch=(any)
@@ -16,7 +16,7 @@
 'perl-devel-globaldestruction' 'perl-user-identity=0.90')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/M/MA/MARKOV/Mail-Box-$pkgver.tar.gz)
-md5sums=('ec61d581ad0025191994f44a86bacd69')
+md5sums=('1857f563cd4aa0430e6f15f18cd921c8')
 
 build() {
   cd  $srcdir/Mail-Box-$pkgver



[arch-commits] Commit in perl-mail-box/repos/community-any (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:50:10
  Author: fyan
Revision: 109098

archrelease: copy trunk to community-any

Added:
  perl-mail-box/repos/community-any/PKGBUILD
(from rev 109097, perl-mail-box/trunk/PKGBUILD)
Deleted:
  perl-mail-box/repos/community-any/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 12:49:26 UTC (rev 109097)
+++ PKGBUILD2014-04-10 12:50:10 UTC (rev 109098)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Charles Mauch cma...@gmail.com
-# Contributor: Francois Charette firmi...@gmx.net
-
-pkgname=perl-mail-box
-pkgver=2.111
-pkgrel=1
-pkgdesc=Mail folder manager and MUA backend
-arch=(any)
-url=http://search.cpan.org/dist/Mail-Box;
-license=('GPL' 'PerlArtistic')
-depends=('perl-timedate' 'perl-digest-hmac' 'perl-file-remove=0.20'
-'perl-io-stringy' 'perl-mime-types=1.004' 'perl-mailtools'
-'perl-object-realize-later=0.14' 'perl-uri=1.23'
-'perl-devel-globaldestruction' 'perl-user-identity=0.90')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/M/MA/MARKOV/Mail-Box-$pkgver.tar.gz)
-md5sums=('ec61d581ad0025191994f44a86bacd69')
-
-build() {
-  cd  $srcdir/Mail-Box-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Mail-Box-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-mail-box/repos/community-any/PKGBUILD (from rev 109097, 
perl-mail-box/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 12:50:10 UTC (rev 109098)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Charles Mauch cma...@gmail.com
+# Contributor: Francois Charette firmi...@gmx.net
+
+pkgname=perl-mail-box
+pkgver=2.112
+pkgrel=1
+pkgdesc=Mail folder manager and MUA backend
+arch=(any)
+url=http://search.cpan.org/dist/Mail-Box;
+license=('GPL' 'PerlArtistic')
+depends=('perl-timedate' 'perl-digest-hmac' 'perl-file-remove=0.20'
+'perl-io-stringy' 'perl-mime-types=1.004' 'perl-mailtools'
+'perl-object-realize-later=0.14' 'perl-uri=1.23'
+'perl-devel-globaldestruction' 'perl-user-identity=0.90')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/M/MA/MARKOV/Mail-Box-$pkgver.tar.gz)
+md5sums=('1857f563cd4aa0430e6f15f18cd921c8')
+
+build() {
+  cd  $srcdir/Mail-Box-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Mail-Box-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}



[arch-commits] Commit in perl-io-socket-ssl/trunk (PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:52:31
  Author: fyan
Revision: 210151

upgpkg: perl-io-socket-ssl 1.981-1

Modified:
  perl-io-socket-ssl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 12:04:43 UTC (rev 210150)
+++ PKGBUILD2014-04-10 12:52:31 UTC (rev 210151)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=perl-io-socket-ssl
-pkgver=1.967
+pkgver=1.981
 pkgrel=1
 pkgdesc=Nearly transparent SSL encapsulation for IO::Socket::INET
 arch=('any')
@@ -12,7 +12,7 @@
 checkdepends=('perl-io-socket-inet6')
 options=('!emptydirs')
 
source=(http://www.cpan.org/authors/id/S/SU/SULLR/IO-Socket-SSL-${pkgver}.tar.gz)
-sha1sums=('0cce073c32715928dbb95e64696c6c7165f19ccb')
+sha1sums=('0b0be81f9c1c05569d339a39ee7bbdd7bc2c80e4')
 
 build() {
   cd IO-Socket-SSL-${pkgver}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:52:39
  Author: fyan
Revision: 109099

upgpkg: perl-dist-checkconflicts 0.11-1

Modified:
  perl-dist-checkconflicts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 12:50:10 UTC (rev 109098)
+++ PKGBUILD2014-04-10 12:52:39 UTC (rev 109099)
@@ -3,7 +3,7 @@
 # Contributor: Justin Davis jrc...@gmail.com
 
 pkgname=perl-dist-checkconflicts
-pkgver=0.10
+pkgver=0.11
 pkgrel=1
 pkgdesc=Declare version conflicts for your dist
 arch=('any')
@@ -14,7 +14,7 @@
 checkdepends=('perl-test-fatal' 'perl-test-simple' 'perl-module-runtime')
 url=https://metacpan.org/release/Dist-CheckConflicts;
 
source=(http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Dist-CheckConflicts-$pkgver.tar.gz)
-md5sums=('421fd89a8f888d2a3411754da1c384a8')
+md5sums=('c8725a92b9169708b0f63036812070f2')
 
 build() {
   ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \



[arch-commits] Commit in perl-io-socket-ssl/repos/extra-any (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:53:09
  Author: fyan
Revision: 210152

archrelease: copy trunk to extra-any

Added:
  perl-io-socket-ssl/repos/extra-any/PKGBUILD
(from rev 210151, perl-io-socket-ssl/trunk/PKGBUILD)
Deleted:
  perl-io-socket-ssl/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 12:52:31 UTC (rev 210151)
+++ PKGBUILD2014-04-10 12:53:09 UTC (rev 210152)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=perl-io-socket-ssl
-pkgver=1.967
-pkgrel=1
-pkgdesc=Nearly transparent SSL encapsulation for IO::Socket::INET
-arch=('any')
-license=('GPL' 'PerlArtistic')
-url=http://search.cpan.org/dist/IO-Socket-SSL/;
-depends=('perl-net-ssleay' 'perl' 'perl-uri')
-checkdepends=('perl-io-socket-inet6')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/S/SU/SULLR/IO-Socket-SSL-${pkgver}.tar.gz)
-sha1sums=('0cce073c32715928dbb95e64696c6c7165f19ccb')
-
-build() {
-  cd IO-Socket-SSL-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd IO-Socket-SSL-${pkgver}
-  make test
-}
-
-package() {
-  cd IO-Socket-SSL-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: perl-io-socket-ssl/repos/extra-any/PKGBUILD (from rev 210151, 
perl-io-socket-ssl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 12:53:09 UTC (rev 210152)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=perl-io-socket-ssl
+pkgver=1.981
+pkgrel=1
+pkgdesc=Nearly transparent SSL encapsulation for IO::Socket::INET
+arch=('any')
+license=('GPL' 'PerlArtistic')
+url=http://search.cpan.org/dist/IO-Socket-SSL/;
+depends=('perl-net-ssleay' 'perl' 'perl-uri')
+checkdepends=('perl-io-socket-inet6')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/S/SU/SULLR/IO-Socket-SSL-${pkgver}.tar.gz)
+sha1sums=('0b0be81f9c1c05569d339a39ee7bbdd7bc2c80e4')
+
+build() {
+  cd IO-Socket-SSL-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd IO-Socket-SSL-${pkgver}
+  make test
+}
+
+package() {
+  cd IO-Socket-SSL-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in perl-dist-checkconflicts/repos/community-any (2 files)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:53:17
  Author: fyan
Revision: 109100

archrelease: copy trunk to community-any

Added:
  perl-dist-checkconflicts/repos/community-any/PKGBUILD
(from rev 109099, perl-dist-checkconflicts/trunk/PKGBUILD)
Deleted:
  perl-dist-checkconflicts/repos/community-any/PKGBUILD

--+
 PKGBUILD |   88 ++---
 1 file changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 12:52:39 UTC (rev 109099)
+++ PKGBUILD2014-04-10 12:53:17 UTC (rev 109100)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel jst...@aur.archlinux.org
-# Contributor: Justin Davis jrc...@gmail.com
-
-pkgname=perl-dist-checkconflicts
-pkgver=0.10
-pkgrel=1
-pkgdesc=Declare version conflicts for your dist
-arch=('any')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl-list-moreutils' 'perl-exporter')
-makedepends=('perl-extutils-makemaker')
-checkdepends=('perl-test-fatal' 'perl-test-simple' 'perl-module-runtime')
-url=https://metacpan.org/release/Dist-CheckConflicts;
-source=(http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Dist-CheckConflicts-$pkgver.tar.gz)
-md5sums=('421fd89a8f888d2a3411754da1c384a8')
-
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT=INSTALLDIRS=vendor   \
-  PERL_MB_OPT=--installdirs vendor \
-  MODULEBUILDRC=/dev/null
-cd Dist-CheckConflicts-$pkgver
-
-/usr/bin/perl Makefile.PL
-make
-  )
-}
-
-check() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
-cd Dist-CheckConflicts-$pkgver
-
-make test
-  )
-}
-
-package() {
-  cd Dist-CheckConflicts-$pkgver
-
-  make DESTDIR=$pkgdir/ install
-}

Copied: perl-dist-checkconflicts/repos/community-any/PKGBUILD (from rev 109099, 
perl-dist-checkconflicts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 12:53:17 UTC (rev 109100)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jonathan Steel jst...@aur.archlinux.org
+# Contributor: Justin Davis jrc...@gmail.com
+
+pkgname=perl-dist-checkconflicts
+pkgver=0.11
+pkgrel=1
+pkgdesc=Declare version conflicts for your dist
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl-list-moreutils' 'perl-exporter')
+makedepends=('perl-extutils-makemaker')
+checkdepends=('perl-test-fatal' 'perl-test-simple' 'perl-module-runtime')
+url=https://metacpan.org/release/Dist-CheckConflicts;
+source=(http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Dist-CheckConflicts-$pkgver.tar.gz)
+md5sums=('c8725a92b9169708b0f63036812070f2')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor   \
+  PERL_MB_OPT=--installdirs vendor \
+  MODULEBUILDRC=/dev/null
+cd Dist-CheckConflicts-$pkgver
+
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+cd Dist-CheckConflicts-$pkgver
+
+make test
+  )
+}
+
+package() {
+  cd Dist-CheckConflicts-$pkgver
+
+  make DESTDIR=$pkgdir/ install
+}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:55:15
  Author: fyan
Revision: 109101

upgpkg: perl-dbd-pg 3.1.1-1

Modified:
  perl-dbd-pg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 12:53:17 UTC (rev 109100)
+++ PKGBUILD2014-04-10 12:55:15 UTC (rev 109101)
@@ -3,7 +3,7 @@
 # Contributor: François Charette firmicus ατ gmx δοτ net
 
 pkgname=perl-dbd-pg
-pkgver=3.0.0
+pkgver=3.1.1
 pkgrel=1
 pkgdesc=Postgres Driver for DBI
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('perl-dbi=1.52' 'postgresql-libs')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-${pkgver}.tar.gz;)
-md5sums=('58c2613bcb241279aca4c111ba16db48')
+md5sums=('ad5c5439356351f908fa47e91856e75f')
 
 build() {
   cd  DBD-Pg-${pkgver}



[arch-commits] Commit in perl-dbd-pg/repos/community-x86_64 (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 14:55:53
  Author: fyan
Revision: 109102

archrelease: copy trunk to community-x86_64

Added:
  perl-dbd-pg/repos/community-x86_64/PKGBUILD
(from rev 109101, perl-dbd-pg/trunk/PKGBUILD)
Deleted:
  perl-dbd-pg/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 12:55:15 UTC (rev 109101)
+++ PKGBUILD2014-04-10 12:55:53 UTC (rev 109102)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-dbd-pg
-pkgver=3.0.0
-pkgrel=1
-pkgdesc=Postgres Driver for DBI
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/DBD-Pg;
-license=('GPL' 'PerlArtistic')
-depends=('perl-dbi=1.52' 'postgresql-libs')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-${pkgver}.tar.gz;)
-md5sums=('58c2613bcb241279aca4c111ba16db48')
-
-build() {
-  cd  DBD-Pg-${pkgver}
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  DBD-Pg-${pkgver}
-  make install DESTDIR=${pkgdir}
-  find ${pkgdir} -name '.packlist' -delete
-  find ${pkgdir} -name '*.pod' -delete
-}

Copied: perl-dbd-pg/repos/community-x86_64/PKGBUILD (from rev 109101, 
perl-dbd-pg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 12:55:53 UTC (rev 109102)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-dbd-pg
+pkgver=3.1.1
+pkgrel=1
+pkgdesc=Postgres Driver for DBI
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/DBD-Pg;
+license=('GPL' 'PerlArtistic')
+depends=('perl-dbi=1.52' 'postgresql-libs')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-${pkgver}.tar.gz;)
+md5sums=('ad5c5439356351f908fa47e91856e75f')
+
+build() {
+  cd  DBD-Pg-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  DBD-Pg-${pkgver}
+  make install DESTDIR=${pkgdir}
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 15:00:48
  Author: fyan
Revision: 109103

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

Added:
  perl-dbd-pg/repos/community-i686/PKGBUILD
(from rev 109102, perl-dbd-pg/trunk/PKGBUILD)
  perl-dbd-pg/repos/community-x86_64/PKGBUILD
(from rev 109102, perl-dbd-pg/trunk/PKGBUILD)
Deleted:
  perl-dbd-pg/repos/community-i686/PKGBUILD
  perl-dbd-pg/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   56 
 community-i686/PKGBUILD   |   28 --
 community-x86_64/PKGBUILD |   28 --
 3 files changed, 56 insertions(+), 56 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-10 12:55:53 UTC (rev 109102)
+++ community-i686/PKGBUILD 2014-04-10 13:00:48 UTC (rev 109103)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-dbd-pg
-pkgver=3.0.0
-pkgrel=1
-pkgdesc=Postgres Driver for DBI
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/DBD-Pg;
-license=('GPL' 'PerlArtistic')
-depends=('perl-dbi=1.52' 'postgresql-libs')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-${pkgver}.tar.gz;)
-md5sums=('58c2613bcb241279aca4c111ba16db48')
-
-build() {
-  cd  DBD-Pg-${pkgver}
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  DBD-Pg-${pkgver}
-  make install DESTDIR=${pkgdir}
-  find ${pkgdir} -name '.packlist' -delete
-  find ${pkgdir} -name '*.pod' -delete
-}

Copied: perl-dbd-pg/repos/community-i686/PKGBUILD (from rev 109102, 
perl-dbd-pg/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-10 13:00:48 UTC (rev 109103)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-dbd-pg
+pkgver=3.1.1
+pkgrel=1
+pkgdesc=Postgres Driver for DBI
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/DBD-Pg;
+license=('GPL' 'PerlArtistic')
+depends=('perl-dbi=1.52' 'postgresql-libs')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-${pkgver}.tar.gz;)
+md5sums=('ad5c5439356351f908fa47e91856e75f')
+
+build() {
+  cd  DBD-Pg-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  DBD-Pg-${pkgver}
+  make install DESTDIR=${pkgdir}
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-10 12:55:53 UTC (rev 109102)
+++ community-x86_64/PKGBUILD   2014-04-10 13:00:48 UTC (rev 109103)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-dbd-pg
-pkgver=3.1.1
-pkgrel=1
-pkgdesc=Postgres Driver for DBI
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/DBD-Pg;
-license=('GPL' 'PerlArtistic')
-depends=('perl-dbi=1.52' 'postgresql-libs')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-${pkgver}.tar.gz;)
-md5sums=('ad5c5439356351f908fa47e91856e75f')
-
-build() {
-  cd  DBD-Pg-${pkgver}
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  DBD-Pg-${pkgver}
-  make install DESTDIR=${pkgdir}
-  find ${pkgdir} -name '.packlist' -delete
-  find ${pkgdir} -name '*.pod' -delete
-}

Copied: perl-dbd-pg/repos/community-x86_64/PKGBUILD (from rev 109102, 
perl-dbd-pg/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-10 13:00:48 UTC (rev 109103)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-dbd-pg
+pkgver=3.1.1
+pkgrel=1
+pkgdesc=Postgres Driver for DBI
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/DBD-Pg;
+license=('GPL' 'PerlArtistic')
+depends=('perl-dbi=1.52' 'postgresql-libs')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-${pkgver}.tar.gz;)
+md5sums=('ad5c5439356351f908fa47e91856e75f')
+
+build() {
+  cd  DBD-Pg-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  DBD-Pg-${pkgver}
+  make install DESTDIR=${pkgdir}
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 15:01:02
  Author: fyan
Revision: 109104

upgpkg: perl-tidy 20140328-1

Modified:
  perl-tidy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 13:00:48 UTC (rev 109103)
+++ PKGBUILD2014-04-10 13:01:02 UTC (rev 109104)
@@ -3,7 +3,7 @@
 # Maintainer: Firmicus francois.archlinux.org
 
 pkgname=perl-tidy
-pkgver=20130922
+pkgver=20140328
 pkgrel=1
 pkgdesc=Parses and beautifies perl source
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('perl=5.10.0')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/S/SH/SHANCOCK/Perl-Tidy-$pkgver.tar.gz)
-md5sums=('efc831bc9f238ae037dae22c41b6ba31')
+md5sums=('a33f908663934bdd67aa915e25f89f45')
 
 build() {
   cd  $srcdir/Perl-Tidy-$pkgver



[arch-commits] Commit in perl-tidy/repos/community-any (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 15:01:46
  Author: fyan
Revision: 109105

archrelease: copy trunk to community-any

Added:
  perl-tidy/repos/community-any/PKGBUILD
(from rev 109104, perl-tidy/trunk/PKGBUILD)
Deleted:
  perl-tidy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 13:01:02 UTC (rev 109104)
+++ PKGBUILD2014-04-10 13:01:46 UTC (rev 109105)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Firmicus francois.archlinux.org
-
-pkgname=perl-tidy
-pkgver=20130922
-pkgrel=1
-pkgdesc=Parses and beautifies perl source
-arch=('any')
-url=http://search.cpan.org/dist/Perl-Tidy;
-license=('GPL' 'PerlArtistic')
-depends=('perl=5.10.0')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/S/SH/SHANCOCK/Perl-Tidy-$pkgver.tar.gz)
-md5sums=('efc831bc9f238ae037dae22c41b6ba31')
-
-build() {
-  cd  $srcdir/Perl-Tidy-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Perl-Tidy-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-tidy/repos/community-any/PKGBUILD (from rev 109104, 
perl-tidy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 13:01:46 UTC (rev 109105)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Firmicus francois.archlinux.org
+
+pkgname=perl-tidy
+pkgver=20140328
+pkgrel=1
+pkgdesc=Parses and beautifies perl source
+arch=('any')
+url=http://search.cpan.org/dist/Perl-Tidy;
+license=('GPL' 'PerlArtistic')
+depends=('perl=5.10.0')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/S/SH/SHANCOCK/Perl-Tidy-$pkgver.tar.gz)
+md5sums=('a33f908663934bdd67aa915e25f89f45')
+
+build() {
+  cd  $srcdir/Perl-Tidy-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Perl-Tidy-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}



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

2014-04-10 Thread Andrea Scarpino
Date: Thursday, April 10, 2014 @ 15:06:25
  Author: andrea
Revision: 210153

upgpkg: qt5 5.2.1-3

Fix i686 segfault on AMD (FS#38796)

Modified:
  qt5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 12:53:09 UTC (rev 210152)
+++ PKGBUILD2014-04-10 13:06:25 UTC (rev 210153)
@@ -22,7 +22,7 @@
  'qt5-x11extras'
  'qt5-xmlpatterns')
 pkgver=5.2.1
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://qt-project.org/'
 license=('GPL3' 'LGPL' 'FDL' 'custom')
@@ -65,6 +65,8 @@
   export 
LD_LIBRARY_PATH=${QTDIR}/qtbase/lib:${QTDIR}/qttools/lib:${LD_LIBRARY_PATH}
   export QT_PLUGIN_PATH=${QTDIR}/qtbase/plugins
 
+  [[ ${CARCH} = i686 ]]  SSE2=-no-sse2
+
   PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource \
 -prefix /usr \
 -bindir /usr/lib/qt/bin \
@@ -81,7 +83,7 @@
 -no-rpath \
 -optimized-qmake \
 -dbus-linked \
--reduce-relocations
+-reduce-relocations ${SSE2}
 
   make
 



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

2014-04-10 Thread Andrea Scarpino
Date: Thursday, April 10, 2014 @ 15:07:56
  Author: andrea
Revision: 210154

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

Added:
  qt5/repos/staging-i686/PKGBUILD
(from rev 210153, qt5/trunk/PKGBUILD)
  qt5/repos/staging-i686/assistant.desktop
(from rev 210153, qt5/trunk/assistant.desktop)
  qt5/repos/staging-i686/designer.desktop
(from rev 210153, qt5/trunk/designer.desktop)
  qt5/repos/staging-i686/linguist.desktop
(from rev 210153, qt5/trunk/linguist.desktop)
  qt5/repos/staging-i686/qdbusviewer.desktop
(from rev 210153, qt5/trunk/qdbusviewer.desktop)
  qt5/repos/staging-i686/qt5-tools.install
(from rev 210153, qt5/trunk/qt5-tools.install)
  qt5/repos/staging-i686/use-python2.patch
(from rev 210153, qt5/trunk/use-python2.patch)
  qt5/repos/staging-x86_64/PKGBUILD
(from rev 210153, qt5/trunk/PKGBUILD)
  qt5/repos/staging-x86_64/assistant.desktop
(from rev 210153, qt5/trunk/assistant.desktop)
  qt5/repos/staging-x86_64/designer.desktop
(from rev 210153, qt5/trunk/designer.desktop)
  qt5/repos/staging-x86_64/linguist.desktop
(from rev 210153, qt5/trunk/linguist.desktop)
  qt5/repos/staging-x86_64/qdbusviewer.desktop
(from rev 210153, qt5/trunk/qdbusviewer.desktop)
  qt5/repos/staging-x86_64/qt5-tools.install
(from rev 210153, qt5/trunk/qt5-tools.install)
  qt5/repos/staging-x86_64/use-python2.patch
(from rev 210153, qt5/trunk/use-python2.patch)
Deleted:
  qt5/repos/staging-i686/PKGBUILD
  qt5/repos/staging-i686/assistant.desktop
  qt5/repos/staging-i686/designer.desktop
  qt5/repos/staging-i686/linguist.desktop
  qt5/repos/staging-i686/qdbusviewer.desktop
  qt5/repos/staging-i686/qt5-tools.install
  qt5/repos/staging-i686/use-python2.patch
  qt5/repos/staging-x86_64/PKGBUILD
  qt5/repos/staging-x86_64/assistant.desktop
  qt5/repos/staging-x86_64/designer.desktop
  qt5/repos/staging-x86_64/linguist.desktop
  qt5/repos/staging-x86_64/qdbusviewer.desktop
  qt5/repos/staging-x86_64/qt5-tools.install
  qt5/repos/staging-x86_64/use-python2.patch

+
 /PKGBUILD  |  892 +++
 /assistant.desktop |   16 
 /designer.desktop  |   20 
 /linguist.desktop  |   18 
 /qdbusviewer.desktop   |   18 
 /qt5-tools.install |   24 
 /use-python2.patch |  176 ++
 staging-i686/PKGBUILD  |  444 -
 staging-i686/assistant.desktop |8 
 staging-i686/designer.desktop  |   10 
 staging-i686/linguist.desktop  |9 
 staging-i686/qdbusviewer.desktop   |9 
 staging-i686/qt5-tools.install |   12 
 staging-i686/use-python2.patch |   88 ---
 staging-x86_64/PKGBUILD|  444 -
 staging-x86_64/assistant.desktop   |8 
 staging-x86_64/designer.desktop|   10 
 staging-x86_64/linguist.desktop|9 
 staging-x86_64/qdbusviewer.desktop |9 
 staging-x86_64/qt5-tools.install   |   12 
 staging-x86_64/use-python2.patch   |   88 ---
 21 files changed, 1164 insertions(+), 1160 deletions(-)

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


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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 15:09:57
  Author: fyan
Revision: 109106

upgpkg: perl-data-dumper 2.151-1

Modified:
  perl-data-dumper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 13:01:46 UTC (rev 109105)
+++ PKGBUILD2014-04-10 13:09:57 UTC (rev 109106)
@@ -1,8 +1,8 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=perl-data-dumper
-pkgver=2.145
-pkgrel=2
+pkgver=2.151
+pkgrel=1
 pkgdesc=stringified perl data structures, suitable for both printing and eval
 arch=(i686 x86_64)
 license=('GPL' 'PerlArtistic')
@@ -10,7 +10,7 @@
 depends=('perl')
 options=(!emptydirs)
 
source=(http://search.cpan.org/CPAN/authors/id/S/SM/SMUELLER/Data-Dumper-$pkgver.tar.gz)
-md5sums=('b773c875afcca866faf8481adc3464b0')
+md5sums=('b804bf2137b6b62382136598baafa645')
 
 build() {
   cd $srcdir/Data-Dumper-${pkgver}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 15:12:52
  Author: fyan
Revision: 210155

upgpkg: perl-ev 4.16-1

Modified:
  perl-ev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 13:07:56 UTC (rev 210154)
+++ PKGBUILD2014-04-10 13:12:52 UTC (rev 210155)
@@ -1,8 +1,8 @@
 # $Id$
 
 pkgname=perl-ev
-pkgver=4.15
-pkgrel=2
+pkgver=4.16
+pkgrel=1
 pkgdesc='perl interface to libev, a high performance full-featured event loop'
 arch=(i686 x86_64)
 license=(PerlArtistic GPL)
@@ -10,7 +10,7 @@
 depends=(perl-common-sense)
 url=https://metacpan.org/release/EV
 
source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/EV-$pkgver.tar.gz;)
-md5sums=('546d10fb5901f2af937e53b41a92b2bb')
+md5sums=('8b2ee81053b0766db8af36b055e4dab5')
 
 build() {
   cd EV-$pkgver



[arch-commits] Commit in perl-data-dumper/repos (3 files)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 15:13:16
  Author: fyan
Revision: 109107

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

Added:
  perl-data-dumper/repos/community-i686/PKGBUILD
(from rev 109106, perl-data-dumper/trunk/PKGBUILD)
Deleted:
  perl-data-dumper/repos/community-i686/PKGBUILD
  perl-data-dumper/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   26 ++
 community-i686/PKGBUILD   |   26 --
 community-x86_64/PKGBUILD |   26 --
 3 files changed, 26 insertions(+), 52 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-10 13:09:57 UTC (rev 109106)
+++ community-i686/PKGBUILD 2014-04-10 13:13:16 UTC (rev 109107)
@@ -1,26 +0,0 @@
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=perl-data-dumper
-pkgver=2.145
-pkgrel=2
-pkgdesc=stringified perl data structures, suitable for both printing and eval
-arch=(i686 x86_64)
-license=('GPL' 'PerlArtistic')
-url=http://search.cpan.org/dist/Data-Dumper/;
-depends=('perl')
-options=(!emptydirs)
-source=(http://search.cpan.org/CPAN/authors/id/S/SM/SMUELLER/Data-Dumper-$pkgver.tar.gz)
-md5sums=('b773c875afcca866faf8481adc3464b0')
-
-build() {
-  cd $srcdir/Data-Dumper-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd $srcdir/Data-Dumper-${pkgver}
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name perllocal.pod -delete
-  find $pkgdir -name .packlist -delete
-}

Copied: perl-data-dumper/repos/community-i686/PKGBUILD (from rev 109106, 
perl-data-dumper/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-10 13:13:16 UTC (rev 109107)
@@ -0,0 +1,26 @@
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=perl-data-dumper
+pkgver=2.151
+pkgrel=1
+pkgdesc=stringified perl data structures, suitable for both printing and eval
+arch=(i686 x86_64)
+license=('GPL' 'PerlArtistic')
+url=http://search.cpan.org/dist/Data-Dumper/;
+depends=('perl')
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/S/SM/SMUELLER/Data-Dumper-$pkgver.tar.gz)
+md5sums=('b804bf2137b6b62382136598baafa645')
+
+build() {
+  cd $srcdir/Data-Dumper-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd $srcdir/Data-Dumper-${pkgver}
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name perllocal.pod -delete
+  find $pkgdir -name .packlist -delete
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-10 13:09:57 UTC (rev 109106)
+++ community-x86_64/PKGBUILD   2014-04-10 13:13:16 UTC (rev 109107)
@@ -1,26 +0,0 @@
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=perl-data-dumper
-pkgver=2.145
-pkgrel=2
-pkgdesc=stringified perl data structures, suitable for both printing and eval
-arch=(i686 x86_64)
-license=('GPL' 'PerlArtistic')
-url=http://search.cpan.org/dist/Data-Dumper/;
-depends=('perl')
-options=(!emptydirs)
-source=(http://search.cpan.org/CPAN/authors/id/S/SM/SMUELLER/Data-Dumper-$pkgver.tar.gz)
-md5sums=('b773c875afcca866faf8481adc3464b0')
-
-build() {
-  cd $srcdir/Data-Dumper-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd $srcdir/Data-Dumper-${pkgver}
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name perllocal.pod -delete
-  find $pkgdir -name .packlist -delete
-}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 15:13:58
  Author: fyan
Revision: 210156

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-10 13:12:52 UTC (rev 210155)
+++ extra-i686/PKGBUILD 2014-04-10 13:13:58 UTC (rev 210156)
@@ -1,33 +0,0 @@
-# $Id$
-
-pkgname=perl-ev
-pkgver=4.15
-pkgrel=2
-pkgdesc='perl interface to libev, a high performance full-featured event loop'
-arch=(i686 x86_64)
-license=(PerlArtistic GPL)
-options=(!emptydirs)
-depends=(perl-common-sense)
-url=https://metacpan.org/release/EV
-source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/EV-$pkgver.tar.gz;)
-md5sums=('546d10fb5901f2af937e53b41a92b2bb')
-
-build() {
-  cd EV-$pkgver
-  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
-  unset PERL5LIB PERL_MM_OPT
-  perl Makefile.PL
-  make
-}
-
-check() {
-  cd EV-$pkgver
-  export PERL_MM_USE_DEFAULT=1
-  unset PERL5LIB
-  make test
-}
-
-package() {
-  cd EV-$pkgver
-  make install INSTALLDIRS=vendor DESTDIR=$pkgdir
-}

Copied: perl-ev/repos/extra-i686/PKGBUILD (from rev 210155, 
perl-ev/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-10 13:13:58 UTC (rev 210156)
@@ -0,0 +1,33 @@
+# $Id$
+
+pkgname=perl-ev
+pkgver=4.16
+pkgrel=1
+pkgdesc='perl interface to libev, a high performance full-featured event loop'
+arch=(i686 x86_64)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=(perl-common-sense)
+url=https://metacpan.org/release/EV
+source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/EV-$pkgver.tar.gz;)
+md5sums=('8b2ee81053b0766db8af36b055e4dab5')
+
+build() {
+  cd EV-$pkgver
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  unset PERL5LIB PERL_MM_OPT
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd EV-$pkgver
+  export PERL_MM_USE_DEFAULT=1
+  unset PERL5LIB
+  make test
+}
+
+package() {
+  cd EV-$pkgver
+  make install INSTALLDIRS=vendor DESTDIR=$pkgdir
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-04-10 13:12:52 UTC (rev 210155)
+++ extra-x86_64/PKGBUILD   2014-04-10 13:13:58 UTC (rev 210156)
@@ -1,33 +0,0 @@
-# $Id$
-
-pkgname=perl-ev
-pkgver=4.15
-pkgrel=2
-pkgdesc='perl interface to libev, a high performance full-featured event loop'
-arch=(i686 x86_64)
-license=(PerlArtistic GPL)
-options=(!emptydirs)
-depends=(perl-common-sense)
-url=https://metacpan.org/release/EV
-source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/EV-$pkgver.tar.gz;)
-md5sums=('546d10fb5901f2af937e53b41a92b2bb')
-
-build() {
-  cd EV-$pkgver
-  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
-  unset PERL5LIB PERL_MM_OPT
-  perl Makefile.PL
-  make
-}
-
-check() {
-  cd EV-$pkgver
-  export PERL_MM_USE_DEFAULT=1
-  unset PERL5LIB
-  make test
-}
-
-package() {
-  cd EV-$pkgver
-  make install INSTALLDIRS=vendor DESTDIR=$pkgdir
-}

Copied: perl-ev/repos/extra-x86_64/PKGBUILD (from rev 210155, 
perl-ev/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-04-10 13:13:58 UTC (rev 210156)
@@ -0,0 +1,33 @@
+# $Id$
+
+pkgname=perl-ev
+pkgver=4.16
+pkgrel=1
+pkgdesc='perl interface to libev, a high performance full-featured event loop'
+arch=(i686 x86_64)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=(perl-common-sense)
+url=https://metacpan.org/release/EV
+source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/EV-$pkgver.tar.gz;)
+md5sums=('8b2ee81053b0766db8af36b055e4dab5')
+
+build() {
+  cd EV-$pkgver
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  unset PERL5LIB PERL_MM_OPT
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd EV-$pkgver
+  export PERL_MM_USE_DEFAULT=1
+  unset PERL5LIB
+  make test
+}
+
+package() {
+  cd EV-$pkgver
+  make install INSTALLDIRS=vendor DESTDIR=$pkgdir
+}



[arch-commits] Commit in perl-data-dumper/repos (3 files)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 15:19:33
  Author: fyan
Revision: 109108

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

Added:
  perl-data-dumper/repos/community-i686/PKGBUILD
(from rev 109107, perl-data-dumper/trunk/PKGBUILD)
  perl-data-dumper/repos/community-x86_64/PKGBUILD
(from rev 109107, perl-data-dumper/trunk/PKGBUILD)
Deleted:
  perl-data-dumper/repos/community-i686/PKGBUILD

---+
 /PKGBUILD |   26 ++
 community-i686/PKGBUILD   |   26 --
 community-x86_64/PKGBUILD |   26 ++
 3 files changed, 52 insertions(+), 26 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-10 13:13:16 UTC (rev 109107)
+++ community-i686/PKGBUILD 2014-04-10 13:19:33 UTC (rev 109108)
@@ -1,26 +0,0 @@
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=perl-data-dumper
-pkgver=2.151
-pkgrel=1
-pkgdesc=stringified perl data structures, suitable for both printing and eval
-arch=(i686 x86_64)
-license=('GPL' 'PerlArtistic')
-url=http://search.cpan.org/dist/Data-Dumper/;
-depends=('perl')
-options=(!emptydirs)
-source=(http://search.cpan.org/CPAN/authors/id/S/SM/SMUELLER/Data-Dumper-$pkgver.tar.gz)
-md5sums=('b804bf2137b6b62382136598baafa645')
-
-build() {
-  cd $srcdir/Data-Dumper-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd $srcdir/Data-Dumper-${pkgver}
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name perllocal.pod -delete
-  find $pkgdir -name .packlist -delete
-}

Copied: perl-data-dumper/repos/community-i686/PKGBUILD (from rev 109107, 
perl-data-dumper/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-10 13:19:33 UTC (rev 109108)
@@ -0,0 +1,26 @@
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=perl-data-dumper
+pkgver=2.151
+pkgrel=1
+pkgdesc=stringified perl data structures, suitable for both printing and eval
+arch=(i686 x86_64)
+license=('GPL' 'PerlArtistic')
+url=http://search.cpan.org/dist/Data-Dumper/;
+depends=('perl')
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/S/SM/SMUELLER/Data-Dumper-$pkgver.tar.gz)
+md5sums=('b804bf2137b6b62382136598baafa645')
+
+build() {
+  cd $srcdir/Data-Dumper-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd $srcdir/Data-Dumper-${pkgver}
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name perllocal.pod -delete
+  find $pkgdir -name .packlist -delete
+}

Copied: perl-data-dumper/repos/community-x86_64/PKGBUILD (from rev 109107, 
perl-data-dumper/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-10 13:19:33 UTC (rev 109108)
@@ -0,0 +1,26 @@
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=perl-data-dumper
+pkgver=2.151
+pkgrel=1
+pkgdesc=stringified perl data structures, suitable for both printing and eval
+arch=(i686 x86_64)
+license=('GPL' 'PerlArtistic')
+url=http://search.cpan.org/dist/Data-Dumper/;
+depends=('perl')
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/S/SM/SMUELLER/Data-Dumper-$pkgver.tar.gz)
+md5sums=('b804bf2137b6b62382136598baafa645')
+
+build() {
+  cd $srcdir/Data-Dumper-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd $srcdir/Data-Dumper-${pkgver}
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name perllocal.pod -delete
+  find $pkgdir -name .packlist -delete
+}



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 15:20:08
  Author: fyan
Revision: 109109

upgpkg: perl-curses 1.29-1

Modified:
  perl-curses/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 13:19:33 UTC (rev 109108)
+++ PKGBUILD2014-04-10 13:20:08 UTC (rev 109109)
@@ -4,8 +4,8 @@
 # Contributor: Francois Charette firmi...@gmx.net
 
 pkgname=perl-curses
-pkgver=1.28
-pkgrel=6
+pkgver=1.29
+pkgrel=1
 pkgdesc=Character screen handling and windowing
 arch=('i686' 'x86_64')
 url=http://search.cpan.org/dist/Curses;
@@ -13,7 +13,7 @@
 depends=('perl' 'ncurses')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/G/GI/GIRAFFED/Curses-$pkgver.tgz)
-md5sums=('ed9f7ddf2d90f4266da91c3dc9fad9c9')
+md5sums=('236de0209223e40b458c55e5250da2b3')
 
 build() {
   cd  $srcdir/Curses-$pkgver



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 15:24:43
  Author: fyan
Revision: 109110

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

Added:
  perl-curses/repos/community-i686/PKGBUILD
(from rev 109109, perl-curses/trunk/PKGBUILD)
  perl-curses/repos/community-x86_64/PKGBUILD
(from rev 109109, perl-curses/trunk/PKGBUILD)
Deleted:
  perl-curses/repos/community-i686/PKGBUILD
  perl-curses/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   58 
 community-i686/PKGBUILD   |   29 --
 community-x86_64/PKGBUILD |   29 --
 3 files changed, 58 insertions(+), 58 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-10 13:20:08 UTC (rev 109109)
+++ community-i686/PKGBUILD 2014-04-10 13:24:43 UTC (rev 109110)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Charles Mauch cma...@gmail.com
-# Contributor: Francois Charette firmi...@gmx.net
-
-pkgname=perl-curses
-pkgver=1.28
-pkgrel=6
-pkgdesc=Character screen handling and windowing
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/Curses;
-license=('GPL' 'PerlArtistic')
-depends=('perl' 'ncurses')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/G/GI/GIRAFFED/Curses-$pkgver.tgz)
-md5sums=('ed9f7ddf2d90f4266da91c3dc9fad9c9')
-
-build() {
-  cd  $srcdir/Curses-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Curses-$pkgver
-  make pure_install doc_install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-curses/repos/community-i686/PKGBUILD (from rev 109109, 
perl-curses/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-10 13:24:43 UTC (rev 109110)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Charles Mauch cma...@gmail.com
+# Contributor: Francois Charette firmi...@gmx.net
+
+pkgname=perl-curses
+pkgver=1.29
+pkgrel=1
+pkgdesc=Character screen handling and windowing
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Curses;
+license=('GPL' 'PerlArtistic')
+depends=('perl' 'ncurses')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/G/GI/GIRAFFED/Curses-$pkgver.tgz)
+md5sums=('236de0209223e40b458c55e5250da2b3')
+
+build() {
+  cd  $srcdir/Curses-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Curses-$pkgver
+  make pure_install doc_install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-10 13:20:08 UTC (rev 109109)
+++ community-x86_64/PKGBUILD   2014-04-10 13:24:43 UTC (rev 109110)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Charles Mauch cma...@gmail.com
-# Contributor: Francois Charette firmi...@gmx.net
-
-pkgname=perl-curses
-pkgver=1.28
-pkgrel=6
-pkgdesc=Character screen handling and windowing
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/Curses;
-license=('GPL' 'PerlArtistic')
-depends=('perl' 'ncurses')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/G/GI/GIRAFFED/Curses-$pkgver.tgz)
-md5sums=('ed9f7ddf2d90f4266da91c3dc9fad9c9')
-
-build() {
-  cd  $srcdir/Curses-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Curses-$pkgver
-  make pure_install doc_install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-curses/repos/community-x86_64/PKGBUILD (from rev 109109, 
perl-curses/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-10 13:24:43 UTC (rev 109110)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Charles Mauch cma...@gmail.com
+# Contributor: Francois Charette firmi...@gmx.net
+
+pkgname=perl-curses
+pkgver=1.29
+pkgrel=1
+pkgdesc=Character screen handling and windowing
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Curses;
+license=('GPL' 'PerlArtistic')
+depends=('perl' 'ncurses')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/G/GI/GIRAFFED/Curses-$pkgver.tgz)
+md5sums=('236de0209223e40b458c55e5250da2b3')
+
+build() {
+  cd  $srcdir/Curses-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Curses-$pkgver
+  

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

2014-04-10 Thread Sergej Pupykin
Date: Thursday, April 10, 2014 @ 15:50:52
  Author: spupykin
Revision: 109111

upgpkg: gnunet 0.10.1-1

upd

Modified:
  gnunet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 13:24:43 UTC (rev 109110)
+++ PKGBUILD2014-04-10 13:50:52 UTC (rev 109111)
@@ -3,8 +3,8 @@
 # Contributor: wahnby wah...@yahoo.fr
 
 pkgname=gnunet
-pkgver=0.10.0
-pkgrel=3
+pkgver=0.10.1
+pkgrel=1
 pkgdesc=A framework for secure peer-to-peer networking
 arch=('i686' 'x86_64')
 url=http://gnunet.org;
@@ -12,17 +12,18 @@
 depends=('gmp' 'libgcrypt' 'libextractor' 'sqlite' 'gnurl'
 'libmicrohttpd' 'libunistring' 'libidn')
 makedepends=('gettext' 'pkgconfig'
-'bluez-libs' 'python' 'glpk' 'libpulse')
+'bluez-libs' 'python' 'glpk' 'libpulse' 'opus')
 optdepends=('bluez-libs'
'python'
'glpk'
-   'libpulse')
+   'libpulse'
+   'opus')
 backup=(etc/gnunetd.conf)
 options=('!makeflags')
 source=(ftp://ftp.gnu.org/gnu/gnunet/gnunet-${pkgver/_/}.tar.gz
gnunet.service
defaults.conf)
-md5sums=('8bff8280c90780b17786fd8b95f12f72'
+md5sums=('b1171f038473f8eb7fe86db138624ff7'
  '54cce3d2415d95b2e5bd1bd88db3a0ea'
  '0fe23b2ca5b3fc47a0b5645e04406da0')
 



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

2014-04-10 Thread Sergej Pupykin
Date: Thursday, April 10, 2014 @ 15:51:16
  Author: spupykin
Revision: 109113

upgpkg: gnunet-gtk 0.10.1-1

upd

Modified:
  gnunet-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 13:51:12 UTC (rev 109112)
+++ PKGBUILD2014-04-10 13:51:16 UTC (rev 109113)
@@ -3,7 +3,7 @@
 # Contributor: wahnby wah...@yahoo.fr
 
 pkgname=gnunet-gtk
-pkgver=0.10.0
+pkgver=0.10.1
 pkgrel=1
 pkgdesc=A frontend for GNUnet
 arch=('i686' 'x86_64')
@@ -12,10 +12,11 @@
 depends=('gnunet' 'glade' 'adns')
 makedepends=('pkgconfig')
 source=(ftp://ftp.gnu.org/gnu/gnunet/$pkgname-$pkgver.tar.gz)
-md5sums=('1a036f1956460cc1ea4c34f1b19bb6b1')
+md5sums=('e94d3fea027aa6734a201e4a03c6b752')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
+  sed -i 's|CC -E|CC -O2 -E|g' configure
   ./configure --prefix=/usr --with-gnunet=/usr
   make
 }
@@ -23,5 +24,4 @@
 package() {
   cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
-  mv $pkgdir/usr/share/doc/gnunet $pkgdir/usr/share/doc/gnunet-gtk
 }



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

2014-04-10 Thread Sergej Pupykin
Date: Thursday, April 10, 2014 @ 15:51:12
  Author: spupykin
Revision: 109112

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

Added:
  gnunet/repos/community-i686/PKGBUILD
(from rev 109111, gnunet/trunk/PKGBUILD)
  gnunet/repos/community-i686/defaults.conf
(from rev 109111, gnunet/trunk/defaults.conf)
  gnunet/repos/community-i686/gnunet.service
(from rev 109111, gnunet/trunk/gnunet.service)
  gnunet/repos/community-x86_64/PKGBUILD
(from rev 109111, gnunet/trunk/PKGBUILD)
  gnunet/repos/community-x86_64/defaults.conf
(from rev 109111, gnunet/trunk/defaults.conf)
  gnunet/repos/community-x86_64/gnunet.service
(from rev 109111, gnunet/trunk/gnunet.service)
Deleted:
  gnunet/repos/community-i686/PKGBUILD
  gnunet/repos/community-i686/defaults.conf
  gnunet/repos/community-i686/gnunet.service
  gnunet/repos/community-x86_64/PKGBUILD
  gnunet/repos/community-x86_64/defaults.conf
  gnunet/repos/community-x86_64/gnunet.service

-+
 /PKGBUILD   |   86 +++
 /defaults.conf  |  966 ++
 /gnunet.service |   20 
 community-i686/PKGBUILD |   42 -
 community-i686/defaults.conf|  483 ---
 community-i686/gnunet.service   |   10 
 community-x86_64/PKGBUILD   |   42 -
 community-x86_64/defaults.conf  |  483 ---
 community-x86_64/gnunet.service |   10 
 9 files changed, 1072 insertions(+), 1070 deletions(-)

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


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

2014-04-10 Thread Sergej Pupykin
Date: Thursday, April 10, 2014 @ 15:51:29
  Author: spupykin
Revision: 109114

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

Added:
  gnunet-gtk/repos/community-i686/PKGBUILD
(from rev 109113, gnunet-gtk/trunk/PKGBUILD)
  gnunet-gtk/repos/community-x86_64/PKGBUILD
(from rev 109113, gnunet-gtk/trunk/PKGBUILD)
Deleted:
  gnunet-gtk/repos/community-i686/PKGBUILD
  gnunet-gtk/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   54 
 community-i686/PKGBUILD   |   27 --
 community-x86_64/PKGBUILD |   27 --
 3 files changed, 54 insertions(+), 54 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-10 13:51:16 UTC (rev 109113)
+++ community-i686/PKGBUILD 2014-04-10 13:51:29 UTC (rev 109114)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: wahnby wah...@yahoo.fr
-
-pkgname=gnunet-gtk
-pkgver=0.10.0
-pkgrel=1
-pkgdesc=A frontend for GNUnet
-arch=('i686' 'x86_64')
-url=http://gnunet.org;
-license=('GPL')
-depends=('gnunet' 'glade' 'adns')
-makedepends=('pkgconfig')
-source=(ftp://ftp.gnu.org/gnu/gnunet/$pkgname-$pkgver.tar.gz)
-md5sums=('1a036f1956460cc1ea4c34f1b19bb6b1')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --with-gnunet=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  mv $pkgdir/usr/share/doc/gnunet $pkgdir/usr/share/doc/gnunet-gtk
-}

Copied: gnunet-gtk/repos/community-i686/PKGBUILD (from rev 109113, 
gnunet-gtk/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-10 13:51:29 UTC (rev 109114)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: wahnby wah...@yahoo.fr
+
+pkgname=gnunet-gtk
+pkgver=0.10.1
+pkgrel=1
+pkgdesc=A frontend for GNUnet
+arch=('i686' 'x86_64')
+url=http://gnunet.org;
+license=('GPL')
+depends=('gnunet' 'glade' 'adns')
+makedepends=('pkgconfig')
+source=(ftp://ftp.gnu.org/gnu/gnunet/$pkgname-$pkgver.tar.gz)
+md5sums=('e94d3fea027aa6734a201e4a03c6b752')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  sed -i 's|CC -E|CC -O2 -E|g' configure
+  ./configure --prefix=/usr --with-gnunet=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-10 13:51:16 UTC (rev 109113)
+++ community-x86_64/PKGBUILD   2014-04-10 13:51:29 UTC (rev 109114)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: wahnby wah...@yahoo.fr
-
-pkgname=gnunet-gtk
-pkgver=0.10.0
-pkgrel=1
-pkgdesc=A frontend for GNUnet
-arch=('i686' 'x86_64')
-url=http://gnunet.org;
-license=('GPL')
-depends=('gnunet' 'glade' 'adns')
-makedepends=('pkgconfig')
-source=(ftp://ftp.gnu.org/gnu/gnunet/$pkgname-$pkgver.tar.gz)
-md5sums=('1a036f1956460cc1ea4c34f1b19bb6b1')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --with-gnunet=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  mv $pkgdir/usr/share/doc/gnunet $pkgdir/usr/share/doc/gnunet-gtk
-}

Copied: gnunet-gtk/repos/community-x86_64/PKGBUILD (from rev 109113, 
gnunet-gtk/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-10 13:51:29 UTC (rev 109114)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: wahnby wah...@yahoo.fr
+
+pkgname=gnunet-gtk
+pkgver=0.10.1
+pkgrel=1
+pkgdesc=A frontend for GNUnet
+arch=('i686' 'x86_64')
+url=http://gnunet.org;
+license=('GPL')
+depends=('gnunet' 'glade' 'adns')
+makedepends=('pkgconfig')
+source=(ftp://ftp.gnu.org/gnu/gnunet/$pkgname-$pkgver.tar.gz)
+md5sums=('e94d3fea027aa6734a201e4a03c6b752')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  sed -i 's|CC -E|CC -O2 -E|g' configure
+  ./configure --prefix=/usr --with-gnunet=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



[arch-commits] Commit in python-configobj/repos/community-any (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 15:53:26
  Author: fyan
Revision: 109116

archrelease: copy trunk to community-any

Added:
  python-configobj/repos/community-any/PKGBUILD
(from rev 109115, python-configobj/trunk/PKGBUILD)
Deleted:
  python-configobj/repos/community-any/PKGBUILD

--+
 PKGBUILD |   70 ++---
 1 file changed, 35 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 13:52:26 UTC (rev 109115)
+++ PKGBUILD2014-04-10 13:53:26 UTC (rev 109116)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
-# Contributor: Stefan Husmann  stefan-husm...@t-online.de
-# Contributor: Manuel ekerazha C. (www.ekerazha.com)
-
-pkgbase=python-configobj
-pkgname=('python-configobj' 'python2-configobj')
-pkgver=5.0.2
-pkgrel=2
-pkgdesc='Simple but powerful config file reader and writer for Python'
-arch=('any')
-url='https://github.com/DiffSK/configobj'
-license=('BSD')
-makedepends=('python' 'python2')
-source=(https://github.com/DiffSK/configobj/archive/v$pkgver.zip;)
-sha256sums=('0dfdea62baf6ad6ef61f2c8bf361f93796d4aa21b9aebf8c56a01f6feca8a2b9')
-
-package_python-configobj() {
-  depends=('python-six')
-  cd configobj-$pkgver
-
-  python setup.py install --root=$pkgdir --optimize=1
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-configobj() {
-  depends=('python2-six')
-  cd configobj-$pkgver
-
-  python2 setup.py install --root=$pkgdir --optimize=1
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-configobj/repos/community-any/PKGBUILD (from rev 109115, 
python-configobj/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 13:53:26 UTC (rev 109116)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve
+# Contributor: Stefan Husmann  stefan-husm...@t-online.de
+# Contributor: Manuel ekerazha C. (www.ekerazha.com)
+
+pkgbase=python-configobj
+pkgname=('python-configobj' 'python2-configobj')
+pkgver=5.0.3
+pkgrel=1
+pkgdesc='Simple but powerful config file reader and writer for Python'
+arch=('any')
+url='https://github.com/DiffSK/configobj'
+license=('BSD')
+makedepends=('python' 'python2')
+source=(https://github.com/DiffSK/configobj/archive/v$pkgver.zip;)
+sha256sums=('7531711eb36d141a6c5dfe2780ae5a342410ea3060a77fec45b46de9d514351f')
+
+package_python-configobj() {
+  depends=('python-six')
+  cd configobj-$pkgver
+
+  python setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-configobj() {
+  depends=('python2-six')
+  cd configobj-$pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 15:52:26
  Author: fyan
Revision: 109115

upgpkg: python-configobj 5.0.3-1

Modified:
  python-configobj/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 13:51:29 UTC (rev 109114)
+++ PKGBUILD2014-04-10 13:52:26 UTC (rev 109115)
@@ -6,8 +6,8 @@
 
 pkgbase=python-configobj
 pkgname=('python-configobj' 'python2-configobj')
-pkgver=5.0.2
-pkgrel=2
+pkgver=5.0.3
+pkgrel=1
 pkgdesc='Simple but powerful config file reader and writer for Python'
 arch=('any')
 url='https://github.com/DiffSK/configobj'
@@ -14,7 +14,7 @@
 license=('BSD')
 makedepends=('python' 'python2')
 source=(https://github.com/DiffSK/configobj/archive/v$pkgver.zip;)
-sha256sums=('0dfdea62baf6ad6ef61f2c8bf361f93796d4aa21b9aebf8c56a01f6feca8a2b9')
+sha256sums=('7531711eb36d141a6c5dfe2780ae5a342410ea3060a77fec45b46de9d514351f')
 
 package_python-configobj() {
   depends=('python-six')



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 15:55:08
  Author: fyan
Revision: 109117

fix: use setuptools instead of distribute

Modified:
  python2-dirspec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 13:53:26 UTC (rev 109116)
+++ PKGBUILD2014-04-10 13:55:08 UTC (rev 109117)
@@ -10,7 +10,7 @@
 url=https://launchpad.net/dirspec;
 license=('LGPL')
 depends=('python2')
-makedepends=('python2-distribute')
+makedepends=('python2-setuptools')
 
source=(https://launchpad.net/$_pkgname/stable-13-10/$pkgver/+download/$_pkgname-$pkgver.tar.gz)
 md5sums=('941d59e0f10ade1b992a90899f248358')
 



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 16:09:04
  Author: fyan
Revision: 109118

upgpkg: python-simplejson 3.4.0-1

Modified:
  python-simplejson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 13:55:08 UTC (rev 109117)
+++ PKGBUILD2014-04-10 14:09:04 UTC (rev 109118)
@@ -6,8 +6,8 @@
 
 pkgbase=python-simplejson
 pkgname=($pkgbase 'python2-simplejson')
-pkgver=3.3.3
-pkgrel=2
+pkgver=3.4.0
+pkgrel=1
 pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
 license=('MIT')
 arch=('x86_64' 'i686')
@@ -14,7 +14,7 @@
 url='http://undefined.org/python/#simplejson'
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/simplejson/simplejson/tarball/v${pkgver};)
-sha256sums=('3c1ea4826afdbbb2e8f589540772f8b06ea2a81f575db1edde84fc1829bb293b')
+sha256sums=('636c7a43f4b42e71b7e0bd07232621804d6b43e2b4b3f4c942bd620f001c1a8a')
 
 package_python-simplejson() {
   depends=('python')



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 16:12:57
  Author: fyan
Revision: 109119

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

Added:
  python-simplejson/repos/community-i686/PKGBUILD
(from rev 109118, python-simplejson/trunk/PKGBUILD)
  python-simplejson/repos/community-x86_64/PKGBUILD
(from rev 109118, python-simplejson/trunk/PKGBUILD)
Deleted:
  python-simplejson/repos/community-i686/PKGBUILD
  python-simplejson/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   74 
 community-i686/PKGBUILD   |   37 --
 community-x86_64/PKGBUILD |   37 --
 3 files changed, 74 insertions(+), 74 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-10 14:09:04 UTC (rev 109118)
+++ community-i686/PKGBUILD 2014-04-10 14:12:57 UTC (rev 109119)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Allan McRae al...@archlinux.org
-# Contributor: David Moore dav...@sjsoft.com
-
-pkgbase=python-simplejson
-pkgname=($pkgbase 'python2-simplejson')
-pkgver=3.3.3
-pkgrel=2
-pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
-license=('MIT')
-arch=('x86_64' 'i686')
-url='http://undefined.org/python/#simplejson'
-makedepends=('python-setuptools' 'python2-setuptools')
-source=($pkgname-$pkgver.tar.gz::https://github.com/simplejson/simplejson/tarball/v${pkgver};)
-sha256sums=('3c1ea4826afdbbb2e8f589540772f8b06ea2a81f575db1edde84fc1829bb293b')
-
-package_python-simplejson() {
-  depends=('python')
-
-  cd simplejson-simplejson-*
-  python setup.py install --root=$pkgdir
-  install -Dm644 $srcdir/simplejson-simplejson-*/LICENSE.txt \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-simplejson() {
-  depends=('python2')
-
-  cd simplejson-simplejson-*
-  python2 setup.py install --root=$pkgdir
-  install -Dm644 $srcdir/simplejson-simplejson-*/LICENSE.txt \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-simplejson/repos/community-i686/PKGBUILD (from rev 109118, 
python-simplejson/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-10 14:12:57 UTC (rev 109119)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: David Moore dav...@sjsoft.com
+
+pkgbase=python-simplejson
+pkgname=($pkgbase 'python2-simplejson')
+pkgver=3.4.0
+pkgrel=1
+pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
+license=('MIT')
+arch=('x86_64' 'i686')
+url='http://undefined.org/python/#simplejson'
+makedepends=('python-setuptools' 'python2-setuptools')
+source=($pkgname-$pkgver.tar.gz::https://github.com/simplejson/simplejson/tarball/v${pkgver};)
+sha256sums=('636c7a43f4b42e71b7e0bd07232621804d6b43e2b4b3f4c942bd620f001c1a8a')
+
+package_python-simplejson() {
+  depends=('python')
+
+  cd simplejson-simplejson-*
+  python setup.py install --root=$pkgdir
+  install -Dm644 $srcdir/simplejson-simplejson-*/LICENSE.txt \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-simplejson() {
+  depends=('python2')
+
+  cd simplejson-simplejson-*
+  python2 setup.py install --root=$pkgdir
+  install -Dm644 $srcdir/simplejson-simplejson-*/LICENSE.txt \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-10 14:09:04 UTC (rev 109118)
+++ community-x86_64/PKGBUILD   2014-04-10 14:12:57 UTC (rev 109119)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Allan McRae al...@archlinux.org
-# Contributor: David Moore dav...@sjsoft.com
-
-pkgbase=python-simplejson
-pkgname=($pkgbase 'python2-simplejson')
-pkgver=3.3.3
-pkgrel=2
-pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
-license=('MIT')
-arch=('x86_64' 'i686')
-url='http://undefined.org/python/#simplejson'
-makedepends=('python-setuptools' 'python2-setuptools')
-source=($pkgname-$pkgver.tar.gz::https://github.com/simplejson/simplejson/tarball/v${pkgver};)
-sha256sums=('3c1ea4826afdbbb2e8f589540772f8b06ea2a81f575db1edde84fc1829bb293b')
-
-package_python-simplejson() {
-  depends=('python')
-
-  cd simplejson-simplejson-*
-  python setup.py install --root=$pkgdir
-  install -Dm644 $srcdir/simplejson-simplejson-*/LICENSE.txt \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 16:14:34
  Author: fyan
Revision: 109120

upgpkg: python-itsdangerous 0.24-1

Modified:
  python-itsdangerous/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 14:12:57 UTC (rev 109119)
+++ PKGBUILD2014-04-10 14:14:34 UTC (rev 109120)
@@ -3,8 +3,8 @@
 # Contributor: Alexander Rødseth rods...@gmail.com
 
 pkgname=('python-itsdangerous' 'python2-itsdangerous')
-pkgver=0.23
-pkgrel=2
+pkgver=0.24
+pkgrel=1
 pkgdesc='Various helpers to pass trusted data to untrusted environments'
 arch=('any')
 url=http://pypi.python.org/pypi/itsdangerous;
@@ -11,7 +11,7 @@
 license=('BSD')
 makedepends=('python' 'python2')
 source=(https://github.com/mitsuhiko/itsdangerous/archive/${pkgver}.tar.gz;)
-sha256sums=('86c3c63370fde4c96dd4967c7eb71d5482b240ec87de970cc70cdb74ef872221')
+sha256sums=('b035b2da1d493b00a5ee7a5b750f96929de87b610643939fbe382902774626fc')
 
 prepare() {
   cp -r itsdangerous-$pkgver python-itsdangerous-$pkgver



[arch-commits] Commit in python-itsdangerous/repos/community-any (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 16:16:23
  Author: fyan
Revision: 109121

archrelease: copy trunk to community-any

Added:
  python-itsdangerous/repos/community-any/PKGBUILD
(from rev 109120, python-itsdangerous/trunk/PKGBUILD)
Deleted:
  python-itsdangerous/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 14:14:34 UTC (rev 109120)
+++ PKGBUILD2014-04-10 14:16:23 UTC (rev 109121)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Alexander Rødseth rods...@gmail.com
-
-pkgname=('python-itsdangerous' 'python2-itsdangerous')
-pkgver=0.23
-pkgrel=2
-pkgdesc='Various helpers to pass trusted data to untrusted environments'
-arch=('any')
-url=http://pypi.python.org/pypi/itsdangerous;
-license=('BSD')
-makedepends=('python' 'python2')
-source=(https://github.com/mitsuhiko/itsdangerous/archive/${pkgver}.tar.gz;)
-sha256sums=('86c3c63370fde4c96dd4967c7eb71d5482b240ec87de970cc70cdb74ef872221')
-
-prepare() {
-  cp -r itsdangerous-$pkgver python-itsdangerous-$pkgver
-  cp -r itsdangerous-$pkgver python2-itsdangerous-$pkgver
-}
-
-package_python-itsdangerous() {
-  cd $pkgname-$pkgver
-  depends+=('python')
-
-  python setup.py install --root=$pkgdir --optimize=1
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-itsdangerous() {
-  cd $pkgname-$pkgver
-  depends+=('python2')
-
-  python2 setup.py install --root=$pkgdir --optimize=1
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-itsdangerous/repos/community-any/PKGBUILD (from rev 109120, 
python-itsdangerous/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 14:16:23 UTC (rev 109121)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Alexander Rødseth rods...@gmail.com
+
+pkgname=('python-itsdangerous' 'python2-itsdangerous')
+pkgver=0.24
+pkgrel=1
+pkgdesc='Various helpers to pass trusted data to untrusted environments'
+arch=('any')
+url=http://pypi.python.org/pypi/itsdangerous;
+license=('BSD')
+makedepends=('python' 'python2')
+source=(https://github.com/mitsuhiko/itsdangerous/archive/${pkgver}.tar.gz;)
+sha256sums=('b035b2da1d493b00a5ee7a5b750f96929de87b610643939fbe382902774626fc')
+
+prepare() {
+  cp -r itsdangerous-$pkgver python-itsdangerous-$pkgver
+  cp -r itsdangerous-$pkgver python2-itsdangerous-$pkgver
+}
+
+package_python-itsdangerous() {
+  cd $pkgname-$pkgver
+  depends+=('python')
+
+  python setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-itsdangerous() {
+  cd $pkgname-$pkgver
+  depends+=('python2')
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 16:19:27
  Author: fyan
Revision: 109122

upgpkg: python-pytables 3.1.1-1

Modified:
  python-pytables/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 14:16:23 UTC (rev 109121)
+++ PKGBUILD2014-04-10 14:19:27 UTC (rev 109122)
@@ -4,8 +4,8 @@
 
 pkgbase=python-pytables
 pkgname=('python2-pytables' 'python-pytables')
-pkgver=3.1.0
-pkgrel=2
+pkgver=3.1.1
+pkgrel=1
 arch=(i686 x86_64)
 pkgdesc=A package for managing hierarchical datasets and designed to 
efficiently and easily cope with extremely large amounts of data
 url=http://www.pytables.org;
@@ -12,7 +12,7 @@
 license=(BSD)
 makedepends=('lzo2' 'hdf5' 'python2-numexpr' 'cython2' 'python-numexpr' 
'cython')
 
source=(http://pypi.python.org/packages/source/t/tables/tables-$pkgver.tar.gz;)
-md5sums=('22e048ef20883269c4a2a3f2026c38ee')
+md5sums=('38d917f0c6dfb0bc28ce9ea0c3492524')
 
 build() {
   cd $srcdir



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 16:24:45
  Author: fyan
Revision: 109123

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

Added:
  python-pytables/repos/community-i686/PKGBUILD
(from rev 109122, python-pytables/trunk/PKGBUILD)
  python-pytables/repos/community-x86_64/PKGBUILD
(from rev 109122, python-pytables/trunk/PKGBUILD)
Deleted:
  python-pytables/repos/community-i686/PKGBUILD
  python-pytables/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  104 
 community-i686/PKGBUILD   |   52 --
 community-x86_64/PKGBUILD |   52 --
 3 files changed, 104 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-10 14:19:27 UTC (rev 109122)
+++ community-i686/PKGBUILD 2014-04-10 14:24:45 UTC (rev 109123)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Sebastien Binet bi...@cern.ch
-
-pkgbase=python-pytables
-pkgname=('python2-pytables' 'python-pytables')
-pkgver=3.1.0
-pkgrel=2
-arch=(i686 x86_64)
-pkgdesc=A package for managing hierarchical datasets and designed to 
efficiently and easily cope with extremely large amounts of data
-url=http://www.pytables.org;
-license=(BSD)
-makedepends=('lzo2' 'hdf5' 'python2-numexpr' 'cython2' 'python-numexpr' 
'cython')
-source=(http://pypi.python.org/packages/source/t/tables/tables-$pkgver.tar.gz;)
-md5sums=('22e048ef20883269c4a2a3f2026c38ee')
-
-build() {
-  cd $srcdir
-  cp -a tables-$pkgver tables-py2-$pkgver
-
-  msg Building Python2
-  cd $srcdir/tables-py2-$pkgver
-  python2 setup.py build
-
-  msg Building Python3
-  cd $srcdir/tables-$pkgver
-  python setup.py build
-}
-
-package_python2-pytables() {
-  depends=('lzo2' 'hdf5' 'python2-numexpr' 'cython2')
-
-  cd $srcdir/tables-py2-${pkgver}
-  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  # see FS#36015
-  mv $pkgdir/usr/bin/pt2to3{,-2.7}
-  mv $pkgdir/usr/bin/ptdump{,-2.7}
-  mv $pkgdir/usr/bin/ptrepack{,-2.7}
-}
-
-package_python-pytables() {
-  depends=('lzo2' 'hdf5' 'python-numexpr' 'cython')
-
-  cd $srcdir/tables-${pkgver}
-  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-pytables/repos/community-i686/PKGBUILD (from rev 109122, 
python-pytables/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-10 14:24:45 UTC (rev 109123)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: Sebastien Binet bi...@cern.ch
+
+pkgbase=python-pytables
+pkgname=('python2-pytables' 'python-pytables')
+pkgver=3.1.1
+pkgrel=1
+arch=(i686 x86_64)
+pkgdesc=A package for managing hierarchical datasets and designed to 
efficiently and easily cope with extremely large amounts of data
+url=http://www.pytables.org;
+license=(BSD)
+makedepends=('lzo2' 'hdf5' 'python2-numexpr' 'cython2' 'python-numexpr' 
'cython')
+source=(http://pypi.python.org/packages/source/t/tables/tables-$pkgver.tar.gz;)
+md5sums=('38d917f0c6dfb0bc28ce9ea0c3492524')
+
+build() {
+  cd $srcdir
+  cp -a tables-$pkgver tables-py2-$pkgver
+
+  msg Building Python2
+  cd $srcdir/tables-py2-$pkgver
+  python2 setup.py build
+
+  msg Building Python3
+  cd $srcdir/tables-$pkgver
+  python setup.py build
+}
+
+package_python2-pytables() {
+  depends=('lzo2' 'hdf5' 'python2-numexpr' 'cython2')
+
+  cd $srcdir/tables-py2-${pkgver}
+  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+
+  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  # see FS#36015
+  mv $pkgdir/usr/bin/pt2to3{,-2.7}
+  mv $pkgdir/usr/bin/ptdump{,-2.7}
+  mv $pkgdir/usr/bin/ptrepack{,-2.7}
+}
+
+package_python-pytables() {
+  depends=('lzo2' 'hdf5' 'python-numexpr' 'cython')
+
+  cd $srcdir/tables-${pkgver}
+  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+
+  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-10 14:19:27 UTC (rev 109122)
+++ community-x86_64/PKGBUILD   2014-04-10 14:24:45 UTC (rev 109123)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Sebastien Binet bi...@cern.ch
-
-pkgbase=python-pytables
-pkgname=('python2-pytables' 'python-pytables')
-pkgver=3.1.0
-pkgrel=2
-arch=(i686 x86_64)
-pkgdesc=A package for managing hierarchical datasets and designed to 
efficiently and easily cope with extremely large amounts of data

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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 16:25:41
  Author: fyan
Revision: 109124

upgpkg: python-pyro 4.24-1

Modified:
  python-pyro/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 14:24:45 UTC (rev 109123)
+++ PKGBUILD2014-04-10 14:25:41 UTC (rev 109124)
@@ -5,8 +5,8 @@
 
 pkgbase=python-pyro
 pkgname=($pkgbase 'python2-pyro')
-pkgver=4.22
-pkgrel=2
+pkgver=4.24
+pkgrel=1
 pkgdesc='Distributed object middleware for Python (RPC)'
 url='http://pypi.python.org/pypi/Pyro4/'
 arch=('any')
@@ -13,7 +13,7 @@
 license=('MIT')
 depends=('python' 'python2')
 source=(http://pypi.python.org/packages/source/P/Pyro4/Pyro4-$pkgver.tar.gz;)
-sha256sums=('d8f611f384edbd240006d8c0f56135e74199ab88e9416cfc78cf5472f1ff337d')
+sha256sums=('24d2ceaabbd886981d0df56f8f7e5f7f1a9db173778baa4965605f6880c90eb8')
 
 package_python-pyro() {
   depends=('python')



[arch-commits] Commit in python-pyro/repos/community-any (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 16:26:39
  Author: fyan
Revision: 109125

archrelease: copy trunk to community-any

Added:
  python-pyro/repos/community-any/PKGBUILD
(from rev 109124, python-pyro/trunk/PKGBUILD)
Deleted:
  python-pyro/repos/community-any/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 14:25:41 UTC (rev 109124)
+++ PKGBUILD2014-04-10 14:26:39 UTC (rev 109125)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Angel Velasquez an...@archlinux.org 
-# Contributor: Douglas Soares de Andrade d...@aur.archlinux.br
-
-pkgbase=python-pyro
-pkgname=($pkgbase 'python2-pyro')
-pkgver=4.22
-pkgrel=2
-pkgdesc='Distributed object middleware for Python (RPC)'
-url='http://pypi.python.org/pypi/Pyro4/'
-arch=('any')
-license=('MIT')
-depends=('python' 'python2')
-source=(http://pypi.python.org/packages/source/P/Pyro4/Pyro4-$pkgver.tar.gz;)
-sha256sums=('d8f611f384edbd240006d8c0f56135e74199ab88e9416cfc78cf5472f1ff337d')
-
-package_python-pyro() {
-  depends=('python')
-  cd Pyro4-$pkgver
-  python setup.py install --root=$pkgdir
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pyro() {
-  depends=('python2')
-  cd Pyro4-$pkgver
-  python2 setup.py install --root=$pkgdir
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyro/repos/community-any/PKGBUILD (from rev 109124, 
python-pyro/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 14:26:39 UTC (rev 109125)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Angel Velasquez an...@archlinux.org 
+# Contributor: Douglas Soares de Andrade d...@aur.archlinux.br
+
+pkgbase=python-pyro
+pkgname=($pkgbase 'python2-pyro')
+pkgver=4.24
+pkgrel=1
+pkgdesc='Distributed object middleware for Python (RPC)'
+url='http://pypi.python.org/pypi/Pyro4/'
+arch=('any')
+license=('MIT')
+depends=('python' 'python2')
+source=(http://pypi.python.org/packages/source/P/Pyro4/Pyro4-$pkgver.tar.gz;)
+sha256sums=('24d2ceaabbd886981d0df56f8f7e5f7f1a9db173778baa4965605f6880c90eb8')
+
+package_python-pyro() {
+  depends=('python')
+  cd Pyro4-$pkgver
+  python setup.py install --root=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pyro() {
+  depends=('python2')
+  cd Pyro4-$pkgver
+  python2 setup.py install --root=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-04-10 Thread Bartłomiej Piotrowski
Date: Thursday, April 10, 2014 @ 16:28:28
  Author: bpiotrowski
Revision: 210158

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

Added:
  ffmpeg/repos/extra-i686/0001-libx265-Support-API-version-9.patch
(from rev 210157, ffmpeg/trunk/0001-libx265-Support-API-version-9.patch)
  ffmpeg/repos/extra-i686/PKGBUILD
(from rev 210157, ffmpeg/trunk/PKGBUILD)
  ffmpeg/repos/extra-x86_64/0001-libx265-Support-API-version-9.patch
(from rev 210157, ffmpeg/trunk/0001-libx265-Support-API-version-9.patch)
  ffmpeg/repos/extra-x86_64/PKGBUILD
(from rev 210157, ffmpeg/trunk/PKGBUILD)
Deleted:
  ffmpeg/repos/extra-i686/0001-libx265-Support-API-version-9.patch
  ffmpeg/repos/extra-i686/PKGBUILD
  ffmpeg/repos/extra-x86_64/0001-libx265-Support-API-version-9.patch
  ffmpeg/repos/extra-x86_64/PKGBUILD

---+
 /0001-libx265-Support-API-version-9.patch |  100 +
 /PKGBUILD |  172 
 extra-i686/0001-libx265-Support-API-version-9.patch   |   50 
 extra-i686/PKGBUILD   |   86 
 extra-x86_64/0001-libx265-Support-API-version-9.patch |   50 
 extra-x86_64/PKGBUILD |   86 
 6 files changed, 272 insertions(+), 272 deletions(-)

Deleted: extra-i686/0001-libx265-Support-API-version-9.patch
===
--- extra-i686/0001-libx265-Support-API-version-9.patch 2014-04-10 14:28:06 UTC 
(rev 210157)
+++ extra-i686/0001-libx265-Support-API-version-9.patch 2014-04-10 14:28:28 UTC 
(rev 210158)
@@ -1,50 +0,0 @@
-From d67dbfa7c195fabce706ca03c439419450f9bd8a Mon Sep 17 00:00:00 2001
-From: Derek Buitenhuis derek.buitenh...@gmail.com
-Date: Thu, 6 Mar 2014 20:01:17 +
-Subject: [PATCH] libx265: Support API version 9
-
-Signed-off-by: Derek Buitenhuis derek.buitenh...@gmail.com

- configure|4 ++--
- libavcodec/libx265.c |   10 +-
- 2 files changed, 7 insertions(+), 7 deletions(-)
-
-diff --git a/configure b/configure
-index d3f5f33..4d7382a 100755
 a/configure
-+++ b/configure
-@@ -3980,8 +3980,8 @@ enabled libx264require libx264 x264.h 
x264_encoder_encode -lx264 
-  { check_cpp_condition x264.h X264_BUILD = 118 
||
-die ERROR: libx264 version must be = 
0.118.; }
- enabled libx265require_pkg_config x265 x265.h 
x265_encoder_encode 
-- { check_cpp_condition x265.h X265_BUILD = 7 ||
--   die ERROR: libx265 version must be = 7.; }
-+ { check_cpp_condition x265.h X265_BUILD = 9 ||
-+   die ERROR: libx265 version must be = 9.; }
- enabled libxavsrequire libxavs xavs.h xavs_encoder_encode -lxavs
- enabled libxvidrequire libxvid xvid.h xvid_global -lxvidcore
- enabled openssl{ check_lib openssl/ssl.h SSL_library_init -lssl 
-lcrypto ||
-diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c
-index 961fc74..a6e4193 100644
 a/libavcodec/libx265.c
-+++ b/libavcodec/libx265.c
-@@ -121,11 +121,11 @@ static av_cold int libx265_encode_init(AVCodecContext 
*avctx)
- av_reduce(sar_num, sar_den,
-   avctx-sample_aspect_ratio.num,
-   avctx-sample_aspect_ratio.den, 4096);
--ctx-params-bEnableVuiParametersPresentFlag = 1;
--ctx-params-bEnableAspectRatioIdc   = 1;
--ctx-params-aspectRatioIdc  = 255;
--ctx-params-sarWidth= sar_num;
--ctx-params-sarHeight   = sar_den;
-+ctx-params-vui.bEnableVuiParametersPresentFlag = 1;
-+ctx-params-vui.bEnableAspectRatioIdc   = 1;
-+ctx-params-vui.aspectRatioIdc  = 255;
-+ctx-params-vui.sarWidth= sar_num;
-+ctx-params-vui.sarHeight   = sar_den;
- 
- if (x265_max_bit_depth == 8)
- ctx-params-internalBitDepth = 8;
--- 
-1.7.10.4
-

Copied: ffmpeg/repos/extra-i686/0001-libx265-Support-API-version-9.patch (from 
rev 210157, ffmpeg/trunk/0001-libx265-Support-API-version-9.patch)
===
--- extra-i686/0001-libx265-Support-API-version-9.patch 
(rev 0)
+++ extra-i686/0001-libx265-Support-API-version-9.patch 2014-04-10 14:28:28 UTC 
(rev 210158)
@@ -0,0 +1,50 @@
+From d67dbfa7c195fabce706ca03c439419450f9bd8a Mon Sep 17 00:00:00 2001
+From: Derek Buitenhuis derek.buitenh...@gmail.com
+Date: Thu, 6 Mar 2014 20:01:17 +
+Subject: [PATCH] libx265: Support API version 9
+
+Signed-off-by: Derek Buitenhuis derek.buitenh...@gmail.com
+---
+ configure|4 ++--
+ libavcodec/libx265.c |   10 +-
+ 2 files changed, 7 insertions(+), 7 deletions(-)
+
+diff --git a/configure 

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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 16:28:37
  Author: fyan
Revision: 109126

upgpkg: nuitka 0.5.1.3-1

Modified:
  nuitka/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 14:26:39 UTC (rev 109125)
+++ PKGBUILD2014-04-10 14:28:37 UTC (rev 109126)
@@ -3,8 +3,8 @@
 # Contributor: Panagiotis Mavrogiorgos (pmav99)  (gmail)
 
 pkgname=nuitka
-pkgver=0.5.1.1
-pkgrel=2
+pkgver=0.5.1.3
+pkgrel=1
 pkgdesc='Python to native compiler'
 arch=('any')
 url='http://www.nuitka.net/'
@@ -13,7 +13,7 @@
 depends=('python')
 options=('!emptydirs')
 source=(http://nuitka.net/releases/Nuitka-$pkgver.tar.gz;)
-sha256sums=('dac19d8865026f8375c8dee5b3944719c3a37f3e12e8924664b7873327fdad46')
+sha256sums=('bbbd9a612ebe6db7fdfa3720aee4f78cf9b89fb622a913b6c89868055d33e595')
 
 package() {
   cd Nuitka-$pkgver



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

2014-04-10 Thread Bartłomiej Piotrowski
Date: Thursday, April 10, 2014 @ 16:28:06
  Author: bpiotrowski
Revision: 210157

upgpkg: ffmpeg 1:2.2.1-1

new upstream release

Modified:
  ffmpeg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 13:13:58 UTC (rev 210156)
+++ PKGBUILD2014-04-10 14:28:06 UTC (rev 210157)
@@ -5,8 +5,8 @@
 # Contributor: Paul Mattal p...@archlinux.org
 
 pkgname=ffmpeg
-pkgver=2.2
-pkgrel=3
+pkgver=2.2.1
+pkgrel=1
 epoch=1
 pkgdesc='Complete and free Internet live audio and video broadcasting solution'
 arch=('i686' 'x86_64')
@@ -21,7 +21,7 @@
 makedepends=('libvdpau' 'yasm')
 source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc}
 0001-libx265-Support-API-version-9.patch)
-md5sums=('744febca199548c9393b1f1ed05ccdd8'
+md5sums=('b8a1ee4964c2638f46fcc803ed453818'
  'SKIP'
  '4cbf9b13dc013e96be36445b4a2bfdac')
 



[arch-commits] Commit in nuitka/repos/community-any (PKGBUILD PKGBUILD)

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 16:29:32
  Author: fyan
Revision: 109127

archrelease: copy trunk to community-any

Added:
  nuitka/repos/community-any/PKGBUILD
(from rev 109126, nuitka/trunk/PKGBUILD)
Deleted:
  nuitka/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 14:28:37 UTC (rev 109126)
+++ PKGBUILD2014-04-10 14:29:32 UTC (rev 109127)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Panagiotis Mavrogiorgos (pmav99)  (gmail)
-
-pkgname=nuitka
-pkgver=0.5.1.1
-pkgrel=2
-pkgdesc='Python to native compiler'
-arch=('any')
-url='http://www.nuitka.net/'
-license=('APACHE')
-makedepends=('scons')
-depends=('python')
-options=('!emptydirs')
-source=(http://nuitka.net/releases/Nuitka-$pkgver.tar.gz;)
-sha256sums=('dac19d8865026f8375c8dee5b3944719c3a37f3e12e8924664b7873327fdad46')
-
-package() {
-  cd Nuitka-$pkgver
-
-  python setup.py install --root=$pkgdir --optimize=1
-}
-
-# vim: sw=2 ts=2 et:

Copied: nuitka/repos/community-any/PKGBUILD (from rev 109126, 
nuitka/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 14:29:32 UTC (rev 109127)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Panagiotis Mavrogiorgos (pmav99)  (gmail)
+
+pkgname=nuitka
+pkgver=0.5.1.3
+pkgrel=1
+pkgdesc='Python to native compiler'
+arch=('any')
+url='http://www.nuitka.net/'
+license=('APACHE')
+makedepends=('scons')
+depends=('python')
+options=('!emptydirs')
+source=(http://nuitka.net/releases/Nuitka-$pkgver.tar.gz;)
+sha256sums=('bbbd9a612ebe6db7fdfa3720aee4f78cf9b89fb622a913b6c89868055d33e595')
+
+package() {
+  cd Nuitka-$pkgver
+
+  python setup.py install --root=$pkgdir --optimize=1
+}
+
+# vim: sw=2 ts=2 et:



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 16:38:36
  Author: fyan
Revision: 210159

upgpkg: python-urwid 1.2.1-1

Modified:
  python-urwid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-10 14:28:28 UTC (rev 210158)
+++ PKGBUILD2014-04-10 14:38:36 UTC (rev 210159)
@@ -4,8 +4,8 @@
 # Maintainer: Douglas Soares de Andrade dsandr...@gmail.com
 
 pkgname=('python-urwid' 'python2-urwid')
-pkgver=1.2.0
-pkgrel=2
+pkgver=1.2.1
+pkgrel=1
 pkgdesc=Urwid is a curses-based user interface library.
 license=('LGPL')
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('python2-setuptools' 'python-setuptools')
 url=http://excess.org/urwid/;
 source=(https://pypi.python.org/packages/source/u/urwid/urwid-$pkgver.tar.gz)
-md5sums=('ea046a0f683bc2d46b08df70b29c7f66')
+md5sums=('6a05ada11b87e7b026b01fc5150855b0')
 
 build() {
   cp -r urwid-$pkgver python2-urwid-$pkgver



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 16:39:33
  Author: fyan
Revision: 210160

archrelease: copy trunk to extra-x86_64

Added:
  python-urwid/repos/extra-x86_64/PKGBUILD
(from rev 210159, python-urwid/trunk/PKGBUILD)
Deleted:
  python-urwid/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   86 ++---
 1 file changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 14:38:36 UTC (rev 210159)
+++ PKGBUILD2014-04-10 14:39:33 UTC (rev 210160)
@@ -1,43 +0,0 @@
-# $Id: PKGBUILD,v 1.10 2009/03/13 21:14:09 sergej Exp $
-# Maintainer: Daniel Isenmann dan...@archlinux.org
-# Maintainer: Sergej Pupykin ser...@aur.archlinux.org
-# Maintainer: Douglas Soares de Andrade dsandr...@gmail.com
-
-pkgname=('python-urwid' 'python2-urwid')
-pkgver=1.2.0
-pkgrel=2
-pkgdesc=Urwid is a curses-based user interface library.
-license=('LGPL')
-arch=('i686' 'x86_64')
-makedepends=('python2-setuptools' 'python-setuptools')
-url=http://excess.org/urwid/;
-source=(https://pypi.python.org/packages/source/u/urwid/urwid-$pkgver.tar.gz)
-md5sums=('ea046a0f683bc2d46b08df70b29c7f66')
-
-build() {
-  cp -r urwid-$pkgver python2-urwid-$pkgver
-
-  cd $srcdir/urwid-$pkgver
-  python setup.py build
-
-  cd $srcdir/python2-urwid-$pkgver
-  sed -i 's#bin/python#bin/python2#' urwid/*.py
-  
-  python2 setup.py build
-}
-
-package_python-urwid() {
-  depends=('python')
-
-  cd $srcdir/urwid-$pkgver
-  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-}
-
-package_python2-urwid() {
-  depends=('python2')
- 
-  cd $srcdir/python2-urwid-$pkgver
-  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-}
-
-

Copied: python-urwid/repos/extra-x86_64/PKGBUILD (from rev 210159, 
python-urwid/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 14:39:33 UTC (rev 210160)
@@ -0,0 +1,43 @@
+# $Id: PKGBUILD,v 1.10 2009/03/13 21:14:09 sergej Exp $
+# Maintainer: Daniel Isenmann dan...@archlinux.org
+# Maintainer: Sergej Pupykin ser...@aur.archlinux.org
+# Maintainer: Douglas Soares de Andrade dsandr...@gmail.com
+
+pkgname=('python-urwid' 'python2-urwid')
+pkgver=1.2.1
+pkgrel=1
+pkgdesc=Urwid is a curses-based user interface library.
+license=('LGPL')
+arch=('i686' 'x86_64')
+makedepends=('python2-setuptools' 'python-setuptools')
+url=http://excess.org/urwid/;
+source=(https://pypi.python.org/packages/source/u/urwid/urwid-$pkgver.tar.gz)
+md5sums=('6a05ada11b87e7b026b01fc5150855b0')
+
+build() {
+  cp -r urwid-$pkgver python2-urwid-$pkgver
+
+  cd $srcdir/urwid-$pkgver
+  python setup.py build
+
+  cd $srcdir/python2-urwid-$pkgver
+  sed -i 's#bin/python#bin/python2#' urwid/*.py
+  
+  python2 setup.py build
+}
+
+package_python-urwid() {
+  depends=('python')
+
+  cd $srcdir/urwid-$pkgver
+  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+}
+
+package_python2-urwid() {
+  depends=('python2')
+ 
+  cd $srcdir/python2-urwid-$pkgver
+  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+}
+
+



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 16:50:53
  Author: fyan
Revision: 210161

upgpkg: python-rdflib 4.1.1-1

Added:
  python-rdflib/
Modified:
  python-rdflib/trunk/PKGBUILD
Deleted:
  python2-rdflib/

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

Modified: python-rdflib/trunk/PKGBUILD
===
--- python2-rdflib/trunk/PKGBUILD   2014-04-09 23:29:33 UTC (rev 210110)
+++ python-rdflib/trunk/PKGBUILD2014-04-10 14:50:53 UTC (rev 210161)
@@ -3,10 +3,10 @@
 # Contributor: Andrea Scarpino and...@archlinux.org
 # Contributor: Leif Warner abimel...@gmail.com
 
-pkgbase=python2-rdflib
+pkgbase=python-rdflib
 pkgname=('python2-rdflib' 'python-rdflib')
-pkgver=4.1.0
-pkgrel=2
+pkgver=4.1.1
+pkgrel=1
 pkgdesc=A Python library for working with RDF, a simple yet powerful language 
for representing information
 arch=('any')
 url=http://rdflib.net/;
@@ -15,7 +15,7 @@
 checkdepends=('python2-nose' 'python-nose' 'python2-pyparsing' 
'python-pyparsing' 
   'python2-six' 'python-six')
 
source=(rdflib-$pkgver.tar.gz::https://github.com/RDFLib/rdflib/tarball/$pkgver)
-sha1sums=('5d7922ea3de794721bc70d3eb0618bcb4fdce9fc')
+sha1sums=('bd93a7ee8af7147c149a978a92b59acd2f15ab13')
 
 prepare() {
   cp -r RDFLib-rdflib-* python2-rdflib



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

2014-04-10 Thread Felix Yan
Date: Thursday, April 10, 2014 @ 16:52:04
  Author: fyan
Revision: 210162

archrelease: copy trunk to extra-any

Added:
  python-rdflib/repos/extra-any/PKGBUILD
(from rev 210161, python-rdflib/trunk/PKGBUILD)
Deleted:
  python-rdflib/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  108 ++---
 1 file changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-10 14:50:53 UTC (rev 210161)
+++ PKGBUILD2014-04-10 14:52:04 UTC (rev 210162)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Leif Warner abimel...@gmail.com
-
-pkgbase=python2-rdflib
-pkgname=('python2-rdflib' 'python-rdflib')
-pkgver=4.1.0
-pkgrel=2
-pkgdesc=A Python library for working with RDF, a simple yet powerful language 
for representing information
-arch=('any')
-url=http://rdflib.net/;
-license=('BSD')
-makedepends=('python2-isodate' 'python-isodate' 'python2-setuptools' 
'python-setuptools')
-checkdepends=('python2-nose' 'python-nose' 'python2-pyparsing' 
'python-pyparsing' 
-  'python2-six' 'python-six')
-source=(rdflib-$pkgver.tar.gz::https://github.com/RDFLib/rdflib/tarball/$pkgver)
-sha1sums=('5d7922ea3de794721bc70d3eb0618bcb4fdce9fc')
-
-prepare() {
-  cp -r RDFLib-rdflib-* python2-rdflib
-  cd python2-rdflib
-  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' 
rdflib/extras/{describer.py,infixowl.py} \
-
rdflib/plugins/parsers/{ntriples.py,notation3.py,structureddata.py,pyRdfa/extras/httpheader.py}
 \
-rdflib/tools/rdfpipe.py
-}
-
-check() {
-  cd RDFLib-rdflib-*
-  python setup.py test
-  cd ../python2-rdflib
-  python2 setup.py test
-}
-
-package_python2-rdflib() {
-  depends=('python2-isodate')
-
-  cd python2-rdflib
-  python2 setup.py install --root=$pkgdir --optimize=1
-  install -Dm644  LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  cd $pkgdir/usr/bin
-  for i in * ; do 
-mv $i $i-py2
-  done
-}
-
-package_python-rdflib() {
-  depends=('python-isodate')
-
-  cd RDFLib-rdflib-*
-  python setup.py install --root=$pkgdir --optimize=1
-  install -Dm644  LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-rdflib/repos/extra-any/PKGBUILD (from rev 210161, 
python-rdflib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-10 14:52:04 UTC (rev 210162)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Leif Warner abimel...@gmail.com
+
+pkgbase=python-rdflib
+pkgname=('python2-rdflib' 'python-rdflib')
+pkgver=4.1.1
+pkgrel=1
+pkgdesc=A Python library for working with RDF, a simple yet powerful language 
for representing information
+arch=('any')
+url=http://rdflib.net/;
+license=('BSD')
+makedepends=('python2-isodate' 'python-isodate' 'python2-setuptools' 
'python-setuptools')
+checkdepends=('python2-nose' 'python-nose' 'python2-pyparsing' 
'python-pyparsing' 
+  'python2-six' 'python-six')
+source=(rdflib-$pkgver.tar.gz::https://github.com/RDFLib/rdflib/tarball/$pkgver)
+sha1sums=('bd93a7ee8af7147c149a978a92b59acd2f15ab13')
+
+prepare() {
+  cp -r RDFLib-rdflib-* python2-rdflib
+  cd python2-rdflib
+  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' 
rdflib/extras/{describer.py,infixowl.py} \
+
rdflib/plugins/parsers/{ntriples.py,notation3.py,structureddata.py,pyRdfa/extras/httpheader.py}
 \
+rdflib/tools/rdfpipe.py
+}
+
+check() {
+  cd RDFLib-rdflib-*
+  python setup.py test
+  cd ../python2-rdflib
+  python2 setup.py test
+}
+
+package_python2-rdflib() {
+  depends=('python2-isodate')
+
+  cd python2-rdflib
+  python2 setup.py install --root=$pkgdir --optimize=1
+  install -Dm644  LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  cd $pkgdir/usr/bin
+  for i in * ; do 
+mv $i $i-py2
+  done
+}
+
+package_python-rdflib() {
+  depends=('python-isodate')
+
+  cd RDFLib-rdflib-*
+  python setup.py install --root=$pkgdir --optimize=1
+  install -Dm644  LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



  1   2   >