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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 18:11:44
  Author: svenstaro
Revision: 237905

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

Added:
  nvidia-utils/repos/extra-i686/PKGBUILD
(from rev 237904, nvidia-utils/trunk/PKGBUILD)
  nvidia-utils/repos/extra-i686/nvidia-utils.install
(from rev 237904, nvidia-utils/trunk/nvidia-utils.install)
  nvidia-utils/repos/extra-x86_64/PKGBUILD
(from rev 237904, nvidia-utils/trunk/PKGBUILD)
  nvidia-utils/repos/extra-x86_64/nvidia-utils.install
(from rev 237904, nvidia-utils/trunk/nvidia-utils.install)
Deleted:
  nvidia-utils/repos/extra-i686/PKGBUILD
  nvidia-utils/repos/extra-i686/nvidia-utils.install
  nvidia-utils/repos/extra-x86_64/PKGBUILD
  nvidia-utils/repos/extra-x86_64/nvidia-utils.install

---+
 /PKGBUILD |  362 
 /nvidia-utils.install |   20 +
 extra-i686/PKGBUILD   |  181 --
 extra-i686/nvidia-utils.install   |   10 
 extra-x86_64/PKGBUILD |  181 --
 extra-x86_64/nvidia-utils.install |   10 
 6 files changed, 382 insertions(+), 382 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-22 16:11:36 UTC (rev 237904)
+++ extra-i686/PKGBUILD 2015-04-22 16:11:44 UTC (rev 237905)
@@ -1,181 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Maintainer: Thomas Baechler tho...@archlinux.org
-# Contributor: James Rayner iphi...@gmail.com
-pkgbase=nvidia-utils
-pkgname=('nvidia-utils' 'nvidia-libgl' 'opencl-nvidia')
-pkgver=346.59
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://www.nvidia.com/;
-license=('custom')
-options=('!strip')
-source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
-
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-sha1sums=('15c93520f67086cda1f6e46fb84e85a3a9447b64'
-  '8d936627f4de6641fd786304135d68a5fe47ae89')
-
-[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
-[[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32
-
-create_links() {
-# create soname links
-for _lib in $(find ${pkgdir} -name '*.so*' | grep -v 'xorg/'); do
-_soname=$(dirname ${_lib})/$(readelf -d ${_lib} | grep -Po 
'SONAME.*: \[\K[^]]*' || true)
-_base=$(echo ${_soname} | sed -r 's/(.*).so.*/\1.so/')
-[[ -e ${_soname} ]] || ln -s $(basename ${_lib}) ${_soname}
-[[ -e ${_base} ]] || ln -s $(basename ${_soname}) ${_base}
-done
-}
-
-prepare() {
-sh ${_pkg}.run --extract-only
-cd ${_pkg}
-bsdtar -xf nvidia-persistenced-init.tar.bz2
-}
-
-package_opencl-nvidia() {
-pkgdesc=OpenCL implemention for NVIDIA
-depends=('libcl' 'zlib')
-optdepends=('opencl-headers: headers necessary for OpenCL development')
-cd ${_pkg}
-
-# OpenCL
-install -D -m644 nvidia.icd ${pkgdir}/etc/OpenCL/vendors/nvidia.icd
-install -D -m755 libnvidia-compiler.so.${pkgver} 
${pkgdir}/usr/lib/libnvidia-compiler.so.${pkgver}
-install -D -m755 libnvidia-opencl.so.${pkgver} 
${pkgdir}/usr/lib/libnvidia-opencl.so.${pkgver} 
-
-create_links
-
-mkdir -p ${pkgdir}/usr/share/licenses
-ln -s nvidia ${pkgdir}/usr/share/licenses/opencl-nvidia
-}
-
-package_nvidia-libgl() {
-pkgdesc=NVIDIA drivers libraries symlinks
-depends=('nvidia-utils')
-conflicts=('libgl')
-provides=('libgl')
-cd ${_pkg}
-
-mkdir -p ${pkgdir}/usr/lib/xorg/modules/extensions
-ln -s /usr/lib/nvidia/xorg/modules/extensions/libglx.so.${pkgver} 
${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so.${pkgver}
-ln -s libglx.so.${pkgver} 
${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so.1
-ln -s libglx.so.${pkgver} 
${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so
-
-ln -s /usr/lib/nvidia/libGL.so.${pkgver} 
${pkgdir}/usr/lib/libGL.so.${pkgver}
-ln -s libGL.so.${pkgver} ${pkgdir}/usr/lib/libGL.so.1
-ln -s libGL.so.${pkgver} ${pkgdir}/usr/lib/libGL.so
-
-ln -s /usr/lib/nvidia/libEGL.so.${pkgver} 
${pkgdir}/usr/lib/libEGL.so.${pkgver}
-ln -s libEGL.so.${pkgver} ${pkgdir}/usr/lib/libEGL.so.1
-ln -s libEGL.so.${pkgver} ${pkgdir}/usr/lib/libEGL.so
-
-ln -s /usr/lib/nvidia/libGLESv1_CM.so.${pkgver} 
${pkgdir}/usr/lib/libGLESv1_CM.so.${pkgver}
-ln -s libGLESv1_CM.so.${pkgver} ${pkgdir}/usr/lib/libGLESv1_CM.so.1
-ln -s libGLESv1_CM.so.${pkgver} ${pkgdir}/usr/lib/libGLESv1_CM.so
-
-ln -s /usr/lib/nvidia/libGLESv2.so.${pkgver} 
${pkgdir}/usr/lib/libGLESv2.so.${pkgver}
-ln -s libGLESv2.so.${pkgver} ${pkgdir}/usr/lib/libGLESv2.so.2
-ln -s libGLESv2.so.${pkgver} ${pkgdir}/usr/lib/libGLESv2.so
-
-mkdir -p ${pkgdir}/usr/share/licenses
-ln -s nvidia ${pkgdir}/usr/share/licenses/nvidia-libgl
-}
-
-package_nvidia-utils() {
-pkgdesc=NVIDIA drivers utilities
-

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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 18:19:47
  Author: svenstaro
Revision: 237906

upgpkg: nvidia-lts 349.16-1

upstream release 349.16

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 16:11:44 UTC (rev 237905)
+++ PKGBUILD2015-04-22 16:19:47 UTC (rev 237906)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=nvidia-lts
-pkgver=346.59
+pkgver=349.16
 _extramodules=extramodules-3.14-lts
 pkgrel=1
 pkgdesc=NVIDIA drivers for linux-lts
@@ -16,8 +16,8 @@
 options=(!strip)
 
source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
 
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-md5sums=('565800c3d9bf347eb35a393f48a6b7f3'
- 'db1cebc2a78eac85777bb4c7c2c8c70c')
+md5sums=('59597d5dfaaf0fc83a5e78d29a97ccac'
+ '3e04208affde8c35a8b96975eec0486b')
 
 [[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
 [[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32


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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 18:19:53
  Author: svenstaro
Revision: 237907

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

Added:
  nvidia-lts/repos/extra-i686/PKGBUILD
(from rev 237906, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/extra-i686/nvidia-lts.install
(from rev 237906, nvidia-lts/trunk/nvidia-lts.install)
  nvidia-lts/repos/extra-x86_64/PKGBUILD
(from rev 237906, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/extra-x86_64/nvidia-lts.install
(from rev 237906, nvidia-lts/trunk/nvidia-lts.install)
Deleted:
  nvidia-lts/repos/extra-i686/PKGBUILD
  nvidia-lts/repos/extra-i686/nvidia-lts.install
  nvidia-lts/repos/extra-x86_64/PKGBUILD
  nvidia-lts/repos/extra-x86_64/nvidia-lts.install

-+
 /PKGBUILD   |  108 ++
 /nvidia-lts.install |   30 ++
 extra-i686/PKGBUILD |   54 ---
 extra-i686/nvidia-lts.install   |   15 -
 extra-x86_64/PKGBUILD   |   54 ---
 extra-x86_64/nvidia-lts.install |   15 -
 6 files changed, 138 insertions(+), 138 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-22 16:19:47 UTC (rev 237906)
+++ extra-i686/PKGBUILD 2015-04-22 16:19:53 UTC (rev 237907)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=nvidia-lts
-pkgver=346.59
-_extramodules=extramodules-3.14-lts
-pkgrel=1
-pkgdesc=NVIDIA drivers for linux-lts
-arch=('i686' 'x86_64')
-url=http://www.nvidia.com/;
-depends=('linux-lts=3.14.36' nvidia-utils=$pkgver 'libgl')
-makedepends=('linux-lts-headers=3.14.36')
-provides=('nvidia')
-license=('custom')
-install=nvidia-lts.install
-options=(!strip)
-source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
-
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-md5sums=('565800c3d9bf347eb35a393f48a6b7f3'
- 'db1cebc2a78eac85777bb4c7c2c8c70c')
-
-[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
-[[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32
-
-prepare() {
-sh ${_pkg}.run --extract-only
-}
-
-build() {
-_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
-cd ${_pkg}/kernel
-make SYSSRC=/usr/lib/modules/${_kernver}/build module
-
-if [[ $CARCH = x86_64 ]]; then
-cd uvm
-make SYSSRC=/usr/lib/modules/${_kernver}/build module
-fi
-}
-
-package() {
-install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
-  
${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko
-  
-if [[ $CARCH = x86_64 ]]; then
-install -D -m644 ${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko \
-${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko
-fi
-  
-gzip ${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/*.ko
-install -d -m755 ${pkgdir}/usr/lib/modprobe.d
-echo blacklist nouveau  ${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf
-echo blacklist nvidiafb  ${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf
-install -D -m644 ${srcdir}/${_pkg}/LICENSE 
${pkgdir}/usr/share/licenses/nvidia-lts/LICENSE
-}

Copied: nvidia-lts/repos/extra-i686/PKGBUILD (from rev 237906, 
nvidia-lts/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-22 16:19:53 UTC (rev 237907)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=nvidia-lts
+pkgver=349.16
+_extramodules=extramodules-3.14-lts
+pkgrel=1
+pkgdesc=NVIDIA drivers for linux-lts
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux-lts=3.14.36' nvidia-utils=$pkgver 'libgl')
+makedepends=('linux-lts-headers=3.14.36')
+provides=('nvidia')
+license=('custom')
+install=nvidia-lts.install
+options=(!strip)
+source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+md5sums=('59597d5dfaaf0fc83a5e78d29a97ccac'
+ '3e04208affde8c35a8b96975eec0486b')
+
+[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
+[[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32
+
+prepare() {
+sh ${_pkg}.run --extract-only
+}
+
+build() {
+_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+cd ${_pkg}/kernel
+make SYSSRC=/usr/lib/modules/${_kernver}/build module
+
+if [[ $CARCH = x86_64 ]]; then
+cd uvm
+make SYSSRC=/usr/lib/modules/${_kernver}/build module
+fi
+}
+
+package() {
+install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
+  
${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko
+  
+if [[ $CARCH = x86_64 ]]; then
+ 

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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 18:20:24
  Author: svenstaro
Revision: 237908

upgpkg: nvidia 349.16-1

upstream release 349.16

Modified:
  nvidia/trunk/PKGBUILD
  nvidia/trunk/nvidia.install

+
 PKGBUILD   |   14 +++---
 nvidia.install |6 +++---
 2 files changed, 10 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 16:19:53 UTC (rev 237907)
+++ PKGBUILD2015-04-22 16:20:24 UTC (rev 237908)
@@ -3,21 +3,21 @@
 # Maintainer: Thomas Baechler tho...@archlinux.org
 
 pkgname=nvidia
-pkgver=346.59
-_extramodules=extramodules-4.0-ARCH
-pkgrel=2
+pkgver=349.16
+_extramodules=extramodules-3.19-ARCH
+pkgrel=1
 pkgdesc=NVIDIA drivers for linux
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;
-depends=('linux=4.0' 'linux4.1' nvidia-utils=${pkgver} 'libgl')
-makedepends=('linux-headers=4.0' 'linux-headers4.1')
+depends=('linux=3.19' 'linux3.20' nvidia-utils=${pkgver} 'libgl')
+makedepends=('linux-headers=3.19' 'linux-headers3.20')
 license=('custom')
 install=nvidia.install
 options=(!strip)
 
source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
 
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-md5sums=('565800c3d9bf347eb35a393f48a6b7f3'
- 'db1cebc2a78eac85777bb4c7c2c8c70c')
+md5sums=('59597d5dfaaf0fc83a5e78d29a97ccac'
+ '3e04208affde8c35a8b96975eec0486b')
 
 [[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
 [[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32

Modified: nvidia.install
===
--- nvidia.install  2015-04-22 16:19:53 UTC (rev 237907)
+++ nvidia.install  2015-04-22 16:20:24 UTC (rev 237908)
@@ -1,11 +1,11 @@
 post_install() {
-EXTRAMODULES='extramodules-4.0-ARCH'
+EXTRAMODULES='extramodules-3.19-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 echo 'In order to use nvidia module, reboot the system.'
 }
 
 post_upgrade() {
-EXTRAMODULES='extramodules-4.0-ARCH'
+EXTRAMODULES='extramodules-3.19-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 if  [ $(vercmp $2 310.19-2) -lt 0 ]; then
 echo 'If your card is from the 7xxx series or earlier, install 
nvidia-304xx'
@@ -13,6 +13,6 @@
 }
 
 post_remove() {
-EXTRAMODULES='extramodules-4.0-ARCH'
+EXTRAMODULES='extramodules-3.19-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }


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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 18:11:36
  Author: svenstaro
Revision: 237904

upgpkg: nvidia-utils 349.16-1

upstream release 349.16

Modified:
  nvidia-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 15:52:44 UTC (rev 237903)
+++ PKGBUILD2015-04-22 16:11:36 UTC (rev 237904)
@@ -4,7 +4,7 @@
 # Contributor: James Rayner iphi...@gmail.com
 pkgbase=nvidia-utils
 pkgname=('nvidia-utils' 'nvidia-libgl' 'opencl-nvidia')
-pkgver=346.59
+pkgver=349.16
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;
@@ -12,8 +12,8 @@
 options=('!strip')
 
source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
 
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-sha1sums=('15c93520f67086cda1f6e46fb84e85a3a9447b64'
-  '8d936627f4de6641fd786304135d68a5fe47ae89')
+sha1sums=('d15907ed7527f3590407a340a2882e5a9600a81d'
+  '700c28fb2acd0aa2682dd8b3b12128ac3110b0b6')
 
 [[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
 [[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32


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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 18:25:10
  Author: svenstaro
Revision: 237911

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

Added:
  nvidia/repos/testing-i686/PKGBUILD
(from rev 237910, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-i686/nv-drm-343.36.patch
(from rev 237910, nvidia/trunk/nv-drm-343.36.patch)
  nvidia/repos/testing-i686/nvidia.install
(from rev 237910, nvidia/trunk/nvidia.install)
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 237910, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-x86_64/nv-drm-343.36.patch
(from rev 237910, nvidia/trunk/nv-drm-343.36.patch)
  nvidia/repos/testing-x86_64/nvidia.install
(from rev 237910, nvidia/trunk/nvidia.install)
Deleted:
  nvidia/repos/testing-i686/PKGBUILD
  nvidia/repos/testing-i686/nv-drm-343.36.patch
  nvidia/repos/testing-i686/nvidia.install
  nvidia/repos/testing-x86_64/PKGBUILD
  nvidia/repos/testing-x86_64/nv-drm-343.36.patch
  nvidia/repos/testing-x86_64/nvidia.install

+
 /PKGBUILD  |  108 +++
 /nv-drm-343.36.patch   |   28 +
 /nvidia.install|   36 +++
 testing-i686/PKGBUILD  |   54 -
 testing-i686/nv-drm-343.36.patch   |   14 
 testing-i686/nvidia.install|   18 -
 testing-x86_64/PKGBUILD|   54 -
 testing-x86_64/nv-drm-343.36.patch |   14 
 testing-x86_64/nvidia.install  |   18 -
 9 files changed, 172 insertions(+), 172 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-04-22 16:25:02 UTC (rev 237910)
+++ testing-i686/PKGBUILD   2015-04-22 16:25:10 UTC (rev 237911)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Maintainer: Thomas Baechler tho...@archlinux.org
-
-pkgname=nvidia
-pkgver=346.59
-_extramodules=extramodules-4.0-ARCH
-pkgrel=2
-pkgdesc=NVIDIA drivers for linux
-arch=('i686' 'x86_64')
-url=http://www.nvidia.com/;
-depends=('linux=4.0' 'linux4.1' nvidia-utils=${pkgver} 'libgl')
-makedepends=('linux-headers=4.0' 'linux-headers4.1')
-license=('custom')
-install=nvidia.install
-options=(!strip)
-source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
-
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-md5sums=('565800c3d9bf347eb35a393f48a6b7f3'
- 'db1cebc2a78eac85777bb4c7c2c8c70c')
-
-[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
-[[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32
-
-prepare() {
-sh ${_pkg}.run --extract-only
-cd ${_pkg}
-# patches here
-}
-
-build() {
-_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
-cd ${_pkg}/kernel
-make SYSSRC=/usr/lib/modules/${_kernver}/build module
-
-if [[ $CARCH = x86_64 ]]; then
-cd uvm
-make SYSSRC=/usr/lib/modules/${_kernver}/build module
-fi
-}
-
-package() {
-install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
-${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
-
-if [[ $CARCH = x86_64 ]]; then
-install -D -m644 ${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko \
-${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko
-fi
-
-gzip ${pkgdir}/usr/lib/modules/${_extramodules}/*.ko
-install -d -m755 ${pkgdir}/usr/lib/modprobe.d
-echo blacklist nouveau  ${pkgdir}/usr/lib/modprobe.d/nvidia.conf
-}

Copied: nvidia/repos/testing-i686/PKGBUILD (from rev 237910, 
nvidia/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-04-22 16:25:10 UTC (rev 237911)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Maintainer: Thomas Baechler tho...@archlinux.org
+
+pkgname=nvidia
+pkgver=349.16
+_extramodules=extramodules-4.0-ARCH
+pkgrel=2
+pkgdesc=NVIDIA drivers for linux
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux=4.0' 'linux4.1' nvidia-utils=${pkgver} 'libgl')
+makedepends=('linux-headers=4.0' 'linux-headers4.1')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+md5sums=('59597d5dfaaf0fc83a5e78d29a97ccac'
+ '3e04208affde8c35a8b96975eec0486b')
+
+[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
+[[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32
+
+prepare() {
+sh ${_pkg}.run --extract-only
+cd ${_pkg}
+# patches here
+}
+
+build() {
+_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+cd ${_pkg}/kernel
+make 

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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 18:25:02
  Author: svenstaro
Revision: 237910

upgpkg: nvidia 349.16-2

upstream release 349.16

Modified:
  nvidia/trunk/PKGBUILD
  nvidia/trunk/nvidia.install

+
 PKGBUILD   |8 
 nvidia.install |6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 16:20:31 UTC (rev 237909)
+++ PKGBUILD2015-04-22 16:25:02 UTC (rev 237910)
@@ -4,13 +4,13 @@
 
 pkgname=nvidia
 pkgver=349.16
-_extramodules=extramodules-3.19-ARCH
-pkgrel=1
+_extramodules=extramodules-4.0-ARCH
+pkgrel=2
 pkgdesc=NVIDIA drivers for linux
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;
-depends=('linux=3.19' 'linux3.20' nvidia-utils=${pkgver} 'libgl')
-makedepends=('linux-headers=3.19' 'linux-headers3.20')
+depends=('linux=4.0' 'linux4.1' nvidia-utils=${pkgver} 'libgl')
+makedepends=('linux-headers=4.0' 'linux-headers4.1')
 license=('custom')
 install=nvidia.install
 options=(!strip)

Modified: nvidia.install
===
--- nvidia.install  2015-04-22 16:20:31 UTC (rev 237909)
+++ nvidia.install  2015-04-22 16:25:02 UTC (rev 237910)
@@ -1,11 +1,11 @@
 post_install() {
-EXTRAMODULES='extramodules-3.19-ARCH'
+EXTRAMODULES='extramodules-4.0-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 echo 'In order to use nvidia module, reboot the system.'
 }
 
 post_upgrade() {
-EXTRAMODULES='extramodules-3.19-ARCH'
+EXTRAMODULES='extramodules-4.0-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 if  [ $(vercmp $2 310.19-2) -lt 0 ]; then
 echo 'If your card is from the 7xxx series or earlier, install 
nvidia-304xx'
@@ -13,6 +13,6 @@
 }
 
 post_remove() {
-EXTRAMODULES='extramodules-3.19-ARCH'
+EXTRAMODULES='extramodules-4.0-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }


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

2015-04-22 Thread Alexander Rødseth
Date: Wednesday, April 22, 2015 @ 14:58:26
  Author: arodseth
Revision: 131943

upgpkg: python-nltk 3.0.2-1

Modified:
  python-nltk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 12:54:52 UTC (rev 131942)
+++ PKGBUILD2015-04-22 12:58:26 UTC (rev 131943)
@@ -5,13 +5,13 @@
 
 pkgbase=python-nltk
 pkgname=('python2-nltk' 'python-nltk')
-pkgver=3.0.0
+pkgver=3.0.2
 pkgrel=1
 pkgdesc='Natural language processing in Python'
 arch=('any')
 url='http://www.nltk.org/'
 license=('APACHE')
-makedepends=('python-setuptools' 'python2-setuptools')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
 source=(git+https://github.com/nltk/nltk#tag=$pkgver;)
 md5sums=('SKIP')
 


[arch-commits] Commit in lib32-nvidia-utils/trunk (PKGBUILD)

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 18:08:25
  Author: svenstaro
Revision: 131960

upgpkg: lib32-nvidia-utils 349.16-1

upstream release 349.16

Modified:
  lib32-nvidia-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 15:31:38 UTC (rev 131959)
+++ PKGBUILD2015-04-22 16:08:25 UTC (rev 131960)
@@ -5,7 +5,7 @@
 _pkgbasename=nvidia-utils
 pkgbase=lib32-$_pkgbasename
 pkgname=('lib32-nvidia-utils' 'lib32-nvidia-libgl' 'lib32-opencl-nvidia')
-pkgver=346.59
+pkgver=349.16
 pkgrel=1
 arch=('x86_64')
 url=http://www.nvidia.com/;
@@ -15,7 +15,7 @@
 _arch='x86'
 _pkg=NVIDIA-Linux-${_arch}-${pkgver}
 
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums=('565800c3d9bf347eb35a393f48a6b7f3')
+md5sums=('59597d5dfaaf0fc83a5e78d29a97ccac')
 
 create_links() {
 # create soname links


[arch-commits] Commit in lib32-nvidia-utils/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 18:08:30
  Author: svenstaro
Revision: 131961

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-nvidia-utils/repos/multilib-x86_64/PKGBUILD
(from rev 131960, lib32-nvidia-utils/trunk/PKGBUILD)
Deleted:
  lib32-nvidia-utils/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-22 16:08:25 UTC (rev 131960)
+++ PKGBUILD2015-04-22 16:08:30 UTC (rev 131961)
@@ -1,118 +0,0 @@
-# $Id$
-# Maintainer: Thomas Baechler tho...@archlinux.org
-# Contributor: James Rayner iphi...@gmail.com
-
-_pkgbasename=nvidia-utils
-pkgbase=lib32-$_pkgbasename
-pkgname=('lib32-nvidia-utils' 'lib32-nvidia-libgl' 'lib32-opencl-nvidia')
-pkgver=346.59
-pkgrel=1
-arch=('x86_64')
-url=http://www.nvidia.com/;
-license=('custom')
-options=('!strip')
-
-_arch='x86'
-_pkg=NVIDIA-Linux-${_arch}-${pkgver}
-source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums=('565800c3d9bf347eb35a393f48a6b7f3')
-
-create_links() {
-# create soname links
-for _lib in $(find ${pkgdir} -name '*.so*' | grep -v 'xorg/'); do
-_soname=$(dirname ${_lib})/$(readelf -d ${_lib} | grep -Po 
'SONAME.*: \[\K[^]]*' || true)
-_base=$(echo ${_soname} | sed -r 's/(.*).so.*/\1.so/')
-[[ -e ${_soname} ]] || ln -s $(basename ${_lib}) ${_soname}
-[[ -e ${_base} ]] || ln -s $(basename ${_soname}) ${_base}
-done
-}
-
-build() {
-sh ${_pkg}.run --extract-only
-}
-
-package_lib32-opencl-nvidia() {
-pkgdesc=OpenCL implemention for NVIDIA (32-bit)
-depends=('lib32-libcl' 'lib32-zlib' 'lib32-gcc-libs')
-optdepends=('opencl-headers: headers necessary for OpenCL development')
-cd ${_pkg}
-
-# OpenCL
-install -D -m755 libnvidia-compiler.so.${pkgver} 
${pkgdir}/usr/lib32/libnvidia-compiler.so.${pkgver}
-install -D -m755 libnvidia-opencl.so.${pkgver} 
${pkgdir}/usr/lib32/libnvidia-opencl.so.${pkgver} 
-
-create_links
-
-mkdir -p ${pkgdir}/usr/share/licenses
-ln -s $_pkgbasename ${pkgdir}/usr/share/licenses/lib32-opencl-nvidia
-}
-
-package_lib32-nvidia-libgl() {
-pkgdesc=NVIDIA drivers libraries symlinks (32-bit)
-depends=('lib32-nvidia-utils')
-replaces=('lib32-nvidia-utils=313.26-1')
-conflicts=('lib32-libgl')
-provides=('lib32-libgl')
-cd ${_pkg}
-
-mkdir -p ${pkgdir}/usr/lib32
-ln -s /usr/lib32/nvidia/libGL.so.${pkgver} 
${pkgdir}/usr/lib32/libGL.so.${pkgver}
-ln -s libGL.so.${pkgver} ${pkgdir}/usr/lib32/libGL.so.1
-ln -s libGL.so.${pkgver} ${pkgdir}/usr/lib32/libGL.so
-
-ln -s /usr/lib32/nvidia/libEGL.so.${pkgver} 
${pkgdir}/usr/lib32/libEGL.so.${pkgver}
-ln -s libEGL.so.${pkgver} ${pkgdir}/usr/lib32/libEGL.so.1
-ln -s libEGL.so.${pkgver} ${pkgdir}/usr/lib32/libEGL.so
-
-ln -s /usr/lib32/nvidia/libGLESv1_CM.so.${pkgver} 
${pkgdir}/usr/lib32/libGLESv1_CM.so.${pkgver}
-ln -s libGLESv1_CM.so.${pkgver} ${pkgdir}/usr/lib32/libGLESv1_CM.so.1
-ln -s libGLESv1_CM.so.${pkgver} ${pkgdir}/usr/lib32/libGLESv1_CM.so
-
-ln -s /usr/lib32/nvidia/libGLESv2.so.${pkgver} 
${pkgdir}/usr/lib32/libGLESv2.so.${pkgver}
-ln -s libGLESv2.so.${pkgver} ${pkgdir}/usr/lib32/libGLESv2.so.2
-ln -s libGLESv2.so.${pkgver} ${pkgdir}/usr/lib32/libGLESv2.so
-
-mkdir -p ${pkgdir}/usr/share/licenses
-ln -s $_pkgbasename ${pkgdir}/usr/share/licenses/lib32-nvidia-libgl
-}
-
-package_lib32-nvidia-utils() {
-pkgdesc=NVIDIA drivers utilities (32-bit)
-depends=('lib32-zlib' 'lib32-gcc-libs')
-optdepends=('lib32-opencl-nvidia')
-cd ${_pkg}
-
-# OpenGL libraries
-install -D -m755 libGL.so.${pkgver} 
${pkgdir}/usr/lib32/nvidia/libGL.so.${pkgver}
-install -D -m755 libEGL.so.${pkgver} 
${pkgdir}/usr/lib32/nvidia/libEGL.so.${pkgver}
-install -D -m755 libGLESv1_CM.so.${pkgver} 
${pkgdir}/usr/lib32/nvidia/libGLESv1_CM.so.${pkgver}
-install -D -m755 libGLESv2.so.${pkgver} 
${pkgdir}/usr/lib32/nvidia/libGLESv2.so.${pkgver}
-
-# OpenGL core library
-install -D -m755 libnvidia-glcore.so.${pkgver} 
${pkgdir}/usr/lib32/libnvidia-glcore.so.${pkgver}
-install -D -m755 libnvidia-eglcore.so.${pkgver} 
${pkgdir}/usr/lib32/libnvidia-eglcore.so.${pkgver}
-install -D -m755 libnvidia-glsi.so.${pkgver} 
${pkgdir}/usr/lib32/libnvidia-glsi.so.${pkgver}
-
-# misc
-install -D -m755 libnvidia-ifr.so.${pkgver} 
${pkgdir}/usr/lib32/libnvidia-ifr.so.${pkgver}
-install -D -m755 libnvidia-fbc.so.${pkgver} 
${pkgdir}/usr/lib32/libnvidia-fbc.so.${pkgver}
-install -D -m755 libnvidia-encode.so.${pkgver} 
${pkgdir}/usr/lib32/libnvidia-encode.so.${pkgver}
-install -D -m755 libnvidia-cfg.so.${pkgver} 
${pkgdir}/usr/lib32/libnvidia-cfg.so.${pkgver}
-install -D -m755 libnvidia-ml.so.${pkgver} 

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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 18:20:31
  Author: svenstaro
Revision: 237909

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

Added:
  nvidia/repos/extra-i686/PKGBUILD
(from rev 237908, nvidia/trunk/PKGBUILD)
  nvidia/repos/extra-i686/nv-drm-343.36.patch
(from rev 237908, nvidia/trunk/nv-drm-343.36.patch)
  nvidia/repos/extra-i686/nvidia.install
(from rev 237908, nvidia/trunk/nvidia.install)
  nvidia/repos/extra-x86_64/PKGBUILD
(from rev 237908, nvidia/trunk/PKGBUILD)
  nvidia/repos/extra-x86_64/nv-drm-343.36.patch
(from rev 237908, nvidia/trunk/nv-drm-343.36.patch)
  nvidia/repos/extra-x86_64/nvidia.install
(from rev 237908, nvidia/trunk/nvidia.install)
Deleted:
  nvidia/repos/extra-i686/PKGBUILD
  nvidia/repos/extra-i686/nv-drm-343.36.patch
  nvidia/repos/extra-i686/nvidia.install
  nvidia/repos/extra-x86_64/PKGBUILD
  nvidia/repos/extra-x86_64/nv-drm-343.36.patch
  nvidia/repos/extra-x86_64/nvidia.install

--+
 /PKGBUILD|  108 +
 /nv-drm-343.36.patch |   28 +
 /nvidia.install  |   36 
 extra-i686/PKGBUILD  |   54 --
 extra-i686/nv-drm-343.36.patch   |   14 
 extra-i686/nvidia.install|   18 --
 extra-x86_64/PKGBUILD|   54 --
 extra-x86_64/nv-drm-343.36.patch |   14 
 extra-x86_64/nvidia.install  |   18 --
 9 files changed, 172 insertions(+), 172 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-22 16:20:24 UTC (rev 237908)
+++ extra-i686/PKGBUILD 2015-04-22 16:20:31 UTC (rev 237909)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Maintainer: Thomas Baechler tho...@archlinux.org
-
-pkgname=nvidia
-pkgver=346.59
-_extramodules=extramodules-3.19-ARCH
-pkgrel=1
-pkgdesc=NVIDIA drivers for linux
-arch=('i686' 'x86_64')
-url=http://www.nvidia.com/;
-depends=('linux=3.19' 'linux3.20' nvidia-utils=${pkgver} 'libgl')
-makedepends=('linux-headers=3.19' 'linux-headers3.20')
-license=('custom')
-install=nvidia.install
-options=(!strip)
-source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
-
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-md5sums=('565800c3d9bf347eb35a393f48a6b7f3'
- 'db1cebc2a78eac85777bb4c7c2c8c70c')
-
-[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
-[[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32
-
-prepare() {
-sh ${_pkg}.run --extract-only
-cd ${_pkg}
-# patches here
-}
-
-build() {
-_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
-cd ${_pkg}/kernel
-make SYSSRC=/usr/lib/modules/${_kernver}/build module
-
-if [[ $CARCH = x86_64 ]]; then
-cd uvm
-make SYSSRC=/usr/lib/modules/${_kernver}/build module
-fi
-}
-
-package() {
-install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
-${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
-
-if [[ $CARCH = x86_64 ]]; then
-install -D -m644 ${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko \
-${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko
-fi
-
-gzip ${pkgdir}/usr/lib/modules/${_extramodules}/*.ko
-install -d -m755 ${pkgdir}/usr/lib/modprobe.d
-echo blacklist nouveau  ${pkgdir}/usr/lib/modprobe.d/nvidia.conf
-}

Copied: nvidia/repos/extra-i686/PKGBUILD (from rev 237908, 
nvidia/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-22 16:20:31 UTC (rev 237909)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Maintainer: Thomas Baechler tho...@archlinux.org
+
+pkgname=nvidia
+pkgver=349.16
+_extramodules=extramodules-3.19-ARCH
+pkgrel=1
+pkgdesc=NVIDIA drivers for linux
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux=3.19' 'linux3.20' nvidia-utils=${pkgver} 'libgl')
+makedepends=('linux-headers=3.19' 'linux-headers3.20')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+md5sums=('59597d5dfaaf0fc83a5e78d29a97ccac'
+ '3e04208affde8c35a8b96975eec0486b')
+
+[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
+[[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32
+
+prepare() {
+sh ${_pkg}.run --extract-only
+cd ${_pkg}
+# patches here
+}
+
+build() {
+_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+cd ${_pkg}/kernel
+make SYSSRC=/usr/lib/modules/${_kernver}/build module
+
+if [[ 

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

2015-04-22 Thread Alexander Rødseth
Date: Wednesday, April 22, 2015 @ 15:09:35
  Author: arodseth
Revision: 131950

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

Added:
  scite/repos/community-i686/PKGBUILD
(from rev 131949, scite/trunk/PKGBUILD)
  scite/repos/community-i686/scite.install
(from rev 131949, scite/trunk/scite.install)
  scite/repos/community-x86_64/PKGBUILD
(from rev 131949, scite/trunk/PKGBUILD)
  scite/repos/community-x86_64/scite.install
(from rev 131949, scite/trunk/scite.install)
Deleted:
  scite/repos/community-i686/PKGBUILD
  scite/repos/community-i686/scite.install
  scite/repos/community-x86_64/PKGBUILD
  scite/repos/community-x86_64/scite.install

+
 /PKGBUILD  |   96 +++
 /scite.install |   26 ++
 community-i686/PKGBUILD|   48 ---
 community-i686/scite.install   |   13 -
 community-x86_64/PKGBUILD  |   48 ---
 community-x86_64/scite.install |   13 -
 6 files changed, 122 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-22 13:09:23 UTC (rev 131949)
+++ community-i686/PKGBUILD 2015-04-22 13:09:35 UTC (rev 131950)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Thomas S Hatch thatc...@gmail.com
-# Contributor: Corrado 'bardo' Primier corrado.prim...@mail.polimi.it
-# Contributor: Jochem Kossen j.kos...@home.nl
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=scite
-pkgver=3.5.4
-pkgrel=1
-pkgdesc='Editor with facilities for building and running programs'
-arch=('x86_64' 'i686')
-url='http://www.scintilla.org/SciTE.html'
-license=('custom:scite')
-depends=('desktop-file-utils' 'gtk2')
-makedepends=('setconf')
-backup=('usr/share/scite/SciTEGlobal.properties')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/sourceforge/scintilla/${pkgname}${pkgver//./}.tgz;)
-sha256sums=('96041bb6a3aed321e353db7c8fcde720b99cab98cbfa2ef62a5e07dd523e1495')
-
-prepare() {
-  if [ $?CXXBASEFLAGS == 1 ]; then
-sed '0,/CXXTFLAGS=/s//nop=/' -i scite/gtk/makefile
-setconf scite/gtk/makefile CXXTFLAGS -DNDEBUG ${CXXFLAGS} $(CXXBASEFLAGS)
-  fi
-  sed '0,/CXXFLAGS=/s//nop=/' -i scintilla/gtk/makefile
-  setconf scintilla/gtk/makefile CXXFLAGS \
--DNDEBUG ${CXXFLAGS} \$(CXXBASEFLAGS) \$(THREADFLAGS)
-  setconf scintilla/gtk/makefile CXXBASEFLAGS \
--Wno-missing-braces -Wno-char-subscripts ${CXXFLAGS} -DGTK -DSCI_LEXER 
\$(INCLUDEDIRS)
-}
-
-build() {
-  make -C scintilla/gtk
-  make -C $pkgname/gtk
-}
-
-package() {
-  make -C $pkgname/gtk DESTDIR=$pkgdir install
-  install -Dm644 $pkgname/License.txt \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE-scite
-  install -Dm644 scintilla/License.txt \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE-scintilla
-  ln -sf /usr/bin/SciTE $pkgdir/usr/bin/scite
-}
-
-# vim:set ts=2 sw=2 et:

Copied: scite/repos/community-i686/PKGBUILD (from rev 131949, 
scite/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-22 13:09:35 UTC (rev 131950)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Thomas S Hatch thatc...@gmail.com
+# Contributor: Corrado 'bardo' Primier corrado.prim...@mail.polimi.it
+# Contributor: Jochem Kossen j.kos...@home.nl
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=scite
+pkgver=3.5.5
+pkgrel=1
+pkgdesc='Editor with facilities for building and running programs'
+arch=('x86_64' 'i686')
+url='http://www.scintilla.org/SciTE.html'
+license=('custom:scite')
+depends=('desktop-file-utils' 'gtk2')
+makedepends=('setconf')
+backup=('usr/share/scite/SciTEGlobal.properties')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/scintilla/${pkgname}${pkgver//./}.tgz;)
+sha256sums=('20515597ac986f1727c97bda2c27d88487ddb79cfe330b0b890b5e25330b7d9f')
+
+prepare() {
+  if [ $?CXXBASEFLAGS == 1 ]; then
+sed '0,/CXXTFLAGS=/s//nop=/' -i scite/gtk/makefile
+setconf scite/gtk/makefile CXXTFLAGS -DNDEBUG ${CXXFLAGS} $(CXXBASEFLAGS)
+  fi
+  sed '0,/CXXFLAGS=/s//nop=/' -i scintilla/gtk/makefile
+  setconf scintilla/gtk/makefile CXXFLAGS \
+-DNDEBUG ${CXXFLAGS} \$(CXXBASEFLAGS) \$(THREADFLAGS)
+  setconf scintilla/gtk/makefile CXXBASEFLAGS \
+-Wno-missing-braces -Wno-char-subscripts ${CXXFLAGS} -DGTK -DSCI_LEXER 
\$(INCLUDEDIRS)
+}
+
+build() {
+  make -C scintilla/gtk
+  make -C $pkgname/gtk
+}
+
+package() {
+  make -C $pkgname/gtk DESTDIR=$pkgdir install
+  install -Dm644 $pkgname/License.txt \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE-scite
+  install -Dm644 scintilla/License.txt \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE-scintilla
+  

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

2015-04-22 Thread Alexander Rødseth
Date: Wednesday, April 22, 2015 @ 15:08:55
  Author: arodseth
Revision: 131947

upgpkg: wordpress 4.1.2-1

Modified:
  wordpress/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 13:08:17 UTC (rev 131946)
+++ PKGBUILD2015-04-22 13:08:55 UTC (rev 131947)
@@ -6,7 +6,7 @@
 # Contributor: Christopher Rogers slaxemulator.gmail.com
 
 pkgname=wordpress
-pkgver=4.1.1
+pkgver=4.1.2
 pkgrel=1
 pkgdesc='Blog tool and publishing platform'
 arch=('any')
@@ -20,7 +20,7 @@
 options=('emptydirs')
 install=$pkgname.install
 source=(http://wordpress.org/$pkgname-$pkgver.tar.gz;)
-sha256sums=('618ac08c2be3959b37f4ee0006558da65b7a4bca19bfb4b86ea60e5d53043ee9')
+sha256sums=('e6a00cb181d1987cd48b44851c88aafbb318ecbcdf826f13cc012ed96c5d0091')
 
 package() {
   install -d $pkgdir/usr/share/webapps


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

2015-04-22 Thread Alexander Rødseth
Date: Wednesday, April 22, 2015 @ 15:09:03
  Author: arodseth
Revision: 131948

archrelease: copy trunk to community-any

Added:
  wordpress/repos/community-any/PKGBUILD
(from rev 131947, wordpress/trunk/PKGBUILD)
  wordpress/repos/community-any/wordpress.install
(from rev 131947, wordpress/trunk/wordpress.install)
Deleted:
  wordpress/repos/community-any/PKGBUILD
  wordpress/repos/community-any/wordpress.install

---+
 PKGBUILD  |   60 ++--
 wordpress.install |   42 ++--
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-22 13:08:55 UTC (rev 131947)
+++ PKGBUILD2015-04-22 13:09:03 UTC (rev 131948)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Thomas Dziedzic gostrc at gmail
-# Contributor: Jose Valecillos valecillosjg (at) gmail (dot) com
-# Contributor: Kaos gianlucaatlas (at) gmail (dot) com
-# Contributor: Christopher Rogers slaxemulator.gmail.com
-
-pkgname=wordpress
-pkgver=4.1.1
-pkgrel=1
-pkgdesc='Blog tool and publishing platform'
-arch=('any')
-url='http://wordpress.org/'
-license=('GPL')
-depends=('php')
-optdepends=('apache: Web server to run wordpress'
-'nginx: Web server to run wordpress'
-'cherokee: Lightweight Web server to run wordpress'
-'mysql: Database server')
-options=('emptydirs')
-install=$pkgname.install
-source=(http://wordpress.org/$pkgname-$pkgver.tar.gz;)
-sha256sums=('618ac08c2be3959b37f4ee0006558da65b7a4bca19bfb4b86ea60e5d53043ee9')
-
-package() {
-  install -d $pkgdir/usr/share/webapps
-  cp -r wordpress $pkgdir/usr/share/webapps
-}
-
-# vim:set ts=2 sw=2 et:

Copied: wordpress/repos/community-any/PKGBUILD (from rev 131947, 
wordpress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-22 13:09:03 UTC (rev 131948)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Thomas Dziedzic gostrc at gmail
+# Contributor: Jose Valecillos valecillosjg (at) gmail (dot) com
+# Contributor: Kaos gianlucaatlas (at) gmail (dot) com
+# Contributor: Christopher Rogers slaxemulator.gmail.com
+
+pkgname=wordpress
+pkgver=4.1.2
+pkgrel=1
+pkgdesc='Blog tool and publishing platform'
+arch=('any')
+url='http://wordpress.org/'
+license=('GPL')
+depends=('php')
+optdepends=('apache: Web server to run wordpress'
+'nginx: Web server to run wordpress'
+'cherokee: Lightweight Web server to run wordpress'
+'mysql: Database server')
+options=('emptydirs')
+install=$pkgname.install
+source=(http://wordpress.org/$pkgname-$pkgver.tar.gz;)
+sha256sums=('e6a00cb181d1987cd48b44851c88aafbb318ecbcdf826f13cc012ed96c5d0091')
+
+package() {
+  install -d $pkgdir/usr/share/webapps
+  cp -r wordpress $pkgdir/usr/share/webapps
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: wordpress.install
===
--- wordpress.install   2015-04-22 13:08:55 UTC (rev 131947)
+++ wordpress.install   2015-04-22 13:09:03 UTC (rev 131948)
@@ -1,21 +0,0 @@
-post_install() {
-  # Make uploads work
-  install -dm775 /usr/share/webapps/wordpress/wp-content/uploads
-  chown http:http /usr/share/webapps/wordpress/wp-content/uploads
-  echo 'You can now configure your (PHP compatible) web server to run 
Wordpress'
-}
-
-pre_remove() {
-  cp -r /usr/share/webapps/wordpress /usr/share/webapps/wordpress_backup
-  echo 'Your Wordpress folder were backed up to 
/usr/share/webapps/wordpress_backup'
-}
-
-post_remove() {
-  rm -rf /usr/share/webapps/wordpress
-}
-
-post_upgrade() {
-  echo 'Wordpress is in /usr/share/webapps now'
-}
-
-# vim:set ts=2 sw=2 et:

Copied: wordpress/repos/community-any/wordpress.install (from rev 131947, 
wordpress/trunk/wordpress.install)
===
--- wordpress.install   (rev 0)
+++ wordpress.install   2015-04-22 13:09:03 UTC (rev 131948)
@@ -0,0 +1,21 @@
+post_install() {
+  # Make uploads work
+  install -dm775 /usr/share/webapps/wordpress/wp-content/uploads
+  chown http:http /usr/share/webapps/wordpress/wp-content/uploads
+  echo 'You can now configure your (PHP compatible) web server to run 
Wordpress'
+}
+
+pre_remove() {
+  cp -r /usr/share/webapps/wordpress /usr/share/webapps/wordpress_backup
+  echo 'Your Wordpress folder were backed up to 
/usr/share/webapps/wordpress_backup'
+}
+
+post_remove() {
+  rm -rf /usr/share/webapps/wordpress
+}
+
+post_upgrade() {
+  echo 'Wordpress is in /usr/share/webapps now'
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-04-22 Thread Alexander Rødseth
Date: Wednesday, April 22, 2015 @ 15:09:23
  Author: arodseth
Revision: 131949

upgpkg: scite 3.5.5-1

Modified:
  scite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 13:09:03 UTC (rev 131948)
+++ PKGBUILD2015-04-22 13:09:23 UTC (rev 131949)
@@ -6,7 +6,7 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=scite
-pkgver=3.5.4
+pkgver=3.5.5
 pkgrel=1
 pkgdesc='Editor with facilities for building and running programs'
 arch=('x86_64' 'i686')
@@ -17,7 +17,7 @@
 backup=('usr/share/scite/SciTEGlobal.properties')
 install=$pkgname.install
 
source=(http://downloads.sourceforge.net/sourceforge/scintilla/${pkgname}${pkgver//./}.tgz;)
-sha256sums=('96041bb6a3aed321e353db7c8fcde720b99cab98cbfa2ef62a5e07dd523e1495')
+sha256sums=('20515597ac986f1727c97bda2c27d88487ddb79cfe330b0b890b5e25330b7d9f')
 
 prepare() {
   if [ $?CXXBASEFLAGS == 1 ]; then


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

2015-04-22 Thread Sergej Pupykin
Date: Wednesday, April 22, 2015 @ 16:17:34
  Author: spupykin
Revision: 131955

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

Added:
  lazarus/repos/community-i686/ChangeLog
(from rev 131954, lazarus/trunk/ChangeLog)
  lazarus/repos/community-i686/PKGBUILD
(from rev 131954, lazarus/trunk/PKGBUILD)
  lazarus/repos/community-i686/lazarus-ide.install
(from rev 131954, lazarus/trunk/lazarus-ide.install)
  lazarus/repos/community-i686/lazcontrols2.diff
(from rev 131954, lazarus/trunk/lazcontrols2.diff)
  lazarus/repos/community-x86_64/ChangeLog
(from rev 131954, lazarus/trunk/ChangeLog)
  lazarus/repos/community-x86_64/PKGBUILD
(from rev 131954, lazarus/trunk/PKGBUILD)
  lazarus/repos/community-x86_64/lazarus-ide.install
(from rev 131954, lazarus/trunk/lazarus-ide.install)
  lazarus/repos/community-x86_64/lazcontrols2.diff
(from rev 131954, lazarus/trunk/lazcontrols2.diff)
Deleted:
  lazarus/repos/community-i686/ChangeLog
  lazarus/repos/community-i686/PKGBUILD
  lazarus/repos/community-i686/lazarus-ide.install
  lazarus/repos/community-i686/lazcontrols2.diff
  lazarus/repos/community-x86_64/ChangeLog
  lazarus/repos/community-x86_64/PKGBUILD
  lazarus/repos/community-x86_64/lazarus-ide.install
  lazarus/repos/community-x86_64/lazcontrols2.diff

--+
 /ChangeLog   |   36 
 /PKGBUILD|  260 +
 /lazarus-ide.install |   68 
 /lazcontrols2.diff   |   92 +++
 community-i686/ChangeLog |   18 --
 community-i686/PKGBUILD  |  131 
 community-i686/lazarus-ide.install   |   34 
 community-i686/lazcontrols2.diff |   46 -
 community-x86_64/ChangeLog   |   18 --
 community-x86_64/PKGBUILD|  131 
 community-x86_64/lazarus-ide.install |   34 
 community-x86_64/lazcontrols2.diff   |   46 -
 12 files changed, 456 insertions(+), 458 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2015-04-22 14:17:06 UTC (rev 131954)
+++ community-i686/ChangeLog2015-04-22 14:17:34 UTC (rev 131955)
@@ -1,18 +0,0 @@
-2012-05-15  BlackIkeEagle
-   * fix lazcontrols failure
- see: http://doublecmd.sourceforge.net/mantisbt/view.php?id=347
-   * add compiled files again
-
-2012-05-08  BlackIkeEagle
-   * fix FS#29807
-   * should not have removed Makefiles
-
-2012-04-30  BlackIkeEagle
-   * split pkgbuild
-   * lazarus (can be used for compiling)
-   * lazarus-qt (qt ide)
-   * lazarus-gtk (gtk ide)
-
-2008-01-21  JJDaNiMoTh  jjdanimoth@gmail.com
-
-* PKGBUILD: moved man pages to /usr/share

Copied: lazarus/repos/community-i686/ChangeLog (from rev 131954, 
lazarus/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2015-04-22 14:17:34 UTC (rev 131955)
@@ -0,0 +1,18 @@
+2012-05-15  BlackIkeEagle
+   * fix lazcontrols failure
+ see: http://doublecmd.sourceforge.net/mantisbt/view.php?id=347
+   * add compiled files again
+
+2012-05-08  BlackIkeEagle
+   * fix FS#29807
+   * should not have removed Makefiles
+
+2012-04-30  BlackIkeEagle
+   * split pkgbuild
+   * lazarus (can be used for compiling)
+   * lazarus-qt (qt ide)
+   * lazarus-gtk (gtk ide)
+
+2008-01-21  JJDaNiMoTh  jjdanimoth@gmail.com
+
+* PKGBUILD: moved man pages to /usr/share

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-22 14:17:06 UTC (rev 131954)
+++ community-i686/PKGBUILD 2015-04-22 14:17:34 UTC (rev 131955)
@@ -1,131 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Jens Adam (byte/jra) j_a...@web.de
-# Contributor: BlackIkeEagle ike DOT devolder AT gmail DOT com
-
-pkgbase=lazarus
-pkgname=('lazarus' 'lazarus-gtk2' 'lazarus-qt')
-pkgver=1.2.6
-_pkgsubver=0
-pkgrel=1
-url='http://www.lazarus.freepascal.org/'
-license=('GPL2' 'MPL' 'custom:modifiedLGPL')
-arch=('i686' 'x86_64')
-makedepends=('fpc' 'fpc-src' 'gtk2' 'qt4pas' 'rsync')
-options=('!emptydirs' '!makeflags')
-source=(http://downloads.sourceforge.net/project/lazarus/Lazarus%20Zip%20_%20GZip/Lazarus%20$pkgver/lazarus-$pkgver-${_pkgsubver}.tar.gz;
-   'lazcontrols2.diff')
-md5sums=('caa1ee35266ea5e930af064e7efb550c'
- '288bca6ad5ade79deec34c3602d9')
-
-build() {
-  cd $srcdir/${pkgbase}
-
-  # build gtk2 ide
-  make FPC=/usr/bin/fpc LCL_PLATFORM=gtk2 clean bigide
-  # move gtk binaries
-  mv lazarus lazarus-gtk2
-  mv startlazarus startlazarus-gtk2
-
-  # build qt ide
-  make FPC=/usr/bin/fpc LCL_PLATFORM=qt bigide
-  # move qt binaries
-  mv 

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

2015-04-22 Thread Alexander Rødseth
Date: Wednesday, April 22, 2015 @ 14:46:07
  Author: arodseth
Revision: 131940

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

Added:
  powerdns/repos/community-staging-i686/
  powerdns/repos/community-staging-i686/PKGBUILD
(from rev 131939, powerdns/trunk/PKGBUILD)
  powerdns/repos/community-staging-i686/powerdns.install
(from rev 131939, powerdns/trunk/powerdns.install)
  powerdns/repos/community-staging-i686/powerdns.service
(from rev 131939, powerdns/trunk/powerdns.service)
  powerdns/repos/community-staging-x86_64/
  powerdns/repos/community-staging-x86_64/PKGBUILD
(from rev 131939, powerdns/trunk/PKGBUILD)
  powerdns/repos/community-staging-x86_64/powerdns.install
(from rev 131939, powerdns/trunk/powerdns.install)
  powerdns/repos/community-staging-x86_64/powerdns.service
(from rev 131939, powerdns/trunk/powerdns.service)

---+
 community-staging-i686/PKGBUILD   |   81 
 community-staging-i686/powerdns.install   |   14 
 community-staging-i686/powerdns.service   |   12 
 community-staging-x86_64/PKGBUILD |   81 
 community-staging-x86_64/powerdns.install |   14 
 community-staging-x86_64/powerdns.service |   12 
 6 files changed, 214 insertions(+)

Copied: powerdns/repos/community-staging-i686/PKGBUILD (from rev 131939, 
powerdns/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 12:46:07 UTC (rev 131940)
@@ -0,0 +1,81 @@
+# $Id: PKGBUILD 101429 2013-11-25 14:11:30Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: Kevin Mihelich ke...@archlinuxarm.org
+
+pkgname=powerdns
+pkgver=3.4.3
+pkgrel=2
+pkgdesc='Authoritative DNS server'
+arch=('x86_64' 'i686')
+url='http://www.powerdns.com/'
+license=('GPL')
+depends=('boost-libs' 'gcc-libs' 'sqlite' 'lua')
+makedepends=('boost' 'setconf' 'libmariadbclient' 'postgresql-libs' 'lua'
+ 'libldap' 'sqlite')
+optdepends=('libmariadbclient: MariaDB/MySQL backend'
+'postgresql-libs: PostgreSQL backend' 'libldap: LDAP backend')
+options=('!makeflags')
+install=$pkgname.install
+backup=('etc/powerdns/pdns.conf')
+source=(http://downloads.powerdns.com/releases/pdns-$pkgver.tar.bz2;
+$pkgname.service)
+sha256sums=('5cd9a087757066427cd0c348f546cb84b4be4bd5e06c7ce969ec2bc21dbb8ce6'
+'b2358a5951ac944feee15ac03d42ffe9c2a72fa6f57746f77ef8997d54a82040')
+
+prepare() {
+  touch pdns-$pkgver/AUTHORS pdns-$pkgver/NEWS
+
+  # Make changes to pdns.conf, while basing it on pdns.conf-dist
+  cp pdns-$pkgver/pdns/pdns.conf-dist pdns.conf
+
+  # Default settings
+  for keyvalue in \
+allow-recursion=127.0.0.1 \
+cache-ttl=6 \
+chroot=/var/empty \
+config-dir=/etc \
+daemon=yes \
+distributor-threads=3 \
+guardian=yes \
+local-port=53 \
+loglevel=3 \
+module-dir=/usr/lib/powerdns \
+negquery-cache-ttl=60 \
+setgid=nobody \
+setuid=nobody \
+socket-dir=/var/run \
+webserver=no
+  do
+# Future versions of setconf may be able to comment out options as well.
+setconf -a pdns.conf $keyvalue
+  done
+}
+
+build() {
+  cd pdns-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc/powerdns \
+--libexecdir=/usr/lib \
+--libdir=/usr/lib \
+--mandir=/usr/share/man \
+--with-modules='' \
+--with-dynmodules=ldap pipe gmysql gpgsql gsqlite3 geo bind \
+--docdir=/usr/share/doc/powerdns \
+--sbindir=/usr/bin \
+--bindir=/usr/bin
+  make
+}
+
+package() {
+  make -C pdns-$pkgver DESTDIR=$pkgdir install
+  install -m644 pdns.conf $pkgdir/etc/powerdns/
+  install -Dm644 $pkgname.service \
+$pkgdir/usr/lib/systemd/system/$pkgname.service
+  mv $pkgdir/usr/lib/pdns $pkgdir/usr/lib/powerdns
+  rm -f $pkgdir/etc/powerdns/pdns.conf-dist
+}
+
+# vim:set ts=2 sw=2 et:

Copied: powerdns/repos/community-staging-i686/powerdns.install (from rev 
131939, powerdns/trunk/powerdns.install)
===
--- community-staging-i686/powerdns.install (rev 0)
+++ community-staging-i686/powerdns.install 2015-04-22 12:46:07 UTC (rev 
131940)
@@ -0,0 +1,14 @@
+post_upgrade() {
+  echo
+  echo 'See http://doc.powerdns.com/md/authoritative/upgrading/ for'
+  echo 'information about changes when upgrading.'
+  echo
+  echo 'If upgrading from an older version, you may also need to:'
+  echo 'setconf /etc/powerdns/pdns.conf module-dir=/usr/lib/powerdns'
+  echo
+  echo 'NOTE: pdns.service has been renamed to powerdns.service.'
+  echo '  See FS#44642 for more information.'
+  echo
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 

[arch-commits] Commit in powerdns/trunk (5 files)

2015-04-22 Thread Alexander Rødseth
Date: Wednesday, April 22, 2015 @ 14:45:53
  Author: arodseth
Revision: 131939

upgpkg: powerdns 3.4.3-2

Added:
  powerdns/trunk/powerdns.install
  powerdns/trunk/powerdns.service
(from rev 131938, powerdns/trunk/pdns.service)
Modified:
  powerdns/trunk/PKGBUILD
Deleted:
  powerdns/trunk/pdns.install
  powerdns/trunk/pdns.service

--+
 PKGBUILD |   23 +--
 pdns.install |   11 ---
 pdns.service |   12 
 powerdns.install |   14 ++
 powerdns.service |   12 
 5 files changed, 39 insertions(+), 33 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 11:18:28 UTC (rev 131938)
+++ PKGBUILD2015-04-22 12:45:53 UTC (rev 131939)
@@ -5,18 +5,21 @@
 
 pkgname=powerdns
 pkgver=3.4.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Authoritative DNS server'
 arch=('x86_64' 'i686')
 url='http://www.powerdns.com/'
 license=('GPL')
-depends=('boost-libs' 'gcc-libs' 'postgresql-libs' 'libmariadbclient' 'sqlite' 
'libldap' 'lua')
-makedepends=('boost' 'setconf')
+depends=('boost-libs' 'gcc-libs' 'sqlite' 'lua')
+makedepends=('boost' 'setconf' 'libmariadbclient' 'postgresql-libs' 'lua'
+ 'libldap' 'sqlite')
+optdepends=('libmariadbclient: MariaDB/MySQL backend'
+'postgresql-libs: PostgreSQL backend' 'libldap: LDAP backend')
 options=('!makeflags')
-install='pdns.install'
+install=$pkgname.install
 backup=('etc/powerdns/pdns.conf')
 source=(http://downloads.powerdns.com/releases/pdns-$pkgver.tar.bz2;
-'pdns.service')
+$pkgname.service)
 sha256sums=('5cd9a087757066427cd0c348f546cb84b4be4bd5e06c7ce969ec2bc21dbb8ce6'
 'b2358a5951ac944feee15ac03d42ffe9c2a72fa6f57746f77ef8997d54a82040')
 
@@ -26,8 +29,7 @@
   # Make changes to pdns.conf, while basing it on pdns.conf-dist
   cp pdns-$pkgver/pdns/pdns.conf-dist pdns.conf
 
-  # Setting the default configuration options.
-  # Future versions of setconf may be able to comment out options.
+  # Default settings
   for keyvalue in \
 allow-recursion=127.0.0.1 \
 cache-ttl=6 \
@@ -45,6 +47,7 @@
 socket-dir=/var/run \
 webserver=no
   do
+# Future versions of setconf may be able to comment out options as well.
 setconf -a pdns.conf $keyvalue
   done
 }
@@ -69,10 +72,10 @@
 package() {
   make -C pdns-$pkgver DESTDIR=$pkgdir install
   install -m644 pdns.conf $pkgdir/etc/powerdns/
-  install -Dm644 pdns.service \
-$pkgdir/usr/lib/systemd/system/pdns.service
+  install -Dm644 $pkgname.service \
+$pkgdir/usr/lib/systemd/system/$pkgname.service
+  mv $pkgdir/usr/lib/pdns $pkgdir/usr/lib/powerdns
   rm -f $pkgdir/etc/powerdns/pdns.conf-dist
-  mv $pkgdir/usr/lib/pdns $pkgdir/usr/lib/powerdns
 }
 
 # vim:set ts=2 sw=2 et:

Deleted: pdns.install
===
--- pdns.install2015-04-22 11:18:28 UTC (rev 131938)
+++ pdns.install2015-04-22 12:45:53 UTC (rev 131939)
@@ -1,11 +0,0 @@
-post_upgrade() {
-  echo
-  echo 'See http://doc.powerdns.com/md/authoritative/upgrading/ for'
-  echo 'information about changes when upgrading.'
-  echo
-  echo 'If upgrading from an older version, you may also need to:'
-  echo 'setconf /etc/powerdns/pdns.conf module-dir=/usr/lib/powerdns'
-  echo
-}
-
-# vim:set ts=2 sw=2 et:

Deleted: pdns.service
===
--- pdns.service2015-04-22 11:18:28 UTC (rev 131938)
+++ pdns.service2015-04-22 12:45:53 UTC (rev 131939)
@@ -1,12 +0,0 @@
-[Unit]
-Description=PowerDNS Authorative Server
-After=syslog.target network.target
-
-[Service]
-Type=forking
-ExecStart=/usr/bin/pdns_server --daemon --guardian=yes
-ExecReload=/usr/bin/pdns_control cycle
-ExecStop=/usr/bin/pdns_control quit
-
-[Install]
-WantedBy=multi-user.target

Added: powerdns.install
===
--- powerdns.install(rev 0)
+++ powerdns.install2015-04-22 12:45:53 UTC (rev 131939)
@@ -0,0 +1,14 @@
+post_upgrade() {
+  echo
+  echo 'See http://doc.powerdns.com/md/authoritative/upgrading/ for'
+  echo 'information about changes when upgrading.'
+  echo
+  echo 'If upgrading from an older version, you may also need to:'
+  echo 'setconf /etc/powerdns/pdns.conf module-dir=/usr/lib/powerdns'
+  echo
+  echo 'NOTE: pdns.service has been renamed to powerdns.service.'
+  echo '  See FS#44642 for more information.'
+  echo
+}
+
+# vim:set ts=2 sw=2 et:

Copied: powerdns/trunk/powerdns.service (from rev 131938, 
powerdns/trunk/pdns.service)
===
--- powerdns.service(rev 0)
+++ powerdns.service2015-04-22 12:45:53 UTC (rev 131939)
@@ -0,0 +1,12 @@
+[Unit]
+Description=PowerDNS Authorative Server
+After=syslog.target network.target
+
+[Service]
+Type=forking

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

2015-04-22 Thread Alexander Rødseth
Date: Wednesday, April 22, 2015 @ 15:08:17
  Author: arodseth
Revision: 131946

archrelease: copy trunk to community-any

Added:
  python2-memcached/repos/community-any/LICENSE
(from rev 131945, python2-memcached/trunk/LICENSE)
  python2-memcached/repos/community-any/PKGBUILD
(from rev 131945, python2-memcached/trunk/PKGBUILD)
Deleted:
  python2-memcached/repos/community-any/LICENSE
  python2-memcached/repos/community-any/PKGBUILD

--+
 LICENSE  |  122 ++---
 PKGBUILD |   77 ++
 2 files changed, 98 insertions(+), 101 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2015-04-22 13:08:10 UTC (rev 131945)
+++ LICENSE 2015-04-22 13:08:17 UTC (rev 131946)
@@ -1,61 +0,0 @@
-IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY.
-
-BY CLICKING ON ACCEPT WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR
-OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO
-THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT.
-
-1. This LICENSE AGREEMENT is between the Corporation for National Research
-Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191
-(CNRI), and the Individual or Organization (Licensee) accessing and
-otherwise using Python 1.6, beta 1 software in source or binary form and its
-associated documentation, as released at the www.python.org Internet site on
-August 4, 2000 (Python 1.6b1).
-
-2. Subject to the terms and conditions of this License Agreement, CNRI
-hereby grants Licensee a non-exclusive, royalty-free, world-wide license to
-reproduce, analyze, test, perform and/or display publicly, prepare derivative
-works, distribute, and otherwise use Python 1.6b1 alone or in any derivative
-version, provided, however, that CNRIs License Agreement is retained in Python
-1.6b1, alone or in any derivative version prepared by Licensee.
-
-Alternately, in lieu of CNRIs License Agreement, Licensee may substitute the
-following text (omitting the quotes): Python 1.6, beta 1, is made available
-subject to the terms and conditions in CNRIs License Agreement. This Agreement
-may be located on the Internet using the following unique, persistent
-identifier (known as a handle): 1895.22/1011. This Agreement may also be
-obtained from a proxy server on the Internet using the
-URL:http://hdl.handle.net/1895.22/1011;.
-
-3. In the event Licensee prepares a derivative work that is based on or
-incorporates Python 1.6b1or any part thereof, and wants to make the derivative
-work available to the public as provided herein, then Licensee hereby agrees to
-indicate in any such work the nature of the modifications made to Python
-1.6b1.
-
-4. CNRI is making Python 1.6b1 available to Licensee on an AS IS basis.
-CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF
-EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR
-WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE
-USE OF PYTHON 1.6b1WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
-
-5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE
-FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF
-USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, OR ANY DERIVATIVE THEREOF, EVEN
-IF ADVISED OF THE POSSIBILITY THEREOF.
-
-6. This License Agreement will automatically terminate upon a material
-breach of its terms and conditions.
-
-7. This License Agreement shall be governed by and interpreted in all
-respects by the law of the State of Virginia, excluding conflict of law
-provisions. Nothing in this License Agreement shall be deemed to create any
-relationship of agency, partnership, or joint venture between CNRI and
-Licensee. This License Agreement does not grant permission to use CNRI
-trademarks or trade name in a trademark sense to endorse or promote products or
-services of Licensee, or any third party.
-
-8. By clicking on the ACCEPT button where indicated, or by copying,
-installing or otherwise using Python 1.6b1, Licensee agrees to be bound by the
-terms and conditions of this License Agreement.
-
-ACCEPT
\ No newline at end of file

Copied: python2-memcached/repos/community-any/LICENSE (from rev 131945, 
python2-memcached/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2015-04-22 13:08:17 UTC (rev 131946)
@@ -0,0 +1,61 @@
+IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY.
+
+BY CLICKING ON ACCEPT WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR
+OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO
+THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT.
+
+1. This LICENSE AGREEMENT is between the Corporation for National Research
+Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191

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

2015-04-22 Thread Alexander Rødseth
Date: Wednesday, April 22, 2015 @ 15:08:10
  Author: arodseth
Revision: 131945

upgpkg: python2-memcached 1.54-1

Modified:
  python2-memcached/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 12:58:35 UTC (rev 131944)
+++ PKGBUILD2015-04-22 13:08:10 UTC (rev 131945)
@@ -6,33 +6,30 @@
 
 pkgname=python2-memcached
 pkgdesc='Python interface to memcached'
-pkgver=1.53
-pkgrel=3
+pkgver=1.54
+pkgrel=1
+url='https://github.com/linsomniac/python-memcached'
+arch=('any')
+license=('PSF')
 depends=('python2')
-url='https://bugs.launchpad.net/python-memcached'
-arch=('any')
-license=('Python')
-makedepends=('python2-setuptools')
-source=(ftp://ftp.tummy.com/pub/python-memcached/python-memcached-$pkgver.tar.gz;
-'LICENSE')
-sha256sums=('af04ea031b271a54f085166773e028fe053fc1d9a58cd8b3c3a57945990bfb48'
-'9f3f9438250f8aa5bdcbb0dee700f237932fbda985646c61c85d2a25a2510f36')
+makedepends=('python2-setuptools' 'git')
+source=(git://github.com/linsomniac/python-memcached#tag=release-$pkgver)
+md5sums=('SKIP')
 
 prepare() {
-  cd $srcdir/python-memcached-$pkgver
+  cd 'python-memcached'
 
-  sed -i 's:/usr/bin/env python:#/usr/bin/python2:' memcache.py
+  sed -i 's:/env python:/python2:' memcache.py
 }
 
 package() {
-  cd $srcdir/python-memcached-$pkgver
+  cd 'python-memcached'
 
   python2 setup.py install --root=$pkgdir --optimize=1
-  install -Dm644 $srcdir/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
 check() {
-  cd $srcdir/python-memcached-$pkgver
+  cd 'python-memcached'
 
   python2 setup.py check
 }


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

2015-04-22 Thread Alexander Rødseth
Date: Wednesday, April 22, 2015 @ 15:45:15
  Author: arodseth
Revision: 131952

upgpkg: bomberclone 0.11.9-4

Modified:
  bomberclone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 13:34:30 UTC (rev 131951)
+++ PKGBUILD2015-04-22 13:45:15 UTC (rev 131952)
@@ -1,5 +1,6 @@
 # $Id$
 # Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: duck d...@vmail.me
 # Contributor: Lukas Fleischer archlinux at cryptocrack dot de
 # Contributor: arjan ar...@archlinux.org
 # Contributor: Aurelien Foret orel...@chez.com
@@ -6,17 +7,19 @@
 
 pkgname=bomberclone
 pkgver=0.11.9
-pkgrel=3
+pkgrel=4
 pkgdesc='Clone of the game AtomicBomberMan'
 arch=('x86_64' 'i686')
-url=http://www.bomberclone.de/;
+url='http://www.bomberclone.de/'
 license=('GPL')
 depends=('sdl_mixer' 'sdl_image')
 makedepends=('gendesk')
 
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
-'bomberclone-0.11.9-build-fix.patch')
+'bomberclone-0.11.9-build-fix.patch'
+
'http://sourceforge.net/p/bomberclone/patches/9/attachment/snprintf.diff')
 sha256sums=('71eb2788f95c136fd3eecaee15d05a80dea07221b5b3530dc869e433e02ff68d'
-'ee8bbff24f261951379ca55c510df04deb5a0fd17c2c3149b63bbcaf1cfb0549')
+'ee8bbff24f261951379ca55c510df04deb5a0fd17c2c3149b63bbcaf1cfb0549'
+'3df79e4c87f94d3a2065583fd92a5129e57f35bfb949c92870ed32968acfe54e')
 
 prepare() {
   gendesk -f -n --pkgname $pkgname --pkgdesc $pkgdesc --name 'BomberClone'
@@ -28,6 +31,9 @@
   # add build fix extracted from upstream CVS (fixes FS#26942)
   patch -p0 -i ../bomberclone-0.11.9-build-fix.patch
 
+  # buffer overflow patch, ref FS#44387
+  patch -p0 -i ../snprintf.diff
+
   ./configure --prefix=/usr
   make CFLAGS=-lm -O2 `pkg-config sdl --cflags` $CFLAGS
 }


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

2015-04-22 Thread Alexander Rødseth
Date: Wednesday, April 22, 2015 @ 15:45:30
  Author: arodseth
Revision: 131953

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

Added:
  bomberclone/repos/community-i686/PKGBUILD
(from rev 131952, bomberclone/trunk/PKGBUILD)
  bomberclone/repos/community-i686/bomberclone-0.11.9-build-fix.patch
(from rev 131952, bomberclone/trunk/bomberclone-0.11.9-build-fix.patch)
  bomberclone/repos/community-x86_64/PKGBUILD
(from rev 131952, bomberclone/trunk/PKGBUILD)
  bomberclone/repos/community-x86_64/bomberclone-0.11.9-build-fix.patch
(from rev 131952, bomberclone/trunk/bomberclone-0.11.9-build-fix.patch)
Deleted:
  bomberclone/repos/community-i686/PKGBUILD
  bomberclone/repos/community-i686/bomberclone-0.11.9-build-fix.patch
  bomberclone/repos/community-x86_64/PKGBUILD
  bomberclone/repos/community-x86_64/bomberclone-0.11.9-build-fix.patch

-+
 /PKGBUILD   |  106 ++
 /bomberclone-0.11.9-build-fix.patch |  888 ++
 community-i686/PKGBUILD |   47 
 community-i686/bomberclone-0.11.9-build-fix.patch   |  444 -
 community-x86_64/PKGBUILD   |   47 
 community-x86_64/bomberclone-0.11.9-build-fix.patch |  444 -
 6 files changed, 994 insertions(+), 982 deletions(-)

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


[arch-commits] Commit in (arj)

2015-04-22 Thread Alexander Rødseth
Date: Wednesday, April 22, 2015 @ 15:34:30
  Author: arodseth
Revision: 131951

Moving to AUR

See https://lists.archlinux.org/pipermail/aur-general/2015-April/030503.html

Deleted:
  arj/


[arch-commits] Commit in seabios/repos (11 files)

2015-04-22 Thread Anatol Pomozov
Date: Wednesday, April 22, 2015 @ 17:52:44
  Author: anatolik
Revision: 237903

archrelease: copy trunk to testing-any

Added:
  seabios/repos/testing-any/
  seabios/repos/testing-any/PKGBUILD
(from rev 237902, seabios/trunk/PKGBUILD)
  seabios/repos/testing-any/config.coreboot
(from rev 237902, seabios/trunk/config.coreboot)
  seabios/repos/testing-any/config.csm
(from rev 237902, seabios/trunk/config.csm)
  seabios/repos/testing-any/config.seabios-128k
(from rev 237902, seabios/trunk/config.seabios-128k)
  seabios/repos/testing-any/config.seabios-256k
(from rev 237902, seabios/trunk/config.seabios-256k)
  seabios/repos/testing-any/config.vga.cirrus
(from rev 237902, seabios/trunk/config.vga.cirrus)
  seabios/repos/testing-any/config.vga.isavga
(from rev 237902, seabios/trunk/config.vga.isavga)
  seabios/repos/testing-any/config.vga.qxl
(from rev 237902, seabios/trunk/config.vga.qxl)
  seabios/repos/testing-any/config.vga.stdvga
(from rev 237902, seabios/trunk/config.vga.stdvga)
  seabios/repos/testing-any/config.vga.vmware
(from rev 237902, seabios/trunk/config.vga.vmware)

-+
 PKGBUILD|   76 ++
 config.coreboot |2 +
 config.csm  |2 +
 config.seabios-128k |7 
 config.seabios-256k |3 +
 config.vga.cirrus   |3 +
 config.vga.isavga   |3 +
 config.vga.qxl  |6 +++
 config.vga.stdvga   |3 +
 config.vga.vmware   |6 +++
 10 files changed, 111 insertions(+)

Copied: seabios/repos/testing-any/PKGBUILD (from rev 237902, 
seabios/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2015-04-22 15:52:44 UTC (rev 237903)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=seabios
+pkgver=1.8.1
+pkgrel=1
+pkgdesc=A 16-bit x86 bios
+arch=('any')
+url=http://www.coreboot.org/SeaBIOS;
+license=('GPL3' 'LGPL3')
+makedepends=('iasl' 'python2' 'inetutils')
+options=('!makeflags' '!strip')
+source=(http://code.coreboot.org/p/seabios/downloads/get/${pkgname}-${pkgver}.tar.gz
+config.coreboot
+config.seabios-128k
+config.seabios-256k
+config.vga.isavga
+config.vga.stdvga
+config.csm
+config.vga.cirrus
+config.vga.qxl
+config.vga.vmware)
+sha1sums=('448699300fdce352a699aa7b799eb37a33999694'
+  '5f2adb09c9006def1719b8cbd4792f14a7c7f7c9'
+  'ca47a5bcab73dca8e6ff0d9c51f3f63fd2d2fd98'
+  '05b912a291994226049103cbe6754976cc03532d'
+  'd56482f6ee0bf9633c551b10e99e24c74d9ece1e'
+  '54d4edf6eccf30883aedca348b9d2f125502fcdb'
+  '590739c1d5dc6cb63bdf311ee1cfbcde6c0ccc0f'
+  '84a44c04e74a09affae0d1a6e50800d10997108f'
+  '5a1316a0081f91acc300f57372de18fa9c67415e'
+  '5b017b16aec445df873618aaebd154aa97107148')
+
+# build routine from fedora
+build_bios() {
+make clean distclean
+cp $1 .config
+make oldnoconfig V=1
+
+make V=1 $4
+
+cp out/$2 binaries/$3
+}
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  rm -rf binaries
+  sed -i 's/python/python2/g' Makefile
+  mkdir binaries
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  # seabios
+  build_bios ${srcdir}/config.csm Csm16.bin bios-csm.bin
+  build_bios ${srcdir}/config.coreboot bios.bin.elf bios-coreboot.bin
+  build_bios ${srcdir}/config.seabios-128k bios.bin bios.bin
+  build_bios ${srcdir}/config.seabios-256k bios.bin bios-256k.bin
+  cp out/src/fw/*dsdt*.aml binaries
+  # seavgabios
+  for config in 
${srcdir}/{config.vga.isavga,config.vga.stdvga,config.vga.cirrus,config.vga.qxl,config.vga.vmware};
 do
+name=${config#*config.vga.}
+build_bios ${config} vgabios.bin vgabios-${name}.bin out/vgabios.bin
+  done
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm644 binaries/bios.bin ${pkgdir}/usr/share/qemu/bios.bin
+  install -Dm644 binaries/bios-256k.bin 
${pkgdir}/usr/share/qemu/bios-256k.bin
+  install -Dm644 binaries/bios-csm.bin ${pkgdir}/usr/share/qemu/bios-csm.bin
+  install -Dm644 binaries/bios-coreboot.bin 
${pkgdir}/usr/share/qemu/bios-coreboot.bin
+  install -Dm644 binaries/*.aml ${pkgdir}/usr/share/qemu
+  install -Dm644 binaries/vgabios*.bin ${pkgdir}/usr/share/qemu
+}
+

Copied: seabios/repos/testing-any/config.coreboot (from rev 237902, 
seabios/trunk/config.coreboot)
===
--- testing-any/config.coreboot (rev 0)
+++ testing-any/config.coreboot 2015-04-22 15:52:44 UTC (rev 237903)
@@ -0,0 +1,2 @@
+CONFIG_QEMU_HARDWARE=y
+CONFIG_COREBOOT=y

Copied: seabios/repos/testing-any/config.csm (from rev 237902, 
seabios/trunk/config.csm)
===
--- testing-any/config.csm  (rev 0)
+++ 

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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 17:14:57
  Author: svenstaro
Revision: 131956

upgpkg: supertuxkart 0.9-1

upstream release 0.9

Modified:
  supertuxkart/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 14:17:34 UTC (rev 131955)
+++ PKGBUILD2015-04-22 15:14:57 UTC (rev 131956)
@@ -5,8 +5,8 @@
 # Contributor: rabyte rabyte__gmail
 
 pkgname=supertuxkart
-pkgver=0.9rc1
-pkgrel=2
+pkgver=0.9
+pkgrel=1
 pkgdesc='Kart racing game featuring Tux and his friends'
 arch=('i686' 'x86_64')
 url='http://supertuxkart.sourceforge.net/'
@@ -13,9 +13,9 @@
 license=('GPL2')
 depends=('openal' 'libvorbis' 'fribidi' 'curl' 'bluez-libs' 'libxrandr' 'glu')
 makedepends=('cmake' 'subversion' 'mesa' 'imagemagick' 'setconf' 'mesa-libgl')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver-src.tar.7z;)
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver-src.tar.xz;)
 install=supertuxkart.install
-md5sums=('4d8ee6f7093f819bafc0be95a75f05b2')
+md5sums=('ae07569ab02c88ca4d49017df7731923')
 
 build() {
   cd ${srcdir}/supertuxkart-${pkgver}


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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 17:15:15
  Author: svenstaro
Revision: 131957

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

Added:
  supertuxkart/repos/community-i686/PKGBUILD
(from rev 131956, supertuxkart/trunk/PKGBUILD)
  supertuxkart/repos/community-i686/supertuxkart.install
(from rev 131956, supertuxkart/trunk/supertuxkart.install)
  supertuxkart/repos/community-x86_64/PKGBUILD
(from rev 131956, supertuxkart/trunk/PKGBUILD)
  supertuxkart/repos/community-x86_64/supertuxkart.install
(from rev 131956, supertuxkart/trunk/supertuxkart.install)
Deleted:
  supertuxkart/repos/community-i686/PKGBUILD
  supertuxkart/repos/community-i686/supertuxkart.install
  supertuxkart/repos/community-x86_64/PKGBUILD
  supertuxkart/repos/community-x86_64/supertuxkart.install

---+
 /PKGBUILD |   94 
 /supertuxkart.install |   24 
 community-i686/PKGBUILD   |   47 
 community-i686/supertuxkart.install   |   12 
 community-x86_64/PKGBUILD |   47 
 community-x86_64/supertuxkart.install |   12 
 6 files changed, 118 insertions(+), 118 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-22 15:14:57 UTC (rev 131956)
+++ community-i686/PKGBUILD 2015-04-22 15:15:15 UTC (rev 131957)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Daenyth Daenyth+Arch [AT] gmail [DOT] com
-# Contributor: Allan McRae al...@archlinux.org
-# Contributor: rabyte rabyte__gmail
-
-pkgname=supertuxkart
-pkgver=0.9rc1
-pkgrel=2
-pkgdesc='Kart racing game featuring Tux and his friends'
-arch=('i686' 'x86_64')
-url='http://supertuxkart.sourceforge.net/'
-license=('GPL2')
-depends=('openal' 'libvorbis' 'fribidi' 'curl' 'bluez-libs' 'libxrandr' 'glu')
-makedepends=('cmake' 'subversion' 'mesa' 'imagemagick' 'setconf' 'mesa-libgl')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver-src.tar.7z;)
-install=supertuxkart.install
-md5sums=('4d8ee6f7093f819bafc0be95a75f05b2')
-
-build() {
-  cd ${srcdir}/supertuxkart-${pkgver}
-
-  _fn=data/${pkgname}.desktop
-  setconf $_fn Exec $pkgname
-  setconf $_fn TryExec $pkgname
-  setconf $_fn Icon $pkgname_128
-
-  [[ -d build ]]  rm -r build
-  mkdir build  cd build
-
-  cmake .. \
--DIRRLICHT_DIR=$srcdir/irrlicht \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_CXX_FLAGS=-lpthread -lm -ldl $CXXFLAGS
-
-  make
-}
-
-package() {
-  cd ${srcdir}/supertuxkart-${pkgver}
-
-  cd build
-  make DESTDIR=${pkgdir} install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: supertuxkart/repos/community-i686/PKGBUILD (from rev 131956, 
supertuxkart/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-22 15:15:15 UTC (rev 131957)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Daenyth Daenyth+Arch [AT] gmail [DOT] com
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: rabyte rabyte__gmail
+
+pkgname=supertuxkart
+pkgver=0.9
+pkgrel=1
+pkgdesc='Kart racing game featuring Tux and his friends'
+arch=('i686' 'x86_64')
+url='http://supertuxkart.sourceforge.net/'
+license=('GPL2')
+depends=('openal' 'libvorbis' 'fribidi' 'curl' 'bluez-libs' 'libxrandr' 'glu')
+makedepends=('cmake' 'subversion' 'mesa' 'imagemagick' 'setconf' 'mesa-libgl')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver-src.tar.xz;)
+install=supertuxkart.install
+md5sums=('ae07569ab02c88ca4d49017df7731923')
+
+build() {
+  cd ${srcdir}/supertuxkart-${pkgver}
+
+  _fn=data/${pkgname}.desktop
+  setconf $_fn Exec $pkgname
+  setconf $_fn TryExec $pkgname
+  setconf $_fn Icon $pkgname_128
+
+  [[ -d build ]]  rm -r build
+  mkdir build  cd build
+
+  cmake .. \
+-DIRRLICHT_DIR=$srcdir/irrlicht \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_CXX_FLAGS=-lpthread -lm -ldl $CXXFLAGS
+
+  make
+}
+
+package() {
+  cd ${srcdir}/supertuxkart-${pkgver}
+
+  cd build
+  make DESTDIR=${pkgdir} install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/supertuxkart.install
===
--- community-i686/supertuxkart.install 2015-04-22 15:14:57 UTC (rev 131956)
+++ community-i686/supertuxkart.install 2015-04-22 15:15:15 UTC (rev 131957)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: supertuxkart/repos/community-i686/supertuxkart.install (from rev 
131956, supertuxkart/trunk/supertuxkart.install)

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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 17:31:38
  Author: svenstaro
Revision: 131959

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-22 15:31:33 UTC (rev 131958)
+++ PKGBUILD2015-04-22 15:31:38 UTC (rev 131959)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Alexander Rødseth rods...@gmail.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Dan Serban
-# Contributor: Richard Murri
-
-pkgname=('python-werkzeug' 'python2-werkzeug')
-pkgver=0.10
-pkgrel=1
-pkgdesc='Swiss Army knife of Python web development'
-url='http://werkzeug.pocoo.org/'
-arch=('any')
-license=('custom:BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(http://pypi.python.org/packages/source/W/Werkzeug/Werkzeug-$pkgver.tar.gz;)
-sha256sums=('9a97a6fcf87390172748da9e5250710b352dff18e979db925d276112cdcfa7ac')
-
-prepare() {
-  cp -r Werkzeug-$pkgver python-werkzeug-$pkgver
-  cp -r Werkzeug-$pkgver python2-werkzeug-$pkgver
-}
-
-build_python-werkzeug() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-build_python2-werkzeug() {
-  cd $pkgname-$pkgver
-
-  python2 setup.py build
-}
-
-#check() {
-#  cd python-werkzeug-$pkgver
-#  python setup.py test || true
-#
-#  cd python-werkzeug-$pkgver
-#  p3ython2 setup.py test || true
-#}
-
-package_python-werkzeug() {
-  depends+=('python')
-  cd $pkgname-$pkgver
-
-  python setup.py install --root=$pkgdir --optimize=1
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-werkzeug() {
-  depends+=('python2')
-  cd $pkgname-$pkgver
-
-  python2 setup.py install --root=$pkgdir --optimize=1
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-werkzeug/repos/community-any/PKGBUILD (from rev 131958, 
python-werkzeug/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-22 15:31:38 UTC (rev 131959)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Alexander Rødseth rods...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Dan Serban
+# Contributor: Richard Murri
+
+pkgname=('python-werkzeug' 'python2-werkzeug')
+pkgver=0.10.4
+pkgrel=1
+pkgdesc='Swiss Army knife of Python web development'
+url='http://werkzeug.pocoo.org/'
+arch=('any')
+license=('custom:BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/W/Werkzeug/Werkzeug-$pkgver.tar.gz;)
+sha256sums=('9d2771e4c89be127bc4bac056ab7ceaf0e0064c723d6b6e195739c3af4fd5c1d')
+
+prepare() {
+  cp -r Werkzeug-$pkgver python-werkzeug-$pkgver
+  cp -r Werkzeug-$pkgver python2-werkzeug-$pkgver
+}
+
+build_python-werkzeug() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+build_python2-werkzeug() {
+  cd $pkgname-$pkgver
+
+  python2 setup.py build
+}
+
+#check() {
+#  cd python-werkzeug-$pkgver
+#  python setup.py test || true
+#
+#  cd python-werkzeug-$pkgver
+#  p3ython2 setup.py test || true
+#}
+
+package_python-werkzeug() {
+  depends+=('python')
+  cd $pkgname-$pkgver
+
+  python setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-werkzeug() {
+  depends+=('python2')
+  cd $pkgname-$pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 17:31:33
  Author: svenstaro
Revision: 131958

upgpkg: python-werkzeug 0.10.4-1

upstream release 0.10.4

Modified:
  python-werkzeug/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 15:15:15 UTC (rev 131957)
+++ PKGBUILD2015-04-22 15:31:33 UTC (rev 131958)
@@ -6,7 +6,7 @@
 # Contributor: Richard Murri
 
 pkgname=('python-werkzeug' 'python2-werkzeug')
-pkgver=0.10
+pkgver=0.10.4
 pkgrel=1
 pkgdesc='Swiss Army knife of Python web development'
 url='http://werkzeug.pocoo.org/'
@@ -14,7 +14,7 @@
 license=('custom:BSD')
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=(http://pypi.python.org/packages/source/W/Werkzeug/Werkzeug-$pkgver.tar.gz;)
-sha256sums=('9a97a6fcf87390172748da9e5250710b352dff18e979db925d276112cdcfa7ac')
+sha256sums=('9d2771e4c89be127bc4bac056ab7ceaf0e0064c723d6b6e195739c3af4fd5c1d')
 
 prepare() {
   cp -r Werkzeug-$pkgver python-werkzeug-$pkgver


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

2015-04-22 Thread Anatol Pomozov
Date: Wednesday, April 22, 2015 @ 17:51:48
  Author: anatolik
Revision: 237902

upgpkg: seabios 1.8.1-1

Modified:
  seabios/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 15:06:36 UTC (rev 237901)
+++ PKGBUILD2015-04-22 15:51:48 UTC (rev 237902)
@@ -2,8 +2,8 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 
 pkgname=seabios
-pkgver=1.7.5
-pkgrel=2
+pkgver=1.8.1
+pkgrel=1
 pkgdesc=A 16-bit x86 bios
 arch=('any')
 url=http://www.coreboot.org/SeaBIOS;
@@ -20,7 +20,7 @@
 config.vga.cirrus
 config.vga.qxl
 config.vga.vmware)
-sha1sums=('1ee607f720b848fa7a968741151991b645979f7e'
+sha1sums=('448699300fdce352a699aa7b799eb37a33999694'
   '5f2adb09c9006def1719b8cbd4792f14a7c7f7c9'
   'ca47a5bcab73dca8e6ff0d9c51f3f63fd2d2fd98'
   '05b912a291994226049103cbe6754976cc03532d'


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

2015-04-22 Thread Dave Reisner
Date: Wednesday, April 22, 2015 @ 17:06:36
  Author: dreisner
Revision: 237901

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

Added:
  curl/repos/testing-i686/
  curl/repos/testing-i686/PKGBUILD
(from rev 237900, curl/trunk/PKGBUILD)
  curl/repos/testing-i686/curlbuild.h
(from rev 237900, curl/trunk/curlbuild.h)
  curl/repos/testing-x86_64/
  curl/repos/testing-x86_64/PKGBUILD
(from rev 237900, curl/trunk/PKGBUILD)
  curl/repos/testing-x86_64/curlbuild.h
(from rev 237900, curl/trunk/curlbuild.h)

+
 testing-i686/PKGBUILD  |   65 +++
 testing-i686/curlbuild.h   |9 +
 testing-x86_64/PKGBUILD|   65 +++
 testing-x86_64/curlbuild.h |9 +
 4 files changed, 148 insertions(+)

Copied: curl/repos/testing-i686/PKGBUILD (from rev 237900, curl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-04-22 15:06:36 UTC (rev 237901)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Eric Belanger e...@archlinux.org
+# Contributor: Lucien Immink l.imm...@student.fnt.hvu.nl
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=curl
+pkgver=7.42.0
+pkgrel=1
+pkgdesc=An URL retrieval utility and library
+arch=('i686' 'x86_64')
+url=http://curl.haxx.se;
+license=('MIT')
+depends=('ca-certificates' 'krb5' 'libssh2' 'libidn' 'openssl' 'zlib')
+provides=('libcurl.so')
+options=('strip' 'debug')
+source=(http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz{,.asc}
+curlbuild.h)
+md5sums=('e941e7a1f3c06d002152bf775c678b35'
+ 'SKIP'
+ '751bd433ede935c8fae727377625a8ae')
+validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-ldap \
+  --disable-ldaps \
+  --enable-ipv6 \
+  --enable-manual \
+  --enable-versioned-symbols \
+  --enable-threaded-resolver \
+  --with-gssapi \
+  --with-libidn \
+  --with-random=/dev/urandom \
+  --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  local ptrsize=$(cpp '__SIZEOF_POINTER__' | sed '/^#/d')
+  case $ptrsize in
+8) _curlbuild=curlbuild-64.h ;;
+4) _curlbuild=curlbuild-32.h ;;
+*) error unknown pointer size for architecture: %s bytes $ptrsize
+  exit 1
+  ;;
+  esac
+
+  # license
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+
+  # devel
+  mv $pkgdir/usr/include/curl/curlbuild.h 
$pkgdir/usr/include/curl/$_curlbuild
+  install -m644 $srcdir/curlbuild.h $pkgdir/usr/include/curl/curlbuild.h
+}

Copied: curl/repos/testing-i686/curlbuild.h (from rev 237900, 
curl/trunk/curlbuild.h)
===
--- testing-i686/curlbuild.h(rev 0)
+++ testing-i686/curlbuild.h2015-04-22 15:06:36 UTC (rev 237901)
@@ -0,0 +1,9 @@
+#include bits/wordsize.h
+
+#if __WORDSIZE == 32
+#include curlbuild-32.h
+#elif __WORDSIZE == 64
+#include curlbuild-64.h
+#else
+#error Unknown word size
+#endif

Copied: curl/repos/testing-x86_64/PKGBUILD (from rev 237900, 
curl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-04-22 15:06:36 UTC (rev 237901)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Eric Belanger e...@archlinux.org
+# Contributor: Lucien Immink l.imm...@student.fnt.hvu.nl
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=curl
+pkgver=7.42.0
+pkgrel=1
+pkgdesc=An URL retrieval utility and library
+arch=('i686' 'x86_64')
+url=http://curl.haxx.se;
+license=('MIT')
+depends=('ca-certificates' 'krb5' 'libssh2' 'libidn' 'openssl' 'zlib')
+provides=('libcurl.so')
+options=('strip' 'debug')
+source=(http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz{,.asc}
+curlbuild.h)
+md5sums=('e941e7a1f3c06d002152bf775c678b35'
+ 'SKIP'
+ '751bd433ede935c8fae727377625a8ae')
+validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-ldap \
+  --disable-ldaps \
+  --enable-ipv6 \
+  --enable-manual \
+  --enable-versioned-symbols \
+  --enable-threaded-resolver \
+  --with-gssapi \
+  --with-libidn \
+  --with-random=/dev/urandom \
+  

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

2015-04-22 Thread Dave Reisner
Date: Wednesday, April 22, 2015 @ 17:06:14
  Author: dreisner
Revision: 237900

upgpkg: curl 7.42.0-1

Modified:
  curl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 12:00:37 UTC (rev 237899)
+++ PKGBUILD2015-04-22 15:06:14 UTC (rev 237900)
@@ -6,7 +6,7 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=curl
-pkgver=7.41.0
+pkgver=7.42.0
 pkgrel=1
 pkgdesc=An URL retrieval utility and library
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 options=('strip' 'debug')
 source=(http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz{,.asc}
 curlbuild.h)
-md5sums=('7321a0a3012f8eede729b5a44ebef5bd'
+md5sums=('e941e7a1f3c06d002152bf775c678b35'
  'SKIP'
  '751bd433ede935c8fae727377625a8ae')
 validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg


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

2015-04-22 Thread Laurent Carlier
Date: Wednesday, April 22, 2015 @ 08:12:07
  Author: lcarlier
Revision: 131882

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-systemd/repos/multilib-x86_64/PKGBUILD
(from rev 131881, lib32-systemd/trunk/PKGBUILD)
Deleted:
  lib32-systemd/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-22 06:12:01 UTC (rev 131881)
+++ PKGBUILD2015-04-22 06:12:07 UTC (rev 131882)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner dreis...@archlinux.org
-# Maintainer: Tom Gundersen t...@jklm.no
-
-pkgname=lib32-systemd
-_pkgbasename=systemd
-pkgver=218
-pkgrel=1
-pkgdesc=system and service manager (32-bit)
-arch=('x86_64')
-url=http://www.freedesktop.org/wiki/Software/systemd;
-license=('GPL2' 'LGPL2.1' 'MIT')
-depends=('lib32-glib2' 'lib32-libgcrypt' 'lib32-xz' 'lib32-curl' 
'lib32-libcap' 'systemd')
-makedepends=('lib32-gcc-libs' 'gcc-multilib' 'lib32-libidn' 'lib32-acl' 
'intltool' 'gperf')
-source=(http://www.freedesktop.org/software/$_pkgbasename/$_pkgbasename-$pkgver.tar.xz;)
-md5sums=('4e2c511b0a7932d7fc9d79822273aac6')
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  cd ${srcdir}/systemd-${pkgver}
-
-  # LTO currently breaks the build because of libtool failures
-  CFLAGS+=' -fno-lto'
-
-  local timeservers=({0..3}.arch.pool.ntp.org)
-
-  ./configure \
---libexecdir=/usr/lib32 \
---libdir=/usr/lib32 \
---localstatedir=/var \
---sysconfdir=/etc \
---enable-compat-libs \
---disable-audit \
---disable-tests \
---disable-ima \
---disable-kdbus \
---disable-seccomp \
---disable-pam \
---disable-kmod \
---disable-networkd \
---disable-blkid \
---without-python \
---disable-libcryptsetup \
---with-sysvinit-path= \
---with-sysvrcnd-path= \
---with-ntp-servers=${timeservers[*]}
-
-  make
-}
-
-package() {
-  cd ${srcdir}/systemd-${pkgver}
-
-  make DESTDIR=$pkgdir install
-
-  rm -rf ${pkgdir}/{etc,var}
-  rm -rf ${pkgdir}/usr/{bin,include,lib,share}
-
-  install -m755 -d ${pkgdir}/usr/share/licenses
-  ln -s systemd $pkgdir/usr/share/licenses/lib32-systemd
-}

Copied: lib32-systemd/repos/multilib-x86_64/PKGBUILD (from rev 131881, 
lib32-systemd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-22 06:12:07 UTC (rev 131882)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Maintainer: Tom Gundersen t...@jklm.no
+
+pkgname=lib32-systemd
+_pkgbasename=systemd
+pkgver=219
+pkgrel=1
+pkgdesc=system and service manager (32-bit)
+arch=('x86_64')
+url=http://www.freedesktop.org/wiki/Software/systemd;
+license=('GPL2' 'LGPL2.1' 'MIT')
+depends=('lib32-glib2' 'lib32-libgcrypt' 'lib32-xz' 'lib32-curl' 
'lib32-libcap' 'lib32-bzip2' 'systemd')
+makedepends=('lib32-gcc-libs' 'gcc-multilib' 'lib32-libidn' 'lib32-acl' 
'intltool' 'gperf')
+source=(http://www.freedesktop.org/software/$_pkgbasename/$_pkgbasename-$pkgver.tar.xz;)
+md5sums=('e0d6c9a4b4f69f66932d2230298c9a34')
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd ${srcdir}/systemd-${pkgver}
+
+  # LTO currently breaks the build because of libtool failures
+  CFLAGS+=' -fno-lto'
+
+  local timeservers=({0..3}.arch.pool.ntp.org)
+
+  ./configure \
+--libexecdir=/usr/lib32 \
+--libdir=/usr/lib32 \
+--localstatedir=/var \
+--sysconfdir=/etc \
+--enable-compat-libs \
+--disable-audit \
+--disable-tests \
+--disable-ima \
+--disable-kdbus \
+--disable-seccomp \
+--disable-pam \
+--disable-kmod \
+--disable-networkd \
+--disable-blkid \
+--disable-libiptc \
+--without-python \
+--disable-libcryptsetup \
+--with-sysvinit-path= \
+--with-sysvrcnd-path= \
+--with-ntp-servers=${timeservers[*]}
+
+  make
+}
+
+package() {
+  cd ${srcdir}/systemd-${pkgver}
+
+  make DESTDIR=$pkgdir install
+
+  rm -rf ${pkgdir}/{etc,var}
+  rm -rf ${pkgdir}/usr/{bin,include,lib,share}
+
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -s systemd $pkgdir/usr/share/licenses/lib32-systemd
+}


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

2015-04-22 Thread Laurent Carlier
Date: Wednesday, April 22, 2015 @ 08:12:01
  Author: lcarlier
Revision: 131881

upgpkg: lib32-systemd 219-1

upstream update 219

Modified:
  lib32-systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 06:04:08 UTC (rev 131880)
+++ PKGBUILD2015-04-22 06:12:01 UTC (rev 131881)
@@ -4,16 +4,16 @@
 
 pkgname=lib32-systemd
 _pkgbasename=systemd
-pkgver=218
+pkgver=219
 pkgrel=1
 pkgdesc=system and service manager (32-bit)
 arch=('x86_64')
 url=http://www.freedesktop.org/wiki/Software/systemd;
 license=('GPL2' 'LGPL2.1' 'MIT')
-depends=('lib32-glib2' 'lib32-libgcrypt' 'lib32-xz' 'lib32-curl' 
'lib32-libcap' 'systemd')
+depends=('lib32-glib2' 'lib32-libgcrypt' 'lib32-xz' 'lib32-curl' 
'lib32-libcap' 'lib32-bzip2' 'systemd')
 makedepends=('lib32-gcc-libs' 'gcc-multilib' 'lib32-libidn' 'lib32-acl' 
'intltool' 'gperf')
 
source=(http://www.freedesktop.org/software/$_pkgbasename/$_pkgbasename-$pkgver.tar.xz;)
-md5sums=('4e2c511b0a7932d7fc9d79822273aac6')
+md5sums=('e0d6c9a4b4f69f66932d2230298c9a34')
 
 build() {
   export CC=gcc -m32
@@ -42,6 +42,7 @@
 --disable-kmod \
 --disable-networkd \
 --disable-blkid \
+--disable-libiptc \
 --without-python \
 --disable-libcryptsetup \
 --with-sysvinit-path= \


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

2015-04-22 Thread Kyle Keen
Date: Wednesday, April 22, 2015 @ 08:17:32
  Author: kkeen
Revision: 131885

upgpkg: cgal 4.6-2  boost rebuild

Modified:
  cgal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 06:13:28 UTC (rev 131884)
+++ PKGBUILD2015-04-22 06:17:32 UTC (rev 131885)
@@ -4,7 +4,7 @@
 
 pkgname=cgal
 pkgver=4.6
-pkgrel=1
+pkgrel=2
 _pkgid=34705
 pkgdesc=Computational Geometry Algorithms Library
 arch=('i686' 'x86_64')


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

2015-04-22 Thread Kyle Keen
Date: Wednesday, April 22, 2015 @ 08:17:49
  Author: kkeen
Revision: 131886

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

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

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

Copied: cgal/repos/community-staging-i686/PKGBUILD (from rev 131885, 
cgal/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 06:17:49 UTC (rev 131886)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dmitriy Morozov foxcub
+
+pkgname=cgal
+pkgver=4.6
+pkgrel=2
+_pkgid=34705
+pkgdesc=Computational Geometry Algorithms Library
+arch=('i686' 'x86_64')
+url=http://www.cgal.org;
+license=('GPL' 'LGPL')
+source=(http://gforge.inria.fr/frs/download.php/$_pkgid/CGAL-$pkgver.tar.xz)
+depends=('mpfr' 'boost-libs' 'gmp' 'mesa' 'glu')
+optdepends=('qt4: for CGAL_Qt4'
+'eigen: for some packages, see the CGAL manual')
+makedepends=('cmake' 'qt4' 'eigen' 'boost')
+md5sums=('65fa7e17cd654ef68da47df60807')
+
+# consider building with swig for python stuff
+
+build() {
+  cd $srcdir/CGAL-$pkgver
+  mkdir build
+  cd build
+  cmake ../ -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/CGAL-$pkgver/build
+  make install DESTDIR=$pkgdir
+
+  # The tarball still has all these licenses included
+  for _license in LICENSE{,.FREE_USE,.GPL,.LGPL}; do
+install -D -m644 $srcdir/CGAL-$pkgver/$_license 
$pkgdir/usr/share/licenses/$pkgname/$_license
+  done
+}
+

Copied: cgal/repos/community-staging-x86_64/PKGBUILD (from rev 131885, 
cgal/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 06:17:49 UTC (rev 131886)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dmitriy Morozov foxcub
+
+pkgname=cgal
+pkgver=4.6
+pkgrel=2
+_pkgid=34705
+pkgdesc=Computational Geometry Algorithms Library
+arch=('i686' 'x86_64')
+url=http://www.cgal.org;
+license=('GPL' 'LGPL')
+source=(http://gforge.inria.fr/frs/download.php/$_pkgid/CGAL-$pkgver.tar.xz)
+depends=('mpfr' 'boost-libs' 'gmp' 'mesa' 'glu')
+optdepends=('qt4: for CGAL_Qt4'
+'eigen: for some packages, see the CGAL manual')
+makedepends=('cmake' 'qt4' 'eigen' 'boost')
+md5sums=('65fa7e17cd654ef68da47df60807')
+
+# consider building with swig for python stuff
+
+build() {
+  cd $srcdir/CGAL-$pkgver
+  mkdir build
+  cd build
+  cmake ../ -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/CGAL-$pkgver/build
+  make install DESTDIR=$pkgdir
+
+  # The tarball still has all these licenses included
+  for _license in LICENSE{,.FREE_USE,.GPL,.LGPL}; do
+install -D -m644 $srcdir/CGAL-$pkgver/$_license 
$pkgdir/usr/share/licenses/$pkgname/$_license
+  done
+}
+


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

2015-04-22 Thread Felix Yan
Date: Wednesday, April 22, 2015 @ 08:04:08
  Author: fyan
Revision: 131880

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  151 ++---
 1 file changed, 75 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-22 06:03:54 UTC (rev 131879)
+++ PKGBUILD2015-04-22 06:04:08 UTC (rev 131880)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: mutantmonkey a...@mutantmonkey.in
-
-pkgbase=python-kombu
-pkgname=('python-kombu' 'python2-kombu')
-pkgver=3.0.24
-pkgrel=1
-pkgdesc='A messaging library for Python'
-arch=('any')
-url=http://kombu.readthedocs.org/;
-license=('BSD')
-options=('!emptydirs')
-makedepends=('python-anyjson' 'python2-anyjson')
-checkdepends=('python-redis' 'python2-redis' 'python-yaml' 'python2-yaml' 
'python-msgpack' 'python2-msgpack'
-  'python-boto' 'python2-boto' 'python-pycurl' 'python2-pycurl' 
'python-nose' 'python2-nose'
-  'python-amqp' 'python2-amqp' 'python-mock' 'python2-mock')
-source=(http://pypi.python.org/packages/source/k/kombu/kombu-${pkgver}.tar.gz{,.asc})
-sha256sums=('b9ff0437607113aea701fd5122c2afa40c05dff6f1da4f58b2f1ea18d9f2bf8d'
-'SKIP')
-
-prepare() {
-  cp -a kombu-$pkgver{,-py2}
-}
-
-check() {
-  cd kombu-$pkgver
-  nosetests3 || warning Tests failed
-
-  cd ../kombu-$pkgver-py2
-  nosetests2
-}
-
-package_python-kombu() {
-  depends=('python-amqp' 'python-anyjson')
-  optdepends=('python-pymongo: for MongoDB support'
-  'python-msgpack: for MessagePack support'
-  'python-pyro: for Pyro support'
-  'python-redis: for Redis support'
-  'python-sqlalchemy: for SQLAlchemy support'
-  'python-boto: for Amazon SQS support'
-  'python-yaml: for YAML support'
-  'python-pyzmq: for ZeroMQ support')
-  # 'python-couchdb: for CouchDB support': Not packaged yet
-  # 'python-softlayer-messaging: for SoftLayer Message Queue 
support': Not packaged yet
-  # 'python-kazoo: for Zookeeper support': Not packaged yet
-  # 'python-librabbitmq: C optimization for AMQP transport' Not 
available for python 3 yet
-  # 'python-beanstalkc: for Beanstalk Support' Not available for 
python 3 yet
-
-  cd $srcdir/kombu-$pkgver
-  python setup.py install --root=$pkgdir/ --optimize=1
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-kombu() {
-  depends=('python2-amqp' 'python2-anyjson')
-  optdepends=('python2-pymongo: for MongoDB support'
-  'python2-msgpack: for MessagePack support'
-  'python2-pyro: for Pyro support'
-  'python2-redis: for Redis support'
-  'python2-sqlalchemy: for SQLAlchemy support'
-  'python2-boto: for Amazon SQS support'
-  'python2-yaml: for YAML support'
-  'python2-pyzmq: for ZeroMQ support'
-  'python2-librabbitmq: C optimization for AMQP transport')
-  # 'python2-couchdb: for CouchDB support': In AUR
-  # 'python2-softlayer-messaging: for SoftLayer Message Queue 
support': Not packaged yet
-  # 'python2-kazoo: for Zookeeper support': Not packaged yet
-  # 'python2-beanstalkc: for Beanstalk Support' Not packaged yet
-
-  cd $srcdir/kombu-$pkgver-py2
-  python2 setup.py install --root=$pkgdir/ --optimize=1
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-kombu/repos/community-any/PKGBUILD (from rev 131879, 
python-kombu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-22 06:04:08 UTC (rev 131880)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: mutantmonkey a...@mutantmonkey.in
+
+pkgbase=python-kombu
+pkgname=('python-kombu' 'python2-kombu')
+pkgver=3.0.25
+pkgrel=1
+pkgdesc='A messaging library for Python'
+arch=('any')
+url=http://kombu.readthedocs.org/;
+license=('BSD')
+options=('!emptydirs')
+makedepends=('python-anyjson' 'python2-anyjson')
+checkdepends=('python-redis' 'python2-redis' 'python-yaml' 'python2-yaml' 
'python-msgpack' 'python2-msgpack'
+  'python-boto' 'python2-boto' 'python-pycurl' 'python2-pycurl' 
'python-nose' 'python2-nose'
+  'python-amqp' 'python2-amqp' 'python-mock' 'python2-mock')
+source=(http://pypi.python.org/packages/source/k/kombu/kombu-${pkgver}.tar.gz;)
+sha256sums=('8d9de68e8d42403c10a2d28c32221f334da16a44801f02b59ca7ad22585c7261')
+
+prepare() {
+  cp -a 

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

2015-04-22 Thread Lukas Fleischer
Date: Wednesday, April 22, 2015 @ 08:03:54
  Author: lfleischer
Revision: 131879

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

Added:
  opensmtpd/repos/community-i686/PKGBUILD
(from rev 131878, opensmtpd/trunk/PKGBUILD)
  opensmtpd/repos/community-i686/opensmtpd.install
(from rev 131878, opensmtpd/trunk/opensmtpd.install)
  opensmtpd/repos/community-i686/smtpd.service
(from rev 131878, opensmtpd/trunk/smtpd.service)
  opensmtpd/repos/community-i686/smtpd.socket
(from rev 131878, opensmtpd/trunk/smtpd.socket)
  opensmtpd/repos/community-x86_64/PKGBUILD
(from rev 131878, opensmtpd/trunk/PKGBUILD)
  opensmtpd/repos/community-x86_64/opensmtpd.install
(from rev 131878, opensmtpd/trunk/opensmtpd.install)
  opensmtpd/repos/community-x86_64/smtpd.service
(from rev 131878, opensmtpd/trunk/smtpd.service)
  opensmtpd/repos/community-x86_64/smtpd.socket
(from rev 131878, opensmtpd/trunk/smtpd.socket)
Deleted:
  opensmtpd/repos/community-i686/PKGBUILD
  opensmtpd/repos/community-i686/opensmtpd.install
  opensmtpd/repos/community-i686/smtpd.service
  opensmtpd/repos/community-i686/smtpd.socket
  opensmtpd/repos/community-x86_64/PKGBUILD
  opensmtpd/repos/community-x86_64/opensmtpd.install
  opensmtpd/repos/community-x86_64/smtpd.service
  opensmtpd/repos/community-x86_64/smtpd.socket

+
 /PKGBUILD  |  116 +++
 /opensmtpd.install |   50 +++
 /smtpd.service |   20 ++
 /smtpd.socket  |   16 
 community-i686/PKGBUILD|   60 --
 community-i686/opensmtpd.install   |   35 --
 community-i686/smtpd.service   |   10 ---
 community-i686/smtpd.socket|8 --
 community-x86_64/PKGBUILD  |   60 --
 community-x86_64/opensmtpd.install |   35 --
 community-x86_64/smtpd.service |   10 ---
 community-x86_64/smtpd.socket  |8 --
 12 files changed, 202 insertions(+), 226 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-22 06:03:41 UTC (rev 131878)
+++ community-i686/PKGBUILD 2015-04-22 06:03:54 UTC (rev 131879)
@@ -1,60 +0,0 @@
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Sébastien Luttringer
-
-pkgname=opensmtpd
-pkgver=5.4.4p1
-pkgrel=1
-pkgdesc='Free implementation of the server-side SMTP protocol'
-arch=('i686' 'x86_64')
-url='http://www.opensmtpd.org/'
-license=('custom')
-depends=('libasr' 'libevent' 'openssl')
-provides=('smtp-server' 'smtp-forwarder')
-conflicts=('smtp-server' 'smtp-forwarder')
-backup=('etc/smtpd/smtpd.conf' 'etc/smtpd/aliases')
-options=('emptydirs')
-install=opensmtpd.install
-source=(http://www.opensmtpd.org/archives/$pkgname-$pkgver.tar.gz;
-'smtpd.service'
-'smtpd.socket')
-md5sums=('2866451425dadf4e110723906c435354'
- 'a278f272d97a9fe5a8aac784a7c98d67'
- 'c2c01e9ca78df3f65efe40a7c0e17ee0')
-
-prepare() {
-  sed -ri 's,/etc/mail,/etc/smtpd,g' $pkgname-$pkgver/smtpd/smtpd.conf
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  # Remove _FORTIFY_SOURCES: FS#38124
-  export CPPFLAGS=''
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc/smtpd \
---sbindir=/usr/bin \
---libexecdir=/usr/lib/smtpd \
---with-maildir=/var/spool/mail \
---with-privsep-path=/var/empty \
---with-sock-dir=/run \
---with-ca-file=/etc/ssl/certs/ca-certificates.crt \
---with-privsep-user=smtpd \
---with-queue-user=smtpq \
---with-pam
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir/ install
-
-  # install license and systemd unit files
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 $srcdir/smtpd.service 
$pkgdir/usr/lib/systemd/system/smtpd.service
-  install -Dm644 $srcdir/smtpd.socket 
$pkgdir/usr/lib/systemd/system/smtpd.socket
-
-  # install an empty aliases file (used by the default config)
-  install -Dm644 /dev/null $pkgdir/etc/smtpd/aliases
-}

Copied: opensmtpd/repos/community-i686/PKGBUILD (from rev 131878, 
opensmtpd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-22 06:03:54 UTC (rev 131879)
@@ -0,0 +1,58 @@
+# Maintainer: Lukas Fleischer lfleisc...@archlinux.org
+# Contributor: Sébastien Luttringer
+
+pkgname=opensmtpd
+pkgver=5.4.5p1
+pkgrel=1
+pkgdesc='Free implementation of the server-side SMTP protocol'
+arch=('i686' 'x86_64')
+url='http://www.opensmtpd.org/'
+license=('custom')
+depends=('libasr' 'libevent' 'openssl')
+provides=('smtp-server' 'smtp-forwarder')
+conflicts=('smtp-server' 'smtp-forwarder')
+backup=('etc/smtpd/smtpd.conf' 'etc/smtpd/aliases')
+options=('emptydirs')
+install=opensmtpd.install

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

2015-04-22 Thread Felix Yan
Date: Wednesday, April 22, 2015 @ 08:03:40
  Author: fyan
Revision: 131877

upgpkg: python-kombu 3.0.25-1

disable pgp check as the key is not published...

Modified:
  python-kombu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 05:48:46 UTC (rev 131876)
+++ PKGBUILD2015-04-22 06:03:40 UTC (rev 131877)
@@ -4,7 +4,7 @@
 
 pkgbase=python-kombu
 pkgname=('python-kombu' 'python2-kombu')
-pkgver=3.0.24
+pkgver=3.0.25
 pkgrel=1
 pkgdesc='A messaging library for Python'
 arch=('any')
@@ -15,9 +15,8 @@
 checkdepends=('python-redis' 'python2-redis' 'python-yaml' 'python2-yaml' 
'python-msgpack' 'python2-msgpack'
   'python-boto' 'python2-boto' 'python-pycurl' 'python2-pycurl' 
'python-nose' 'python2-nose'
   'python-amqp' 'python2-amqp' 'python-mock' 'python2-mock')
-source=(http://pypi.python.org/packages/source/k/kombu/kombu-${pkgver}.tar.gz{,.asc})
-sha256sums=('b9ff0437607113aea701fd5122c2afa40c05dff6f1da4f58b2f1ea18d9f2bf8d'
-'SKIP')
+source=(http://pypi.python.org/packages/source/k/kombu/kombu-${pkgver}.tar.gz;)
+sha256sums=('8d9de68e8d42403c10a2d28c32221f334da16a44801f02b59ca7ad22585c7261')
 
 prepare() {
   cp -a kombu-$pkgver{,-py2}


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

2015-04-22 Thread Lukas Fleischer
Date: Wednesday, April 22, 2015 @ 08:03:41
  Author: lfleischer
Revision: 131878

upgpkg: opensmtpd 5.4.5p1-1

* Upstream update.
* Do not remove users on package removal.

Modified:
  opensmtpd/trunk/PKGBUILD
  opensmtpd/trunk/opensmtpd.install

---+
 PKGBUILD  |8 +++-
 opensmtpd.install |   10 --
 2 files changed, 3 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 06:03:40 UTC (rev 131877)
+++ PKGBUILD2015-04-22 06:03:41 UTC (rev 131878)
@@ -1,8 +1,8 @@
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Maintainer: Lukas Fleischer lfleisc...@archlinux.org
 # Contributor: Sébastien Luttringer
 
 pkgname=opensmtpd
-pkgver=5.4.4p1
+pkgver=5.4.5p1
 pkgrel=1
 pkgdesc='Free implementation of the server-side SMTP protocol'
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 source=(http://www.opensmtpd.org/archives/$pkgname-$pkgver.tar.gz;
 'smtpd.service'
 'smtpd.socket')
-md5sums=('2866451425dadf4e110723906c435354'
+md5sums=('05b58cecf0d6c2f385954b94d85e271a'
  'a278f272d97a9fe5a8aac784a7c98d67'
  'c2c01e9ca78df3f65efe40a7c0e17ee0')
 
@@ -28,8 +28,6 @@
 build() {
   cd $pkgname-$pkgver
 
-  # Remove _FORTIFY_SOURCES: FS#38124
-  export CPPFLAGS=''
   ./configure \
 --prefix=/usr \
 --sysconfdir=/etc/smtpd \

Modified: opensmtpd.install
===
--- opensmtpd.install   2015-04-22 06:03:40 UTC (rev 131877)
+++ opensmtpd.install   2015-04-22 06:03:41 UTC (rev 131878)
@@ -22,14 +22,4 @@
   :
 }
 
-# arg 1:  the old package version
-post_remove() {
-  userdel -f smtpd
-  userdel -f smtpq
-  if (( $(vercmp $1 5.4) = 0 )); then
-userdel -f smtpf
-  fi
-  :
-}
-
 # vim:set ts=2 sw=2 et:


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

2015-04-22 Thread Lukas Fleischer
Date: Wednesday, April 22, 2015 @ 08:13:19
  Author: lfleischer
Revision: 131883

upgpkg: stunnel 5.16-1

* Upstream update.
* Do not remove users on package removal.

Modified:
  stunnel/trunk/PKGBUILD
  stunnel/trunk/stunnel.install

-+
 PKGBUILD|9 -
 stunnel.install |   11 ---
 2 files changed, 4 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 06:12:07 UTC (rev 131882)
+++ PKGBUILD2015-04-22 06:13:19 UTC (rev 131883)
@@ -1,11 +1,10 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Maintainer: Lukas Fleischer lfleisc...@archlinux.org
 # Contributor: Kaiting Chen kaitocr...@gmail.com
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 # Contributor: Kevin Piche ke...@archlinux.org
 
 pkgname=stunnel
-pkgver=5.10
+pkgver=5.16
 pkgrel=1
 pkgdesc=A program that allows you to encrypt arbitrary TCP connections inside 
SSL
 arch=('i686' 'x86_64')
@@ -16,11 +15,11 @@
 source=(https://www.stunnel.org/downloads/$pkgname-$pkgver.tar.gz{,.asc}
 'Makefile.patch'
 'stunnel.tmpfiles.conf')
-md5sums=('a0edda805eb7d6ea600a230fb0979ea1'
+md5sums=('ffe666e8bf1f0f9dad67b8d7e9ead48a'
  'SKIP'
  '579f198ecb90a42fcbfd8a4e48006264'
  '2e065a39998e57727ee79887bbd1751e')
-validpgpkeys=('F6B1BFC55F32243FB2C8919AFCD53E9D74C732D1')
+validpgpkeys=('AC915EA30645D9D3D4DAE4FEB1048932DD33') # Michał Trojnara
 
 build() {
   cd $srcdir/$pkgname-$pkgver

Modified: stunnel.install
===
--- stunnel.install 2015-04-22 06:12:07 UTC (rev 131882)
+++ stunnel.install 2015-04-22 06:13:19 UTC (rev 131883)
@@ -18,14 +18,3 @@
 post_upgrade() {
   post_install $@
 }
-
-pre_remove() {
-  # remove users  groups
-  if getent passwd stunnel /dev/null 21; then
-userdel stunnel
-  fi
-
-  if getent group stunnel /dev/null 21; then
-groupdel stunnel
-  fi
-}


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

2015-04-22 Thread Lukas Fleischer
Date: Wednesday, April 22, 2015 @ 08:13:28
  Author: lfleischer
Revision: 131884

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

Added:
  stunnel/repos/community-i686/Makefile.patch
(from rev 131883, stunnel/trunk/Makefile.patch)
  stunnel/repos/community-i686/PKGBUILD
(from rev 131883, stunnel/trunk/PKGBUILD)
  stunnel/repos/community-i686/stunnel.install
(from rev 131883, stunnel/trunk/stunnel.install)
  stunnel/repos/community-i686/stunnel.tmpfiles.conf
(from rev 131883, stunnel/trunk/stunnel.tmpfiles.conf)
  stunnel/repos/community-x86_64/Makefile.patch
(from rev 131883, stunnel/trunk/Makefile.patch)
  stunnel/repos/community-x86_64/PKGBUILD
(from rev 131883, stunnel/trunk/PKGBUILD)
  stunnel/repos/community-x86_64/stunnel.install
(from rev 131883, stunnel/trunk/stunnel.install)
  stunnel/repos/community-x86_64/stunnel.tmpfiles.conf
(from rev 131883, stunnel/trunk/stunnel.tmpfiles.conf)
Deleted:
  stunnel/repos/community-i686/Makefile.patch
  stunnel/repos/community-i686/PKGBUILD
  stunnel/repos/community-i686/stunnel.install
  stunnel/repos/community-i686/stunnel.tmpfiles.conf
  stunnel/repos/community-x86_64/Makefile.patch
  stunnel/repos/community-x86_64/PKGBUILD
  stunnel/repos/community-x86_64/stunnel.install
  stunnel/repos/community-x86_64/stunnel.tmpfiles.conf

+
 /Makefile.patch|   24 +++
 /PKGBUILD  |  104 +++
 /stunnel.install   |   40 +++
 /stunnel.tmpfiles.conf |2 
 community-i686/Makefile.patch  |   12 ---
 community-i686/PKGBUILD|   53 ---
 community-i686/stunnel.install |   31 -
 community-i686/stunnel.tmpfiles.conf   |1 
 community-x86_64/Makefile.patch|   12 ---
 community-x86_64/PKGBUILD  |   53 ---
 community-x86_64/stunnel.install   |   31 -
 community-x86_64/stunnel.tmpfiles.conf |1 
 12 files changed, 170 insertions(+), 194 deletions(-)

Deleted: community-i686/Makefile.patch
===
--- community-i686/Makefile.patch   2015-04-22 06:13:19 UTC (rev 131883)
+++ community-i686/Makefile.patch   2015-04-22 06:13:28 UTC (rev 131884)
@@ -1,12 +0,0 @@
 tools/Makefile.in  2010-03-31 04:45:09.0 -0500
-+++ tools/Makefile.in  2010-04-11 17:17:41.0 -0500
-@@ -334,8 +334,7 @@
- 
- info-am:
- 
--install-data-am: install-confDATA install-data-local \
--  install-examplesDATA
-+install-data-am: install-confDATA install-examplesDATA
- 
- install-dvi: install-dvi-am
- 

Copied: stunnel/repos/community-i686/Makefile.patch (from rev 131883, 
stunnel/trunk/Makefile.patch)
===
--- community-i686/Makefile.patch   (rev 0)
+++ community-i686/Makefile.patch   2015-04-22 06:13:28 UTC (rev 131884)
@@ -0,0 +1,12 @@
+--- tools/Makefile.in  2010-03-31 04:45:09.0 -0500
 tools/Makefile.in  2010-04-11 17:17:41.0 -0500
+@@ -334,8 +334,7 @@
+ 
+ info-am:
+ 
+-install-data-am: install-confDATA install-data-local \
+-  install-examplesDATA
++install-data-am: install-confDATA install-examplesDATA
+ 
+ install-dvi: install-dvi-am
+ 

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-22 06:13:19 UTC (rev 131883)
+++ community-i686/PKGBUILD 2015-04-22 06:13:28 UTC (rev 131884)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-# Contributor: Kevin Piche ke...@archlinux.org
-
-pkgname=stunnel
-pkgver=5.10
-pkgrel=1
-pkgdesc=A program that allows you to encrypt arbitrary TCP connections inside 
SSL
-arch=('i686' 'x86_64')
-url=http://www.stunnel.org;
-license=('GPL')
-depends=('openssl')
-install=$pkgname.install
-source=(https://www.stunnel.org/downloads/$pkgname-$pkgver.tar.gz{,.asc}
-'Makefile.patch'
-'stunnel.tmpfiles.conf')
-md5sums=('a0edda805eb7d6ea600a230fb0979ea1'
- 'SKIP'
- '579f198ecb90a42fcbfd8a4e48006264'
- '2e065a39998e57727ee79887bbd1751e')
-validpgpkeys=('F6B1BFC55F32243FB2C8919AFCD53E9D74C732D1')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # don't create a certificate...
-  patch -p0 $srcdir/Makefile.patch
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---enable-ipv6 \
---disable-libwrap
-
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 tools/stunnel.cnf 
$pkgdir/etc/stunnel/stunnel-openssl.cnf-sample
-  install -Dm644 tools/stunnel.service 
$pkgdir/usr/lib/systemd/system/stunnel.service
-  

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

2015-04-22 Thread Bartłomiej Piotrowski
Date: Wednesday, April 22, 2015 @ 08:35:25
  Author: bpiotrowski
Revision: 237889

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-22 06:35:14 UTC (rev 237888)
+++ extra-i686/PKGBUILD 2015-04-22 06:35:25 UTC (rev 237889)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Thomas Baechler tho...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=libdvdread
-pkgver=5.0.1
-pkgrel=1
-pkgdesc=Provides a simple foundation for reading DVD video disks
-arch=(i686 x86_64)
-url=http://dvdnav.mplayerhq.hu;
-license=('GPL')
-depends=('glibc')
-makedepends=('libdvdcss' 'git')
-optdepends=('libdvdcss: for decoding encrypted DVDs')
-source=(git://git.videolan.org/libdvdread.git#tag=$pkgver)
-sha256sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR=${pkgdir} install
-}

Copied: libdvdread/repos/extra-i686/PKGBUILD (from rev 237888, 
libdvdread/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-22 06:35:25 UTC (rev 237889)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Thomas Baechler tho...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=libdvdread
+pkgver=5.0.3
+pkgrel=1
+pkgdesc=Provides a simple foundation for reading DVD video disks
+arch=(i686 x86_64)
+url=http://dvdnav.mplayerhq.hu;
+license=('GPL')
+depends=('glibc')
+makedepends=('libdvdcss' 'git')
+optdepends=('libdvdcss: for decoding encrypted DVDs')
+source=(git://git.videolan.org/libdvdread.git#tag=$pkgver)
+sha256sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-04-22 06:35:14 UTC (rev 237888)
+++ extra-x86_64/PKGBUILD   2015-04-22 06:35:25 UTC (rev 237889)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Thomas Baechler tho...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=libdvdread
-pkgver=5.0.1
-pkgrel=1
-pkgdesc=Provides a simple foundation for reading DVD video disks
-arch=(i686 x86_64)
-url=http://dvdnav.mplayerhq.hu;
-license=('GPL')
-depends=('glibc')
-makedepends=('libdvdcss' 'git')
-optdepends=('libdvdcss: for decoding encrypted DVDs')
-source=(git://git.videolan.org/libdvdread.git#tag=$pkgver)
-sha256sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR=${pkgdir} install
-}

Copied: libdvdread/repos/extra-x86_64/PKGBUILD (from rev 237888, 
libdvdread/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-04-22 06:35:25 UTC (rev 237889)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Thomas Baechler tho...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=libdvdread
+pkgver=5.0.3
+pkgrel=1
+pkgdesc=Provides a simple foundation for reading DVD video disks
+arch=(i686 x86_64)
+url=http://dvdnav.mplayerhq.hu;
+license=('GPL')
+depends=('glibc')
+makedepends=('libdvdcss' 'git')
+optdepends=('libdvdcss: for decoding encrypted DVDs')
+source=(git://git.videolan.org/libdvdread.git#tag=$pkgver)
+sha256sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR=${pkgdir} install
+}


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

2015-04-22 Thread Bartłomiej Piotrowski
Date: Wednesday, April 22, 2015 @ 08:35:14
  Author: bpiotrowski
Revision: 237888

upgpkg: libdvdread 5.0.3-1

new upstream release

Modified:
  libdvdread/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 04:31:27 UTC (rev 237887)
+++ PKGBUILD2015-04-22 06:35:14 UTC (rev 237888)
@@ -4,7 +4,7 @@
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=libdvdread
-pkgver=5.0.1
+pkgver=5.0.3
 pkgrel=1
 pkgdesc=Provides a simple foundation for reading DVD video disks
 arch=(i686 x86_64)


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

2015-04-22 Thread Kyle Keen
Date: Wednesday, April 22, 2015 @ 08:31:56
  Author: kkeen
Revision: 131887

upgpkg: openscad 2015.03.01-2  boost rebuild

Modified:
  openscad/trunk/CHANGELOG
  openscad/trunk/PKGBUILD

---+
 CHANGELOG |6 ++
 PKGBUILD  |4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

Modified: CHANGELOG
===
--- CHANGELOG   2015-04-22 06:17:49 UTC (rev 131886)
+++ CHANGELOG   2015-04-22 06:31:56 UTC (rev 131887)
@@ -1,9 +1,15 @@
 2015-04-22 Kyle Keen keen...@gmail.com
+   * 2015.03.01-2
+   - No changes
+   - Rebuild for boost-1.58.0-1
+
+2015-04-22 Kyle Keen keen...@gmail.com
* 2015.03.01-1
- Bugfix release
 
 2015-04-11 Kyle Keen keen...@gmail.com
* 2015.03-2
+   - No changes
- Rebuild for cgal-4.6-1
 
 2015-03-10 Kyle Keen keen...@gmail.com

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 06:17:49 UTC (rev 131886)
+++ PKGBUILD2015-04-22 06:31:56 UTC (rev 131887)
@@ -5,8 +5,8 @@
 # Contributor: Pierre DOUCET pierre at equinoxefr.org
 pkgname=openscad
 pkgver=2015.03.01
-_ver=2015.03-1  # hopefully this is a one-off thing
-pkgrel=1
+_ver=2015.03-1  # hopefully -X is temporary
+pkgrel=2
 pkgdesc=The programmers solid 3D CAD modeller
 url=http://openscad.org/;
 arch=('i686' 'x86_64')


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

2015-04-22 Thread Kyle Keen
Date: Wednesday, April 22, 2015 @ 08:32:19
  Author: kkeen
Revision: 131888

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

Added:
  openscad/repos/community-staging-i686/
  openscad/repos/community-staging-i686/CHANGELOG
(from rev 131887, openscad/trunk/CHANGELOG)
  openscad/repos/community-staging-i686/PKGBUILD
(from rev 131887, openscad/trunk/PKGBUILD)
  openscad/repos/community-staging-i686/openscad.install
(from rev 131887, openscad/trunk/openscad.install)
  openscad/repos/community-staging-x86_64/
  openscad/repos/community-staging-x86_64/CHANGELOG
(from rev 131887, openscad/trunk/CHANGELOG)
  openscad/repos/community-staging-x86_64/PKGBUILD
(from rev 131887, openscad/trunk/PKGBUILD)
  openscad/repos/community-staging-x86_64/openscad.install
(from rev 131887, openscad/trunk/openscad.install)

---+
 community-staging-i686/CHANGELOG  |   72 
 community-staging-i686/PKGBUILD   |   49 +++
 community-staging-i686/openscad.install   |   13 +
 community-staging-x86_64/CHANGELOG|   72 
 community-staging-x86_64/PKGBUILD |   49 +++
 community-staging-x86_64/openscad.install |   13 +
 6 files changed, 268 insertions(+)

Copied: openscad/repos/community-staging-i686/CHANGELOG (from rev 131887, 
openscad/trunk/CHANGELOG)
===
--- community-staging-i686/CHANGELOG(rev 0)
+++ community-staging-i686/CHANGELOG2015-04-22 06:32:19 UTC (rev 131888)
@@ -0,0 +1,72 @@
+2015-04-22 Kyle Keen keen...@gmail.com
+   * 2015.03.01-2
+   - No changes
+   - Rebuild for boost-1.58.0-1
+
+2015-04-22 Kyle Keen keen...@gmail.com
+   * 2015.03.01-1
+   - Bugfix release
+
+2015-04-11 Kyle Keen keen...@gmail.com
+   * 2015.03-2
+   - No changes
+   - Rebuild for cgal-4.6-1
+
+2015-03-10 Kyle Keen keen...@gmail.com
+   * 2015.03-1
+   - New release
+   - Now uses qscintilla for the editor
+
+2014-11-04 Kyle Keen keen...@gmail.com
+   * 2014.03-5
+   - No changes
+   - Rebuild for boost-1.57.0-1
+
+2014-08-18 Kyle Keen keen...@gmail.com
+   * 2014.03-4
+   - No changes
+   - Rebuild for boost-1.56.0-1
+
+2014-08-18 Kyle Keen keen...@gmail.com
+   * 2014.03-3
+   - No changes
+   - Rebuild for glew-1.11.0-1
+
+2014-08-12 Kyle Keen keen...@gmail.com
+   * 2014.03-2
+   - No changes
+   - Rebuild for boost-1.56.0-1
+
+2014-03-09 Kyle Keen keen...@gmail.com
+
+   * 2014.03-1
+   - New release
+   - MIME associations
+
+2014-02-10 Kyle Keen keen...@gmail.com
+
+   * 2013.06-3
+   - Moved package to [community]
+   - Explicit boost depends
+   - Use official resources
+
+2014-02-07 Chirantan Ekbote chirantan.ekb...@gmail.com
+
+   * 2013.06-2
+   - Update makedepends since eigen3 has now become eigen in [extra]
+
+2013-06-19 Chirantan Ekbote chirantan.ekb...@gmail.com
+
+   * 2013.06-1 :
+   - Updated to version 2013.06
+
+2013-03-01 Chirantan Ekbote chirantan.ekb...@gmail.com
+
+   * 2013.01-2 :
+   Dependency qt replaced with qt4
+
+2013-01-23 Chirantan Ekbote chirantan.ekb...@gmail.com
+
+   * 2013.01-1 :
+   New upstream release.
+   Dependency eigen2 repaced by eigen3

Copied: openscad/repos/community-staging-i686/PKGBUILD (from rev 131887, 
openscad/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 06:32:19 UTC (rev 131888)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Chirantan Ekbote chirantan.ekbote at gmail.com
+# Contributor: Eric Anderson ejona86 at gmail.com
+# Contributor: Pierre DOUCET pierre at equinoxefr.org
+pkgname=openscad
+pkgver=2015.03.01
+_ver=2015.03-1  # hopefully -X is temporary
+pkgrel=2
+pkgdesc=The programmers solid 3D CAD modeller
+url=http://openscad.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+install=openscad.install
+changelog=CHANGELOG
+depends=('qt4' 'qscintilla' 'cgal' 'opencsg' 'boost-libs' 'shared-mime-info')
+makedepends=('eigen' 'boost' 'imagemagick')
+# full tests need cmake, python2, imagemagick
+checkdepends=('cmake')
+source=(http://files.openscad.org/openscad-$_ver.src.tar.gz;)
+md5sums=('c5994220078f5f5c13984da304e4a2fe')
+
+build() {
+cd $srcdir/$pkgname-$_ver
+qmake-qt4 PREFIX=/usr
+make
+convert icons/$pkgname.png -resize 128x128\ icons/$pkgname-128.png
+}
+
+check() {
+# see doc/testing.txt about enabling
+# normally will display stuff, run image diffs
+cd $srcdir/$pkgname-$_ver/tests
+# something here still bugs out
+return 0
+cmake .
+make
+# run a subset of headless tests
+

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

2015-04-22 Thread Andreas Radke
Date: Wednesday, April 22, 2015 @ 19:49:26
  Author: andyrtr
Revision: 237914

upgpkg: hplip 3.15.4-1

upstream update 3.15.4

Modified:
  hplip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 17:05:37 UTC (rev 237913)
+++ PKGBUILD2015-04-22 17:49:26 UTC (rev 237914)
@@ -5,8 +5,8 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.15.2
-pkgrel=3
+pkgver=3.15.4
+pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -26,7 +26,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-sha1sums=('efebad73f29ab9f77d5a866c1c5d3857cc5f1df5'
+sha1sums=('6670afd4c23ef99782d2a91b5916d429b66b7947'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) hp...@hp.com
@@ -65,7 +65,7 @@
  --enable-hpijs-install \
  --enable-foomatic-drv-install \
  --enable-pp-build #--help
- make
+ make -j1 # 3.15.4 fails parallel build
 }
 
 package() {


[arch-commits] Commit in (vi)

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 20:02:32
  Author: foutrelis
Revision: 237918

Bring back vi (FS#44604)

There was objection to switching the /usr/bin/vi editor fallback of
programs like visuo to /usr/bin/nano and the idea of not providing
/usr/bin/vi at all goes against POSIX.

Considering that dbscripts lack support for pushing split packages into
more than one repository, vim-minimal cannot be made available in [core]
without maintaining two copies of the PKGBUILD, which is something the
vim maintainer would rather not do (understandably so).

So, welcome back vi; I didn't miss you one bit.

(On the bright side, vim-minimal is included on the installation image.)

Added:
  vi/


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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 19:26:46
  Author: svenstaro
Revision: 131963

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

Added:
  0ad/repos/community-staging-i686/
  0ad/repos/community-staging-i686/PKGBUILD
(from rev 131962, 0ad/trunk/PKGBUILD)
  0ad/repos/community-staging-x86_64/
  0ad/repos/community-staging-x86_64/PKGBUILD
(from rev 131962, 0ad/trunk/PKGBUILD)

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

Copied: 0ad/repos/community-staging-i686/PKGBUILD (from rev 131962, 
0ad/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 17:26:46 UTC (rev 131963)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: t3ddy  t3ddy1988 at gmail {dot} com
+# Contributor: Adrián Chaves Fernández (Gallaecio) adriyeticha...@gmail.com
+pkgname=0ad
+pkgver=a18
+_pkgver=0.0.18-alpha
+pkgrel=4
+pkgdesc=Cross-platform, 3D and historically-based real-time strategy game
+arch=('i686' 'x86_64')
+url=http://play0ad.com/;
+license=('GPL2' 'CCPL')
+depends=('binutils' 'boost-libs' 'curl' 'enet' 'libogg' 'libpng' 'libvorbis'
+ 'libxml2' 'openal' 'sdl' 'wxgtk2.8' 'zlib' 'libgl' '0ad-data' 'glu'
+ 'gloox' 'miniupnpc' 'icu' 'nspr')
+makedepends=('boost' 'cmake' 'mesa' 'zip' 'python2' 'libsm')
+source=(https://sourceforge.net/projects/zero-ad/files/releases/$pkgname-$_pkgver-unix-build.tar.xz;)
+md5sums=('84aedae3ab86955f87c55607600daa12')
+
+prepare() {
+  cd $srcdir/$pkgname-$_pkgver/
+  sed -i s/env python/env python2/g 
libraries/source/cxxtest-4.4/bin/cxxtestgen
+}
+
+build() {
+  cd $srcdir/$pkgname-$_pkgver/build/workspaces
+
+  unset CPPFLAGS # for le spidermonkey
+
+  export WX_CONFIG=/usr/bin/wx-config-2.8
+  ./update-workspaces.sh \
+  --with-system-miniupnpc \
+  --bindir=/usr/bin \
+  --libdir=/usr/lib/0ad \
+  --datadir=/usr/share/${pkgname}/data
+
+  cd $srcdir/$pkgname-$_pkgver/build/workspaces/gcc
+
+  make
+}
+
+package() {
+  install -d ${pkgdir}/usr/{bin,lib/0ad,share/${pkgname}/data}
+  cd $srcdir/$pkgname-$_pkgver
+
+  install -Dm755 binaries/system/pyrogenesis ${pkgdir}/usr/bin
+  install -Dm755 binaries/system/*.so ${pkgdir}/usr/lib/0ad
+
+  cp -r binaries/data/l10n/ ${pkgdir}/usr/share/${pkgname}/data/
+
+  install -Dm755 build/resources/${pkgname}.sh ${pkgdir}/usr/bin/${pkgname}
+  install -Dm644 build/resources/${pkgname}.desktop \
+${pkgdir}/usr/share/applications/${pkgname}.desktop
+  install -Dm644 build/resources/${pkgname}.png \
+${pkgdir}/usr/share/pixmaps/${pkgname}.png
+}
+
+# Fails
+#check() {
+#  cd $srcdir/$pkgname-$_pkgver
+#  LD_LIBRARY_PATH=binaries/system binaries/system/test
+#}

Copied: 0ad/repos/community-staging-x86_64/PKGBUILD (from rev 131962, 
0ad/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 17:26:46 UTC (rev 131963)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: t3ddy  t3ddy1988 at gmail {dot} com
+# Contributor: Adrián Chaves Fernández (Gallaecio) adriyeticha...@gmail.com
+pkgname=0ad
+pkgver=a18
+_pkgver=0.0.18-alpha
+pkgrel=4
+pkgdesc=Cross-platform, 3D and historically-based real-time strategy game
+arch=('i686' 'x86_64')
+url=http://play0ad.com/;
+license=('GPL2' 'CCPL')
+depends=('binutils' 'boost-libs' 'curl' 'enet' 'libogg' 'libpng' 'libvorbis'
+ 'libxml2' 'openal' 'sdl' 'wxgtk2.8' 'zlib' 'libgl' '0ad-data' 'glu'
+ 'gloox' 'miniupnpc' 'icu' 'nspr')
+makedepends=('boost' 'cmake' 'mesa' 'zip' 'python2' 'libsm')
+source=(https://sourceforge.net/projects/zero-ad/files/releases/$pkgname-$_pkgver-unix-build.tar.xz;)
+md5sums=('84aedae3ab86955f87c55607600daa12')
+
+prepare() {
+  cd $srcdir/$pkgname-$_pkgver/
+  sed -i s/env python/env python2/g 
libraries/source/cxxtest-4.4/bin/cxxtestgen
+}
+
+build() {
+  cd $srcdir/$pkgname-$_pkgver/build/workspaces
+
+  unset CPPFLAGS # for le spidermonkey
+
+  export WX_CONFIG=/usr/bin/wx-config-2.8
+  ./update-workspaces.sh \
+  --with-system-miniupnpc \
+  --bindir=/usr/bin \
+  --libdir=/usr/lib/0ad \
+  --datadir=/usr/share/${pkgname}/data
+
+  cd $srcdir/$pkgname-$_pkgver/build/workspaces/gcc
+
+  make
+}
+
+package() {
+  install -d ${pkgdir}/usr/{bin,lib/0ad,share/${pkgname}/data}
+  cd $srcdir/$pkgname-$_pkgver
+
+  install -Dm755 binaries/system/pyrogenesis ${pkgdir}/usr/bin
+  install -Dm755 binaries/system/*.so ${pkgdir}/usr/lib/0ad
+
+  cp -r binaries/data/l10n/ ${pkgdir}/usr/share/${pkgname}/data/
+
+  install -Dm755 

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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 19:26:40
  Author: svenstaro
Revision: 131962

upgpkg: 0ad a18-4

boost 1.58.0

Modified:
  0ad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 16:08:30 UTC (rev 131961)
+++ PKGBUILD2015-04-22 17:26:40 UTC (rev 131962)
@@ -5,7 +5,7 @@
 pkgname=0ad
 pkgver=a18
 _pkgver=0.0.18-alpha
-pkgrel=3
+pkgrel=4
 pkgdesc=Cross-platform, 3D and historically-based real-time strategy game
 arch=('i686' 'x86_64')
 url=http://play0ad.com/;


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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 19:55:23
  Author: svenstaro
Revision: 131964

upgpkg: cegui 0.8.4-8

boost 1.58.0

Modified:
  cegui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 17:26:46 UTC (rev 131963)
+++ PKGBUILD2015-04-22 17:55:23 UTC (rev 131964)
@@ -7,7 +7,7 @@
 pkgname=cegui
 pkgver=0.8.4
 _tag=0-8-4
-pkgrel=7
+pkgrel=8
 pkgdesc=A free library providing windowing and widgets for graphics 
APIs/engines
 arch=('i686' 'x86_64')
 url=http://cegui.org.uk;


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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 19:55:30
  Author: svenstaro
Revision: 131965

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

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

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

Copied: cegui/repos/community-staging-i686/PKGBUILD (from rev 131964, 
cegui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 17:55:30 UTC (rev 131965)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Juergen Hoetzel juer...@archlinux.org 
+# Contributor: William Rea sillywi...@gmail.com, 
+# Contributor: Bjorn Lindeijer bj...@lindeijer.nl
+
+pkgname=cegui
+pkgver=0.8.4
+_tag=0-8-4
+pkgrel=8
+pkgdesc=A free library providing windowing and widgets for graphics 
APIs/engines
+arch=('i686' 'x86_64')
+url=http://cegui.org.uk;
+license=(MIT)
+depends=('pcre' 'glew' 'expat' 'freetype2' 'libxml2' 'devil' 'freeglut' 
'lua51' 'silly')
+makedepends=('cmake' 'python2' 'doxygen' 'ogre' 'gtk2' 'boost' 'graphviz' 
'irrlicht' 'glm' 'mesa' 'tolua++' 'mercurial')
+optdepends=(python2: python bindings
+ogre: ogre module
+gtk2: gtk2 module
+irrlicht: irrlicht module)
+source=(hg+https://bitbucket.org/cegui/cegui#tag=v${_tag};)
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/cegui
+
+  sed -i s/lib64/lib/g CMakeLists.txt
+
+  [[ -d build ]]  rm -r build
+  mkdir build  cd build
+
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCEGUI_LIB_INSTALL_DIR=lib \
+  -DCEGUI_BUILD_PYTHON_MODULES=ON \
+  -DPYTHON_EXECUTABLE=/usr/bin/python2
+
+  make
+  make html
+}
+
+package() {
+  cd $srcdir/cegui/build
+ 
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 ../COPYING ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}

Copied: cegui/repos/community-staging-x86_64/PKGBUILD (from rev 131964, 
cegui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 17:55:30 UTC (rev 131965)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Juergen Hoetzel juer...@archlinux.org 
+# Contributor: William Rea sillywi...@gmail.com, 
+# Contributor: Bjorn Lindeijer bj...@lindeijer.nl
+
+pkgname=cegui
+pkgver=0.8.4
+_tag=0-8-4
+pkgrel=8
+pkgdesc=A free library providing windowing and widgets for graphics 
APIs/engines
+arch=('i686' 'x86_64')
+url=http://cegui.org.uk;
+license=(MIT)
+depends=('pcre' 'glew' 'expat' 'freetype2' 'libxml2' 'devil' 'freeglut' 
'lua51' 'silly')
+makedepends=('cmake' 'python2' 'doxygen' 'ogre' 'gtk2' 'boost' 'graphviz' 
'irrlicht' 'glm' 'mesa' 'tolua++' 'mercurial')
+optdepends=(python2: python bindings
+ogre: ogre module
+gtk2: gtk2 module
+irrlicht: irrlicht module)
+source=(hg+https://bitbucket.org/cegui/cegui#tag=v${_tag};)
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/cegui
+
+  sed -i s/lib64/lib/g CMakeLists.txt
+
+  [[ -d build ]]  rm -r build
+  mkdir build  cd build
+
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCEGUI_LIB_INSTALL_DIR=lib \
+  -DCEGUI_BUILD_PYTHON_MODULES=ON \
+  -DPYTHON_EXECUTABLE=/usr/bin/python2
+
+  make
+  make html
+}
+
+package() {
+  cd $srcdir/cegui/build
+ 
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 ../COPYING ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}


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

2015-04-22 Thread Andreas Radke
Date: Wednesday, April 22, 2015 @ 20:04:36
  Author: andyrtr
Revision: 237919

upgpkg: vigra 1.10.0-6

boost rebuild

Modified:
  vigra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 18:02:32 UTC (rev 237918)
+++ PKGBUILD2015-04-22 18:04:36 UTC (rev 237919)
@@ -5,7 +5,7 @@
 pkgbase=vigra
 pkgname=('vigra' 'vigra-doc')
 pkgver=1.10.0
-pkgrel=5
+pkgrel=6
 arch=('i686' 'x86_64')
 url=http://hci.iwr.uni-heidelberg.de/vigra/;
 license=('custom:MIT')


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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 20:04:36
  Author: foutrelis
Revision: 237920

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

Added:
  vi/repos/core-i686/
  vi/repos/core-i686/PKGBUILD
(from rev 237918, vi/trunk/PKGBUILD)
  vi/repos/core-i686/increase-tube.patch
(from rev 237918, vi/trunk/increase-tube.patch)
  vi/repos/core-i686/navkeys.patch
(from rev 237918, vi/trunk/navkeys.patch)
  vi/repos/core-i686/preserve_dir.patch
(from rev 237918, vi/trunk/preserve_dir.patch)
  vi/repos/core-x86_64/
  vi/repos/core-x86_64/PKGBUILD
(from rev 237918, vi/trunk/PKGBUILD)
  vi/repos/core-x86_64/increase-tube.patch
(from rev 237918, vi/trunk/increase-tube.patch)
  vi/repos/core-x86_64/navkeys.patch
(from rev 237918, vi/trunk/navkeys.patch)
  vi/repos/core-x86_64/preserve_dir.patch
(from rev 237918, vi/trunk/preserve_dir.patch)

-+
 core-i686/PKGBUILD  |   43 
 core-i686/increase-tube.patch   |   13 
 core-i686/navkeys.patch |   55 +
 core-i686/preserve_dir.patch|   99 ++
 core-x86_64/PKGBUILD|   43 
 core-x86_64/increase-tube.patch |   13 
 core-x86_64/navkeys.patch   |   55 +
 core-x86_64/preserve_dir.patch  |   99 ++
 8 files changed, 420 insertions(+)

Copied: vi/repos/core-i686/PKGBUILD (from rev 237918, vi/trunk/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2015-04-22 18:04:36 UTC (rev 237920)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=vi
+pkgver=050325
+pkgrel=4
+epoch=1
+pkgdesc=The original ex/vi text editor
+arch=('i686' 'x86_64')
+url=http://ex-vi.sourceforge.net/;
+license=('custom:ex')
+depends=('ncurses')
+optdepends=('heirloom-mailx: used by the preserve command for notification')
+groups=('base')
+source=(http://downloads.sourceforge.net/sourceforge/ex-vi/ex-${pkgver}.tar.bz2
+navkeys.patch
+increase-tube.patch
+preserve_dir.patch)
+sha1sums=('573501d15fa4be59f136641957c7f893e86bac82'
+  '9ff3e79dd5f4ba29bd439f2c86afbc748c95ec3d'
+  '7039755bf1dd27b4aa5384e76ee52e31d06f9972'
+  'ff399edd106eb0b61cc58f66812c2a2c8ea7670d')
+
+prepare() {
+  cd ex-${pkgver}
+  patch -Np1 -i  ../navkeys.patch
+  patch -Np0 -i ../increase-tube.patch
+  # FS#20653
+  patch -Np1 -i ../preserve_dir.patch
+}
+
+build() {
+  cd ex-${pkgver}
+  make PREFIX=/usr LIBEXECDIR=/usr/lib/ex PRESERVEDIR=/var/lib/ex \
+  'FEATURES=-DCHDIR -DFASTTAG -DUCVISUAL -DMB -DBIT8' TERMLIB=ncurses
+}
+
+package() {
+  cd ex-${pkgver}
+  make PREFIX=/usr LIBEXECDIR=/usr/lib/ex PRESERVEDIR=/var/lib/ex 
INSTALL=/usr/bin/install \
+  DESTDIR=${pkgdir} install
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: vi/repos/core-i686/increase-tube.patch (from rev 237918, 
vi/trunk/increase-tube.patch)
===
--- core-i686/increase-tube.patch   (rev 0)
+++ core-i686/increase-tube.patch   2015-04-22 18:04:36 UTC (rev 237920)
@@ -0,0 +1,13 @@
+--- config.h   2005-02-19 05:25:39.0 -0500
 config.h.fixed 2010-01-04 22:02:01.0 -0500
+@@ -95,8 +95,8 @@
+ #define TUBESIZE6000/* Maximum screen size for visual */
+ #else /* VMUNIX */
+ #define TUBELINES   100
+-#define TUBECOLS160
+-#define TUBESIZE16000
++#define TUBECOLS320
++#define TUBESIZE32000
+ #endif/* VMUNIX */
+ 
+ /*

Copied: vi/repos/core-i686/navkeys.patch (from rev 237918, 
vi/trunk/navkeys.patch)
===
--- core-i686/navkeys.patch (rev 0)
+++ core-i686/navkeys.patch 2015-04-22 18:04:36 UTC (rev 237920)
@@ -0,0 +1,55 @@
+diff -ru ex-050325/ex_tty.c ex-050325-du/ex_tty.c
+--- ex-050325/ex_tty.c 2005-03-04 13:42:58.0 +0100
 ex-050325-du/ex_tty.c  2009-06-25 20:06:57.0 +0200
+@@ -132,7 +132,8 @@
+   ED, EI, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9,
+   HO, IC, IM, IP, KD, KE, KH, KL, KR, KS, KU, LL, ND, xNL,
+   xPC, RC, SC, SE, SF, SO, SR, TA, TE, TI, UP, VB, VS, VE,
+-  AL_PARM, DL_PARM, UP_PARM, DOWN_PARM, LEFT_PARM, RIGHT_PARM
++  AL_PARM, DL_PARM, UP_PARM, DOWN_PARM, LEFT_PARM, RIGHT_PARM,
++  kI, kD, kh, at7, kP, kN
+ };
+ bool *sflags[] = {
+   AM, BS, DA, DB, EO, HC,
+@@ -170,7 +171,12 @@
+   addmac1(KD, j, down, arrows, 1);
+   addmac1(KL, h, left, arrows, 1);
+   addmac1(KR, l, right, arrows, 1);
+-  addmac1(KH, H, home, arrows, 1);
++  addmac1(kI, i, insert, arrows, 1);
++  addmac1(kD, x, delete, arrows, 1);
++  addmac1(kh, ^, home, arrows, 1);
++  

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

2015-04-22 Thread Andreas Radke
Date: Wednesday, April 22, 2015 @ 20:04:47
  Author: andyrtr
Revision: 237921

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

Added:
  vigra/repos/staging-i686/
  vigra/repos/staging-i686/PKGBUILD
(from rev 237920, vigra/trunk/PKGBUILD)
  vigra/repos/staging-i686/vigra-1.7.1.gcc460.patch
(from rev 237920, vigra/trunk/vigra-1.7.1.gcc460.patch)
  vigra/repos/staging-x86_64/
  vigra/repos/staging-x86_64/PKGBUILD
(from rev 237920, vigra/trunk/PKGBUILD)
  vigra/repos/staging-x86_64/vigra-1.7.1.gcc460.patch
(from rev 237920, vigra/trunk/vigra-1.7.1.gcc460.patch)

-+
 staging-i686/PKGBUILD   |   64 ++
 staging-i686/vigra-1.7.1.gcc460.patch   |   33 +++
 staging-x86_64/PKGBUILD |   64 ++
 staging-x86_64/vigra-1.7.1.gcc460.patch |   33 +++
 4 files changed, 194 insertions(+)

Copied: vigra/repos/staging-i686/PKGBUILD (from rev 237920, 
vigra/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-04-22 18:04:47 UTC (rev 237921)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
+
+pkgbase=vigra
+pkgname=('vigra' 'vigra-doc')
+pkgver=1.10.0
+pkgrel=6
+arch=('i686' 'x86_64')
+url=http://hci.iwr.uni-heidelberg.de/vigra/;
+license=('custom:MIT')
+makedepends=(# runtime deps
+ 'libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw'
+# additional makedeps
+ 'cmake' 'python2-nose' 'doxygen' 'python2-sphinx' 'boost' 
'python2-numpy')
+source=(https://github.com/ukoethe/vigra/releases/download/Version-${pkgver//./-}/${pkgname}-${pkgver}-src-with-docu.tar.gz)
+md5sums=('85e2968e4ee5f9541b5dd8b3fb9cc433')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+  -DWITH_OPENEXR=true \
+  -DWITH_VIGRANUMPY=1 \
+  -DDOCINSTALL=share/doc
+  make
+}
+
+#check() {
+#  cd ${srcdir}/${pkgname}-${pkgver}
+#  make -j1 -k check #|| /bin/true # i686 fails
+#}
+
+package_vigra() {
+  pkgdesc=Computer vision library
+  depends=('libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw')
+  optdepends=('python2: for python bindings'
+  'boost-libs: for python bindings')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  # license
+  install -D -m644 LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  
+  # remove doc
+  rm -rf ${pkgdir}/usr/share/doc
+  
+  #fix shebang for python2
+  sed -i 's|python$|python2|' $pkgdir/usr/bin/vigra-config
+}
+
+package_vigra-doc() {
+  pkgdesc=Computer vision library - documentation and examples
+  #depends=('vigra')
+  #arch=('any')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  # cleanup
+  rm -rf ${pkgdir}/usr/{bin,include,lib}
+
+  # license
+  install -D -m644 LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: vigra/repos/staging-i686/vigra-1.7.1.gcc460.patch (from rev 237920, 
vigra/trunk/vigra-1.7.1.gcc460.patch)
===
--- staging-i686/vigra-1.7.1.gcc460.patch   (rev 0)
+++ staging-i686/vigra-1.7.1.gcc460.patch   2015-04-22 18:04:47 UTC (rev 
237921)
@@ -0,0 +1,33 @@
+diff -baur vigra-1.7.1.old/include/vigra/random_forest.hxx 
vigra-1.7.1/include/vigra/random_forest.hxx
+--- vigra-1.7.1.old/include/vigra/random_forest.hxx2010-12-03 
17:40:34.0 +
 vigra-1.7.1/include/vigra/random_forest.hxx2011-01-28 
00:16:32.0 +
+@@ -43,6 +43,7 @@
+ #include set
+ #include list
+ #include numeric
++#include stddef.h
+ #include mathutil.hxx
+ #include array_vector.hxx
+ #include sized_int.hxx
+diff -baur vigra-1.7.1.old/include/vigra/sifImport.hxx 
vigra-1.7.1/include/vigra/sifImport.hxx
+--- vigra-1.7.1.old/include/vigra/sifImport.hxx2010-12-03 
17:40:34.0 +
 vigra-1.7.1/include/vigra/sifImport.hxx2011-01-28 00:23:31.0 
+
+@@ -57,6 +57,7 @@
+ #include fstream
+ #include cstring
+ #include vector 
++#include stddef.h
+ #include vigra/multi_array.hxx
+ 
+ namespace vigra {
+diff -baur vigra-1.7.1.old/include/vigra/multi_iterator.hxx 
vigra-1.7.1/include/vigra/multi_iterator.hxx
+--- vigra-1.7.1.old/include/vigra/multi_iterator.hxx   2010-12-03 
17:40:34.0 +
 vigra-1.7.1/include/vigra/multi_iterator.hxx   2011-01-28 
00:23:31.0 +
+@@ -41,6 +41,7 @@
+ #define VIGRA_MULTI_ITERATOR_HXX
+ 
+ #include sys/types.h
++#include stddef.h
+ #include tinyvector.hxx
+ #include iteratortags.hxx
+ 

Copied: vigra/repos/staging-x86_64/PKGBUILD (from rev 237920, 
vigra/trunk/PKGBUILD)

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

2015-04-22 Thread Andreas Radke
Date: Wednesday, April 22, 2015 @ 19:49:46
  Author: andyrtr
Revision: 237915

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

Added:
  hplip/repos/extra-i686/PKGBUILD
(from rev 237914, hplip/trunk/PKGBUILD)
  hplip/repos/extra-i686/disable_upgrade.patch
(from rev 237914, hplip/trunk/disable_upgrade.patch)
  hplip/repos/extra-i686/hplip.install
(from rev 237914, hplip/trunk/hplip.install)
  hplip/repos/extra-x86_64/PKGBUILD
(from rev 237914, hplip/trunk/PKGBUILD)
  hplip/repos/extra-x86_64/disable_upgrade.patch
(from rev 237914, hplip/trunk/disable_upgrade.patch)
  hplip/repos/extra-x86_64/hplip.install
(from rev 237914, hplip/trunk/hplip.install)
Deleted:
  hplip/repos/extra-i686/PKGBUILD
  hplip/repos/extra-i686/disable_upgrade.patch
  hplip/repos/extra-i686/hplip.install
  hplip/repos/extra-x86_64/PKGBUILD
  hplip/repos/extra-x86_64/disable_upgrade.patch
  hplip/repos/extra-x86_64/hplip.install

+
 /PKGBUILD  |  168 +++
 /disable_upgrade.patch |   28 +
 /hplip.install |   36 +++
 extra-i686/PKGBUILD|   84 -
 extra-i686/disable_upgrade.patch   |   14 --
 extra-i686/hplip.install   |   18 ---
 extra-x86_64/PKGBUILD  |   84 -
 extra-x86_64/disable_upgrade.patch |   14 --
 extra-x86_64/hplip.install |   18 ---
 9 files changed, 232 insertions(+), 232 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-22 17:49:26 UTC (rev 237914)
+++ extra-i686/PKGBUILD 2015-04-22 17:49:46 UTC (rev 237915)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Maintainer: Tom Gundersen t...@jklm.no
-# Contributor : Rémy Oudompheng r...@archlinux.org
-# Contributor: Morgan LEFIEUX com...@archlinuxfr.org
-
-pkgname=hplip
-pkgver=3.15.2
-pkgrel=3
-pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
-arch=('i686' 'x86_64')
-url=http://hplipopensource.com;
-license=('GPL')
-depends=('python' 'ghostscript=8.64-6' 'net-snmp=5.7.1' 'wget' 
'foomatic-db-engine')
-makedepends=('python-pyqt4' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
-optdepends=('cups: for printing support'
-'python-dbus: for dbus support'
-'sane: for scanner support'
-'python-pillow: for commandline scanning support'
-'python-reportlab: for pdf output in hp-scan'
-'rpcbind: for network support'
-'python-pyqt4: for running GUI and hp-toolbox'
-'python-gobject: for running hp-toolbox'
-'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
-'libusb: for advanced usb support')
-install=hplip.install
-source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
-disable_upgrade.patch)
-sha1sums=('efebad73f29ab9f77d5a866c1c5d3857cc5f1df5'
-  'SKIP'
-  '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
-validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) hp...@hp.com
-
-prepare() {
- cd $pkgname-$pkgver
- 
- # disable insecure update - https://bugs.archlinux.org/task/38083
- patch -Np0 -i ${srcdir}/disable_upgrade.patch
- 
- # https://bugs.archlinux.org/task/30085 - hack found in Gentoo
- # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip
- # The hpcups driver does not use foomatic-rip
-   local i
-   for i in ppd/hpijs/*.ppd.gz ; do
-   rm -f ${i}.temp
-   gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | \
-   gzip  ${i}.temp || return 1
-   mv ${i}.temp ${i}
-   done
-   
- export AUTOMAKE='automake --foreign'
- autoreconf --force --install
-}
-
-build() {
- cd $pkgname-$pkgver
- ./configure --prefix=/usr \
- --enable-qt4 \
- --disable-foomatic-rip-hplip-install \
- --enable-foomatic-ppd-install \
- --enable-hpcups-install \
- --enable-new-hpcups \
- --enable-cups-ppd-install \
- --enable-cups-drv-install \
- --enable-hpijs-install \
- --enable-foomatic-drv-install \
- --enable-pp-build #--help
- make
-}
-
-package() {
- #cd $pkgname-$pkgver
- cd $pkgname-${pkgver/.a/a}
- make rulesdir=/usr/lib/udev/rules.d DESTDIR=$pkgdir/ install
- 
- # remove config provided by sane and autostart of hp-daemon
- rm -rf $pkgdir/etc/{sane.d,xdg}
- 
- # remove HAL .fdi file because HAL is no longer used
- rm -vrf $pkgdir/usr/share/hal
- 
- # remove rc script
- rm -vrf $pkgdir/etc/init.d
-}

Copied: hplip/repos/extra-i686/PKGBUILD (from rev 237914, hplip/trunk/PKGBUILD)
===
--- 

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

2015-04-22 Thread Andreas Radke
Date: Wednesday, April 22, 2015 @ 19:56:52
  Author: andyrtr
Revision: 237917

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

Added:
  libinput/repos/extra-i686/PKGBUILD
(from rev 237916, libinput/trunk/PKGBUILD)
  libinput/repos/extra-x86_64/PKGBUILD
(from rev 237916, libinput/trunk/PKGBUILD)
Deleted:
  libinput/repos/extra-i686/PKGBUILD
  libinput/repos/extra-i686/fix_crash_for_missing_ABS_X_Y.diff
  libinput/repos/extra-x86_64/PKGBUILD
  libinput/repos/extra-x86_64/fix_crash_for_missing_ABS_X_Y.diff

-+
 /PKGBUILD   |   70 +
 extra-i686/PKGBUILD |   43 
 extra-i686/fix_crash_for_missing_ABS_X_Y.diff   |  114 --
 extra-x86_64/PKGBUILD   |   43 
 extra-x86_64/fix_crash_for_missing_ABS_X_Y.diff |  114 --
 5 files changed, 70 insertions(+), 314 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-22 17:56:41 UTC (rev 237916)
+++ extra-i686/PKGBUILD 2015-04-22 17:56:52 UTC (rev 237917)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Maintainer: Jan de Groot
-
-pkgname=libinput
-pkgver=0.13.0
-pkgrel=2
-pkgdesc=library that handles input devices for display servers and other 
applications that need to directly deal with input devices.
-arch=(i686 x86_64)
-url=http://www.freedesktop.org/wiki/Software/libinput/;
-license=(custom:X11)
-depends=('mtdev' 'libsystemd' 'libevdev')
-makedepends=('systemd')
-options=('!libtool')
-source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
-fix_crash_for_missing_ABS_X_Y.diff)
-sha256sums=('6cecaf7fde525f1d81474cbd495ce526d5e34c845d3e9d6f3e2565b7048cc61a'
-'SKIP'
-'c1d19d53f81ba0f98911917dd3239e9e52448f6d45d961e90dadbefb707316f9')
-validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) off...@who-t.net
-
-prepare() {
-  cd $pkgname-$pkgver
-  # https://bugs.freedesktop.org/show_bug.cgi?id=89783#c15 - FS#44416
-  patch -Np1 -i ${srcdir}/fix_crash_for_missing_ABS_X_Y.diff
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}

Copied: libinput/repos/extra-i686/PKGBUILD (from rev 237916, 
libinput/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-22 17:56:52 UTC (rev 237917)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=0.14.1
+pkgrel=1
+pkgdesc=library that handles input devices for display servers and other 
applications that need to directly deal with input devices.
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'libsystemd' 'libevdev')
+makedepends=('systemd')
+options=('!libtool')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('2bed202ebe2d5026950d6f9d2ac0f0160d12f61c5a0f6d0d6ef671bbb02c1b64'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) off...@who-t.net
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}

Deleted: extra-i686/fix_crash_for_missing_ABS_X_Y.diff
===
--- extra-i686/fix_crash_for_missing_ABS_X_Y.diff   2015-04-22 17:56:41 UTC 
(rev 237916)
+++ extra-i686/fix_crash_for_missing_ABS_X_Y.diff   2015-04-22 17:56:52 UTC 
(rev 237917)
@@ -1,114 +0,0 @@
-From 67208c0b1acd7b6db8a853994f7e7c9be94e0178 Mon Sep 17 00:00:00 2001
-From: Peter Hutterer peter.hutte...@who-t.net
-Date: Wed, 8 Apr 2015 09:54:29 +1000
-Subject: evdev: fix crash for missing ABS_X/Y
-
-libevdev_set_abs_info() is a noop if the event code isn't enabled on the
-device. This leaves ABS_X/Y on NULL, causing a crash later when dereferencing
-the absinfo.
-
-https://bugs.freedesktop.org/show_bug.cgi?id=89783
-
-Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
-Reviewed-by: Hans de Goede hdego...@redhat.com
-
-diff --git a/src/evdev.c b/src/evdev.c
-index a972b9d..115dc99 100644
 a/src/evdev.c
-+++ b/src/evdev.c
-@@ -1444,9 +1444,9 @@ evdev_fix_android_mt(struct evdev_device *device)
-   !libevdev_has_event_code(evdev, EV_ABS, 

[arch-commits] Commit in libinput/trunk (PKGBUILD fix_crash_for_missing_ABS_X_Y.diff)

2015-04-22 Thread Andreas Radke
Date: Wednesday, April 22, 2015 @ 19:56:41
  Author: andyrtr
Revision: 237916

upgpkg: libinput 0.14.1-1

upstream update 0.14.1

Modified:
  libinput/trunk/PKGBUILD
Deleted:
  libinput/trunk/fix_crash_for_missing_ABS_X_Y.diff

+
 PKGBUILD   |   18 +
 fix_crash_for_missing_ABS_X_Y.diff |  114 ---
 2 files changed, 5 insertions(+), 127 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 17:49:46 UTC (rev 237915)
+++ PKGBUILD2015-04-22 17:56:41 UTC (rev 237916)
@@ -3,8 +3,8 @@
 # Maintainer: Jan de Groot
 
 pkgname=libinput
-pkgver=0.13.0
-pkgrel=2
+pkgver=0.14.1
+pkgrel=1
 pkgdesc=library that handles input devices for display servers and other 
applications that need to directly deal with input devices.
 arch=(i686 x86_64)
 url=http://www.freedesktop.org/wiki/Software/libinput/;
@@ -12,19 +12,11 @@
 depends=('mtdev' 'libsystemd' 'libevdev')
 makedepends=('systemd')
 options=('!libtool')
-source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
-fix_crash_for_missing_ABS_X_Y.diff)
-sha256sums=('6cecaf7fde525f1d81474cbd495ce526d5e34c845d3e9d6f3e2565b7048cc61a'
-'SKIP'
-'c1d19d53f81ba0f98911917dd3239e9e52448f6d45d961e90dadbefb707316f9')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('2bed202ebe2d5026950d6f9d2ac0f0160d12f61c5a0f6d0d6ef671bbb02c1b64'
+'SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) off...@who-t.net
 
-prepare() {
-  cd $pkgname-$pkgver
-  # https://bugs.freedesktop.org/show_bug.cgi?id=89783#c15 - FS#44416
-  patch -Np1 -i ${srcdir}/fix_crash_for_missing_ABS_X_Y.diff
-}
-
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --disable-static

Deleted: fix_crash_for_missing_ABS_X_Y.diff
===
--- fix_crash_for_missing_ABS_X_Y.diff  2015-04-22 17:49:46 UTC (rev 237915)
+++ fix_crash_for_missing_ABS_X_Y.diff  2015-04-22 17:56:41 UTC (rev 237916)
@@ -1,114 +0,0 @@
-From 67208c0b1acd7b6db8a853994f7e7c9be94e0178 Mon Sep 17 00:00:00 2001
-From: Peter Hutterer peter.hutte...@who-t.net
-Date: Wed, 8 Apr 2015 09:54:29 +1000
-Subject: evdev: fix crash for missing ABS_X/Y
-
-libevdev_set_abs_info() is a noop if the event code isn't enabled on the
-device. This leaves ABS_X/Y on NULL, causing a crash later when dereferencing
-the absinfo.
-
-https://bugs.freedesktop.org/show_bug.cgi?id=89783
-
-Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
-Reviewed-by: Hans de Goede hdego...@redhat.com
-
-diff --git a/src/evdev.c b/src/evdev.c
-index a972b9d..115dc99 100644
 a/src/evdev.c
-+++ b/src/evdev.c
-@@ -1444,9 +1444,9 @@ evdev_fix_android_mt(struct evdev_device *device)
-   !libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_Y))
-   return;
- 
--  libevdev_set_abs_info(evdev, ABS_X,
-+  libevdev_enable_event_code(evdev, EV_ABS, ABS_X,
- libevdev_get_abs_info(evdev, ABS_MT_POSITION_X));
--  libevdev_set_abs_info(evdev, ABS_Y,
-+  libevdev_enable_event_code(evdev, EV_ABS, ABS_Y,
- libevdev_get_abs_info(evdev, ABS_MT_POSITION_Y));
- }
- 
--- 
-cgit v0.10.2
-
-From e2b13e602220a906584b21d51bc5472577be4372 Mon Sep 17 00:00:00 2001
-From: Peter Hutterer peter.hutte...@who-t.net
-Date: Wed, 8 Apr 2015 09:54:30 +1000
-Subject: evdev: fix handling of fake MT devices without ABS_X/Y
-
-The previous code didn't handle fake MT devices without ABS_X/Y axes (like the
-Razer BlackWidow keyboard). Those devices usually start at ABS_MISC and go up
-to ABS_MAX, thus triggering the Android check.
-
-Split the condition up: if the device is not a fake MT device we check for the
-Android missing axes first and add them. Then we proceed, but now we know that
-the ABS_X axis must exist on any valid device.
-
-https://bugs.freedesktop.org/show_bug.cgi?id=89783
-
-Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
-Reviewed-by: Hans de Goede hdego...@redhat.com
-
-diff --git a/src/evdev.c b/src/evdev.c
-index 115dc99..16ebb9c 100644
 a/src/evdev.c
-+++ b/src/evdev.c
-@@ -1431,6 +1431,18 @@ evdev_device_get_udev_tags(struct evdev_device *device,
-   return tags;
- }
- 
-+/* Fake MT devices have the ABS_MT_SLOT bit set because of
-+   the limited ABS_* range - they aren't MT devices, they
-+   just have too many ABS_ axes */
-+static inline bool
-+evdev_is_fake_mt_device(struct evdev_device *device)
-+{
-+  struct libevdev *evdev = device-evdev;
-+
-+  return libevdev_has_event_code(evdev, EV_ABS, ABS_MT_SLOT) 
-+  libevdev_get_num_slots(evdev) == -1;
-+}
-+
- static inline void
- evdev_fix_android_mt(struct evdev_device *device)
- {
-@@ -1441,7 +1453,8 @@ evdev_fix_android_mt(struct evdev_device *device)
- 

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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 20:22:47
  Author: jelle
Revision: 131970

upgpkg: python2-tagpy 2013.1-4

boost 1.58.0 rebuild

Modified:
  python2-tagpy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 18:19:02 UTC (rev 131969)
+++ PKGBUILD2015-04-22 18:22:47 UTC (rev 131970)
@@ -6,7 +6,7 @@
 
 pkgname=python2-tagpy
 pkgver=2013.1
-pkgrel=3
+pkgrel=4
 pkgdesc='Python bindings for TagLib'
 arch=('x86_64' 'i686')
 url='http://pypi.python.org/pypi/tagpy'


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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 21:03:36
  Author: foutrelis
Revision: 237925

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

Added:
  ekiga/repos/staging-i686/
  ekiga/repos/staging-i686/PKGBUILD
(from rev 237924, ekiga/trunk/PKGBUILD)
  ekiga/repos/staging-i686/ekiga.install
(from rev 237924, ekiga/trunk/ekiga.install)
  ekiga/repos/staging-x86_64/
  ekiga/repos/staging-x86_64/PKGBUILD
(from rev 237924, ekiga/trunk/PKGBUILD)
  ekiga/repos/staging-x86_64/ekiga.install
(from rev 237924, ekiga/trunk/ekiga.install)

--+
 staging-i686/PKGBUILD|   35 +++
 staging-i686/ekiga.install   |   22 ++
 staging-x86_64/PKGBUILD  |   35 +++
 staging-x86_64/ekiga.install |   22 ++
 4 files changed, 114 insertions(+)

Copied: ekiga/repos/staging-i686/PKGBUILD (from rev 237924, 
ekiga/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-04-22 19:03:36 UTC (rev 237925)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Tom K t...@runbox.com
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=12
+pkgdesc=VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)
+url=http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'gnome-icon-theme' 'avahi' 
'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+install=ekiga.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d $pkgdir/usr/share/gconf/schemas
+  gconf-merge-schema $pkgdir/usr/share/gconf/schemas/$pkgname.schemas 
--domain ekiga $pkgdir/etc/gconf/schemas/*.schemas
+  rm -f $pkgdir/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/staging-i686/ekiga.install (from rev 237924, 
ekiga/trunk/ekiga.install)
===
--- staging-i686/ekiga.install  (rev 0)
+++ staging-i686/ekiga.install  2015-04-22 19:03:36 UTC (rev 237925)
@@ -0,0 +1,22 @@
+pkgname=ekiga
+
+post_install() {
+  gconfpkg --install $pkgname
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  gconfpkg --uninstall $pkgname
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}

Copied: ekiga/repos/staging-x86_64/PKGBUILD (from rev 237924, 
ekiga/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-04-22 19:03:36 UTC (rev 237925)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Tom K t...@runbox.com
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=12
+pkgdesc=VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)
+url=http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'gnome-icon-theme' 'avahi' 
'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+install=ekiga.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d $pkgdir/usr/share/gconf/schemas
+  gconf-merge-schema $pkgdir/usr/share/gconf/schemas/$pkgname.schemas 
--domain ekiga $pkgdir/etc/gconf/schemas/*.schemas
+  rm -f $pkgdir/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/staging-x86_64/ekiga.install (from rev 237924, 
ekiga/trunk/ekiga.install)
===
--- staging-x86_64/ekiga.install(rev 0)
+++ 

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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 21:03:22
  Author: foutrelis
Revision: 237924

upgpkg: ekiga 4.0.1-12

boost 1.58.0 rebuild.

Modified:
  ekiga/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 18:11:51 UTC (rev 237923)
+++ PKGBUILD2015-04-22 19:03:22 UTC (rev 237924)
@@ -4,7 +4,7 @@
 
 pkgname=ekiga
 pkgver=4.0.1
-pkgrel=11
+pkgrel=12
 pkgdesc=VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)
 url=http://www.ekiga.org;
 license=(GPL)


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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 21:12:52
  Author: foutrelis
Revision: 237936

upgpkg: licq 1.8.2-5

boost 1.58.0 rebuild.

Modified:
  licq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 19:04:26 UTC (rev 237935)
+++ PKGBUILD2015-04-22 19:12:52 UTC (rev 237936)
@@ -3,7 +3,7 @@
 
 pkgname=licq
 pkgver=1.8.2
-pkgrel=4
+pkgrel=5
 pkgdesc=Advanced graphical ICQ clone and more for Unix
 arch=('i686' 'x86_64')
 url=http://www.licq.org;


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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 20:17:38
  Author: jelle
Revision: 131966

upgpkg: python-pyopencl 1:2014.1-3

boost 1.58.0 rebuild

Modified:
  python-pyopencl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 17:55:30 UTC (rev 131965)
+++ PKGBUILD2015-04-22 18:17:38 UTC (rev 131966)
@@ -4,7 +4,7 @@
 pkgbase=python-pyopencl
 pkgname=('python2-pyopencl' 'python-pyopencl' 'pyopencl-headers')
 pkgver=2014.1
-pkgrel=2
+pkgrel=3
 pkgdesc=A complete, object-oriented language binding of OpenCL to Python
 arch=('i686' 'x86_64')
 url=http://mathema.tician.de/software/pyopencl;


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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 20:17:45
  Author: jelle
Revision: 131967

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

Added:
  python-pyopencl/repos/community-staging-i686/
  python-pyopencl/repos/community-staging-i686/LICENSE.txt
(from rev 131966, python-pyopencl/trunk/LICENSE.txt)
  python-pyopencl/repos/community-staging-i686/PKGBUILD
(from rev 131966, python-pyopencl/trunk/PKGBUILD)
  python-pyopencl/repos/community-staging-x86_64/
  python-pyopencl/repos/community-staging-x86_64/LICENSE.txt
(from rev 131966, python-pyopencl/trunk/LICENSE.txt)
  python-pyopencl/repos/community-staging-x86_64/PKGBUILD
(from rev 131966, python-pyopencl/trunk/PKGBUILD)

--+
 community-staging-i686/LICENSE.txt   |   20 +
 community-staging-i686/PKGBUILD  |   71 +
 community-staging-x86_64/LICENSE.txt |   20 +
 community-staging-x86_64/PKGBUILD|   71 +
 4 files changed, 182 insertions(+)

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

Copied: python-pyopencl/repos/community-staging-i686/PKGBUILD (from rev 131966, 
python-pyopencl/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 18:17:45 UTC (rev 131967)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+
+pkgbase=python-pyopencl
+pkgname=('python2-pyopencl' 'python-pyopencl' 'pyopencl-headers')
+pkgver=2014.1
+pkgrel=3
+pkgdesc=A complete, object-oriented language binding of OpenCL to Python
+arch=('i686' 'x86_64')
+url=http://mathema.tician.de/software/pyopencl;
+license=('custom')
+epoch=1
+makedepends=('boost-libs' 'ctags' 'python2-setuptools' 'python-setuptools' 
'libcl' 'opencl-headers' 'mesa' 'boost' 'python2-mako' 'python-mako' 
'python-numpy' 'python2-numpy')
+source=(http://pypi.python.org/packages/source/p/pyopencl/pyopencl-${pkgver}.tar.gz;
+'LICENSE.txt')
+sha1sums=('d11837bf6acfb5d686d8e048a45ddac4fff2d890'
+  '2e6966b3d9b15603ce2c3ff79eeadd63c5d066b7')
+
+build() {
+   cd $srcdir
+
+   cp -a pyopencl-$pkgver{,-python2}
+
+   cd ${srcdir}/pyopencl-${pkgver}
+   python3 ./configure.py --cl-enable-gl --no-use-shipped-boost 
--boost-python-libname=boost_python3
+   python3 setup.py build
+
+   cd $srcdir/pyopencl-$pkgver-python2
+   python2 ./configure.py --cl-enable-gl --no-use-shipped-boost 
--boost-python-libname=boost_python
+   python2 setup.py build
+}
+
+check(){
+   cd ${srcdir}/pyopencl-${pkgver}
+   python3 setup.py test
+
+   cd $srcdir/pyopencl-$pkgver-python2
+   python2 setup.py test
+}
+
+package_python-pyopencl() {
+   depends=('libcl' 'opencl-headers' 'mesa' 'boost-libs' 'python' 
'python-numpy' 'python-mako' 'python-pytools' 'pyopencl-headers' 
'python-setuptools')
+
+   cd ${srcdir}/pyopencl-${pkgver}
+   python3 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+
+   rm -fr ${pkgdir}/usr/include
+
+   install -D -m644 $srcdir/LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-pyopencl() {
+   depends=('libcl' 'opencl-headers' 'mesa' 'boost-libs' 'python2' 
'python2-numpy' 'python2-mako' 'python2-pytools' 'pyopencl-headers' 
'python2-setuptools')
+
+   cd ${srcdir}/pyopencl-${pkgver}-python2
+   python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+
+rm -fr ${pkgdir}/usr/include/
+
+   install -D -m644 $srcdir/LICENSE.txt 

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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 20:22:55
  Author: jelle
Revision: 131971

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

Added:
  python2-tagpy/repos/community-staging-i686/
  python2-tagpy/repos/community-staging-i686/PKGBUILD
(from rev 131970, python2-tagpy/trunk/PKGBUILD)
  python2-tagpy/repos/community-staging-x86_64/
  python2-tagpy/repos/community-staging-x86_64/PKGBUILD
(from rev 131970, python2-tagpy/trunk/PKGBUILD)

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

Copied: python2-tagpy/repos/community-staging-i686/PKGBUILD (from rev 131970, 
python2-tagpy/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 18:22:55 UTC (rev 131971)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Callan Barrett wizzomafi...@gmail.com
+# Contributor: Scott Horowitz stonecr...@gmail.com
+
+pkgname=python2-tagpy
+pkgver=2013.1
+pkgrel=4
+pkgdesc='Python bindings for TagLib'
+arch=('x86_64' 'i686')
+url='http://pypi.python.org/pypi/tagpy'
+license=('MIT')
+depends=('python2' 'taglib' 'boost-libs')
+makedepends=('python2-setuptools' 'boost')
+replaces=('tagpy')
+conflicts=('tagpy')
+source=(http://pypi.python.org/packages/source/t/tagpy/tagpy-$pkgver.tar.gz;)
+sha256sums=('80481c78ce34878e7a1f3231acd781a3bf1b0b569c70ce0e8d63af58061152f4')
+
+prepare() {
+  cd tagpy-$pkgver
+
+  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+$(find . -name '*.py') 
+}
+
+build() {
+  cd tagpy-$pkgver
+
+  ./configure.py \
+--taglib-lib-dir=/usr/lib/ \
+--taglib-inc-dir=/usr/include/taglib/ \
+--boost-inc-dir=/usr/include/boost/ \
+--boost-lib-dir=/usr/lib/ \
+--boost-python-libname=boost_python
+  python2 setup.py build
+}
+
+check(){
+  cd tagpy-$pkgver
+
+  python2 setup.py test
+}
+
+package(){
+  cd tagpy-$pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: python2-tagpy/repos/community-staging-x86_64/PKGBUILD (from rev 131970, 
python2-tagpy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 18:22:55 UTC (rev 131971)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Callan Barrett wizzomafi...@gmail.com
+# Contributor: Scott Horowitz stonecr...@gmail.com
+
+pkgname=python2-tagpy
+pkgver=2013.1
+pkgrel=4
+pkgdesc='Python bindings for TagLib'
+arch=('x86_64' 'i686')
+url='http://pypi.python.org/pypi/tagpy'
+license=('MIT')
+depends=('python2' 'taglib' 'boost-libs')
+makedepends=('python2-setuptools' 'boost')
+replaces=('tagpy')
+conflicts=('tagpy')
+source=(http://pypi.python.org/packages/source/t/tagpy/tagpy-$pkgver.tar.gz;)
+sha256sums=('80481c78ce34878e7a1f3231acd781a3bf1b0b569c70ce0e8d63af58061152f4')
+
+prepare() {
+  cd tagpy-$pkgver
+
+  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+$(find . -name '*.py') 
+}
+
+build() {
+  cd tagpy-$pkgver
+
+  ./configure.py \
+--taglib-lib-dir=/usr/lib/ \
+--taglib-inc-dir=/usr/include/taglib/ \
+--boost-inc-dir=/usr/include/boost/ \
+--boost-lib-dir=/usr/lib/ \
+--boost-python-libname=boost_python
+  python2 setup.py build
+}
+
+check(){
+  cd tagpy-$pkgver
+
+  python2 setup.py test
+}
+
+package(){
+  cd tagpy-$pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 20:27:30
  Author: jelle
Revision: 131973

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

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

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

Copied: mupen64plus/repos/community-staging-i686/PKGBUILD (from rev 131972, 
mupen64plus/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 18:27:30 UTC (rev 131973)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Laurent Carlier lordhea...@gmail.com
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Zephyr
+
+pkgname=mupen64plus
+pkgver=2.0
+pkgrel=5
+pkgdesc='Nintendo64 Emulator'
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/mupen64plus/'
+license=('GPL')
+depends=('glu' 'libsamplerate' 'libpng' 'sdl' 'freetype2' 'boost-libs')
+makedepends=('mesa' 'boost')
+source=(http://mupen64plus.googlecode.com/files/mupen64plus-bundle-src-${pkgver}.tar.gz;)
+md5sums=('f855b4233faa9616b780c364fc4a9a9a')
+
+build() {
+  cd mupen64plus-bundle-src-${pkgver}
+
+  sh m64p_build.sh
+}
+
+package() {
+  cd mupen64plus-bundle-src-$pkgver
+  
+  # set LDCONFIG since we are using fakeroot and scripts run root commands by 
checking the uid
+  ./m64p_install.sh DESTDIR=$pkgdir PREFIX='/usr' MANDIR='/usr/share/man' 
LDCONFIG='true'
+}
+
+# vim: ts=2:sw=2:et

Copied: mupen64plus/repos/community-staging-x86_64/PKGBUILD (from rev 131972, 
mupen64plus/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 18:27:30 UTC (rev 131973)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Laurent Carlier lordhea...@gmail.com
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Zephyr
+
+pkgname=mupen64plus
+pkgver=2.0
+pkgrel=5
+pkgdesc='Nintendo64 Emulator'
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/mupen64plus/'
+license=('GPL')
+depends=('glu' 'libsamplerate' 'libpng' 'sdl' 'freetype2' 'boost-libs')
+makedepends=('mesa' 'boost')
+source=(http://mupen64plus.googlecode.com/files/mupen64plus-bundle-src-${pkgver}.tar.gz;)
+md5sums=('f855b4233faa9616b780c364fc4a9a9a')
+
+build() {
+  cd mupen64plus-bundle-src-${pkgver}
+
+  sh m64p_build.sh
+}
+
+package() {
+  cd mupen64plus-bundle-src-$pkgver
+  
+  # set LDCONFIG since we are using fakeroot and scripts run root commands by 
checking the uid
+  ./m64p_install.sh DESTDIR=$pkgdir PREFIX='/usr' MANDIR='/usr/share/man' 
LDCONFIG='true'
+}
+
+# vim: ts=2:sw=2:et


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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 20:27:23
  Author: jelle
Revision: 131972

upgpkg: mupen64plus 2.0-5

boost 1.58.0 rebuild

Modified:
  mupen64plus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 18:22:55 UTC (rev 131971)
+++ PKGBUILD2015-04-22 18:27:23 UTC (rev 131972)
@@ -7,7 +7,7 @@
 
 pkgname=mupen64plus
 pkgver=2.0
-pkgrel=4
+pkgrel=5
 pkgdesc='Nintendo64 Emulator'
 arch=('i686' 'x86_64')
 url='http://code.google.com/p/mupen64plus/'


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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 20:54:34
  Author: jelle
Revision: 131979

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

Added:
  glom/repos/community-staging-i686/
  glom/repos/community-staging-i686/PKGBUILD
(from rev 131978, glom/trunk/PKGBUILD)
  glom/repos/community-staging-i686/glom.changelog
(from rev 131978, glom/trunk/glom.changelog)
  glom/repos/community-staging-i686/glom.install
(from rev 131978, glom/trunk/glom.install)
  glom/repos/community-staging-x86_64/
  glom/repos/community-staging-x86_64/PKGBUILD
(from rev 131978, glom/trunk/PKGBUILD)
  glom/repos/community-staging-x86_64/glom.changelog
(from rev 131978, glom/trunk/glom.changelog)
  glom/repos/community-staging-x86_64/glom.install
(from rev 131978, glom/trunk/glom.install)

-+
 community-staging-i686/PKGBUILD |   37 ++
 community-staging-i686/glom.changelog   |8 ++
 community-staging-i686/glom.install |   13 ++
 community-staging-x86_64/PKGBUILD   |   37 ++
 community-staging-x86_64/glom.changelog |8 ++
 community-staging-x86_64/glom.install   |   13 ++
 6 files changed, 116 insertions(+)

Copied: glom/repos/community-staging-i686/PKGBUILD (from rev 131978, 
glom/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 18:54:34 UTC (rev 131979)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Roman Kyrylych roman.kyryl...@gmail.com
+# Contributor: William Rea sillywi...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+
+pkgname=glom
+pkgver=1.28.4
+pkgrel=3
+pkgdesc=An easy-to-use database designer and user interface
+arch=('i686' 'x86_64')
+url=http://www.glom.org/;
+license=('GPL')
+depends=('gettext' 'boost-libs' 'libgdamm' 'libxml++' 'python2-gobject' 
'libepc' 'goocanvasmm' 'gtksourceviewmm' 'evince' 'postgresql')
+makedepends=('intltool' 'python-sphinx' 'boost' 'itstool')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/1.28/$pkgname-$pkgver.tar.xz)
+sha256sums=('1dea38ddcef3260b584958b60250a23b924431e57bb1c6e07c02a478869cc159')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+--with-postgres-utils=/usr/bin \
+--disable-scrollkeeper \
+--disable-update-mime-database \
+--disable-static \
+PYTHON=python2
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Copied: glom/repos/community-staging-i686/glom.changelog (from rev 131978, 
glom/trunk/glom.changelog)
===
--- community-staging-i686/glom.changelog   (rev 0)
+++ community-staging-i686/glom.changelog   2015-04-22 18:54:34 UTC (rev 
131979)
@@ -0,0 +1,8 @@
+2015-03-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+* glom-1.28.4-1
+
+2014-11-05 Jaroslav Lichtblau svetlemo...@archlinux.org
+* glom-1.28.0-1
+
+2013-11-11 Jaroslav Lichtblau svetlemo...@archlinux.org
+* glom-1.24.2-1

Copied: glom/repos/community-staging-i686/glom.install (from rev 131978, 
glom/trunk/glom.install)
===
--- community-staging-i686/glom.install (rev 0)
+++ community-staging-i686/glom.install 2015-04-22 18:54:34 UTC (rev 131979)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: glom/repos/community-staging-x86_64/PKGBUILD (from rev 131978, 
glom/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 18:54:34 UTC (rev 131979)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Roman Kyrylych roman.kyryl...@gmail.com
+# Contributor: William Rea sillywi...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+
+pkgname=glom
+pkgver=1.28.4
+pkgrel=3
+pkgdesc=An easy-to-use database designer and user interface
+arch=('i686' 'x86_64')
+url=http://www.glom.org/;
+license=('GPL')
+depends=('gettext' 'boost-libs' 'libgdamm' 'libxml++' 'python2-gobject' 
'libepc' 'goocanvasmm' 'gtksourceviewmm' 'evince' 'postgresql')
+makedepends=('intltool' 'python-sphinx' 'boost' 'itstool')
+install=$pkgname.install
+changelog=$pkgname.changelog

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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 20:54:25
  Author: jelle
Revision: 131978

upgpkg: glom 1.28.4-3

boost 1.58.0 rebuild

Modified:
  glom/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 18:44:53 UTC (rev 131977)
+++ PKGBUILD2015-04-22 18:54:25 UTC (rev 131978)
@@ -6,7 +6,7 @@
 
 pkgname=glom
 pkgver=1.28.4
-pkgrel=2
+pkgrel=3
 pkgdesc=An easy-to-use database designer and user interface
 arch=('i686' 'x86_64')
 url=http://www.glom.org/;


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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 21:00:33
  Author: jelle
Revision: 131982

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

Added:
  encfs/repos/community-staging-i686/PKGBUILD
(from rev 131981, encfs/trunk/PKGBUILD)
  encfs/repos/community-staging-x86_64/PKGBUILD
(from rev 131981, encfs/trunk/PKGBUILD)
Deleted:
  encfs/repos/community-staging-i686/PKGBUILD
  encfs/repos/community-staging-x86_64/PKGBUILD

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

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-04-22 18:59:21 UTC (rev 131981)
+++ community-staging-i686/PKGBUILD 2015-04-22 19:00:33 UTC (rev 131982)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Jaroslaw Swierczynski swier...@aur.archlinux.org
-# Contributor: Sven Kauber, cel...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=encfs
-pkgver=1.8.1
-pkgrel=2
-pkgdesc='Encrypted filesystem in user-space'
-arch=('i686' 'x86_64')
-url='https://vgough.github.io/encfs/'
-license=('LGPL')
-depends=('rlog' 'openssl' 'fuse' 'boost-libs')
-makedepends=('boost' 'autoconf')
-source=($pkgname-$pkgver.tar.gz::https://github.com/vgough/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('ed6b69d8aba06382ad01116bbce2e4ad49f8de85cdf4e2fab7ee4ac82af537e9')
-
-build(){
-  cd ${srcdir}/$pkgname-$pkgver
-
-  autoreconf -if
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  make DESTDIR=${pkgdir} install
-}

Copied: encfs/repos/community-staging-i686/PKGBUILD (from rev 131981, 
encfs/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 19:00:33 UTC (rev 131982)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Jaroslaw Swierczynski swier...@aur.archlinux.org
+# Contributor: Sven Kauber, cel...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=encfs
+pkgver=1.8.1
+pkgrel=2
+pkgdesc='Encrypted filesystem in user-space'
+arch=('i686' 'x86_64')
+url='https://vgough.github.io/encfs/'
+license=('LGPL')
+depends=('rlog' 'openssl' 'fuse' 'boost-libs')
+makedepends=('boost' 'autoconf')
+source=($pkgname-$pkgver.tar.gz::https://github.com/vgough/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('ed6b69d8aba06382ad01116bbce2e4ad49f8de85cdf4e2fab7ee4ac82af537e9')
+
+build(){
+  cd ${srcdir}/$pkgname-$pkgver
+
+  autoreconf -if
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: community-staging-x86_64/PKGBUILD
===
--- community-staging-x86_64/PKGBUILD   2015-04-22 18:59:21 UTC (rev 131981)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 19:00:33 UTC (rev 131982)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Jaroslaw Swierczynski swier...@aur.archlinux.org
-# Contributor: Sven Kauber, cel...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=encfs
-pkgver=1.8.1
-pkgrel=2
-pkgdesc='Encrypted filesystem in user-space'
-arch=('i686' 'x86_64')
-url='https://vgough.github.io/encfs/'
-license=('LGPL')
-depends=('rlog' 'openssl' 'fuse' 'boost-libs')
-makedepends=('boost' 'autoconf')
-source=($pkgname-$pkgver.tar.gz::https://github.com/vgough/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('ed6b69d8aba06382ad01116bbce2e4ad49f8de85cdf4e2fab7ee4ac82af537e9')
-
-build(){
-  cd ${srcdir}/$pkgname-$pkgver
-
-  autoreconf -if
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  make DESTDIR=${pkgdir} install
-}

Copied: encfs/repos/community-staging-x86_64/PKGBUILD (from rev 131981, 
encfs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 19:00:33 UTC (rev 131982)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Jaroslaw Swierczynski swier...@aur.archlinux.org
+# Contributor: Sven Kauber, cel...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=encfs

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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 21:04:05
  Author: foutrelis
Revision: 237932

upgpkg: lyx 2.1.3-2

boost 1.58.0 rebuild.

Modified:
  lyx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 19:04:03 UTC (rev 237931)
+++ PKGBUILD2015-04-22 19:04:05 UTC (rev 237932)
@@ -4,7 +4,7 @@
 
 pkgname=lyx
 pkgver=2.1.3
-pkgrel=1
+pkgrel=2
 pkgdesc=An advanced WYSIWYM document processor  LaTeX front-end
 arch=('i686' 'x86_64')
 url=http://www.lyx.org;


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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 21:04:03
  Author: foutrelis
Revision: 237931

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

Added:
  libtorrent-rasterbar/repos/staging-i686/
  libtorrent-rasterbar/repos/staging-i686/PKGBUILD
(from rev 237930, libtorrent-rasterbar/trunk/PKGBUILD)
  libtorrent-rasterbar/repos/staging-x86_64/
  libtorrent-rasterbar/repos/staging-x86_64/PKGBUILD
(from rev 237930, libtorrent-rasterbar/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   31 +++
 staging-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: libtorrent-rasterbar/repos/staging-i686/PKGBUILD (from rev 237930, 
libtorrent-rasterbar/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-04-22 19:04:03 UTC (rev 237931)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Hugo Doria h...@archlinux.org
+
+pkgname=libtorrent-rasterbar
+pkgver=0.16.17
+pkgrel=4
+epoch=1
+pkgdesc=A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around
+url=http://www.rasterbar.com/products/libtorrent/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('boost-libs' 'geoip' 'python2')
+makedepends=('boost')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/libtorrent/$pkgname-$pkgver.tar.gz)
+sha1sums=('e713b5dfc45194bfc50fa21096ab67c374ae3740')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --enable-python-binding \
+  --with-libgeoip=system
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: libtorrent-rasterbar/repos/staging-x86_64/PKGBUILD (from rev 237930, 
libtorrent-rasterbar/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-04-22 19:04:03 UTC (rev 237931)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Hugo Doria h...@archlinux.org
+
+pkgname=libtorrent-rasterbar
+pkgver=0.16.17
+pkgrel=4
+epoch=1
+pkgdesc=A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around
+url=http://www.rasterbar.com/products/libtorrent/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('boost-libs' 'geoip' 'python2')
+makedepends=('boost')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/libtorrent/$pkgname-$pkgver.tar.gz)
+sha1sums=('e713b5dfc45194bfc50fa21096ab67c374ae3740')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --enable-python-binding \
+  --with-libgeoip=system
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 21:04:19
  Author: foutrelis
Revision: 237934

upgpkg: source-highlight 3.1.8-2

boost 1.58.0 rebuild.

Modified:
  source-highlight/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 19:04:17 UTC (rev 237933)
+++ PKGBUILD2015-04-22 19:04:19 UTC (rev 237934)
@@ -4,7 +4,7 @@
 
 pkgname=source-highlight
 pkgver=3.1.8
-pkgrel=1
+pkgrel=2
 pkgdesc=Convert source code to syntax highlighted document
 arch=('i686' 'x86_64')
 url=http://www.gnu.org/software/src-highlite/;


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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 21:03:54
  Author: foutrelis
Revision: 237929

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

Added:
  libpst/repos/staging-i686/
  libpst/repos/staging-i686/PKGBUILD
(from rev 237928, libpst/trunk/PKGBUILD)
  libpst/repos/staging-x86_64/
  libpst/repos/staging-x86_64/PKGBUILD
(from rev 237928, libpst/trunk/PKGBUILD)

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

Copied: libpst/repos/staging-i686/PKGBUILD (from rev 237928, 
libpst/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-04-22 19:03:54 UTC (rev 237929)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=libpst
+pkgname=('libpst' 'libpst-docs')
+pkgver=0.6.63
+pkgrel=4
+arch=('i686' 'x86_64')
+url=http://www.five-ten-sg.com/libpst/;
+license=('GPL')
+makedepends=('python2' 'boost' 'libgsf')
+source=(http://www.five-ten-sg.com/libpst/packages/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('3625c94bc82555d490805d4bbac07d9160195537')
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+  --disable-static --enable-libpst-shared --disable-dii PYTHON_VERSION=2
+  make
+}
+
+package_libpst() {
+  pkgdesc=Outlook .pst file converter
+  depends=('gcc-libs' 'libgsf')
+  optdepends=('boost-libs: for libpst python interface')
+  options=('!docs')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR=${pkgdir} install
+}
+
+package_libpst-docs() {
+  pkgdesc=Documentation for Outlook .pst file converter
+  options=('docs')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR=${pkgdir} install-htmlDATA
+  cd html
+  make DESTDIR=${pkgdir} install-htmldevelDATA
+}

Copied: libpst/repos/staging-x86_64/PKGBUILD (from rev 237928, 
libpst/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-04-22 19:03:54 UTC (rev 237929)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=libpst
+pkgname=('libpst' 'libpst-docs')
+pkgver=0.6.63
+pkgrel=4
+arch=('i686' 'x86_64')
+url=http://www.five-ten-sg.com/libpst/;
+license=('GPL')
+makedepends=('python2' 'boost' 'libgsf')
+source=(http://www.five-ten-sg.com/libpst/packages/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('3625c94bc82555d490805d4bbac07d9160195537')
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+  --disable-static --enable-libpst-shared --disable-dii PYTHON_VERSION=2
+  make
+}
+
+package_libpst() {
+  pkgdesc=Outlook .pst file converter
+  depends=('gcc-libs' 'libgsf')
+  optdepends=('boost-libs: for libpst python interface')
+  options=('!docs')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR=${pkgdir} install
+}
+
+package_libpst-docs() {
+  pkgdesc=Documentation for Outlook .pst file converter
+  options=('docs')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR=${pkgdir} install-htmlDATA
+  cd html
+  make DESTDIR=${pkgdir} install-htmldevelDATA
+}


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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 21:03:45
  Author: foutrelis
Revision: 237927

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

Added:
  enblend-enfuse/repos/staging-i686/
  enblend-enfuse/repos/staging-i686/PKGBUILD
(from rev 237926, enblend-enfuse/trunk/PKGBUILD)
  enblend-enfuse/repos/staging-i686/enblend-enfuse.install
(from rev 237926, enblend-enfuse/trunk/enblend-enfuse.install)
  enblend-enfuse/repos/staging-x86_64/
  enblend-enfuse/repos/staging-x86_64/PKGBUILD
(from rev 237926, enblend-enfuse/trunk/PKGBUILD)
  enblend-enfuse/repos/staging-x86_64/enblend-enfuse.install
(from rev 237926, enblend-enfuse/trunk/enblend-enfuse.install)

---+
 staging-i686/PKGBUILD |   32 
 staging-i686/enblend-enfuse.install   |   22 ++
 staging-x86_64/PKGBUILD   |   32 
 staging-x86_64/enblend-enfuse.install |   22 ++
 4 files changed, 108 insertions(+)

Copied: enblend-enfuse/repos/staging-i686/PKGBUILD (from rev 237926, 
enblend-enfuse/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-04-22 19:03:45 UTC (rev 237927)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: tobias tob...@archlinux.org
+# Contributor: Dominik Ryba domr...@post.pl
+
+pkgname=enblend-enfuse
+pkgver=4.1.3
+pkgrel=3
+pkgdesc=Intelligent blend tool for overlapping picture
+arch=(i686 x86_64)
+license=('GPL')
+url=http://enblend.sourceforge.net;
+depends=('openexr' 'glew' 'freeglut' 'lcms2' 'boost-libs' 'vigra' 'gsl')
+makedepends=('boost' 'mesa')
+replaces=('enblend')
+conflicts=('enblend')
+provides=('enblend')
+install=${pkgname}.install
+source=(http://downloads.sourceforge.net/sourceforge/enblend/${pkgname}-${pkgver}.tar.gz)
+md5sums=('a025137ba53fc8a355347fe721c6267c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 doc/enblend.info ${pkgdir}/usr/share/info/enblend.info
+  install -D -m644 doc/enfuse.info ${pkgdir}/usr/share/info/enfuse.info
+}

Copied: enblend-enfuse/repos/staging-i686/enblend-enfuse.install (from rev 
237926, enblend-enfuse/trunk/enblend-enfuse.install)
===
--- staging-i686/enblend-enfuse.install (rev 0)
+++ staging-i686/enblend-enfuse.install 2015-04-22 19:03:45 UTC (rev 237927)
@@ -0,0 +1,22 @@
+infodir=usr/share/info
+filelist=(enblend.info enfuse.info)
+
+post_install() {
+  [[ -x usr/bin/install-info ]] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [[ -x usr/bin/install-info ]] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+# vim:set ts=2 sw=2 et:

Copied: enblend-enfuse/repos/staging-x86_64/PKGBUILD (from rev 237926, 
enblend-enfuse/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-04-22 19:03:45 UTC (rev 237927)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: tobias tob...@archlinux.org
+# Contributor: Dominik Ryba domr...@post.pl
+
+pkgname=enblend-enfuse
+pkgver=4.1.3
+pkgrel=3
+pkgdesc=Intelligent blend tool for overlapping picture
+arch=(i686 x86_64)
+license=('GPL')
+url=http://enblend.sourceforge.net;
+depends=('openexr' 'glew' 'freeglut' 'lcms2' 'boost-libs' 'vigra' 'gsl')
+makedepends=('boost' 'mesa')
+replaces=('enblend')
+conflicts=('enblend')
+provides=('enblend')
+install=${pkgname}.install
+source=(http://downloads.sourceforge.net/sourceforge/enblend/${pkgname}-${pkgver}.tar.gz)
+md5sums=('a025137ba53fc8a355347fe721c6267c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 doc/enblend.info ${pkgdir}/usr/share/info/enblend.info
+  install -D -m644 doc/enfuse.info ${pkgdir}/usr/share/info/enfuse.info
+}

Copied: enblend-enfuse/repos/staging-x86_64/enblend-enfuse.install (from rev 
237926, enblend-enfuse/trunk/enblend-enfuse.install)
===
--- staging-x86_64/enblend-enfuse.install   (rev 0)
+++ staging-x86_64/enblend-enfuse.install   2015-04-22 19:03:45 UTC (rev 
237927)
@@ -0,0 +1,22 @@
+infodir=usr/share/info
+filelist=(enblend.info enfuse.info)
+
+post_install() {
+  [[ -x usr/bin/install-info ]] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz 

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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 21:03:38
  Author: foutrelis
Revision: 237926

upgpkg: enblend-enfuse 4.1.3-3

boost 1.58.0 rebuild.

Modified:
  enblend-enfuse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 19:03:36 UTC (rev 237925)
+++ PKGBUILD2015-04-22 19:03:38 UTC (rev 237926)
@@ -4,7 +4,7 @@
 
 pkgname=enblend-enfuse
 pkgver=4.1.3
-pkgrel=2
+pkgrel=3
 pkgdesc=Intelligent blend tool for overlapping picture
 arch=(i686 x86_64)
 license=('GPL')


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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 21:04:26
  Author: foutrelis
Revision: 237935

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

Added:
  source-highlight/repos/staging-i686/
  source-highlight/repos/staging-i686/PKGBUILD
(from rev 237934, source-highlight/trunk/PKGBUILD)
  source-highlight/repos/staging-i686/source-highlight.install
(from rev 237934, source-highlight/trunk/source-highlight.install)
  source-highlight/repos/staging-x86_64/
  source-highlight/repos/staging-x86_64/PKGBUILD
(from rev 237934, source-highlight/trunk/PKGBUILD)
  source-highlight/repos/staging-x86_64/source-highlight.install
(from rev 237934, source-highlight/trunk/source-highlight.install)

-+
 staging-i686/PKGBUILD   |   34 ++
 staging-i686/source-highlight.install   |   18 +++
 staging-x86_64/PKGBUILD |   34 ++
 staging-x86_64/source-highlight.install |   18 +++
 4 files changed, 104 insertions(+)

Copied: source-highlight/repos/staging-i686/PKGBUILD (from rev 237934, 
source-highlight/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-04-22 19:04:26 UTC (rev 237935)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=source-highlight
+pkgver=3.1.8
+pkgrel=2
+pkgdesc=Convert source code to syntax highlighted document
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/src-highlite/;
+license=('GPL')
+depends=('bash' 'boost-libs')
+makedepends=('ctags' 'boost')
+install=$pkgname.install
+source=(ftp://ftp.gnu.org/gnu/src-highlite/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('3243470706ef5fefdc3e43b5306a4e41')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --with-bash-completion=/usr/share/bash-completion/completions
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make prefix=${pkgdir}/usr 
bash_completiondir=${pkgdir}/usr/share/bash-completion/completions install
+
+  # PKGBUILD syntax highlighting
+  echo -e \npkgbuild = sh.lang  ${pkgdir}/usr/share/${pkgname}/lang.map
+}

Copied: source-highlight/repos/staging-i686/source-highlight.install (from rev 
237934, source-highlight/trunk/source-highlight.install)
===
--- staging-i686/source-highlight.install   (rev 0)
+++ staging-i686/source-highlight.install   2015-04-22 19:04:26 UTC (rev 
237935)
@@ -0,0 +1,18 @@
+info_dir=usr/share/info
+info_files=(source-highlight.info source-highlight-lib.info)
+
+post_install() {
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+   post_install
+}
+
+pre_remove() {
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: source-highlight/repos/staging-x86_64/PKGBUILD (from rev 237934, 
source-highlight/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-04-22 19:04:26 UTC (rev 237935)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=source-highlight
+pkgver=3.1.8
+pkgrel=2
+pkgdesc=Convert source code to syntax highlighted document
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/src-highlite/;
+license=('GPL')
+depends=('bash' 'boost-libs')
+makedepends=('ctags' 'boost')
+install=$pkgname.install
+source=(ftp://ftp.gnu.org/gnu/src-highlite/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('3243470706ef5fefdc3e43b5306a4e41')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --with-bash-completion=/usr/share/bash-completion/completions
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make prefix=${pkgdir}/usr 
bash_completiondir=${pkgdir}/usr/share/bash-completion/completions install
+
+  # PKGBUILD syntax highlighting
+  echo -e \npkgbuild = sh.lang  ${pkgdir}/usr/share/${pkgname}/lang.map
+}

Copied: source-highlight/repos/staging-x86_64/source-highlight.install (from 
rev 237934, source-highlight/trunk/source-highlight.install)
===
--- staging-x86_64/source-highlight.install (rev 0)
+++ staging-x86_64/source-highlight.install 2015-04-22 19:04:26 UTC (rev 
237935)
@@ -0,0 +1,18 @@
+info_dir=usr/share/info
+info_files=(source-highlight.info source-highlight-lib.info)
+
+post_install() {
+  for f 

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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 21:04:17
  Author: foutrelis
Revision: 237933

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

Added:
  lyx/repos/staging-i686/
  lyx/repos/staging-i686/PKGBUILD
(from rev 237932, lyx/trunk/PKGBUILD)
  lyx/repos/staging-i686/lyx.desktop
(from rev 237932, lyx/trunk/lyx.desktop)
  lyx/repos/staging-i686/lyx.install
(from rev 237932, lyx/trunk/lyx.install)
  lyx/repos/staging-i686/lyxrc.dist
(from rev 237932, lyx/trunk/lyxrc.dist)
  lyx/repos/staging-x86_64/
  lyx/repos/staging-x86_64/PKGBUILD
(from rev 237932, lyx/trunk/PKGBUILD)
  lyx/repos/staging-x86_64/lyx.desktop
(from rev 237932, lyx/trunk/lyx.desktop)
  lyx/repos/staging-x86_64/lyx.install
(from rev 237932, lyx/trunk/lyx.install)
  lyx/repos/staging-x86_64/lyxrc.dist
(from rev 237932, lyx/trunk/lyxrc.dist)

+
 staging-i686/PKGBUILD  |   51 +++
 staging-i686/lyx.desktop   |   14 +++
 staging-i686/lyx.install   |   15 
 staging-i686/lyxrc.dist|   14 +++
 staging-x86_64/PKGBUILD|   51 +++
 staging-x86_64/lyx.desktop |   14 +++
 staging-x86_64/lyx.install |   15 
 staging-x86_64/lyxrc.dist  |   14 +++
 8 files changed, 188 insertions(+)

Copied: lyx/repos/staging-i686/PKGBUILD (from rev 237932, lyx/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-04-22 19:04:17 UTC (rev 237933)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=lyx
+pkgver=2.1.3
+pkgrel=2
+pkgdesc=An advanced WYSIWYM document processor  LaTeX front-end
+arch=('i686' 'x86_64')
+url=http://www.lyx.org;
+depends=('qt4' 'texlive-core' 'python2' 'imagemagick' 'enchant' 'boost-libs' 
'libmythes' 'file')
+makedepends=('boost' 'bc')
+optdepends=('rcs: built-in version control system'
+'texlive-latexextra: float wrap support')
+license=('GPL')
+backup=('etc/lyx/lyxrc.dist')
+install=lyx.install
+options=('emptydirs')
+source=(ftp://ftp.lyx.org/pub/lyx/stable/2.1.x/$pkgname-$pkgver.tar.xz
+lyx.desktop lyxrc.dist)
+sha1sums=('eba2e3476967cb33a59b9f7331df472d98d635bf'
+  'e2b8f6d6cdeec41e1d5795167f5557e4a6ea28ad'
+  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  find . -type f -exec sed -i 's|#!.*python|#!/usr/bin/env python2|' {} +
+  sed -i 's|python|python2|' lib/configure.py src/support/os.cpp
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  export CXXFLAGS=$CXXFLAGS -fpermissive
+  ./configure --prefix=/usr \
+--with-frontend=qt4 --without-included-boost \
+--without-included-mythes
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  # install desktop entry
+  install -Dm644 ${srcdir}/lyx.desktop \
+${pkgdir}/usr/share/applications/lyx.desktop
+  install -Dm644 lib/images/lyx.png \
+${pkgdir}/usr/share/pixmaps/lyx.png
+  # install default config file
+  install -Dm644 ${srcdir}/lyxrc.dist ${pkgdir}/etc/lyx/lyxrc.dist
+  ln -sf /etc/lyx/lyxrc.dist ${pkgdir}/usr/share/lyx/lyxrc.dist
+}

Copied: lyx/repos/staging-i686/lyx.desktop (from rev 237932, 
lyx/trunk/lyx.desktop)
===
--- staging-i686/lyx.desktop(rev 0)
+++ staging-i686/lyx.desktop2015-04-22 19:04:17 UTC (rev 237933)
@@ -0,0 +1,14 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Name=LyX Document Processor
+GenericName=Document Processor
+Comment=High level LaTeX frontend
+Exec=lyx %F
+TryExec=lyx
+Icon=lyx
+StartupNotify=false
+StartupWMClass=Lyx
+Terminal=false
+Categories=Office;WordProcessor;Qt;
+MimeType=text/x-lyx;application/x-lyx;

Copied: lyx/repos/staging-i686/lyx.install (from rev 237932, 
lyx/trunk/lyx.install)
===
--- staging-i686/lyx.install(rev 0)
+++ staging-i686/lyx.install2015-04-22 19:04:17 UTC (rev 237933)
@@ -0,0 +1,15 @@
+post_install() {
+  update-desktop-database -q
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove () {
+  post_install
+}
+
+
+

Copied: lyx/repos/staging-i686/lyxrc.dist (from rev 237932, 
lyx/trunk/lyxrc.dist)
===
--- staging-i686/lyxrc.dist (rev 0)
+++ staging-i686/lyxrc.dist 2015-04-22 19:04:17 UTC (rev 237933)
@@ -0,0 +1,14 @@
+### This file is part of
+### 
+###  LyX, The Document Processor
+###
+###  Copyright 1995 Matthias Ettrich
+###  

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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 21:03:47
  Author: foutrelis
Revision: 237928

upgpkg: libpst 0.6.63-4

boost 1.58.0 rebuild.

Modified:
  libpst/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 19:03:45 UTC (rev 237927)
+++ PKGBUILD2015-04-22 19:03:47 UTC (rev 237928)
@@ -4,7 +4,7 @@
 pkgbase=libpst
 pkgname=('libpst' 'libpst-docs')
 pkgver=0.6.63
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 url=http://www.five-ten-sg.com/libpst/;
 license=('GPL')


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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 21:03:56
  Author: foutrelis
Revision: 237930

upgpkg: libtorrent-rasterbar 1:0.16.17-4

boost 1.58.0 rebuild.

Modified:
  libtorrent-rasterbar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 19:03:54 UTC (rev 237929)
+++ PKGBUILD2015-04-22 19:03:56 UTC (rev 237930)
@@ -4,7 +4,7 @@
 
 pkgname=libtorrent-rasterbar
 pkgver=0.16.17
-pkgrel=3
+pkgrel=4
 epoch=1
 pkgdesc=A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around
 url=http://www.rasterbar.com/products/libtorrent/;


[arch-commits] Commit in xf86-input-void/trunk (PKGBUILD)

2015-04-22 Thread Andreas Radke
Date: Wednesday, April 22, 2015 @ 20:11:40
  Author: andyrtr
Revision: 237922

upgpkg: xf86-input-void 1.4.1-1

upstream update 1.4.1

Modified:
  xf86-input-void/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 18:04:47 UTC (rev 237921)
+++ PKGBUILD2015-04-22 18:11:40 UTC (rev 237922)
@@ -2,8 +2,8 @@
 #Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xf86-input-void
-pkgver=1.4.0
-pkgrel=7
+pkgver=1.4.1
+pkgrel=1
 pkgdesc=X.org void input driver
 arch=(i686 x86_64)
 license=('custom')
@@ -12,8 +12,10 @@
 makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21' 'resourceproto' 
'scrnsaverproto')
 conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21' 
'X-ABI-XINPUT_VERSION=22')
 groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('49b462d3acb16337eaf78202d4074f19d5e20b29')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('f96e4f0a622821bf43a74bd419f2a18423343996c9d243c7e1430ba2d142339c'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) off...@who-t.net
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in xf86-input-void/repos (4 files)

2015-04-22 Thread Andreas Radke
Date: Wednesday, April 22, 2015 @ 20:11:51
  Author: andyrtr
Revision: 237923

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

Added:
  xf86-input-void/repos/extra-i686/PKGBUILD
(from rev 237922, xf86-input-void/trunk/PKGBUILD)
  xf86-input-void/repos/extra-x86_64/PKGBUILD
(from rev 237922, xf86-input-void/trunk/PKGBUILD)
Deleted:
  xf86-input-void/repos/extra-i686/PKGBUILD
  xf86-input-void/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-22 18:11:40 UTC (rev 237922)
+++ extra-i686/PKGBUILD 2015-04-22 18:11:51 UTC (rev 237923)
@@ -1,31 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-input-void
-pkgver=1.4.0
-pkgrel=7
-pkgdesc=X.org void input driver
-arch=(i686 x86_64)
-license=('custom')
-url=http://xorg.freedesktop.org/;
-depends=('glibc')
-makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21' 
'X-ABI-XINPUT_VERSION=22')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('49b462d3acb16337eaf78202d4074f19d5e20b29')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  
-  make DESTDIR=${pkgdir} install
-  
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-input-void/repos/extra-i686/PKGBUILD (from rev 237922, 
xf86-input-void/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-22 18:11:51 UTC (rev 237923)
@@ -0,0 +1,33 @@
+# $Id$
+#Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-void
+pkgver=1.4.1
+pkgrel=1
+pkgdesc=X.org void input driver
+arch=(i686 x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21' 
'X-ABI-XINPUT_VERSION=22')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('f96e4f0a622821bf43a74bd419f2a18423343996c9d243c7e1430ba2d142339c'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) off...@who-t.net
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  
+  make DESTDIR=${pkgdir} install
+  
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-04-22 18:11:40 UTC (rev 237922)
+++ extra-x86_64/PKGBUILD   2015-04-22 18:11:51 UTC (rev 237923)
@@ -1,31 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-input-void
-pkgver=1.4.0
-pkgrel=7
-pkgdesc=X.org void input driver
-arch=(i686 x86_64)
-license=('custom')
-url=http://xorg.freedesktop.org/;
-depends=('glibc')
-makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21' 
'X-ABI-XINPUT_VERSION=22')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('49b462d3acb16337eaf78202d4074f19d5e20b29')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  
-  make DESTDIR=${pkgdir} install
-  
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-input-void/repos/extra-x86_64/PKGBUILD (from rev 237922, 
xf86-input-void/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-04-22 18:11:51 UTC (rev 237923)
@@ -0,0 +1,33 @@
+# $Id$
+#Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-void
+pkgver=1.4.1
+pkgrel=1
+pkgdesc=X.org void input driver
+arch=(i686 x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21' 
'X-ABI-XINPUT_VERSION=22')
+groups=('xorg-drivers' 

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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 20:19:02
  Author: svenstaro
Revision: 131969

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

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

---+
 community-staging-i686/PKGBUILD   |   87 
 community-staging-i686/ogre.install   |4 +
 community-staging-x86_64/PKGBUILD |   87 
 community-staging-x86_64/ogre.install |4 +
 4 files changed, 182 insertions(+)

Copied: ogre/repos/community-staging-i686/PKGBUILD (from rev 131968, 
ogre/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 18:19:02 UTC (rev 131969)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.9.0
+pkgrel=10
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('i686' 'x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr' 
+ 'nvidia-cg-toolkit' 'zziplib' 'ois' 'glu' 'tinyxml')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial')
+install=ogre.install
+source=(hg+http://bitbucket.org/sinbad/ogre#tag=v${pkgver//./-};
+
cmake30.patch::https://bitbucket.org/sinbad/ogre/commits/d84bce645d3dd439188d3d29d8da51c51765a085/raw/)
+md5sums=('SKIP'
+ '116fb8009c8d4b499f9a885052cc0ea6')
+
+prepare() {
+  cd ogre
+
+  patch -Np1  $srcdir/cmake30.patch
+}
+
+build() {
+  cd ogre
+
+  [[ -d build ]]  rm -rf build
+  mkdir build  cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_INSTALL_SAMPLES=TRUE \
+-DOGRE_INSTALL_DOCS=TRUE \
+-DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'intel-tbb: better threading support'
+  'poco: portability'
+  'boost: for developing using ogre'
+  'ogre-docs: documentation')
+
+  cd ogre/build
+
+  make DESTDIR=${pkgdir} install
+
+  # fix up samples
+  install -dm775 -o root -g users ${pkgdir}/opt/OGRE/samples/
+  mv ${pkgdir}/usr/share/OGRE/*.cfg ${pkgdir}/opt/OGRE/samples/
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/opt/OGRE/samples/
+
+  # make sample launcher
+  echo #!/bin/bash  ${pkgdir}/usr/bin/OgreSampleBrowser
+  echo cd /opt/OGRE/samples  ./SampleBrowser  
${pkgdir}/usr/bin/OgreSampleBrowser
+  chmod +x ${pkgdir}/usr/bin/OgreSampleBrowser
+  
+  install -Dm644 ../Docs/License.html 
${pkgdir}/usr/share/licenses/${pkgname}/license.html
+
+  # move docs out of this package
+  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
+}
+
+package_ogre-docs() {
+  pkgdesc=Documentation for ogre
+  depends=()
+
+  cd ogre/build
+
+  # move docs into this package
+  install -dm755 ${pkgdir}/usr/share/doc
+  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
+
+  # symlink for docs
+  install -dm755 ${pkgdir}/usr/share/OGRE/
+  cd ${pkgdir}/usr/share
+  ln -s /usr/share/doc/OGRE/ OGRE/docs
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-staging-i686/ogre.install (from rev 131968, 
ogre/trunk/ogre.install)
===
--- community-staging-i686/ogre.install (rev 0)
+++ community-staging-i686/ogre.install 2015-04-22 18:19:02 UTC (rev 131969)
@@ -0,0 +1,4 @@
+post_install() {
+echo To view the OGRE samples just run OgreSampleBrowser or launch
+echo it directly in /opt/OGRE/samples/
+}

Copied: ogre/repos/community-staging-x86_64/PKGBUILD (from rev 131968, 
ogre/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 18:19:02 UTC (rev 131969)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.9.0
+pkgrel=10
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('i686' 'x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr' 
+ 'nvidia-cg-toolkit' 'zziplib' 'ois' 'glu' 'tinyxml')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial')

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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 20:18:53
  Author: svenstaro
Revision: 131968

upgpkg: ogre 1.9.0-10

boost 1.58.0 rebuild

Modified:
  ogre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 18:17:45 UTC (rev 131967)
+++ PKGBUILD2015-04-22 18:18:53 UTC (rev 131968)
@@ -3,7 +3,7 @@
 pkgbase=ogre
 pkgname=('ogre' 'ogre-docs')
 pkgver=1.9.0
-pkgrel=9
+pkgrel=10
 pkgdesc='Scene-oriented, flexible 3D engine written in C++'
 arch=('i686' 'x86_64')
 url='http://www.ogre3d.org'


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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 20:31:20
  Author: jelle
Revision: 131974

upgpkg: ncmpcpp 0.6.3-2

boost 1.58.0 rebuild

Modified:
  ncmpcpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 18:27:30 UTC (rev 131973)
+++ PKGBUILD2015-04-22 18:31:20 UTC (rev 131974)
@@ -6,7 +6,7 @@
 
 pkgname=ncmpcpp
 pkgver=0.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Almost exact clone of ncmpc with some new features'
 arch=('i686' 'x86_64')
 url='http://ncmpcpp.rybczak.net/'


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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 20:31:27
  Author: jelle
Revision: 131975

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

Added:
  ncmpcpp/repos/community-staging-i686/
  ncmpcpp/repos/community-staging-i686/PKGBUILD
(from rev 131974, ncmpcpp/trunk/PKGBUILD)
  ncmpcpp/repos/community-staging-i686/missing-include.patch
(from rev 131974, ncmpcpp/trunk/missing-include.patch)
  ncmpcpp/repos/community-staging-x86_64/
  ncmpcpp/repos/community-staging-x86_64/PKGBUILD
(from rev 131974, ncmpcpp/trunk/PKGBUILD)
  ncmpcpp/repos/community-staging-x86_64/missing-include.patch
(from rev 131974, ncmpcpp/trunk/missing-include.patch)

+
 community-staging-i686/PKGBUILD|   45 +++
 community-staging-i686/missing-include.patch   |   12 ++
 community-staging-x86_64/PKGBUILD  |   45 +++
 community-staging-x86_64/missing-include.patch |   12 ++
 4 files changed, 114 insertions(+)

Copied: ncmpcpp/repos/community-staging-i686/PKGBUILD (from rev 131974, 
ncmpcpp/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 18:31:27 UTC (rev 131975)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: graysky graysky AT archlinux DOT us
+# Contributor: Mateusz Herych heni...@gmail.com
+# Contributor: Army uli[dot]armbruster[at]gmail[dot]com
+
+pkgname=ncmpcpp
+pkgver=0.6.3
+pkgrel=2
+pkgdesc='Almost exact clone of ncmpc with some new features'
+arch=('i686' 'x86_64')
+url='http://ncmpcpp.rybczak.net/'
+license=('GPL')
+depends=('curl' 'libmpdclient' 'taglib' 'ncurses' 'fftw' 'boost-libs')
+makedepends=('boost')
+source=(http://ncmpcpp.rybczak.net/stable/ncmpcpp-$pkgver.tar.bz2
+missing-include.patch)
+md5sums=('b4af4c7405ce12033757c1cd1f9900c5'
+ '14fa33349661c8e6c2a323970ef1e98c')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../missing-include.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  BOOST_LIB_SUFFIX='' ./configure --prefix=/usr \
+--enable-clock \
+--enable-outputs \
+--enable-unicode \
+--enable-visualizer \
+--with-curl \
+--with-fftw \
+--with-taglib
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  make -C extras
+  install -Dm755 extras/artist_to_albumartist $pkgdir/usr/bin/
+}

Copied: ncmpcpp/repos/community-staging-i686/missing-include.patch (from rev 
131974, ncmpcpp/trunk/missing-include.patch)
===
--- community-staging-i686/missing-include.patch
(rev 0)
+++ community-staging-i686/missing-include.patch2015-04-22 18:31:27 UTC 
(rev 131975)
@@ -0,0 +1,12 @@
+diff --git a/src/scrollpad.cpp b/src/scrollpad.cpp
+index e865cee..e405090 100644
+--- a/src/scrollpad.cpp
 b/src/scrollpad.cpp
+@@ -19,6 +19,7 @@
+  ***/
+ 
+ #include cassert
++#include iostream
+ #include boost/regex.hpp
+ 
+ #include scrollpad.h

Copied: ncmpcpp/repos/community-staging-x86_64/PKGBUILD (from rev 131974, 
ncmpcpp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 18:31:27 UTC (rev 131975)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: graysky graysky AT archlinux DOT us
+# Contributor: Mateusz Herych heni...@gmail.com
+# Contributor: Army uli[dot]armbruster[at]gmail[dot]com
+
+pkgname=ncmpcpp
+pkgver=0.6.3
+pkgrel=2
+pkgdesc='Almost exact clone of ncmpc with some new features'
+arch=('i686' 'x86_64')
+url='http://ncmpcpp.rybczak.net/'
+license=('GPL')
+depends=('curl' 'libmpdclient' 'taglib' 'ncurses' 'fftw' 'boost-libs')
+makedepends=('boost')
+source=(http://ncmpcpp.rybczak.net/stable/ncmpcpp-$pkgver.tar.bz2
+missing-include.patch)
+md5sums=('b4af4c7405ce12033757c1cd1f9900c5'
+ '14fa33349661c8e6c2a323970ef1e98c')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../missing-include.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  BOOST_LIB_SUFFIX='' ./configure --prefix=/usr \
+--enable-clock \
+--enable-outputs \
+--enable-unicode \
+--enable-visualizer \
+--with-curl \
+--with-fftw \
+--with-taglib
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  make -C extras
+  install -Dm755 extras/artist_to_albumartist $pkgdir/usr/bin/
+}

Copied: ncmpcpp/repos/community-staging-x86_64/missing-include.patch (from rev 
131974, ncmpcpp/trunk/missing-include.patch)

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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 20:44:53
  Author: jelle
Revision: 131977

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

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

+
 community-staging-i686/PKGBUILD|   36 +++
 community-staging-i686/guitarix2.install   |   11 
 community-staging-x86_64/PKGBUILD  |   36 +++
 community-staging-x86_64/guitarix2.install |   11 
 4 files changed, 94 insertions(+)

Copied: guitarix2/repos/community-staging-i686/PKGBUILD (from rev 131976, 
guitarix2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 18:44:53 UTC (rev 131977)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: speps speps at aur dot archlinux dot org
+
+pkgname=guitarix2
+pkgver=0.32.3
+pkgrel=2
+pkgdesc=A simple mono guitar amplifier and FX for JACK using Faust
+arch=('i686' 'x86_64')
+url=http://guitarix.sourceforge.net/;
+license=('GPL')
+depends=('gtkmm' 'librsvg' 'liblrdf' 'lilv' 'bluez-libs' 'boost-libs'
+ 'zita-convolver' 'zita-resampler' 'desktop-file-utils')
+makedepends=('python' 'boost' 'eigen' 'gperf' 'intltool' 'lv2')
+optdepends=('meterbridge: sound meters')
+provides=('guitarix' 'gx_head')
+conflicts=('guitarix' 'gx_head')
+replaces=('guitarix' 'gx_head')
+install=$pkgname.install
+source=(http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.bz2;)
+md5sums=('fb0a853acf40aa8a26f0abe5f224989a')
+
+build() {
+  cd guitarix-$pkgver
+  python waf configure --prefix=/usr \
+--no-desktop-update \
+--no-ldconfig \
+--no-faust \
+--shared-lib \
+--lib-dev
+  python waf build
+}
+
+package() {
+  cd guitarix-$pkgver
+  python waf install --destdir=$pkgdir
+}

Copied: guitarix2/repos/community-staging-i686/guitarix2.install (from rev 
131976, guitarix2/trunk/guitarix2.install)
===
--- community-staging-i686/guitarix2.install(rev 0)
+++ community-staging-i686/guitarix2.install2015-04-22 18:44:53 UTC (rev 
131977)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: guitarix2/repos/community-staging-x86_64/PKGBUILD (from rev 131976, 
guitarix2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 18:44:53 UTC (rev 131977)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: speps speps at aur dot archlinux dot org
+
+pkgname=guitarix2
+pkgver=0.32.3
+pkgrel=2
+pkgdesc=A simple mono guitar amplifier and FX for JACK using Faust
+arch=('i686' 'x86_64')
+url=http://guitarix.sourceforge.net/;
+license=('GPL')
+depends=('gtkmm' 'librsvg' 'liblrdf' 'lilv' 'bluez-libs' 'boost-libs'
+ 'zita-convolver' 'zita-resampler' 'desktop-file-utils')
+makedepends=('python' 'boost' 'eigen' 'gperf' 'intltool' 'lv2')
+optdepends=('meterbridge: sound meters')
+provides=('guitarix' 'gx_head')
+conflicts=('guitarix' 'gx_head')
+replaces=('guitarix' 'gx_head')
+install=$pkgname.install
+source=(http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.bz2;)
+md5sums=('fb0a853acf40aa8a26f0abe5f224989a')
+
+build() {
+  cd guitarix-$pkgver
+  python waf configure --prefix=/usr \
+--no-desktop-update \
+--no-ldconfig \
+--no-faust \
+--shared-lib \
+--lib-dev
+  python waf build
+}
+
+package() {
+  cd guitarix-$pkgver
+  python waf install --destdir=$pkgdir
+}

Copied: guitarix2/repos/community-staging-x86_64/guitarix2.install (from rev 
131976, guitarix2/trunk/guitarix2.install)
===
--- community-staging-x86_64/guitarix2.install  (rev 0)
+++ community-staging-x86_64/guitarix2.install  2015-04-22 18:44:53 UTC (rev 
131977)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 20:44:43
  Author: jelle
Revision: 131976

upgpkg: guitarix2 0.32.3-2

boost 1.58.0 rebuild

Modified:
  guitarix2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 18:31:27 UTC (rev 131975)
+++ PKGBUILD2015-04-22 18:44:43 UTC (rev 131976)
@@ -3,7 +3,7 @@
 
 pkgname=guitarix2
 pkgver=0.32.3
-pkgrel=1
+pkgrel=2
 pkgdesc=A simple mono guitar amplifier and FX for JACK using Faust
 arch=('i686' 'x86_64')
 url=http://guitarix.sourceforge.net/;


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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 20:59:14
  Author: jelle
Revision: 131980

upgpkg: encfs 1.8.1-2

boost 1.58.0 rebuild

Modified:
  encfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 18:54:34 UTC (rev 131979)
+++ PKGBUILD2015-04-22 18:59:14 UTC (rev 131980)
@@ -7,7 +7,7 @@
 
 pkgname=encfs
 pkgver=1.8.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Encrypted filesystem in user-space'
 arch=('i686' 'x86_64')
 url='https://vgough.github.io/encfs/'


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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 20:59:21
  Author: jelle
Revision: 131981

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

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

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

Copied: encfs/repos/community-staging-i686/PKGBUILD (from rev 131980, 
encfs/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 18:59:21 UTC (rev 131981)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Jaroslaw Swierczynski swier...@aur.archlinux.org
+# Contributor: Sven Kauber, cel...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=encfs
+pkgver=1.8.1
+pkgrel=2
+pkgdesc='Encrypted filesystem in user-space'
+arch=('i686' 'x86_64')
+url='https://vgough.github.io/encfs/'
+license=('LGPL')
+depends=('rlog' 'openssl' 'fuse' 'boost-libs')
+makedepends=('boost' 'autoconf')
+source=($pkgname-$pkgver.tar.gz::https://github.com/vgough/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('ed6b69d8aba06382ad01116bbce2e4ad49f8de85cdf4e2fab7ee4ac82af537e9')
+
+build(){
+  cd ${srcdir}/$pkgname-$pkgver
+
+  autoreconf -if
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Copied: encfs/repos/community-staging-x86_64/PKGBUILD (from rev 131980, 
encfs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 18:59:21 UTC (rev 131981)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Jaroslaw Swierczynski swier...@aur.archlinux.org
+# Contributor: Sven Kauber, cel...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=encfs
+pkgver=1.8.1
+pkgrel=2
+pkgdesc='Encrypted filesystem in user-space'
+arch=('i686' 'x86_64')
+url='https://vgough.github.io/encfs/'
+license=('LGPL')
+depends=('rlog' 'openssl' 'fuse' 'boost-libs')
+makedepends=('boost' 'autoconf')
+source=($pkgname-$pkgver.tar.gz::https://github.com/vgough/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('ed6b69d8aba06382ad01116bbce2e4ad49f8de85cdf4e2fab7ee4ac82af537e9')
+
+build(){
+  cd ${srcdir}/$pkgname-$pkgver
+
+  autoreconf -if
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}


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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 21:05:06
  Author: jelle
Revision: 131983

upgpkg: pinot 1.08-3

boost 1.58.0 rebuild

Modified:
  pinot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 19:00:33 UTC (rev 131982)
+++ PKGBUILD2015-04-22 19:05:06 UTC (rev 131983)
@@ -7,7 +7,7 @@
 
 pkgname=pinot
 pkgver=1.08
-pkgrel=2
+pkgrel=3
 pkgdesc='Personal search and metasearch tool'
 arch=('i686' 'x86_64')
 url='http://code.google.com/p/pinot-search/'


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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 21:05:14
  Author: jelle
Revision: 131984

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

Added:
  pinot/repos/community-staging-i686/
  pinot/repos/community-staging-i686/PKGBUILD
(from rev 131983, pinot/trunk/PKGBUILD)
  pinot/repos/community-staging-i686/pinot.changelog
(from rev 131983, pinot/trunk/pinot.changelog)
  pinot/repos/community-staging-i686/pinot.install
(from rev 131983, pinot/trunk/pinot.install)
  pinot/repos/community-staging-x86_64/
  pinot/repos/community-staging-x86_64/PKGBUILD
(from rev 131983, pinot/trunk/PKGBUILD)
  pinot/repos/community-staging-x86_64/pinot.changelog
(from rev 131983, pinot/trunk/pinot.changelog)
  pinot/repos/community-staging-x86_64/pinot.install
(from rev 131983, pinot/trunk/pinot.install)

--+
 community-staging-i686/PKGBUILD  |   79 +
 community-staging-i686/pinot.changelog   |   23 
 community-staging-i686/pinot.install |   15 +
 community-staging-x86_64/PKGBUILD|   79 +
 community-staging-x86_64/pinot.changelog |   23 
 community-staging-x86_64/pinot.install   |   15 +
 6 files changed, 234 insertions(+)

Copied: pinot/repos/community-staging-i686/PKGBUILD (from rev 131983, 
pinot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 19:05:14 UTC (rev 131984)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+# Contributor: William Rea sillywi...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Alexander Rødseth rods...@gmail.com
+
+pkgname=pinot
+pkgver=1.08
+pkgrel=3
+pkgdesc='Personal search and metasearch tool'
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/pinot-search/'
+license=('GPL')
+depends=('gtkmm3' 'xapian-core' 'sqlite' 'libxml++' 'curl' 'gmime' 
'libexttextcat' 'dbus-glib'
+ 'shared-mime-info' 'libexif' 'taglib' 'hicolor-icon-theme' 'cairo' 
'exiv2' 'boost-libs')
+makedepends=('boost' 'desktop-file-utils' 'subversion' 'autoconf' 'automake')
+optdepends=('unzip: ZIP files extraction'
+'poppler: PDF to text conversion'
+'catdvi: DVI to text conversion'
+'djvulibre: DjVu text extraction'
+'unrtf: RTF to HTML conversion'
+'antiword: MS Word to text conversion'
+'catdoc: XLS and PPT to text conversion')
+options=('!emptydirs')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=()
+sha256sums=()
+
+_svntrunk=http://pinot-search.googlecode.com/svn/tags/v${pkgver}
+
+prepare() {
+  cd ${srcdir}
+
+  msg Connecting to SVN server
+  svn co $_svntrunk
+  msg SVN checkout done or server timeout
+
+  msg Starting build...
+  rm -rf ${srcdir}/${pkgver}-build
+  svn export ${srcdir}/v${pkgver} ${srcdir}/${pkgver}-build
+  cd ${srcdir}/${pkgver}-build
+
+  x='/usr/share/libexttextcat/'
+  sed -i 's|/LM/russian.lm|/LM/russian-windows1251.lm|' textcat_conf.txt
+  sed -i s|$x|${x}LM/| \
+textcat_conf.txt \
+textcat3_conf.txt \
+textcat31_conf.txt \
+textcat32_conf.txt
+  sed -i -e s|.*russian$|${x}LM/russian-iso8859_5.lm   russian-iso8859_5\n\
+${x}LM/russian-koi8_r.lm  russian-koi8_r\n\
+${x}LM/russian-windows1251.lm russian-windows1251| textcat3_conf.txt
+
+#configure to be run with the desired below args
+  sed -i '$s/^/#/' autogen.sh
+}
+
+
+build() {
+  cd ${srcdir}/${pkgver}-build
+
+  ./autogen.sh
+  
+  LIBS=-lboost_system ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--enable-gtkmm3=yes
+
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgver}-build
+
+  make DESTDIR=${pkgdir} install
+}

Copied: pinot/repos/community-staging-i686/pinot.changelog (from rev 131983, 
pinot/trunk/pinot.changelog)
===
--- community-staging-i686/pinot.changelog  (rev 0)
+++ community-staging-i686/pinot.changelog  2015-04-22 19:05:14 UTC (rev 
131984)
@@ -0,0 +1,23 @@
+2014-11-05 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * pinot 1.08-2 boost 1.57.0 rebuild
+
+2014-08-18 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * pinot 1.08-1 and boost 1.56.0 rebuild
+
+2014-06-28 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * pinot 1.07-1
+
+2012-09-29 Alexander Rødseth rods...@gmail.com
+   * fix FS#31510, adding --enable-mempool=no
+
+2012-09-12 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * pinot 1.01-1
+
+2012-07-31  Eric Belanger  e...@archlinux.org
+   * pinot 1.0-2 : Rebuild against exiv2 0.23, Add boost-libs depends
+
+2012-07-14 Jaroslav Lichtblau 

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

2015-04-22 Thread Evangelos Foutras
Date: Wednesday, April 22, 2015 @ 21:12:59
  Author: foutrelis
Revision: 237937

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

Added:
  licq/repos/staging-i686/
  licq/repos/staging-i686/PKGBUILD
(from rev 237936, licq/trunk/PKGBUILD)
  licq/repos/staging-x86_64/
  licq/repos/staging-x86_64/PKGBUILD
(from rev 237936, licq/trunk/PKGBUILD)

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

Copied: licq/repos/staging-i686/PKGBUILD (from rev 237936, licq/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-04-22 19:12:59 UTC (rev 237937)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Juergen Hoetzel juer...@archlinux.org
+
+pkgname=licq
+pkgver=1.8.2
+pkgrel=5
+pkgdesc=Advanced graphical ICQ clone and more for Unix
+arch=('i686' 'x86_64')
+url=http://www.licq.org;
+license=('GPL')
+depends=('boost-libs' 'gpgme' 'libxss' 'qt4')
+makedepends=('cmake' 'boost' 'optipng')
+source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2)
+md5sums=('46af2bc95865ee61a103d27812fe6e6a')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  mkdir build
+
+  # Fix invalid PNG images to work with libpng 1.6
+  # https://github.com/licq-im/licq/pull/32
+  optipng -quiet -force -fix plugins/qt4-gui/share/skins/Mirabilis/*.png
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  local licq_plugins=auto-reply icq rms msn qt4-gui # osd jabber aosd
+  
+  local plugins= _plugin
+  for _plugin in ${licq_plugins}; do
+plugins+= ${_plugin}\/CMakeLists.txt
+  done
+  sed -i -e s/file(GLOB cmake_plugins.*$/set(cmake_plugins ${plugins})/ 
plugins/CMakeLists.txt
+
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DUSE_FIFO=ON -DBUILD_PLUGINS=ON  ..
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}/build
+  make DESTDIR=${pkgdir} install
+}

Copied: licq/repos/staging-x86_64/PKGBUILD (from rev 237936, 
licq/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-04-22 19:12:59 UTC (rev 237937)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Juergen Hoetzel juer...@archlinux.org
+
+pkgname=licq
+pkgver=1.8.2
+pkgrel=5
+pkgdesc=Advanced graphical ICQ clone and more for Unix
+arch=('i686' 'x86_64')
+url=http://www.licq.org;
+license=('GPL')
+depends=('boost-libs' 'gpgme' 'libxss' 'qt4')
+makedepends=('cmake' 'boost' 'optipng')
+source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2)
+md5sums=('46af2bc95865ee61a103d27812fe6e6a')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  mkdir build
+
+  # Fix invalid PNG images to work with libpng 1.6
+  # https://github.com/licq-im/licq/pull/32
+  optipng -quiet -force -fix plugins/qt4-gui/share/skins/Mirabilis/*.png
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  local licq_plugins=auto-reply icq rms msn qt4-gui # osd jabber aosd
+  
+  local plugins= _plugin
+  for _plugin in ${licq_plugins}; do
+plugins+= ${_plugin}\/CMakeLists.txt
+  done
+  sed -i -e s/file(GLOB cmake_plugins.*$/set(cmake_plugins ${plugins})/ 
plugins/CMakeLists.txt
+
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DUSE_FIFO=ON -DBUILD_PLUGINS=ON  ..
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}/build
+  make DESTDIR=${pkgdir} install
+}


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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 21:15:07
  Author: svenstaro
Revision: 131987

upgpkg: spring 98.0-5

boost 1.58.0 rebuild

Modified:
  spring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 19:14:52 UTC (rev 131986)
+++ PKGBUILD2015-04-22 19:15:07 UTC (rev 131987)
@@ -5,7 +5,7 @@
 
 pkgname=spring
 pkgver=98.0
-pkgrel=4
+pkgrel=5
 pkgdesc='A free 3D real-time-strategy (RTS) game engine'
 arch=('i686' 'x86_64')
 url=http://springrts.com/;


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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 21:15:13
  Author: svenstaro
Revision: 131988

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

Added:
  spring/repos/community-staging-i686/
  
spring/repos/community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
(from rev 131987, 
spring/trunk/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch)
  spring/repos/community-staging-i686/PKGBUILD
(from rev 131987, spring/trunk/PKGBUILD)
  spring/repos/community-staging-i686/spring.install
(from rev 131987, spring/trunk/spring.install)
  spring/repos/community-staging-x86_64/
  
spring/repos/community-staging-x86_64/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
(from rev 131987, 
spring/trunk/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch)
  spring/repos/community-staging-x86_64/PKGBUILD
(from rev 131987, spring/trunk/PKGBUILD)
  spring/repos/community-staging-x86_64/spring.install
(from rev 131987, spring/trunk/spring.install)

--+
 
community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
   |   32 ++
 community-staging-i686/PKGBUILD
  |   51 ++
 community-staging-i686/spring.install  
  |   12 ++
 
community-staging-x86_64/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
 |   32 ++
 community-staging-x86_64/PKGBUILD  
  |   51 ++
 community-staging-x86_64/spring.install
  |   12 ++
 6 files changed, 190 insertions(+)

Copied: 
spring/repos/community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
 (from rev 131987, 
spring/trunk/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch)
===
--- 
community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
  (rev 0)
+++ 
community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
  2015-04-22 19:15:13 UTC (rev 131988)
@@ -0,0 +1,32 @@
+From 9e0db5f602407de4e7875ca85761b41782c1bb9c Mon Sep 17 00:00:00 2001
+From: Johan Rehnberg cleanr...@gmail.com
+Date: Wed, 31 Dec 2014 11:35:19 +0100
+Subject: [PATCH] fix GetListOfSubModules to support GLOB returning both //
+ and /
+
+I needed this when building on archlinux with cmake 3.1.0 where GLOB returns 
/
+---
+ rts/build/cmake/Util.cmake | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/rts/build/cmake/Util.cmake b/rts/build/cmake/Util.cmake
+index 9f49e54..e23db7b 100644
+--- a/rts/build/cmake/Util.cmake
 b/rts/build/cmake/Util.cmake
+@@ -166,10 +166,11 @@ EndFunction (MakeGlobal)
+ # Find all CMakeLists.txt files in sub-directories
+ Macro(GetListOfSubModules list_var)
+   File(GLOB ${list_var} RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} 
FOLLOW_SYMLINKS ${CMAKE_CURRENT_SOURCE_DIR}/*/CMakeLists.txt)
+-
+   # Strip away the /CMakeLists.txt parts, so we end up with just a list 
of dirs,
+   # for example: AAI;RAI;KAIK
+-  String(REPLACE //CMakeLists.txt  ${list_var} ${${list_var}})
++  # GLOB can prefix with // or / (perhaps changed in cmake 3.1.0), 
this double replace will support both // and /
++  String(REPLACE /CMakeLists.txt  ${list_var} ${${list_var}})
++  String(REPLACE /  ${list_var} ${${list_var}})
+ EndMacro (GetListOfSubModules list_var)
+ 
+ 
+-- 
+2.2.1
+

Copied: spring/repos/community-staging-i686/PKGBUILD (from rev 131987, 
spring/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 19:15:13 UTC (rev 131988)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Arkham arkham at archlinux dot us
+# Contributor: Christoph Zeiler archNOSPAM_at_moonblade.dot.org
+
+pkgname=spring
+pkgver=98.0
+pkgrel=5
+pkgdesc='A free 3D real-time-strategy (RTS) game engine'
+arch=('i686' 'x86_64')
+url=http://springrts.com/;
+license=('GPL')
+depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2'
+ 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
+makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'java-environment' 
'mesa')
+optdepends=('python2: python-based bots'
+'java-runtime: java-based bots')
+install=spring.install
+source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma
+0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch)
+md5sums=('fbe60dff4d39918157869f45738e0a8a'
+ 

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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 21:14:52
  Author: jelle
Revision: 131986

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

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

--+
 community-staging-i686/PKGBUILD  |   35 +
 community-staging-i686/qbittorrent.install   |   13 +
 community-staging-x86_64/PKGBUILD|   35 +
 community-staging-x86_64/qbittorrent.install |   13 +
 4 files changed, 96 insertions(+)

Copied: qbittorrent/repos/community-staging-i686/PKGBUILD (from rev 131985, 
qbittorrent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 19:14:52 UTC (rev 131986)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: carstene1ns arch carsten-teibes de - http://git.io/ctPKG
+# Contributor: Jkkyll Wu adaptee at gmail [dot] com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Geoffroy Carrier geoffroy.carr...@koon.fr
+
+pkgname=qbittorrent
+pkgver=3.1.12
+pkgrel=2
+pkgdesc=A bittorrent client written in C++ / Qt4 using the good libtorrent 
library
+arch=('i686' 'x86_64')
+url=http://www.qbittorrent.org;
+license=('custom' 'GPL')
+depends=('qt4' 'libtorrent-rasterbar')
+makedepends=('boost')
+optdepends=('python: needed for torrent search tab')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz;)
+sha256sums=('d5d5b27958297f0b14cf03af8dd24a0d2a990e108c9a7a6159e4a2fbbc83')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make INSTALL_ROOT=$pkgdir/ install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: qbittorrent/repos/community-staging-i686/qbittorrent.install (from rev 
131985, qbittorrent/trunk/qbittorrent.install)
===
--- community-staging-i686/qbittorrent.install  (rev 0)
+++ community-staging-i686/qbittorrent.install  2015-04-22 19:14:52 UTC (rev 
131986)
@@ -0,0 +1,13 @@
+
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: qbittorrent/repos/community-staging-x86_64/PKGBUILD (from rev 131985, 
qbittorrent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 19:14:52 UTC (rev 131986)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: carstene1ns arch carsten-teibes de - http://git.io/ctPKG
+# Contributor: Jkkyll Wu adaptee at gmail [dot] com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Geoffroy Carrier geoffroy.carr...@koon.fr
+
+pkgname=qbittorrent
+pkgver=3.1.12
+pkgrel=2
+pkgdesc=A bittorrent client written in C++ / Qt4 using the good libtorrent 
library
+arch=('i686' 'x86_64')
+url=http://www.qbittorrent.org;
+license=('custom' 'GPL')
+depends=('qt4' 'libtorrent-rasterbar')
+makedepends=('boost')
+optdepends=('python: needed for torrent search tab')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz;)
+sha256sums=('d5d5b27958297f0b14cf03af8dd24a0d2a990e108c9a7a6159e4a2fbbc83')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make INSTALL_ROOT=$pkgdir/ install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: qbittorrent/repos/community-staging-x86_64/qbittorrent.install (from 
rev 131985, qbittorrent/trunk/qbittorrent.install)
===
--- community-staging-x86_64/qbittorrent.install
(rev 0)
+++ community-staging-x86_64/qbittorrent.install2015-04-22 19:14:52 UTC 
(rev 131986)
@@ -0,0 +1,13 @@
+
+post_install() {
+  

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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 21:14:46
  Author: jelle
Revision: 131985

upgpkg: qbittorrent 3.1.12-2

boost 1.58.0 rebuild

Modified:
  qbittorrent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 19:05:14 UTC (rev 131984)
+++ PKGBUILD2015-04-22 19:14:46 UTC (rev 131985)
@@ -8,7 +8,7 @@
 
 pkgname=qbittorrent
 pkgver=3.1.12
-pkgrel=1
+pkgrel=2
 pkgdesc=A bittorrent client written in C++ / Qt4 using the good libtorrent 
library
 arch=('i686' 'x86_64')
 url=http://www.qbittorrent.org;


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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 21:19:34
  Author: jelle
Revision: 131991

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

Added:
  electricsheep/repos/community-staging-i686/
  electricsheep/repos/community-staging-i686/PKGBUILD
(from rev 131990, electricsheep/trunk/PKGBUILD)
  electricsheep/repos/community-staging-i686/electricsheep-no-wxgtk.patch
(from rev 131990, electricsheep/trunk/electricsheep-no-wxgtk.patch)
  electricsheep/repos/community-staging-x86_64/
  electricsheep/repos/community-staging-x86_64/PKGBUILD
(from rev 131990, electricsheep/trunk/PKGBUILD)
  electricsheep/repos/community-staging-x86_64/electricsheep-no-wxgtk.patch
(from rev 131990, electricsheep/trunk/electricsheep-no-wxgtk.patch)

---+
 community-staging-i686/PKGBUILD   |   65 +
 community-staging-i686/electricsheep-no-wxgtk.patch   |   77 
 community-staging-x86_64/PKGBUILD |   65 +
 community-staging-x86_64/electricsheep-no-wxgtk.patch |   77 
 4 files changed, 284 insertions(+)

Copied: electricsheep/repos/community-staging-i686/PKGBUILD (from rev 131990, 
electricsheep/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 19:19:34 UTC (rev 131991)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=electricsheep
+pkgver=2.7b33
+pkgrel=23
+pkgdesc=A screensaver that realize the collective dream of sleeping computers 
from all over the internet
+arch=('i686' 'x86_64')
+url=http://community.electricsheep.org/;
+license=('GPL')
+depends=('curl' 'flam3' 'ffmpeg' 'lua51' 'libgtop' 'boost-libs' 'freeglut' 
'glee')
+makedepends=('boost' 'mesa' 'glu' 'tinyxml')
+optdepends=('xscreensaver: to use electricsheep with xscreensaver')
+options=('!emptydirs')
+source=(https://sources.archlinux.org/other/community/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig}
+electricsheep-no-wxgtk.patch)
+sha1sums=('d86607d97accad8519df2a21d67253abe45f5fdd'
+  'SKIP'
+  'b186318902dd0abac6e72a81fa374434d7244ac3')
+validpgpkeys=('5357F3B111688D88C1D88119FCF2CB179205AC90')
+
+# source PKGBUILD  mksource
+mksource() {
+  [[ -x /usr/bin/svn ]] || (echo svn not found. Install subversion.  
return 1)
+  _svnver=r125
+  _svntrunk=http://electricsheep.googlecode.com/svn/trunk/client_generic;
+  _svnmod=${pkgname}-${pkgver}
+  mkdir ${pkgname}-${pkgver}
+  pushd ${pkgname}-${pkgver}
+  svn co ${_svntrunk} --config-dir ./ -r ${_svnver} ${_svnmod}
+  find . -depth -type d -name .svn -exec rm -rf {} \;
+  (cd ${pkgname}-${pkgver} ; rm -r boost Build_guides curlTest ffmpeg 
InstallerMSVC \
+Launcher libpng libxml lua5.1 MacBuild RuntimeMSVC wxConfig)
+  tar -cJf ../${pkgname}-${pkgver}.tar.xz ${pkgname}-${pkgver}/*
+  popd
+  rm -r ${pkgname}-${pkgver}
+  gpg --detach-sign --use-agent -u ${GPGKEY} ${pkgname}-${pkgver}.tar.xz
+}
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+# Do not build broken electricsheep-preferences
+  patch -p0 -i ${srcdir}/electricsheep-no-wxgtk.patch
+
+  sed -i -e 's/av_close_input_file( m_pFormatContext )/avformat_close_input( 
\m_pFormatContext )/' ContentDecoder/ContentDecoder.cpp
+  sed -i -e 's/AM_PROG_CC_STDC/AC_PROG_CC/' configure.ac
+  sed -i '12 i\
+#include cstdio' Common/Singleton.h
+  mkdir m4
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./autogen.sh
+  CPPFLAGS+= -I/usr/include/lua5.1 ./configure --prefix=/usr
+  sed -i 's|-I /usr/include/libavutil||' MSVC/SettingsGUI/Makefile
+  make CXXFLAGS+=-DUSE_NEW_FFMPEG_API=1 GLEE_LIBS=-lGLee
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 menu-entries/ElectricSheep.desktop.kde 
${pkgdir}/usr/share/kde4/services/ScreenSavers/electricsheep.desktop
+  install -D -m644 Runtime/logo.png 
${pkgdir}/usr/share/icons/electricsheep.png
+}

Copied: electricsheep/repos/community-staging-i686/electricsheep-no-wxgtk.patch 
(from rev 131990, electricsheep/trunk/electricsheep-no-wxgtk.patch)
===
--- community-staging-i686/electricsheep-no-wxgtk.patch 
(rev 0)
+++ community-staging-i686/electricsheep-no-wxgtk.patch 2015-04-22 19:19:34 UTC 
(rev 131991)
@@ -0,0 +1,77 @@
+--- configure.ac.orig  2014-08-17 17:28:46.314141026 -0400
 configure.ac   2014-08-17 17:29:21.084084594 -0400
+@@ -71,64 +71,7 @@
+ 
+ 
+ 
+-dnl Check for WXWidgets
+-WX_VER_291=
+ 
+-AC_PATH_PROG(WX_CONFIG, wx-config, no)
+-
+-if test x$WX_CONFIG != xno; then
+-   WX_VERSION=`wx-config --version`
+-
+-   WX_MAJOR=${WX_VERSION%%.*};
+-   WX_MINOR=${WX_VERSION#*.};
+-   WX_MINOR=${WX_MINOR%%.*};
+-   WX_MICRO=${WX_VERSION##*.};
+-
+-   if test $WX_MAJOR -gt 2; then
+-  WX_VER_291=yes
+-   

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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 21:29:02
  Author: svenstaro
Revision: 131993

upgpkg: pokerth 1.1.1-6

boost 1.58.0 rebuild

Modified:
  pokerth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 19:21:39 UTC (rev 131992)
+++ PKGBUILD2015-04-22 19:29:02 UTC (rev 131993)
@@ -8,7 +8,7 @@
 pkgname=pokerth
 _realname=PokerTH
 pkgver=1.1.1
-pkgrel=5
+pkgrel=6
 pkgdesc=Open source Texas Hold'em Poker simulator
 arch=('i686' 'x86_64')
 url=http://www.pokerth.net/;


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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 21:29:07
  Author: svenstaro
Revision: 131994

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

Added:
  pokerth/repos/community-staging-i686/
  pokerth/repos/community-staging-i686/PKGBUILD
(from rev 131993, pokerth/trunk/PKGBUILD)
  pokerth/repos/community-staging-i686/gcrypt16.patch
(from rev 131993, pokerth/trunk/gcrypt16.patch)
  pokerth/repos/community-staging-x86_64/
  pokerth/repos/community-staging-x86_64/PKGBUILD
(from rev 131993, pokerth/trunk/PKGBUILD)
  pokerth/repos/community-staging-x86_64/gcrypt16.patch
(from rev 131993, pokerth/trunk/gcrypt16.patch)

-+
 community-staging-i686/PKGBUILD |   36 ++
 community-staging-i686/gcrypt16.patch   |   57 ++
 community-staging-x86_64/PKGBUILD   |   36 ++
 community-staging-x86_64/gcrypt16.patch |   57 ++
 4 files changed, 186 insertions(+)

Copied: pokerth/repos/community-staging-i686/PKGBUILD (from rev 131993, 
pokerth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 19:29:07 UTC (rev 131994)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Mateusz Herych heni...@gmail.com
+# Contributor: Bartłomiej Piotrowski barthal...@gmail.com
+# Contributor: Vasco Costa vasco.co...@meiodigital.com
+# Contributor: Federico Cinelli cine...@aur.archlinux.org
+
+pkgname=pokerth
+_realname=PokerTH
+pkgver=1.1.1
+pkgrel=6
+pkgdesc=Open source Texas Hold'em Poker simulator
+arch=('i686' 'x86_64')
+url=http://www.pokerth.net/;
+license=('GPL' 'custom')
+depends=('curl' 'boost-libs' 'gsasl' 'gnutls' 'protobuf' 'libxkbcommon-x11'
+ 'qt5-base' 'sdl_mixer' 'libircclient' 'tinyxml')
+makedepends=('boost')
+source=(http://downloads.sourceforge.net/sourceforge/pokerth/$_realname-$pkgver-src.tar.bz2;)
+md5sums=('a7f76f95782099f966e5f2b6809f502a')
+
+build() {
+  cd $srcdir/$_realname-$pkgver-src
+  
+  qmake-qt5 $pkgname.pro
+  make
+}
+
+package() {
+  cd $srcdir/$_realname-$pkgver-src
+
+  make INSTALL_ROOT=$pkgdir install
+
+  install -Dm644 docs/pokerth.1 $pkgdir/usr/share/man/man1/pokerth.1
+  install -Dm644 data/data-copyright.txt 
$pkgdir/usr/share/licenses/pokerth/data-copyright.txt
+}

Copied: pokerth/repos/community-staging-i686/gcrypt16.patch (from rev 131993, 
pokerth/trunk/gcrypt16.patch)
===
--- community-staging-i686/gcrypt16.patch   (rev 0)
+++ community-staging-i686/gcrypt16.patch   2015-04-22 19:29:07 UTC (rev 
131994)
@@ -0,0 +1,57 @@
+From aa22d39d7753acc56813171e654fa9fa1f0ca759 Mon Sep 17 00:00:00 2001
+From: lotodore poke...@lotharmay.de
+Date: Thu, 19 Dec 2013 12:28:35 +0100
+Subject: [PATCH] Fix for libgcrypt 1.6.0 compile error #247 (supported only on
+ Linux because libgcrypt does not yet support native Windows threads).
+
+---
+ src/net/common/socket_startup.cpp | 13 +++--
+ 1 file changed, 11 insertions(+), 2 deletions(-)
+
+diff --git a/src/net/common/socket_startup.cpp 
b/src/net/common/socket_startup.cpp
+index 12e8604..59ffc4f 100644
+--- a/src/net/common/socket_startup.cpp
 b/src/net/common/socket_startup.cpp
+@@ -37,6 +37,10 @@
+ 
+ #ifndef HAVE_OPENSSL
+ 
++// With libgcrypt 1.6.0, it is no longer supported to provide thread 
callbacks.
++// Use the default thread implementation instead, and cross fingers that it 
works with boost thread...
++#if GCRYPT_VERSION_NUMBER  0x010600
++
+ extern C {
+ 
+   int gcry_bthread_init()
+@@ -64,12 +68,15 @@
+   return 0;
+   }
+ 
+-  struct gcry_thread_cbs gcry_threads_boost = {
++  static struct gcry_thread_cbs gcry_threads_boost = {
+   GCRY_THREAD_OPTION_USER, gcry_bthread_init, gcry_bmutex_init,
+   gcry_bmutex_destroy, gcry_bmutex_lock, gcry_bmutex_unlock,
+   NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
+   };
+ }
++
++#endif // GCRYPT_VERSION_NUMBER  0x010600
++
+ #endif // not HAVE_OPENSSL
+ 
+ bool
+@@ -78,8 +85,10 @@
+ #ifdef HAVE_OPENSSL
+   return SSL_library_init() == 1;
+ #else
+-  gcry_check_version(NULL);
++#if GCRYPT_VERSION_NUMBER  0x010600
+   gcry_control(GCRYCTL_SET_THREAD_CBS, gcry_threads_boost);
++#endif
++  gcry_check_version(NULL);
+   gcry_control(GCRYCTL_ENABLE_QUICK_RANDOM, 0);
+   gcry_control(GCRYCTL_INITIALIZATION_FINISHED, 0);
+   return true;
+-- 
+1.8.5.1
+

Copied: pokerth/repos/community-staging-x86_64/PKGBUILD (from rev 131993, 
pokerth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 

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

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 21:32:52
  Author: jelle
Revision: 131995

upgpkg: pion 5.0.5-4

boost 1.58.0 rebuild

Modified:
  pion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 19:29:07 UTC (rev 131994)
+++ PKGBUILD2015-04-22 19:32:52 UTC (rev 131995)
@@ -2,7 +2,7 @@
 # Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
 pkgname=pion
 pkgver=5.0.5
-pkgrel=3
+pkgrel=4
 pkgdesc=A C++ development library for implementing lightweight HTTP 
interfaces
 url=https://github.com/cloudmeter/pion;
 arch=('i686' 'x86_64')


  1   2   3   >