[arch-commits] Commit in cblas/trunk (6 files)

2015-06-14 Thread Antonio Rojas
Date: Sunday, June 14, 2015 @ 13:24:40
  Author: arojas
Revision: 135285

Fix missing variable in sdsdot.f (FS#45325)

Added:
  cblas/trunk/fPIC.patch
  cblas/trunk/sdsdot.patch
  cblas/trunk/shared.patch
Modified:
  cblas/trunk/PKGBUILD
Deleted:
  cblas/trunk/Makefile.in
  cblas/trunk/cblas.patch

--+
 Makefile.in  |   52 
 PKGBUILD |   37 -
 cblas.patch  |   11 ---
 fPIC.patch   |   23 +++
 sdsdot.patch |   19 +++
 shared.patch |   11 +++
 6 files changed, 73 insertions(+), 80 deletions(-)

Deleted: Makefile.in
===
--- Makefile.in 2015-06-14 10:26:00 UTC (rev 135284)
+++ Makefile.in 2015-06-14 11:24:40 UTC (rev 135285)
@@ -1,52 +0,0 @@
-#
-# Makefile.LINUX
-#
-#
-# If you compile, change the name to Makefile.in.
-#
-#
- 
-#-
-# Shell
-#-
-
-SHELL = /bin/sh
-
-#-
-# Platform
-#-
-
-PLAT = LINUX
-
-#-
-# Libraries and includs
-#-
- 
-BLLIB = libblas.so
-CBDIR = $(PWD)
-CBLIBDIR = $(CBDIR)/lib
-CBLIB = $(CBLIBDIR)/libcblas.a
-CBSHLIB = $(CBLIBDIR)/libcblas.so
-
-#-
-# Compilers
-#-
-
-CC = gcc
-FC = gfortran
-LOADER = $(FC)
-
-#-
-# Flags for Compilers
-#-
-
-CFLAGS = -O3 -DADD_ -fPIC
-FFLAGS = -O3 -fPIC
-
-#-
-# Archive programs and flags
-#-
-
-ARCH = ar
-ARCHFLAGS = r
-RANLIB = echo

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 10:26:00 UTC (rev 135284)
+++ PKGBUILD2015-06-14 11:24:40 UTC (rev 135285)
@@ -5,17 +5,19 @@
 
 pkgname=cblas
 pkgver=3.5.0
-pkgrel=2
+pkgrel=3
 pkgdesc=C interface to BLAS
 url=http://www.netlib.org/blas;
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('blas')
-makedepends=('gcc-fortran')
-options=('staticlibs') # needed by fflas-ffpack
-source=('http://www.netlib.org/blas/blast-forum/cblas.tgz' 'cblas.patch' 
'Makefile.in' 'LICENSE')
+arch=(i686 x86_64)
+license=(custom)
+depends=(blas)
+makedepends=(gcc-fortran)
+options=(staticlibs) # needed by fflas-ffpack
+source=('http://www.netlib.org/blas/blast-forum/cblas.tgz' 'shared.patch' 
'fPIC.patch' 'sdsdot.patch' 'Makefile.in' 'LICENSE')
 md5sums=('1e8830f622d2112239a4a8a83b84209a'
  'e779fc195f8f48672656522bcfd642e4'
+ 'de4a0cf18b0e748e85d3305845f7f99b'
+ '733dcdded7ce1ec6d1ec01ceca200426'
  'a4dc51bcd46f80b921be46f1fa855f00'
  '38b6acb8ed5691d25863319d30a8b365')
 
@@ -22,14 +24,19 @@
 prepare() {
   cd CBLAS
 
-  /bin/cp $srcdir/Makefile.in .
-  patch -p0 -i $srcdir/cblas.patch
+# Compile with -fPIC
+  patch -p1 -i $srcdir/fPIC.patch
+# Compile shared lib
+  patch -p0 -i $srcdir/shared.patch
+# Fix missing variable in sdsdotstub
+  patch -p1 -i $srcdir/sdsdot.patch
 
-  install -d src/lib
+  cp Makefile.{LINUX,in}
 }
 
 build() {
   cd CBLAS
+
   make alllib
 }
 
@@ -37,13 +44,9 @@
   install -d $pkgdir/usr/lib
   install -d $pkgdir/usr/include
 
-  install -m755 CBLAS/src/lib/* $pkgdir/usr/lib
-  install -m644 CBLAS/include/cblas.h $pkgdir/usr/include
+  install -m644 CBLAS/lib/* $pkgdir/usr/lib/
+  install -m644 CBLAS/include/*.h $pkgdir/usr/include
 
-# fix permissions
-  chmod 644 $pkgdir/usr/lib/libcblas.a
-
-  install -m755 -d $pkgdir/usr/share/licenses/cblas
+  install -d $pkgdir/usr/share/licenses/cblas
   install -m644 LICENSE $pkgdir/usr/share/licenses/cblas/
 }
-

Deleted: cblas.patch
===
--- cblas.patch 2015-06-14 10:26:00 UTC (rev 135284)
+++ cblas.patch 2015-06-14 11:24:40 UTC (rev 135285)
@@ -1,11 +0,0 @@
 src/Makefile.orig  2011-01-05 11:39:24.0 +0100
-+++ src/Makefile   2011-01-05 11:42:20.0 +0100
-@@ -234,7 +234,7 @@
- all: $(alev)  
-   $(ARCH) $(ARCHFLAGS)  $(CBLIB) $(alev) 
-   $(RANLIB) $(CBLIB)
--
-+  $(CC) $(CCFLAGS) -shared -Wl,--allow-multiple-definition -o $(CBSHLIB) 
$(alev) -lm -lc -lblas
- 
- .SUFFIXES: .o .c .f
- 

Added: fPIC.patch

[arch-commits] Commit in cblas/repos (18 files)

2015-06-14 Thread Antonio Rojas
Date: Sunday, June 14, 2015 @ 13:28:35
  Author: arojas
Revision: 135287

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

Added:
  cblas/repos/community-i686/LICENSE
(from rev 135286, cblas/trunk/LICENSE)
  cblas/repos/community-i686/PKGBUILD
(from rev 135286, cblas/trunk/PKGBUILD)
  cblas/repos/community-i686/fPIC.patch
(from rev 135286, cblas/trunk/fPIC.patch)
  cblas/repos/community-i686/sdsdot.patch
(from rev 135286, cblas/trunk/sdsdot.patch)
  cblas/repos/community-i686/shared.patch
(from rev 135286, cblas/trunk/shared.patch)
  cblas/repos/community-x86_64/LICENSE
(from rev 135286, cblas/trunk/LICENSE)
  cblas/repos/community-x86_64/PKGBUILD
(from rev 135286, cblas/trunk/PKGBUILD)
  cblas/repos/community-x86_64/fPIC.patch
(from rev 135286, cblas/trunk/fPIC.patch)
  cblas/repos/community-x86_64/sdsdot.patch
(from rev 135286, cblas/trunk/sdsdot.patch)
  cblas/repos/community-x86_64/shared.patch
(from rev 135286, cblas/trunk/shared.patch)
Deleted:
  cblas/repos/community-i686/LICENSE
  cblas/repos/community-i686/Makefile.in
  cblas/repos/community-i686/PKGBUILD
  cblas/repos/community-i686/cblas.patch
  cblas/repos/community-x86_64/LICENSE
  cblas/repos/community-x86_64/Makefile.in
  cblas/repos/community-x86_64/PKGBUILD
  cblas/repos/community-x86_64/cblas.patch

---+
 /PKGBUILD |  102 
 community-i686/Makefile.in|   52 
 community-i686/PKGBUILD   |   49 ---
 community-i686/cblas.patch|   11 
 community-i686/fPIC.patch |   23 +
 community-i686/sdsdot.patch   |   19 +++
 community-i686/shared.patch   |   11 
 community-x86_64/Makefile.in  |   52 
 community-x86_64/PKGBUILD |   49 ---
 community-x86_64/cblas.patch  |   11 
 community-x86_64/fPIC.patch   |   23 +
 community-x86_64/sdsdot.patch |   19 +++
 community-x86_64/shared.patch |   11 
 13 files changed, 208 insertions(+), 224 deletions(-)

Deleted: community-i686/LICENSE
===
(Binary files differ)

Copied: cblas/repos/community-i686/LICENSE (from rev 135286, 
cblas/trunk/LICENSE)
===
(Binary files differ)

Deleted: community-i686/Makefile.in
===
--- community-i686/Makefile.in  2015-06-14 11:27:59 UTC (rev 135286)
+++ community-i686/Makefile.in  2015-06-14 11:28:35 UTC (rev 135287)
@@ -1,52 +0,0 @@
-#
-# Makefile.LINUX
-#
-#
-# If you compile, change the name to Makefile.in.
-#
-#
- 
-#-
-# Shell
-#-
-
-SHELL = /bin/sh
-
-#-
-# Platform
-#-
-
-PLAT = LINUX
-
-#-
-# Libraries and includs
-#-
- 
-BLLIB = libblas.so
-CBDIR = $(PWD)
-CBLIBDIR = $(CBDIR)/lib
-CBLIB = $(CBLIBDIR)/libcblas.a
-CBSHLIB = $(CBLIBDIR)/libcblas.so
-
-#-
-# Compilers
-#-
-
-CC = gcc
-FC = gfortran
-LOADER = $(FC)
-
-#-
-# Flags for Compilers
-#-
-
-CFLAGS = -O3 -DADD_ -fPIC
-FFLAGS = -O3 -fPIC
-
-#-
-# Archive programs and flags
-#-
-
-ARCH = ar
-ARCHFLAGS = r
-RANLIB = echo

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-14 11:27:59 UTC (rev 135286)
+++ community-i686/PKGBUILD 2015-06-14 11:28:35 UTC (rev 135287)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Andreas B. Wagner andreasbwag...@pointfree.net
-# Contributor: Sebastien Binet binet@farnsworthpkgname=cblas
-
-pkgname=cblas
-pkgver=3.5.0
-pkgrel=2
-pkgdesc=C interface to BLAS
-url=http://www.netlib.org/blas;
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('blas')
-makedepends=('gcc-fortran')
-options=('staticlibs') # needed by fflas-ffpack
-source=('http://www.netlib.org/blas/blast-forum/cblas.tgz' 'cblas.patch' 
'Makefile.in' 'LICENSE')
-md5sums=('1e8830f622d2112239a4a8a83b84209a'
- 

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

2015-06-14 Thread Antonio Rojas
Date: Sunday, June 14, 2015 @ 13:27:59
  Author: arojas
Revision: 135286

Fix sources

Modified:
  cblas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 11:24:40 UTC (rev 135285)
+++ PKGBUILD2015-06-14 11:27:59 UTC (rev 135286)
@@ -13,12 +13,11 @@
 depends=(blas)
 makedepends=(gcc-fortran)
 options=(staticlibs) # needed by fflas-ffpack
-source=('http://www.netlib.org/blas/blast-forum/cblas.tgz' 'shared.patch' 
'fPIC.patch' 'sdsdot.patch' 'Makefile.in' 'LICENSE')
+source=('http://www.netlib.org/blas/blast-forum/cblas.tgz' 'shared.patch' 
'fPIC.patch' 'sdsdot.patch' 'LICENSE')
 md5sums=('1e8830f622d2112239a4a8a83b84209a'
  'e779fc195f8f48672656522bcfd642e4'
  'de4a0cf18b0e748e85d3305845f7f99b'
  '733dcdded7ce1ec6d1ec01ceca200426'
- 'a4dc51bcd46f80b921be46f1fa855f00'
  '38b6acb8ed5691d25863319d30a8b365')
 
 prepare() {


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

2015-06-14 Thread Felix Yan
Date: Sunday, June 14, 2015 @ 14:52:12
  Author: fyan
Revision: 135288

upgpkg: skk-jisyo 20150614-1

Modified:
  skk-jisyo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 11:28:35 UTC (rev 135287)
+++ PKGBUILD2015-06-14 12:52:12 UTC (rev 135288)
@@ -3,7 +3,7 @@
 # Contributor: jeneshicc jenesh...@gmail.com
 
 pkgname=skk-jisyo
-pkgver=20150607
+pkgver=20150614
 pkgrel=1
 pkgdesc=Dictionaries for the SKK Japanese input method
 arch=('any')
@@ -16,7 +16,7 @@
 
SKK-JISYO.geo.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.geo.gz
 
SKK-JISYO.propernoun.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.propernoun.gz
 
SKK-JISYO.station.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.station.gz)
-md5sums=('04e68cfd567d9f2c50a8300c6c0ec213'
+md5sums=('1d49c2ccb9d59a344c7373beabcdf1b1'
  'e24063430ffc2b7bc85ea297ee134f5d'
  '8f8b9ddbdb2f3bcfb68876cbfa921cf4'
  '53407c1d74036759a7db1fa07dd8e5d4'


[arch-commits] Commit in skk-jisyo/repos/community-any (4 files)

2015-06-14 Thread Felix Yan
Date: Sunday, June 14, 2015 @ 14:52:35
  Author: fyan
Revision: 135289

archrelease: copy trunk to community-any

Added:
  skk-jisyo/repos/community-any/PKGBUILD
(from rev 135288, skk-jisyo/trunk/PKGBUILD)
  skk-jisyo/repos/community-any/skk-jisyo.install
(from rev 135288, skk-jisyo/trunk/skk-jisyo.install)
Deleted:
  skk-jisyo/repos/community-any/PKGBUILD
  skk-jisyo/repos/community-any/skk-jisyo.install

---+
 PKGBUILD  |   62 ++--
 skk-jisyo.install |   20 
 2 files changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-14 12:52:12 UTC (rev 135288)
+++ PKGBUILD2015-06-14 12:52:35 UTC (rev 135289)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: jeneshicc jenesh...@gmail.com
-
-pkgname=skk-jisyo
-pkgver=20150607
-pkgrel=1
-pkgdesc=Dictionaries for the SKK Japanese input method
-arch=('any')
-url=http://openlab.ring.gr.jp/skk/;
-optdepends=('skktools: Dictionary maintenabce tools')
-license=('GPL')
-install=${pkgname}.install
-source=(SKK-JISYO.L.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.L.gz
-
SKK-JISYO.jinmei.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.jinmei.gz
-
SKK-JISYO.geo.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.geo.gz
-
SKK-JISYO.propernoun.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.propernoun.gz
-
SKK-JISYO.station.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.station.gz)
-md5sums=('04e68cfd567d9f2c50a8300c6c0ec213'
- 'e24063430ffc2b7bc85ea297ee134f5d'
- '8f8b9ddbdb2f3bcfb68876cbfa921cf4'
- '53407c1d74036759a7db1fa07dd8e5d4'
- 'efb7f415213e6bdcdffc3a9a2e262f19')
-
-package() {
-  cd $srcdir
-
-  for t in L jinmei geo propernoun station; do
-install -D -m 644 $srcdir/SKK-JISYO.$t.$pkgver 
$pkgdir/usr/share/skk/SKK-JISYO.$t
-  done
-}

Copied: skk-jisyo/repos/community-any/PKGBUILD (from rev 135288, 
skk-jisyo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-14 12:52:35 UTC (rev 135289)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: jeneshicc jenesh...@gmail.com
+
+pkgname=skk-jisyo
+pkgver=20150614
+pkgrel=1
+pkgdesc=Dictionaries for the SKK Japanese input method
+arch=('any')
+url=http://openlab.ring.gr.jp/skk/;
+optdepends=('skktools: Dictionary maintenabce tools')
+license=('GPL')
+install=${pkgname}.install
+source=(SKK-JISYO.L.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.L.gz
+
SKK-JISYO.jinmei.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.jinmei.gz
+
SKK-JISYO.geo.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.geo.gz
+
SKK-JISYO.propernoun.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.propernoun.gz
+
SKK-JISYO.station.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.station.gz)
+md5sums=('1d49c2ccb9d59a344c7373beabcdf1b1'
+ 'e24063430ffc2b7bc85ea297ee134f5d'
+ '8f8b9ddbdb2f3bcfb68876cbfa921cf4'
+ '53407c1d74036759a7db1fa07dd8e5d4'
+ 'efb7f415213e6bdcdffc3a9a2e262f19')
+
+package() {
+  cd $srcdir
+
+  for t in L jinmei geo propernoun station; do
+install -D -m 644 $srcdir/SKK-JISYO.$t.$pkgver 
$pkgdir/usr/share/skk/SKK-JISYO.$t
+  done
+}

Deleted: skk-jisyo.install
===
--- skk-jisyo.install   2015-06-14 12:52:12 UTC (rev 135288)
+++ skk-jisyo.install   2015-06-14 12:52:35 UTC (rev 135289)
@@ -1,10 +0,0 @@
-post_install() {
-  echo  If you want to merge dictionaries, use skktools
-  echo  For example, merging SKK-JISYO.L and SKK-JISYO.geo into 
SKK-JISYO.XL:
-  echo  % skkdic-expr2 SKK-JISYO.L + SKK-JISYO.geo  SKK-JISYO.XL
-}
-
-post_upgrade() {
-  post_install $1
-}
-# vim:set ts=2 sw=2 et:

Copied: skk-jisyo/repos/community-any/skk-jisyo.install (from rev 135288, 
skk-jisyo/trunk/skk-jisyo.install)
===
--- skk-jisyo.install   (rev 0)
+++ skk-jisyo.install   2015-06-14 12:52:35 UTC (rev 135289)
@@ -0,0 +1,10 @@
+post_install() {
+  echo  If you want to merge dictionaries, use skktools
+  echo  For example, merging SKK-JISYO.L and SKK-JISYO.geo into 
SKK-JISYO.XL:
+  echo  % skkdic-expr2 SKK-JISYO.L + SKK-JISYO.geo  SKK-JISYO.XL
+}
+
+post_upgrade() {
+  post_install $1
+}
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in ruby-mime-types/repos/community-any (PKGBUILD PKGBUILD)

2015-06-14 Thread Maxime Gauduin
Date: Sunday, June 14, 2015 @ 10:57:50
  Author: alucryd
Revision: 135283

archrelease: copy trunk to community-any

Added:
  ruby-mime-types/repos/community-any/PKGBUILD
(from rev 135282, ruby-mime-types/trunk/PKGBUILD)
Deleted:
  ruby-mime-types/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-14 08:57:37 UTC (rev 135282)
+++ PKGBUILD2015-06-14 08:57:50 UTC (rev 135283)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@archlinux.org
-# Contributor: Alexsandr Pavlov ki...@mail.ru
-
-pkgname=ruby-mime-types
-pkgver=2.4.3
-pkgrel=2
-pkgdesc='MIME Content-Type database'
-arch=('any')
-url='http://mime-types.rubyforge.org'
-license=('GPL2' 'MIT' 'PerlArtistic')
-depends=('ruby')
-options=('!emptydirs')
-source=(http://rubygems.org/downloads/mime-types-${pkgver}.gem;)
-noextract=(mime-types-${pkgver}.gem)
-sha256sums=('38f29a89a273d15bfb99e839c6fe5cf7c463f223dd7ac5ee3c9287b1acd6d19a')
-
-package() {
-  local _gemdir=$(ruby -e'puts Gem.default_dir')
-
-  gem install --ignore-dependencies --no-user-install -N -i 
${pkgdir}/${_gemdir} mime-types-${pkgver}.gem
-  find ${pkgdir} -type f -name *.gem -delete
-
-  install -dm 755 ${pkgdir}/usr/share/licenses/ruby-mime-types
-  ln -s ${_gemdir}/gems/mime-types-${pkgver}/Licence.rdoc 
${pkgdir}/usr/share/licenses/ruby-mime-types/
-  ln -s ${_gemdir}/gems/mime-types-${pkgver}/docs/COPYING.txt 
${pkgdir}/usr/share/licenses/ruby-mime-types/
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-mime-types/repos/community-any/PKGBUILD (from rev 135282, 
ruby-mime-types/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-14 08:57:50 UTC (rev 135283)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
+# Contributor: Alexsandr Pavlov ki...@mail.ru
+
+pkgname=ruby-mime-types
+pkgver=2.6.1
+pkgrel=2
+pkgdesc='MIME Content-Type database'
+arch=('any')
+url='http://mime-types.rubyforge.org'
+license=('GPL2' 'MIT' 'PerlArtistic')
+depends=('ruby')
+options=('!emptydirs')
+source=(http://rubygems.org/downloads/mime-types-${pkgver}.gem;)
+noextract=(mime-types-${pkgver}.gem)
+sha256sums=('5b16d655397aa5cd8b4108494f60f64b4e18a2c92dc9257ff74ec64284dbd9ee')
+
+package() {
+  local _gemdir=$(ruby -e'puts Gem.default_dir')
+
+  gem install --ignore-dependencies --no-user-install -N -i 
${pkgdir}/${_gemdir} mime-types-${pkgver}.gem
+  find ${pkgdir} -type f -name *.gem -delete
+
+  install -dm 755 ${pkgdir}/usr/share/licenses/ruby-mime-types
+  ln -s ${_gemdir}/gems/mime-types-${pkgver}/Licence.rdoc 
${pkgdir}/usr/share/licenses/ruby-mime-types/
+  ln -s ${_gemdir}/gems/mime-types-${pkgver}/docs/COPYING.txt 
${pkgdir}/usr/share/licenses/ruby-mime-types/
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in ruby-mime-types/trunk (PKGBUILD)

2015-06-14 Thread Maxime Gauduin
Date: Sunday, June 14, 2015 @ 10:57:37
  Author: alucryd
Revision: 135282

upgpkg: ruby-mime-types 2.6.1-2

Modified:
  ruby-mime-types/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-13 19:45:48 UTC (rev 135281)
+++ PKGBUILD2015-06-14 08:57:37 UTC (rev 135282)
@@ -3,7 +3,7 @@
 # Contributor: Alexsandr Pavlov ki...@mail.ru
 
 pkgname=ruby-mime-types
-pkgver=2.4.3
+pkgver=2.6.1
 pkgrel=2
 pkgdesc='MIME Content-Type database'
 arch=('any')
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 source=(http://rubygems.org/downloads/mime-types-${pkgver}.gem;)
 noextract=(mime-types-${pkgver}.gem)
-sha256sums=('38f29a89a273d15bfb99e839c6fe5cf7c463f223dd7ac5ee3c9287b1acd6d19a')
+sha256sums=('5b16d655397aa5cd8b4108494f60f64b4e18a2c92dc9257ff74ec64284dbd9ee')
 
 package() {
   local _gemdir=$(ruby -e'puts Gem.default_dir')


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:09:08
  Author: foutrelis
Revision: 240753

upgpkg: gnome-perl 1.045-3

Perl 5.22 rebuild.

Modified:
  gnome-perl/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:06:29 UTC (rev 240752)
+++ PKGBUILD2015-06-14 15:09:08 UTC (rev 240753)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-perl
 pkgver=1.045
-pkgrel=2
+pkgrel=3
 pkgdesc=Perl bindings for libgnome
 arch=('i686' 'x86_64')
 license=('LGPL')
@@ -23,4 +23,12 @@
 package() {
   cd Gnome2-$pkgver
   make DESTDIR=${pkgdir} install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:33:57
  Author: foutrelis
Revision: 135294

upgpkg: perl-xml-fast 0.11-6

Perl 5.22 rebuild.

Modified:
  perl-xml-fast/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:33:13 UTC (rev 135293)
+++ PKGBUILD2015-06-14 15:33:57 UTC (rev 135294)
@@ -4,7 +4,7 @@
 
 pkgname=perl-xml-fast
 pkgver=0.11
-pkgrel=5
+pkgrel=6
 pkgdesc=Simple and very fast XML to hash conversion.
 arch=('x86_64' 'i686')
 url=http://search.cpan.org/dist/XML-Fast/;
@@ -29,4 +29,12 @@
 
   find ${pkgdir} -name '.packlist' -delete
   find ${pkgdir} -name '*.pod' -delete
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:34:05
  Author: foutrelis
Revision: 135295

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

Added:
  perl-xml-fast/repos/community-staging-i686/
  perl-xml-fast/repos/community-staging-i686/PKGBUILD
(from rev 135294, perl-xml-fast/trunk/PKGBUILD)
  perl-xml-fast/repos/community-staging-x86_64/
  perl-xml-fast/repos/community-staging-x86_64/PKGBUILD
(from rev 135294, perl-xml-fast/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   40 
 community-staging-x86_64/PKGBUILD |   40 
 2 files changed, 80 insertions(+)

Copied: perl-xml-fast/repos/community-staging-i686/PKGBUILD (from rev 135294, 
perl-xml-fast/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-14 15:34:05 UTC (rev 135295)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: trizen .= x...@gmail.com
+
+pkgname=perl-xml-fast
+pkgver=0.11
+pkgrel=6
+pkgdesc=Simple and very fast XML to hash conversion.
+arch=('x86_64' 'i686')
+url=http://search.cpan.org/dist/XML-Fast/;
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/M/MO/MONS/XML-Fast-${pkgver}.tar.gz;)
+md5sums=('a2985cc2f328cf9eda6ad75c3f40f6b3')
+
+build() {
+  cd ${srcdir}/XML-Fast-${pkgver}
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+
+  make
+}
+
+package() {
+  cd ${srcdir}/XML-Fast-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Copied: perl-xml-fast/repos/community-staging-x86_64/PKGBUILD (from rev 135294, 
perl-xml-fast/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-14 15:34:05 UTC (rev 135295)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: trizen .= x...@gmail.com
+
+pkgname=perl-xml-fast
+pkgver=0.11
+pkgrel=6
+pkgdesc=Simple and very fast XML to hash conversion.
+arch=('x86_64' 'i686')
+url=http://search.cpan.org/dist/XML-Fast/;
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/M/MO/MONS/XML-Fast-${pkgver}.tar.gz;)
+md5sums=('a2985cc2f328cf9eda6ad75c3f40f6b3')
+
+build() {
+  cd ${srcdir}/XML-Fast-${pkgver}
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+
+  make
+}
+
+package() {
+  cd ${srcdir}/XML-Fast-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:32:13
  Author: foutrelis
Revision: 135291

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

Added:
  perl-linux-pid/repos/community-staging-i686/
  perl-linux-pid/repos/community-staging-i686/PKGBUILD
(from rev 135290, perl-linux-pid/trunk/PKGBUILD)
  perl-linux-pid/repos/community-staging-x86_64/
  perl-linux-pid/repos/community-staging-x86_64/PKGBUILD
(from rev 135290, perl-linux-pid/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   50 
 community-staging-x86_64/PKGBUILD |   50 
 2 files changed, 100 insertions(+)

Copied: perl-linux-pid/repos/community-staging-i686/PKGBUILD (from rev 135290, 
perl-linux-pid/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-14 15:32:13 UTC (rev 135291)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Generator  : CPANPLUS::Dist::Arch 1.12
+
+pkgname='perl-linux-pid'
+pkgver=0.04
+pkgrel=5
+pkgdesc=Interface to Linux getpp?id functions
+arch=('i686' 'x86_64')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl')
+url='http://search.cpan.org/dist/Linux-Pid'
+source=(http://search.cpan.org/CPAN/authors/id/R/RG/RGARCIA/Linux-Pid-$pkgver.tar.gz;)
+md5sums=('130c4d299f827abf1f2285fddf03fccb')
+
+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 Linux-Pid-$pkgver
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd Linux-Pid-$pkgver
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+make test
+  )
+}
+
+package() {
+  cd Linux-Pid-$pkgver
+  make DESTDIR=$pkgdir install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}
+

Copied: perl-linux-pid/repos/community-staging-x86_64/PKGBUILD (from rev 
135290, perl-linux-pid/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-14 15:32:13 UTC (rev 135291)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Generator  : CPANPLUS::Dist::Arch 1.12
+
+pkgname='perl-linux-pid'
+pkgver=0.04
+pkgrel=5
+pkgdesc=Interface to Linux getpp?id functions
+arch=('i686' 'x86_64')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl')
+url='http://search.cpan.org/dist/Linux-Pid'
+source=(http://search.cpan.org/CPAN/authors/id/R/RG/RGARCIA/Linux-Pid-$pkgver.tar.gz;)
+md5sums=('130c4d299f827abf1f2285fddf03fccb')
+
+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 Linux-Pid-$pkgver
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd Linux-Pid-$pkgver
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+make test
+  )
+}
+
+package() {
+  cd Linux-Pid-$pkgver
+  make DESTDIR=$pkgdir install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}
+


[arch-commits] Commit in perl-term-readline-gnu/repos (6 files)

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:33:13
  Author: foutrelis
Revision: 135293

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

Added:
  perl-term-readline-gnu/repos/community-staging-i686/
  perl-term-readline-gnu/repos/community-staging-i686/PKGBUILD
(from rev 135292, perl-term-readline-gnu/trunk/PKGBUILD)
  
perl-term-readline-gnu/repos/community-staging-i686/termcap-bad-ncurses-good.patch
(from rev 135292, 
perl-term-readline-gnu/trunk/termcap-bad-ncurses-good.patch)
  perl-term-readline-gnu/repos/community-staging-x86_64/
  perl-term-readline-gnu/repos/community-staging-x86_64/PKGBUILD
(from rev 135292, perl-term-readline-gnu/trunk/PKGBUILD)
  
perl-term-readline-gnu/repos/community-staging-x86_64/termcap-bad-ncurses-good.patch
(from rev 135292, 
perl-term-readline-gnu/trunk/termcap-bad-ncurses-good.patch)

-+
 community-staging-i686/PKGBUILD |   54 ++
 community-staging-i686/termcap-bad-ncurses-good.patch   |   18 
 community-staging-x86_64/PKGBUILD   |   54 ++
 community-staging-x86_64/termcap-bad-ncurses-good.patch |   18 
 4 files changed, 144 insertions(+)

Copied: perl-term-readline-gnu/repos/community-staging-i686/PKGBUILD (from rev 
135292, perl-term-readline-gnu/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-14 15:33:13 UTC (rev 135293)
@@ -0,0 +1,54 @@
+# $Id$
+# CPAN Name  : Term-ReadLine-Gnu
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: jason ryan jasonwr...@gmail.com
+# Contributor: AUR Perl aurp...@juster.info
+# Generator  : CPANPLUS::Dist::Arch 1.15
+
+pkgname=perl-term-readline-gnu
+pkgver=1.26
+pkgrel=2
+pkgdesc=GNU Readline XS library wrapper
+arch=('i686' 'x86_64')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl=5.7')
+url='http://search.cpan.org/dist/Term-ReadLine-Gnu'
+source=(http://search.cpan.org/CPAN/authors/id/H/HA/HAYASHI/Term-ReadLine-Gnu-${pkgver}.tar.gz;
+'termcap-bad-ncurses-good.patch')
+md5sums=('0792d93dc22608132c94928121d51482'
+ 'a000706b89792f822b5ec20baa370910')
+
+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 ${srcdir}/Term-ReadLine-Gnu-$pkgver
+patch --forward -p1  ${srcdir}/termcap-bad-ncurses-good.patch
+/usr/bin/perl Makefile.PL
+make
+}
+
+check() {
+  cd ${srcdir}/Term-ReadLine-Gnu-$pkgver
+  export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+make test
+}
+
+package() {
+  cd ${srcdir}/Term-ReadLine-Gnu-$pkgver
+  make pure_install PERL_INSTALL_ROOT=$pkgdir
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}
+

Copied: 
perl-term-readline-gnu/repos/community-staging-i686/termcap-bad-ncurses-good.patch
 (from rev 135292, perl-term-readline-gnu/trunk/termcap-bad-ncurses-good.patch)
===
--- community-staging-i686/termcap-bad-ncurses-good.patch   
(rev 0)
+++ community-staging-i686/termcap-bad-ncurses-good.patch   2015-06-14 
15:33:13 UTC (rev 135293)
@@ -0,0 +1,18 @@
+--- Term-ReadLine-Gnu-1.20/Makefile.PL 2010-05-02 06:37:55.0 -0400
 Term-ReadLine-Gnu-1.20-patched/Makefile.PL 2011-07-30 16:16:54.0 
-0400
+@@ -58,8 +58,13 @@
+ # know why AIX prefers curses.
+ # libtermcap.a on HPUX cannot be used for dynamically linked binary.
+ # Old Cygwin may require setting false (0).
+-my $PREFER_CURSES = $Config{osname} eq 'aix' || $Config{osname} eq 'hpux'
+-  || $Config{osname} eq 'cygwin';
++# my $PREFER_CURSES = $Config{osname} eq 'aix' || $Config{osname} eq 
'hpux'
++  #   || $Config{osname} eq 'cygwin';
++
++# Hack for ArchLinux by Justin Davis aurp...@juster.us
++# Don't use termcap! readline is linked with ncurses so I know it's
++# available. termcap causes this module to crash for some people.
++my $PREFER_CURSES = 1;
+ my $TERMCAP_LIB = (! $PREFER_CURSES  search_lib('-ltermcap'))
+   || search_lib('-lncurses')
+   || search_lib('-lcurses');

Copied: perl-term-readline-gnu/repos/community-staging-x86_64/PKGBUILD (from 
rev 135292, perl-term-readline-gnu/trunk/PKGBUILD)

[arch-commits] Commit in perl-term-readline-gnu/trunk (PKGBUILD)

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:33:06
  Author: foutrelis
Revision: 135292

upgpkg: perl-term-readline-gnu 1.26-2

Perl 5.22 rebuild.

Modified:
  perl-term-readline-gnu/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:32:13 UTC (rev 135291)
+++ PKGBUILD2015-06-14 15:33:06 UTC (rev 135292)
@@ -7,7 +7,7 @@
 
 pkgname=perl-term-readline-gnu
 pkgver=1.26
-pkgrel=1
+pkgrel=2
 pkgdesc=GNU Readline XS library wrapper
 arch=('i686' 'x86_64')
 license=('PerlArtistic' 'GPL')
@@ -42,5 +42,13 @@
   cd ${srcdir}/Term-ReadLine-Gnu-$pkgver
   make pure_install PERL_INSTALL_ROOT=$pkgdir
   find $pkgdir -name .packlist -o -name perllocal.pod -delete
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }
 


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:45:26
  Author: foutrelis
Revision: 135300

upgpkg: mod_perl 2.0.8-5

Perl 5.22 rebuild.

Modified:
  mod_perl/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:44:50 UTC (rev 135299)
+++ PKGBUILD2015-06-14 15:45:26 UTC (rev 135300)
@@ -5,7 +5,7 @@
 
 pkgname=mod_perl
 pkgver=2.0.8
-pkgrel=4
+pkgrel=5
 pkgdesc='Apache module that embeds the Perl interpreter within the server'
 arch=(i686 x86_64)
 url='http://perl.apache.org/'
@@ -35,4 +35,12 @@
 package() {
   cd mod_perl
   make install DESTDIR=$pkgdir
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:45:33
  Author: foutrelis
Revision: 135301

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

Added:
  mod_perl/repos/community-staging-i686/
  mod_perl/repos/community-staging-i686/PKGBUILD
(from rev 135300, mod_perl/trunk/PKGBUILD)
  mod_perl/repos/community-staging-x86_64/
  mod_perl/repos/community-staging-x86_64/PKGBUILD
(from rev 135300, mod_perl/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   46 
 community-staging-x86_64/PKGBUILD |   46 
 2 files changed, 92 insertions(+)

Copied: mod_perl/repos/community-staging-i686/PKGBUILD (from rev 135300, 
mod_perl/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-14 15:45:33 UTC (rev 135301)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer:
+# Contributor: Firmicus francois.archlinux.org
+# Contributor: Tom K t...@runbox.com
+
+pkgname=mod_perl
+pkgver=2.0.8
+pkgrel=5
+pkgdesc='Apache module that embeds the Perl interpreter within the server'
+arch=(i686 x86_64)
+url='http://perl.apache.org/'
+license=(APACHE)
+depends=(perl apache db apr-util perl-linux-pid)
+makedepends=(subversion)
+options=(!emptydirs)
+# upstream from http://apache.org/dist/perl/$pkgname-$pkgver.tar.gz is not 
ready for apache 2.4 yet
+# See the discussion 
http://mail-archives.apache.org/mod_mbox/perl-modperl/201402.mbox/thread
+# But trunk seems almost ready for Apache 2.4
+# http://mail-archives.apache.org/mod_mbox/perl-modperl/201408.mbox/browser
+source=(mod_perl::svn+http://svn.apache.org/repos/asf/perl/modperl/trunk#revision=1654615)
+sha256sums=('SKIP')
+
+build() {
+  cd mod_perl
+  perl Makefile.PL INSTALLDIRS=vendor MP_APXS=/usr/bin/apxs
+  make
+}
+
+check() {
+  cd mod_perl
+  # tests are very flaky
+  # make test
+}
+
+package() {
+  cd mod_perl
+  make install DESTDIR=$pkgdir
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Copied: mod_perl/repos/community-staging-x86_64/PKGBUILD (from rev 135300, 
mod_perl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-14 15:45:33 UTC (rev 135301)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer:
+# Contributor: Firmicus francois.archlinux.org
+# Contributor: Tom K t...@runbox.com
+
+pkgname=mod_perl
+pkgver=2.0.8
+pkgrel=5
+pkgdesc='Apache module that embeds the Perl interpreter within the server'
+arch=(i686 x86_64)
+url='http://perl.apache.org/'
+license=(APACHE)
+depends=(perl apache db apr-util perl-linux-pid)
+makedepends=(subversion)
+options=(!emptydirs)
+# upstream from http://apache.org/dist/perl/$pkgname-$pkgver.tar.gz is not 
ready for apache 2.4 yet
+# See the discussion 
http://mail-archives.apache.org/mod_mbox/perl-modperl/201402.mbox/thread
+# But trunk seems almost ready for Apache 2.4
+# http://mail-archives.apache.org/mod_mbox/perl-modperl/201408.mbox/browser
+source=(mod_perl::svn+http://svn.apache.org/repos/asf/perl/modperl/trunk#revision=1654615)
+sha256sums=('SKIP')
+
+build() {
+  cd mod_perl
+  perl Makefile.PL INSTALLDIRS=vendor MP_APXS=/usr/bin/apxs
+  make
+}
+
+check() {
+  cd mod_perl
+  # tests are very flaky
+  # make test
+}
+
+package() {
+  cd mod_perl
+  make install DESTDIR=$pkgdir
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:04:47
  Author: foutrelis
Revision: 240748

upgpkg: gnome-vfs-perl 1.082-3

Perl 5.22 rebuild.

Modified:
  gnome-vfs-perl/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:03:28 UTC (rev 240747)
+++ PKGBUILD2015-06-14 15:04:47 UTC (rev 240748)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-vfs-perl
 pkgver=1.082
-pkgrel=2
+pkgrel=3
 pkgdesc=Gnome2-VFS perl bindings for gnome-vfs
 arch=(i686 x86_64)
 license=('LGPL')
@@ -23,4 +23,12 @@
 package() {
   cd Gnome2-VFS-$pkgver
   make DESTDIR=${pkgdir} install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:04:53
  Author: foutrelis
Revision: 240749

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

Added:
  gnome-vfs-perl/repos/staging-i686/
  gnome-vfs-perl/repos/staging-i686/PKGBUILD
(from rev 240748, gnome-vfs-perl/trunk/PKGBUILD)
  gnome-vfs-perl/repos/staging-x86_64/
  gnome-vfs-perl/repos/staging-x86_64/PKGBUILD
(from rev 240748, gnome-vfs-perl/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   34 ++
 staging-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: gnome-vfs-perl/repos/staging-i686/PKGBUILD (from rev 240748, 
gnome-vfs-perl/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-06-14 15:04:53 UTC (rev 240749)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gnome-vfs-perl
+pkgver=1.082
+pkgrel=3
+pkgdesc=Gnome2-VFS perl bindings for gnome-vfs
+arch=(i686 x86_64)
+license=('LGPL')
+url=http://gtk2-perl.sourceforge.net/;
+makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
+depends=('gtk2-perl' 'gnome-vfs' 'perl')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Gnome2-VFS-${pkgver}.tar.gz)
+md5sums=('374e7d611d080d893bb3da9d40c64733')
+
+build() {
+  cd Gnome2-VFS-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd Gnome2-VFS-$pkgver
+  make DESTDIR=${pkgdir} install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Copied: gnome-vfs-perl/repos/staging-x86_64/PKGBUILD (from rev 240748, 
gnome-vfs-perl/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-06-14 15:04:53 UTC (rev 240749)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gnome-vfs-perl
+pkgver=1.082
+pkgrel=3
+pkgdesc=Gnome2-VFS perl bindings for gnome-vfs
+arch=(i686 x86_64)
+license=('LGPL')
+url=http://gtk2-perl.sourceforge.net/;
+makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
+depends=('gtk2-perl' 'gnome-vfs' 'perl')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Gnome2-VFS-${pkgver}.tar.gz)
+md5sums=('374e7d611d080d893bb3da9d40c64733')
+
+build() {
+  cd Gnome2-VFS-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd Gnome2-VFS-$pkgver
+  make DESTDIR=${pkgdir} install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:03:28
  Author: foutrelis
Revision: 240747

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

Added:
  glade-perl/repos/staging-i686/
  glade-perl/repos/staging-i686/PKGBUILD
(from rev 240746, glade-perl/trunk/PKGBUILD)
  glade-perl/repos/staging-x86_64/
  glade-perl/repos/staging-x86_64/PKGBUILD
(from rev 240746, glade-perl/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   35 +++
 staging-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: glade-perl/repos/staging-i686/PKGBUILD (from rev 240746, 
glade-perl/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-06-14 15:03:28 UTC (rev 240747)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=glade-perl
+_realname=Gtk2-GladeXML
+pkgver=1.007
+pkgrel=9
+pkgdesc=Gtk2-GladeXML perl bindings for glade 2.x
+arch=(i686 x86_64)
+license=('LGPL')
+url=http://gtk2-perl.sourceforge.net/;
+makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
+depends=('libglade' 'gtk2-perl' 'perl')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/${_realname}-${pkgver}.tar.gz)
+md5sums=('e6ca234e2a9f0221263acd2a593c583b')
+
+build() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Copied: glade-perl/repos/staging-x86_64/PKGBUILD (from rev 240746, 
glade-perl/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-06-14 15:03:28 UTC (rev 240747)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=glade-perl
+_realname=Gtk2-GladeXML
+pkgver=1.007
+pkgrel=9
+pkgdesc=Gtk2-GladeXML perl bindings for glade 2.x
+arch=(i686 x86_64)
+license=('LGPL')
+url=http://gtk2-perl.sourceforge.net/;
+makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
+depends=('libglade' 'gtk2-perl' 'perl')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/${_realname}-${pkgver}.tar.gz)
+md5sums=('e6ca234e2a9f0221263acd2a593c583b')
+
+build() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:32:06
  Author: foutrelis
Revision: 135290

upgpkg: perl-linux-pid 0.04-5

Perl 5.22 rebuild.

Modified:
  perl-linux-pid/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 12:52:35 UTC (rev 135289)
+++ PKGBUILD2015-06-14 15:32:06 UTC (rev 135290)
@@ -5,7 +5,7 @@
 
 pkgname='perl-linux-pid'
 pkgver=0.04
-pkgrel=4
+pkgrel=5
 pkgdesc=Interface to Linux getpp?id functions
 arch=('i686' 'x86_64')
 license=('PerlArtistic' 'GPL')
@@ -38,5 +38,13 @@
 package() {
   cd Linux-Pid-$pkgver
   make DESTDIR=$pkgdir install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }
 


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:00:56
  Author: foutrelis
Revision: 240744

upgpkg: gconf-perl 1.044-10

Perl 5.22 rebuild.

Modified:
  gconf-perl/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 01:16:33 UTC (rev 240743)
+++ PKGBUILD2015-06-14 15:00:56 UTC (rev 240744)
@@ -3,7 +3,7 @@
 
 pkgname=gconf-perl
 pkgver=1.044
-pkgrel=9
+pkgrel=10
 pkgdesc=Gnome2-GConf perl bindings for gconf
 arch=('i686' 'x86_64')
 license=('LGPL')
@@ -36,4 +36,12 @@
 package() {
   cd Gnome2-GConf-$pkgver
   make DESTDIR=${pkgdir} install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:01:05
  Author: foutrelis
Revision: 240745

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

Added:
  gconf-perl/repos/staging-i686/
  gconf-perl/repos/staging-i686/PKGBUILD
(from rev 240744, gconf-perl/trunk/PKGBUILD)
  gconf-perl/repos/staging-i686/disable-orbit.patch
(from rev 240744, gconf-perl/trunk/disable-orbit.patch)
  gconf-perl/repos/staging-x86_64/
  gconf-perl/repos/staging-x86_64/PKGBUILD
(from rev 240744, gconf-perl/trunk/PKGBUILD)
  gconf-perl/repos/staging-x86_64/disable-orbit.patch
(from rev 240744, gconf-perl/trunk/disable-orbit.patch)

+
 staging-i686/PKGBUILD  |   47 +++
 staging-i686/disable-orbit.patch   |   30 ++
 staging-x86_64/PKGBUILD|   47 +++
 staging-x86_64/disable-orbit.patch |   30 ++
 4 files changed, 154 insertions(+)

Copied: gconf-perl/repos/staging-i686/PKGBUILD (from rev 240744, 
gconf-perl/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-06-14 15:01:05 UTC (rev 240745)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gconf-perl
+pkgver=1.044
+pkgrel=10
+pkgdesc=Gnome2-GConf perl bindings for gconf
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gtk2-perl.sourceforge.net/;
+makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
+checkdepends=('libx11')
+depends=('glib-perl' 'gconf' 'perl')
+options=(!emptydirs)
+source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Gnome2-GConf-${pkgver}.tar.gz
+disable-orbit.patch)
+md5sums=('ea386003b18f067524833b0eeb271330'
+ '14852fc936ce7b552eb204913d55fd1c')
+
+prepare() {
+  cd Gnome2-GConf-$pkgver
+  patch -Np1 -i ../disable-orbit.patch
+}
+
+build() {
+  cd Gnome2-GConf-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Gnome2-GConf-$pkgver
+  dbus-launch --exit-with-session make test
+}
+
+package() {
+  cd Gnome2-GConf-$pkgver
+  make DESTDIR=${pkgdir} install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Copied: gconf-perl/repos/staging-i686/disable-orbit.patch (from rev 240744, 
gconf-perl/trunk/disable-orbit.patch)
===
--- staging-i686/disable-orbit.patch(rev 0)
+++ staging-i686/disable-orbit.patch2015-06-14 15:01:05 UTC (rev 240745)
@@ -0,0 +1,30 @@
+Description: Disable gconf_engine_key_is_writable
+ This symbol is not available in libgconf when it is configured without
+ ORBit support, which is currently the case in Debian.
+Author: Colin Watson cjwat...@ubuntu.com
+Bug-Debian: http://bugs.debian.org/649055
+Forwarded: no
+Last-Update: 2011-11-17
+
+Index: b/xs/GConfEngine.xs
+===
+--- a/xs/GConfEngine.xs
 b/xs/GConfEngine.xs
+@@ -350,6 +350,8 @@
+   if (err)
+   gperl_croak_gerror (NULL, err);
+ 
++#if 0 /* requires gconf to be configured with ORBit support */
++
+ ##gboolean gconf_engine_key_is_writable  (GConfEngine *conf,
+ ##const gchar *key,
+ ##GError **err);
+@@ -366,6 +368,8 @@
+ OUTPUT:
+ RETVAL
+ 
++#endif
++
+ guint
+ gconf_engine_notify_add (engine, namespace_section, func, data=NULL)
+   GConfEngine * engine

Copied: gconf-perl/repos/staging-x86_64/PKGBUILD (from rev 240744, 
gconf-perl/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-06-14 15:01:05 UTC (rev 240745)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gconf-perl
+pkgver=1.044
+pkgrel=10
+pkgdesc=Gnome2-GConf perl bindings for gconf
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gtk2-perl.sourceforge.net/;
+makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
+checkdepends=('libx11')
+depends=('glib-perl' 'gconf' 'perl')
+options=(!emptydirs)
+source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Gnome2-GConf-${pkgver}.tar.gz
+disable-orbit.patch)
+md5sums=('ea386003b18f067524833b0eeb271330'
+ '14852fc936ce7b552eb204913d55fd1c')
+
+prepare() {
+  cd Gnome2-GConf-$pkgver
+  patch -Np1 -i ../disable-orbit.patch
+}
+
+build() {
+  cd Gnome2-GConf-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+ 

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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:30:26
  Author: foutrelis
Revision: 240764

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

Added:
  weechat/repos/staging-i686/
  weechat/repos/staging-i686/PKGBUILD
(from rev 240763, weechat/trunk/PKGBUILD)
  weechat/repos/staging-x86_64/
  weechat/repos/staging-x86_64/PKGBUILD
(from rev 240763, weechat/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   38 ++
 staging-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: weechat/repos/staging-i686/PKGBUILD (from rev 240763, 
weechat/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-06-14 15:30:26 UTC (rev 240764)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: lucke lucke at o2 dot pl
+
+pkgname=weechat
+pkgver=1.2
+pkgrel=2
+pkgdesc=Fast, light and extensible IRC client (curses UI)
+arch=('i686' 'x86_64')
+url=http://www.weechat.org/;
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+source=(http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('3458efd51cdc1abfb6a5c33cc5ef7713')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake -Wno-dev ../${pkgname}-${pkgver} -DPREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+-DENABLE_MAN=ON \
+-DENABLE_DOC=ON
+
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR=${pkgdir}/ install
+}

Copied: weechat/repos/staging-x86_64/PKGBUILD (from rev 240763, 
weechat/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-06-14 15:30:26 UTC (rev 240764)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: lucke lucke at o2 dot pl
+
+pkgname=weechat
+pkgver=1.2
+pkgrel=2
+pkgdesc=Fast, light and extensible IRC client (curses UI)
+arch=('i686' 'x86_64')
+url=http://www.weechat.org/;
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+source=(http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('3458efd51cdc1abfb6a5c33cc5ef7713')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake -Wno-dev ../${pkgname}-${pkgver} -DPREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+-DENABLE_MAN=ON \
+-DENABLE_DOC=ON
+
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR=${pkgdir}/ install
+}


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:30:20
  Author: foutrelis
Revision: 240763

upgpkg: weechat 1.2-2

Perl 5.22 rebuild.

Modified:
  weechat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:26:47 UTC (rev 240762)
+++ PKGBUILD2015-06-14 15:30:20 UTC (rev 240763)
@@ -4,7 +4,7 @@
 
 pkgname=weechat
 pkgver=1.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Fast, light and extensible IRC client (curses UI)
 arch=('i686' 'x86_64')
 url=http://www.weechat.org/;


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:35:57
  Author: foutrelis
Revision: 135297

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

Added:
  hexchat/repos/community-staging-i686/
  hexchat/repos/community-staging-i686/PKGBUILD
(from rev 135296, hexchat/trunk/PKGBUILD)
  hexchat/repos/community-staging-i686/hexchat.install
(from rev 135296, hexchat/trunk/hexchat.install)
  hexchat/repos/community-staging-x86_64/
  hexchat/repos/community-staging-x86_64/PKGBUILD
(from rev 135296, hexchat/trunk/PKGBUILD)
  hexchat/repos/community-staging-x86_64/hexchat.install
(from rev 135296, hexchat/trunk/hexchat.install)

--+
 community-staging-i686/PKGBUILD  |   44 +
 community-staging-i686/hexchat.install   |   14 +
 community-staging-x86_64/PKGBUILD|   44 +
 community-staging-x86_64/hexchat.install |   14 +
 4 files changed, 116 insertions(+)

Copied: hexchat/repos/community-staging-i686/PKGBUILD (from rev 135296, 
hexchat/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-14 15:35:57 UTC (rev 135297)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
+# Contributor: TingPing tingp...@tingping.se
+
+pkgname=hexchat
+pkgver=2.10.2
+pkgrel=3
+pkgdesc='A popular and easy to use graphical IRC (chat) client'
+arch=('i686' 'x86_64')
+url='http://hexchat.github.io/'
+license=('GPL')
+depends=('dbus-glib' 'desktop-file-utils' 'gtk2' 'libcanberra' 'libnotify'
+ 'libproxy' 'pciutils')
+makedepends=('intltool' 'iso-codes' 'perl' 'python')
+optdepends=('enchant: Spell check'
+'perl: Perl plugin'
+'python: Python plugin')
+install='hexchat.install'
+source=(http://dl.hexchat.net/hexchat/hexchat-${pkgver}.tar.xz;)
+sha256sums=('87ebf365c576656fa3f23f51d319b3a6d279e4a932f2f8961d891dd5a5e1b52c')
+
+prepare() {
+  cd hexchat-${pkgver}
+
+#  sed 's/CFLAGS=$PERL_CFLAGS/CFLAGS=$PERL_CFLAGS -fuse-ld=gold/' -i 
configure
+}
+
+build() {
+  cd hexchat-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--enable-python='python3' \
+--enable-textfe
+  make
+}
+
+package() {
+  cd hexchat-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Copied: hexchat/repos/community-staging-i686/hexchat.install (from rev 135296, 
hexchat/trunk/hexchat.install)
===
--- community-staging-i686/hexchat.install  (rev 0)
+++ community-staging-i686/hexchat.install  2015-06-14 15:35:57 UTC (rev 
135297)
@@ -0,0 +1,14 @@
+post_install() {
+  gtk-update-icon-cache -ftq usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Copied: hexchat/repos/community-staging-x86_64/PKGBUILD (from rev 135296, 
hexchat/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-14 15:35:57 UTC (rev 135297)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
+# Contributor: TingPing tingp...@tingping.se
+
+pkgname=hexchat
+pkgver=2.10.2
+pkgrel=3
+pkgdesc='A popular and easy to use graphical IRC (chat) client'
+arch=('i686' 'x86_64')
+url='http://hexchat.github.io/'
+license=('GPL')
+depends=('dbus-glib' 'desktop-file-utils' 'gtk2' 'libcanberra' 'libnotify'
+ 'libproxy' 'pciutils')
+makedepends=('intltool' 'iso-codes' 'perl' 'python')
+optdepends=('enchant: Spell check'
+'perl: Perl plugin'
+'python: Python plugin')
+install='hexchat.install'
+source=(http://dl.hexchat.net/hexchat/hexchat-${pkgver}.tar.xz;)
+sha256sums=('87ebf365c576656fa3f23f51d319b3a6d279e4a932f2f8961d891dd5a5e1b52c')
+
+prepare() {
+  cd hexchat-${pkgver}
+
+#  sed 's/CFLAGS=$PERL_CFLAGS/CFLAGS=$PERL_CFLAGS -fuse-ld=gold/' -i 
configure
+}
+
+build() {
+  cd hexchat-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--enable-python='python3' \
+--enable-textfe
+  make
+}
+
+package() {
+  cd hexchat-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Copied: hexchat/repos/community-staging-x86_64/hexchat.install (from rev 
135296, hexchat/trunk/hexchat.install)
===
--- community-staging-x86_64/hexchat.install(rev 0)
+++ community-staging-x86_64/hexchat.install2015-06-14 15:35:57 UTC (rev 
135297)
@@ -0,0 +1,14 @@
+post_install() {
+  gtk-update-icon-cache -ftq usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install

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

2015-06-14 Thread Gaetan Bisson
Date: Sunday, June 14, 2015 @ 18:46:50
  Author: bisson
Revision: 240767

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

Added:
  mpd/repos/extra-i686/PKGBUILD
(from rev 240766, mpd/trunk/PKGBUILD)
  mpd/repos/extra-i686/conf
(from rev 240766, mpd/trunk/conf)
  mpd/repos/extra-i686/install
(from rev 240766, mpd/trunk/install)
  mpd/repos/extra-i686/tmpfiles.d
(from rev 240766, mpd/trunk/tmpfiles.d)
  mpd/repos/extra-x86_64/PKGBUILD
(from rev 240766, mpd/trunk/PKGBUILD)
  mpd/repos/extra-x86_64/conf
(from rev 240766, mpd/trunk/conf)
  mpd/repos/extra-x86_64/install
(from rev 240766, mpd/trunk/install)
  mpd/repos/extra-x86_64/tmpfiles.d
(from rev 240766, mpd/trunk/tmpfiles.d)
Deleted:
  mpd/repos/extra-i686/PKGBUILD
  mpd/repos/extra-i686/conf
  mpd/repos/extra-i686/install
  mpd/repos/extra-i686/tmpfiles.d
  mpd/repos/extra-x86_64/PKGBUILD
  mpd/repos/extra-x86_64/conf
  mpd/repos/extra-x86_64/install
  mpd/repos/extra-x86_64/tmpfiles.d

-+
 /PKGBUILD   |  110 ++
 /conf   |   12 +
 /install|   22 +
 /tmpfiles.d |2 
 extra-i686/PKGBUILD |   55 ---
 extra-i686/conf |6 --
 extra-i686/install  |   11 
 extra-i686/tmpfiles.d   |1 
 extra-x86_64/PKGBUILD   |   55 ---
 extra-x86_64/conf   |6 --
 extra-x86_64/install|   11 
 extra-x86_64/tmpfiles.d |1 
 12 files changed, 146 insertions(+), 146 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-14 16:46:05 UTC (rev 240766)
+++ extra-i686/PKGBUILD 2015-06-14 16:46:50 UTC (rev 240767)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Damir Perisa damir.per...@bluewin.ch
-# Contributor: Ben b...@benmazer.net
-
-pkgname=mpd
-pkgver=0.19.9
-pkgrel=5
-pkgdesc='Flexible, powerful, server-side application for playing music'
-url='http://www.musicpd.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
- 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 
'libmpdclient'
- 'icu' 'libupnp' 'libnfs' 'libsamplerate' 'libsoxr' 'smbclient')
-makedepends=('boost' 'doxygen')
-validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512')
-source=(http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz{,.sig}
-'tmpfiles.d'
-'conf')
-sha1sums=('6683bee5f132eda318c5a61ec14b2df8d9164d60' 'SKIP'
-  'f4d5922abb69abb739542d8e93f4dfd748acdad7'
-  '291fd5cda9f0845834a553017327c4586bd853f6')
-
-backup=('etc/mpd.conf')
-install=install
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --enable-libmpdclient \
-   --enable-jack \
-   --enable-soundcloud \
-   --enable-pipe-output \
-   --enable-pulse \
-   --disable-sidplay \
-   --with-systemdsystemunitdir=/usr/lib/systemd/system
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-   install -Dm644 ../conf ${pkgdir}/etc/mpd.conf
-   install -Dm644 ../tmpfiles.d ${pkgdir}/usr/lib/tmpfiles.d/mpd.conf
-   install -d -g 45 -o 45 ${pkgdir}/var/lib/mpd/playlists
-
-   install -Dm644 ${pkgdir}/usr/lib/systemd/{system,user}/mpd.service
-   sed '/\[Service\]/a User=mpd' -i 
${pkgdir}/usr/lib/systemd/system/mpd.service
-   sed '/WantedBy=/c WantedBy=default.target' -i 
${pkgdir}/usr/lib/systemd/{system,user}/mpd.service
-}

Copied: mpd/repos/extra-i686/PKGBUILD (from rev 240766, mpd/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-14 16:46:50 UTC (rev 240767)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+# Contributor: Ben b...@benmazer.net
+
+pkgname=mpd
+pkgver=0.19.9
+pkgrel=6
+pkgdesc='Flexible, powerful, server-side application for playing music'
+url='http://www.musicpd.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
+ 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 
'libmpdclient'
+ 'icu' 'libupnp' 'libnfs' 'libsamplerate' 'libsoxr' 'smbclient')
+makedepends=('boost' 'doxygen')

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

2015-06-14 Thread Gaetan Bisson
Date: Sunday, June 14, 2015 @ 18:46:05
  Author: bisson
Revision: 240766

implement FS#45330

Modified:
  mpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 16:15:29 UTC (rev 240765)
+++ PKGBUILD2015-06-14 16:46:05 UTC (rev 240766)
@@ -7,7 +7,7 @@
 
 pkgname=mpd
 pkgver=0.19.9
-pkgrel=5
+pkgrel=6
 pkgdesc='Flexible, powerful, server-side application for playing music'
 url='http://www.musicpd.org/'
 license=('GPL')
@@ -47,7 +47,7 @@
make DESTDIR=${pkgdir} install
install -Dm644 ../conf ${pkgdir}/etc/mpd.conf
install -Dm644 ../tmpfiles.d ${pkgdir}/usr/lib/tmpfiles.d/mpd.conf
-   install -d -g 45 -o 45 ${pkgdir}/var/lib/mpd/playlists
+   install -d -g 45 -o 45 ${pkgdir}/var/lib/mpd{,/playlists}
 
install -Dm644 ${pkgdir}/usr/lib/systemd/{system,user}/mpd.service
sed '/\[Service\]/a User=mpd' -i 
${pkgdir}/usr/lib/systemd/system/mpd.service


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:09:14
  Author: foutrelis
Revision: 240754

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

Added:
  gnome-perl/repos/staging-i686/
  gnome-perl/repos/staging-i686/PKGBUILD
(from rev 240753, gnome-perl/trunk/PKGBUILD)
  gnome-perl/repos/staging-x86_64/
  gnome-perl/repos/staging-x86_64/PKGBUILD
(from rev 240753, gnome-perl/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   34 ++
 staging-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: gnome-perl/repos/staging-i686/PKGBUILD (from rev 240753, 
gnome-perl/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-06-14 15:09:14 UTC (rev 240754)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gnome-perl
+pkgver=1.045
+pkgrel=3
+pkgdesc=Perl bindings for libgnome
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gtk2-perl.sourceforge.net/;
+makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
+depends=('gnomecanvas-perl' 'gnome-vfs-perl' 'libgnomeui' 'perl')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Gnome2-${pkgver}.tar.gz)
+md5sums=('95c06139f9d950df17c9cb0340c74168')
+
+build() {
+  cd Gnome2-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd Gnome2-$pkgver
+  make DESTDIR=${pkgdir} install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Copied: gnome-perl/repos/staging-x86_64/PKGBUILD (from rev 240753, 
gnome-perl/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-06-14 15:09:14 UTC (rev 240754)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gnome-perl
+pkgver=1.045
+pkgrel=3
+pkgdesc=Perl bindings for libgnome
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gtk2-perl.sourceforge.net/;
+makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
+depends=('gnomecanvas-perl' 'gnome-vfs-perl' 'libgnomeui' 'perl')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Gnome2-${pkgver}.tar.gz)
+md5sums=('95c06139f9d950df17c9cb0340c74168')
+
+build() {
+  cd Gnome2-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd Gnome2-$pkgver
+  make DESTDIR=${pkgdir} install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:44:43
  Author: foutrelis
Revision: 135298

upgpkg: obexftp 0.24-5

Perl 5.22 rebuild.

Modified:
  obexftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:35:57 UTC (rev 135297)
+++ PKGBUILD2015-06-14 15:44:43 UTC (rev 135298)
@@ -4,7 +4,7 @@
 
 pkgname=obexftp
 pkgver=0.24
-pkgrel=4
+pkgrel=5
 pkgdesc=A tool for transfer files to/from any OBEX enabled device
 arch=('i686' 'x86_64')
 url=http://dev.zuckschwerdt.org/openobex/wiki/ObexFtp;


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:44:50
  Author: foutrelis
Revision: 135299

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

Added:
  obexftp/repos/community-staging-i686/
  obexftp/repos/community-staging-i686/PKGBUILD
(from rev 135298, obexftp/trunk/PKGBUILD)
  obexftp/repos/community-staging-x86_64/
  obexftp/repos/community-staging-x86_64/PKGBUILD
(from rev 135298, obexftp/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   42 
 community-staging-x86_64/PKGBUILD |   42 
 2 files changed, 84 insertions(+)

Copied: obexftp/repos/community-staging-i686/PKGBUILD (from rev 135298, 
obexftp/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-14 15:44:50 UTC (rev 135299)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alessio 'mOLOk' Bolognino themo...@gmail.com
+
+pkgname=obexftp
+pkgver=0.24
+pkgrel=5
+pkgdesc=A tool for transfer files to/from any OBEX enabled device
+arch=('i686' 'x86_64')
+url=http://dev.zuckschwerdt.org/openobex/wiki/ObexFtp;
+license=('GPL')
+depends=('openobex')
+makedepends=('cmake' 'asciidoc' 'xmlto' 'fuse' 'swig' 'ruby' 'tk')
+optdepends=('ruby: ruby bindings'
+'tk: TCL/Tk bindings')
+options=('!makeflags' '!docs')
+source=(http://downloads.sourceforge.net/openobex/${pkgname}-${pkgver}-Source.tar.gz;)
+md5sums=('31a50dbbd09c63cbb5399772aaff7936')
+
+build() {
+  cd ${srcdir}/
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver}-Source \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_SBINDIR=bin \
+-DENABLE_PERL=YES \
+-DENABLE_PYTHON=YES \
+-DENABLE_RUBY=YES \
+-DENABLE_TCL=YES
+  make doc
+}
+
+package() {
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+}

Copied: obexftp/repos/community-staging-x86_64/PKGBUILD (from rev 135298, 
obexftp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-14 15:44:50 UTC (rev 135299)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alessio 'mOLOk' Bolognino themo...@gmail.com
+
+pkgname=obexftp
+pkgver=0.24
+pkgrel=5
+pkgdesc=A tool for transfer files to/from any OBEX enabled device
+arch=('i686' 'x86_64')
+url=http://dev.zuckschwerdt.org/openobex/wiki/ObexFtp;
+license=('GPL')
+depends=('openobex')
+makedepends=('cmake' 'asciidoc' 'xmlto' 'fuse' 'swig' 'ruby' 'tk')
+optdepends=('ruby: ruby bindings'
+'tk: TCL/Tk bindings')
+options=('!makeflags' '!docs')
+source=(http://downloads.sourceforge.net/openobex/${pkgname}-${pkgver}-Source.tar.gz;)
+md5sums=('31a50dbbd09c63cbb5399772aaff7936')
+
+build() {
+  cd ${srcdir}/
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver}-Source \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_SBINDIR=bin \
+-DENABLE_PERL=YES \
+-DENABLE_PYTHON=YES \
+-DENABLE_RUBY=YES \
+-DENABLE_TCL=YES
+  make doc
+}
+
+package() {
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+}


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

2015-06-14 Thread Jan Steffens
Date: Sunday, June 14, 2015 @ 18:53:50
  Author: heftig
Revision: 240768

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

Added:
  libxml++/repos/extra-i686/PKGBUILD
(from rev 240767, libxml++/trunk/PKGBUILD)
  libxml++/repos/extra-x86_64/PKGBUILD
(from rev 240767, libxml++/trunk/PKGBUILD)
Deleted:
  libxml++/repos/extra-i686/PKGBUILD
  libxml++/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-14 16:46:50 UTC (rev 240767)
+++ extra-i686/PKGBUILD 2015-06-14 16:53:50 UTC (rev 240768)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: damir da...@archlinux.org
-
-pkgbase=libxml++
-pkgname=('libxml++' 'libxml++-docs')
-pkgver=2.38.0
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://libxmlplusplus.sourceforge.net/;
-makedepends=('pkgconfig' 'glibmm-docs' 'libxml2' 'glibmm')
-options=('!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/${pkgver:0:4}/${pkgbase}-${pkgver}.tar.xz)
-sha256sums=('5698b03f5d320fb8310e30780e328f03debca12c557434ee031aea9baf3b1346')
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package_libxml++() {
-  pkgdesc=C++ bindings to libxml2
-  depends=('libxml2' 'glibmm')
-  replaces=('libxml++2')
-  provides=(libxml++2=${pkgver})
-  conflicts=('libxml++2')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  sed -i -e 's/install-data-am: install-data-local 
install-dist_referenceDATA/install-data-am: /' Makefile
-  make DESTDIR=${pkgdir} install
-}
-
-package_libxml++-docs() {
-  pkgdesc=Developer documentation for libxml++
-  depends=('glibmm-docs')
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install-data-local install-dist_referenceDATA
-}

Copied: libxml++/repos/extra-i686/PKGBUILD (from rev 240767, 
libxml++/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-14 16:53:50 UTC (rev 240768)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: damir da...@archlinux.org
+
+pkgbase=libxml++
+pkgname=('libxml++' 'libxml++-docs')
+pkgver=2.38.1
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://libxmlplusplus.sourceforge.net/;
+makedepends=('pkgconfig' 'glibmm-docs' 'libxml2' 'glibmm')
+options=('!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/${pkgver:0:4}/${pkgbase}-${pkgver}.tar.xz)
+sha256sums=('882529189b03db6c69925b3f579ab1941feb4f02b5fe2612504ee7e498a4a05f')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package_libxml++() {
+  pkgdesc=C++ bindings to libxml2
+  depends=('libxml2' 'glibmm')
+  replaces=('libxml++2')
+  provides=(libxml++2=${pkgver})
+  conflicts=('libxml++2')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  sed -i -e 's/install-data-am: install-data-local 
install-dist_referenceDATA/install-data-am: /' Makefile
+  make DESTDIR=${pkgdir} install
+}
+
+package_libxml++-docs() {
+  pkgdesc=Developer documentation for libxml++
+  depends=('glibmm-docs')
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install-data-local install-dist_referenceDATA
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-14 16:46:50 UTC (rev 240767)
+++ extra-x86_64/PKGBUILD   2015-06-14 16:53:50 UTC (rev 240768)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: damir da...@archlinux.org
-
-pkgbase=libxml++
-pkgname=('libxml++' 'libxml++-docs')
-pkgver=2.38.0
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://libxmlplusplus.sourceforge.net/;
-makedepends=('pkgconfig' 'glibmm-docs' 'libxml2' 'glibmm')
-options=('!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/${pkgver:0:4}/${pkgbase}-${pkgver}.tar.xz)
-sha256sums=('5698b03f5d320fb8310e30780e328f03debca12c557434ee031aea9baf3b1346')
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package_libxml++() {
-  pkgdesc=C++ bindings to libxml2
-  depends=('libxml2' 'glibmm')
-  replaces=('libxml++2')
-  provides=(libxml++2=${pkgver})
-  conflicts=('libxml++2')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  sed -i -e 's/install-data-am: install-data-local 
install-dist_referenceDATA/install-data-am: /' Makefile
-  make DESTDIR=${pkgdir} install
-}
-
-package_libxml++-docs() {
-  pkgdesc=Developer documentation for libxml++
-  depends=('glibmm-docs')
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install-data-local install-dist_referenceDATA
-}

Copied: libxml++/repos/extra-x86_64/PKGBUILD (from rev 240767, 
libxml++/trunk/PKGBUILD)

[arch-commits] Commit in razor/trunk (PKGBUILD razor-2.85-makefile-quoting-fix.patch)

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 19:44:00
  Author: foutrelis
Revision: 240769

upgpkg: razor 2.85-5

Perl 5.22 rebuild.

Added:
  razor/trunk/razor-2.85-makefile-quoting-fix.patch
Modified:
  razor/trunk/PKGBUILD

---+
 PKGBUILD  |   22 ++
 razor-2.85-makefile-quoting-fix.patch |   15 +++
 2 files changed, 33 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 16:53:50 UTC (rev 240768)
+++ PKGBUILD2015-06-14 17:44:00 UTC (rev 240769)
@@ -5,7 +5,7 @@
 
 pkgname=razor
 pkgver=2.85
-pkgrel=4
+pkgrel=5
 pkgdesc=A distributed, collaborative, spam detection and filtering network
 arch=('i686' 'x86_64')
 url=http://razor.sourceforge.net;
@@ -13,13 +13,19 @@
 depends=('perl-net-dns' 'perl-digest-sha1' 'perl-uri' 'perl-digest-nilsimsa' 
'perl')
 options=('!emptydirs')
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-agents-${pkgver}.tar.bz2;
- razor-2.85-cosmetic-pv-fix.patch)
+ razor-2.85-cosmetic-pv-fix.patch
+ razor-2.85-makefile-quoting-fix.patch)
 md5sums=('014d08db40187cb1316482191566b012'
- '850645e088b21845f4b6653623d59515')
+ '850645e088b21845f4b6653623d59515'
+ '6543caaf0a4086e65de1fb61c8dd5b7b')
 
 prepare() {
   cd ${pkgname}-agents-${pkgver}
-  patch -p1 -i $srcdir/razor-2.85-cosmetic-pv-fix.patch
+
+  patch -p1 -i ../razor-2.85-cosmetic-pv-fix.patch
+
+  # ExtUtils::MakeMaker = 6.99_09 has quotes around paths
+  patch -p1 -i ../razor-2.85-makefile-quoting-fix.patch
 }
 
 build() {
@@ -36,4 +42,12 @@
 package() {
   cd ${pkgname}-agents-${pkgver}
   make DESTDIR=${pkgdir} install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }

Added: razor-2.85-makefile-quoting-fix.patch
===
--- razor-2.85-makefile-quoting-fix.patch   (rev 0)
+++ razor-2.85-makefile-quoting-fix.patch   2015-06-14 17:44:00 UTC (rev 
240769)
@@ -0,0 +1,15 @@
+diff -uprw razor-agents-2.85.orig/Makefile.PL razor-agents-2.85/Makefile.PL
+--- razor-agents-2.85.orig/Makefile.PL 2007-05-09 01:47:53.0 +0300
 razor-agents-2.85/Makefile.PL  2015-06-14 20:36:23.677213987 +0300
+@@ -140,9 +140,9 @@ sub MY::install {
+   my $inherited = $self-SUPER::install(@_);
+ 
+   my $man5 = q{ \\
+-  $(INST_MAN5DIR) $(INSTALLMAN5DIR)};
++  $(INST_MAN5DIR) $(INSTALLMAN5DIR)};
+ 
+-  $inherited =~ s/(\$\((?:DEST)?INSTALL\w*MAN1DIR\))/$1$man5/gm;
++  $inherited =~ s/(?\$\((?:DEST)?INSTALL\w*MAN1DIR\)?)/$1$man5/gm;
+ 
+   return $inherited;
+ }


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 19:44:12
  Author: foutrelis
Revision: 240770

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

Added:
  razor/repos/staging-i686/
  razor/repos/staging-i686/PKGBUILD
(from rev 240769, razor/trunk/PKGBUILD)
  razor/repos/staging-i686/razor-2.85-cosmetic-pv-fix.patch
(from rev 240769, razor/trunk/razor-2.85-cosmetic-pv-fix.patch)
  razor/repos/staging-i686/razor-2.85-makefile-quoting-fix.patch
(from rev 240769, razor/trunk/razor-2.85-makefile-quoting-fix.patch)
  razor/repos/staging-x86_64/
  razor/repos/staging-x86_64/PKGBUILD
(from rev 240769, razor/trunk/PKGBUILD)
  razor/repos/staging-x86_64/razor-2.85-cosmetic-pv-fix.patch
(from rev 240769, razor/trunk/razor-2.85-cosmetic-pv-fix.patch)
  razor/repos/staging-x86_64/razor-2.85-makefile-quoting-fix.patch
(from rev 240769, razor/trunk/razor-2.85-makefile-quoting-fix.patch)

--+
 staging-i686/PKGBUILD|   53 +
 staging-i686/razor-2.85-cosmetic-pv-fix.patch|   22 +++
 staging-i686/razor-2.85-makefile-quoting-fix.patch   |   15 
 staging-x86_64/PKGBUILD  |   53 +
 staging-x86_64/razor-2.85-cosmetic-pv-fix.patch  |   22 +++
 staging-x86_64/razor-2.85-makefile-quoting-fix.patch |   15 
 6 files changed, 180 insertions(+)

Copied: razor/repos/staging-i686/PKGBUILD (from rev 240769, 
razor/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-06-14 17:44:12 UTC (rev 240770)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer:
+# Contributor: Dale Blount d...@archlinux.org
+# Contributor: Manolis Tzanidakis
+
+pkgname=razor
+pkgver=2.85
+pkgrel=5
+pkgdesc=A distributed, collaborative, spam detection and filtering network
+arch=('i686' 'x86_64')
+url=http://razor.sourceforge.net;
+license=('PerlArtistic')
+depends=('perl-net-dns' 'perl-digest-sha1' 'perl-uri' 'perl-digest-nilsimsa' 
'perl')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-agents-${pkgver}.tar.bz2;
+ razor-2.85-cosmetic-pv-fix.patch
+ razor-2.85-makefile-quoting-fix.patch)
+md5sums=('014d08db40187cb1316482191566b012'
+ '850645e088b21845f4b6653623d59515'
+ '6543caaf0a4086e65de1fb61c8dd5b7b')
+
+prepare() {
+  cd ${pkgname}-agents-${pkgver}
+
+  patch -p1 -i ../razor-2.85-cosmetic-pv-fix.patch
+
+  # ExtUtils::MakeMaker = 6.99_09 has quotes around paths
+  patch -p1 -i ../razor-2.85-makefile-quoting-fix.patch
+}
+
+build() {
+  cd ${pkgname}-agents-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd ${pkgname}-agents-${pkgver}
+  make test
+}
+
+package() {
+  cd ${pkgname}-agents-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Copied: razor/repos/staging-i686/razor-2.85-cosmetic-pv-fix.patch (from rev 
240769, razor/trunk/razor-2.85-cosmetic-pv-fix.patch)
===
--- staging-i686/razor-2.85-cosmetic-pv-fix.patch   
(rev 0)
+++ staging-i686/razor-2.85-cosmetic-pv-fix.patch   2015-06-14 17:44:12 UTC 
(rev 240770)
@@ -0,0 +1,22 @@
+--- a/lib/Razor2/Client/Version.pm 2007-05-10 22:32:10.0 +0200
 b/lib/Razor2/Client/Version.pm 2010-03-25 11:11:36.911409707 +0100
+@@ -14,7 +14,7 @@
+ 
+ $PROTOCOL = 3;
+ 
+-$VERSION = '2.84';
++$VERSION = '2.85';
+ 
+ 1;
+ 
+--- a/META.yml 2007-05-23 20:29:34.0 +0200
 b/META.yml 2010-03-25 11:11:43.691408628 +0100
+@@ -1,7 +1,7 @@
+ # http://module-build.sourceforge.net/META-spec.html
+ #XXX This is a prototype!!!  It will change in the future!!! X#
+ name: razor-agents
+-version:  2.84
++version:  2.85
+ version_from: lib/Razor2/Client/Version.pm
+ installdirs:  site
+ requires:

Copied: razor/repos/staging-i686/razor-2.85-makefile-quoting-fix.patch (from 
rev 240769, razor/trunk/razor-2.85-makefile-quoting-fix.patch)
===
--- staging-i686/razor-2.85-makefile-quoting-fix.patch  
(rev 0)
+++ staging-i686/razor-2.85-makefile-quoting-fix.patch  2015-06-14 17:44:12 UTC 
(rev 240770)
@@ -0,0 +1,15 @@
+diff -uprw razor-agents-2.85.orig/Makefile.PL razor-agents-2.85/Makefile.PL
+--- razor-agents-2.85.orig/Makefile.PL 2007-05-09 01:47:53.0 +0300
 razor-agents-2.85/Makefile.PL  2015-06-14 20:36:23.677213987 +0300
+@@ -140,9 +140,9 

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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:06:18
  Author: foutrelis
Revision: 240751

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

Added:
  gnomecanvas-perl/repos/staging-i686/
  gnomecanvas-perl/repos/staging-i686/PKGBUILD
(from rev 240750, gnomecanvas-perl/trunk/PKGBUILD)
  gnomecanvas-perl/repos/staging-x86_64/
  gnomecanvas-perl/repos/staging-x86_64/PKGBUILD
(from rev 240750, gnomecanvas-perl/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   35 +++
 staging-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: gnomecanvas-perl/repos/staging-i686/PKGBUILD (from rev 240750, 
gnomecanvas-perl/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-06-14 15:06:18 UTC (rev 240751)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gnomecanvas-perl
+_realname=Gnome2-Canvas
+pkgver=1.002
+pkgrel=13
+pkgdesc=Gnome2-Canvas perl bindings for libgnomecanvas
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gtk2-perl.sourceforge.net/;
+makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
+depends=('gtk2-perl' 'libgnomecanvas' 'perl')
+options=(!emptydirs)
+source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/${_realname}-${pkgver}.tar.gz)
+md5sums=('93405a987ba4bbd03c2f91592b88f5cb')
+
+build() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  make install DESTDIR=${pkgdir}
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Copied: gnomecanvas-perl/repos/staging-x86_64/PKGBUILD (from rev 240750, 
gnomecanvas-perl/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-06-14 15:06:18 UTC (rev 240751)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gnomecanvas-perl
+_realname=Gnome2-Canvas
+pkgver=1.002
+pkgrel=13
+pkgdesc=Gnome2-Canvas perl bindings for libgnomecanvas
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gtk2-perl.sourceforge.net/;
+makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
+depends=('gtk2-perl' 'libgnomecanvas' 'perl')
+options=(!emptydirs)
+source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/${_realname}-${pkgver}.tar.gz)
+md5sums=('93405a987ba4bbd03c2f91592b88f5cb')
+
+build() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  make install DESTDIR=${pkgdir}
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:06:11
  Author: foutrelis
Revision: 240750

upgpkg: gnomecanvas-perl 1.002-13

Perl 5.22 rebuild.

Modified:
  gnomecanvas-perl/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:04:53 UTC (rev 240749)
+++ PKGBUILD2015-06-14 15:06:11 UTC (rev 240750)
@@ -4,7 +4,7 @@
 pkgname=gnomecanvas-perl
 _realname=Gnome2-Canvas
 pkgver=1.002
-pkgrel=12
+pkgrel=13
 pkgdesc=Gnome2-Canvas perl bindings for libgnomecanvas
 arch=('i686' 'x86_64')
 license=('LGPL')
@@ -24,4 +24,12 @@
 package() {
   cd ${srcdir}/${_realname}-${pkgver}
   make install DESTDIR=${pkgdir}
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }


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

2015-06-14 Thread Jan Steffens
Date: Sunday, June 14, 2015 @ 18:15:29
  Author: heftig
Revision: 240765

2.38.1

Modified:
  libxml++/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:30:26 UTC (rev 240764)
+++ PKGBUILD2015-06-14 16:15:29 UTC (rev 240765)
@@ -3,7 +3,7 @@
 
 pkgbase=libxml++
 pkgname=('libxml++' 'libxml++-docs')
-pkgver=2.38.0
+pkgver=2.38.1
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL')
@@ -11,7 +11,7 @@
 makedepends=('pkgconfig' 'glibmm-docs' 'libxml2' 'glibmm')
 options=('!emptydirs')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/${pkgver:0:4}/${pkgbase}-${pkgver}.tar.xz)
-sha256sums=('5698b03f5d320fb8310e30780e328f03debca12c557434ee031aea9baf3b1346')
+sha256sums=('882529189b03db6c69925b3f579ab1941feb4f02b5fe2612504ee7e498a4a05f')
 
 build() {
   cd ${srcdir}/${pkgbase}-${pkgver}


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

2015-06-14 Thread Jan Steffens
Date: Sunday, June 14, 2015 @ 18:17:05
  Author: heftig
Revision: 135302

3.16.4

Modified:
  gnome-software/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:45:33 UTC (rev 135301)
+++ PKGBUILD2015-06-14 16:17:05 UTC (rev 135302)
@@ -4,7 +4,7 @@
 # Contributor: Yosef Or Boczko yosef...@gnome.org
 
 pkgname=gnome-software
-pkgver=3.16.3
+pkgver=3.16.4
 pkgrel=1
 pkgdesc=GNOME Software Tools
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 makedepends=(intltool)
 install=gnome-software.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('96322d7c2265bd031f27a703ccfec3a4f16f573f79e1d4039b49dbed4c9fed05')
+sha256sums=('627b3f1738f2ad7dcd19d387ff6496d38e38d4b97dbd89ec5573f2ddf31edb2b')
 
 build() {
   cd $pkgname-$pkgver


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

2015-06-14 Thread Jan Steffens
Date: Sunday, June 14, 2015 @ 18:55:24
  Author: heftig
Revision: 135303

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

Added:
  gnome-software/repos/community-i686/PKGBUILD
(from rev 135302, gnome-software/trunk/PKGBUILD)
  gnome-software/repos/community-i686/gnome-software.install
(from rev 135302, gnome-software/trunk/gnome-software.install)
  gnome-software/repos/community-x86_64/PKGBUILD
(from rev 135302, gnome-software/trunk/PKGBUILD)
  gnome-software/repos/community-x86_64/gnome-software.install
(from rev 135302, gnome-software/trunk/gnome-software.install)
Deleted:
  gnome-software/repos/community-i686/PKGBUILD
  gnome-software/repos/community-i686/gnome-software.install
  gnome-software/repos/community-x86_64/PKGBUILD
  gnome-software/repos/community-x86_64/gnome-software.install

-+
 /PKGBUILD   |   66 ++
 /gnome-software.install |   26 +++
 community-i686/PKGBUILD |   33 ---
 community-i686/gnome-software.install   |   13 -
 community-x86_64/PKGBUILD   |   33 ---
 community-x86_64/gnome-software.install |   13 -
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-14 16:17:05 UTC (rev 135302)
+++ community-i686/PKGBUILD 2015-06-14 16:55:24 UTC (rev 135303)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-# Contributor: Yosef Or Boczko yosef...@gnome.org
-
-pkgname=gnome-software
-pkgver=3.16.3
-pkgrel=1
-pkgdesc=GNOME Software Tools
-arch=(i686 x86_64)
-license=('GPL2')
-url=https://wiki.gnome.org/Apps/Software/;
-depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
packagekit
- desktop-file-utils archlinux-appstream-data)
-makedepends=(intltool)
-install=gnome-software.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('96322d7c2265bd031f27a703ccfec3a4f16f573f79e1d4039b49dbed4c9fed05')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-
-  # Remove fedora-only plugins
-  rm ${pkgdir}/usr/lib/gs-plugins-*/libgs_plugin_fedora_tagger*
-}

Copied: gnome-software/repos/community-i686/PKGBUILD (from rev 135302, 
gnome-software/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-14 16:55:24 UTC (rev 135303)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: Yosef Or Boczko yosef...@gnome.org
+
+pkgname=gnome-software
+pkgver=3.16.4
+pkgrel=1
+pkgdesc=GNOME Software Tools
+arch=(i686 x86_64)
+license=('GPL2')
+url=https://wiki.gnome.org/Apps/Software/;
+depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
packagekit
+ desktop-file-utils archlinux-appstream-data)
+makedepends=(intltool)
+install=gnome-software.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('627b3f1738f2ad7dcd19d387ff6496d38e38d4b97dbd89ec5573f2ddf31edb2b')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+
+  # Remove fedora-only plugins
+  rm ${pkgdir}/usr/lib/gs-plugins-*/libgs_plugin_fedora_tagger*
+}

Deleted: community-i686/gnome-software.install
===
--- community-i686/gnome-software.install   2015-06-14 16:17:05 UTC (rev 
135302)
+++ community-i686/gnome-software.install   2015-06-14 16:55:24 UTC (rev 
135303)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: gnome-software/repos/community-i686/gnome-software.install (from rev 
135302, gnome-software/trunk/gnome-software.install)
===
--- community-i686/gnome-software.install   (rev 0)
+++ community-i686/gnome-software.install   2015-06-14 16:55:24 UTC (rev 
135303)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas

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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:06:29
  Author: foutrelis
Revision: 240752

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

Added:
  gnomecanvas-perl/repos/staging-i686/PKGBUILD
(from rev 240751, gnomecanvas-perl/trunk/PKGBUILD)
  gnomecanvas-perl/repos/staging-x86_64/PKGBUILD
(from rev 240751, gnomecanvas-perl/trunk/PKGBUILD)
Deleted:
  gnomecanvas-perl/repos/staging-i686/PKGBUILD
  gnomecanvas-perl/repos/staging-x86_64/PKGBUILD

-+
 /PKGBUILD   |   70 ++
 staging-i686/PKGBUILD   |   35 ---
 staging-x86_64/PKGBUILD |   35 ---
 3 files changed, 70 insertions(+), 70 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2015-06-14 15:06:18 UTC (rev 240751)
+++ staging-i686/PKGBUILD   2015-06-14 15:06:29 UTC (rev 240752)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gnomecanvas-perl
-_realname=Gnome2-Canvas
-pkgver=1.002
-pkgrel=13
-pkgdesc=Gnome2-Canvas perl bindings for libgnomecanvas
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://gtk2-perl.sourceforge.net/;
-makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
-depends=('gtk2-perl' 'libgnomecanvas' 'perl')
-options=(!emptydirs)
-source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/${_realname}-${pkgver}.tar.gz)
-md5sums=('93405a987ba4bbd03c2f91592b88f5cb')
-
-build() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  make install DESTDIR=${pkgdir}
-
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
-   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
-   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
-   depends+=(perl=$_perlver_min perl$_perlver_max)
-fi
-# template end;
-}

Copied: gnomecanvas-perl/repos/staging-i686/PKGBUILD (from rev 240751, 
gnomecanvas-perl/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-06-14 15:06:29 UTC (rev 240752)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gnomecanvas-perl
+_realname=Gnome2-Canvas
+pkgver=1.002
+pkgrel=13
+pkgdesc=Gnome2-Canvas perl bindings for libgnomecanvas
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gtk2-perl.sourceforge.net/;
+makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
+depends=('gtk2-perl' 'libgnomecanvas' 'perl')
+options=(!emptydirs)
+source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/${_realname}-${pkgver}.tar.gz)
+md5sums=('93405a987ba4bbd03c2f91592b88f5cb')
+
+build() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  make install DESTDIR=${pkgdir}
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Deleted: staging-x86_64/PKGBUILD
===
--- staging-x86_64/PKGBUILD 2015-06-14 15:06:18 UTC (rev 240751)
+++ staging-x86_64/PKGBUILD 2015-06-14 15:06:29 UTC (rev 240752)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gnomecanvas-perl
-_realname=Gnome2-Canvas
-pkgver=1.002
-pkgrel=13
-pkgdesc=Gnome2-Canvas perl bindings for libgnomecanvas
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://gtk2-perl.sourceforge.net/;
-makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
-depends=('gtk2-perl' 'libgnomecanvas' 'perl')
-options=(!emptydirs)
-source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/${_realname}-${pkgver}.tar.gz)
-md5sums=('93405a987ba4bbd03c2f91592b88f5cb')
-
-build() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  make install DESTDIR=${pkgdir}
-
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
-   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
-   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
-   depends+=(perl=$_perlver_min perl$_perlver_max)
-fi
-# template end;
-}

Copied: gnomecanvas-perl/repos/staging-x86_64/PKGBUILD 

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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:20:42
  Author: foutrelis
Revision: 240755

upgpkg: gnumeric 1.12.22-1

- Perl 5.22 rebuild.
- New upstream release.

Modified:
  gnumeric/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:09:14 UTC (rev 240754)
+++ PKGBUILD2015-06-14 15:20:42 UTC (rev 240755)
@@ -3,7 +3,7 @@
 # Contributor: Kritoke typeoli...@yahoo.com
 
 pkgname=gnumeric
-pkgver=1.12.20
+pkgver=1.12.22
 pkgrel=1
 pkgdesc=A GNOME Spreadsheet Program
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 install=gnumeric.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz
 revert-warnings.patch)
-sha256sums=('4d491147e973afc0302823047780027c255a91343d839cf17562a852f42c21cd'
+sha256sums=('3908cfd6520b599eefefe222aadeaa5126394b54d9a9a7f5e0f938eb674dcf47'
 'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
 
 prepare() {


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:20:53
  Author: foutrelis
Revision: 240756

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

Added:
  gnumeric/repos/staging-i686/
  gnumeric/repos/staging-i686/PKGBUILD
(from rev 240755, gnumeric/trunk/PKGBUILD)
  gnumeric/repos/staging-i686/gnumeric.install
(from rev 240755, gnumeric/trunk/gnumeric.install)
  gnumeric/repos/staging-i686/revert-warnings.patch
(from rev 240755, gnumeric/trunk/revert-warnings.patch)
  gnumeric/repos/staging-x86_64/
  gnumeric/repos/staging-x86_64/PKGBUILD
(from rev 240755, gnumeric/trunk/PKGBUILD)
  gnumeric/repos/staging-x86_64/gnumeric.install
(from rev 240755, gnumeric/trunk/gnumeric.install)
  gnumeric/repos/staging-x86_64/revert-warnings.patch
(from rev 240755, gnumeric/trunk/revert-warnings.patch)

--+
 staging-i686/PKGBUILD|   46 +
 staging-i686/gnumeric.install|   19 +
 staging-i686/revert-warnings.patch   |   11 +++
 staging-x86_64/PKGBUILD  |   46 +
 staging-x86_64/gnumeric.install  |   19 +
 staging-x86_64/revert-warnings.patch |   11 +++
 6 files changed, 152 insertions(+)

Copied: gnumeric/repos/staging-i686/PKGBUILD (from rev 240755, 
gnumeric/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-06-14 15:20:53 UTC (rev 240756)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Eric Belanger e...@archlinux.org
+# Contributor: Kritoke typeoli...@yahoo.com
+
+pkgname=gnumeric
+pkgver=1.12.22
+pkgrel=1
+pkgdesc=A GNOME Spreadsheet Program
+arch=('i686' 'x86_64')
+url=http://www.gnome.org/projects/gnumeric/;
+license=('GPL')
+depends=('goffice' 'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('intltool' 'psiconv' 'pygobject-devel'
+ 'gobject-introspection' 'rarian')
+optdepends=('python2-gobject: for python plugin support'
+'perl: for perl plugin support'
+'psiconv: for Psion 5 file support'
+'yelp: for viewing the help manual')
+install=gnumeric.install
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz
+revert-warnings.patch)
+sha256sums=('3908cfd6520b599eefefe222aadeaa5126394b54d9a9a7f5e0f938eb674dcf47'
+'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -Np0 -i ../revert-warnings.patch
+
+  # Remove invalid mime type. (FS#26338)
+  sed -i -e 's/zz-application\/zz-winassoc-xls;//' gnumeric.desktop.in
+
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-schemas-compile --enable-introspection
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Copied: gnumeric/repos/staging-i686/gnumeric.install (from rev 240755, 
gnumeric/trunk/gnumeric.install)
===
--- staging-i686/gnumeric.install   (rev 0)
+++ staging-i686/gnumeric.install   2015-06-14 15:20:53 UTC (rev 240756)
@@ -0,0 +1,19 @@
+post_install() {
+  usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+pre_upgrade() {
+  if [ -f usr/share/gconf/schemas/gnumeric.schemas ]; then
+usr/sbin/gconfpkg --uninstall gnumeric
+  fi
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: gnumeric/repos/staging-i686/revert-warnings.patch (from rev 240755, 
gnumeric/trunk/revert-warnings.patch)
===
--- staging-i686/revert-warnings.patch  (rev 0)
+++ staging-i686/revert-warnings.patch  2015-06-14 15:20:53 UTC (rev 240756)
@@ -0,0 +1,11 @@
+--- configure.ac.orig  2013-03-13 16:09:02.355422066 +
 configure.ac   2013-03-13 16:09:26.701917153 +
+@@ -269,8 +269,6 @@
+-Wchar-subscripts -Wwrite-strings \
+-Wdeclaration-after-statement -Wnested-externs \
+-Wmissing-noreturn \
+-   -Werror=missing-prototypes -Werror=nested-externs \
+-   -Werror=implicit-function-declaration \
+-Wmissing-declarations -Wno-pointer-sign \
+-Werror=format-security -Wbitwise -Wcast-to-as \
+-Wdefault-bitfield-sign -Wdo-while -Wparen-string \

Copied: gnumeric/repos/staging-x86_64/PKGBUILD (from rev 240755, 
gnumeric/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ 

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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:35:50
  Author: foutrelis
Revision: 135296

upgpkg: hexchat 2.10.2-3

Perl 5.22 rebuild.

Modified:
  hexchat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:34:05 UTC (rev 135295)
+++ PKGBUILD2015-06-14 15:35:50 UTC (rev 135296)
@@ -4,7 +4,7 @@
 
 pkgname=hexchat
 pkgver=2.10.2
-pkgrel=2
+pkgrel=3
 pkgdesc='A popular and easy to use graphical IRC (chat) client'
 arch=('i686' 'x86_64')
 url='http://hexchat.github.io/'


[arch-commits] Commit in libgda/trunk (PKGBUILD java.patch vala.patch)

2015-06-14 Thread Jan Steffens
Date: Sunday, June 14, 2015 @ 21:41:48
  Author: heftig
Revision: 240771

5.2.4

Added:
  libgda/trunk/java.patch
  libgda/trunk/vala.patch
Modified:
  libgda/trunk/PKGBUILD

+
 PKGBUILD   |  111 +++
 java.patch |   36 +++
 vala.patch |   21 +++
 3 files changed, 147 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 17:44:12 UTC (rev 240770)
+++ PKGBUILD2015-06-14 19:41:48 UTC (rev 240771)
@@ -2,36 +2,105 @@
 # Maintainer: tobias tob...@archlinux.org
 # Contributor: Tobias Kieslich tob...@justdreams.de
 
-pkgname=libgda
-pkgver=5.2.2
+shopt -s extglob
+
+pkgname=(libgda libgda-{firebird,jdbc,mysql,postgres})
+pkgver=5.2.4
 pkgrel=1
-pkgdesc=Data abstraction layer with mysql, pgsql, xml, sqlite providers
+pkgdesc=Data access library
 arch=(i686 x86_64)
-license=('GPL')
-depends=('gtksourceview3' 'libxslt' 'json-glib' 'db' 'ncurses' 'libsoup'
- 'libmariadbclient' 'postgresql-libs' 'python2' 'libsecret'
- 'hicolor-icon-theme' 'desktop-file-utils' 'graphviz' 'gdk-pixbuf2'
- 'iso-codes' 'openssl' 'libgcrypt' 'libldap')
-makedepends=('intltool' 'gobject-introspection' 'gtk-doc' 'vala' 'itstool')
-url=http://www.gnome-db.org;
-install=libgda.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('c9b8b1c32f1011e47b73c5dcf36649aaef2f1edaa5f5d75be20d9caadc2bc3e4')
+license=(GPL)
+depends=(gtksourceview3 libxslt python2 libsecret graphviz goocanvas iso-codes 
desktop-file-utils)
+makedepends=(glade libmariadbclient postgresql-libs libfbclient jdk8-openjdk 
intltool
+ gobject-introspection gtk-doc vala itstool gnome-common)
+url=http://www.gnome-db.org/;
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz
+java.patch vala.patch)
+sha256sums=('2cee38dd583ccbaa5bdf6c01ca5f88cc08758b9b144938a51a478eb2684b765e'
+'e28ea88d49bcb91fa6907440a6785a508fb681c463188b3805509773f5d0fc22'
+'4dfee4cbd01becf52d9e46f9207882df59fc86a40ca1e39fc260b424ec74d1bd')
 
+_apiver=5.0
+
 prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i '1s/python$/2/' libgda-report/RML/trml*/trml*.py
+  mkdir providers
+
+  cd $pkgname-$pkgver
+
+  patch -Np1 -i ../java.patch
+  patch -Np1 -i ../vala.patch
+
+  find -name '*.py' -exec sed -i '1s/python$/2/' {} +
+
+  javac getsp.java
+  autoreconf -fvi
 }
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static \
   --with-bdb=/usr --with-bdb-libdir-name=lib \
-  --disable-static --enable-json --enable-gda-gi
+  --enable-json --enable-system-sqlite --enable-binreloc \
+  --enable-gda-gi --enable-gdaui-gi \
+  --enable-vala --enable-gdaui-vala \
+  --enable-gtk-doc
   make
 }
 
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
+package_libgda() {
+  optdepends=('libgda-firebird: provider for Firebird'
+  'libgda-jdbc: provider for JDBC'
+  'libgda-mysql: provider for MySQL'
+  'libgda-postgres: provider for PostgreSQL')
+  install=libgda.install
+  options+=(emptydirs)
+
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  for _provider in firebird jdbc mysql postgres; do
+mv $pkgdir/usr/lib/libgda-$_apiver/providers/libgda-${_provider}?(-*).so 
\
+   $pkgdir/usr/lib/pkgconfig/libgda-${_provider}-${_apiver}.pc \
+   $pkgdir/usr/share/libgda-$_apiver/${_provider}_specs_*.xml \
+   $srcdir/providers
+  done
+
+  mv $pkgdir/usr/lib/libgda-$_apiver/providers/gdaprovider-${_apiver}.jar \
+ $pkgdir/usr/bin/gda-list-jdbc-providers-${_apiver} \
+ $srcdir/providers
 }
+
+_packageprovider() {
+  install -d $pkgdir/usr/lib/{pkgconfig,libgda-$_apiver/providers} \
+ $pkgdir/usr/share/libgda-$_apiver
+  mv providers/libgda-${1}?(-*).so $pkgdir/usr/lib/libgda-$_apiver/providers
+  mv providers/libgda-${1}-5.0.pc $pkgdir/usr/lib/pkgconfig
+  mv providers/${1}_specs_*.xml $pkgdir/usr/share/libgda-$_apiver
+}
+
+package_libgda-firebird() {
+  pkgdesc=libgda provider for Firebird
+  depends=(libgda libfbclient)
+  _packageprovider firebird
+}
+
+package_libgda-jdbc() {
+  pkgdesc=libgda provider for JDBC
+  depends=(libgda java-environment)
+  _packageprovider jdbc
+  install -d $pkgdir/usr/bin
+  mv providers/gda-list-jdbc-providers-${_apiver} $pkgdir/usr/bin
+  mv providers/gdaprovider-${_apiver}.jar 
$pkgdir/usr/lib/libgda-$_apiver/providers
+}
+
+package_libgda-mysql() {
+  pkgdesc=libgda provider for MySQL
+  depends=(libgda libmariadbclient)
+  _packageprovider mysql
+}
+
+package_libgda-postgres() {
+  pkgdesc=libgda provider for PostgreSQL
+  depends=(libgda postgresql-libs)
+  

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

2015-06-14 Thread Jan Steffens
Date: Sunday, June 14, 2015 @ 21:50:26
  Author: heftig
Revision: 240772

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

Added:
  libgda/repos/extra-i686/PKGBUILD
(from rev 240771, libgda/trunk/PKGBUILD)
  libgda/repos/extra-i686/java.patch
(from rev 240771, libgda/trunk/java.patch)
  libgda/repos/extra-i686/libgda.install
(from rev 240771, libgda/trunk/libgda.install)
  libgda/repos/extra-i686/vala.patch
(from rev 240771, libgda/trunk/vala.patch)
  libgda/repos/extra-x86_64/PKGBUILD
(from rev 240771, libgda/trunk/PKGBUILD)
  libgda/repos/extra-x86_64/java.patch
(from rev 240771, libgda/trunk/java.patch)
  libgda/repos/extra-x86_64/libgda.install
(from rev 240771, libgda/trunk/libgda.install)
  libgda/repos/extra-x86_64/vala.patch
(from rev 240771, libgda/trunk/vala.patch)
Deleted:
  libgda/repos/extra-i686/PKGBUILD
  libgda/repos/extra-i686/libgda.install
  libgda/repos/extra-x86_64/PKGBUILD
  libgda/repos/extra-x86_64/libgda.install

-+
 /PKGBUILD   |  212 ++
 /libgda.install |   24 
 extra-i686/PKGBUILD |   37 ---
 extra-i686/java.patch   |   36 +++
 extra-i686/libgda.install   |   12 --
 extra-i686/vala.patch   |   21 
 extra-x86_64/PKGBUILD   |   37 ---
 extra-x86_64/java.patch |   36 +++
 extra-x86_64/libgda.install |   12 --
 extra-x86_64/vala.patch |   21 
 10 files changed, 350 insertions(+), 98 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-14 19:41:48 UTC (rev 240771)
+++ extra-i686/PKGBUILD 2015-06-14 19:50:26 UTC (rev 240772)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: tobias tob...@archlinux.org
-# Contributor: Tobias Kieslich tob...@justdreams.de
-
-pkgname=libgda
-pkgver=5.2.2
-pkgrel=1
-pkgdesc=Data abstraction layer with mysql, pgsql, xml, sqlite providers
-arch=(i686 x86_64)
-license=('GPL')
-depends=('gtksourceview3' 'libxslt' 'json-glib' 'db' 'ncurses' 'libsoup'
- 'libmariadbclient' 'postgresql-libs' 'python2' 'libsecret'
- 'hicolor-icon-theme' 'desktop-file-utils' 'graphviz' 'gdk-pixbuf2'
- 'iso-codes' 'openssl' 'libgcrypt' 'libldap')
-makedepends=('intltool' 'gobject-introspection' 'gtk-doc' 'vala' 'itstool')
-url=http://www.gnome-db.org;
-install=libgda.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('c9b8b1c32f1011e47b73c5dcf36649aaef2f1edaa5f5d75be20d9caadc2bc3e4')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i '1s/python$/2/' libgda-report/RML/trml*/trml*.py
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --with-bdb=/usr --with-bdb-libdir-name=lib \
-  --disable-static --enable-json --enable-gda-gi
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: libgda/repos/extra-i686/PKGBUILD (from rev 240771, 
libgda/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-14 19:50:26 UTC (rev 240772)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: tobias tob...@archlinux.org
+# Contributor: Tobias Kieslich tob...@justdreams.de
+
+shopt -s extglob
+
+pkgname=(libgda libgda-{firebird,jdbc,mysql,postgres})
+pkgver=5.2.4
+pkgrel=1
+pkgdesc=Data access library
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gtksourceview3 libxslt python2 libsecret graphviz goocanvas iso-codes 
desktop-file-utils)
+makedepends=(glade libmariadbclient postgresql-libs libfbclient jdk8-openjdk 
intltool
+ gobject-introspection gtk-doc vala itstool gnome-common)
+url=http://www.gnome-db.org/;
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz
+java.patch vala.patch)
+sha256sums=('2cee38dd583ccbaa5bdf6c01ca5f88cc08758b9b144938a51a478eb2684b765e'
+'e28ea88d49bcb91fa6907440a6785a508fb681c463188b3805509773f5d0fc22'
+'4dfee4cbd01becf52d9e46f9207882df59fc86a40ca1e39fc260b424ec74d1bd')
+
+_apiver=5.0
+
+prepare() {
+  mkdir providers
+
+  cd $pkgname-$pkgver
+
+  patch -Np1 -i ../java.patch
+  patch -Np1 -i ../vala.patch
+
+  find -name '*.py' -exec sed -i '1s/python$/2/' {} +
+
+  javac getsp.java
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static \
+  --with-bdb=/usr --with-bdb-libdir-name=lib \
+  --enable-json --enable-system-sqlite --enable-binreloc \
+  --enable-gda-gi --enable-gdaui-gi \
+  --enable-vala --enable-gdaui-vala \
+  --enable-gtk-doc
+  make
+}
+
+package_libgda() {
+  optdepends=('libgda-firebird: provider for Firebird'
+  'libgda-jdbc: provider for JDBC'
+  'libgda-mysql: provider 

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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 23:41:45
  Author: foutrelis
Revision: 135308

upgpkg: java-batik 1.8-2

Provide batik-all.jar - batik-all-1.8.jar symlink (FS#45004).

Modified:
  java-batik/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 18:33:02 UTC (rev 135307)
+++ PKGBUILD2015-06-14 21:41:45 UTC (rev 135308)
@@ -4,7 +4,7 @@
 
 pkgname=java-batik
 pkgver=1.8
-pkgrel=1
+pkgrel=2
 pkgdesc='SVG library for Java.'
 arch=('any')
 url='http://xmlgraphics.apache.org/batik/'
@@ -26,5 +26,6 @@
 
install -m644 
$srcdir/batik-$pkgver/batik-$pkgver/lib/batik-all-${pkgver}.jar \
  $pkgdir/usr/share/java/batik/
-   cp -r $srcdir/batik-$pkgver/lib/*.jar $pkgdir/usr/share/java/batik/
+   ln -s batik-all-${pkgver}.jar 
$pkgdir/usr/share/java/batik/batik-all.jar
+   cp $srcdir/batik-$pkgver/lib/*.jar $pkgdir/usr/share/java/batik/
 }


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 23:41:52
  Author: foutrelis
Revision: 135309

archrelease: copy trunk to community-any

Added:
  java-batik/repos/community-any/PKGBUILD
(from rev 135308, java-batik/trunk/PKGBUILD)
Deleted:
  java-batik/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-14 21:41:45 UTC (rev 135308)
+++ PKGBUILD2015-06-14 21:41:52 UTC (rev 135309)
@@ -1,30 +0,0 @@
-# Maintainer: Lukas Fleischer archlinux at crpyotcrack dot de
-# Contributor: Stefan Husmann stefan-husm...@t-online.de
-# Contributor: Simon Lipp sloonz+...@gmail.com
-
-pkgname=java-batik
-pkgver=1.8
-pkgrel=1
-pkgdesc='SVG library for Java.'
-arch=('any')
-url='http://xmlgraphics.apache.org/batik/'
-license=(APACHE)
-depends=('java-runtime' 'java-commons-io' 'java-commons-logging' 
'java-xmlgraphics-commons')
-makedepends=('java-environment' 'apache-ant' 'unzip')
-source=(https://www.apache.org/dist/xmlgraphics/batik/source/batik-src-${pkgver}.tar.gz{,.asc})
-md5sums=('2d330fce73c15629b9052a1a52d4af24'
- 'SKIP')
-validpgpkeys=('9D5F9D9B3E21B585E8F4551082036989D56B5F17') # Luis Bernardo
-
-build() {
-   cd $srcdir/batik-$pkgver
-   ant all-jar
-}
-
-package() {
-   install -d $pkgdir/usr/share/java/batik
-
-   install -m644 
$srcdir/batik-$pkgver/batik-$pkgver/lib/batik-all-${pkgver}.jar \
- $pkgdir/usr/share/java/batik/
-   cp -r $srcdir/batik-$pkgver/lib/*.jar $pkgdir/usr/share/java/batik/
-}

Copied: java-batik/repos/community-any/PKGBUILD (from rev 135308, 
java-batik/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-14 21:41:52 UTC (rev 135309)
@@ -0,0 +1,31 @@
+# Maintainer: Lukas Fleischer archlinux at crpyotcrack dot de
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: Simon Lipp sloonz+...@gmail.com
+
+pkgname=java-batik
+pkgver=1.8
+pkgrel=2
+pkgdesc='SVG library for Java.'
+arch=('any')
+url='http://xmlgraphics.apache.org/batik/'
+license=(APACHE)
+depends=('java-runtime' 'java-commons-io' 'java-commons-logging' 
'java-xmlgraphics-commons')
+makedepends=('java-environment' 'apache-ant' 'unzip')
+source=(https://www.apache.org/dist/xmlgraphics/batik/source/batik-src-${pkgver}.tar.gz{,.asc})
+md5sums=('2d330fce73c15629b9052a1a52d4af24'
+ 'SKIP')
+validpgpkeys=('9D5F9D9B3E21B585E8F4551082036989D56B5F17') # Luis Bernardo
+
+build() {
+   cd $srcdir/batik-$pkgver
+   ant all-jar
+}
+
+package() {
+   install -d $pkgdir/usr/share/java/batik
+
+   install -m644 
$srcdir/batik-$pkgver/batik-$pkgver/lib/batik-all-${pkgver}.jar \
+ $pkgdir/usr/share/java/batik/
+   ln -s batik-all-${pkgver}.jar 
$pkgdir/usr/share/java/batik/batik-all.jar
+   cp $srcdir/batik-$pkgver/lib/*.jar $pkgdir/usr/share/java/batik/
+}


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:03:21
  Author: foutrelis
Revision: 240746

upgpkg: glade-perl 1.007-9

Perl 5.22 rebuild.

Modified:
  glade-perl/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:01:05 UTC (rev 240745)
+++ PKGBUILD2015-06-14 15:03:21 UTC (rev 240746)
@@ -4,7 +4,7 @@
 pkgname=glade-perl
 _realname=Gtk2-GladeXML
 pkgver=1.007
-pkgrel=8
+pkgrel=9
 pkgdesc=Gtk2-GladeXML perl bindings for glade 2.x
 arch=(i686 x86_64)
 license=('LGPL')
@@ -24,4 +24,12 @@
 package() {
   cd ${srcdir}/${_realname}-${pkgver}
   make DESTDIR=${pkgdir} install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:26:47
  Author: foutrelis
Revision: 240762

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

Added:
  vim/repos/staging-i686/
  vim/repos/staging-i686/PKGBUILD
(from rev 240761, vim/trunk/PKGBUILD)
  vim/repos/staging-i686/archlinux.vim
(from rev 240761, vim/trunk/archlinux.vim)
  vim/repos/staging-i686/gvim.desktop
(from rev 240761, vim/trunk/gvim.desktop)
  vim/repos/staging-i686/gvim.install
(from rev 240761, vim/trunk/gvim.install)
  vim/repos/staging-i686/vimrc
(from rev 240761, vim/trunk/vimrc)
  vim/repos/staging-x86_64/
  vim/repos/staging-x86_64/PKGBUILD
(from rev 240761, vim/trunk/PKGBUILD)
  vim/repos/staging-x86_64/archlinux.vim
(from rev 240761, vim/trunk/archlinux.vim)
  vim/repos/staging-x86_64/gvim.desktop
(from rev 240761, vim/trunk/gvim.desktop)
  vim/repos/staging-x86_64/gvim.install
(from rev 240761, vim/trunk/gvim.install)
  vim/repos/staging-x86_64/vimrc
(from rev 240761, vim/trunk/vimrc)

--+
 staging-i686/PKGBUILD|  393 +
 staging-i686/archlinux.vim   |   25 ++
 staging-i686/gvim.desktop|   63 ++
 staging-i686/gvim.install|   15 +
 staging-i686/vimrc   |   16 +
 staging-x86_64/PKGBUILD  |  393 +
 staging-x86_64/archlinux.vim |   25 ++
 staging-x86_64/gvim.desktop  |   63 ++
 staging-x86_64/gvim.install  |   15 +
 staging-x86_64/vimrc |   16 +
 10 files changed, 1024 insertions(+)

Copied: vim/repos/staging-i686/PKGBUILD (from rev 240761, vim/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-06-14 15:26:47 UTC (rev 240762)
@@ -0,0 +1,393 @@
+# $Id$
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+# Contributor: Jan heftig Steffens jan.steff...@gmail.com
+# Contributor: tobias [ tobias at archlinux org ]
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgbase=vim
+pkgname=('vim-minimal' 'vim' 'vim-python3' 'gvim' 'gvim-python3' 'vim-runtime')
+# list of tags can be found at https://code.google.com/p/vim/source/list
+_topver=7.4
+_patchlevel=729
+_tag=v${_topver/./-}-${_patchlevel}
+_versiondir=vim${_topver//./}
+pkgver=${_topver}.${_patchlevel}
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('custom:vim')
+url=http://www.vim.org;
+makedepends=('gpm' 'python2' 'python' 'ruby' 'libxt' 'desktop-file-utils' 
'gtk2' 'lua' 'mercurial')
+# It would be great to use downloadable archives 
https://vim.googlecode.com/archive/$tag.tar.gz
+# unfortunately its content changes each time you download one (files 
modification date is different)
+source=(${pkgbase}-repo::hg+https://vim.googlecode.com/hg#tag=${_tag};
+'vimrc'
+'archlinux.vim'
+'gvim.desktop')
+sha1sums=('SKIP'
+  '15ebf3f48693f1f219fe2d8edb7643683139eb6b'
+  '94f7bb87b5d06bace86bc4b3ef1372813b4eedf2'
+  '4a579cf66590d711f49c5dfb4a25e5df116ff7ba')
+
+prepare() {
+  cd ${pkgbase}-repo
+
+  _latesttag=$(hg parents --template '{latesttag}' -r default)
+  if (( $_tag != $_latesttag )); then
+printf 'You are not building the latest revision!\n'
+printf Consider updating to tag $_latesttag.\n
+  fi
+
+  # define the place for the global (g)vimrc file (set to /etc/vimrc)
+  sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*\) .*$|\1|' \
+src/feature.h
+  sed -i 's|^.*\(#define VIMRC_FILE.*\) .*$|\1|' \
+src/feature.h
+
+  (cd src  autoconf)
+
+  cd ..
+  for pkg in ${pkgname[@]}
+  do
+cp -a ${pkgbase}-repo ${pkg}-build
+  done
+}
+
+build() {
+  cd ${srcdir}/vim-runtime-build
+
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=no \
+--disable-gui \
+--enable-multibyte \
+--enable-cscope \
+--disable-netbeans \
+--enable-perlinterp \
+--disable-pythoninterp \
+--disable-python3interp \
+--disable-rubyinterp \
+--disable-luainterp
+
+  make
+
+  cd ${srcdir}/vim-minimal-build
+
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=no \
+--disable-gui \
+--enable-multibyte \
+--enable-cscope \
+--disable-netbeans \
+--enable-perlinterp \
+--disable-pythoninterp \
+--disable-python3interp \
+--disable-rubyinterp \
+--disable-luainterp
+
+  make
+
+  cd ${srcdir}/vim-build
+
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=no \
+--disable-gui \
+--enable-multibyte \
+--enable-cscope \
+--enable-netbeans \
+   

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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:26:11
  Author: foutrelis
Revision: 240758

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

Added:
  perl-crypt-ssleay/repos/staging-i686/
  perl-crypt-ssleay/repos/staging-i686/PKGBUILD
(from rev 240757, perl-crypt-ssleay/trunk/PKGBUILD)
  perl-crypt-ssleay/repos/staging-x86_64/
  perl-crypt-ssleay/repos/staging-x86_64/PKGBUILD
(from rev 240757, perl-crypt-ssleay/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   45 +
 staging-x86_64/PKGBUILD |   45 +
 2 files changed, 90 insertions(+)

Copied: perl-crypt-ssleay/repos/staging-i686/PKGBUILD (from rev 240757, 
perl-crypt-ssleay/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-06-14 15:26:11 UTC (rev 240758)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-crypt-ssleay
+pkgver=0.72
+pkgrel=3
+pkgdesc=OpenSSL glue that provides LWP https support
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Crypt-SSLeay;
+license=('GPL' 'PerlArtistic')
+depends=('perl-lwp-protocol-https' 'perl-try-tiny' 'perl-path-class')
+options=('!emptydirs')
+source=(http://www.cpan.org/CPAN/authors/id/N/NA/NANIS/Crypt-SSLeay-$pkgver.tar.gz)
+md5sums=('77d955c9056dbb12413d95d8852a9cdf')
+
+build() {
+  cd  ${srcdir}/Crypt-SSLeay-${pkgver}
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd  ${srcdir}/Crypt-SSLeay-${pkgver}
+
+  make test
+}
+
+package() {
+  cd  ${srcdir}/Crypt-SSLeay-${pkgver}
+
+  make install DESTDIR=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Copied: perl-crypt-ssleay/repos/staging-x86_64/PKGBUILD (from rev 240757, 
perl-crypt-ssleay/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-06-14 15:26:11 UTC (rev 240758)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-crypt-ssleay
+pkgver=0.72
+pkgrel=3
+pkgdesc=OpenSSL glue that provides LWP https support
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Crypt-SSLeay;
+license=('GPL' 'PerlArtistic')
+depends=('perl-lwp-protocol-https' 'perl-try-tiny' 'perl-path-class')
+options=('!emptydirs')
+source=(http://www.cpan.org/CPAN/authors/id/N/NA/NANIS/Crypt-SSLeay-$pkgver.tar.gz)
+md5sums=('77d955c9056dbb12413d95d8852a9cdf')
+
+build() {
+  cd  ${srcdir}/Crypt-SSLeay-${pkgver}
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd  ${srcdir}/Crypt-SSLeay-${pkgver}
+
+  make test
+}
+
+package() {
+  cd  ${srcdir}/Crypt-SSLeay-${pkgver}
+
+  make install DESTDIR=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:26:05
  Author: foutrelis
Revision: 240757

upgpkg: perl-crypt-ssleay 0.72-3

Perl 5.22 rebuild.

Modified:
  perl-crypt-ssleay/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:20:53 UTC (rev 240756)
+++ PKGBUILD2015-06-14 15:26:05 UTC (rev 240757)
@@ -4,7 +4,7 @@
 
 pkgname=perl-crypt-ssleay
 pkgver=0.72
-pkgrel=2
+pkgrel=3
 pkgdesc=OpenSSL glue that provides LWP https support
 arch=('i686' 'x86_64')
 url=http://search.cpan.org/dist/Crypt-SSLeay;
@@ -11,7 +11,7 @@
 license=('GPL' 'PerlArtistic')
 depends=('perl-lwp-protocol-https' 'perl-try-tiny' 'perl-path-class')
 options=('!emptydirs')
-source=(http://www.cpan.org/CPAN/authors/id/N/NA/NANIS/Crypt-SSLeay-$pkgver.tar.gz)
 
+source=(http://www.cpan.org/CPAN/authors/id/N/NA/NANIS/Crypt-SSLeay-$pkgver.tar.gz)
 md5sums=('77d955c9056dbb12413d95d8852a9cdf')
 
 build() {
@@ -34,4 +34,12 @@
 
   find ${pkgdir} -name '.packlist' -delete
   find ${pkgdir} -name '*.pod' -delete
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:26:32
  Author: foutrelis
Revision: 240760

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

Added:
  libproxy/repos/staging-i686/
  libproxy/repos/staging-i686/0001-pacrunner_mozjs-Also-support-mozjs-17.0.patch
(from rev 240759, 
libproxy/trunk/0001-pacrunner_mozjs-Also-support-mozjs-17.0.patch)
  libproxy/repos/staging-i686/PKGBUILD
(from rev 240759, libproxy/trunk/PKGBUILD)
  libproxy/repos/staging-i686/dont_segfault_on_exit.patch
(from rev 240759, libproxy/trunk/dont_segfault_on_exit.patch)
  libproxy/repos/staging-i686/libproxy-0.4.11-crash.patch
(from rev 240759, libproxy/trunk/libproxy-0.4.11-crash.patch)
  libproxy/repos/staging-i686/libproxy-0.4.11-fdleak.patch
(from rev 240759, libproxy/trunk/libproxy-0.4.11-fdleak.patch)
  libproxy/repos/staging-x86_64/
  
libproxy/repos/staging-x86_64/0001-pacrunner_mozjs-Also-support-mozjs-17.0.patch
(from rev 240759, 
libproxy/trunk/0001-pacrunner_mozjs-Also-support-mozjs-17.0.patch)
  libproxy/repos/staging-x86_64/PKGBUILD
(from rev 240759, libproxy/trunk/PKGBUILD)
  libproxy/repos/staging-x86_64/dont_segfault_on_exit.patch
(from rev 240759, libproxy/trunk/dont_segfault_on_exit.patch)
  libproxy/repos/staging-x86_64/libproxy-0.4.11-crash.patch
(from rev 240759, libproxy/trunk/libproxy-0.4.11-crash.patch)
  libproxy/repos/staging-x86_64/libproxy-0.4.11-fdleak.patch
(from rev 240759, libproxy/trunk/libproxy-0.4.11-fdleak.patch)

---+
 staging-i686/0001-pacrunner_mozjs-Also-support-mozjs-17.0.patch   |   90 
++
 staging-i686/PKGBUILD |   59 ++
 staging-i686/dont_segfault_on_exit.patch  |   14 +
 staging-i686/libproxy-0.4.11-crash.patch  |   41 
 staging-i686/libproxy-0.4.11-fdleak.patch |   20 ++
 staging-x86_64/0001-pacrunner_mozjs-Also-support-mozjs-17.0.patch |   90 
++
 staging-x86_64/PKGBUILD   |   59 ++
 staging-x86_64/dont_segfault_on_exit.patch|   14 +
 staging-x86_64/libproxy-0.4.11-crash.patch|   41 
 staging-x86_64/libproxy-0.4.11-fdleak.patch   |   20 ++
 10 files changed, 448 insertions(+)

Copied: 
libproxy/repos/staging-i686/0001-pacrunner_mozjs-Also-support-mozjs-17.0.patch 
(from rev 240759, 
libproxy/trunk/0001-pacrunner_mozjs-Also-support-mozjs-17.0.patch)
===
--- staging-i686/0001-pacrunner_mozjs-Also-support-mozjs-17.0.patch 
(rev 0)
+++ staging-i686/0001-pacrunner_mozjs-Also-support-mozjs-17.0.patch 
2015-06-14 15:26:32 UTC (rev 240760)
@@ -0,0 +1,90 @@
+From 44ce0c8a251d987d0d83f05e93d31aa659d7 Mon Sep 17 00:00:00 2001
+From: Colin Walters walt...@verbum.org
+Date: Mon, 3 Jun 2013 17:09:25 -0400
+Subject: [PATCH] pacrunner_mozjs: Also support mozjs-17.0
+
+GNOME 3.10 is moving to hard require mozjs-17.0, so we should support
+it too.  See also:
+
+https://bugs.freedesktop.org/show_bug.cgi?id=59830
+https://bugzilla.gnome.org/show_bug.cgi?id=690982
+---
+ libproxy/cmake/modules/pacrunner_mozjs.cmk |8 +++-
+ libproxy/modules/pacrunner_mozjs.cpp   |   16 +---
+ 2 files changed, 20 insertions(+), 4 deletions(-)
+
+diff --git a/libproxy/cmake/modules/pacrunner_mozjs.cmk 
b/libproxy/cmake/modules/pacrunner_mozjs.cmk
+index 21072db..49856a6 100644
+--- a/libproxy/cmake/modules/pacrunner_mozjs.cmk
 b/libproxy/cmake/modules/pacrunner_mozjs.cmk
+@@ -14,7 +14,13 @@ elseif(NOT APPLE)
+   include_directories(${MOZJS_INCLUDE_DIRS})
+   link_directories(${MOZJS_LIBRARY_DIRS})
+ else()
+-  set(MOZJS_FOUND 0)
++  pkg_search_module(MOZJS mozjs-17.0)
++  if(MOZJS_FOUND)
++include_directories(${MOZJS_INCLUDE_DIRS})
++link_directories(${MOZJS_LIBRARY_DIRS})
++  else()
++set(MOZJS_FOUND 0)
++  endif()
+ endif()
+   else()
+ set(MOZJS_FOUND 0)
+diff --git a/libproxy/modules/pacrunner_mozjs.cpp 
b/libproxy/modules/pacrunner_mozjs.cpp
+index abb4b9d..f5e678c 100644
+--- a/libproxy/modules/pacrunner_mozjs.cpp
 b/libproxy/modules/pacrunner_mozjs.cpp
+@@ -19,6 +19,7 @@
+ 
+ #include cstring // ?
+ #include unistd.h // gethostname
++#include stdint.h
+ 
+ #include ../extension_pacrunner.hpp
+ using namespace libproxy;
+@@ -76,12 +77,12 @@ static JSBool dnsResolve_(JSContext *cx, jsval hostname, 
jsval *vp) {
+   return true;
+ }
+ 
+-static JSBool dnsResolve(JSContext *cx, uintN /*argc*/, jsval *vp) {
++static JSBool dnsResolve(JSContext *cx, uint32_t /*argc*/, jsval *vp) {
+   jsval *argv = JS_ARGV(cx, vp);
+   return dnsResolve_(cx, argv[0], vp);
+ }
+ 
+-static JSBool myIpAddress(JSContext *cx, uintN /*argc*/, jsval *vp) {
++static JSBool 

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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:26:33
  Author: foutrelis
Revision: 240761

upgpkg: vim 7.4.729-2

Perl 5.22 rebuild.

Modified:
  vim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:26:32 UTC (rev 240760)
+++ PKGBUILD2015-06-14 15:26:33 UTC (rev 240761)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Thomas Dziedzic gos...@gmail.com
 # Contributor: Jan heftig Steffens jan.steff...@gmail.com
 # Contributor: tobias [ tobias at archlinux org ]
@@ -11,7 +12,7 @@
 _tag=v${_topver/./-}-${_patchlevel}
 _versiondir=vim${_topver//./}
 pkgver=${_topver}.${_patchlevel}
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('custom:vim')
 url=http://www.vim.org;


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 17:26:20
  Author: foutrelis
Revision: 240759

upgpkg: libproxy 0.4.11-6

Perl 5.22 rebuild.

Modified:
  libproxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 15:26:11 UTC (rev 240758)
+++ PKGBUILD2015-06-14 15:26:20 UTC (rev 240759)
@@ -3,7 +3,7 @@
 
 pkgname=libproxy
 pkgver=0.4.11
-pkgrel=5
+pkgrel=6
 pkgdesc=A library that provides automatic proxy configuration management
 arch=(i686 x86_64)
 license=('LGPL')


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 20:09:30
  Author: foutrelis
Revision: 135304

upgpkg: pork 0.99.8.1-9

Perl 5.22 rebuild.

Modified:
  pork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 16:55:24 UTC (rev 135303)
+++ PKGBUILD2015-06-14 18:09:30 UTC (rev 135304)
@@ -4,7 +4,7 @@
 
 pkgname=pork
 pkgver=0.99.8.1
-pkgrel=8
+pkgrel=9
 pkgdesc=Console-based AOL Instant Messenger  IRC client
 arch=('i686' 'x86_64')
 url=http://dev.ojnk.net/;
@@ -16,6 +16,8 @@
 build() {
   cd $pkgname-$pkgver
 
+  CFLAGS+=' -fgnu89-inline'
+
   ./configure --prefix=/usr
   make
 }


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

2015-06-14 Thread Evangelos Foutras
Date: Sunday, June 14, 2015 @ 20:09:40
  Author: foutrelis
Revision: 135305

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

Added:
  pork/repos/community-staging-i686/
  pork/repos/community-staging-i686/PKGBUILD
(from rev 135304, pork/trunk/PKGBUILD)
  pork/repos/community-staging-x86_64/
  pork/repos/community-staging-x86_64/PKGBUILD
(from rev 135304, pork/trunk/PKGBUILD)

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

Copied: pork/repos/community-staging-i686/PKGBUILD (from rev 135304, 
pork/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-14 18:09:40 UTC (rev 135305)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=pork
+pkgver=0.99.8.1
+pkgrel=9
+pkgdesc=Console-based AOL Instant Messenger  IRC client
+arch=('i686' 'x86_64')
+url=http://dev.ojnk.net/;
+license=('GPL')
+depends=('ncurses' 'perl')
+source=(http://downloads.sourceforge.net/sourceforge/ojnk/$pkgname-$pkgver.tar.gz)
+sha256sums=('f0d4cad21017fd75b3c200342c54dd56d9ff7bc38d1e9b3c8ba686ba53d585ed')
+
+build() {
+  cd $pkgname-$pkgver
+
+  CFLAGS+=' -fgnu89-inline'
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Copied: pork/repos/community-staging-x86_64/PKGBUILD (from rev 135304, 
pork/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-14 18:09:40 UTC (rev 135305)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=pork
+pkgver=0.99.8.1
+pkgrel=9
+pkgdesc=Console-based AOL Instant Messenger  IRC client
+arch=('i686' 'x86_64')
+url=http://dev.ojnk.net/;
+license=('GPL')
+depends=('ncurses' 'perl')
+source=(http://downloads.sourceforge.net/sourceforge/ojnk/$pkgname-$pkgver.tar.gz)
+sha256sums=('f0d4cad21017fd75b3c200342c54dd56d9ff7bc38d1e9b3c8ba686ba53d585ed')
+
+build() {
+  cd $pkgname-$pkgver
+
+  CFLAGS+=' -fgnu89-inline'
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}


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

2015-06-14 Thread Jelle van der Waa
Date: Sunday, June 14, 2015 @ 20:32:55
  Author: jelle
Revision: 135306

upgpkg: python2-eyed3 0.7.8-1

Modified:
  python2-eyed3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 18:09:40 UTC (rev 135305)
+++ PKGBUILD2015-06-14 18:32:55 UTC (rev 135306)
@@ -4,7 +4,7 @@
 # Contributor: cdhotfire cdhotf...@gmail.com
 
 pkgname=python2-eyed3
-pkgver=0.7.5
+pkgver=0.7.8
 pkgrel=1
 pkgdesc=A Python module and program for processing information about mp3 
files
 arch=(any)
@@ -12,9 +12,9 @@
 license=('GPL')
 depends=('python2')
 makedepends=('python2-setuptools')
-source=(http://eyed3.nicfit.net/releases/eyeD3-$pkgver.tgz)
+source=(http://eyed3.nicfit.net/releases/eyeD3-$pkgver.tar.gz)
 options=(!emptydirs)
-md5sums=('b8fe9582ffce1dd10bbe1babe47f8cc4')
+md5sums=('2783538edb56d7f583b7c8a5801b51dc')
 
 build() {
   cd $srcdir/eyeD3-$pkgver


[arch-commits] Commit in python2-eyed3/repos/community-any (4 files)

2015-06-14 Thread Jelle van der Waa
Date: Sunday, June 14, 2015 @ 20:33:02
  Author: jelle
Revision: 135307

archrelease: copy trunk to community-any

Added:
  python2-eyed3/repos/community-any/PKGBUILD
(from rev 135306, python2-eyed3/trunk/PKGBUILD)
  python2-eyed3/repos/community-any/fix_setting_tcmp_frame.patch
(from rev 135306, python2-eyed3/trunk/fix_setting_tcmp_frame.patch)
Deleted:
  python2-eyed3/repos/community-any/PKGBUILD
  python2-eyed3/repos/community-any/fix_setting_tcmp_frame.patch

--+
 PKGBUILD |   56 -
 fix_setting_tcmp_frame.patch |   42 +++---
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-14 18:32:55 UTC (rev 135306)
+++ PKGBUILD2015-06-14 18:33:02 UTC (rev 135307)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Aaron Griffin aa...@archlinux.org
-# Contributor: Federico Quagliata (quaqo) qu...@despammed.com
-# Contributor: cdhotfire cdhotf...@gmail.com
-
-pkgname=python2-eyed3
-pkgver=0.7.5
-pkgrel=1
-pkgdesc=A Python module and program for processing information about mp3 
files
-arch=(any)
-url=http://eyed3.nicfit.net/;
-license=('GPL')
-depends=('python2')
-makedepends=('python2-setuptools')
-source=(http://eyed3.nicfit.net/releases/eyeD3-$pkgver.tgz)
-options=(!emptydirs)
-md5sums=('b8fe9582ffce1dd10bbe1babe47f8cc4')
-
-build() {
-  cd $srcdir/eyeD3-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $srcdir/eyeD3-$pkgver
-  python2 setup.py install --root=${pkgdir} --optimize=1
-  sed -i 's/python/python2/' $pkgdir/usr/bin/eyeD3
-}

Copied: python2-eyed3/repos/community-any/PKGBUILD (from rev 135306, 
python2-eyed3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-14 18:33:02 UTC (rev 135307)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Aaron Griffin aa...@archlinux.org
+# Contributor: Federico Quagliata (quaqo) qu...@despammed.com
+# Contributor: cdhotfire cdhotf...@gmail.com
+
+pkgname=python2-eyed3
+pkgver=0.7.8
+pkgrel=1
+pkgdesc=A Python module and program for processing information about mp3 
files
+arch=(any)
+url=http://eyed3.nicfit.net/;
+license=('GPL')
+depends=('python2')
+makedepends=('python2-setuptools')
+source=(http://eyed3.nicfit.net/releases/eyeD3-$pkgver.tar.gz)
+options=(!emptydirs)
+md5sums=('2783538edb56d7f583b7c8a5801b51dc')
+
+build() {
+  cd $srcdir/eyeD3-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $srcdir/eyeD3-$pkgver
+  python2 setup.py install --root=${pkgdir} --optimize=1
+  sed -i 's/python/python2/' $pkgdir/usr/bin/eyeD3
+}

Deleted: fix_setting_tcmp_frame.patch
===
--- fix_setting_tcmp_frame.patch2015-06-14 18:32:55 UTC (rev 135306)
+++ fix_setting_tcmp_frame.patch2015-06-14 18:33:02 UTC (rev 135307)
@@ -1,21 +0,0 @@
-# HG changeset patch
-# User Travis Shirk tra...@pobox.com
-# Date 1366683753 21600
-# Branch stable
-# Node ID bfbfc2c5709c4084ecaeed3410600d94d2a21a0d
-# Parent  e2ebd8a246ecca8340bbc4ac858c7a946524571f
-Fix for setting of non standard text frames. Fixes #26
-
-diff -r e2ebd8a246ecca8340bbc4ac858c7a946524571f -r 
bfbfc2c5709c4084ecaeed3410600d94d2a21a0d src/eyed3/id3/frames.py
 a/src/eyed3/id3/frames.py  Wed Mar 13 21:28:01 2013 -0600
-+++ b/src/eyed3/id3/frames.py  Mon Apr 22 20:22:33 2013 -0600
-@@ -1364,7 +1364,8 @@
- the same Id is already in the list it's value is changed, otherwise
- the frame is added.
- '''
--assert(fid[0] == T and fid in list(ID3_FRAMES.keys()))
-+assert(fid[0] == T and (fid in ID3_FRAMES or
-+  fid in NONSTANDARD_ID3_FRAMES))
- 
- if fid in self:
- self[fid][0].text = text

Copied: python2-eyed3/repos/community-any/fix_setting_tcmp_frame.patch (from 
rev 135306, python2-eyed3/trunk/fix_setting_tcmp_frame.patch)
===
--- fix_setting_tcmp_frame.patch(rev 0)
+++ fix_setting_tcmp_frame.patch2015-06-14 18:33:02 UTC (rev 135307)
@@ -0,0 +1,21 @@
+# HG changeset patch
+# User Travis Shirk tra...@pobox.com
+# Date 1366683753 21600
+# Branch stable
+# Node ID bfbfc2c5709c4084ecaeed3410600d94d2a21a0d
+# Parent  e2ebd8a246ecca8340bbc4ac858c7a946524571f
+Fix for setting of non standard text frames. Fixes #26
+
+diff -r e2ebd8a246ecca8340bbc4ac858c7a946524571f -r 
bfbfc2c5709c4084ecaeed3410600d94d2a21a0d src/eyed3/id3/frames.py
+--- a/src/eyed3/id3/frames.py  Wed Mar 13 21:28:01 2013 -0600
 b/src/eyed3/id3/frames.py  Mon Apr 22 20:22:33 2013 -0600
+@@ -1364,7 +1364,8 @@
+ the same Id is already in the list it's value is changed, otherwise
+ the frame is added.
+ '''
+-assert(fid[0] == T and 

[arch-commits] Commit in nss-pam-ldapd/repos (16 files)

2015-06-14 Thread Johannes Löthberg
Date: Monday, June 15, 2015 @ 00:33:02
  Author: demize
Revision: 135311

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

Added:
  nss-pam-ldapd/repos/community-i686/PKGBUILD
(from rev 135310, nss-pam-ldapd/trunk/PKGBUILD)
  nss-pam-ldapd/repos/community-i686/nslcd.service
(from rev 135310, nss-pam-ldapd/trunk/nslcd.service)
  nss-pam-ldapd/repos/community-i686/nslcd.tmpfiles
(from rev 135310, nss-pam-ldapd/trunk/nslcd.tmpfiles)
  nss-pam-ldapd/repos/community-i686/nss-pam-ldapd.install
(from rev 135310, nss-pam-ldapd/trunk/nss-pam-ldapd.install)
  nss-pam-ldapd/repos/community-x86_64/PKGBUILD
(from rev 135310, nss-pam-ldapd/trunk/PKGBUILD)
  nss-pam-ldapd/repos/community-x86_64/nslcd.service
(from rev 135310, nss-pam-ldapd/trunk/nslcd.service)
  nss-pam-ldapd/repos/community-x86_64/nslcd.tmpfiles
(from rev 135310, nss-pam-ldapd/trunk/nslcd.tmpfiles)
  nss-pam-ldapd/repos/community-x86_64/nss-pam-ldapd.install
(from rev 135310, nss-pam-ldapd/trunk/nss-pam-ldapd.install)
Deleted:
  nss-pam-ldapd/repos/community-i686/PKGBUILD
  nss-pam-ldapd/repos/community-i686/nslcd.service
  nss-pam-ldapd/repos/community-i686/nslcd.tmpfiles
  nss-pam-ldapd/repos/community-i686/nss-pam-ldapd.install
  nss-pam-ldapd/repos/community-x86_64/PKGBUILD
  nss-pam-ldapd/repos/community-x86_64/nslcd.service
  nss-pam-ldapd/repos/community-x86_64/nslcd.tmpfiles
  nss-pam-ldapd/repos/community-x86_64/nss-pam-ldapd.install

+
 /PKGBUILD  |  126 +++
 /nslcd.service |   24 +
 /nslcd.tmpfiles|2 
 /nss-pam-ldapd.install |   46 +++
 community-i686/PKGBUILD|   62 ---
 community-i686/nslcd.service   |   12 --
 community-i686/nslcd.tmpfiles  |1 
 community-i686/nss-pam-ldapd.install   |   23 -
 community-x86_64/PKGBUILD  |   62 ---
 community-x86_64/nslcd.service |   12 --
 community-x86_64/nslcd.tmpfiles|1 
 community-x86_64/nss-pam-ldapd.install |   23 -
 12 files changed, 198 insertions(+), 196 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-14 22:32:46 UTC (rev 135310)
+++ community-i686/PKGBUILD 2015-06-14 22:33:02 UTC (rev 135311)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg johan...@kyriasis.com
-# Contributor: Federico Cinelli cine...@aur.archlinux.org
-
-pkgname=nss-pam-ldapd
-pkgver=0.9.5
-pkgrel=4
-
-pkgdesc='LDAP module for NSS and PAM'
-url=http://arthurdejong.org/nss-pam-ldapd/;
-arch=('i686' 'x86_64')
-license=('LGPL2.1')
-
-depends=('pam')
-conflicts=('pam_ldap')
-
-provides=('nslcd')
-
-backup=('etc/nslcd.conf')
-
-options=('!emptydirs')
-
-install=nss-pam-ldapd.install
-
-source=(http://arthurdejong.org/nss-pam-ldapd/nss-pam-ldapd-$pkgver.tar.gz{,.sig}
-nslcd.service
-nslcd.tmpfiles)
-
-md5sums=('1f0517d2c46ca1d8ecdbe23a671edc83' 'SKIP'
- 'c2edd35bab384c907eb442c606de856f'
- 'd78a702ae9e81af03ae0a85a6af4d2f3')
-
-validpgpkeys=('452EC2CB65CF68C2A1ADBF5F2A8B746810E0AFC1')
-
-build() {
-  cd nss-pam-ldapd-$pkgver
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var \
---with-pam-seclib-dir=/usr/lib/security
-
-  make
-}
-
-check() {
-  cd nss-pam-ldapd-$pkgver
-  PYTHON=python2 make check
-}
-
-package() {
-  cd nss-pam-ldapd-$pkgver
-
-  install -Dm644 $srcdir/nslcd.tmpfiles 
$pkgdir/usr/lib/tmpfiles.d/nslcd.conf
-  install -Dm644 $srcdir/nslcd.service 
$pkgdir/usr/lib/systemd/system/nslcd.service
-  install -Dm644 $srcdir/$pkgname-$pkgver/nslcd.conf $pkgdir/etc/nslcd.conf
-
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nss-pam-ldapd/repos/community-i686/PKGBUILD (from rev 135310, 
nss-pam-ldapd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-14 22:33:02 UTC (rev 135311)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Johannes Löthberg johan...@kyriasis.com
+# Contributor: Federico Cinelli cine...@aur.archlinux.org
+
+pkgname=nss-pam-ldapd
+pkgver=0.9.6
+pkgrel=1
+
+pkgdesc='LDAP module for NSS and PAM'
+url=http://arthurdejong.org/nss-pam-ldapd/;
+arch=('i686' 'x86_64')
+license=('LGPL2.1')
+
+depends=('pam')
+conflicts=('pam_ldap')
+
+provides=('nslcd')
+
+backup=('etc/nslcd.conf')
+
+options=('!emptydirs')
+
+install=nss-pam-ldapd.install
+
+source=(http://arthurdejong.org/nss-pam-ldapd/nss-pam-ldapd-$pkgver.tar.gz{,.sig}
+nslcd.service
+nslcd.tmpfiles)
+
+md5sums=('fa5ec49cb54428d6c73e244a11021695'
+ 'SKIP'
+ 'c2edd35bab384c907eb442c606de856f'
+ 'd78a702ae9e81af03ae0a85a6af4d2f3')
+

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

2015-06-14 Thread Antonio Rojas
Date: Monday, June 15, 2015 @ 01:02:05
  Author: arojas
Revision: 240842

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

Added:
  bluez-qt/repos/extra-i686/PKGBUILD
(from rev 240841, bluez-qt/trunk/PKGBUILD)
  bluez-qt/repos/extra-x86_64/PKGBUILD
(from rev 240841, bluez-qt/trunk/PKGBUILD)
Deleted:
  bluez-qt/repos/extra-i686/PKGBUILD
  bluez-qt/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   72 
 extra-i686/PKGBUILD   |   35 ---
 extra-x86_64/PKGBUILD |   35 ---
 3 files changed, 72 insertions(+), 70 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-14 22:59:19 UTC (rev 240841)
+++ extra-i686/PKGBUILD 2015-06-14 23:02:05 UTC (rev 240842)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-
-pkgname=bluez-qt
-pkgver=5.11.0
-pkgrel=1
-pkgdesc='Qt wrapper for Bluez 5 DBus API'
-arch=(i686 x86_64)
-url='https://projects.kde.org/projects/kde/workspace/bluez-qt'
-license=(GPL2)
-depends=(qt5-declarative bluez)
-makedepends=(extra-cmake-modules)
-conflicts=(libbluedevil-frameworks)
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('909827fc26098c7b4ab48c7228801e16')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DUDEV_RULES_INSTALL_DIR=/usr/lib/udev/rules.d
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: bluez-qt/repos/extra-i686/PKGBUILD (from rev 240841, 
bluez-qt/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-14 23:02:05 UTC (rev 240842)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=bluez-qt
+pkgver=5.11.0
+pkgrel=1
+pkgdesc='Qt wrapper for Bluez 5 DBus API'
+arch=(i686 x86_64)
+url='https://projects.kde.org/projects/frameworks/bluez-qt'
+license=(GPL2)
+depends=(qt5-declarative bluez)
+makedepends=(extra-cmake-modules)
+conflicts=(libbluedevil-frameworks)
+groups=(kf5)
+source=(http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('909827fc26098c7b4ab48c7228801e16')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DUDEV_RULES_INSTALL_DIR=/usr/lib/udev/rules.d
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-14 22:59:19 UTC (rev 240841)
+++ extra-x86_64/PKGBUILD   2015-06-14 23:02:05 UTC (rev 240842)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-
-pkgname=bluez-qt
-pkgver=5.11.0
-pkgrel=1
-pkgdesc='Qt wrapper for Bluez 5 DBus API'
-arch=(i686 x86_64)
-url='https://projects.kde.org/projects/kde/workspace/bluez-qt'
-license=(GPL2)
-depends=(qt5-declarative bluez)
-makedepends=(extra-cmake-modules)
-conflicts=(libbluedevil-frameworks)
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('909827fc26098c7b4ab48c7228801e16')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DUDEV_RULES_INSTALL_DIR=/usr/lib/udev/rules.d
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: bluez-qt/repos/extra-x86_64/PKGBUILD (from rev 240841, 
bluez-qt/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-14 23:02:05 UTC (rev 240842)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=bluez-qt
+pkgver=5.11.0
+pkgrel=1
+pkgdesc='Qt wrapper for Bluez 5 DBus API'
+arch=(i686 x86_64)
+url='https://projects.kde.org/projects/frameworks/bluez-qt'
+license=(GPL2)
+depends=(qt5-declarative bluez)
+makedepends=(extra-cmake-modules)
+conflicts=(libbluedevil-frameworks)
+groups=(kf5)
+source=(http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('909827fc26098c7b4ab48c7228801e16')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_LIBDIR=lib \
+

[arch-commits] Commit in inetutils/repos (36 files)

2015-06-14 Thread Eric Bélanger
Date: Monday, June 15, 2015 @ 03:30:24
  Author: eric
Revision: 240846

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

Added:
  inetutils/repos/testing-i686/
  inetutils/repos/testing-i686/PKGBUILD
(from rev 240845, inetutils/trunk/PKGBUILD)
  inetutils/repos/testing-i686/ftpd.service
(from rev 240845, inetutils/trunk/ftpd.service)
  inetutils/repos/testing-i686/inetutils.install
(from rev 240845, inetutils/trunk/inetutils.install)
  inetutils/repos/testing-i686/rlogin.pam
(from rev 240845, inetutils/trunk/rlogin.pam)
  inetutils/repos/testing-i686/rlogin.socket
(from rev 240845, inetutils/trunk/rlogin.socket)
  inetutils/repos/testing-i686/rlogin.xinetd
(from rev 240845, inetutils/trunk/rlogin.xinetd)
  inetutils/repos/testing-i686/rlogin@.service
(from rev 240845, inetutils/trunk/rlogin@.service)
  inetutils/repos/testing-i686/rsh.pam
(from rev 240845, inetutils/trunk/rsh.pam)
  inetutils/repos/testing-i686/rsh.socket
(from rev 240845, inetutils/trunk/rsh.socket)
  inetutils/repos/testing-i686/rsh.xinetd
(from rev 240845, inetutils/trunk/rsh.xinetd)
  inetutils/repos/testing-i686/rsh@.service
(from rev 240845, inetutils/trunk/rsh@.service)
  inetutils/repos/testing-i686/talk.service
(from rev 240845, inetutils/trunk/talk.service)
  inetutils/repos/testing-i686/talk.socket
(from rev 240845, inetutils/trunk/talk.socket)
  inetutils/repos/testing-i686/talk.xinetd
(from rev 240845, inetutils/trunk/talk.xinetd)
  inetutils/repos/testing-i686/telnet.socket
(from rev 240845, inetutils/trunk/telnet.socket)
  inetutils/repos/testing-i686/telnet.xinetd
(from rev 240845, inetutils/trunk/telnet.xinetd)
  inetutils/repos/testing-i686/telnet@.service
(from rev 240845, inetutils/trunk/telnet@.service)
  inetutils/repos/testing-x86_64/
  inetutils/repos/testing-x86_64/PKGBUILD
(from rev 240845, inetutils/trunk/PKGBUILD)
  inetutils/repos/testing-x86_64/ftpd.service
(from rev 240845, inetutils/trunk/ftpd.service)
  inetutils/repos/testing-x86_64/inetutils.install
(from rev 240845, inetutils/trunk/inetutils.install)
  inetutils/repos/testing-x86_64/rlogin.pam
(from rev 240845, inetutils/trunk/rlogin.pam)
  inetutils/repos/testing-x86_64/rlogin.socket
(from rev 240845, inetutils/trunk/rlogin.socket)
  inetutils/repos/testing-x86_64/rlogin.xinetd
(from rev 240845, inetutils/trunk/rlogin.xinetd)
  inetutils/repos/testing-x86_64/rlogin@.service
(from rev 240845, inetutils/trunk/rlogin@.service)
  inetutils/repos/testing-x86_64/rsh.pam
(from rev 240845, inetutils/trunk/rsh.pam)
  inetutils/repos/testing-x86_64/rsh.socket
(from rev 240845, inetutils/trunk/rsh.socket)
  inetutils/repos/testing-x86_64/rsh.xinetd
(from rev 240845, inetutils/trunk/rsh.xinetd)
  inetutils/repos/testing-x86_64/rsh@.service
(from rev 240845, inetutils/trunk/rsh@.service)
  inetutils/repos/testing-x86_64/talk.service
(from rev 240845, inetutils/trunk/talk.service)
  inetutils/repos/testing-x86_64/talk.socket
(from rev 240845, inetutils/trunk/talk.socket)
  inetutils/repos/testing-x86_64/talk.xinetd
(from rev 240845, inetutils/trunk/talk.xinetd)
  inetutils/repos/testing-x86_64/telnet.socket
(from rev 240845, inetutils/trunk/telnet.socket)
  inetutils/repos/testing-x86_64/telnet.xinetd
(from rev 240845, inetutils/trunk/telnet.xinetd)
  inetutils/repos/testing-x86_64/telnet@.service
(from rev 240845, inetutils/trunk/telnet@.service)

--+
 testing-i686/PKGBUILD|   90 +
 testing-i686/ftpd.service|   12 
 testing-i686/inetutils.install   |   24 +
 testing-i686/rlogin.pam  |   13 +
 testing-i686/rlogin.socket   |9 +++
 testing-i686/rlogin.xinetd   |   10 
 testing-i686/rlogin@.service |7 ++
 testing-i686/rsh.pam |   11 
 testing-i686/rsh.socket  |9 +++
 testing-i686/rsh.xinetd  |   10 
 testing-i686/rsh@.service|7 ++
 testing-i686/talk.service|   12 
 testing-i686/talk.socket |9 +++
 testing-i686/talk.xinetd |   10 
 testing-i686/telnet.socket   |   10 
 testing-i686/telnet.xinetd   |   10 
 testing-i686/telnet@.service |7 ++
 testing-x86_64/PKGBUILD  |   90 +
 testing-x86_64/ftpd.service  |   12 
 testing-x86_64/inetutils.install |   24 +
 testing-x86_64/rlogin.pam|   13 +
 testing-x86_64/rlogin.socket |9 +++
 testing-x86_64/rlogin.xinetd |   10 
 testing-x86_64/rlogin@.service   |7 ++
 testing-x86_64/rsh.pam   |   11 
 testing-x86_64/rsh.socket|9 +++
 testing-x86_64/rsh.xinetd|   10 
 testing-x86_64/rsh@.service  |7 ++
 testing-x86_64/talk.service  |   12 
 testing-x86_64/talk.socket   |9 +++
 

[arch-commits] Commit in nss-pam-ldapd/trunk (PKGBUILD)

2015-06-14 Thread Johannes Löthberg
Date: Monday, June 15, 2015 @ 00:32:46
  Author: demize
Revision: 135310

upgpkg: nss-pam-ldapd 0.9.6-1

Modified:
  nss-pam-ldapd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 21:41:52 UTC (rev 135309)
+++ PKGBUILD2015-06-14 22:32:46 UTC (rev 135310)
@@ -3,8 +3,8 @@
 # Contributor: Federico Cinelli cine...@aur.archlinux.org
 
 pkgname=nss-pam-ldapd
-pkgver=0.9.5
-pkgrel=4
+pkgver=0.9.6
+pkgrel=1
 
 pkgdesc='LDAP module for NSS and PAM'
 url=http://arthurdejong.org/nss-pam-ldapd/;
@@ -26,7 +26,8 @@
 nslcd.service
 nslcd.tmpfiles)
 
-md5sums=('1f0517d2c46ca1d8ecdbe23a671edc83' 'SKIP'
+md5sums=('fa5ec49cb54428d6c73e244a11021695'
+ 'SKIP'
  'c2edd35bab384c907eb442c606de856f'
  'd78a702ae9e81af03ae0a85a6af4d2f3')
 


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

2015-06-14 Thread Antonio Rojas
Date: Monday, June 15, 2015 @ 00:56:54
  Author: arojas
Revision: 240840

Update source URL (FS#45331)

Modified:
  bluez-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 20:32:35 UTC (rev 240839)
+++ PKGBUILD2015-06-14 22:56:54 UTC (rev 240840)
@@ -6,13 +6,13 @@
 pkgrel=1
 pkgdesc='Qt wrapper for Bluez 5 DBus API'
 arch=(i686 x86_64)
-url='https://projects.kde.org/projects/kde/workspace/bluez-qt'
+url='https://projects.kde.org/projects/frameworks/bluez-qt'
 license=(GPL2)
 depends=(qt5-declarative bluez)
 makedepends=(extra-cmake-modules)
 conflicts=(libbluedevil-frameworks)
-groups=('kf5')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+groups=(kf5)
+source=(http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
 md5sums=('909827fc26098c7b4ab48c7228801e16')
 
 prepare() {


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

2015-06-14 Thread Antonio Rojas
Date: Monday, June 15, 2015 @ 01:08:00
  Author: arojas
Revision: 240843

Update to 0.8.3

Modified:
  speech-dispatcher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 23:02:05 UTC (rev 240842)
+++ PKGBUILD2015-06-14 23:08:00 UTC (rev 240843)
@@ -2,19 +2,18 @@
 # Maintainer:
 
 pkgname=speech-dispatcher
-pkgver=0.8.2
+pkgver=0.8.3
 pkgrel=1
 arch=('i686' 'x86_64')
 pkgdesc=High-level device independent layer for speech synthesis interface
 url=http://www.freebsoft.org/speechd;
 license=('GPL2' 'FDL')
-depends=('glib2' 'libltdl' 'python-xdg' 'dotconf' 'libpulse')
+depends=('libltdl' 'python-xdg' 'dotconf' 'libpulse')
 makedepends=('intltool' 'espeak')
 optdepends=('festival: Speech output using Festival'
 'espeak: Speech output using ESpeak'
 'pulseaudio: PulseAudio support')
-backup=(etc/speech-dispatcher/clients/gnome-speech.conf
-   etc/speech-dispatcher/clients/emacs.conf
+backup=(etc/speech-dispatcher/clients/emacs.conf
etc/speech-dispatcher/modules/ibmtts.conf
etc/speech-dispatcher/modules/espeak-generic.conf
etc/speech-dispatcher/modules/espeak.conf
@@ -32,7 +31,7 @@
 install=${pkgname}.install
 source=(http://www.freebsoft.org/pub/projects/speechd/$pkgname-$pkgver.tar.gz;
 'speech-dispatcherd.service')
-md5sums=('6beee9a1e4792508bf6d638c750229cc'
+md5sums=('d17b041fa3c87cb1b73ac6e95b80d276'
  'd26f52e2e95a30eaa83560f0e63faca5')
 
 build() {


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

2015-06-14 Thread Antonio Rojas
Date: Monday, June 15, 2015 @ 01:08:53
  Author: arojas
Revision: 240844

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

Added:
  speech-dispatcher/repos/testing-i686/
  speech-dispatcher/repos/testing-i686/PKGBUILD
(from rev 240843, speech-dispatcher/trunk/PKGBUILD)
  speech-dispatcher/repos/testing-i686/speech-dispatcher.install
(from rev 240843, speech-dispatcher/trunk/speech-dispatcher.install)
  speech-dispatcher/repos/testing-i686/speech-dispatcherd.service
(from rev 240843, speech-dispatcher/trunk/speech-dispatcherd.service)
  speech-dispatcher/repos/testing-x86_64/
  speech-dispatcher/repos/testing-x86_64/PKGBUILD
(from rev 240843, speech-dispatcher/trunk/PKGBUILD)
  speech-dispatcher/repos/testing-x86_64/speech-dispatcher.install
(from rev 240843, speech-dispatcher/trunk/speech-dispatcher.install)
  speech-dispatcher/repos/testing-x86_64/speech-dispatcherd.service
(from rev 240843, speech-dispatcher/trunk/speech-dispatcherd.service)

---+
 testing-i686/PKGBUILD |   52 
 testing-i686/speech-dispatcher.install|   22 +++
 testing-i686/speech-dispatcherd.service   |   10 +
 testing-x86_64/PKGBUILD   |   52 
 testing-x86_64/speech-dispatcher.install  |   22 +++
 testing-x86_64/speech-dispatcherd.service |   10 +
 6 files changed, 168 insertions(+)

Copied: speech-dispatcher/repos/testing-i686/PKGBUILD (from rev 240843, 
speech-dispatcher/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-06-14 23:08:53 UTC (rev 240844)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer:
+
+pkgname=speech-dispatcher
+pkgver=0.8.3
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc=High-level device independent layer for speech synthesis interface
+url=http://www.freebsoft.org/speechd;
+license=('GPL2' 'FDL')
+depends=('libltdl' 'python-xdg' 'dotconf' 'libpulse')
+makedepends=('intltool' 'espeak')
+optdepends=('festival: Speech output using Festival'
+'espeak: Speech output using ESpeak'
+'pulseaudio: PulseAudio support')
+backup=(etc/speech-dispatcher/clients/emacs.conf
+   etc/speech-dispatcher/modules/ibmtts.conf
+   etc/speech-dispatcher/modules/espeak-generic.conf
+   etc/speech-dispatcher/modules/espeak.conf
+   etc/speech-dispatcher/modules/swift-generic.conf
+   etc/speech-dispatcher/modules/festival.conf
+   etc/speech-dispatcher/modules/cicero.conf
+   etc/speech-dispatcher/modules/espeak-mbrola-generic.conf
+   etc/speech-dispatcher/modules/dtk-generic.conf
+   etc/speech-dispatcher/modules/llia_phon-generic.conf
+   etc/speech-dispatcher/modules/ivona.conf
+   etc/speech-dispatcher/modules/epos-generic.conf
+   etc/speech-dispatcher/modules/flite.conf
+etc/speech-dispatcher/modules/pico-generic.conf
+   etc/speech-dispatcher/speechd.conf)
+install=${pkgname}.install
+source=(http://www.freebsoft.org/pub/projects/speechd/$pkgname-$pkgver.tar.gz;
+'speech-dispatcherd.service')
+md5sums=('d17b041fa3c87cb1b73ac6e95b80d276'
+ 'd26f52e2e95a30eaa83560f0e63faca5')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--without-flite
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 ${srcdir}/speech-dispatcherd.service 
${pkgdir}/usr/lib/systemd/system/speech-dispatcherd.service
+  install -d ${pkgdir}/var/log/speech-dispatcher
+}

Copied: speech-dispatcher/repos/testing-i686/speech-dispatcher.install (from 
rev 240843, speech-dispatcher/trunk/speech-dispatcher.install)
===
--- testing-i686/speech-dispatcher.install  (rev 0)
+++ testing-i686/speech-dispatcher.install  2015-06-14 23:08:53 UTC (rev 
240844)
@@ -0,0 +1,22 @@
+info_dir=usr/share/info
+info_files=('speech-dispatcher.info'
+'ssip.info'
+'spd-say.info')
+
+post_install() {
+  [[ -x usr/bin/install-info ]] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  [[ -x usr/bin/install-info ]] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: speech-dispatcher/repos/testing-i686/speech-dispatcherd.service (from 
rev 240843, speech-dispatcher/trunk/speech-dispatcherd.service)
===
--- testing-i686/speech-dispatcherd.service (rev 0)
+++ testing-i686/speech-dispatcherd.service 2015-06-14 23:08:53 UTC (rev 
240844)
@@ -0,0 +1,10 @@
+[Unit]

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

2015-06-14 Thread Eric Bélanger
Date: Monday, June 15, 2015 @ 03:06:45
  Author: eric
Revision: 240845

upgpkg: inetutils 1.9.4-1

Upstream update

Modified:
  inetutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 23:08:53 UTC (rev 240844)
+++ PKGBUILD2015-06-15 01:06:45 UTC (rev 240845)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=inetutils
-pkgver=1.9.3
+pkgver=1.9.4
 pkgrel=1
 pkgdesc=A collection of common network programs
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 ftpd.service rlogin.pam rlogin@.service rlogin.socket rlogin.xinetd
 rsh.pam rsh@.service rsh.socket rsh.xinetd talk.service talk.socket 
talk.xinetd
 telnet@.service telnet.socket telnet.xinetd)
-sha1sums=('9fab38b8225ff5d5b3d586bdcf63f7eee0b322d8'
+sha1sums=('5e515cc9da142cb73bb1beda137b4c2dcf2b528c'
   'SKIP'
   '026181500b71f0c09ef5c262450be718651e5658'
   '387b371cbaa3611b95d30f806c0dd08b621a584a'


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

2015-06-14 Thread Felix Yan
Date: Monday, June 15, 2015 @ 04:48:42
  Author: fyan
Revision: 135312

upgpkg: python-mccabe 0.3.1-1

Modified:
  python-mccabe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-14 22:33:02 UTC (rev 135311)
+++ PKGBUILD2015-06-15 02:48:42 UTC (rev 135312)
@@ -5,7 +5,7 @@
 pkgbase=python-mccabe
 pkgname=(python-mccabe python2-mccabe)
 _reponame=mccabe
-pkgver=0.3
+pkgver=0.3.1
 pkgrel=1
 pkgdesc=McCabe complexity checker for Python
 arch=('any')
@@ -13,7 +13,7 @@
 license=('custom:Expat')
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=($pkgbase-$pkgver.tar.gz::https://github.com/flintwork/${_reponame}/archive/${pkgver}.tar.gz;)
-md5sums=('c583f58ea28be12842c001473d77504d')
+md5sums=('45c48c0978e6fc1f31fedcb918178abb')
 
 prepare() {
   cp -a ${_reponame}-${pkgver}{,-py2}


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

2015-06-14 Thread Felix Yan
Date: Monday, June 15, 2015 @ 04:49:15
  Author: fyan
Revision: 135313

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-15 02:48:42 UTC (rev 135312)
+++ PKGBUILD2015-06-15 02:49:15 UTC (rev 135313)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Karol Kenji Takahashi Woźniak kenji.sx
-
-pkgbase=python-mccabe
-pkgname=(python-mccabe python2-mccabe)
-_reponame=mccabe
-pkgver=0.3
-pkgrel=1
-pkgdesc=McCabe complexity checker for Python
-arch=('any')
-url=https://github.com/flintwork/mccabe;
-license=('custom:Expat')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(https://github.com/flintwork/${_reponame}/archive/${pkgver}.tar.gz;)
-md5sums=('c583f58ea28be12842c001473d77504d')
-
-prepare() {
-  cp -a ${_reponame}-${pkgver}{,-py2}
-}
-
-build() {
-  cd ${_reponame}-${pkgver}
-  python setup.py build
-
-  cd ../${_reponame}-${pkgver}-py2
-  python2 setup.py build
-}
-
-check() {
-  cd ${_reponame}-${pkgver}
-  python setup.py test
-
-  cd ../${_reponame}-${pkgver}-py2
-  python2 setup.py test
-}
-
-package_python-mccabe() {
-  depends=('python')
-
-  cd ${_reponame}-${pkgver}
-  python setup.py install --root=${pkgdir}/ --prefix=/usr --skip-build 
--optimize=1
-
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python2-mccabe() {
-  depends=('python2')
-
-  cd ${_reponame}-${pkgver}-py2
-  python2 setup.py install --root=${pkgdir}/ --prefix=/usr --skip-build 
--optimize=1
-
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-mccabe/repos/community-any/PKGBUILD (from rev 135312, 
python-mccabe/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-15 02:49:15 UTC (rev 135313)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Karol Kenji Takahashi Woźniak kenji.sx
+
+pkgbase=python-mccabe
+pkgname=(python-mccabe python2-mccabe)
+_reponame=mccabe
+pkgver=0.3.1
+pkgrel=1
+pkgdesc=McCabe complexity checker for Python
+arch=('any')
+url=https://github.com/flintwork/mccabe;
+license=('custom:Expat')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=($pkgbase-$pkgver.tar.gz::https://github.com/flintwork/${_reponame}/archive/${pkgver}.tar.gz;)
+md5sums=('45c48c0978e6fc1f31fedcb918178abb')
+
+prepare() {
+  cp -a ${_reponame}-${pkgver}{,-py2}
+}
+
+build() {
+  cd ${_reponame}-${pkgver}
+  python setup.py build
+
+  cd ../${_reponame}-${pkgver}-py2
+  python2 setup.py build
+}
+
+check() {
+  cd ${_reponame}-${pkgver}
+  python setup.py test
+
+  cd ../${_reponame}-${pkgver}-py2
+  python2 setup.py test
+}
+
+package_python-mccabe() {
+  depends=('python')
+
+  cd ${_reponame}-${pkgver}
+  python setup.py install --root=${pkgdir}/ --prefix=/usr --skip-build 
--optimize=1
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-mccabe() {
+  depends=('python2')
+
+  cd ${_reponame}-${pkgver}-py2
+  python2 setup.py install --root=${pkgdir}/ --prefix=/usr --skip-build 
--optimize=1
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-06-14 Thread Felix Yan
Date: Monday, June 15, 2015 @ 04:52:07
  Author: fyan
Revision: 240848

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-15 02:51:33 UTC (rev 240847)
+++ extra-i686/PKGBUILD 2015-06-15 02:52:07 UTC (rev 240848)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-# Contributor: riai r...@bigfoot.com, Ben b...@benmazer.net
-
-pkgbase=sip
-pkgname=('sip' 'python-sip' 'python2-sip')
-pkgver=4.16.7
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/sip/intro'
-license=('custom:sip')
-makedepends=('python' 'python2')
-source=(http://downloads.sourceforge.net/pyqt/${pkgbase}-${pkgver}.tar.gz;)
-md5sums=('32abc003980599d33ffd789734de4c36')
-
-build() {
-  cp -r ${pkgbase}-${pkgver} python2-${pkgbase}-${pkgver}
-
-  cd ${pkgbase}-${pkgver}
-  python configure.py CFLAGS=${CFLAGS} LFLAGS=${LDFLAGS}
-  make
-
-  ### Python2 version ###
-  cd ../python2-${pkgbase}-${pkgver}
-  python2 configure.py CFLAGS=${CFLAGS} LFLAGS=${LDFLAGS}
-  make
-}
-
-package_sip() {
-  pkgdesc=A tool that makes it easy to create Python bindings for C and C++ 
libraries
-  depends=('glibc')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install -C sipgen
-
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python-sip() {
-  pkgdesc=Python 3.x SIP bindings for C and C++ libraries
-  depends=('sip' 'python')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install -C siplib
-
-  install -Dm644 sipconfig.py 
${pkgdir}/usr/lib/python3.4/site-packages/sipconfig.py
-  install -Dm644 sipdistutils.py 
${pkgdir}/usr/lib/python3.4/site-packages/sipdistutils.py
-
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python2-sip() {
-  pkgdesc=Python 2.x SIP bindings for C and C++ libraries
-  depends=('sip' 'python2')
-
-  cd python2-${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install -C siplib
-
-  install -Dm644 sipconfig.py 
${pkgdir}/usr/lib/python2.7/site-packages/sipconfig.py
-  install -Dm644 sipdistutils.py 
${pkgdir}/usr/lib/python2.7/site-packages/sipdistutils.py
-
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: sip/repos/extra-i686/PKGBUILD (from rev 240847, sip/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-15 02:52:07 UTC (rev 240848)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Contributor: riai r...@bigfoot.com, Ben b...@benmazer.net
+
+pkgbase=sip
+pkgname=('sip' 'python-sip' 'python2-sip')
+pkgver=4.16.8
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/sip/intro'
+license=('custom:sip')
+makedepends=('python' 'python2')
+source=(http://downloads.sourceforge.net/pyqt/${pkgbase}-${pkgver}.tar.gz;)
+md5sums=('8e48cd78bcd31f9310a701a4111c2739')
+
+build() {
+  cp -r ${pkgbase}-${pkgver} python2-${pkgbase}-${pkgver}
+
+  cd ${pkgbase}-${pkgver}
+  python configure.py CFLAGS=${CFLAGS} LFLAGS=${LDFLAGS}
+  make
+
+  ### Python2 version ###
+  cd ../python2-${pkgbase}-${pkgver}
+  python2 configure.py CFLAGS=${CFLAGS} LFLAGS=${LDFLAGS}
+  make
+}
+
+package_sip() {
+  pkgdesc=A tool that makes it easy to create Python bindings for C and C++ 
libraries
+  depends=('glibc')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install -C sipgen
+
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python-sip() {
+  pkgdesc=Python 3.x SIP bindings for C and C++ libraries
+  depends=('sip' 'python')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install -C siplib
+
+  install -Dm644 sipconfig.py 
${pkgdir}/usr/lib/python3.4/site-packages/sipconfig.py
+  install -Dm644 sipdistutils.py 
${pkgdir}/usr/lib/python3.4/site-packages/sipdistutils.py
+
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-sip() {
+  pkgdesc=Python 2.x SIP bindings for C and C++ libraries
+  depends=('sip' 'python2')
+
+  cd python2-${pkgbase}-${pkgver}
+  make 

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

2015-06-14 Thread Felix Yan
Date: Monday, June 15, 2015 @ 04:51:33
  Author: fyan
Revision: 240847

upgpkg: sip 4.16.8-1

Modified:
  sip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-15 01:30:24 UTC (rev 240846)
+++ PKGBUILD2015-06-15 02:51:33 UTC (rev 240847)
@@ -6,7 +6,7 @@
 
 pkgbase=sip
 pkgname=('sip' 'python-sip' 'python2-sip')
-pkgver=4.16.7
+pkgver=4.16.8
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.riverbankcomputing.com/software/sip/intro'
@@ -13,7 +13,7 @@
 license=('custom:sip')
 makedepends=('python' 'python2')
 source=(http://downloads.sourceforge.net/pyqt/${pkgbase}-${pkgver}.tar.gz;)
-md5sums=('32abc003980599d33ffd789734de4c36')
+md5sums=('8e48cd78bcd31f9310a701a4111c2739')
 
 build() {
   cp -r ${pkgbase}-${pkgver} python2-${pkgbase}-${pkgver}


[arch-commits] Commit in python-xcffib/repos (2 files)

2015-06-14 Thread Felix Yan
Date: Monday, June 15, 2015 @ 05:15:25
  Author: fyan
Revision: 135315

archrelease: copy trunk to community-testing-any

Added:
  python-xcffib/repos/community-testing-any/
  python-xcffib/repos/community-testing-any/PKGBUILD
(from rev 135314, python-xcffib/trunk/PKGBUILD)

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

Copied: python-xcffib/repos/community-testing-any/PKGBUILD (from rev 135314, 
python-xcffib/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2015-06-15 03:15:25 UTC (rev 135315)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Roger Duran rogerdu...@gmail.com
+
+pkgbase=python-xcffib
+pkgname=(python-xcffib python2-xcffib)
+pkgver=0.3.2
+pkgrel=1
+pkgdesc=Python3 drop in replacement for xpyb, an XCB python binding
+arch=('any')
+url=https://pypi.python.org/pypi/xcffib;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-cffi' 
'python2-cffi'
+ 'python-six' 'python2-six' 'libxcb' 'git' 'ghc' 'cabal-install'
+ 'happy' 'alex')
+checkdepends=('flake8' 'python2-flake8' 'parallel' 'python-nose' 'python2-nose'
+  'xorg-server-xvfb' 'xorg-xeyes')
+source=(git+https://github.com/tych0/xcffib.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a xcffib{,-py2}
+
+  sed -e 's/python /python2 /' \
+  -e 's/nosetests /nosetests2 /' \
+  -e 's/flake8 /flake8-python2 /' \
+  -i xcffib-py2/Makefile
+
+  cd xcffib
+  cabal update
+  cabal install --only-dependencies --enable-tests
+  cabal configure --enable-tests
+}
+
+build() {
+  cd $srcdir/xcffib
+  make xcffib
+
+  cd $srcdir/xcffib-py2
+  make xcffib
+}
+
+check() {
+  cd $srcdir/xcffib
+  make check
+
+  cd $srcdir/xcffib-py2
+  make check
+}
+
+package_python-xcffib() {
+  depends=('python-six' 'python-cffi' 'libxcb')
+
+  cd $srcdir/xcffib
+  python setup.py install --root=$pkgdir/ --optimize=1
+}
+
+package_python2-xcffib() {
+  depends=('python2-six' 'python2-cffi' 'libxcb')
+
+  cd $srcdir/xcffib-py2
+  python2 setup.py install --root=$pkgdir/ --optimize=1
+}


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

2015-06-14 Thread Felix Yan
Date: Monday, June 15, 2015 @ 05:15:08
  Author: fyan
Revision: 135314

upgpkg: python-xcffib 0.3.2-1

Modified:
  python-xcffib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-15 02:49:15 UTC (rev 135313)
+++ PKGBUILD2015-06-15 03:15:08 UTC (rev 135314)
@@ -4,10 +4,10 @@
 
 pkgbase=python-xcffib
 pkgname=(python-xcffib python2-xcffib)
-pkgver=0.2.3
+pkgver=0.3.2
 pkgrel=1
 pkgdesc=Python3 drop in replacement for xpyb, an XCB python binding
-arch=('i686' 'x86_64')
+arch=('any')
 url=https://pypi.python.org/pypi/xcffib;
 license=('Apache')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-cffi' 
'python2-cffi'


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

2015-06-14 Thread Felix Yan
Date: Monday, June 15, 2015 @ 05:17:45
  Author: fyan
Revision: 135317

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-15 03:17:24 UTC (rev 135316)
+++ PKGBUILD2015-06-15 03:17:45 UTC (rev 135317)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Marti Raudsepp ma...@juffo.org
-# Contributor: Florijan Hamzic florij...@gmail.com
-
-pkgbase=python-cairocffi
-pkgname=(python-cairocffi python2-cairocffi)
-pkgver=0.6
-pkgrel=2
-pkgdesc=cairocffi is a CFFI-based drop-in replacement for Pycairo, a set of 
Python bindings and object-oriented API for cairo.
-arch=('any')
-url=http://pythonhosted.org/cairocffi/;
-license=('BSD')
-makedepends=('python-cffi' 'python2-cffi' 'python-setuptools' 
'python2-setuptools' 'cairo' 'gdk-pixbuf2')
-checkdepends=('python-pytest' 'python2-pytest' 'python-xcffib' 
'python2-xcffib')
-source=(https://github.com/SimonSapin/cairocffi/archive/v${pkgver}.tar.gz;)
-md5sums=('4748b086d414e8e6b43b40e22b738f2c')
-
-prepare() {
-  cp -a cairocffi-$pkgver{,-py2}
-}
-
-build() {
-  cd $srcdir/cairocffi-$pkgver
-  python setup.py build
-
-  cd $srcdir/cairocffi-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd $srcdir/cairocffi-$pkgver/cairocffi
-  LC_CTYPE=en_US.utf8 py.test || warning Tests failed
-
-  cd $srcdir/cairocffi-$pkgver-py2/cairocffi
-  LC_CTYPE=en_US.utf8 py.test2 || warning Tests failed
-}
-
-package_python-cairocffi() {
-  depends=('python-cffi' 'cairo')
-  optdepends=('python-xcffib: for xcb support'
-  'gdk-pixbuf2: for cairocffi.pixbuf')
-
-  cd $srcdir/cairocffi-$pkgver
-  python setup.py install --root=$pkgdir --prefix=/usr -O1 --skip-build
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-cairocffi() {
-  depends=('python2-cffi' 'cairo')
-  optdepends=('python2-xcffib: for xcb support'
-  'gdk-pixbuf2: for cairocffi.pixbuf')
-
-  cd $srcdir/cairocffi-$pkgver-py2
-  python2 setup.py install --root=$pkgdir --prefix=/usr -O1 --skip-build
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-cairocffi/repos/community-any/PKGBUILD (from rev 135316, 
python-cairocffi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-15 03:17:45 UTC (rev 135317)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Marti Raudsepp ma...@juffo.org
+# Contributor: Florijan Hamzic florij...@gmail.com
+
+pkgbase=python-cairocffi
+pkgname=(python-cairocffi python2-cairocffi)
+pkgver=0.7
+pkgrel=1
+pkgdesc=cairocffi is a CFFI-based drop-in replacement for Pycairo, a set of 
Python bindings and object-oriented API for cairo.
+arch=('any')
+url=http://pythonhosted.org/cairocffi/;
+license=('BSD')
+makedepends=('python-cffi' 'python2-cffi' 'python-setuptools' 
'python2-setuptools' 'cairo' 'gdk-pixbuf2')
+checkdepends=('python-pytest' 'python2-pytest' 'python-xcffib' 
'python2-xcffib')
+source=($pkgbase-$pkgver.tar.gz::https://github.com/SimonSapin/cairocffi/archive/v${pkgver}.tar.gz;)
+md5sums=('923495bbe9bd21a838fcec57f80543b7')
+
+prepare() {
+  cp -a cairocffi-$pkgver{,-py2}
+}
+
+build() {
+  cd $srcdir/cairocffi-$pkgver
+  python setup.py build
+
+  cd $srcdir/cairocffi-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd $srcdir/cairocffi-$pkgver/cairocffi
+  LC_CTYPE=en_US.utf8 py.test || warning Tests failed
+
+  cd $srcdir/cairocffi-$pkgver-py2/cairocffi
+  LC_CTYPE=en_US.utf8 py.test2 || warning Tests failed
+}
+
+package_python-cairocffi() {
+  depends=('python-cffi' 'cairo')
+  optdepends=('python-xcffib: for xcb support'
+  'gdk-pixbuf2: for cairocffi.pixbuf')
+
+  cd $srcdir/cairocffi-$pkgver
+  python setup.py install --root=$pkgdir --prefix=/usr -O1 --skip-build
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-cairocffi() {
+  depends=('python2-cffi' 'cairo')
+  optdepends=('python2-xcffib: for xcb support'
+  'gdk-pixbuf2: for cairocffi.pixbuf')
+
+  cd $srcdir/cairocffi-$pkgver-py2
+  python2 setup.py install --root=$pkgdir --prefix=/usr -O1 --skip-build
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2015-06-14 Thread Felix Yan
Date: Monday, June 15, 2015 @ 05:17:24
  Author: fyan
Revision: 135316

upgpkg: python-cairocffi 0.7-1

Modified:
  python-cairocffi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-15 03:15:25 UTC (rev 135315)
+++ PKGBUILD2015-06-15 03:17:24 UTC (rev 135316)
@@ -5,8 +5,8 @@
 
 pkgbase=python-cairocffi
 pkgname=(python-cairocffi python2-cairocffi)
-pkgver=0.6
-pkgrel=2
+pkgver=0.7
+pkgrel=1
 pkgdesc=cairocffi is a CFFI-based drop-in replacement for Pycairo, a set of 
Python bindings and object-oriented API for cairo.
 arch=('any')
 url=http://pythonhosted.org/cairocffi/;
@@ -14,7 +14,7 @@
 makedepends=('python-cffi' 'python2-cffi' 'python-setuptools' 
'python2-setuptools' 'cairo' 'gdk-pixbuf2')
 checkdepends=('python-pytest' 'python2-pytest' 'python-xcffib' 
'python2-xcffib')
 
source=($pkgbase-$pkgver.tar.gz::https://github.com/SimonSapin/cairocffi/archive/v${pkgver}.tar.gz;)
-md5sums=('4748b086d414e8e6b43b40e22b738f2c')
+md5sums=('923495bbe9bd21a838fcec57f80543b7')
 
 prepare() {
   cp -a cairocffi-$pkgver{,-py2}