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

2015-02-13 Thread Bartłomiej Piotrowski
Date: Friday, February 13, 2015 @ 10:11:47
  Author: bpiotrowski
Revision: 127648

Add fingerprint of source signer to validpgpkeys

Modified:
  hyphen-pl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 05:49:42 UTC (rev 127647)
+++ PKGBUILD2015-02-13 09:11:47 UTC (rev 127648)
@@ -11,6 +11,7 @@
 license=('LGPL')
 optdepends=('hyphen: offers hyphenation library functions')
 
source=(https://sources.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+validpgpkeys=('F3691687D867B81B51CE07D9BBE43771487328A9') # Bartłomiej 
Piotrowski
 md5sums=('7ecdc3975750d6d2de1e6045f5003ed4'
  'SKIP')
 


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

2015-02-13 Thread Bartłomiej Piotrowski
Date: Friday, February 13, 2015 @ 10:15:50
  Author: bpiotrowski
Revision: 231365

Add fingerprint of source signer to validpgpkeys

Modified:
  gdbm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 08:36:01 UTC (rev 231364)
+++ PKGBUILD2015-02-13 09:15:50 UTC (rev 231365)
@@ -1,5 +1,5 @@
 # $Id$
-# Maintainer: 
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
 # Contributor: Stéphane Gaudreault steph...@archlinux.org
 # Contributor: Allan McRae al...@archlinux.org
 # Contributor: judd jvi...@zeroflux.org
@@ -12,10 +12,11 @@
 license=('GPL3')
 arch=('i686' 'x86_64')
 depends=('glibc' 'sh')
+options=('!makeflags')
+install=gdbm.install
 source=(ftp://ftp.gnu.org/gnu/gdbm/${pkgname}-${pkgver}.tar.gz{,.sig}
 gdbm-1.10-zeroheaders.patch)
-options=('!makeflags')
-install=gdbm.install
+validpgpkeys=('325F650C4C2B6AD58807327A3602B07F55D0C732')
 md5sums=('72c832680cf0999caedbe5b265c8c1bd'
  'SKIP'
  'ac255b10452005237836cd2d3a470733')


[arch-commits] Commit in pcsx2/repos/community-i686 (PKGBUILD PKGBUILD)

2015-02-13 Thread Maxime Gauduin
Date: Friday, February 13, 2015 @ 11:05:53
  Author: alucryd
Revision: 127650

archrelease: copy trunk to community-i686

Added:
  pcsx2/repos/community-i686/PKGBUILD
(from rev 127649, pcsx2/trunk/PKGBUILD)
Deleted:
  pcsx2/repos/community-i686/PKGBUILD

--+
 PKGBUILD |  144 ++---
 1 file changed, 73 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-13 10:03:46 UTC (rev 127649)
+++ PKGBUILD2015-02-13 10:05:53 UTC (rev 127650)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@archlinux.org
-# Contributor: josephgbr rafael.f...@gmail.com
-# Contributor: vEX v...@niechift.com
-
-pkgname=pcsx2
-pkgver=1.3.1
-pkgrel=1
-pkgdesc='A Sony PlayStation 2 emulator'
-arch=('i686' 'x86_64')
-url='http://www.pcsx2.net'
-license=('GPL2' 'GPL3' 'LGPL2.1' 'LGPL3')
-depends_i686=('glew' 'libaio' 'libcanberra' 'libjpeg-turbo' 'nvidia-cg-toolkit'
-  'portaudio' 'sdl' 'soundtouch' 'wxgtk')
-depends_x86_64=('lib32-glew' 'lib32-libaio' 'lib32-libcanberra'
-'lib32-libjpeg-turbo' 'lib32-nvidia-cg-toolkit'
-'lib32-portaudio' 'lib32-sdl' 'lib32-soundtouch' 'lib32-wxgtk')
-makedepends=('cmake')
-makedepends_x86_64=('gcc-multilib')
-optdepends_x86_64=('lib32-gtk-engines: GTK2 engines support'
-   'lib32-gtk-engine-murrine: Murrine GTK3 engine support'
-   'lib32-gtk-engine-unico: Unico GTK2 engine support')
-options=('!emptydirs')
-source=(https://github.com/PCSX2/pcsx2/archive/v${pkgver}.tar.gz;)
-sha256sums=('60ba9f7f85bf4337ca6962f9b437d549f16fc04ea0b6b261d7521e0416c2b8c9')
-
-build() {
-  cd pcsx2-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build  cd build
-
-  if [[ $CARCH == i686 ]]; then
-cmake .. \
-  -DCMAKE_BUILD_TYPE='Release' \
-  -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DCMAKE_LIBRARY_PATH='/usr/lib' \
-  -DPLUGIN_DIR='/usr/lib/pcsx2' \
-  -DGAMEINDEX_DIR='/usr/share/pcsx2' \
-  -DEXTRA_PLUGINS='TRUE' \
-  -DREBUILD_SHADER='TRUE' \
-  -DGLSL_API='TRUE' \
-  -DPACKAGE_MODE='TRUE' \
-  -DXDG_STD='TRUE'
-  elif [[ $CARCH == x86_64 ]]; then
-cmake .. \
-  -DCMAKE_BUILD_TYPE='Release' \
-  -DCMAKE_TOOLCHAIN_FILE='cmake/linux-compiler-i386-multilib.cmake' \
-  -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DCMAKE_LIBRARY_PATH='/usr/lib32' \
-  -DPLUGIN_DIR='/usr/lib32/pcsx2' \
-  -DGAMEINDEX_DIR='/usr/share/pcsx2' \
-  -DEXTRA_PLUGINS='TRUE' \
-  -DREBUILD_SHADER='TRUE' \
-  -DGLSL_API='TRUE' \
-  -DPACKAGE_MODE='TRUE' \
-  -DXDG_STD='TRUE'
-  fi
-
-  make
-}
-
-package() {
-  cd pcsx2-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-}
-
-# vim: ts=2 sw=2 et:

Copied: pcsx2/repos/community-i686/PKGBUILD (from rev 127649, 
pcsx2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-13 10:05:53 UTC (rev 127650)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
+# Contributor: josephgbr rafael.f...@gmail.com
+# Contributor: vEX v...@niechift.com
+
+pkgname=pcsx2
+pkgver=1.3.1
+pkgrel=2
+pkgdesc='A Sony PlayStation 2 emulator'
+arch=('i686' 'x86_64')
+url='http://www.pcsx2.net'
+license=('GPL2' 'GPL3' 'LGPL2.1' 'LGPL3')
+depends_i686=('glew' 'libaio' 'libcanberra' 'libjpeg-turbo' 'nvidia-cg-toolkit'
+  'portaudio' 'sdl' 'soundtouch' 'wxgtk')
+depends_x86_64=('lib32-glew' 'lib32-libaio' 'lib32-libcanberra'
+'lib32-libjpeg-turbo' 'lib32-nvidia-cg-toolkit'
+'lib32-portaudio' 'lib32-sdl' 'lib32-soundtouch' 'lib32-wxgtk')
+makedepends=('cmake')
+makedepends_x86_64=('gcc-multilib')
+optdepends_x86_64=('lib32-gtk-engines: GTK2 engines support'
+   'lib32-gtk-engine-murrine: Murrine GTK3 engine support'
+   'lib32-gtk-engine-unico: Unico GTK2 engine support')
+options=('!emptydirs')
+source=(https://github.com/PCSX2/pcsx2/archive/v${pkgver}.tar.gz;)
+sha256sums=('60ba9f7f85bf4337ca6962f9b437d549f16fc04ea0b6b261d7521e0416c2b8c9')
+
+build() {
+  cd pcsx2-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build  cd build
+
+  if [[ $CARCH == i686 ]]; then
+cmake .. \
+  -DCMAKE_BUILD_TYPE='Release' \
+  -DCMAKE_INSTALL_PREFIX='/usr' \
+  -DCMAKE_LIBRARY_PATH='/usr/lib' \
+  -DPLUGIN_DIR='/usr/lib/pcsx2' \
+  -DGAMEINDEX_DIR='/usr/share/pcsx2' \
+  -DDISABLE_ADVANCE_SIMD='TRUE' \
+  -DEXTRA_PLUGINS='TRUE' \
+  -DREBUILD_SHADER='TRUE' \
+  -DGLSL_API='TRUE' \
+  -DPACKAGE_MODE='TRUE' \
+  -DXDG_STD='TRUE'
+  elif [[ $CARCH == x86_64 ]]; then
+cmake .. \
+  -DCMAKE_BUILD_TYPE='Release' \
+  -DCMAKE_TOOLCHAIN_FILE='cmake/linux-compiler-i386-multilib.cmake' \
+  -DCMAKE_INSTALL_PREFIX='/usr' \
+  

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

2015-02-13 Thread Maxime Gauduin
Date: Friday, February 13, 2015 @ 11:03:46
  Author: alucryd
Revision: 127649

FS#43796: pcsx2 1.3.1-2

Modified:
  pcsx2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 09:11:47 UTC (rev 127648)
+++ PKGBUILD2015-02-13 10:03:46 UTC (rev 127649)
@@ -5,7 +5,7 @@
 
 pkgname=pcsx2
 pkgver=1.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc='A Sony PlayStation 2 emulator'
 arch=('i686' 'x86_64')
 url='http://www.pcsx2.net'
@@ -39,6 +39,7 @@
   -DCMAKE_LIBRARY_PATH='/usr/lib' \
   -DPLUGIN_DIR='/usr/lib/pcsx2' \
   -DGAMEINDEX_DIR='/usr/share/pcsx2' \
+  -DDISABLE_ADVANCE_SIMD='TRUE' \
   -DEXTRA_PLUGINS='TRUE' \
   -DREBUILD_SHADER='TRUE' \
   -DGLSL_API='TRUE' \
@@ -52,6 +53,7 @@
   -DCMAKE_LIBRARY_PATH='/usr/lib32' \
   -DPLUGIN_DIR='/usr/lib32/pcsx2' \
   -DGAMEINDEX_DIR='/usr/share/pcsx2' \
+  -DDISABLE_ADVANCE_SIMD='TRUE' \
   -DEXTRA_PLUGINS='TRUE' \
   -DREBUILD_SHADER='TRUE' \
   -DGLSL_API='TRUE' \


[arch-commits] Commit in pcsx2/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2015-02-13 Thread Maxime Gauduin
Date: Friday, February 13, 2015 @ 11:13:35
  Author: alucryd
Revision: 127651

archrelease: copy trunk to multilib-x86_64

Added:
  pcsx2/repos/multilib-x86_64/PKGBUILD
(from rev 127650, pcsx2/trunk/PKGBUILD)
Deleted:
  pcsx2/repos/multilib-x86_64/PKGBUILD

--+
 PKGBUILD |  144 ++---
 1 file changed, 73 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-13 10:05:53 UTC (rev 127650)
+++ PKGBUILD2015-02-13 10:13:35 UTC (rev 127651)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@archlinux.org
-# Contributor: josephgbr rafael.f...@gmail.com
-# Contributor: vEX v...@niechift.com
-
-pkgname=pcsx2
-pkgver=1.3.1
-pkgrel=1
-pkgdesc='A Sony PlayStation 2 emulator'
-arch=('i686' 'x86_64')
-url='http://www.pcsx2.net'
-license=('GPL2' 'GPL3' 'LGPL2.1' 'LGPL3')
-depends_i686=('glew' 'libaio' 'libcanberra' 'libjpeg-turbo' 'nvidia-cg-toolkit'
-  'portaudio' 'sdl' 'soundtouch' 'wxgtk')
-depends_x86_64=('lib32-glew' 'lib32-libaio' 'lib32-libcanberra'
-'lib32-libjpeg-turbo' 'lib32-nvidia-cg-toolkit'
-'lib32-portaudio' 'lib32-sdl' 'lib32-soundtouch' 'lib32-wxgtk')
-makedepends=('cmake')
-makedepends_x86_64=('gcc-multilib')
-optdepends_x86_64=('lib32-gtk-engines: GTK2 engines support'
-   'lib32-gtk-engine-murrine: Murrine GTK3 engine support'
-   'lib32-gtk-engine-unico: Unico GTK2 engine support')
-options=('!emptydirs')
-source=(https://github.com/PCSX2/pcsx2/archive/v${pkgver}.tar.gz;)
-sha256sums=('60ba9f7f85bf4337ca6962f9b437d549f16fc04ea0b6b261d7521e0416c2b8c9')
-
-build() {
-  cd pcsx2-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build  cd build
-
-  if [[ $CARCH == i686 ]]; then
-cmake .. \
-  -DCMAKE_BUILD_TYPE='Release' \
-  -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DCMAKE_LIBRARY_PATH='/usr/lib' \
-  -DPLUGIN_DIR='/usr/lib/pcsx2' \
-  -DGAMEINDEX_DIR='/usr/share/pcsx2' \
-  -DEXTRA_PLUGINS='TRUE' \
-  -DREBUILD_SHADER='TRUE' \
-  -DGLSL_API='TRUE' \
-  -DPACKAGE_MODE='TRUE' \
-  -DXDG_STD='TRUE'
-  elif [[ $CARCH == x86_64 ]]; then
-cmake .. \
-  -DCMAKE_BUILD_TYPE='Release' \
-  -DCMAKE_TOOLCHAIN_FILE='cmake/linux-compiler-i386-multilib.cmake' \
-  -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DCMAKE_LIBRARY_PATH='/usr/lib32' \
-  -DPLUGIN_DIR='/usr/lib32/pcsx2' \
-  -DGAMEINDEX_DIR='/usr/share/pcsx2' \
-  -DEXTRA_PLUGINS='TRUE' \
-  -DREBUILD_SHADER='TRUE' \
-  -DGLSL_API='TRUE' \
-  -DPACKAGE_MODE='TRUE' \
-  -DXDG_STD='TRUE'
-  fi
-
-  make
-}
-
-package() {
-  cd pcsx2-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-}
-
-# vim: ts=2 sw=2 et:

Copied: pcsx2/repos/multilib-x86_64/PKGBUILD (from rev 127650, 
pcsx2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-13 10:13:35 UTC (rev 127651)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
+# Contributor: josephgbr rafael.f...@gmail.com
+# Contributor: vEX v...@niechift.com
+
+pkgname=pcsx2
+pkgver=1.3.1
+pkgrel=2
+pkgdesc='A Sony PlayStation 2 emulator'
+arch=('i686' 'x86_64')
+url='http://www.pcsx2.net'
+license=('GPL2' 'GPL3' 'LGPL2.1' 'LGPL3')
+depends_i686=('glew' 'libaio' 'libcanberra' 'libjpeg-turbo' 'nvidia-cg-toolkit'
+  'portaudio' 'sdl' 'soundtouch' 'wxgtk')
+depends_x86_64=('lib32-glew' 'lib32-libaio' 'lib32-libcanberra'
+'lib32-libjpeg-turbo' 'lib32-nvidia-cg-toolkit'
+'lib32-portaudio' 'lib32-sdl' 'lib32-soundtouch' 'lib32-wxgtk')
+makedepends=('cmake')
+makedepends_x86_64=('gcc-multilib')
+optdepends_x86_64=('lib32-gtk-engines: GTK2 engines support'
+   'lib32-gtk-engine-murrine: Murrine GTK3 engine support'
+   'lib32-gtk-engine-unico: Unico GTK2 engine support')
+options=('!emptydirs')
+source=(https://github.com/PCSX2/pcsx2/archive/v${pkgver}.tar.gz;)
+sha256sums=('60ba9f7f85bf4337ca6962f9b437d549f16fc04ea0b6b261d7521e0416c2b8c9')
+
+build() {
+  cd pcsx2-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build  cd build
+
+  if [[ $CARCH == i686 ]]; then
+cmake .. \
+  -DCMAKE_BUILD_TYPE='Release' \
+  -DCMAKE_INSTALL_PREFIX='/usr' \
+  -DCMAKE_LIBRARY_PATH='/usr/lib' \
+  -DPLUGIN_DIR='/usr/lib/pcsx2' \
+  -DGAMEINDEX_DIR='/usr/share/pcsx2' \
+  -DDISABLE_ADVANCE_SIMD='TRUE' \
+  -DEXTRA_PLUGINS='TRUE' \
+  -DREBUILD_SHADER='TRUE' \
+  -DGLSL_API='TRUE' \
+  -DPACKAGE_MODE='TRUE' \
+  -DXDG_STD='TRUE'
+  elif [[ $CARCH == x86_64 ]]; then
+cmake .. \
+  -DCMAKE_BUILD_TYPE='Release' \
+  -DCMAKE_TOOLCHAIN_FILE='cmake/linux-compiler-i386-multilib.cmake' \
+  -DCMAKE_INSTALL_PREFIX='/usr' \
+  

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

2015-02-13 Thread Bartłomiej Piotrowski
Date: Friday, February 13, 2015 @ 09:36:01
  Author: bpiotrowski
Revision: 231364

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

Added:
  protobuf-c/repos/extra-i686/PKGBUILD
(from rev 231363, protobuf-c/trunk/PKGBUILD)
  protobuf-c/repos/extra-x86_64/PKGBUILD
(from rev 231363, protobuf-c/trunk/PKGBUILD)
Deleted:
  protobuf-c/repos/extra-i686/PKGBUILD
  protobuf-c/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-13 08:35:56 UTC (rev 231363)
+++ extra-i686/PKGBUILD 2015-02-13 08:36:01 UTC (rev 231364)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Aurélien Wailly aurelien.wai...@gmail.com
-
-pkgname=protobuf-c
-pkgver=1.0.2
-pkgrel=1
-pkgdesc='Protocol Buffers implementation in C'
-arch=('i686' 'x86_64')
-url='https://github.com/protobuf-c/protobuf-c'
-license=('BSD')
-depends=('protobuf')
-source=($url/releases/download/v$pkgver/protobuf-c-$pkgver.tar.gz)
-md5sums=('42f03767ddbd1dbe26cce10bc6e08c84')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  make -C $pkgname-$pkgver check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: protobuf-c/repos/extra-i686/PKGBUILD (from rev 231363, 
protobuf-c/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-13 08:36:01 UTC (rev 231364)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Aurélien Wailly aurelien.wai...@gmail.com
+
+pkgname=protobuf-c
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='Protocol Buffers implementation in C'
+arch=('i686' 'x86_64')
+url='https://github.com/protobuf-c/protobuf-c'
+license=('BSD')
+depends=('protobuf')
+source=($url/releases/download/v$pkgver/protobuf-c-$pkgver.tar.gz)
+md5sums=('884a6e7deb4a2f7b3cc81a4dcabe514a')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-02-13 08:35:56 UTC (rev 231363)
+++ extra-x86_64/PKGBUILD   2015-02-13 08:36:01 UTC (rev 231364)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Aurélien Wailly aurelien.wai...@gmail.com
-
-pkgname=protobuf-c
-pkgver=1.0.2
-pkgrel=1
-pkgdesc='Protocol Buffers implementation in C'
-arch=('i686' 'x86_64')
-url='https://github.com/protobuf-c/protobuf-c'
-license=('BSD')
-depends=('protobuf')
-source=($url/releases/download/v$pkgver/protobuf-c-$pkgver.tar.gz)
-md5sums=('42f03767ddbd1dbe26cce10bc6e08c84')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  make -C $pkgname-$pkgver check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: protobuf-c/repos/extra-x86_64/PKGBUILD (from rev 231363, 
protobuf-c/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-02-13 08:36:01 UTC (rev 231364)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Aurélien Wailly aurelien.wai...@gmail.com
+
+pkgname=protobuf-c
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='Protocol Buffers implementation in C'
+arch=('i686' 'x86_64')
+url='https://github.com/protobuf-c/protobuf-c'
+license=('BSD')
+depends=('protobuf')
+source=($url/releases/download/v$pkgver/protobuf-c-$pkgver.tar.gz)
+md5sums=('884a6e7deb4a2f7b3cc81a4dcabe514a')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2015-02-13 Thread Bartłomiej Piotrowski
Date: Friday, February 13, 2015 @ 09:33:23
  Author: bpiotrowski
Revision: 231362

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

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

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

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

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

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

Copied: perl-dbd-mysql/repos/extra-x86_64/PKGBUILD (from rev 231361, 

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

2015-02-13 Thread Bartłomiej Piotrowski
Date: Friday, February 13, 2015 @ 09:33:17
  Author: bpiotrowski
Revision: 231361

upgpkg: perl-dbd-mysql 4.029-1

new upstream release

Modified:
  perl-dbd-mysql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 07:14:11 UTC (rev 231360)
+++ PKGBUILD2015-02-13 08:33:17 UTC (rev 231361)
@@ -5,7 +5,7 @@
 
 pkgname=perl-dbd-mysql
 _realname=DBD-mysql
-pkgver=4.028
+pkgver=4.029
 pkgrel=1
 pkgdesc='Perl/CPAN DBD::mysql module for interacting with MySQL via DBD'
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 makedepends=('mariadb')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/C/CA/CAPTTOFU/${_realname}-${pkgver}.tar.gz)
-md5sums=('f0ecda20a991fe7cf806fdee5a250f24')
+md5sums=('bcb8b105f771c04a8ebf3523eb073db7')
 
 build() {
   cd $_realname-$pkgver


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

2015-02-13 Thread Bartłomiej Piotrowski
Date: Friday, February 13, 2015 @ 09:35:56
  Author: bpiotrowski
Revision: 231363

upgpkg: protobuf-c 1.1.0-1

new upstream release

Modified:
  protobuf-c/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 08:33:23 UTC (rev 231362)
+++ PKGBUILD2015-02-13 08:35:56 UTC (rev 231363)
@@ -3,7 +3,7 @@
 # Contributor: Aurélien Wailly aurelien.wai...@gmail.com
 
 pkgname=protobuf-c
-pkgver=1.0.2
+pkgver=1.1.0
 pkgrel=1
 pkgdesc='Protocol Buffers implementation in C'
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 license=('BSD')
 depends=('protobuf')
 source=($url/releases/download/v$pkgver/protobuf-c-$pkgver.tar.gz)
-md5sums=('42f03767ddbd1dbe26cce10bc6e08c84')
+md5sums=('884a6e7deb4a2f7b3cc81a4dcabe514a')
 
 build() {
   cd $pkgname-$pkgver


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 12:54:24
  Author: spupykin
Revision: 127652

upgpkg: gmic 1.6.0.4-1

upd

Modified:
  gmic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 10:13:35 UTC (rev 127651)
+++ PKGBUILD2015-02-13 11:54:24 UTC (rev 127652)
@@ -6,7 +6,7 @@
 
 pkgbase=gmic
 pkgname=(gmic gimp-plugin-gmic zart)
-pkgver=1.6.0.3
+pkgver=1.6.0.4
 pkgrel=1
 arch=(i686 x86_64)
 url=http://gmic.sourceforge.net;
@@ -13,7 +13,7 @@
 license=(custom:CeCILL)
 makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
 
source=(http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz;)
-md5sums=('937c3492a0b4bdfc01a7b7d148f55310')
+md5sums=('108303925eeeabb71b9399c1b8f69c6e')
 
 prepare() {
   cd ${srcdir}/gmic-${pkgver}


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 12:54:44
  Author: spupykin
Revision: 127653

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-13 11:54:24 UTC (rev 127652)
+++ community-i686/PKGBUILD 2015-02-13 11:54:44 UTC (rev 127653)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Jan heftig Steffens jan.steff...@gmail.com
-# Contributor: farid farid at archlinuc-br.org
-# Contributor: Archie mym...@gmail.com
-
-pkgbase=gmic
-pkgname=(gmic gimp-plugin-gmic zart)
-pkgver=1.6.0.3
-pkgrel=1
-arch=(i686 x86_64)
-url=http://gmic.sourceforge.net;
-license=(custom:CeCILL)
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=(http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz;)
-md5sums=('937c3492a0b4bdfc01a7b7d148f55310')
-
-prepare() {
-  cd ${srcdir}/gmic-${pkgver}
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd ${srcdir}/gmic-${pkgver}
-  (cd zart  qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc=GREYC's Magic Image Converter: image processing framework
-  depends=(fftw libtiff libjpeg libpng openexr libx11)
-  replaces=(greycstoration)
-
-  cd ${srcdir}/gmic-${pkgver}
-  make -C src install DESTDIR=$pkgdir USR=/usr
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  rm -rf ${pkgdir}/usr/{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc=A GUI for G'MIC real-time manipulations on the output of a webcam
-  depends=(opencv fftw qt4)
-
-  cd ${srcdir}/gmic-${pkgver}
-  install -Dm755 zart/zart ${pkgdir}/usr/bin/zart
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc=Gimp plugin for the G'MIC image processing framework
-  depends=(gimp fftw)
-  replaces=(gimp-plugin-greycstoration gimp-plugin-gmic4gimp)
-
-  cd ${srcdir}/gmic-${pkgver}
-  install -Dm755 src/gmic_gimp ${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 127652, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-13 11:54:44 UTC (rev 127653)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Jan heftig Steffens jan.steff...@gmail.com
+# Contributor: farid farid at archlinuc-br.org
+# Contributor: Archie mym...@gmail.com
+
+pkgbase=gmic
+pkgname=(gmic gimp-plugin-gmic zart)
+pkgver=1.6.0.4
+pkgrel=1
+arch=(i686 x86_64)
+url=http://gmic.sourceforge.net;
+license=(custom:CeCILL)
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=(http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz;)
+md5sums=('108303925eeeabb71b9399c1b8f69c6e')
+
+prepare() {
+  cd ${srcdir}/gmic-${pkgver}
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd ${srcdir}/gmic-${pkgver}
+  (cd zart  qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc=GREYC's Magic Image Converter: image processing framework
+  depends=(fftw libtiff libjpeg libpng openexr libx11)
+  replaces=(greycstoration)
+
+  cd ${srcdir}/gmic-${pkgver}
+  make -C src install DESTDIR=$pkgdir USR=/usr
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -rf ${pkgdir}/usr/{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc=A GUI for G'MIC real-time manipulations on the output of a webcam
+  depends=(opencv fftw qt4)
+
+  cd ${srcdir}/gmic-${pkgver}
+  install -Dm755 zart/zart ${pkgdir}/usr/bin/zart
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc=Gimp plugin for the G'MIC image processing framework
+  depends=(gimp fftw)
+  replaces=(gimp-plugin-greycstoration gimp-plugin-gmic4gimp)
+
+  cd ${srcdir}/gmic-${pkgver}
+  install -Dm755 src/gmic_gimp 

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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 12:54:52
  Author: spupykin
Revision: 127654

upgpkg: perl-test-manifest 2.02-1

upd

Modified:
  perl-test-manifest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 11:54:44 UTC (rev 127653)
+++ PKGBUILD2015-02-13 11:54:52 UTC (rev 127654)
@@ -4,8 +4,8 @@
 # Contributor: Francois Charette firmi...@gmx.net
 
 pkgname=perl-test-manifest
-pkgver=1.23
-pkgrel=3
+pkgver=2.02
+pkgrel=1
 pkgdesc=configure which test files to run
 arch=('any')
 url=http://search.cpan.org/dist/Test-Manifest;
@@ -13,7 +13,7 @@
 depends=('perl')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/B/BD/BDFOY/Test-Manifest-$pkgver.tar.gz)
-md5sums=('81c8744987b67d35af05a74a3c7f1742')
+md5sums=('fdd832e160cacf1496db3adf57515ad9')
 
 build() {
   cd  $srcdir/Test-Manifest-$pkgver


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 12:55:00
  Author: spupykin
Revision: 127655

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-13 11:54:52 UTC (rev 127654)
+++ PKGBUILD2015-02-13 11:55:00 UTC (rev 127655)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# This PKGBUILD was generated by cpan4pacman via CPANPLUS::Dist::Pacman
-# Contributor: Francois Charette firmi...@gmx.net
-
-pkgname=perl-test-manifest
-pkgver=1.23
-pkgrel=3
-pkgdesc=configure which test files to run
-arch=('any')
-url=http://search.cpan.org/dist/Test-Manifest;
-license=('GPL' 'PerlArtistic')
-depends=('perl')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/B/BD/BDFOY/Test-Manifest-$pkgver.tar.gz)
-md5sums=('81c8744987b67d35af05a74a3c7f1742')
-
-build() {
-  cd  $srcdir/Test-Manifest-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Test-Manifest-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-test-manifest/repos/community-any/PKGBUILD (from rev 127654, 
perl-test-manifest/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-13 11:55:00 UTC (rev 127655)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# This PKGBUILD was generated by cpan4pacman via CPANPLUS::Dist::Pacman
+# Contributor: Francois Charette firmi...@gmx.net
+
+pkgname=perl-test-manifest
+pkgver=2.02
+pkgrel=1
+pkgdesc=configure which test files to run
+arch=('any')
+url=http://search.cpan.org/dist/Test-Manifest;
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/B/BD/BDFOY/Test-Manifest-$pkgver.tar.gz)
+md5sums=('fdd832e160cacf1496db3adf57515ad9')
+
+build() {
+  cd  $srcdir/Test-Manifest-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Test-Manifest-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 13:00:43
  Author: spupykin
Revision: 127656

upgpkg: perl-net-xmpp 1.05-1

upd

Modified:
  perl-net-xmpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 11:55:00 UTC (rev 127655)
+++ PKGBUILD2015-02-13 12:00:43 UTC (rev 127656)
@@ -3,8 +3,8 @@
 # Maintainer: Charles Mauch cma...@gmail.com
 
 pkgname=perl-net-xmpp
-pkgver=1.02
-pkgrel=7
+pkgver=1.05
+pkgrel=1
 pkgdesc=Perl/CPAN Module Net::XMPP
 arch=(any)
 url=http://search.cpan.org/dist/Net-XMPP;
@@ -11,8 +11,8 @@
 license=(GPL PerlArtistic)
 makedepends=(perl-digest-sha1 perl-xml-stream)
 depends=(perl-digest-sha1 perl-xml-stream perl-digest-hmac)
-source=(http://www.cpan.org/authors/id/H/HA/HACKER/Net-XMPP-$pkgver.tar.gz;)
-md5sums=('67cf40d3bbbe6740c21c856c79692fde')
+source=(http://search.cpan.org/CPAN/authors/id/D/DA/DAPATRICK/Net-XMPP-$pkgver.tar.gz;)
+md5sums=('6fdfeecde1b7eea1a24413e6557a97e2')
 
 build() {
   cd $srcdir/Net-XMPP-$pkgver


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 13:00:52
  Author: spupykin
Revision: 127657

archrelease: copy trunk to community-any

Added:
  perl-net-xmpp/repos/community-any/PKGBUILD
(from rev 127656, perl-net-xmpp/trunk/PKGBUILD)
Deleted:
  perl-net-xmpp/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-13 12:00:43 UTC (rev 127656)
+++ PKGBUILD2015-02-13 12:00:52 UTC (rev 127657)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Charles Mauch cma...@gmail.com
-
-pkgname=perl-net-xmpp
-pkgver=1.02
-pkgrel=7
-pkgdesc=Perl/CPAN Module Net::XMPP
-arch=(any)
-url=http://search.cpan.org/dist/Net-XMPP;
-license=(GPL PerlArtistic)
-makedepends=(perl-digest-sha1 perl-xml-stream)
-depends=(perl-digest-sha1 perl-xml-stream perl-digest-hmac)
-source=(http://www.cpan.org/authors/id/H/HA/HACKER/Net-XMPP-$pkgver.tar.gz;)
-md5sums=('67cf40d3bbbe6740c21c856c79692fde')
-
-build() {
-  cd $srcdir/Net-XMPP-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd $srcdir/Net-XMPP-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-net-xmpp/repos/community-any/PKGBUILD (from rev 127656, 
perl-net-xmpp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-13 12:00:52 UTC (rev 127657)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Charles Mauch cma...@gmail.com
+
+pkgname=perl-net-xmpp
+pkgver=1.05
+pkgrel=1
+pkgdesc=Perl/CPAN Module Net::XMPP
+arch=(any)
+url=http://search.cpan.org/dist/Net-XMPP;
+license=(GPL PerlArtistic)
+makedepends=(perl-digest-sha1 perl-xml-stream)
+depends=(perl-digest-sha1 perl-xml-stream perl-digest-hmac)
+source=(http://search.cpan.org/CPAN/authors/id/D/DA/DAPATRICK/Net-XMPP-$pkgver.tar.gz;)
+md5sums=('6fdfeecde1b7eea1a24413e6557a97e2')
+
+build() {
+  cd $srcdir/Net-XMPP-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd $srcdir/Net-XMPP-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 14:09:00
  Author: spupykin
Revision: 127664

upgpkg: gsoap 2.8.21-1

upd

Modified:
  gsoap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 12:47:14 UTC (rev 127663)
+++ PKGBUILD2015-02-13 13:09:00 UTC (rev 127664)
@@ -4,8 +4,8 @@
 # Contributor: Lee.MaRS leem...@gmail.com
 
 pkgname=gsoap
-pkgver=2.8.18
-pkgrel=2
+pkgver=2.8.21
+pkgrel=1
 pkgdesc=Offers an XML language binding to ease the development of SOAP/XML 
Web services in C and C/C++
 url=http://www.cs.fsu.edu/~engelen/soap.html;
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 options=('staticlibs')
 source=(http://prdownloads.sourceforge.net/gsoap2/${pkgname}_${pkgver}.zip
LICENSE)
-md5sums=('2e8996f5f68980933c9bc4374b2d93cd'
+md5sums=('1464dde38e032809ec722100f4131942'
  '27aaa3f5166db94d44044c11a7b2c37b')
 
 build() {


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 14:09:12
  Author: spupykin
Revision: 127665

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

Added:
  gsoap/repos/community-i686/LICENSE
(from rev 127664, gsoap/trunk/LICENSE)
  gsoap/repos/community-i686/PKGBUILD
(from rev 127664, gsoap/trunk/PKGBUILD)
  gsoap/repos/community-x86_64/LICENSE
(from rev 127664, gsoap/trunk/LICENSE)
  gsoap/repos/community-x86_64/PKGBUILD
(from rev 127664, gsoap/trunk/PKGBUILD)
Deleted:
  gsoap/repos/community-i686/LICENSE
  gsoap/repos/community-i686/PKGBUILD
  gsoap/repos/community-x86_64/LICENSE
  gsoap/repos/community-x86_64/PKGBUILD

---+
 /LICENSE  |  326 
 /PKGBUILD |   78 ++
 community-i686/LICENSE|  163 --
 community-i686/PKGBUILD   |   39 -
 community-x86_64/LICENSE  |  163 --
 community-x86_64/PKGBUILD |   39 -
 6 files changed, 404 insertions(+), 404 deletions(-)

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


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

2015-02-13 Thread Jaroslav Lichtblau
Date: Friday, February 13, 2015 @ 17:55:29
  Author: jlichtblau
Revision: 127683

upgpkg: syncthing-gtk 0.6.1-1

Modified:
  syncthing-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 16:38:36 UTC (rev 127682)
+++ PKGBUILD2015-02-13 16:55:29 UTC (rev 127683)
@@ -4,8 +4,8 @@
 # Contributor: kozec kozec at kozec dot com
 
 pkgname=syncthing-gtk
-pkgver=0.6
-pkgrel=2
+pkgver=0.6.1
+pkgrel=1
 pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
 arch=('any')
 url='https://github.com/syncthing/syncthing-gtk'
@@ -15,7 +15,7 @@
 optdepends=('python2-nautilus: file manager integration for Nautilus'
 'python2-caja: file manager integration for Caja')
 source=(https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('bba5127c79e8aa7d0a3abb5612889bc1489a5de818f22c8b2bb712a0595fd5c4')
+sha256sums=('838186313056392c9f006bd3ec8f936c2f886f1afe655c839106b80cbea7e775')
 
 build() {
   cd $pkgname-$pkgver


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 17:00:06
  Author: spupykin
Revision: 127670

upgpkg: perl-datetime-timezone 1.81-2

upd

Modified:
  perl-datetime-timezone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 15:59:55 UTC (rev 127669)
+++ PKGBUILD2015-02-13 16:00:06 UTC (rev 127670)
@@ -4,12 +4,13 @@
 
 pkgname=perl-datetime-timezone
 pkgver=1.81
-pkgrel=1
+pkgrel=2
 pkgdesc=Time zone object base class and factory 
 arch=(any)
 url=http://search.cpan.org/dist/DateTime-TimeZone;
 license=('GPL' 'PerlArtistic')
-depends=('perl-class-singleton=1.03' 'perl-params-validate=0.72' 
'perl-class-load')
+depends=('perl-class-singleton=1.03' 'perl-params-validate=0.72' 
'perl-class-load'
+'perl-list-allutils')
 options=('!emptydirs')
 
source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-TimeZone-$pkgver.tar.gz)
 md5sums=('62d4153bfb175ee3b04482b2f4b0b177')


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 17:02:40
  Author: spupykin
Revision: 127675

archrelease: copy trunk to community-any

Added:
  perl-authen-radius/repos/community-any/undef-warn-fix.patch
(from rev 127669, perl-authen-radius/trunk/undef-warn-fix.patch)
Deleted:
  perl-authen-radius/repos/community-any/PKGBUILD

--+
 PKGBUILD |   28 
 undef-warn-fix.patch |   14 ++
 2 files changed, 14 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-13 16:00:34 UTC (rev 127674)
+++ PKGBUILD2015-02-13 16:02:40 UTC (rev 127675)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=perl-authen-radius
-pkgver=0.24
-pkgrel=1
-pkgdesc=perl radius client
-arch=('any')
-url=http://search.cpan.org/dist/Authen-Radius/;
-#url=http://search.cpan.org/dist/RadiusPerl;
-license=('GPL' 'PerlArtistic')
-depends=('perl-data-hexdump=0.02')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/P/PO/PORTAONE/Authen-Radius-$pkgver.tar.gz)
-md5sums=('35541556f8ec48bf0b60f2e8d284957f')
-
-build() {
-  cd  $srcdir/Authen-Radius-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Authen-Radius-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-authen-radius/repos/community-any/undef-warn-fix.patch (from rev 
127669, perl-authen-radius/trunk/undef-warn-fix.patch)
===
--- undef-warn-fix.patch(rev 0)
+++ undef-warn-fix.patch2015-02-13 16:02:40 UTC (rev 127675)
@@ -0,0 +1,14 @@
+diff --git a/Radius.pm b/Radius.pm
+index db56f23..b88db32 100644
+--- a/Radius.pm
 b/Radius.pm
+@@ -436,7 +436,8 @@ sub vendorID ($) {
+   return defined $dict_vendor_name{ $attr-{'Vendor'} }{'id'} ? 
$dict_vendor_name{ $attr-{'Vendor'} }{'id'} : int($attr-{'Vendor'});
+ } else {
+   # look up vendor by attribute name
+-  my $vendor_name = $dict_name{$attr-{'Name'}}{'vendor'};
++  my $vendor_name = defined ($dict_name{$attr-{'Name'}}{'vendor'}) ?
++  $dict_name{$attr-{'Name'}}{'vendor'} : 'not defined';
+   my $vendor_id = defined ($dict_vendor_name{$vendor_name}{'id'}) ?
+   $dict_vendor_name{$vendor_name}{'id'} : 'not defined';
+   return $vendor_id;


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 17:00:27
  Author: spupykin
Revision: 127673

upgpkg: perl-test-warnings 0.016-1

upd

Modified:
  perl-test-warnings/trunk/PKGBUILD (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 16:00:24 UTC (rev 127672)
+++ PKGBUILD2015-02-13 16:00:27 UTC (rev 127673)
@@ -1,3 +1,5 @@
+# $Id$
+# Maintainer: Sergej Pupykin arch+...@sergej.pp.ru
 # Contributor: John D Jones III jnbek1972 -_AT_- g m a i l -_Dot_- com
 # Generator  : CPANPLUS::Dist::Arch 1.28
 


Property changes on: perl-test-warnings/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in perl-test-warnings/repos (2 files)

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 17:00:34
  Author: spupykin
Revision: 127674

archrelease: copy trunk to community-any

Added:
  perl-test-warnings/repos/community-any/
  perl-test-warnings/repos/community-any/PKGBUILD
(from rev 127673, perl-test-warnings/trunk/PKGBUILD)

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

Copied: perl-test-warnings/repos/community-any/PKGBUILD (from rev 127673, 
perl-test-warnings/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2015-02-13 16:00:34 UTC (rev 127674)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Sergej Pupykin arch+...@sergej.pp.ru
+# Contributor: John D Jones III jnbek1972 -_AT_- g m a i l -_Dot_- com
+# Generator  : CPANPLUS::Dist::Arch 1.28
+
+pkgname='perl-test-warnings'
+pkgver='0.016'
+pkgrel='1'
+pkgdesc=Test for warnings and the lack of them
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl')
+makedepends=()
+url='http://search.mcpan.org/dist/Test-Warnings'
+source=('http://search.mcpan.org/CPAN/authors/id/E/ET/ETHER/Test-Warnings-0.016.tar.gz')
+md5sums=('5608b3f8dbdd65d0251200754d97863a')
+sha512sums=('78a3e26d2093be8612e1e97f2d45023f224ea7e09f9d669a049fd331e7ff49fb93be52996d7f7fba29263437307587fedd80c54a56b6b282b328668152557027')
+_distdir=Test-Warnings-0.016
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+
+cd $srcdir/$_distdir
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd $srcdir/$_distdir
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+make test
+  )
+}
+
+package() {
+  cd $srcdir/$_distdir
+  make install
+
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in open-vm-tools/trunk (PKGBUILD vmware-vmblock-fuse.service)

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 17:37:34
  Author: spupykin
Revision: 127679

upgpkg: open-vm-tools 6:9.4.6-4

upd

Added:
  open-vm-tools/trunk/vmware-vmblock-fuse.service
Modified:
  open-vm-tools/trunk/PKGBUILD

-+
 PKGBUILD|9 ++---
 vmware-vmblock-fuse.service |   11 +++
 2 files changed, 17 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 16:37:31 UTC (rev 127678)
+++ PKGBUILD2015-02-13 16:37:34 UTC (rev 127679)
@@ -6,7 +6,7 @@
 epoch=6
 pkgver=9.4.6
 _pkgsubver=1770165
-pkgrel=3
+pkgrel=4
 pkgdesc=The Open Virtual Machine Tools (open-vm-tools) are the open source 
implementation of VMware Tools
 arch=('i686' 'x86_64')
 url=http://open-vm-tools.sourceforge.net/;
@@ -26,13 +26,15 @@
tools.conf
vmware-guestd
xautostart.conf
-   vmtoolsd.service)
+   vmtoolsd.service
+   vmware-vmblock-fuse.service)
 md5sums=('3969daf1535d34e1c5f0c87a779b7642'
  'cbfa69ead382bc527e6f6ddfed8e5c4d'
  'b55d15e2c4be396aad709aeca91033d3'
  '1b9ae908fce4c623269f100ee9bdfdef'
  '75a25d83417e683957321f97a00f8465'
- 'a6c53243d31c765580f6dded7d5fa98f')
+ 'a6c53243d31c765580f6dded7d5fa98f'
+ '92ec9ad2369c1427b8cfa0a77e1e')
 
 build() {
   cd $srcdir/$pkgname-${pkgver}-${_pkgsubver}
@@ -72,6 +74,7 @@
 
   cd $pkgdir  find -type f -exec sh -c file {} | grep ELF /dev/null  
echo {}  chrpath -d {} \;
   install -Dm644 ${srcdir}/vmtoolsd.service 
${pkgdir}/usr/lib/systemd/system/vmtoolsd.service
+  install -Dm644 ${srcdir}/vmware-vmblock-fuse.service 
${pkgdir}/usr/lib/systemd/system/vmware-vmblock-fuse.service
 
   rm -f $pkgdir/etc/vmware-tools/scripts/vmware/*.orig
 }

Added: vmware-vmblock-fuse.service
===
--- vmware-vmblock-fuse.service (rev 0)
+++ vmware-vmblock-fuse.service 2015-02-13 16:37:34 UTC (rev 127679)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Open Virtual Machine Tools (vmware-vmblock-fuse)
+ConditionVirtualization=vmware
+
+[Service]
+Type=simple
+ExecStartPre=/usr/bin/mkdir -p /run/vmblock-fuse
+ExecStart=/usr/bin/vmware-vmblock-fuse -d -f -o 
subtype=vmware-vmblock,default_permissions,allow_other /run/vmblock-fuse
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in libdnet/repos (10 files)

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 17:37:31
  Author: spupykin
Revision: 127678

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

Added:
  libdnet/repos/community-i686/PKGBUILD
(from rev 127677, libdnet/trunk/PKGBUILD)
  libdnet/repos/community-i686/libdnet-1.12.pyrex2.7.patch
(from rev 127677, libdnet/trunk/libdnet-1.12.pyrex2.7.patch)
  libdnet/repos/community-i686/libdnet.install
(from rev 127677, libdnet/trunk/libdnet.install)
  libdnet/repos/community-x86_64/PKGBUILD
(from rev 127677, libdnet/trunk/PKGBUILD)
  libdnet/repos/community-x86_64/libdnet-1.12.pyrex2.7.patch
(from rev 127677, libdnet/trunk/libdnet-1.12.pyrex2.7.patch)
  libdnet/repos/community-x86_64/libdnet.install
(from rev 127677, libdnet/trunk/libdnet.install)
Deleted:
  libdnet/repos/community-i686/PKGBUILD
  libdnet/repos/community-i686/libdnet.install
  libdnet/repos/community-x86_64/PKGBUILD
  libdnet/repos/community-x86_64/libdnet.install

--+
 /PKGBUILD|   82 +
 /libdnet.install |6 +
 community-i686/PKGBUILD  |   33 --
 community-i686/libdnet-1.12.pyrex2.7.patch   |   74 ++
 community-i686/libdnet.install   |3 
 community-x86_64/PKGBUILD|   33 --
 community-x86_64/libdnet-1.12.pyrex2.7.patch |   74 ++
 community-x86_64/libdnet.install |3 
 8 files changed, 236 insertions(+), 72 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-13 16:37:16 UTC (rev 127677)
+++ community-i686/PKGBUILD 2015-02-13 16:37:31 UTC (rev 127678)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: James Fryman jfry...@gmail.com
-
-pkgname=libdnet
-pkgver=1.12
-pkgrel=8
-pkgdesc=A simplified, portable interface to several low-level networking 
routines
-arch=(i686 x86_64)
-makedepends=(python2)
-optdepends=(python2)
-license=(BSD)
-url=http://code.google.com/p/libdnet/;
-source=(http://libdnet.googlecode.com/files/libdnet-$pkgver.tgz)
-md5sums=('9253ef6de1b5e28e9c9a62b882e44cc9')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  autoreconf -I config --force --install
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-
-  cd python  \
-  python2 setup.py install --root=$pkgdir
-
-  install -D -m0644 ../LICENSE $pkgdir/usr/share/licenses/libdnet/license
-}

Copied: libdnet/repos/community-i686/PKGBUILD (from rev 127677, 
libdnet/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-13 16:37:31 UTC (rev 127678)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: James Fryman jfry...@gmail.com
+
+pkgname=libdnet
+pkgver=1.12
+pkgrel=9
+pkgdesc=A simplified, portable interface to several low-level networking 
routines
+arch=(i686 x86_64)
+makedepends=('python2' 'pyrex')
+optdepends=('python2')
+license=(BSD)
+url=http://code.google.com/p/libdnet/;
+source=(http://libdnet.googlecode.com/files/libdnet-$pkgver.tgz
+   libdnet-1.12.pyrex2.7.patch)
+md5sums=('9253ef6de1b5e28e9c9a62b882e44cc9'
+ '01c3a40f83fc13756728b836cd693942')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -p0 $srcdir/libdnet-1.12.pyrex2.7.patch
+  rm -f python/dnet.c
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  autoreconf -I config --force --install
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  pyrexc python/dnet.pyx
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+
+  cd python  \
+  python2 setup.py install --root=$pkgdir
+
+  install -D -m0644 ../LICENSE $pkgdir/usr/share/licenses/libdnet/license
+}

Copied: libdnet/repos/community-i686/libdnet-1.12.pyrex2.7.patch (from rev 
127677, libdnet/trunk/libdnet-1.12.pyrex2.7.patch)
===
--- community-i686/libdnet-1.12.pyrex2.7.patch  (rev 0)
+++ community-i686/libdnet-1.12.pyrex2.7.patch  2015-02-13 16:37:31 UTC (rev 
127678)
@@ -0,0 +1,74 @@
+--- python/dnet.pyx2007-01-20 12:39:21.0 +0100
 python/dnet.pyx2014-10-21 17:23:52.719665497 +0200
+@@ -24,7 +24,7 @@
+ cdef extern from Python.h:
+ object  PyString_FromStringAndSize(char *s, int len)
+ int PyString_Size(object o)
+-int PyObject_AsReadBuffer(object o, char **pp, int *lenp)
++int PyObject_AsReadBuffer(object o, char **pp, Py_ssize_t *lenp)
+ int PyInt_Check(object o)
+ int PyLong_Check(object o)
+ longPyInt_AsLong(object o)
+@@ -160,7 +160,7 @@
+ return 

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

2015-02-13 Thread Andreas Radke
Date: Friday, February 13, 2015 @ 17:48:01
  Author: andyrtr
Revision: 231378

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

Added:
  linux-lts/repos/testing-i686/
  
linux-lts/repos/testing-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 231377, 
linux-lts/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux-lts/repos/testing-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 231377, 
linux-lts/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux-lts/repos/testing-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 231377, 
linux-lts/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  linux-lts/repos/testing-i686/0006-genksyms-fix-typeof-handling.patch
(from rev 231377, linux-lts/trunk/0006-genksyms-fix-typeof-handling.patch)
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 231377, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 231377, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 231377, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 231377, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 231377, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 231377, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-x86_64/
  
linux-lts/repos/testing-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 231377, 
linux-lts/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux-lts/repos/testing-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 231377, 
linux-lts/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux-lts/repos/testing-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 231377, 
linux-lts/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  linux-lts/repos/testing-x86_64/0006-genksyms-fix-typeof-handling.patch
(from rev 231377, linux-lts/trunk/0006-genksyms-fix-typeof-handling.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 231377, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 231377, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 231377, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 231377, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 231377, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 231377, linux-lts/trunk/linux-lts.preset)

+
 testing-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch   
|   74 
 testing-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch   
|   93 
 testing-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch 
|   75 
 testing-i686/0006-genksyms-fix-typeof-handling.patch   
| 1360 ++
 testing-i686/PKGBUILD  
|  327 
 testing-i686/change-default-console-loglevel.patch 
|   12 
 testing-i686/config
| 6696 ++
 testing-i686/config.x86_64 
| 6487 +
 testing-i686/linux-lts.install 
|   37 
 testing-i686/linux-lts.preset  
|   14 
 testing-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch 
|   74 
 testing-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch 
|   93 
 testing-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch   
|   75 
 testing-x86_64/0006-genksyms-fix-typeof-handling.patch 
| 1360 ++
 testing-x86_64/PKGBUILD
|  327 
 testing-x86_64/change-default-console-loglevel.patch   
|   12 
 testing-x86_64/config  
| 6696 ++
 testing-x86_64/config.x86_64   
| 6487 +
 testing-x86_64/linux-lts.install   
|   37 
 testing-x86_64/linux-lts.preset
|   14 
 20 files changed, 30350 insertions(+)

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


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

2015-02-13 Thread Jaroslav Lichtblau
Date: Friday, February 13, 2015 @ 17:55:38
  Author: jlichtblau
Revision: 127684

archrelease: copy trunk to community-any

Added:
  syncthing-gtk/repos/community-any/PKGBUILD
(from rev 127683, syncthing-gtk/trunk/PKGBUILD)
Deleted:
  syncthing-gtk/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-13 16:55:29 UTC (rev 127683)
+++ PKGBUILD2015-02-13 16:55:38 UTC (rev 127684)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Martin Wimpress c...@flexion.org
-# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: kozec kozec at kozec dot com
-
-pkgname=syncthing-gtk
-pkgver=0.6
-pkgrel=2
-pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
-arch=('any')
-url='https://github.com/syncthing/syncthing-gtk'
-license=('GPL2')
-depends=('gtk3' 'libnotify' 'python2-dateutil' 'python2-gobject' 
'python2-pyinotify' 'python2-cairo' 'syncthing')
-makedepends=('python2-setuptools')
-optdepends=('python2-nautilus: file manager integration for Nautilus'
-'python2-caja: file manager integration for Caja')
-source=(https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('bba5127c79e8aa7d0a3abb5612889bc1489a5de818f22c8b2bb712a0595fd5c4')
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: syncthing-gtk/repos/community-any/PKGBUILD (from rev 127683, 
syncthing-gtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-13 16:55:38 UTC (rev 127684)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Martin Wimpress c...@flexion.org
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: kozec kozec at kozec dot com
+
+pkgname=syncthing-gtk
+pkgver=0.6.1
+pkgrel=1
+pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
+arch=('any')
+url='https://github.com/syncthing/syncthing-gtk'
+license=('GPL2')
+depends=('gtk3' 'libnotify' 'python2-dateutil' 'python2-gobject' 
'python2-pyinotify' 'python2-cairo' 'syncthing')
+makedepends=('python2-setuptools')
+optdepends=('python2-nautilus: file manager integration for Nautilus'
+'python2-caja: file manager integration for Caja')
+source=(https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('838186313056392c9f006bd3ec8f936c2f886f1afe655c839106b80cbea7e775')
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}


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

2015-02-13 Thread Pierre Schmitz
Date: Friday, February 13, 2015 @ 18:00:22
  Author: pierre
Revision: 231379

upgpkg: logrotate 3.8.9-1

Modified:
  logrotate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 16:48:01 UTC (rev 231378)
+++ PKGBUILD2015-02-13 17:00:22 UTC (rev 231379)
@@ -2,8 +2,8 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=logrotate
-pkgver=3.8.8
-pkgrel=2
+pkgver=3.8.9
+pkgrel=1
 pkgdesc=Rotates system logs automatically
 arch=('i686' 'x86_64')
 url=https://fedorahosted.org/logrotate/;
@@ -15,7 +15,7 @@
 'paths.patch'
 'logrotate.conf'
 logrotate.{timer,service})
-md5sums=('49846e873dddea15964cd0355b9943ca'
+md5sums=('2660f30742da79870d15d042b07829f6'
  'e76526bcd6fc33c9d921e1cb1eff1ffb'
  '94dae4d3eded2fab9ae879533d3680db'
  '287c2ad9b074cb5478db7692f385827c'


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

2015-02-13 Thread Pierre Schmitz
Date: Friday, February 13, 2015 @ 18:00:41
  Author: pierre
Revision: 231380

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

Added:
  logrotate/repos/testing-i686/
  logrotate/repos/testing-i686/PKGBUILD
(from rev 231379, logrotate/trunk/PKGBUILD)
  logrotate/repos/testing-i686/logrotate.conf
(from rev 231379, logrotate/trunk/logrotate.conf)
  logrotate/repos/testing-i686/logrotate.service
(from rev 231379, logrotate/trunk/logrotate.service)
  logrotate/repos/testing-i686/logrotate.timer
(from rev 231379, logrotate/trunk/logrotate.timer)
  logrotate/repos/testing-i686/paths.patch
(from rev 231379, logrotate/trunk/paths.patch)
  logrotate/repos/testing-x86_64/
  logrotate/repos/testing-x86_64/PKGBUILD
(from rev 231379, logrotate/trunk/PKGBUILD)
  logrotate/repos/testing-x86_64/logrotate.conf
(from rev 231379, logrotate/trunk/logrotate.conf)
  logrotate/repos/testing-x86_64/logrotate.service
(from rev 231379, logrotate/trunk/logrotate.service)
  logrotate/repos/testing-x86_64/logrotate.timer
(from rev 231379, logrotate/trunk/logrotate.timer)
  logrotate/repos/testing-x86_64/paths.patch
(from rev 231379, logrotate/trunk/paths.patch)

--+
 testing-i686/PKGBUILD|   56 +
 testing-i686/logrotate.conf  |   38 +
 testing-i686/logrotate.service   |9 +
 testing-i686/logrotate.timer |7 
 testing-i686/paths.patch |   25 
 testing-x86_64/PKGBUILD  |   56 +
 testing-x86_64/logrotate.conf|   38 +
 testing-x86_64/logrotate.service |9 +
 testing-x86_64/logrotate.timer   |7 
 testing-x86_64/paths.patch   |   25 
 10 files changed, 270 insertions(+)

Copied: logrotate/repos/testing-i686/PKGBUILD (from rev 231379, 
logrotate/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-13 17:00:41 UTC (rev 231380)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=logrotate
+pkgver=3.8.9
+pkgrel=1
+pkgdesc=Rotates system logs automatically
+arch=('i686' 'x86_64')
+url=https://fedorahosted.org/logrotate/;
+license=('GPL')
+groups=('base')
+depends=('popt' 'gzip' 'acl')
+backup=('etc/logrotate.conf')
+source=(https://fedorahosted.org/releases/l/o/logrotate/logrotate-${pkgver}.tar.gz;
+'paths.patch'
+'logrotate.conf'
+logrotate.{timer,service})
+md5sums=('2660f30742da79870d15d042b07829f6'
+ 'e76526bcd6fc33c9d921e1cb1eff1ffb'
+ '94dae4d3eded2fab9ae879533d3680db'
+ '287c2ad9b074cb5478db7692f385827c'
+ '85560be5272ed68a88bb77a0a2293369')
+
+build() {
+   cd $srcdir/${pkgname}-${pkgver}
+
+   patch -p0 -i $srcdir/paths.patch
+
+   ./autogen.sh
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --mandir=/usr/share/man \
+   --with-acl
+   make
+}
+
+check() {
+   cd $srcdir/${pkgname}-${pkgver}
+
+   make test
+}
+
+package() {
+   cd $srcdir/${pkgname}-${pkgver}
+
+   make DESTDIR=$pkgdir install
+
+   install -dm755 $pkgdir/etc/logrotate.d
+   install -Dm644 $srcdir/logrotate.conf $pkgdir/etc/logrotate.conf
+
+   install -D -m644 ${srcdir}/logrotate.timer 
${pkgdir}/usr/lib/systemd/system/logrotate.timer
+   install -D -m644 ${srcdir}/logrotate.service 
${pkgdir}/usr/lib/systemd/system/logrotate.service
+   install -d -m755 
${pkgdir}/usr/lib/systemd/system/multi-user.target.wants
+   ln -s ../logrotate.timer 
${pkgdir}//usr/lib/systemd/system/multi-user.target.wants/logrotate.timer
+}

Copied: logrotate/repos/testing-i686/logrotate.conf (from rev 231379, 
logrotate/trunk/logrotate.conf)
===
--- testing-i686/logrotate.conf (rev 0)
+++ testing-i686/logrotate.conf 2015-02-13 17:00:41 UTC (rev 231380)
@@ -0,0 +1,38 @@
+# see man logrotate for details
+# rotate log files weekly
+weekly
+
+# keep 4 weeks worth of backlogs
+rotate 4
+
+# restrict maximum size of log files
+#size 20M
+
+# create new (empty) log files after rotating old ones
+create
+
+# uncomment this if you want your log files compressed
+#compress
+
+# Logs are moved into directory for rotation
+# olddir /var/log/archive
+
+# Ignore pacman saved files
+tabooext + .pacorig .pacnew .pacsave
+
+# Arch packages drop log rotation information into this directory
+include /etc/logrotate.d
+
+/var/log/wtmp {
+monthly
+create 0664 root utmp
+minsize 1M
+rotate 1
+}
+
+/var/log/btmp {
+missingok
+monthly
+create 0600 root utmp
+rotate 1
+}

Copied: logrotate/repos/testing-i686/logrotate.service (from rev 231379, 

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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 16:47:04
  Author: spupykin
Revision: 127667

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

Added:
  
vbindiff/repos/community-i686/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch
(from rev 127666, 
vbindiff/trunk/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch)
  vbindiff/repos/community-i686/PKGBUILD
(from rev 127666, vbindiff/trunk/PKGBUILD)
  
vbindiff/repos/community-x86_64/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch
(from rev 127666, 
vbindiff/trunk/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch)
  vbindiff/repos/community-x86_64/PKGBUILD
(from rev 127666, vbindiff/trunk/PKGBUILD)
Deleted:
  vbindiff/repos/community-i686/PKGBUILD
  vbindiff/repos/community-x86_64/PKGBUILD

--+
 /PKGBUILD  
  |   64 ++
 community-i686/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch 
  |   26 
 community-i686/PKGBUILD
  |   25 ---
 
community-x86_64/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch
 |   26 
 community-x86_64/PKGBUILD  
  |   25 ---
 5 files changed, 116 insertions(+), 50 deletions(-)

Copied: 
vbindiff/repos/community-i686/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch
 (from rev 127666, 
vbindiff/trunk/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch)
===
--- 
community-i686/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch  
(rev 0)
+++ 
community-i686/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch  
2015-02-13 15:47:04 UTC (rev 127667)
@@ -0,0 +1,26 @@
+From 879a63ac5f0ffdbe7350ccc7438692a6669d26f2 Mon Sep 17 00:00:00 2001
+From: Peter Ross pr...@xvid.org
+Date: Sat, 22 Feb 2014 22:50:54 +1100
+Subject: [PATCH] vbindiff: prevent segfault when comparing files of different
+ length
+
+---
+ vbindiff.cpp | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/vbindiff.cpp b/vbindiff.cpp
+index 116a037..a032bc6 100644
+--- a/vbindiff.cpp
 b/vbindiff.cpp
+@@ -487,6 +487,8 @@ void FileDisplay::display()
+ 
+   buf[index++] = displayTable[data-line[i][j]];
+ }
++if (index  0)
++index = 0;
+ memset(buf + index, ' ', sizeof(buf) - index - 1);
+ memset(str, ' ', screenWidth - (str - buf2));
+ 
+-- 
+1.8.3.2
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-13 15:46:50 UTC (rev 127666)
+++ community-i686/PKGBUILD 2015-02-13 15:47:04 UTC (rev 127667)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: tyr0 thomas.hoer...@gmx.at
-
-pkgname=vbindiff
-pkgver=3.0_beta4
-pkgrel=4
-pkgdesc=displays files in hexadecimal and ASCII (or EBCDIC) and highlight the 
differences between them
-arch=('i686' 'x86_64')
-url=http://www.cjmweb.net/vbindiff/;
-license=('GPL')
-depends=('gcc-libs' 'ncurses')
-source=($url/$pkgname-$pkgver.tar.gz)
-md5sums=('dbda80ef580e1a0975ef50b9aaa5210e')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=$pkgdir/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make install
-}

Copied: vbindiff/repos/community-i686/PKGBUILD (from rev 127666, 
vbindiff/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-13 15:47:04 UTC (rev 127667)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: tyr0 thomas.hoer...@gmx.at
+
+pkgname=vbindiff
+pkgver=3.0_beta4
+pkgrel=5
+pkgdesc=displays files in hexadecimal and ASCII (or EBCDIC) and highlight the 
differences between them
+arch=('i686' 'x86_64')
+url=http://www.cjmweb.net/vbindiff/;
+license=('GPL')
+depends=('gcc-libs' 'ncurses')
+source=($url/$pkgname-$pkgver.tar.gz
+   0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch)
+md5sums=('dbda80ef580e1a0975ef50b9aaa5210e'
+ 'aefbf59d36932019eda1efdbd8b50ea4')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -p1 
$srcdir/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=$pkgdir/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make install
+}

Copied: 
vbindiff/repos/community-x86_64/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch
 (from rev 127666, 
vbindiff/trunk/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch)
===
--- 

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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 16:46:50
  Author: spupykin
Revision: 127666

upgpkg: vbindiff 3.0_beta4-5

upd

Added:
  vbindiff/trunk/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch
Modified:
  vbindiff/trunk/PKGBUILD

-+
 0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch |   26 
++
 PKGBUILD|   13 +++--
 2 files changed, 36 insertions(+), 3 deletions(-)

Added: 0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch
===
--- 0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch 
(rev 0)
+++ 0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch 
2015-02-13 15:46:50 UTC (rev 127666)
@@ -0,0 +1,26 @@
+From 879a63ac5f0ffdbe7350ccc7438692a6669d26f2 Mon Sep 17 00:00:00 2001
+From: Peter Ross pr...@xvid.org
+Date: Sat, 22 Feb 2014 22:50:54 +1100
+Subject: [PATCH] vbindiff: prevent segfault when comparing files of different
+ length
+
+---
+ vbindiff.cpp | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/vbindiff.cpp b/vbindiff.cpp
+index 116a037..a032bc6 100644
+--- a/vbindiff.cpp
 b/vbindiff.cpp
+@@ -487,6 +487,8 @@ void FileDisplay::display()
+ 
+   buf[index++] = displayTable[data-line[i][j]];
+ }
++if (index  0)
++index = 0;
+ memset(buf + index, ' ', sizeof(buf) - index - 1);
+ memset(str, ' ', screenWidth - (str - buf2));
+ 
+-- 
+1.8.3.2
+

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 13:09:12 UTC (rev 127665)
+++ PKGBUILD2015-02-13 15:46:50 UTC (rev 127666)
@@ -4,15 +4,22 @@
 
 pkgname=vbindiff
 pkgver=3.0_beta4
-pkgrel=4
+pkgrel=5
 pkgdesc=displays files in hexadecimal and ASCII (or EBCDIC) and highlight the 
differences between them
 arch=('i686' 'x86_64')
 url=http://www.cjmweb.net/vbindiff/;
 license=('GPL')
 depends=('gcc-libs' 'ncurses')
-source=($url/$pkgname-$pkgver.tar.gz)
-md5sums=('dbda80ef580e1a0975ef50b9aaa5210e')
+source=($url/$pkgname-$pkgver.tar.gz
+   0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch)
+md5sums=('dbda80ef580e1a0975ef50b9aaa5210e'
+ 'aefbf59d36932019eda1efdbd8b50ea4')
 
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -p1 
$srcdir/0001-vbindiff-prevent-segfault-when-comparing-files-of-di.patch
+}
+
 build() {
   cd $srcdir/$pkgname-$pkgver
   ./configure --prefix=$pkgdir/usr


[arch-commits] Commit in (10 files)

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 16:52:07
  Author: spupykin
Revision: 127668

Added:
  perl-list-allutils/
  perl-list-allutils/.AURINFO
  perl-list-allutils/repos/
  perl-list-allutils/trunk/
  perl-list-allutils/trunk/PKGBUILD
  perl-test-warnings/
  perl-test-warnings/.AURINFO
  perl-test-warnings/repos/
  perl-test-warnings/trunk/
  perl-test-warnings/trunk/PKGBUILD

---+
 perl-list-allutils/.AURINFO   |   16 +++
 perl-list-allutils/trunk/PKGBUILD |   38 +++
 perl-test-warnings/.AURINFO   |   14 ++
 perl-test-warnings/trunk/PKGBUILD |   50 
 4 files changed, 118 insertions(+)

Added: perl-list-allutils/.AURINFO
===
--- perl-list-allutils/.AURINFO (rev 0)
+++ perl-list-allutils/.AURINFO 2015-02-13 15:52:07 UTC (rev 127668)
@@ -0,0 +1,16 @@
+pkgbase = perl-list-allutils
+   pkgdesc = Perl package that combines List::Util and List::MoreUtils in 
one bite-sized package
+   pkgver = 0.09
+   pkgrel = 1
+   url = http://search.cpan.org/dist/List-AllUtils
+   arch = any
+   license = Artistic2.0
+   checkdepends = perl-test-warnings
+   depends = perl=5.19.3
+   depends = perl-list-moreutils=0.28
+   options = !emptydirs
+   source = 
http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/List-AllUtils-0.09.tar.gz
+   md5sums = 3e2dfeeef80c4e1952443c6b7d48583c
+
+pkgname = perl-list-allutils
+

Added: perl-list-allutils/trunk/PKGBUILD
===
--- perl-list-allutils/trunk/PKGBUILD   (rev 0)
+++ perl-list-allutils/trunk/PKGBUILD   2015-02-13 15:52:07 UTC (rev 127668)
@@ -0,0 +1,38 @@
+# CPAN Name  : List::AllUtils
+# Contributor: Anton Leontiev bunder /at/ t-25.ru
+# Generator  : CPANPLUS::Dist::Arch 1.29
+
+pkgname=perl-list-allutils
+pkgver=0.09
+pkgrel=1
+pkgdesc='Perl package that combines List::Util and List::MoreUtils in one 
bite-sized package'
+arch=('any')
+url='http://search.cpan.org/dist/List-AllUtils'
+license=('Artistic2.0')
+depends=('perl=5.19.3' 'perl-list-moreutils=0.28')
+checkdepends=('perl-test-warnings')
+source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/List-AllUtils-0.09.tar.gz)
+options=(!emptydirs)
+md5sums=('3e2dfeeef80c4e1952443c6b7d48583c')
+
+build() {
+   cd List-AllUtils-0.09
+   unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+   export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+   /usr/bin/perl Makefile.PL INSTALLDIRS=vendor
+   make
+}
+
+check() {
+   cd List-AllUtils-0.09
+   unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+   export PERL_MM_USE_DEFAULT=1
+   make test
+}
+
+package() {
+   cd List-AllUtils-0.09
+   unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+   make install DESTDIR=$pkgdir
+   find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}

Added: perl-test-warnings/.AURINFO
===
--- perl-test-warnings/.AURINFO (rev 0)
+++ perl-test-warnings/.AURINFO 2015-02-13 15:52:07 UTC (rev 127668)
@@ -0,0 +1,14 @@
+pkgbase = perl-test-warnings
+   pkgdesc = Test for warnings and the lack of them
+   pkgver = 0.016
+   pkgrel = 1
+   url = http://search.mcpan.org/dist/Test-Warnings
+   arch = any
+   license = PerlArtistic
+   license = GPL
+   depends = perl
+   source = 
http://search.mcpan.org/CPAN/authors/id/E/ET/ETHER/Test-Warnings-0.016.tar.gz
+   options = !emptydirs
+
+pkgname = perl-test-warnings
+

Added: perl-test-warnings/trunk/PKGBUILD
===
--- perl-test-warnings/trunk/PKGBUILD   (rev 0)
+++ perl-test-warnings/trunk/PKGBUILD   2015-02-13 15:52:07 UTC (rev 127668)
@@ -0,0 +1,50 @@
+# Contributor: John D Jones III jnbek1972 -_AT_- g m a i l -_Dot_- com
+# Generator  : CPANPLUS::Dist::Arch 1.28
+
+pkgname='perl-test-warnings'
+pkgver='0.016'
+pkgrel='1'
+pkgdesc=Test for warnings and the lack of them
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl')
+makedepends=()
+url='http://search.mcpan.org/dist/Test-Warnings'
+source=('http://search.mcpan.org/CPAN/authors/id/E/ET/ETHER/Test-Warnings-0.016.tar.gz')
+md5sums=('5608b3f8dbdd65d0251200754d97863a')
+sha512sums=('78a3e26d2093be8612e1e97f2d45023f224ea7e09f9d669a049fd331e7ff49fb93be52996d7f7fba29263437307587fedd80c54a56b6b282b328668152557027')
+_distdir=Test-Warnings-0.016
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+

[arch-commits] Commit in libdnet/trunk (PKGBUILD libdnet-1.12.pyrex2.7.patch)

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 17:37:16
  Author: spupykin
Revision: 127677

upgpkg: libdnet 1.12-9

upd

Added:
  libdnet/trunk/libdnet-1.12.pyrex2.7.patch
Modified:
  libdnet/trunk/PKGBUILD

-+
 PKGBUILD|   20 +++
 libdnet-1.12.pyrex2.7.patch |   74 ++
 2 files changed, 88 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 16:04:50 UTC (rev 127676)
+++ PKGBUILD2015-02-13 16:37:16 UTC (rev 127677)
@@ -4,21 +4,29 @@
 
 pkgname=libdnet
 pkgver=1.12
-pkgrel=8
+pkgrel=9
 pkgdesc=A simplified, portable interface to several low-level networking 
routines
 arch=(i686 x86_64)
-makedepends=(python2)
-optdepends=(python2)
+makedepends=('python2' 'pyrex')
+optdepends=('python2')
 license=(BSD)
 url=http://code.google.com/p/libdnet/;
-source=(http://libdnet.googlecode.com/files/libdnet-$pkgver.tgz)
-md5sums=('9253ef6de1b5e28e9c9a62b882e44cc9')
+source=(http://libdnet.googlecode.com/files/libdnet-$pkgver.tgz
+   libdnet-1.12.pyrex2.7.patch)
+md5sums=('9253ef6de1b5e28e9c9a62b882e44cc9'
+ '01c3a40f83fc13756728b836cd693942')
 
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -p0 $srcdir/libdnet-1.12.pyrex2.7.patch
+  rm -f python/dnet.c
+}
+
 build() {
   cd $srcdir/$pkgname-$pkgver
-
   autoreconf -I config --force --install
   ./configure --prefix=/usr --sbindir=/usr/bin
+  pyrexc python/dnet.pyx
   make
 }
 

Added: libdnet-1.12.pyrex2.7.patch
===
--- libdnet-1.12.pyrex2.7.patch (rev 0)
+++ libdnet-1.12.pyrex2.7.patch 2015-02-13 16:37:16 UTC (rev 127677)
@@ -0,0 +1,74 @@
+--- python/dnet.pyx2007-01-20 12:39:21.0 +0100
 python/dnet.pyx2014-10-21 17:23:52.719665497 +0200
+@@ -24,7 +24,7 @@
+ cdef extern from Python.h:
+ object  PyString_FromStringAndSize(char *s, int len)
+ int PyString_Size(object o)
+-int PyObject_AsReadBuffer(object o, char **pp, int *lenp)
++int PyObject_AsReadBuffer(object o, char **pp, Py_ssize_t *lenp)
+ int PyInt_Check(object o)
+ int PyLong_Check(object o)
+ longPyInt_AsLong(object o)
+@@ -160,7 +160,7 @@
+ return PyString_FromStringAndSize(ea.data, 6)
+ 
+ def eth_pack_hdr(dst=ETH_ADDR_BROADCAST, src=ETH_ADDR_BROADCAST,
+- type=ETH_TYPE_IP):
++ type_=ETH_TYPE_IP):
+ Return a packed binary string representing an Ethernet header.
+   
+ Keyword arguments:
+@@ -172,7 +172,7 @@
+ cdef eth_addr_t s, d
+ __memcpy(s.data, src, 6)
+ __memcpy(d.data, dst, 6)
+-__eth_pack_hdr(hdr, d, s, type)
++__eth_pack_hdr(hdr, d, s, type_)
+ return PyString_FromStringAndSize(hdr, 14)
+ 
+ #
+@@ -292,7 +292,7 @@
+ 
+ cdef char buf[2048]
+ cdef char *p
+-cdef int n
++cdef Py_ssize_t n
+ if PyObject_AsReadBuffer(pkt, p, n) == 0:
+ if n  2048:
+ memcpy(buf, p, n)
+@@ -308,7 +308,7 @@
+ 
+ def ip_cksum_add(buf, int sum):
+ cdef char *p
+-cdef int n
++cdef Py_ssize_t n
+ if PyObject_AsReadBuffer(buf, p, n) == 0:
+ return __ip_cksum_add(p, n, sum)
+ else:
+@@ -441,7 +441,7 @@
+ 
+ cdef addr_t _addr
+ 
+-def __init__(self, addrtxt=None, type=ADDR_TYPE_NONE):
++def __init__(self, addrtxt=None, type_=ADDR_TYPE_NONE):
+ if addrtxt != None and addr_aton(addrtxt, self._addr)  0:
+ if PyString_Size(addrtxt) == 4:
+ self._addr.addr_type = ADDR_TYPE_IP
+@@ -785,7 +785,7 @@
+ cdef extern from *:
+ void __icmp_pack_hdr icmp_pack_hdr (char *hdr, int type, int code)
+ 
+-def icmp_pack_hdr(type, code):
++def icmp_pack_hdr(type_, code):
+ Return a packed binary string representing an ICMP header.
+ 
+ Keyword arguments:
+@@ -793,7 +793,7 @@
+ code -- ICMP code (8-bit integer)
+ 
+ cdef char buf[4]
+-__icmp_pack_hdr(buf, type, code)
++__icmp_pack_hdr(buf, type_, code)
+ return PyString_FromStringAndSize(buf, sizeof(buf))
+ 
+ #


[arch-commits] Commit in gnupg/repos (10 files)

2015-02-13 Thread Gaetan Bisson
Date: Friday, February 13, 2015 @ 17:42:59
  Author: bisson
Revision: 231376

db-move: moved gnupg from [testing] to [core] (i686, x86_64)

Added:
  gnupg/repos/core-i686/PKGBUILD
(from rev 231375, gnupg/repos/testing-i686/PKGBUILD)
  gnupg/repos/core-i686/install
(from rev 231375, gnupg/repos/testing-i686/install)
  gnupg/repos/core-x86_64/PKGBUILD
(from rev 231375, gnupg/repos/testing-x86_64/PKGBUILD)
  gnupg/repos/core-x86_64/install
(from rev 231375, gnupg/repos/testing-x86_64/install)
Deleted:
  gnupg/repos/core-i686/PKGBUILD
  gnupg/repos/core-i686/install
  gnupg/repos/core-x86_64/PKGBUILD
  gnupg/repos/core-x86_64/install
  gnupg/repos/testing-i686/
  gnupg/repos/testing-x86_64/

--+
 /PKGBUILD|  116 +
 /install |   50 +
 core-i686/PKGBUILD   |   54 --
 core-i686/install|   25 --
 core-x86_64/PKGBUILD |   54 --
 core-x86_64/install  |   25 --
 6 files changed, 166 insertions(+), 158 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-02-13 16:36:32 UTC (rev 231375)
+++ core-i686/PKGBUILD  2015-02-13 16:42:59 UTC (rev 231376)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Tobias Powalowski tp...@archlinux.org
-# Contributor: Andreas Radke andy...@archlinux.org
-# Contributor: Judd Vinet jvi...@zeroflux.org
-
-pkgname=gnupg
-pkgver=2.1.1
-pkgrel=1
-pkgdesc='Complete and free implementation of the OpenPGP standard'
-url='http://www.gnupg.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-optdepends=('libldap: gpg2keys_ldap'
-'libusb-compat: scdaemon')
-makedepends=('libldap' 'libusb-compat')
-depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
- 'pinentry' 'bzip2' 'readline' 'gnutls')
-source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha1sums=('3d11fd150cf86f842d077437edb119a775c7325d' 'SKIP')
-
-install=install
-
-conflicts=('dirmngr' 'gnupg2')
-provides=('dirmngr' gnupg2=${pkgver})
-replaces=('dirmngr' 'gnupg2')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/gnupg \
-   --enable-maintainer-mode \
-   --enable-symcryptrun \
-   --enable-gpgtar \
-
-   make
-}
-
-check() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make check
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-   ln -s gpg2 ${pkgdir}/usr/bin/gpg
-   ln -s gpgv2 ${pkgdir}/usr/bin/gpgv
-   ln -s gpg2.1.gz ${pkgdir}/usr/share/man/man1/gpg.1.gz
-   rm ${pkgdir}/usr/share/gnupg/com-certs.pem # FS#33059
-}

Copied: gnupg/repos/core-i686/PKGBUILD (from rev 231375, 
gnupg/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2015-02-13 16:42:59 UTC (rev 231376)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=gnupg
+pkgver=2.1.2
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('7e972cb9af47d9b8ce164dcf37fc4f32634d6cd6' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' gnupg2=${pkgver})
+replaces=('dirmngr' 'gnupg2')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+   --enable-gpgtar \
+
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -s gpg2 ${pkgdir}/usr/bin/gpg
+   ln -s 

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

2015-02-13 Thread Jan de Groot
Date: Friday, February 13, 2015 @ 16:53:48
  Author: jgc
Revision: 231372

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-13 15:53:40 UTC (rev 231371)
+++ extra-i686/PKGBUILD 2015-02-13 15:53:48 UTC (rev 231372)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libdc1394
-pkgver=2.2.1
-pkgrel=2
-pkgdesc=High level programming interface to control IEEE 1394 based cameras
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://sourceforge.net/projects/libdc1394/;
-depends=('libraw1394' 'libusbx')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('5c4b78bb8265d6dc971433ec1da381ab')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: libdc1394/repos/extra-i686/PKGBUILD (from rev 231371, 
libdc1394/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-13 15:53:48 UTC (rev 231372)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libdc1394
+pkgver=2.2.3
+pkgrel=1
+pkgdesc=High level programming interface to control IEEE 1394 based cameras
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://sourceforge.net/projects/libdc1394/;
+depends=('libraw1394' 'libusb')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('443d0638e51054ff37fb8e551e07672a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-02-13 15:53:40 UTC (rev 231371)
+++ extra-x86_64/PKGBUILD   2015-02-13 15:53:48 UTC (rev 231372)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libdc1394
-pkgver=2.2.1
-pkgrel=2
-pkgdesc=High level programming interface to control IEEE 1394 based cameras
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://sourceforge.net/projects/libdc1394/;
-depends=('libraw1394' 'libusbx')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('5c4b78bb8265d6dc971433ec1da381ab')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: libdc1394/repos/extra-x86_64/PKGBUILD (from rev 231371, 
libdc1394/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-02-13 15:53:48 UTC (rev 231372)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libdc1394
+pkgver=2.2.3
+pkgrel=1
+pkgdesc=High level programming interface to control IEEE 1394 based cameras
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://sourceforge.net/projects/libdc1394/;
+depends=('libraw1394' 'libusb')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('443d0638e51054ff37fb8e551e07672a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}


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

2015-02-13 Thread Jan de Groot
Date: Friday, February 13, 2015 @ 16:48:12
  Author: jgc
Revision: 231369

upgpkg: libgda 5.2.2-1

Modified:
  libgda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 15:31:05 UTC (rev 231368)
+++ PKGBUILD2015-02-13 15:48:12 UTC (rev 231369)
@@ -3,8 +3,8 @@
 # Contributor: Tobias Kieslich tob...@justdreams.de
 
 pkgname=libgda
-pkgver=5.2.1
-pkgrel=2
+pkgver=5.2.2
+pkgrel=1
 pkgdesc=Data abstraction layer with mysql, pgsql, xml, sqlite providers
 arch=(i686 x86_64)
 license=('GPL')
@@ -15,12 +15,16 @@
 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%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('c29aa77e9a2f22cacf2d2af0429e0828feece7386fb07709b519642dcdb3f041')
+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}
-  sed -i '1s/python$/2/' libgda-report/RML/trml*/trml*.py
   ./configure --prefix=/usr --sysconfdir=/etc \
   --with-bdb=/usr --with-bdb-libdir-name=lib \
   --disable-static --enable-json --enable-gda-gi


[arch-commits] Commit in perl-authen-radius/trunk (PKGBUILD undef-warn-fix.patch)

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 16:59:55
  Author: spupykin
Revision: 127669

upgpkg: perl-authen-radius 0.24-2

upd

Added:
  perl-authen-radius/trunk/undef-warn-fix.patch
Modified:
  perl-authen-radius/trunk/PKGBUILD

--+
 PKGBUILD |   13 ++---
 undef-warn-fix.patch |   14 ++
 2 files changed, 24 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 15:52:07 UTC (rev 127668)
+++ PKGBUILD2015-02-13 15:59:55 UTC (rev 127669)
@@ -3,7 +3,7 @@
 
 pkgname=perl-authen-radius
 pkgver=0.24
-pkgrel=1
+pkgrel=2
 pkgdesc=perl radius client
 arch=('any')
 url=http://search.cpan.org/dist/Authen-Radius/;
@@ -11,9 +11,16 @@
 license=('GPL' 'PerlArtistic')
 depends=('perl-data-hexdump=0.02')
 options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/P/PO/PORTAONE/Authen-Radius-$pkgver.tar.gz)
-md5sums=('35541556f8ec48bf0b60f2e8d284957f')
+source=(http://search.cpan.org/CPAN/authors/id/P/PO/PORTAONE/Authen-Radius-$pkgver.tar.gz
+   undef-warn-fix.patch)
+md5sums=('35541556f8ec48bf0b60f2e8d284957f'
+ '7a4bf593c8ab0e4631e74c6637605066')
 
+prepare() {
+  cd  $srcdir/Authen-Radius-$pkgver
+  patch -p1 $srcdir/undef-warn-fix.patch
+}
+
 build() {
   cd  $srcdir/Authen-Radius-$pkgver
   PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor

Added: undef-warn-fix.patch
===
--- undef-warn-fix.patch(rev 0)
+++ undef-warn-fix.patch2015-02-13 15:59:55 UTC (rev 127669)
@@ -0,0 +1,14 @@
+diff --git a/Radius.pm b/Radius.pm
+index db56f23..b88db32 100644
+--- a/Radius.pm
 b/Radius.pm
+@@ -436,7 +436,8 @@ sub vendorID ($) {
+   return defined $dict_vendor_name{ $attr-{'Vendor'} }{'id'} ? 
$dict_vendor_name{ $attr-{'Vendor'} }{'id'} : int($attr-{'Vendor'});
+ } else {
+   # look up vendor by attribute name
+-  my $vendor_name = $dict_name{$attr-{'Name'}}{'vendor'};
++  my $vendor_name = defined ($dict_name{$attr-{'Name'}}{'vendor'}) ?
++  $dict_name{$attr-{'Name'}}{'vendor'} : 'not defined';
+   my $vendor_id = defined ($dict_vendor_name{$vendor_name}{'id'}) ?
+   $dict_vendor_name{$vendor_name}{'id'} : 'not defined';
+   return $vendor_id;


[arch-commits] Commit in perl-datetime-timezone/repos/community-any (4 files)

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 17:00:16
  Author: spupykin
Revision: 127671

archrelease: copy trunk to community-any

Added:
  perl-datetime-timezone/repos/community-any/ChangeLog
(from rev 127670, perl-datetime-timezone/trunk/ChangeLog)
  perl-datetime-timezone/repos/community-any/PKGBUILD
(from rev 127670, perl-datetime-timezone/trunk/PKGBUILD)
Deleted:
  perl-datetime-timezone/repos/community-any/ChangeLog
  perl-datetime-timezone/repos/community-any/PKGBUILD

---+
 ChangeLog |   10 +-
 PKGBUILD  |   57 +
 2 files changed, 34 insertions(+), 33 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2015-02-13 16:00:06 UTC (rev 127670)
+++ ChangeLog   2015-02-13 16:00:16 UTC (rev 127671)
@@ -1,5 +0,0 @@
-
-2008-01-05  Douglas Soares de Andrade  d...@aur.archlinux.org
-
-   * Updated for x86_64
-

Copied: perl-datetime-timezone/repos/community-any/ChangeLog (from rev 127670, 
perl-datetime-timezone/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2015-02-13 16:00:16 UTC (rev 127671)
@@ -0,0 +1,5 @@
+
+2008-01-05  Douglas Soares de Andrade  d...@aur.archlinux.org
+
+   * Updated for x86_64
+

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-13 16:00:06 UTC (rev 127670)
+++ PKGBUILD2015-02-13 16:00:16 UTC (rev 127671)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-datetime-timezone
-pkgver=1.81
-pkgrel=1
-pkgdesc=Time zone object base class and factory 
-arch=(any)
-url=http://search.cpan.org/dist/DateTime-TimeZone;
-license=('GPL' 'PerlArtistic')
-depends=('perl-class-singleton=1.03' 'perl-params-validate=0.72' 
'perl-class-load')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-TimeZone-$pkgver.tar.gz)
-md5sums=('62d4153bfb175ee3b04482b2f4b0b177')
-
-build() {
-  cd  $srcdir/DateTime-TimeZone-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/DateTime-TimeZone-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-datetime-timezone/repos/community-any/PKGBUILD (from rev 127670, 
perl-datetime-timezone/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-13 16:00:16 UTC (rev 127671)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-datetime-timezone
+pkgver=1.81
+pkgrel=2
+pkgdesc=Time zone object base class and factory 
+arch=(any)
+url=http://search.cpan.org/dist/DateTime-TimeZone;
+license=('GPL' 'PerlArtistic')
+depends=('perl-class-singleton=1.03' 'perl-params-validate=0.72' 
'perl-class-load'
+'perl-list-allutils')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-TimeZone-$pkgver.tar.gz)
+md5sums=('62d4153bfb175ee3b04482b2f4b0b177')
+
+build() {
+  cd  $srcdir/DateTime-TimeZone-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/DateTime-TimeZone-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


[arch-commits] Commit in perl-list-allutils/repos (2 files)

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 17:00:24
  Author: spupykin
Revision: 127672

archrelease: copy trunk to community-any

Added:
  perl-list-allutils/repos/community-any/
  perl-list-allutils/repos/community-any/PKGBUILD
(from rev 127671, perl-list-allutils/trunk/PKGBUILD)

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

Copied: perl-list-allutils/repos/community-any/PKGBUILD (from rev 127671, 
perl-list-allutils/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2015-02-13 16:00:24 UTC (rev 127672)
@@ -0,0 +1,38 @@
+# CPAN Name  : List::AllUtils
+# Contributor: Anton Leontiev bunder /at/ t-25.ru
+# Generator  : CPANPLUS::Dist::Arch 1.29
+
+pkgname=perl-list-allutils
+pkgver=0.09
+pkgrel=1
+pkgdesc='Perl package that combines List::Util and List::MoreUtils in one 
bite-sized package'
+arch=('any')
+url='http://search.cpan.org/dist/List-AllUtils'
+license=('Artistic2.0')
+depends=('perl=5.19.3' 'perl-list-moreutils=0.28')
+checkdepends=('perl-test-warnings')
+source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/List-AllUtils-0.09.tar.gz)
+options=(!emptydirs)
+md5sums=('3e2dfeeef80c4e1952443c6b7d48583c')
+
+build() {
+   cd List-AllUtils-0.09
+   unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+   export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+   /usr/bin/perl Makefile.PL INSTALLDIRS=vendor
+   make
+}
+
+check() {
+   cd List-AllUtils-0.09
+   unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+   export PERL_MM_USE_DEFAULT=1
+   make test
+}
+
+package() {
+   cd List-AllUtils-0.09
+   unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+   make install DESTDIR=$pkgdir
+   find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}


[arch-commits] Commit in open-vm-tools/repos (26 files)

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 17:38:07
  Author: spupykin
Revision: 127680

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

Added:
  open-vm-tools/repos/community-i686/PKGBUILD
(from rev 127679, open-vm-tools/trunk/PKGBUILD)
  open-vm-tools/repos/community-i686/network-script
(from rev 127679, open-vm-tools/trunk/network-script)
  open-vm-tools/repos/community-i686/tools.conf
(from rev 127679, open-vm-tools/trunk/tools.conf)
  open-vm-tools/repos/community-i686/vmtoolsd.service
(from rev 127679, open-vm-tools/trunk/vmtoolsd.service)
  open-vm-tools/repos/community-i686/vmware-guestd
(from rev 127679, open-vm-tools/trunk/vmware-guestd)
  open-vm-tools/repos/community-i686/vmware-vmblock-fuse.service
(from rev 127679, open-vm-tools/trunk/vmware-vmblock-fuse.service)
  open-vm-tools/repos/community-i686/xautostart.conf
(from rev 127679, open-vm-tools/trunk/xautostart.conf)
  open-vm-tools/repos/community-x86_64/PKGBUILD
(from rev 127679, open-vm-tools/trunk/PKGBUILD)
  open-vm-tools/repos/community-x86_64/network-script
(from rev 127679, open-vm-tools/trunk/network-script)
  open-vm-tools/repos/community-x86_64/tools.conf
(from rev 127679, open-vm-tools/trunk/tools.conf)
  open-vm-tools/repos/community-x86_64/vmtoolsd.service
(from rev 127679, open-vm-tools/trunk/vmtoolsd.service)
  open-vm-tools/repos/community-x86_64/vmware-guestd
(from rev 127679, open-vm-tools/trunk/vmware-guestd)
  open-vm-tools/repos/community-x86_64/vmware-vmblock-fuse.service
(from rev 127679, open-vm-tools/trunk/vmware-vmblock-fuse.service)
  open-vm-tools/repos/community-x86_64/xautostart.conf
(from rev 127679, open-vm-tools/trunk/xautostart.conf)
Deleted:
  open-vm-tools/repos/community-i686/PKGBUILD
  open-vm-tools/repos/community-i686/network-script
  open-vm-tools/repos/community-i686/tools.conf
  open-vm-tools/repos/community-i686/vmtoolsd.service
  open-vm-tools/repos/community-i686/vmware-guestd
  open-vm-tools/repos/community-i686/xautostart.conf
  open-vm-tools/repos/community-x86_64/PKGBUILD
  open-vm-tools/repos/community-x86_64/network-script
  open-vm-tools/repos/community-x86_64/tools.conf
  open-vm-tools/repos/community-x86_64/vmtoolsd.service
  open-vm-tools/repos/community-x86_64/vmware-guestd
  open-vm-tools/repos/community-x86_64/xautostart.conf

--+
 /PKGBUILD|  160 ++
 /network-script  |  390 +
 /tools.conf  |2 
 /vmtoolsd.service|   18 +
 /vmware-guestd   |   12 
 /xautostart.conf |   12 
 community-i686/PKGBUILD  |   77 
 community-i686/network-script|  195 
 community-i686/tools.conf|1 
 community-i686/vmtoolsd.service  |9 
 community-i686/vmware-guestd |6 
 community-i686/vmware-vmblock-fuse.service   |   11 
 community-i686/xautostart.conf   |6 
 community-x86_64/PKGBUILD|   77 
 community-x86_64/network-script  |  195 
 community-x86_64/tools.conf  |1 
 community-x86_64/vmtoolsd.service|9 
 community-x86_64/vmware-guestd   |6 
 community-x86_64/vmware-vmblock-fuse.service |   11 
 community-x86_64/xautostart.conf |6 
 20 files changed, 616 insertions(+), 588 deletions(-)

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


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 17:38:36
  Author: spupykin
Revision: 127682

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

Added:
  prosody/repos/community-i686/PKGBUILD
(from rev 127681, prosody/trunk/PKGBUILD)
  prosody/repos/community-i686/fix-config.patch
(from rev 127681, prosody/trunk/fix-config.patch)
  prosody/repos/community-i686/prosody.install
(from rev 127681, prosody/trunk/prosody.install)
  prosody/repos/community-i686/prosody.logrotated
(from rev 127681, prosody/trunk/prosody.logrotated)
  prosody/repos/community-i686/prosody.service
(from rev 127681, prosody/trunk/prosody.service)
  prosody/repos/community-i686/prosody.tmpfile.d
(from rev 127681, prosody/trunk/prosody.tmpfile.d)
  prosody/repos/community-i686/sysuser.conf
(from rev 127681, prosody/trunk/sysuser.conf)
  prosody/repos/community-x86_64/PKGBUILD
(from rev 127681, prosody/trunk/PKGBUILD)
  prosody/repos/community-x86_64/fix-config.patch
(from rev 127681, prosody/trunk/fix-config.patch)
  prosody/repos/community-x86_64/prosody.install
(from rev 127681, prosody/trunk/prosody.install)
  prosody/repos/community-x86_64/prosody.logrotated
(from rev 127681, prosody/trunk/prosody.logrotated)
  prosody/repos/community-x86_64/prosody.service
(from rev 127681, prosody/trunk/prosody.service)
  prosody/repos/community-x86_64/prosody.tmpfile.d
(from rev 127681, prosody/trunk/prosody.tmpfile.d)
  prosody/repos/community-x86_64/sysuser.conf
(from rev 127681, prosody/trunk/sysuser.conf)
Deleted:
  prosody/repos/community-i686/PKGBUILD
  prosody/repos/community-i686/fix-config.patch
  prosody/repos/community-i686/prosody.install
  prosody/repos/community-i686/prosody.logrotated
  prosody/repos/community-i686/prosody.service
  prosody/repos/community-i686/prosody.tmpfile.d
  prosody/repos/community-i686/sysuser.conf
  prosody/repos/community-x86_64/PKGBUILD
  prosody/repos/community-x86_64/fix-config.patch
  prosody/repos/community-x86_64/prosody.install
  prosody/repos/community-x86_64/prosody.logrotated
  prosody/repos/community-x86_64/prosody.service
  prosody/repos/community-x86_64/prosody.tmpfile.d
  prosody/repos/community-x86_64/sysuser.conf

-+
 /PKGBUILD   |  136 ++
 /fix-config.patch   |   88 ++
 /prosody.install|   58 ++
 /prosody.logrotated |   18 
 /prosody.service|   26 ++
 /prosody.tmpfile.d  |2 
 /sysuser.conf   |6 +
 community-i686/PKGBUILD |   68 -
 community-i686/fix-config.patch |   44 ---
 community-i686/prosody.install  |   29 ---
 community-i686/prosody.logrotated   |9 --
 community-i686/prosody.service  |   13 ---
 community-i686/prosody.tmpfile.d|1 
 community-i686/sysuser.conf |3 
 community-x86_64/PKGBUILD   |   68 -
 community-x86_64/fix-config.patch   |   44 ---
 community-x86_64/prosody.install|   29 ---
 community-x86_64/prosody.logrotated |9 --
 community-x86_64/prosody.service|   13 ---
 community-x86_64/prosody.tmpfile.d  |1 
 community-x86_64/sysuser.conf   |3 
 21 files changed, 334 insertions(+), 334 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-13 16:38:13 UTC (rev 127681)
+++ community-i686/PKGBUILD 2015-02-13 16:38:36 UTC (rev 127682)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Dwayne Bent d...@dbb.io
-# Contributor: Paul-Sebastian Manole brokenth...@gmail.com
-# Contributor: Timothée Ravier t...@siosm.fr
-
-pkgname=prosody
-pkgver=0.9.7
-pkgrel=2
-pkgdesc=Lightweight and extensible Jabber/XMPP server written in Lua
-arch=('i686' 'x86_64')
-url=http://prosody.im/;
-license=('MIT')
-depends=('lua51' 'lua51-socket' 'lua51-expat' 'lua51-filesystem' 'libidn'
- 'openssl')
-optdepends=('lua51-sec: TLS encryption support')
-install=prosody.install
-backup=('etc/logrotate.d/prosody'
-'etc/prosody/prosody.cfg.lua')
-validpgpkeys=('32A9EDDE3609931EB98CEAC315907E8E7BDD6BFE')
-source=(http://prosody.im/downloads/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-'prosody.logrotated'
-'fix-config.patch'
-'prosody.tmpfile.d'
-'prosody.service'
-'sysuser.conf')
-md5sums=('47de7f593279e327792df78cfa93e8a7'
- 'SKIP'
- '5b44aee99f1fa9e7f055e067688cafbd'
- '01b6aa0b1e1e3067756c45b0751bee78'
- 'e2f5a1df410b05696a30dcb058841084'
- 'e74045f27cb60908d535969906781f75'
- 'af7005df7322c4c92cc0f5c1e56f6f4f')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p1  ../fix-config.patch
-}
-
-build() {
-  cd ${pkgname}-${pkgver}

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

2015-02-13 Thread Andreas Radke
Date: Friday, February 13, 2015 @ 17:46:40
  Author: andyrtr
Revision: 231377

upgpkg: linux-lts 3.14.33-1

upstream update 3.14.33

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 16:42:59 UTC (rev 231376)
+++ PKGBUILD2015-02-13 16:46:40 UTC (rev 231377)
@@ -4,7 +4,7 @@
 
 pkgbase=linux-lts
 _srcname=linux-3.14
-pkgver=3.14.32
+pkgver=3.14.33
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/;
@@ -26,7 +26,7 @@
 # https://www.kernel.org/pub/linux/kernel/v3.x/sha256sums.asc
 sha256sums=('61558aa490855f42b6340d1a1596be47454909629327c49a5e4e10268065dffa'
 'SKIP'
-'601ea355f71435b19421d7eabd7b92b2bb25bf5598f419ac548f46e416e162e9'
+'442afcc7e4ba4e58d21c12b5136be671c0bf7ae24347b5c5374644022ac37d14'
 'SKIP'
 '999486d20e07e489bb42356b529b739c65ad65de9191282f0ddbbc0eb9b1718e'
 '140098de1ba714c5916ea76578b8bf549ce801c4aa0c786b7c90289b85ecdb77'


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

2015-02-13 Thread Jan de Groot
Date: Friday, February 13, 2015 @ 16:48:18
  Author: jgc
Revision: 231370

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

Added:
  libgda/repos/extra-i686/PKGBUILD
(from rev 231369, libgda/trunk/PKGBUILD)
  libgda/repos/extra-i686/libgda.install
(from rev 231369, libgda/trunk/libgda.install)
  libgda/repos/extra-x86_64/PKGBUILD
(from rev 231369, libgda/trunk/PKGBUILD)
  libgda/repos/extra-x86_64/libgda.install
(from rev 231369, libgda/trunk/libgda.install)
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   |   74 ++
 /libgda.install |   24 +
 extra-i686/PKGBUILD |   33 --
 extra-i686/libgda.install   |   12 --
 extra-x86_64/PKGBUILD   |   33 --
 extra-x86_64/libgda.install |   12 --
 6 files changed, 98 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-13 15:48:12 UTC (rev 231369)
+++ extra-i686/PKGBUILD 2015-02-13 15:48:18 UTC (rev 231370)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: tobias tob...@archlinux.org
-# Contributor: Tobias Kieslich tob...@justdreams.de
-
-pkgname=libgda
-pkgver=5.2.1
-pkgrel=2
-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%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('c29aa77e9a2f22cacf2d2af0429e0828feece7386fb07709b519642dcdb3f041')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i '1s/python$/2/' libgda-report/RML/trml*/trml*.py
-  ./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 231369, 
libgda/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-13 15:48:18 UTC (rev 231370)
@@ -0,0 +1,37 @@
+# $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
+}

Deleted: extra-i686/libgda.install
===
--- extra-i686/libgda.install   2015-02-13 15:48:12 UTC (rev 231369)
+++ extra-i686/libgda.install   2015-02-13 15:48:18 UTC (rev 231370)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: libgda/repos/extra-i686/libgda.install (from rev 231369, 
libgda/trunk/libgda.install)
===
--- extra-i686/libgda.install   (rev 0)
+++ extra-i686/libgda.install   2015-02-13 15:48:18 UTC (rev 231370)
@@ -0,0 +1,12 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install

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

2015-02-13 Thread Jan de Groot
Date: Friday, February 13, 2015 @ 16:53:40
  Author: jgc
Revision: 231371

upgpkg: libdc1394 2.2.3-1

Modified:
  libdc1394/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 15:48:18 UTC (rev 231370)
+++ PKGBUILD2015-02-13 15:53:40 UTC (rev 231371)
@@ -2,16 +2,16 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=libdc1394
-pkgver=2.2.1
-pkgrel=2
+pkgver=2.2.3
+pkgrel=1
 pkgdesc=High level programming interface to control IEEE 1394 based cameras
 arch=('i686' 'x86_64')
 license=('LGPL')
 url=http://sourceforge.net/projects/libdc1394/;
-depends=('libraw1394' 'libusbx')
+depends=('libraw1394' 'libusb')
 options=('!emptydirs')
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('5c4b78bb8265d6dc971433ec1da381ab')
+md5sums=('443d0638e51054ff37fb8e551e07672a')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 17:04:50
  Author: spupykin
Revision: 127676

Added:
  perl-authen-radius/repos/community-any/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-13 16:04:50 UTC (rev 127676)
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 127669 2015-02-13 15:59:55Z spupykin $
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=perl-authen-radius
+pkgver=0.24
+pkgrel=2
+pkgdesc=perl radius client
+arch=('any')
+url=http://search.cpan.org/dist/Authen-Radius/;
+#url=http://search.cpan.org/dist/RadiusPerl;
+license=('GPL' 'PerlArtistic')
+depends=('perl-data-hexdump=0.02')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/P/PO/PORTAONE/Authen-Radius-$pkgver.tar.gz
+   undef-warn-fix.patch)
+md5sums=('35541556f8ec48bf0b60f2e8d284957f'
+ '7a4bf593c8ab0e4631e74c6637605066')
+
+prepare() {
+  cd  $srcdir/Authen-Radius-$pkgver
+  patch -p1 $srcdir/undef-warn-fix.patch
+}
+
+build() {
+  cd  $srcdir/Authen-Radius-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Authen-Radius-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


[arch-commits] Commit in prosody/trunk (PKGBUILD prosody.tmpfile.d)

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 17:38:13
  Author: spupykin
Revision: 127681

upgpkg: prosody 0.9.7-3

upd

Modified:
  prosody/trunk/PKGBUILD
  prosody/trunk/prosody.tmpfile.d

---+
 PKGBUILD  |4 ++--
 prosody.tmpfile.d |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 16:38:07 UTC (rev 127680)
+++ PKGBUILD2015-02-13 16:38:13 UTC (rev 127681)
@@ -6,7 +6,7 @@
 
 pkgname=prosody
 pkgver=0.9.7
-pkgrel=2
+pkgrel=3
 pkgdesc=Lightweight and extensible Jabber/XMPP server written in Lua
 arch=('i686' 'x86_64')
 url=http://prosody.im/;
@@ -28,7 +28,7 @@
  'SKIP'
  '5b44aee99f1fa9e7f055e067688cafbd'
  '01b6aa0b1e1e3067756c45b0751bee78'
- 'e2f5a1df410b05696a30dcb058841084'
+ 'dc8405a6a235b83dc8a0dcdf7b71cbaa'
  'e74045f27cb60908d535969906781f75'
  '385ca73d9f6046f3636266ce9bf38797')
 

Modified: prosody.tmpfile.d
===
--- prosody.tmpfile.d   2015-02-13 16:38:07 UTC (rev 127680)
+++ prosody.tmpfile.d   2015-02-13 16:38:13 UTC (rev 127681)
@@ -1 +1 @@
-d/run/prosody 0755 412 412
+d /run/prosody 0755 prosody jabber -


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

2015-02-13 Thread Andreas Radke
Date: Friday, February 13, 2015 @ 19:14:41
  Author: andyrtr
Revision: 231381

upgpkg: pycups 1.9.72-1

upstream update 1.9.72

Modified:
  pycups/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 17:00:41 UTC (rev 231380)
+++ PKGBUILD2015-02-13 18:14:41 UTC (rev 231381)
@@ -4,7 +4,7 @@
 
 pkgbase=pycups
 pkgname=('python2-pycups' 'python-pycups')
-pkgver=1.9.71
+pkgver=1.9.72
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://cyberelk.net/tim/software/pycups/;
@@ -11,7 +11,8 @@
 license=('GPL')
 makedepends=('libcups' 'python2' 'python')
 
source=(http://cyberelk.net/tim/data/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2{,.asc})
-md5sums=('9373857a5f55d3f949ef39840db6e880'
+# md5sum: https://pypi.python.org/pypi/pycups
+md5sums=('c790bfbf4a3e9da2412c12c860fe191f'
  'SKIP')
 validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3')  # Tim Waugh
 


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

2015-02-13 Thread Andreas Radke
Date: Friday, February 13, 2015 @ 19:14:57
  Author: andyrtr
Revision: 231382

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-13 18:14:41 UTC (rev 231381)
+++ extra-i686/PKGBUILD 2015-02-13 18:14:57 UTC (rev 231382)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: nesl247 nesl...@gmail.com
-
-pkgbase=pycups
-pkgname=('python2-pycups' 'python-pycups')
-pkgver=1.9.71
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://cyberelk.net/tim/software/pycups/;
-license=('GPL')
-makedepends=('libcups' 'python2' 'python')
-source=(http://cyberelk.net/tim/data/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2{,.asc})
-md5sums=('9373857a5f55d3f949ef39840db6e880'
- 'SKIP')
-validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3')  # Tim Waugh
-
-prepare() {
-  cp -a ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-python2
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  python setup.py build
-  cd ${srcdir}/${pkgbase}-${pkgver}-python2
-  python2 setup.py build
-}
-
-package_python2-pycups() {
-  pkgdesc=Python 2 CUPS Bindings
-  depends=('libcups' 'python2')
-
-  cd ${pkgbase}-${pkgver}-python2
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}
-
-package_python-pycups() {
-  pkgdesc=Python 3 CUPS Bindings
-  depends=('libcups' 'python')
-
-  cd ${pkgbase}-${pkgver}
-  python setup.py install --root=${pkgdir} --optimize=1
-}

Copied: pycups/repos/extra-i686/PKGBUILD (from rev 231381, 
pycups/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-13 18:14:57 UTC (rev 231382)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: nesl247 nesl...@gmail.com
+
+pkgbase=pycups
+pkgname=('python2-pycups' 'python-pycups')
+pkgver=1.9.72
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://cyberelk.net/tim/software/pycups/;
+license=('GPL')
+makedepends=('libcups' 'python2' 'python')
+source=(http://cyberelk.net/tim/data/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2{,.asc})
+# md5sum: https://pypi.python.org/pypi/pycups
+md5sums=('c790bfbf4a3e9da2412c12c860fe191f'
+ 'SKIP')
+validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3')  # Tim Waugh
+
+prepare() {
+  cp -a ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-python2
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  python setup.py build
+  cd ${srcdir}/${pkgbase}-${pkgver}-python2
+  python2 setup.py build
+}
+
+package_python2-pycups() {
+  pkgdesc=Python 2 CUPS Bindings
+  depends=('libcups' 'python2')
+
+  cd ${pkgbase}-${pkgver}-python2
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}
+
+package_python-pycups() {
+  pkgdesc=Python 3 CUPS Bindings
+  depends=('libcups' 'python')
+
+  cd ${pkgbase}-${pkgver}
+  python setup.py install --root=${pkgdir} --optimize=1
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-02-13 18:14:41 UTC (rev 231381)
+++ extra-x86_64/PKGBUILD   2015-02-13 18:14:57 UTC (rev 231382)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: nesl247 nesl...@gmail.com
-
-pkgbase=pycups
-pkgname=('python2-pycups' 'python-pycups')
-pkgver=1.9.71
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://cyberelk.net/tim/software/pycups/;
-license=('GPL')
-makedepends=('libcups' 'python2' 'python')
-source=(http://cyberelk.net/tim/data/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2{,.asc})
-md5sums=('9373857a5f55d3f949ef39840db6e880'
- 'SKIP')
-validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3')  # Tim Waugh
-
-prepare() {
-  cp -a ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-python2
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  python setup.py build
-  cd ${srcdir}/${pkgbase}-${pkgver}-python2
-  python2 setup.py build
-}
-
-package_python2-pycups() {
-  pkgdesc=Python 2 CUPS Bindings
-  depends=('libcups' 'python2')
-
-  cd ${pkgbase}-${pkgver}-python2
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}
-
-package_python-pycups() {
-  pkgdesc=Python 3 CUPS Bindings
-  depends=('libcups' 'python')
-
-  cd ${pkgbase}-${pkgver}
-  python setup.py install --root=${pkgdir} --optimize=1
-}

Copied: pycups/repos/extra-x86_64/PKGBUILD (from rev 231381, 
pycups/trunk/PKGBUILD)

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

2015-02-13 Thread Antonio Rojas
Date: Friday, February 13, 2015 @ 20:36:45
  Author: arojas
Revision: 127686

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-13 19:36:22 UTC (rev 127685)
+++ community-i686/PKGBUILD 2015-02-13 19:36:45 UTC (rev 127686)
@@ -1,40 +0,0 @@
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Oliver Sherouse oliver DOT sherouse AT gmail DOT com
-# Contributor: David Scholl djsch...@gmail.com 
-# Contributor: David Pretty david.pre...@gmail.com 
-
-pkgbase=python-rpy2
-pkgname=('python2-rpy2' 'python-rpy2')
-pkgver=2.5.4
-pkgrel=1
-pkgdesc=A very simple, yet robust, Python interface to the R Programming 
Language.
-arch=('i686' 'x86_64')
-url=http://rpy.sourceforge.net/;
-license=('MPL' 'GPL' 'LGPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-numpy' 
'python2-numpy' 'r')
-depends=('python2-numpy' 'r')
-source=(http://pypi.python.org/packages/source/r/rpy2/rpy2-$pkgver.tar.gz;)
-md5sums=('115a20ac30883f096da2bdfcab55196d')
-
-prepare() {
-  cd rpy2-$pkgver
-  sed -i s:Rlapack:lapack: setup.py
-  sed -i s:os.path.join(RHOME.strip(), 'include'):'/usr/include/R': setup.py
-  sed -i s:os.path.join(RHOME.strip(), 'include'):'/usr/include/R': setup.py
-}
-
-package_python2-rpy2() {
-  depends=('python2-numpy' 'r')
-  cd rpy2-$pkgver
-
-  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-  sed -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' -i 
$pkgdir/usr/lib/python2.7/site-packages/rpy2/tests.py
-}
-
-package_python-rpy2() {
-  depends=('python-numpy' 'r')
-  cd rpy2-$pkgver
-  
-  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-}
-

Copied: python-rpy2/repos/community-i686/PKGBUILD (from rev 127685, 
python-rpy2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-13 19:36:45 UTC (rev 127686)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Oliver Sherouse oliver DOT sherouse AT gmail DOT com
+# Contributor: David Scholl djsch...@gmail.com 
+# Contributor: David Pretty david.pre...@gmail.com 
+
+pkgbase=python-rpy2
+pkgname=('python2-rpy2' 'python-rpy2')
+pkgver=2.5.6
+pkgrel=1
+pkgdesc=A very simple, yet robust, Python interface to the R Programming 
Language.
+arch=('i686' 'x86_64')
+url=http://rpy.sourceforge.net/;
+license=('MPL' 'GPL' 'LGPL')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-numpy' 
'python2-numpy' 'r')
+source=(http://pypi.python.org/packages/source/r/rpy2/rpy2-$pkgver.tar.gz;)
+md5sums=('a36e758b633ce6aec6a5f450bfee980f')
+
+prepare() {
+  cd rpy2-$pkgver
+  sed -i s:Rlapack:lapack: setup.py
+  sed -i s:os.path.join(RHOME.strip(), 'include'):'/usr/include/R': setup.py
+  sed -i s:os.path.join(RHOME.strip(), 'include'):'/usr/include/R': setup.py
+}
+
+package_python2-rpy2() {
+  depends=('python2-numpy' 'r')
+  cd rpy2-$pkgver
+
+  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+  sed -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' -i 
$pkgdir/usr/lib/python2.7/site-packages/rpy2/tests.py
+}
+
+package_python-rpy2() {
+  depends=('python-numpy' 'r')
+  cd rpy2-$pkgver
+  
+  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-02-13 19:36:22 UTC (rev 127685)
+++ community-x86_64/PKGBUILD   2015-02-13 19:36:45 UTC (rev 127686)
@@ -1,40 +0,0 @@
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Oliver Sherouse oliver DOT sherouse AT gmail DOT com
-# Contributor: David Scholl djsch...@gmail.com 
-# Contributor: David Pretty david.pre...@gmail.com 
-
-pkgbase=python-rpy2
-pkgname=('python2-rpy2' 'python-rpy2')
-pkgver=2.5.4
-pkgrel=1
-pkgdesc=A very simple, yet robust, Python interface to the R Programming 
Language.
-arch=('i686' 'x86_64')
-url=http://rpy.sourceforge.net/;
-license=('MPL' 'GPL' 'LGPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-numpy' 
'python2-numpy' 'r')
-depends=('python2-numpy' 'r')
-source=(http://pypi.python.org/packages/source/r/rpy2/rpy2-$pkgver.tar.gz;)

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

2015-02-13 Thread Antonio Rojas
Date: Friday, February 13, 2015 @ 20:36:22
  Author: arojas
Revision: 127685

Update to 2.5.6

Modified:
  python-rpy2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 16:55:38 UTC (rev 127684)
+++ PKGBUILD2015-02-13 19:36:22 UTC (rev 127685)
@@ -6,7 +6,7 @@
 
 pkgbase=python-rpy2
 pkgname=('python2-rpy2' 'python-rpy2')
-pkgver=2.5.4
+pkgver=2.5.6
 pkgrel=1
 pkgdesc=A very simple, yet robust, Python interface to the R Programming 
Language.
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 license=('MPL' 'GPL' 'LGPL')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-numpy' 
'python2-numpy' 'r')
 source=(http://pypi.python.org/packages/source/r/rpy2/rpy2-$pkgver.tar.gz;)
-md5sums=('115a20ac30883f096da2bdfcab55196d')
+md5sums=('a36e758b633ce6aec6a5f450bfee980f')
 
 prepare() {
   cd rpy2-$pkgver


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

2015-02-13 Thread Andreas Radke
Date: Friday, February 13, 2015 @ 22:20:15
  Author: andyrtr
Revision: 231385

upgpkg: x2goserver 4.0.1.18-2

don't groupdel/userdel in .install - simplify install file

Modified:
  x2goserver/trunk/PKGBUILD
  x2goserver/trunk/x2goserver.install

+
 PKGBUILD   |   19 ++--
 x2goserver.install |   60 +++
 2 files changed, 26 insertions(+), 53 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 20:52:49 UTC (rev 231384)
+++ PKGBUILD2015-02-13 21:20:15 UTC (rev 231385)
@@ -8,7 +8,7 @@
 
 pkgname=x2goserver
 pkgver=4.0.1.18
-pkgrel=1
+pkgrel=2
 pkgdesc=Open source terminal server
 arch=('i686' 'x86_64')
 url=http://www.x2go.org/;
@@ -84,6 +84,10 @@
 }
 
 package() {
+  
+  # system user/group x2gouser - 111
+  # system user/group x2goprint - 112
+  
   cd ${srcdir}/${pkgname}-${pkgver}
   make -j1 PREFIX=/usr SBINDIR=/usr/bin DESTDIR=$pkgdir install
 
@@ -92,7 +96,7 @@
   
   # X2go homedir + printing spool dir
   install -dm 770 $pkgdir/var/lib/x2go
-  install -dm 770 $pkgdir/var/spool/x2go
+  install -dm 770 --owner=112 --group=112 $pkgdir/var/spool/x2go
   
   # load fuse module at system start
   install -dm755 $pkgdir/usr/lib/modules-load.d
@@ -103,4 +107,15 @@
 
   # fix permission
   chmod 750 ${pkgdir}/etc/sudoers.d
+  
+  # fix more permissions - see INSTALL file
+  chown root:111 ${pkgdir}/usr/lib/x2go/x2gosqlitewrapper
+  chmod 2755 ${pkgdir}/usr/lib/x2go/x2gosqlitewrapper
+  
+  chown root:112 ${pkgdir}/usr/bin/x2goprint
+  chmod 2755 ${pkgdir}/usr/bin/x2goprint
 }
+
+
+
+

Modified: x2goserver.install
===
--- x2goserver.install  2015-02-13 20:52:49 UTC (rev 231384)
+++ x2goserver.install  2015-02-13 21:20:15 UTC (rev 231385)
@@ -3,49 +3,15 @@
   == Use the following command to setup sqlite database:
   == x2godbadmin --createdb
 EOM
+
+  getent group x2gouser  /dev/null   || groupadd -g 111 x2gouser  /dev/null
+  getent group x2goprint  /dev/null  || groupadd -g 112 x2goprint  
/dev/null
+  getent passwd x2gouser  /dev/null   || useradd -s /usr/bin/false -c 
X2GoUser user -M -d /var/lib/x2go -u 111 -g x2gouser -r x2gouser  /dev/null
+  getent passwd x2goprint  /dev/null  || useradd -s /usr/bin/false -c 
X2GoPrint user -M -d /var/spool/x2go -u 112 -g x2goprint -r x2goprint  
/dev/null
+
 }
 
-
 post_install() {
-
-  # Make sure the group and user x2gouser(111) +x2goprint(112) exists on 
this system and have the correct values
-
-  # x2gouser
-  if grep -q ^x2gouser: /etc/group  /dev/null ; then
-groupmod -g 111 -n x2gouser x2gouser  /dev/null
-  else
-groupadd -g 111 x2gouser  /dev/null
-  fi
-
-  if grep -q ^x2gouser: /etc/passwd 2 /dev/null ; then
-usermod -s /usr/bin/false -c X2GoUser user -M -d /var/lib/x2go -u 111 -g 
x2gouser x2gouser  /dev/null
-  else
-useradd -s /usr/bin/false -c X2GoUser user -M -d /var/lib/x2go -u 111 -g 
x2gouser -r x2gouser  /dev/null
-  fi 
-
-  # x2goprint
-  if grep -q ^x2goprint: /etc/group  /dev/null ; then
-groupmod -g 112 -n x2goprint x2goprint  /dev/null
-  else
-groupadd -g 112 x2goprint  /dev/null
-  fi
-
-  if grep -q ^x2goprint: /etc/passwd 2 /dev/null ; then
-usermod -s /usr/bin/false -c X2GoPrint user -M -d /var/spool/x2go -u 112 
-g x2goprint x2goprint  /dev/null
-  else
-useradd -s /usr/bin/false -c X2GoPrint user -M -d /var/spool/x2go -u 112 
-g x2goprint -r x2goprint  /dev/null
-  fi
-  
-  # fix permissions - see INSTALL file
-  chown -R x2goprint:x2goprint /var/spool/x2go
-  chmod 0770 /var/spool/x2go
-
-  chown root:x2gouser /usr/lib/x2go/x2gosqlitewrapper
-  chmod 2755 /usr/lib/x2go/x2gosqlitewrapper
-  
-  chown root:x2goprint /usr/bin/x2goprint
-  chmod 2755 /usr/bin/x2goprint
-  
   update-desktop-database -q
   update-mime-database usr/share/mime  /dev/null
 }
@@ -54,16 +20,8 @@
   post_install $1
 }
 
-pre_remove() {
-userdel x2gouser  /dev/null
-userdel x2goprint  /dev/null
-groupdel x2gouser  /dev/null || /bin/true
-groupdel x2goprint  /dev/null || /bin/true
-rm -rf /var/lib/x2go/*  /dev/null || /bin/true
-rm -rf /var/spool/x2go/*  /dev/null || /bin/true
-}
-
 post_remove() {
-update-desktop-database -q
-update-mime-database usr/share/mime  /dev/null
+  rm -rf /var/lib/x2go/*  /dev/null || /bin/true
+  rm -rf /var/spool/x2go/*  /dev/null || /bin/true
+  post_install $1
 }


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

2015-02-13 Thread Anatol Pomozov
Date: Friday, February 13, 2015 @ 22:24:56
  Author: anatolik
Revision: 127687

upgpkg: gputils 1.4.0-1

Modified:
  gputils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 19:36:45 UTC (rev 127686)
+++ PKGBUILD2015-02-13 21:24:56 UTC (rev 127687)
@@ -5,7 +5,8 @@
 # Contributor: Stefan Husmann stefan-husm...@t-online.de
 
 pkgname=gputils
-pkgver=1.3.0
+pkgver=1.4.0
+_tag=$pkgver-1
 pkgrel=1
 pkgdesc=PIC Programming Utilities
 arch=('i686' 'x86_64')
@@ -12,16 +13,16 @@
 url=http://gputils.sourceforge.net/;
 license=('GPL')
 depends=('glibc')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('175dedeb141b4a4609a70262847257e4')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$_tag.tar.gz;)
+md5sums=('6cf5d82b1d2978d6e13378d1a4a77df4')
 
 build() {
-   cd $srcdir/$pkgname-$pkgver
+   cd $srcdir/$pkgname-$_tag
./configure --prefix=/usr
make
 }
 
 package() {
-   cd $srcdir/$pkgname-$pkgver
+   cd $srcdir/$pkgname-$_tag
make DESTDIR=$pkgdir install
 }


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

2015-02-13 Thread Anatol Pomozov
Date: Friday, February 13, 2015 @ 22:25:37
  Author: anatolik
Revision: 127688

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-13 21:24:56 UTC (rev 127687)
+++ community-i686/PKGBUILD 2015-02-13 21:25:37 UTC (rev 127688)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer:  Federico Cinelli cine...@aur.archlinux.org
-# Contributor: Johannes Martin hon...@gmx.net
-# Contributor: JJDaNiMoTh jjdanimoth@gmail.com
-# Contributor: Stefan Husmann stefan-husm...@t-online.de
-
-pkgname=gputils
-pkgver=1.3.0
-pkgrel=1
-pkgdesc=PIC Programming Utilities
-arch=('i686' 'x86_64')
-url=http://gputils.sourceforge.net/;
-license=('GPL')
-depends=('glibc')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('175dedeb141b4a4609a70262847257e4')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-}

Copied: gputils/repos/community-i686/PKGBUILD (from rev 127687, 
gputils/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-13 21:25:37 UTC (rev 127688)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer:  Federico Cinelli cine...@aur.archlinux.org
+# Contributor: Johannes Martin hon...@gmx.net
+# Contributor: JJDaNiMoTh jjdanimoth@gmail.com
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+
+pkgname=gputils
+pkgver=1.4.0
+_tag=$pkgver-1
+pkgrel=1
+pkgdesc=PIC Programming Utilities
+arch=('i686' 'x86_64')
+url=http://gputils.sourceforge.net/;
+license=('GPL')
+depends=('glibc')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$_tag.tar.gz;)
+md5sums=('6cf5d82b1d2978d6e13378d1a4a77df4')
+
+build() {
+   cd $srcdir/$pkgname-$_tag
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$_tag
+   make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-02-13 21:24:56 UTC (rev 127687)
+++ community-x86_64/PKGBUILD   2015-02-13 21:25:37 UTC (rev 127688)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer:  Federico Cinelli cine...@aur.archlinux.org
-# Contributor: Johannes Martin hon...@gmx.net
-# Contributor: JJDaNiMoTh jjdanimoth@gmail.com
-# Contributor: Stefan Husmann stefan-husm...@t-online.de
-
-pkgname=gputils
-pkgver=1.3.0
-pkgrel=1
-pkgdesc=PIC Programming Utilities
-arch=('i686' 'x86_64')
-url=http://gputils.sourceforge.net/;
-license=('GPL')
-depends=('glibc')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('175dedeb141b4a4609a70262847257e4')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-}

Copied: gputils/repos/community-x86_64/PKGBUILD (from rev 127687, 
gputils/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-13 21:25:37 UTC (rev 127688)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer:  Federico Cinelli cine...@aur.archlinux.org
+# Contributor: Johannes Martin hon...@gmx.net
+# Contributor: JJDaNiMoTh jjdanimoth@gmail.com
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+
+pkgname=gputils
+pkgver=1.4.0
+_tag=$pkgver-1
+pkgrel=1
+pkgdesc=PIC Programming Utilities
+arch=('i686' 'x86_64')
+url=http://gputils.sourceforge.net/;
+license=('GPL')
+depends=('glibc')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$_tag.tar.gz;)
+md5sums=('6cf5d82b1d2978d6e13378d1a4a77df4')
+
+build() {
+   cd $srcdir/$pkgname-$_tag
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$_tag
+   make DESTDIR=$pkgdir install
+}


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

2015-02-13 Thread Andreas Radke
Date: Friday, February 13, 2015 @ 22:20:27
  Author: andyrtr
Revision: 231386

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

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

-+
 /PKGBUILD   |  242 ++
 /x2goserver.install |   54 
 extra-i686/PKGBUILD |  106 
 extra-i686/x2goserver.install   |   69 --
 extra-x86_64/PKGBUILD   |  106 
 extra-x86_64/x2goserver.install |   69 --
 6 files changed, 296 insertions(+), 350 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-13 21:20:15 UTC (rev 231385)
+++ extra-i686/PKGBUILD 2015-02-13 21:20:27 UTC (rev 231386)
@@ -1,106 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-
-# Contributor: Gerhard Brauer ger...@archlinux.de
-# Contributor: Richard Murri ad...@richardmurri.com
-# Contributor: Markus Opitz mastero23 at gmail dot com
-# Contributor: Milan Knížek kni...@volny.cz
-
-pkgname=x2goserver
-pkgver=4.0.1.18
-pkgrel=1
-pkgdesc=Open source terminal server
-arch=('i686' 'x86_64')
-url=http://www.x2go.org/;
-license=('GPL2')
-# see x2goserver.spec
-depends=(#'python' 'xorg-xauth' 
-
- # For x2goruncommand - for now
- 'bc'
- # For netstat in x2goresume-session
- 'net-tools'
- 'openssh'
- 'perl-file-readbackwards'
- # We need a database
- 'perl-dbd-sqlite' 
- # For killall in x2gosuspend-session
- 'psmisc'
- # For x2goshowblocks
- 'lsof'
- # For x2godbadmin
-'pwgen' # in community
- # For printing, file-sharing
- 'sshfs'
- # For /etc/sudoers.d
- 'sudo'
- 'x2go-agent'
- # For /etc/X11/Xresources
- 'xorg-xinit'
- 'xorg-fonts-misc'
- 'shadow'
- 
- # for post install actions
- 'desktop-file-utils'
- 'shared-mime-info'
- 
- 'perl-capture-tiny'
- 'perl-config-simple'
- 'perl-file-basedir' # FS#38551
- 
- 'xorg-xwininfo' # FS#38558
- 
- #x2goserver-extensions
- #x2goserver-xsession
- #x2goserver-fmbindings
- #x2goserver-printing
-)
-makedepends=('man2html' 'perl-extutils-makemaker' 'systemd')
-#optdepends=('cups-x2go: printing support')
-options=('emptydirs')
-install=x2goserver.install
-backup=('etc/x2go/x2goserver.conf' 'etc/x2go/x2gosql/sql')
-source=(http://code.x2go.org/releases/source/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('e7bd91b82d7a911d04386e09c4650004')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # -r option does not exist in Arch linux
-  # (However, html man pages do not get installed anyway...)
-  for Makefile in $(find . -type f -name Makefile); do
-sed -i 's@(MAN2HTML_BIN) -r @(MAN2HTML_BIN)  @g' $Makefile
-sed -i 's@ \$(MAN2HTML_SRC)/@  \$(MAN2HTML_SRC)/@g' $Makefile
-  done
-
-  # fix some Makefile permission options
-  for Makefile in $(find . -type f -name Makefile); do
-sed -i s:-o root -g root ::g $Makefile
-  done
-  # Do not ship xsession - Debian specific
-  sed -i -e '/xsession/s/^/#/' Makefile
-  
-  make PREFIX=/usr SBINDIR=/usr/bin DESTDIR=$pkgdir PERL_INSTALLDIRS=vendor
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make -j1 PREFIX=/usr SBINDIR=/usr/bin DESTDIR=$pkgdir install
-
-  # systemd service file 
-  install -Dm 644 $srcdir/${pkgname}-${pkgver}/x2goserver.service 
$pkgdir/usr/lib/systemd/system/x2goserver.service
-  
-  # X2go homedir + printing spool dir
-  install -dm 770 $pkgdir/var/lib/x2go
-  install -dm 770 $pkgdir/var/spool/x2go
-  
-  # load fuse module at system start
-  install -dm755 $pkgdir/usr/lib/modules-load.d
-  echo fuse  $pkgdir/usr/lib/modules-load.d/x2goserver.conf
-
-  install -dm 755 ${pkgdir}/usr/share/doc/${pkgname}
-  install -m 644 ChangeLog ${pkgdir}/usr/share/doc/${pkgname}/
-
-  # fix permission
-  chmod 750 ${pkgdir}/etc/sudoers.d
-}

Copied: x2goserver/repos/extra-i686/PKGBUILD (from rev 231385, 
x2goserver/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-13 21:20:27 UTC (rev 231386)
@@ -0,0 +1,121 @@
+# $Id$
+# 

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

2015-02-13 Thread Andreas Radke
Date: Friday, February 13, 2015 @ 21:52:33
  Author: andyrtr
Revision: 231383

upgpkg: dovecot 2.2.15-2

don't groupdel/userdel in .install - simplify install file; add lz4 dep

Modified:
  dovecot/trunk/PKGBUILD
  dovecot/trunk/dovecot.install

-+
 PKGBUILD|   15 +
 dovecot.install |   60 +-
 2 files changed, 17 insertions(+), 58 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 18:14:57 UTC (rev 231382)
+++ PKGBUILD2015-02-13 20:52:33 UTC (rev 231383)
@@ -9,13 +9,13 @@
 
 pkgname=dovecot
 pkgver=2.2.15
-pkgrel=1
+pkgrel=2
 pkgdesc=An IMAP and POP3 server written with security primarily in mind
 arch=('i686' 'x86_64')
 url=http://dovecot.org/;
 license=(LGPL)
 depends=('krb5' 'openssl' 'sqlite' 'libmariadbclient'
-'postgresql-libs' 'bzip2' 'expat' 'curl')
+'postgresql-libs' 'bzip2' 'lz4' 'expat' 'curl')
 makedepends=('pam' 'libcap' 'libldap' 'clucene')
 optdepends=('libldap: ldap plugin'
 'xz: imap zlib  plugin'
@@ -55,11 +55,14 @@
--with-ssldir=/etc/ssl \
--with-gssapi \
--with-ldap=plugin \
-   --with-zlib --with-bzlib \
+   --with-zlib \
+   --with-bzlib \
+   --with-lzma \
+   --with-lz4 \
--with-libcap \
--with-solr \
--with-lucene \
-   --with-docs
+   --with-docs #--help
   make
 }
 
@@ -69,6 +72,10 @@
 }
 
 package() {
+   
+  # system user/group dovenull - 74
+  # system user/group dovecot  - 76
+  
   cd $pkgname-$pkgver
   make DESTDIR=${pkgdir} install
 

Modified: dovecot.install
===
--- dovecot.install 2015-02-13 18:14:57 UTC (rev 231382)
+++ dovecot.install 2015-02-13 20:52:33 UTC (rev 231383)
@@ -1,58 +1,10 @@
-# arg 1:  the new package version
 post_install() {
-
-  # Make sure the group and user dovecot+dovenull exists on this system and 
have the correct values
-
-  # dovecot
-  if grep -q ^dovecot: /etc/group  /dev/null ; then
-groupmod -g 76 -n dovecot dovecot  /dev/null
-  else
-groupadd -g 76 dovecot  /dev/null
-  fi
-
-  if grep -q ^dovecot: /etc/passwd 2 /dev/null ; then
-usermod -s /sbin/nologin -c Dovecot user -d /var/empty -u 76 -g dovecot 
dovecot  /dev/null
-  else
-useradd -s /sbin/nologin -c Dovecot user -d /var/empty -u 76 -g dovecot 
-r dovecot  /dev/null
-  fi 
-
-  # dovenull
-  if grep -q ^dovenull: /etc/group  /dev/null ; then
-groupmod -g 74 -n dovenull dovenull  /dev/null
-  else
-groupadd -g 74 dovenull  /dev/null
-  fi
-
-  if grep -q ^dovenull: /etc/passwd 2 /dev/null ; then
-usermod -s /sbin/nologin -c Dovecot user for completely untrustworthy 
processes -d /var/empty -u 74 -g dovenull dovenull  /dev/null
-  else
-useradd -s /sbin/nologin -c Dovecot user for completely untrustworthy 
processes -d /var/empty -u 74 -g dovenull -r dovenull  /dev/null
-  fi 
+  getent group dovenull  /dev/null || groupadd -g 74 dovenull  /dev/null
+  getent group dovecot  /dev/null  || groupadd -g 76 dovecot  /dev/null
+  getent passwd dovenull  /dev/null || useradd -s /sbin/nologin -c Dovecot 
user for completely untrustworthy processes -d /var/empty -u 74 -g dovenull -r 
dovenull  /dev/null
+  getent passwd dovecot  /dev/null  || useradd -s /sbin/nologin -c Dovecot 
user -d /var/empty -u 76 -g dovecot -r dovecot  /dev/null
 }
 
-# arg 1:  the new package version
-# arg 2:  the old package version
-post_upgrade() {
-  if [ `vercmp $2 2.0.0` -lt 0 ]; then
-# important upgrade notice
-echo  IMPORTANT DOVECOT 2.0 UPGRADE NOTICE
-echo  
-echo  see http://wiki2.dovecot.org/Upgrading/2.0;
-   echo  make sure, you convert the dovecot.conf file
-  fi
-  if [ `vercmp $2 2.0.13-2` -lt 0 ]; then
-# to remove no more existant usersdirs simply remove the dovecot users 
and let them recreate later
-userdel dovecot  /dev/null
-userdel dovenull  /dev/null
-  fi
-post_install $1
+post_remove() {
+  rm -rf /var/run/dovecot/  /dev/null || /bin/true
 }
-
-# arg 1:  the old package version
-pre_remove() {
-userdel dovecot  /dev/null
-userdel dovenull  /dev/null
-groupdel dovecot  /dev/null || /bin/true
-groupdel dovenull  /dev/null || /bin/true
-rm -rf /var/run/dovecot/  /dev/null || /bin/true
-}


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

2015-02-13 Thread Andreas Radke
Date: Friday, February 13, 2015 @ 21:52:49
  Author: andyrtr
Revision: 231384

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

Added:
  dovecot/repos/extra-i686/PKGBUILD
(from rev 231383, dovecot/trunk/PKGBUILD)
  dovecot/repos/extra-i686/dovecot.install
(from rev 231383, dovecot/trunk/dovecot.install)
  dovecot/repos/extra-i686/dovecot.tmpfilesd
(from rev 231383, dovecot/trunk/dovecot.tmpfilesd)
  dovecot/repos/extra-x86_64/PKGBUILD
(from rev 231383, dovecot/trunk/PKGBUILD)
  dovecot/repos/extra-x86_64/dovecot.install
(from rev 231383, dovecot/trunk/dovecot.install)
  dovecot/repos/extra-x86_64/dovecot.tmpfilesd
(from rev 231383, dovecot/trunk/dovecot.tmpfilesd)
Deleted:
  dovecot/repos/extra-i686/PKGBUILD
  dovecot/repos/extra-i686/dovecot.install
  dovecot/repos/extra-i686/dovecot.tmpfilesd
  dovecot/repos/extra-x86_64/PKGBUILD
  dovecot/repos/extra-x86_64/dovecot.install
  dovecot/repos/extra-x86_64/dovecot.tmpfilesd

+
 /PKGBUILD  |  192 +++
 /dovecot.install   |   20 
 /dovecot.tmpfilesd |2 
 extra-i686/PKGBUILD|   88 -
 extra-i686/dovecot.install |   58 ---
 extra-i686/dovecot.tmpfilesd   |1 
 extra-x86_64/PKGBUILD  |   88 -
 extra-x86_64/dovecot.install   |   58 ---
 extra-x86_64/dovecot.tmpfilesd |1 
 9 files changed, 214 insertions(+), 294 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-13 20:52:33 UTC (rev 231383)
+++ extra-i686/PKGBUILD 2015-02-13 20:52:49 UTC (rev 231384)
@@ -1,88 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: Paul Mattal p...@mattal.com
-# Contributor: Federico Quagliata (quaqo) qu...@despammed.com
-# Contributor: GARETTE Emmanuel gnunux at laposte dot net
-
-
-# --- remember to rebuild/bump pigeonhole in one step ---
-
-pkgname=dovecot
-pkgver=2.2.15
-pkgrel=1
-pkgdesc=An IMAP and POP3 server written with security primarily in mind
-arch=('i686' 'x86_64')
-url=http://dovecot.org/;
-license=(LGPL)
-depends=('krb5' 'openssl' 'sqlite' 'libmariadbclient'
-'postgresql-libs' 'bzip2' 'expat' 'curl')
-makedepends=('pam' 'libcap' 'libldap' 'clucene')
-optdepends=('libldap: ldap plugin'
-'xz: imap zlib  plugin'
-'clucene: alternative FTS indexer')
-provides=('imap-server' 'pop3-server')
-install=$pkgname.install
-source=(http://dovecot.org/releases/2.2/${pkgname}-${pkgver}.tar.gz{,.sig}
-dovecot.tmpfilesd)
-md5sums=('c6c176943bd832c780fbb5d2f8850952'
- 'SKIP'
- '342a28251d40f983c98c0d1f1bf3d07d')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # fix path in helper script
-  sed -i 
's:OPENSSLCONFIG=${OPENSSLCONFIG-dovecot-openssl.cnf}:OPENSSLCONFIG=${OPENSSLCONFIG-
 /etc/ssl/dovecot-openssl.cnf}:' doc/mkcert.sh
-}
-
-build() {
-  cd $pkgname-$pkgver
-  # configure with openssl, mysql, and postgresql support
-  ./configure --prefix=/usr --sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
-   --libexecdir=/usr/lib \
-   --with-moduledir=/usr/lib/dovecot/modules \
-   --with-systemdsystemunitdir=/usr/lib/systemd/system \
-   --disable-static \
-   --with-nss \
-   --with-pam \
-   --with-mysql \
-   --with-pgsql \
-   --with-sqlite \
-   --with-ssl=openssl \
-   --with-ssldir=/etc/ssl \
-   --with-gssapi \
-   --with-ldap=plugin \
-   --with-zlib --with-bzlib \
-   --with-libcap \
-   --with-solr \
-   --with-lucene \
-   --with-docs
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-
-  # install example conf files and ssl.conf
-  install -d -m755 ${pkgdir}/etc/dovecot/conf.d
-  install -m 644 ${pkgdir}/usr/share/doc/dovecot/example-config/dovecot.conf 
${pkgdir}/etc/dovecot/dovecot.conf.sample
-  install -d -m755 ${pkgdir}/etc/ssl
-  install -m 644  ${srcdir}/$pkgname-$pkgver/doc/dovecot-openssl.cnf 
${pkgdir}/etc/ssl/dovecot-openssl.cnf.sample
-
-  # install mkcert helper script
-  install -m 755  ${srcdir}/$pkgname-$pkgver/doc/mkcert.sh 
${pkgdir}/usr/lib/dovecot/mkcert.sh
-
-  rm ${pkgdir}/etc/dovecot/README
-  
-  # systemd tmpfile
-  install -d -m755 ${pkgdir}/usr/lib/tmpfiles.d
-  install -m 644  ${srcdir}/dovecot.tmpfilesd 
${pkgdir}/usr/lib/tmpfiles.d/dovecot.conf
-}

Copied: dovecot/repos/extra-i686/PKGBUILD (from rev 231383, 
dovecot/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-13 20:52:49 UTC (rev 231384)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Paul Mattal p...@mattal.com
+# Contributor: Federico Quagliata (quaqo) 

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

2015-02-13 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 01:08:36
  Author: jleclanche
Revision: 127689

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-13 21:25:37 UTC (rev 127688)
+++ community-i686/PKGBUILD 2015-02-14 00:08:36 UTC (rev 127689)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=libqtxdg
-pkgver=1.1.0
-pkgrel=2
-pkgdesc=Library providing freedesktop.org XDG specs implementations for Qt.
-arch=(i686 x86_64)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(qt5-base)
-makedepends=(cmake)
-source=(http://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(5c90989fcd13387cc8a7905a03e0b65f76aa28545cb9733625e1d88fd6ff4002)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake $srcdir/$pkgname-$pkgver \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib \
-   -DUSE_QT5=true
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: libqtxdg/repos/community-i686/PKGBUILD (from rev 127688, 
libqtxdg/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 00:08:36 UTC (rev 127689)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=libqtxdg
+pkgver=1.1.0
+pkgrel=2
+pkgdesc=Library providing freedesktop.org XDG specs implementations for Qt.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(qt5-base)
+makedepends=(cmake)
+source=(http://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(5c90989fcd13387cc8a7905a03e0b65f76aa28545cb9733625e1d88fd6ff4002)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DUSE_QT5=true
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-02-13 21:25:37 UTC (rev 127688)
+++ community-x86_64/PKGBUILD   2015-02-14 00:08:36 UTC (rev 127689)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=libqtxdg
-pkgver=1.1.0
-pkgrel=2
-pkgdesc=Library providing freedesktop.org XDG specs implementations for Qt.
-arch=(i686 x86_64)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(qt5-base)
-makedepends=(cmake)
-source=(http://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(5c90989fcd13387cc8a7905a03e0b65f76aa28545cb9733625e1d88fd6ff4002)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake $srcdir/$pkgname-$pkgver \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib \
-   -DUSE_QT5=true
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: libqtxdg/repos/community-x86_64/PKGBUILD (from rev 127688, 
libqtxdg/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 00:08:36 UTC (rev 127689)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=libqtxdg
+pkgver=1.1.0
+pkgrel=2
+pkgdesc=Library providing freedesktop.org XDG specs implementations for Qt.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(qt5-base)
+makedepends=(cmake)
+source=(http://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(5c90989fcd13387cc8a7905a03e0b65f76aa28545cb9733625e1d88fd6ff4002)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DUSE_QT5=true
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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

2015-02-13 Thread Ronald van Haren
Date: Friday, February 13, 2015 @ 13:02:33
  Author: ronald
Revision: 231366

upgpkg: digikam 4.7.0-1

update to 4.7.0

Modified:
  digikam/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 09:15:50 UTC (rev 231365)
+++ PKGBUILD2015-02-13 12:02:33 UTC (rev 231366)
@@ -5,7 +5,7 @@
 
 pkgbase=digikam
 pkgname=('digikam' 'kipi-plugins' 'libkgeomap' 'libkvkontakte' 'libmediawiki')
-pkgver=4.6.0
+pkgver=4.7.0
 pkgrel=1
 pkgdesc=Digital photo management application for KDE
 arch=('i686' 'x86_64')
@@ -15,10 +15,9 @@
  'kdeedu-marble' 'opencv' 'boost' 'libgpod' 'qjson' 'hugin' 
'libgphoto2'
  'cmake' 'automoc4' 'doxygen' 'lensfun' 'qt-gstreamer' 
'imagemagick' 'eigen' 
 'libbaloo4' 'libpgf' 'libusb-compat' 'libkface')
-source=(http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('ee4241f02e997c7b122166bc845feb885b633f0e')
+source=(http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}-1.tar.bz2;)
+sha1sums=('66faf7f08929b6c4c06ea665d195856aa43a3ee5')
 
-
 build() {
   mkdir build
   cd build


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

2015-02-13 Thread Ronald van Haren
Date: Friday, February 13, 2015 @ 13:05:07
  Author: ronald
Revision: 231367

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

Added:
  digikam/repos/extra-i686/PKGBUILD
(from rev 231366, digikam/trunk/PKGBUILD)
  digikam/repos/extra-i686/digikam.install
(from rev 231366, digikam/trunk/digikam.install)
  digikam/repos/extra-i686/kipi-plugins.install
(from rev 231366, digikam/trunk/kipi-plugins.install)
  digikam/repos/extra-x86_64/PKGBUILD
(from rev 231366, digikam/trunk/PKGBUILD)
  digikam/repos/extra-x86_64/digikam.install
(from rev 231366, digikam/trunk/digikam.install)
  digikam/repos/extra-x86_64/kipi-plugins.install
(from rev 231366, digikam/trunk/kipi-plugins.install)
Deleted:
  digikam/repos/extra-i686/PKGBUILD
  digikam/repos/extra-i686/digikam.install
  digikam/repos/extra-i686/kipi-plugins.install
  digikam/repos/extra-x86_64/PKGBUILD
  digikam/repos/extra-x86_64/digikam.install
  digikam/repos/extra-x86_64/kipi-plugins.install

---+
 /PKGBUILD |  228 
 /digikam.install  |   24 +++
 /kipi-plugins.install |   24 +++
 extra-i686/PKGBUILD   |  115 --
 extra-i686/digikam.install|   12 -
 extra-i686/kipi-plugins.install   |   12 -
 extra-x86_64/PKGBUILD |  115 --
 extra-x86_64/digikam.install  |   12 -
 extra-x86_64/kipi-plugins.install |   12 -
 9 files changed, 276 insertions(+), 278 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-13 12:02:33 UTC (rev 231366)
+++ extra-i686/PKGBUILD 2015-02-13 12:05:07 UTC (rev 231367)
@@ -1,115 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ron...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Tobias Powalowski tp...@archlinux.org
-
-pkgbase=digikam
-pkgname=('digikam' 'kipi-plugins' 'libkgeomap' 'libkvkontakte' 'libmediawiki')
-pkgver=4.6.0
-pkgrel=1
-pkgdesc=Digital photo management application for KDE
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.digikam.org/;
-makedepends=('kdepimlibs' 'libkexiv2' 'libkdcraw' 'libkipi' 'libksane' 'liblqr'
- 'kdeedu-marble' 'opencv' 'boost' 'libgpod' 'qjson' 'hugin' 
'libgphoto2'
- 'cmake' 'automoc4' 'doxygen' 'lensfun' 'qt-gstreamer' 
'imagemagick' 'eigen' 
-'libbaloo4' 'libpgf' 'libusb-compat' 'libkface')
-source=(http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('ee4241f02e997c7b122166bc845feb885b633f0e')
-
-
-build() {
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
--DBUILD_tests=OFF \
--DDIGIKAMSC_USE_PRIVATE_KDEGRAPHICS=OFF \
--DDIGIKAMSC_USE_PRIVATE_SHAREDLIBS=ON \
--DDIGIKAMSC_COMPILE_LIBKGEOMAP=ON \
--DDIGIKAMSC_COMPILE_LIBKVKONTAKTE=ON \
--DDIGIKAMSC_COMPILE_LIBMEDIAWIKI=ON 
-  make
-}
-
-package_digikam() {
-  pkgdesc=Digital photo management application for KDE
-  depends=('kdebase-runtime' 'kdepimlibs' 'libgphoto2' 'opencv' 'liblqr'
-   'libkipi' 'libkexiv2' 'libkdcraw' 'libkface' 'libkgeomap' 'lensfun' 
-  'libpgf' 'libbaloo4')
-  optdepends=('kipi-plugins: more tools and plugins' 'kdebase-workspace: Theme 
configuration dialog')
-  install=digikam.install
-
-  cd build/core
-  make DESTDIR=${pkgdir} install
-  cd ../../build/doc
-  make DESTDIR=${pkgdir} install
-  cd ../../build/po
-  make DESTDIR=${pkgdir} install
-
-  # Put these in the relevant splitted packages
-  rm ${pkgdir}/usr/share/locale/kde4/*/LC_MESSAGES/kipiplugin*.mo
-  rm ${pkgdir}/usr/share/locale/kde4/*/LC_MESSAGES/libkgeomap*.mo
-  # Fix conflicts with kde-l10n-* (FS#33762)
-  rm ${pkgdir}/usr/share/locale/kde4/*/LC_MESSAGES/libkipi.mo
-}
-
-package_libkgeomap() {
-  pkgdesc=A wrapper around world map components for browsing and arranging 
photos on a map
-  depends=('kdelibs' 'kdeedu-marble')
-
-  cd build/extra/libkgeomap
-  make DESTDIR=${pkgdir} install
-
-  cd ../../../build/po
-  make DESTDIR=${pkgdir} install
-  # Put these in the relevant splitted packages
-  rm ${pkgdir}/usr/share/locale/kde4/*/LC_MESSAGES/kipiplugin*.mo
-  rm ${pkgdir}/usr/share/locale/kde4/*/LC_MESSAGES/digikam.mo
-  # Fix conflicts with kde-l10n-* (FS#33762)
-  rm ${pkgdir}/usr/share/locale/kde4/*/LC_MESSAGES/libkipi.mo
-}
-
-package_libkvkontakte() {
-  pkgdesc=KDE C++ library for asynchronous interaction with 
vkontakte.rusocial network
-  depends=('kdelibs' 'qjson')
-
-  cd build/extra/libkvkontakte
-  make DESTDIR=${pkgdir} install
-}
-
-package_libmediawiki() {
-  pkgdesc=A KDE C++ interface for MediaWiki based web service as 
wikipedia.org
-  depends=('kdelibs')
-
-  cd build/extra/libmediawiki
-  make DESTDIR=${pkgdir} install
-}
-
-package_kipi-plugins() {
-  pkgdesc=A collection of 

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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 13:16:01
  Author: spupykin
Revision: 127658

upgpkg: cython 0.22-1

upd

Modified:
  cython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 12:00:52 UTC (rev 127657)
+++ PKGBUILD2015-02-13 12:16:01 UTC (rev 127658)
@@ -4,7 +4,7 @@
 
 pkgname=('cython' 'cython2')
 pkgbase=cython
-pkgver=0.21.2
+pkgver=0.22
 pkgrel=1
 pkgdesc=C-Extensions for Python 
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 license=('APACHE')
 makedepends=('python-setuptools' 'python2-setuptools')
 source=(http://cython.org/release/Cython-$pkgver.tar.gz;)
-md5sums=('d21adb870c75680dc857cd05d41046a4')
+md5sums=('1ae25add4ef7b63ee9b4af697300d6b6')
 
 package_cython() {
   depends=('python' 'python-setuptools')


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 13:16:16
  Author: spupykin
Revision: 127659

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-13 12:16:01 UTC (rev 127658)
+++ community-i686/PKGBUILD 2015-02-13 12:16:16 UTC (rev 127659)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Igor Scabini furester @ gmail.com
-
-pkgname=('cython' 'cython2')
-pkgbase=cython
-pkgver=0.21.2
-pkgrel=1
-pkgdesc=C-Extensions for Python 
-arch=(i686 x86_64)
-url=http://www.cython.org;
-license=('APACHE')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(http://cython.org/release/Cython-$pkgver.tar.gz;)
-md5sums=('d21adb870c75680dc857cd05d41046a4')
-
-package_cython() {
-  depends=('python' 'python-setuptools')
-
-  cd $srcdir/Cython-$pkgver
-  python setup.py install --root=$pkgdir
-
-  sed -i 's|#!.*python|#!/usr/bin/python3|' $pkgdir/usr/bin/*
-}
-
-package_cython2() {
-  depends=('python2' 'python2-setuptools')
-
-  cd $srcdir/Cython-$pkgver
-  python2 setup.py install --root=$pkgdir
-
-  mv $pkgdir/usr/bin/cygdb $pkgdir/usr/bin/cygdb2
-  mv $pkgdir/usr/bin/cython $pkgdir/usr/bin/cython2
-  mv $pkgdir/usr/bin/cythonize $pkgdir/usr/bin/cythonize2
-}

Copied: cython/repos/community-i686/PKGBUILD (from rev 127658, 
cython/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-13 12:16:16 UTC (rev 127659)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Igor Scabini furester @ gmail.com
+
+pkgname=('cython' 'cython2')
+pkgbase=cython
+pkgver=0.22
+pkgrel=1
+pkgdesc=C-Extensions for Python 
+arch=(i686 x86_64)
+url=http://www.cython.org;
+license=('APACHE')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://cython.org/release/Cython-$pkgver.tar.gz;)
+md5sums=('1ae25add4ef7b63ee9b4af697300d6b6')
+
+package_cython() {
+  depends=('python' 'python-setuptools')
+
+  cd $srcdir/Cython-$pkgver
+  python setup.py install --root=$pkgdir
+
+  sed -i 's|#!.*python|#!/usr/bin/python3|' $pkgdir/usr/bin/*
+}
+
+package_cython2() {
+  depends=('python2' 'python2-setuptools')
+
+  cd $srcdir/Cython-$pkgver
+  python2 setup.py install --root=$pkgdir
+
+  mv $pkgdir/usr/bin/cygdb $pkgdir/usr/bin/cygdb2
+  mv $pkgdir/usr/bin/cython $pkgdir/usr/bin/cython2
+  mv $pkgdir/usr/bin/cythonize $pkgdir/usr/bin/cythonize2
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-02-13 12:16:01 UTC (rev 127658)
+++ community-x86_64/PKGBUILD   2015-02-13 12:16:16 UTC (rev 127659)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Igor Scabini furester @ gmail.com
-
-pkgname=('cython' 'cython2')
-pkgbase=cython
-pkgver=0.21.2
-pkgrel=1
-pkgdesc=C-Extensions for Python 
-arch=(i686 x86_64)
-url=http://www.cython.org;
-license=('APACHE')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(http://cython.org/release/Cython-$pkgver.tar.gz;)
-md5sums=('d21adb870c75680dc857cd05d41046a4')
-
-package_cython() {
-  depends=('python' 'python-setuptools')
-
-  cd $srcdir/Cython-$pkgver
-  python setup.py install --root=$pkgdir
-
-  sed -i 's|#!.*python|#!/usr/bin/python3|' $pkgdir/usr/bin/*
-}
-
-package_cython2() {
-  depends=('python2' 'python2-setuptools')
-
-  cd $srcdir/Cython-$pkgver
-  python2 setup.py install --root=$pkgdir
-
-  mv $pkgdir/usr/bin/cygdb $pkgdir/usr/bin/cygdb2
-  mv $pkgdir/usr/bin/cython $pkgdir/usr/bin/cython2
-  mv $pkgdir/usr/bin/cythonize $pkgdir/usr/bin/cythonize2
-}

Copied: cython/repos/community-x86_64/PKGBUILD (from rev 127658, 
cython/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-13 12:16:16 UTC (rev 127659)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Igor Scabini furester @ gmail.com
+
+pkgname=('cython' 'cython2')
+pkgbase=cython
+pkgver=0.22
+pkgrel=1
+pkgdesc=C-Extensions for Python 
+arch=(i686 x86_64)
+url=http://www.cython.org;
+license=('APACHE')

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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 13:46:21
  Author: spupykin
Revision: 127660

upgpkg: cuneiform 1.1.0-13

upd

Modified:
  cuneiform/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 12:16:16 UTC (rev 127659)
+++ PKGBUILD2015-02-13 12:46:21 UTC (rev 127660)
@@ -5,7 +5,7 @@
 pkgname=cuneiform
 pkgver=1.1.0
 _dpkgver=1.1
-pkgrel=12
+pkgrel=13
 pkgdesc=Linux port of an OCR system developed in Russia. Supports more than 
20 languages.
 arch=('i686' 'x86_64')
 url=https://launchpad.net/cuneiform-linux;


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 13:46:37
  Author: spupykin
Revision: 127661

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

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

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

Copied: cuneiform/repos/community-staging-i686/PKGBUILD (from rev 127660, 
cuneiform/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-02-13 12:46:37 UTC (rev 127661)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Maxim Vuets maxim.vu...@gmail.com
+
+pkgname=cuneiform
+pkgver=1.1.0
+_dpkgver=1.1
+pkgrel=13
+pkgdesc=Linux port of an OCR system developed in Russia. Supports more than 
20 languages.
+arch=('i686' 'x86_64')
+url=https://launchpad.net/cuneiform-linux;
+license=('BSD')
+depends=('imagemagick')
+makedepends=('cmake')
+source=(http://launchpad.net/cuneiform-linux/${_dpkgver}/${_dpkgver}/+download/cuneiform-linux-${pkgver}.tar.bz2)
+md5sums=('09fd160cdfc512f26442a7e91246598d')
+
+build() {
+  cd ${srcdir}/${pkgname}-linux-${pkgver}
+  sed -i 's#lib64#lib#' install_files.cmake
+  mkdir -p builddir
+  cd builddir
+
+  LMAGICK=`ls -1 /usr/lib/libMagick++*.so.?`
+
+  cmake \
+   -DCMAKE_BUILD_TYPE=release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DImageMagick_Magick++_LIBRARY=$LMAGICK \
+   -DImageMagick_Magick++_INCLUDE_DIR=/usr/include/ImageMagick-6 \
+   ..
+  make
+}
+
+check() {
+  ldd ${srcdir}/${pkgname}-linux-${pkgver}/builddir/cuneiform | grep Magick 
/dev/null
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-linux-${pkgver}/builddir
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 
${srcdir}/${pkgname}-linux-${pkgver}/cuneiform_src/Kern/license.txt \
+${pkgdir}/usr/share/licenses/cuneiform/license.txt
+}

Copied: cuneiform/repos/community-staging-x86_64/PKGBUILD (from rev 127660, 
cuneiform/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-02-13 12:46:37 UTC (rev 127661)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Maxim Vuets maxim.vu...@gmail.com
+
+pkgname=cuneiform
+pkgver=1.1.0
+_dpkgver=1.1
+pkgrel=13
+pkgdesc=Linux port of an OCR system developed in Russia. Supports more than 
20 languages.
+arch=('i686' 'x86_64')
+url=https://launchpad.net/cuneiform-linux;
+license=('BSD')
+depends=('imagemagick')
+makedepends=('cmake')
+source=(http://launchpad.net/cuneiform-linux/${_dpkgver}/${_dpkgver}/+download/cuneiform-linux-${pkgver}.tar.bz2)
+md5sums=('09fd160cdfc512f26442a7e91246598d')
+
+build() {
+  cd ${srcdir}/${pkgname}-linux-${pkgver}
+  sed -i 's#lib64#lib#' install_files.cmake
+  mkdir -p builddir
+  cd builddir
+
+  LMAGICK=`ls -1 /usr/lib/libMagick++*.so.?`
+
+  cmake \
+   -DCMAKE_BUILD_TYPE=release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DImageMagick_Magick++_LIBRARY=$LMAGICK \
+   -DImageMagick_Magick++_INCLUDE_DIR=/usr/include/ImageMagick-6 \
+   ..
+  make
+}
+
+check() {
+  ldd ${srcdir}/${pkgname}-linux-${pkgver}/builddir/cuneiform | grep Magick 
/dev/null
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-linux-${pkgver}/builddir
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 
${srcdir}/${pkgname}-linux-${pkgver}/cuneiform_src/Kern/license.txt \
+${pkgdir}/usr/share/licenses/cuneiform/license.txt
+}


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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 13:47:14
  Author: spupykin
Revision: 127663

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

Added:
  synfig/repos/community-staging-i686/
  synfig/repos/community-staging-i686/PKGBUILD
(from rev 127662, synfig/trunk/PKGBUILD)
  synfig/repos/community-staging-i686/build-fix.patch
(from rev 127662, synfig/trunk/build-fix.patch)
  synfig/repos/community-staging-i686/ffmpeg-0.8.patch
(from rev 127662, synfig/trunk/ffmpeg-0.8.patch)
  synfig/repos/community-staging-x86_64/
  synfig/repos/community-staging-x86_64/PKGBUILD
(from rev 127662, synfig/trunk/PKGBUILD)
  synfig/repos/community-staging-x86_64/build-fix.patch
(from rev 127662, synfig/trunk/build-fix.patch)
  synfig/repos/community-staging-x86_64/ffmpeg-0.8.patch
(from rev 127662, synfig/trunk/ffmpeg-0.8.patch)

---+
 community-staging-i686/PKGBUILD   |   46 +
 community-staging-i686/build-fix.patch|   31 ++
 community-staging-i686/ffmpeg-0.8.patch   |   60 
 community-staging-x86_64/PKGBUILD |   46 +
 community-staging-x86_64/build-fix.patch  |   31 ++
 community-staging-x86_64/ffmpeg-0.8.patch |   60 
 6 files changed, 274 insertions(+)

Copied: synfig/repos/community-staging-i686/PKGBUILD (from rev 127662, 
synfig/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-02-13 12:47:14 UTC (rev 127663)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Franco Iacomella y...@gnu.org
+
+pkgname=synfig
+pkgver=0.64.3
+pkgrel=2
+pkgdesc=Professional vector animation program (CLI renderer only)
+arch=(i686 x86_64)
+url=http://synfig.org;
+license=('GPL2')
+depends=('libxml++' 'libsigc++2.0' 'etl' 'imagemagick' 'ffmpeg-compat' 
'fontconfig' 'libpng'
+'libtiff' 'libdv' 'libmng' 'cairo' 'pango' 'boost-libs')
+makedepends=('boost')
+optdepends=('openexr' 'libsigc++')
+conflicts=('synfig-core')
+replaces=('synfig-core')
+source=(http://downloads.sourceforge.net/project/synfig/releases/$pkgver/source/synfig-$pkgver.tar.gz
+   build-fix.patch
+   ffmpeg-0.8.patch)
+md5sums=('294904f9b976c62d7b5473134dbb9dfa'
+ 'b5568b06fae1a7ee465b5380b1139b83'
+ 'ebf41046097cfd778dee9a9854561dae')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i $srcdir/build-fix.patch
+  patch -Np1 -i $srcdir/ffmpeg-0.8.patch
+  sed -i 's|.*set_remove_alpha.*||g' src/modules/mod_libavcodec/trgt_av.cpp
+}
+
+build() {
+  cd $pkgname-$pkgver
+  export PKG_CONFIG_PATH=/usr/lib/ffmpeg-compat/pkgconfig:$PKG_CONFIG_PATH
+  LDFLAGS=$LDFLAGS -Wl,-rpath -Wl,/usr/lib/ffmpeg-compat
+  CFLAGS=$CFLAGS -D__STDC_CONSTANT_MACROS
+  CXXFLAGS=$CXXFLAGS -D__STDC_CONSTANT_MACROS
+  [ -f configure ] || { libtoolize --ltdl --copy --force  autoreconf 
--install --force; }
+  [ -f Makefile ] || ./configure --prefix=/usr --sysconfdir=/etc 
--with-libavcodec --with-libdv
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: synfig/repos/community-staging-i686/build-fix.patch (from rev 127662, 
synfig/trunk/build-fix.patch)
===
--- community-staging-i686/build-fix.patch  (rev 0)
+++ community-staging-i686/build-fix.patch  2015-02-13 12:47:14 UTC (rev 
127663)
@@ -0,0 +1,31 @@
+diff -wbBur synfig-core/src/modules/mod_libavcodec/trgt_av.cpp 
synfig-core.my/src/modules/mod_libavcodec/trgt_av.cpp
+--- synfig-core/src/modules/mod_libavcodec/trgt_av.cpp 2011-06-05 
13:04:07.0 +0400
 synfig-core.my/src/modules/mod_libavcodec/trgt_av.cpp  2011-06-14 
14:32:49.0 +0400
+@@ -31,6 +31,10 @@
+ # include config.h
+ #endif
+ 
++#include libavcodec/avcodec.h
++#include libavformat/avformat.h
++#include libswscale/swscale.h
++
+ #include trgt_av.h
+ 
+ extern C
+@@ -116,14 +120,14 @@
+ picture = avcodec_alloc_frame();
+ if (!picture)
+ return NULL;
+-size = avpicture_get_size(pix_fmt, width, height);
++size = avpicture_get_size((enum ::PixelFormat)pix_fmt, width, height);
+ picture_buf = (uint8_t *)malloc(size);
+ if (!picture_buf) {
+ av_free(picture);
+ return NULL;
+ }
+ avpicture_fill((AVPicture *)picture, picture_buf,
+-   pix_fmt, width, height);
++   (enum ::PixelFormat)pix_fmt, width, height);
+ return picture;
+ }
+ 

Copied: synfig/repos/community-staging-i686/ffmpeg-0.8.patch (from rev 127662, 
synfig/trunk/ffmpeg-0.8.patch)
===
--- community-staging-i686/ffmpeg-0.8.patch (rev 0)
+++ 

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

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 13:47:01
  Author: spupykin
Revision: 127662

upgpkg: synfig 0.64.3-2

upd

Modified:
  synfig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 12:46:37 UTC (rev 127661)
+++ PKGBUILD2015-02-13 12:47:01 UTC (rev 127662)
@@ -4,7 +4,7 @@
 
 pkgname=synfig
 pkgver=0.64.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Professional vector animation program (CLI renderer only)
 arch=(i686 x86_64)
 url=http://synfig.org;


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

2015-02-13 Thread Bartłomiej Piotrowski
Date: Saturday, February 14, 2015 @ 07:06:14
  Author: bpiotrowski
Revision: 231387

upgpkg: ffmpeg 1:2.5.4-1

new upstream release

Modified:
  ffmpeg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-13 21:20:27 UTC (rev 231386)
+++ PKGBUILD2015-02-14 06:06:14 UTC (rev 231387)
@@ -5,8 +5,8 @@
 # Contributor: Paul Mattal p...@archlinux.org
 
 pkgname=ffmpeg
-pkgver=2.5.3
-pkgrel=2
+pkgver=2.5.4
+pkgrel=1
 epoch=1
 pkgdesc='Complete and free Internet live audio and video broadcasting solution'
 arch=('i686' 'x86_64')
@@ -21,7 +21,7 @@
 makedepends=('libvdpau' 'yasm' 'hardening-wrapper')
 source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
 validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8') # ffmpeg-devel
-md5sums=('efba7c5cfbea9ce58ff693cd08f90ffa'
+md5sums=('af92a816b642d32134a764d2d7f55b75'
  'SKIP')
 
 build() {


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

2015-02-13 Thread Bartłomiej Piotrowski
Date: Saturday, February 14, 2015 @ 07:06:25
  Author: bpiotrowski
Revision: 231388

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-14 06:06:14 UTC (rev 231387)
+++ extra-i686/PKGBUILD 2015-02-14 06:06:25 UTC (rev 231388)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer:  Ionut Biru ib...@archlinux.org
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: Paul Mattal p...@archlinux.org
-
-pkgname=ffmpeg
-pkgver=2.5.3
-pkgrel=2
-epoch=1
-pkgdesc='Complete and free Internet live audio and video broadcasting solution'
-arch=('i686' 'x86_64')
-url='http://ffmpeg.org/'
-license=('GPL')
-depends=(
-  'alsa-lib' 'bzip2' 'fontconfig' 'gnutls' 'gsm' 'lame' 'libass' 'libvdpau'
-  'libbluray' 'libmodplug' 'libpulse' 'libtheora' 'libva' 'libvorbis' 
'libvpx'
-  'opencore-amr' 'openjpeg' 'opus' 'rtmpdump' 'schroedinger' 'sdl' 'speex'
-  'v4l-utils' 'libx264' 'xvidcore' 'zlib' 'x265' 'fribidi'
-)
-makedepends=('libvdpau' 'yasm' 'hardening-wrapper')
-source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
-validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8') # ffmpeg-devel
-md5sums=('efba7c5cfbea9ce58ff693cd08f90ffa'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---disable-debug \
---disable-static \
---disable-stripping \
---enable-avisynth \
---enable-avresample \
---enable-fontconfig \
---enable-gnutls \
---enable-gpl \
---enable-libass \
---enable-libbluray \
---enable-libfreetype \
---enable-libfribidi \
---enable-libgsm \
---enable-libmodplug \
---enable-libmp3lame \
---enable-libopencore_amrnb \
---enable-libopencore_amrwb \
---enable-libopenjpeg \
---enable-libopus \
---enable-libpulse \
---enable-librtmp \
---enable-libschroedinger \
---enable-libspeex \
---enable-libtheora \
---enable-libv4l2 \
---enable-libvorbis \
---enable-libvpx \
---enable-libx264 \
---enable-libx265 \
---enable-libxvid \
---enable-runtime-cpudetect \
---enable-shared \
---enable-swresample \
---enable-vdpau \
---enable-version3 \
---enable-x11grab \
-
-  make
-  make tools/qt-faststart
-  make doc/ff{mpeg,play,server}.1
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install install-man
-  install -Dm755 tools/qt-faststart $pkgdir/usr/bin/qt-faststart
-}

Copied: ffmpeg/repos/extra-i686/PKGBUILD (from rev 231387, 
ffmpeg/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-14 06:06:25 UTC (rev 231388)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer:  Ionut Biru ib...@archlinux.org
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Contributor: Paul Mattal p...@archlinux.org
+
+pkgname=ffmpeg
+pkgver=2.5.4
+pkgrel=1
+epoch=1
+pkgdesc='Complete and free Internet live audio and video broadcasting solution'
+arch=('i686' 'x86_64')
+url='http://ffmpeg.org/'
+license=('GPL')
+depends=(
+  'alsa-lib' 'bzip2' 'fontconfig' 'gnutls' 'gsm' 'lame' 'libass' 'libvdpau'
+  'libbluray' 'libmodplug' 'libpulse' 'libtheora' 'libva' 'libvorbis' 
'libvpx'
+  'opencore-amr' 'openjpeg' 'opus' 'rtmpdump' 'schroedinger' 'sdl' 'speex'
+  'v4l-utils' 'libx264' 'xvidcore' 'zlib' 'x265' 'fribidi'
+)
+makedepends=('libvdpau' 'yasm' 'hardening-wrapper')
+source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
+validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8') # ffmpeg-devel
+md5sums=('af92a816b642d32134a764d2d7f55b75'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--disable-debug \
+--disable-static \
+--disable-stripping \
+--enable-avisynth \
+--enable-avresample \
+--enable-fontconfig \
+--enable-gnutls \
+--enable-gpl \
+--enable-libass \
+--enable-libbluray \
+--enable-libfreetype \
+--enable-libfribidi \
+--enable-libgsm \
+--enable-libmodplug \
+--enable-libmp3lame \
+--enable-libopencore_amrnb \
+--enable-libopencore_amrwb \
+--enable-libopenjpeg \
+--enable-libopus \
+--enable-libpulse 

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

2015-02-13 Thread Bartłomiej Piotrowski
Date: Saturday, February 14, 2015 @ 07:19:23
  Author: bpiotrowski
Revision: 127690

upgpkg: haproxy 1.5.11-1

new upstream release

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

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 00:08:36 UTC (rev 127689)
+++ PKGBUILD2015-02-14 06:19:23 UTC (rev 127690)
@@ -2,7 +2,7 @@
 # Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
 
 pkgname=haproxy
-pkgver=1.5.10
+pkgver=1.5.11
 pkgrel=1
 pkgdesc='Reliable, high performance TCP/HTTP load balancer'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 install=haproxy.install
 source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
 haproxy.cfg)
-md5sums=('5631457ea1f84b3c0d8e5bc8015ed329'
+md5sums=('5500a79d0d2b238d4a1e9749bd0c2cb2'
  '7e41518332eeae70fa30dc30861c17c8')
 
 prepare() {


Property changes on: haproxy/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2015-02-13 Thread Bartłomiej Piotrowski
Date: Saturday, February 14, 2015 @ 07:19:35
  Author: bpiotrowski
Revision: 127691

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

Added:
  haproxy/repos/community-i686/PKGBUILD
(from rev 127690, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-i686/haproxy.cfg
(from rev 127690, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-i686/haproxy.install
(from rev 127690, haproxy/trunk/haproxy.install)
  haproxy/repos/community-x86_64/PKGBUILD
(from rev 127690, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-x86_64/haproxy.cfg
(from rev 127690, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-x86_64/haproxy.install
(from rev 127690, haproxy/trunk/haproxy.install)
Deleted:
  haproxy/repos/community-i686/PKGBUILD
  haproxy/repos/community-i686/haproxy.cfg
  haproxy/repos/community-i686/haproxy.install
  haproxy/repos/community-x86_64/PKGBUILD
  haproxy/repos/community-x86_64/haproxy.cfg
  haproxy/repos/community-x86_64/haproxy.install

--+
 /PKGBUILD|  118 +
 /haproxy.cfg |  104 
 /haproxy.install |   16 +
 community-i686/PKGBUILD  |   59 --
 community-i686/haproxy.cfg   |   52 
 community-i686/haproxy.install   |8 --
 community-x86_64/PKGBUILD|   59 --
 community-x86_64/haproxy.cfg |   52 
 community-x86_64/haproxy.install |8 --
 9 files changed, 238 insertions(+), 238 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-14 06:19:23 UTC (rev 127690)
+++ community-i686/PKGBUILD 2015-02-14 06:19:35 UTC (rev 127691)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-
-pkgname=haproxy
-pkgver=1.5.10
-pkgrel=1
-pkgdesc='Reliable, high performance TCP/HTTP load balancer'
-arch=('i686' 'x86_64')
-url='http://haproxy.org/'
-license=('GPL')
-depends=('openssl' 'pcre' 'zlib')
-backup=('etc/haproxy/haproxy.cfg')
-install=haproxy.install
-source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
-haproxy.cfg)
-md5sums=('5631457ea1f84b3c0d8e5bc8015ed329'
- '7e41518332eeae70fa30dc30861c17c8')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
-}
-
-build() {
-  cd $pkgname-$pkgver
-  make CPU=generic TARGET=linux2628 \
-USE_GETADDRINFO=1 \
-USE_OPENSSL=1 \
-USE_PCRE=1 USE_PCRE_JIT=1 \
-USE_ZLIB=1
-
-  for contrib in halog iprange systemd; do
-make -C contrib/$contrib SBINDIR=/usr/bin
-  done
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make PREFIX=$pkgdir/usr \
-SBINDIR=$pkgdir/usr/bin \
-DOCDIR=$pkgdir/usr/share/$pkgname \
-install
-
-  for contrib in halog iprange; do
-install -Dm755 contrib/$contrib/$contrib $pkgdir/usr/bin/$contrib
-  done
-
-  install -Dm644 ../haproxy.cfg $pkgdir/etc/haproxy/haproxy.cfg
-  install -Dm644 contrib/systemd/haproxy.service \
-$pkgdir/usr/lib/systemd/system/haproxy.service
-
-  install -d $pkgdir/usr/share/doc/haproxy/examples/errorfiles
-  install -m644 examples/*.cfg $pkgdir/usr/share/doc/haproxy/examples/
-  install -m644 examples/errorfiles/*.http \
-$pkgdir/usr/share/doc/haproxy/examples/errorfiles/
-
-  install -Dm644 examples/haproxy.vim \
-$pkgdir/usr/share/vim/vimfiles/syntax/haproxy.vim
-}

Copied: haproxy/repos/community-i686/PKGBUILD (from rev 127690, 
haproxy/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 06:19:35 UTC (rev 127691)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+
+pkgname=haproxy
+pkgver=1.5.11
+pkgrel=1
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+arch=('i686' 'x86_64')
+url='http://haproxy.org/'
+license=('GPL')
+depends=('openssl' 'pcre' 'zlib')
+backup=('etc/haproxy/haproxy.cfg')
+install=haproxy.install
+source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+haproxy.cfg)
+md5sums=('5500a79d0d2b238d4a1e9749bd0c2cb2'
+ '7e41518332eeae70fa30dc30861c17c8')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make CPU=generic TARGET=linux2628 \
+USE_GETADDRINFO=1 \
+USE_OPENSSL=1 \
+USE_PCRE=1 USE_PCRE_JIT=1 \
+USE_ZLIB=1
+
+  for contrib in halog iprange systemd; do
+make -C contrib/$contrib SBINDIR=/usr/bin
+  done
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make PREFIX=$pkgdir/usr \
+SBINDIR=$pkgdir/usr/bin \
+DOCDIR=$pkgdir/usr/share/$pkgname \
+install
+
+  for contrib in halog iprange; do
+