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

2014-03-08 Thread Andreas Radke
Date: Sunday, March 9, 2014 @ 08:41:26
  Author: andyrtr
Revision: 207433

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

Added:
  freetype2/repos/testing-i686/
  freetype2/repos/testing-i686/PKGBUILD
(from rev 207432, freetype2/trunk/PKGBUILD)
  freetype2/repos/testing-i686/freetype-2.2.1-enable-valid.patch
(from rev 207432, freetype2/trunk/freetype-2.2.1-enable-valid.patch)
  freetype2/repos/testing-i686/freetype-2.5.1-enable-sph.patch
(from rev 207432, freetype2/trunk/freetype-2.5.1-enable-sph.patch)
  freetype2/repos/testing-i686/freetype-2.5.1-enable-spr.patch
(from rev 207432, freetype2/trunk/freetype-2.5.1-enable-spr.patch)
  freetype2/repos/testing-x86_64/
  freetype2/repos/testing-x86_64/PKGBUILD
(from rev 207432, freetype2/trunk/PKGBUILD)
  freetype2/repos/testing-x86_64/freetype-2.2.1-enable-valid.patch
(from rev 207432, freetype2/trunk/freetype-2.2.1-enable-valid.patch)
  freetype2/repos/testing-x86_64/freetype-2.5.1-enable-sph.patch
(from rev 207432, freetype2/trunk/freetype-2.5.1-enable-sph.patch)
  freetype2/repos/testing-x86_64/freetype-2.5.1-enable-spr.patch
(from rev 207432, freetype2/trunk/freetype-2.5.1-enable-spr.patch)

--+
 testing-i686/PKGBUILD|   49 +
 testing-i686/freetype-2.2.1-enable-valid.patch   |   20 
 testing-i686/freetype-2.5.1-enable-sph.patch |   13 +
 testing-i686/freetype-2.5.1-enable-spr.patch |   13 +
 testing-x86_64/PKGBUILD  |   49 +
 testing-x86_64/freetype-2.2.1-enable-valid.patch |   20 
 testing-x86_64/freetype-2.5.1-enable-sph.patch   |   13 +
 testing-x86_64/freetype-2.5.1-enable-spr.patch   |   13 +
 8 files changed, 190 insertions(+)

Copied: freetype2/repos/testing-i686/PKGBUILD (from rev 207432, 
freetype2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-03-09 07:41:26 UTC (rev 207433)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=freetype2
+pkgver=2.5.3
+pkgrel=1
+pkgdesc="TrueType font rendering library"
+arch=(i686 x86_64)
+license=('GPL')
+url="http://freetype.sourceforge.net";
+# adding harfbuzz for improved OpenType features auto-hinting 
+# introduces a cycle dep to harfbuzz depending on freetype wanted by upstream
+depends=('zlib' 'bzip2' 'sh' 'libpng' 'harfbuzz')
+source=(http://downloads.sourceforge.net/sourceforge/freetype/freetype-${pkgver}.tar.bz2{,.sig}
+freetype-2.2.1-enable-valid.patch
+freetype-2.5.1-enable-spr.patch
+freetype-2.5.1-enable-sph.patch)
+sha1sums=('d3c26cc17ec7fe6c36f4efc02ef92ab6aa3f4b46'
+  'SKIP'
+  'f279d922a873d62a8af50bfc873051839d194dca'
+  '13ee8d558593db991ad29fa090b461f914536104'
+  'c31fa3d342ead56f3acfa1f267b474a7686d0014')
+
+prepare() {
+  cd "${srcdir}/freetype-${pkgver}"
+  patch -Np1 -i "${srcdir}/freetype-2.2.1-enable-valid.patch"
+  patch -Np1 -i "${srcdir}/freetype-2.5.1-enable-spr.patch"
+
+  # Disabled for now due to resistance
+  # Kept here for easier rebuilds via ABS
+  # https://bugs.archlinux.org/task/35274
+  #patch -Np1 -i "${srcdir}/freetype-2.5.1-enable-sph.patch"
+}
+
+build() {
+  cd "${srcdir}/freetype-${pkgver}"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd "${srcdir}/freetype-${pkgver}"
+  make -k check
+}
+
+package() {
+  cd "${srcdir}/freetype-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: freetype2/repos/testing-i686/freetype-2.2.1-enable-valid.patch (from 
rev 207432, freetype2/trunk/freetype-2.2.1-enable-valid.patch)
===
--- testing-i686/freetype-2.2.1-enable-valid.patch  
(rev 0)
+++ testing-i686/freetype-2.2.1-enable-valid.patch  2014-03-09 07:41:26 UTC 
(rev 207433)
@@ -0,0 +1,20 @@
+--- freetype-2.2.1/modules.cfg.orig2006-07-07 21:01:09.0 -0400
 freetype-2.2.1/modules.cfg 2006-07-07 21:01:54.0 -0400
+@@ -110,7 +110,7 @@
+ AUX_MODULES += cache
+ 
+ # TrueType GX/AAT table validation.  Needs ftgxval.c below.
+-# AUX_MODULES += gxvalid
++AUX_MODULES += gxvalid
+ 
+ # Support for streams compressed with gzip (files with suffix .gz).
+ #
+@@ -124,7 +124,7 @@
+ 
+ # OpenType table validation.  Needs ftotval.c below.
+ #
+-# AUX_MODULES += otvalid
++AUX_MODULES += otvalid
+ 
+ # Auxiliary PostScript driver component to share common code.
+ #

Copied: freetype2/repos/testing-i686/freetype-2.5.1-enable-sph.patch (from rev 
207432, freetype2/trunk/freetype-2.5.1-enable-sph.patch)
===
--- testing-i686/freetype-2.5.1-enable-sph.patch
(rev 0)
+++ testing-i686/freetype-2.5.1-enable-sph.patch2014-03-09 07

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

2014-03-08 Thread Andreas Radke
Date: Sunday, March 9, 2014 @ 08:41:10
  Author: andyrtr
Revision: 207432

upgpkg: freetype2 2.5.3-1

upstream update 2.5.3; add new harfbuzz auto-hinting feature

Modified:
  freetype2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-09 02:06:35 UTC (rev 207431)
+++ PKGBUILD2014-03-09 07:41:10 UTC (rev 207432)
@@ -2,21 +2,24 @@
 # Maintainer: Jan de Groot 
 
 pkgname=freetype2
-pkgver=2.5.2
+pkgver=2.5.3
 pkgrel=1
 pkgdesc="TrueType font rendering library"
 arch=(i686 x86_64)
 license=('GPL')
 url="http://freetype.sourceforge.net";
-depends=('zlib' 'bzip2' 'sh' 'libpng')
-source=(http://downloads.sourceforge.net/sourceforge/freetype/freetype-${pkgver}.tar.bz2
+# adding harfbuzz for improved OpenType features auto-hinting 
+# introduces a cycle dep to harfbuzz depending on freetype wanted by upstream
+depends=('zlib' 'bzip2' 'sh' 'libpng' 'harfbuzz')
+source=(http://downloads.sourceforge.net/sourceforge/freetype/freetype-${pkgver}.tar.bz2{,.sig}
 freetype-2.2.1-enable-valid.patch
 freetype-2.5.1-enable-spr.patch
 freetype-2.5.1-enable-sph.patch)
-md5sums=('10e8f4d6a019b124088d18bc26123a25'
- '214119610444c9b02766ccee5e220680'
- '80a14cce234f3f190cd936ca9060c398'
- '0636ba2ff074201e2ea5c47ac408bc63')
+sha1sums=('d3c26cc17ec7fe6c36f4efc02ef92ab6aa3f4b46'
+  'SKIP'
+  'f279d922a873d62a8af50bfc873051839d194dca'
+  '13ee8d558593db991ad29fa090b461f914536104'
+  'c31fa3d342ead56f3acfa1f267b474a7686d0014')
 
 prepare() {
   cd "${srcdir}/freetype-${pkgver}"
@@ -31,9 +34,7 @@
 
 build() {
   cd "${srcdir}/freetype-${pkgver}"
-
   ./configure --prefix=/usr --disable-static
-
   make
 }
 



[arch-commits] Commit in lib32-nvidia-304xx-utils/repos/multilib-testing-x86_64 (2 files)

2014-03-08 Thread Felix Yan
Date: Sunday, March 9, 2014 @ 05:27:07
  Author: fyan
Revision: 106842

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-nvidia-304xx-utils/repos/multilib-testing-x86_64/PKGBUILD
(from rev 106841, lib32-nvidia-304xx-utils/trunk/PKGBUILD)
Deleted:
  lib32-nvidia-304xx-utils/repos/multilib-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-09 04:25:19 UTC (rev 106841)
+++ PKGBUILD2014-03-09 04:27:07 UTC (rev 106842)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jason Graham 
-# Contributor: Thomas Baechler 
-# Contributor: James Rayner 
-
-_pkgbasename=nvidia-304xx-utils
-pkgbase=lib32-$_pkgbasename
-pkgname=('lib32-nvidia-304xx-utils' 'lib32-nvidia-304xx-libgl' 
'lib32-opencl-nvidia-304xx')
-pkgver=304.119
-pkgrel=2
-pkgdesc="NVIDIA drivers utilities and libraries. (32-bit)"
-arch=('x86_64')
-url="http://www.nvidia.com/";
-license=('custom')
-makedepends=('lib32-gcc-libs' 'lib32-libcl' 'lib32-libxvmc' 'lib32-zlib' 
- 'lib32-libxext' 'nvidia-304xx-utils' 'opencl-nvidia-304xx')
-options=('!strip')
-
-_arch='x86'
-_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
-source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums=('a2acb8066ac296005dbf560ee83ae6d9')
-
-build() {
-cd "${srcdir}"
-sh ${_pkg}.run --extract-only
-}
-
-package_lib32-opencl-nvidia-304xx() {
-pkgdesc="OpenCL implemention for NVIDIA (32-bit)"
-depends=('lib32-libcl' 'lib32-zlib' 'lib32-gcc-libs' 'opencl-nvidia-304xx')
-optdepends=('opencl-headers: headers necessary for OpenCL development')
-conflicts=('lib32-opencl-nvidia')
-
-cd "${srcdir}/${_pkg}"
-
-# OpenCL
-install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-compiler.so.${pkgver}"
-ln -s "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-compiler.so.1"
-ln -s "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-compiler.so"
-
-install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-opencl.so.${pkgver}" 
-ln -s "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-opencl.so.1"
-ln -s "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-opencl.so"
-}
-
-package_lib32-nvidia-304xx-libgl() {
-pkgdesc="NVIDIA drivers libraries symlinks (32-bit)"
-depends=('lib32-nvidia-304xx-utils')
-conflicts=('lib32-libgl')
-provides=('lib32-libgl')
-cd "${srcdir}/${_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"
-
-mkdir -p "${pkgdir}/usr/share/licenses"
-ln -s $_pkgbasename "${pkgdir}/usr/share/licenses/lib32-nvidia-libgl"
-}
-
-package_lib32-nvidia-304xx-utils() {
-pkgdesc="NVIDIA drivers utilities (32-bit)"
-depends=('lib32-libxvmc' 'lib32-zlib' 'lib32-gcc-libs' 'lib32-libxext')
-optdepends=('lib32-opencl-nvidia-304xx')
-cd "${srcdir}/${_pkg}"
-
-# OpenGL library
-install -D -m755 libGL.so.${pkgver} 
"${pkgdir}/usr/lib32/nvidia/libGL.so.${pkgver}"
-# OpenGL core library
-install -D -m755 libnvidia-glcore.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-glcore.so.${pkgver}"
-# XvMC
-#install -D -m644 libXvMCNVIDIA.a "${pkgdir}/usr/lib32/libXvMCNVIDIA.a"
-install -D -m755 libXvMCNVIDIA.so.${pkgver} 
"${pkgdir}/usr/lib32/libXvMCNVIDIA.so.${pkgver}"
-# VDPAU
-install -D -m755 libvdpau_nvidia.so.${pkgver} 
"${pkgdir}/usr/lib32/vdpau/libvdpau_nvidia.so.${pkgver}"
-# CUDA
-install -D -m755 libcuda.so.${pkgver} 
"${pkgdir}/usr/lib32/libcuda.so.${pkgver}"
-install -D -m755 libnvcuvid.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvcuvid.so.${pkgver}"
-# nvidia-tls library
-install -D -m755 tls/libnvidia-tls.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-tls.so.${pkgver}"
-
-install -D -m755 libnvidia-cfg.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-cfg.so.${pkgver}"
-install -D -m755 libnvidia-ml.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-ml.so.${pkgver}"
-
-# create soname links
-for _lib in $(find "${pkgdir}" -name '*.so*'); do
-_soname="$(dirname ${_lib})/$(LC_ALL=C readelf -d "$_lib" | sed -nr 
's/.*Library soname: \[(.*)\].*/\1/p')"
-if [ ! -e "${_soname}" ]; then
-ln -s "$(basename ${_lib})" "${_soname}"
-ln -s "$(basename ${_soname})" "${_soname/.[0-9]*/}"
-fi
-done
-
-rm -rf "${pkgdir}"/usr/{include,share,bin}
-mkdir -p "${pkgdir}/usr/share/licenses"
-ln -s $_pkgbasename "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-

Copied: lib32-nvidia-304xx-utils/repos/mul

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

2014-03-08 Thread Felix Yan
Date: Sunday, March 9, 2014 @ 05:25:19
  Author: fyan
Revision: 106841

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-mesa/repos/multilib-testing-x86_64/PKGBUILD
(from rev 106840, lib32-mesa/trunk/PKGBUILD)
Deleted:
  lib32-mesa/repos/multilib-testing-x86_64/PKGBUILD

--+
 PKGBUILD |  274 -
 1 file changed, 144 insertions(+), 130 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-09 04:24:51 UTC (rev 106840)
+++ PKGBUILD2014-03-09 04:25:19 UTC (rev 106841)
@@ -1,130 +0,0 @@
-# $Id$
-# Contributor: Jan de Groot 
-# Contributor: Andreas Radke 
-
-pkgbase=lib32-mesa
-pkgname=('lib32-ati-dri' 'lib32-intel-dri' 'lib32-nouveau-dri' 'lib32-mesa' 
'lib32-mesa-libgl')
-pkgver=10.1.0
-pkgrel=1
-arch=('x86_64')
-makedepends=('python2' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 'glproto' 
'lib32-libdrm' 'dri2proto' 'dri3proto' 'presentproto' 
- 'lib32-libxshmfence' 'lib32-libxxf86vm' 'lib32-libxdamage' 
'gcc-multilib' 'lib32-elfutils' 'lib32-llvm' 'lib32-systemd')
-url="http://mesa3d.sourceforge.net";
-license=('custom')
-options=('!libtool')
-source=(ftp://ftp.freedesktop.org/pub/mesa/10.1/MesaLib-${pkgver}.tar.bz2)
-md5sums=('3ec43f79dbcd9aa2a4a27bf1f51655b6')
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-  export LLVM_CONFIG=/usr/bin/llvm-config32
-
-  cd ${srcdir}/?esa-*
-
-  # our automake is far too new for their build system :)
-  autoreconf -vfi
-
-  ./configure --enable-32-bit \
---libdir=/usr/lib32 \
---prefix=/usr \
---sysconfdir=/etc \
---with-dri-driverdir=/usr/lib32/xorg/modules/dri \
---with-gallium-drivers=r300,r600,radeonsi,nouveau,swrast \
---with-dri-drivers=i915,i965,r200,radeon,nouveau,swrast \
---with-llvm-shared-libs \
---enable-gallium-llvm \
---enable-egl \
---enable-gallium-egl \
---with-egl-platforms=x11,drm \
---enable-shared-glapi \
---enable-gbm \
---enable-glx-tls \
---enable-dri \
---enable-glx \
---enable-osmesa \
---enable-gles1 \
---enable-gles2 \
---enable-texture-float \
---enable-dri3
-
-  make
-
-  mkdir $srcdir/fakeinstall
-  make DESTDIR=${srcdir}/fakeinstall install
-}
-
-package_lib32-ati-dri() {
-  pkgdesc="Mesa drivers for AMD/ATI Radeon (32-bit)"
-  depends=('lib32-mesa-libgl' "lib32-mesa=${pkgver}" 'lib32-libtxc_dxtn' 
'ati-dri')
-
-  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
-  mv -v 
${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/{r200,r300,r600,radeon,radeonsi}_dri.so
 ${pkgdir}/usr/lib32/xorg/modules/dri/
-
-  install -m755 -d ${pkgdir}/usr/lib32/gallium-pipe
-  mv -v 
${srcdir}/fakeinstall/usr/lib32/gallium-pipe/pipe_{r300,r600,radeonsi}* 
${pkgdir}/usr/lib32/gallium-pipe/
-  
-  install -m755 -d "${pkgdir}/usr/share/licenses"
-  ln -s ati-dri "$pkgdir/usr/share/licenses/lib32-ati-dri"
-}
-
-package_lib32-intel-dri() {
-  pkgdesc="Mesa DRI drivers for Intel (32-bit)"
-  depends=('lib32-mesa-libgl' "lib32-mesa=${pkgver}" 'lib32-libtxc_dxtn' 
'intel-dri')
-
-  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
-  mv -v ${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/{i915,i965}_dri.so 
${pkgdir}/usr/lib32/xorg/modules/dri/
-
-  install -m755 -d "${pkgdir}/usr/share/licenses"
-  ln -s intel-dri "$pkgdir/usr/share/licenses/lib32-intel-dri"
-}
-
-package_lib32-nouveau-dri() {
-  pkgdesc="Mesa drivers for Nouveau (32-bit)"
-  depends=('lib32-mesa-libgl' "lib32-mesa=${pkgver}" 'lib32-libtxc_dxtn' 
'nouveau-dri')
-
-  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
-  mv -v 
${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/nouveau_{dri,vieux_dri}.so 
${pkgdir}/usr/lib32/xorg/modules/dri/
-
-  install -m755 -d ${pkgdir}/usr/lib32/gallium-pipe
-  mv -v ${srcdir}/fakeinstall/usr/lib32/gallium-pipe/pipe_nouveau* 
${pkgdir}/usr/lib32/gallium-pipe/
-
-  install -m755 -d "${pkgdir}/usr/share/licenses"
-  ln -s nouveau-dri "$pkgdir/usr/share/licenses/lib32-nouveau-dri"
-}
-
-package_lib32-mesa() {
-  pkgdesc="an open-source implementation of the OpenGL specification (32-bit)"
-  depends=('lib32-libdrm' 'lib32-libxxf86vm' 'lib32-libxdamage' 
'lib32-libxshmfence' 'lib32-systemd' 'lib32-elfutils' 'lib32-llvm-libs' 'mesa')
-  optdepends=('opengl-man-pages: for the OpenGL API man pages')
-  provides=('lib32-libglapi' 'lib32-osmesa' 'lib32-libgbm' 'lib32-libgles' 
'lib32-libegl')
-  conflicts=('lib32-libglapi' 'lib32-osmesa' 'lib32-libgbm' 'lib32-libgles' 
'lib32-libegl')
-  replaces=('lib32-libglapi' 'lib32-osmesa' 'lib32-libgbm' 'lib32-libgles' 
'lib32-libegl')
-
-  mv -v ${srcdir}/fakeinstall/* ${pkgdir}
-  mv ${pkgdir}/usr/lib32/libGL.so.1.2.0 ${pkgdir}/usr/lib32/mesa-libGL.so.1.2.0
-  ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib32/mesa-libGL.so.1
-  rm ${pkgdir}/usr/lib32/libGL.so{,.1}
-  rm -r ${pkgdir}/etc
-  rm -r ${pkgdir

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

2014-03-08 Thread Felix Yan
Date: Sunday, March 9, 2014 @ 05:24:27
  Author: fyan
Revision: 106839

upgpkg: lib32-mesa 10.1.0-2

- move libEGL, libGLES* to lib32-mesa-libgl as the main mesa package

Modified:
  lib32-mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-09 02:41:25 UTC (rev 106838)
+++ PKGBUILD2014-03-09 04:24:27 UTC (rev 106839)
@@ -5,7 +5,7 @@
 pkgbase=lib32-mesa
 pkgname=('lib32-ati-dri' 'lib32-intel-dri' 'lib32-nouveau-dri' 'lib32-mesa' 
'lib32-mesa-libgl')
 pkgver=10.1.0
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 makedepends=('python2' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 'glproto' 
'lib32-libdrm' 'dri2proto' 'dri3proto' 'presentproto' 
  'lib32-libxshmfence' 'lib32-libxxf86vm' 'lib32-libxdamage' 
'gcc-multilib' 'lib32-elfutils' 'lib32-llvm' 'lib32-systemd')
@@ -103,9 +103,14 @@
   replaces=('lib32-libglapi' 'lib32-osmesa' 'lib32-libgbm' 'lib32-libgles' 
'lib32-libegl')
 
   mv -v ${srcdir}/fakeinstall/* ${pkgdir}
+  # rename libgl/EGL/glesv*.so to not conflict with blobs - may break .pc 
files ?
   mv ${pkgdir}/usr/lib32/libGL.so.1.2.0 ${pkgdir}/usr/lib32/mesa-libGL.so.1.2.0
-  ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib32/mesa-libGL.so.1
-  rm ${pkgdir}/usr/lib32/libGL.so{,.1}
+  mv ${pkgdir}/usr/lib32/libEGL.so.1.0.0
${pkgdir}/usr/lib32/mesa-libEGL.so.1.0.0
+  mv ${pkgdir}/usr/lib32/libGLESv1_CM.so.1.1.0  
${pkgdir}/usr/lib32/mesa-libGLESv1_CM.so.1.1.0
+  mv ${pkgdir}/usr/lib32/libGLESv2.so.2.0.0   
${pkgdir}/usr/lib32/mesa-libGLESv2.so.2.0.0
+  
+  rm ${pkgdir}/usr/lib32/lib{GL,EGL,GLESv1_CM,GLESv2}.so*
+  
   rm -r ${pkgdir}/etc
   rm -r ${pkgdir}/usr/include
   
@@ -121,9 +126,18 @@
 
   install -m755 -d ${pkgdir}/usr/lib32
 
-  ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib32/libGL.so
-  ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib32/libGL.so.1
-  ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib32/libGL.so.1.2.0
+  ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib32/libGL.so
+  ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib32/libGL.so.1
+  ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib32/libGL.so.1.2.0
+  ln -s mesa-libEGL.so.1.0.0${pkgdir}/usr/lib32/libEGL.so
+  ln -s mesa-libEGL.so.1.0.0${pkgdir}/usr/lib32/libEGL.so.1
+  ln -s mesa-libEGL.so.1.0.0${pkgdir}/usr/lib32/libEGL.so.1.0.0
+  ln -s mesa-libGLESv1_CM.so.1.1.0  ${pkgdir}/usr/lib32/libGLESv1_CM.so
+  ln -s mesa-libGLESv1_CM.so.1.1.0  ${pkgdir}/usr/lib32/libGLESv1_CM.so.1
+  ln -s mesa-libGLESv1_CM.so.1.1.0  ${pkgdir}/usr/lib32/libGLESv1_CM.so.1.1.0
+  ln -s mesa-libGLESv2.so.2.0.0 ${pkgdir}/usr/lib32/libGLESv2.so
+  ln -s mesa-libGLESv2.so.2.0.0 ${pkgdir}/usr/lib32/libGLESv2.so.2
+  ln -s mesa-libGLESv2.so.2.0.0 ${pkgdir}/usr/lib32/libGLESv2.so.2.0.0
 
   install -m755 -d "${pkgdir}/usr/share/licenses"
   ln -s libglapi "${pkgdir}/usr/share/licenses/lib32-libglapi"



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

2014-03-08 Thread Felix Yan
Date: Sunday, March 9, 2014 @ 05:24:51
  Author: fyan
Revision: 106840

upgpkg: lib32-nvidia-304xx-utils 304.119-3

- add symlinks to libEGL and libGLES libs

Modified:
  lib32-nvidia-304xx-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-09 04:24:27 UTC (rev 106839)
+++ PKGBUILD2014-03-09 04:24:51 UTC (rev 106840)
@@ -8,7 +8,7 @@
 pkgbase=lib32-$_pkgbasename
 pkgname=('lib32-nvidia-304xx-utils' 'lib32-nvidia-304xx-libgl' 
'lib32-opencl-nvidia-304xx')
 pkgver=304.119
-pkgrel=2
+pkgrel=3
 pkgdesc="NVIDIA drivers utilities and libraries. (32-bit)"
 arch=('x86_64')
 url="http://www.nvidia.com/";
@@ -57,6 +57,17 @@
 ln -s "libGL.so.${pkgver}" "${pkgdir}/usr/lib32/libGL.so.1"
 ln -s "libGL.so.${pkgver}" "${pkgdir}/usr/lib32/libGL.so"
 
+# We have to provide symlinks to mesa, as nvidia 304xx doesn't ship them
+ln -s mesa-libEGL.so.1.0.0"${pkgdir}/usr/lib32/libEGL.so"
+ln -s mesa-libEGL.so.1.0.0"${pkgdir}/usr/lib32/libEGL.so.1"
+ln -s mesa-libEGL.so.1.0.0"${pkgdir}/usr/lib32/libEGL.so.1.0.0"
+ln -s mesa-libGLESv1_CM.so.1.1.0  "${pkgdir}/usr/lib32/libGLESv1_CM.so"
+ln -s mesa-libGLESv1_CM.so.1.1.0  "${pkgdir}/usr/lib32/libGLESv1_CM.so.1"
+ln -s mesa-libGLESv1_CM.so.1.1.0  
"${pkgdir}/usr/lib32/libGLESv1_CM.so.1.1.0"
+ln -s mesa-libGLESv2.so.2.0.0 "${pkgdir}/usr/lib32/libGLESv2.so"
+ln -s mesa-libGLESv2.so.2.0.0 "${pkgdir}/usr/lib32/libGLESv2.so.2"
+ln -s mesa-libGLESv2.so.2.0.0 "${pkgdir}/usr/lib32/libGLESv2.so.2.0.0"
+
 mkdir -p "${pkgdir}/usr/share/licenses"
 ln -s $_pkgbasename "${pkgdir}/usr/share/licenses/lib32-nvidia-libgl"
 }
@@ -67,23 +78,29 @@
 optdepends=('lib32-opencl-nvidia-304xx')
 cd "${srcdir}/${_pkg}"
 
-# OpenGL library
-install -D -m755 libGL.so.${pkgver} 
"${pkgdir}/usr/lib32/nvidia/libGL.so.${pkgver}"
+# OpenGL libraries
+install -D -m755 "libGL.so.${pkgver}" 
"${pkgdir}/usr/lib32/nvidia/libGL.so.${pkgver}"
+
 # OpenGL core library
-install -D -m755 libnvidia-glcore.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-glcore.so.${pkgver}"
+install -D -m755 "libnvidia-glcore.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-glcore.so.${pkgver}"
+
 # XvMC
-#install -D -m644 libXvMCNVIDIA.a "${pkgdir}/usr/lib32/libXvMCNVIDIA.a"
-install -D -m755 libXvMCNVIDIA.so.${pkgver} 
"${pkgdir}/usr/lib32/libXvMCNVIDIA.so.${pkgver}"
+install -D -m755 "libXvMCNVIDIA.so.${pkgver}" 
"${pkgdir}/usr/lib32/libXvMCNVIDIA.so.${pkgver}"
+
 # VDPAU
-install -D -m755 libvdpau_nvidia.so.${pkgver} 
"${pkgdir}/usr/lib32/vdpau/libvdpau_nvidia.so.${pkgver}"
+install -D -m755 "libvdpau_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/vdpau/libvdpau_nvidia.so.${pkgver}"
+
+# nvidia-tls library
+install -D -m755 "tls/libnvidia-tls.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-tls.so.${pkgver}"
+install -D -m755 "libnvidia-cfg.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-cfg.so.${pkgver}"
+install -D -m755 "libnvidia-ml.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-ml.so.${pkgver}"
+
 # CUDA
-install -D -m755 libcuda.so.${pkgver} 
"${pkgdir}/usr/lib32/libcuda.so.${pkgver}"
-install -D -m755 libnvcuvid.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvcuvid.so.${pkgver}"
-# nvidia-tls library
-install -D -m755 tls/libnvidia-tls.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-tls.so.${pkgver}"
+install -D -m755 "libcuda.so.${pkgver}" 
"${pkgdir}/usr/lib32/libcuda.so.${pkgver}"
+install -D -m755 "libnvcuvid.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvcuvid.so.${pkgver}"
 
-install -D -m755 libnvidia-cfg.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-cfg.so.${pkgver}"
-install -D -m755 libnvidia-ml.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-ml.so.${pkgver}"
+# DEBUG
+install -D -m755 nvidia-debugdump "${pkgdir}/usr/bin/nvidia-debugdump"
 
 # create soname links
 for _lib in $(find "${pkgdir}" -name '*.so*'); do



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

2014-03-08 Thread Sven-Hendrik Haase
Date: Sunday, March 9, 2014 @ 03:41:25
  Author: svenstaro
Revision: 106838

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-09 02:41:15 UTC (rev 106837)
+++ PKGBUILD2014-03-09 02:41:25 UTC (rev 106838)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Thomas Baechler 
-# Contributor: James Rayner 
-
-_pkgbasename=nvidia-utils
-pkgbase=lib32-$_pkgbasename
-pkgname=('lib32-nvidia-utils' 'lib32-nvidia-libgl' 'lib32-opencl-nvidia')
-pkgver=334.21
-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=('3b2736dd6ed7e24f71004bad0e55e32e')
-
-build() {
-cd "${srcdir}"
-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 "${srcdir}/${_pkg}"
-
-# OpenCL
-install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-compiler.so.${pkgver}"
-ln -s "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-compiler.so.1"
-ln -s "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-compiler.so"
-
-install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-opencl.so.${pkgver}" 
-ln -s "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-opencl.so.1"
-ln -s "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-opencl.so"
-
-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 "${srcdir}/${_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"
-
-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 "${srcdir}/${_pkg}"
-
-# OpenGL library
-install -D -m755 libGL.so.${pkgver} 
"${pkgdir}/usr/lib32/nvidia/libGL.so.${pkgver}"
-# OpenGL core library
-install -D -m755 libnvidia-glcore.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-glcore.so.${pkgver}"
-# VDPAU
-install -D -m755 libvdpau_nvidia.so.${pkgver} 
"${pkgdir}/usr/lib32/vdpau/libvdpau_nvidia.so.${pkgver}"
-# CUDA
-install -D -m755 libcuda.so.${pkgver} 
"${pkgdir}/usr/lib32/libcuda.so.${pkgver}"
-install -D -m755 libnvcuvid.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvcuvid.so.${pkgver}"
-# nvidia-tls library
-install -D -m755 tls/libnvidia-tls.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-tls.so.${pkgver}"
-
-install -D -m755 libnvidia-cfg.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-cfg.so.${pkgver}"
-install -D -m755 libnvidia-ml.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-ml.so.${pkgver}"
-
-# create soname links
-for _lib in $(find "${pkgdir}" -name '*.so*'); do
-_soname="$(dirname ${_lib})/$(LC_ALL=C readelf -d "$_lib" | sed -nr 
's/.*Library soname: \[(.*)\].*/\1/p')"
-if [ ! -e "${_soname}" ]; then
-ln -s "$(basename ${_lib})" "${_soname}"
-ln -s "$(basename ${_soname})" "${_soname/.[0-9]*/}"
-fi
-done
-
-rm -rf "${pkgdir}"/usr/{include,share,bin}
-mkdir -p "${pkgdir}/usr/share/licenses"
-ln -s $_pkgbasename "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: lib32-nvidia-utils/repos/multilib-x86_64/PKGBUILD (from rev 106837, 
lib32-nvidia-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-09 02:41:25 UTC (rev 106838)
@@ -0,0 +1,118 @@
+# $Id$
+# Maintainer: Thomas Baechler 
+# Contributor: James Rayner 
+
+_pkgbasename=nvidia-utils
+pkgbase=lib32-$_pkgbasename
+pkgname=('lib32-nvidia-utils' 'lib32-nvidia-libgl' 'lib32-opencl-nvidia')
+pkgver=334.21
+

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

2014-03-08 Thread Sven-Hendrik Haase
Date: Sunday, March 9, 2014 @ 03:41:15
  Author: svenstaro
Revision: 106837

upgpkg: lib32-nvidia-utils 334.21-2

Follow nvidia-utils package

Modified:
  lib32-nvidia-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-09 02:11:17 UTC (rev 106836)
+++ PKGBUILD2014-03-09 02:41:15 UTC (rev 106837)
@@ -6,7 +6,7 @@
 pkgbase=lib32-$_pkgbasename
 pkgname=('lib32-nvidia-utils' 'lib32-nvidia-libgl' 'lib32-opencl-nvidia')
 pkgver=334.21
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url="http://www.nvidia.com/";
 license=('custom')
@@ -54,6 +54,18 @@
 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"
 }
@@ -64,20 +76,32 @@
 optdepends=('lib32-opencl-nvidia')
 cd "${srcdir}/${_pkg}"
 
-# OpenGL library
-install -D -m755 libGL.so.${pkgver} 
"${pkgdir}/usr/lib32/nvidia/libGL.so.${pkgver}"
+# 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-glcore.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-glcore.so.${pkgver}"
+
+# nvidia-ifr library
+install -D -m755 "libnvidia-ifr.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-ifr.so.${pkgver}"
+
+# nvidia-fbc library
+install -D -m755 "libnvidia-fbc.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-fbc.so.${pkgver}"
+
 # VDPAU
-install -D -m755 libvdpau_nvidia.so.${pkgver} 
"${pkgdir}/usr/lib32/vdpau/libvdpau_nvidia.so.${pkgver}"
-# CUDA
-install -D -m755 libcuda.so.${pkgver} 
"${pkgdir}/usr/lib32/libcuda.so.${pkgver}"
-install -D -m755 libnvcuvid.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvcuvid.so.${pkgver}"
+install -D -m755 "libvdpau_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/vdpau/libvdpau_nvidia.so.${pkgver}"
+
 # nvidia-tls library
-install -D -m755 tls/libnvidia-tls.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-tls.so.${pkgver}"
+install -D -m755 "tls/libnvidia-tls.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-tls.so.${pkgver}"
+install -D -m755 "libnvidia-cfg.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-cfg.so.${pkgver}"
+install -D -m755 "libnvidia-ml.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-ml.so.${pkgver}"
 
-install -D -m755 libnvidia-cfg.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-cfg.so.${pkgver}"
-install -D -m755 libnvidia-ml.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-ml.so.${pkgver}"
+# CUDA
+install -D -m755 "libcuda.so.${pkgver}" 
"${pkgdir}/usr/lib32/libcuda.so.${pkgver}"
+install -D -m755 "libnvcuvid.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvcuvid.so.${pkgver}"
 
 # create soname links
 for _lib in $(find "${pkgdir}" -name '*.so*'); do



[arch-commits] Commit in lib32-nvidia-304xx-utils/repos (2 files)

2014-03-08 Thread Felix Yan
Date: Sunday, March 9, 2014 @ 03:11:17
  Author: fyan
Revision: 106836

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-nvidia-304xx-utils/repos/multilib-testing-x86_64/
  lib32-nvidia-304xx-utils/repos/multilib-testing-x86_64/PKGBUILD
(from rev 106835, lib32-nvidia-304xx-utils/trunk/PKGBUILD)

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

Copied: lib32-nvidia-304xx-utils/repos/multilib-testing-x86_64/PKGBUILD (from 
rev 106835, lib32-nvidia-304xx-utils/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2014-03-09 02:11:17 UTC (rev 106836)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jason Graham 
+# Contributor: Thomas Baechler 
+# Contributor: James Rayner 
+
+_pkgbasename=nvidia-304xx-utils
+pkgbase=lib32-$_pkgbasename
+pkgname=('lib32-nvidia-304xx-utils' 'lib32-nvidia-304xx-libgl' 
'lib32-opencl-nvidia-304xx')
+pkgver=304.119
+pkgrel=2
+pkgdesc="NVIDIA drivers utilities and libraries. (32-bit)"
+arch=('x86_64')
+url="http://www.nvidia.com/";
+license=('custom')
+makedepends=('lib32-gcc-libs' 'lib32-libcl' 'lib32-libxvmc' 'lib32-zlib' 
+ 'lib32-libxext' 'nvidia-304xx-utils' 'opencl-nvidia-304xx')
+options=('!strip')
+
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('a2acb8066ac296005dbf560ee83ae6d9')
+
+build() {
+cd "${srcdir}"
+sh ${_pkg}.run --extract-only
+}
+
+package_lib32-opencl-nvidia-304xx() {
+pkgdesc="OpenCL implemention for NVIDIA (32-bit)"
+depends=('lib32-libcl' 'lib32-zlib' 'lib32-gcc-libs' 'opencl-nvidia-304xx')
+optdepends=('opencl-headers: headers necessary for OpenCL development')
+conflicts=('lib32-opencl-nvidia')
+
+cd "${srcdir}/${_pkg}"
+
+# OpenCL
+install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-compiler.so.${pkgver}"
+ln -s "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-compiler.so.1"
+ln -s "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-compiler.so"
+
+install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-opencl.so.${pkgver}" 
+ln -s "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-opencl.so.1"
+ln -s "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-opencl.so"
+}
+
+package_lib32-nvidia-304xx-libgl() {
+pkgdesc="NVIDIA drivers libraries symlinks (32-bit)"
+depends=('lib32-nvidia-304xx-utils')
+conflicts=('lib32-libgl')
+provides=('lib32-libgl')
+cd "${srcdir}/${_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"
+
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s $_pkgbasename "${pkgdir}/usr/share/licenses/lib32-nvidia-libgl"
+}
+
+package_lib32-nvidia-304xx-utils() {
+pkgdesc="NVIDIA drivers utilities (32-bit)"
+depends=('lib32-libxvmc' 'lib32-zlib' 'lib32-gcc-libs' 'lib32-libxext')
+optdepends=('lib32-opencl-nvidia-304xx')
+cd "${srcdir}/${_pkg}"
+
+# OpenGL library
+install -D -m755 libGL.so.${pkgver} 
"${pkgdir}/usr/lib32/nvidia/libGL.so.${pkgver}"
+# OpenGL core library
+install -D -m755 libnvidia-glcore.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-glcore.so.${pkgver}"
+# XvMC
+#install -D -m644 libXvMCNVIDIA.a "${pkgdir}/usr/lib32/libXvMCNVIDIA.a"
+install -D -m755 libXvMCNVIDIA.so.${pkgver} 
"${pkgdir}/usr/lib32/libXvMCNVIDIA.so.${pkgver}"
+# VDPAU
+install -D -m755 libvdpau_nvidia.so.${pkgver} 
"${pkgdir}/usr/lib32/vdpau/libvdpau_nvidia.so.${pkgver}"
+# CUDA
+install -D -m755 libcuda.so.${pkgver} 
"${pkgdir}/usr/lib32/libcuda.so.${pkgver}"
+install -D -m755 libnvcuvid.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvcuvid.so.${pkgver}"
+# nvidia-tls library
+install -D -m755 tls/libnvidia-tls.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-tls.so.${pkgver}"
+
+install -D -m755 libnvidia-cfg.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-cfg.so.${pkgver}"
+install -D -m755 libnvidia-ml.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-ml.so.${pkgver}"
+
+# create soname links
+for _lib in $(find "${pkgdir}" -name '*.so*'); do
+_soname="$(dirname ${_lib})/$(LC_ALL=C readelf -d "$_lib" | sed -nr 
's/.*Library soname: \[(.*)\].*/\1/p')"
+if [ ! -e "${_soname}" ]; then
+ln -s "$(basename ${_lib})" "${_soname}"
+ln -s "$(basename ${_soname})" "${_soname/.[0-9]*/}"
+fi
+done
+
+rm -rf "${pkgdir}"/usr/{include,share,bin}
+mkdir -p "${pkgdir}/usr/share/lic

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

2014-03-08 Thread Felix Yan
Date: Sunday, March 9, 2014 @ 03:10:34
  Author: fyan
Revision: 106835

upgpkg: lib32-nvidia-304xx-utils 304.119-2

- split lib32-nvidia-304xx-libgl

Modified:
  lib32-nvidia-304xx-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-09 00:18:48 UTC (rev 106834)
+++ PKGBUILD2014-03-09 02:10:34 UTC (rev 106835)
@@ -1,5 +1,5 @@
 # $Id$
-# Maintainer: noone currently
+# Maintainer: Felix Yan 
 # Contributor: Jason Graham 
 # Contributor: Thomas Baechler 
 # Contributor: James Rayner 
@@ -6,9 +6,9 @@
 
 _pkgbasename=nvidia-304xx-utils
 pkgbase=lib32-$_pkgbasename
-pkgname=('lib32-nvidia-304xx-utils' 'lib32-opencl-nvidia-304xx')
+pkgname=('lib32-nvidia-304xx-utils' 'lib32-nvidia-304xx-libgl' 
'lib32-opencl-nvidia-304xx')
 pkgver=304.119
-pkgrel=1
+pkgrel=2
 pkgdesc="NVIDIA drivers utilities and libraries. (32-bit)"
 arch=('x86_64')
 url="http://www.nvidia.com/";
@@ -45,21 +45,34 @@
 ln -s "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-opencl.so"
 }
 
+package_lib32-nvidia-304xx-libgl() {
+pkgdesc="NVIDIA drivers libraries symlinks (32-bit)"
+depends=('lib32-nvidia-304xx-utils')
+conflicts=('lib32-libgl')
+provides=('lib32-libgl')
+cd "${srcdir}/${_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"
+
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s $_pkgbasename "${pkgdir}/usr/share/licenses/lib32-nvidia-libgl"
+}
+
 package_lib32-nvidia-304xx-utils() {
 pkgdesc="NVIDIA drivers utilities (32-bit)"
-depends=('lib32-libxvmc' 'lib32-zlib' 'lib32-gcc-libs' 'lib32-libxext' 
'nvidia-304xx-utils')
+depends=('lib32-libxvmc' 'lib32-zlib' 'lib32-gcc-libs' 'lib32-libxext')
 optdepends=('lib32-opencl-nvidia-304xx')
-provides=('lib32-libgl')
-conflicts=('lib32-mesa-libgl' 'lib32-catalyst-utils' 'lib32-nvidia-utils' 
'lib32-nvidia-libgl')
-
 cd "${srcdir}/${_pkg}"
 
 # OpenGL library
-install -D -m755 libGL.so.${pkgver} 
"${pkgdir}/usr/lib32/libGL.so.${pkgver}"
+install -D -m755 libGL.so.${pkgver} 
"${pkgdir}/usr/lib32/nvidia/libGL.so.${pkgver}"
 # OpenGL core library
 install -D -m755 libnvidia-glcore.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-glcore.so.${pkgver}"
 # XvMC
-install -D -m644 libXvMCNVIDIA.a "${pkgdir}/usr/lib32/libXvMCNVIDIA.a"
+#install -D -m644 libXvMCNVIDIA.a "${pkgdir}/usr/lib32/libXvMCNVIDIA.a"
 install -D -m755 libXvMCNVIDIA.so.${pkgver} 
"${pkgdir}/usr/lib32/libXvMCNVIDIA.so.${pkgver}"
 # VDPAU
 install -D -m755 libvdpau_nvidia.so.${pkgver} 
"${pkgdir}/usr/lib32/vdpau/libvdpau_nvidia.so.${pkgver}"



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

2014-03-08 Thread Anatol Pomozov
Date: Sunday, March 9, 2014 @ 03:06:35
  Author: anatolik
Revision: 207431

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

Added:
  dhcpcd/repos/testing-i686/
  dhcpcd/repos/testing-i686/PKGBUILD
(from rev 207429, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-i686/dhcpcd.service
(from rev 207429, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-i686/dhcpcd_.service
(from rev 207430, dhcpcd/trunk/dhcpcd_.service)
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 207430, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
(from rev 207430, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
(from rev 207430, dhcpcd/trunk/dhcpcd_.service)

+
 testing-i686/PKGBUILD  |   54 +++
 testing-i686/dhcpcd.service|   13 +
 testing-i686/dhcpcd_.service   |   15 ++
 testing-x86_64/PKGBUILD|   54 +++
 testing-x86_64/dhcpcd.service  |   13 +
 testing-x86_64/dhcpcd_.service |   15 ++
 6 files changed, 164 insertions(+)

Copied: dhcpcd/repos/testing-i686/PKGBUILD (from rev 207429, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-03-09 02:06:35 UTC (rev 207431)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=6.3.1
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="http://roy.marples.name/projects/dhcpcd/";
+arch=('i686' 'x86_64')
+license=('BSD')
+groups=('base')
+depends=('glibc' 'sh')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2";
+'dhcpcd_.service'
+'dhcpcd.service')
+sha1sums=('4db014c7eeca57fea7f954640e68feaa1d249c79'
+  '6f1633edde14d29b5cdc09c4f029a450ef2ebc96'
+  '52c1bad9ab43e9a253c1eb175e7eefb13497b8f9')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # configure variables
+  ./configure \
+  --sbindir=/usr/bin \
+  --libexecdir=/usr/lib/dhcpcd \
+  --dbdir=/var/lib/dhcpcd \
+  --rundir=/run
+
+  # Build
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  sed 26q "$srcdir/$pkgname-$pkgver/control.h" \
+  >>"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> "${pkgdir}/etc/dhcpcd.conf" # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 "${srcdir}/dhcpcd_.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd@.service"
+  install -Dm644 "${srcdir}/dhcpcd.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd.service" # FS#31543
+}

Copied: dhcpcd/repos/testing-i686/dhcpcd.service (from rev 207429, 
dhcpcd/trunk/dhcpcd.service)
===
--- testing-i686/dhcpcd.service (rev 0)
+++ testing-i686/dhcpcd.service 2014-03-09 02:06:35 UTC (rev 207431)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd.pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-i686/dhcpcd_.service (from rev 207430, 
dhcpcd/trunk/dhcpcd_.service)
===
--- testing-i686/dhcpcd_.service(rev 0)
+++ testing-i686/dhcpcd_.service2014-03-09 02:06:35 UTC (rev 207431)
@@ -0,0 +1,15 @@
+[Unit]
+Description=dhcpcd on %I
+Wants=network.target
+Before=network.target
+BindsTo=sys-subsystem-net-devices-%i.device
+After=sys-subsystem-net-devices-%i.device
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd-%I.pid
+ExecStart=/usr/bin/dhcpcd -q -w %I
+ExecStop=/usr/bin/dhcpcd -x %I
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 207430, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-03-09 02:06:35 UTC (rev 207431)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=6.3.1
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="http://roy.marples.name/projects/dhcpcd/";
+arch=('i686' 'x86_64')
+license=('BSD')
+groups=('base')
+depends=('glibc' 'sh')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+options=('empty

[arch-commits] Commit in nvidia-304xx-utils/repos (4 files)

2014-03-08 Thread Felix Yan
Date: Sunday, March 9, 2014 @ 03:06:08
  Author: fyan
Revision: 207430

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

Added:
  nvidia-304xx-utils/repos/testing-i686/
  nvidia-304xx-utils/repos/testing-i686/PKGBUILD
(from rev 207428, nvidia-304xx-utils/trunk/PKGBUILD)
  nvidia-304xx-utils/repos/testing-x86_64/PKGBUILD
(from rev 207429, nvidia-304xx-utils/trunk/PKGBUILD)
Deleted:
  nvidia-304xx-utils/repos/testing-x86_64/PKGBUILD

-+
 /PKGBUILD   |  158 ++
 testing-i686/PKGBUILD   |  158 ++
 testing-x86_64/PKGBUILD |  158 --
 3 files changed, 316 insertions(+), 158 deletions(-)

Copied: nvidia-304xx-utils/repos/testing-i686/PKGBUILD (from rev 207428, 
nvidia-304xx-utils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-03-09 02:06:08 UTC (rev 207430)
@@ -0,0 +1,158 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andreas Radke 
+
+pkgbase=nvidia-304xx-utils
+pkgname=('nvidia-304xx-utils' 'nvidia-304xx-libgl' 'opencl-nvidia-304xx')
+pkgver=304.119
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+license=('custom')
+makedepends=('libcl' 'libxvmc' 'xorg-server' 'zlib' 'mesa')
+options=('!strip')
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('a2acb8066ac296005dbf560ee83ae6d9')
+elif [ "$CARCH" = "x86_64" ]; then
+_arch='x86_64'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('fb93002115c99f15b6ca393a90a9c9ec')
+fi
+
+create_links() {
+# create soname links
+while read -d '' _lib; do
+_soname="$(dirname "${_lib}")/$(LC_ALL=C readelf -d "${_lib}" | sed 
-nr 's/.*Library soname: \[(.*)\].*/\1/p')"
+[[ -e "${_soname}" ]] || ln -s "$(basename "${_lib}")" "${_soname}"
+[[ -e "${_soname/.[0-9]*/}" ]] || ln -s "$(basename "${_soname}")" 
"${_soname/.[0-9]*/}"
+done < <(find "${pkgdir}" -type f -name '*.so*' -print0)
+}
+
+build() {
+cd "${srcdir}"
+sh "${_pkg}.run" --extract-only
+}
+
+package_opencl-nvidia-304xx() {
+pkgdesc="OpenCL implemention for NVIDIA, 304xx legacy branch"
+depends=('libcl' 'zlib')
+optdepends=('opencl-headers: headers necessary for OpenCL development')
+provides=('opencl-nvidia')
+conflicts=('opencl-nvidia')
+ 
+cd "${srcdir}/${_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
+
+install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/opencl-nvidia-304xx/LICENSE"
+}
+
+package_nvidia-304xx-libgl() {
+pkgdesc="NVIDIA drivers libraries symlinks, 304xx legacy branch"
+depends=('nvidia-304xx-utils' 'mesa')
+conflicts=('libgl' 'nvidia-libgl')
+provides=('libgl' 'nvidia-libgl')
+cd "${srcdir}/${_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"
+
+# We have to provide symlinks to mesa, as nvidia 304xx doesn't ship them
+ln -s mesa-libEGL.so.1.0.0"${pkgdir}/usr/lib/libEGL.so"
+ln -s mesa-libEGL.so.1.0.0"${pkgdir}/usr/lib/libEGL.so.1"
+ln -s mesa-libEGL.so.1.0.0"${pkgdir}/usr/lib/libEGL.so.1.0.0"
+ln -s mesa-libGLESv1_CM.so.1.1.0  "${pkgdir}/usr/lib/libGLESv1_CM.so"
+ln -s mesa-libGLESv1_CM.so.1.1.0  "${pkgdir}/usr/lib/libGLESv1_CM.so.1"
+ln -s mesa-libGLESv1_CM.so.1.1.0  "${pkgdir}/usr/lib/libGLESv1_CM.so.1.1.0"
+ln -s mesa-libGLESv2.so.2.0.0 "${pkgdir}/usr/lib/libGLESv2.so"
+ln -s mesa-libGLESv2.so.2.0.0 "${pkgdir}/usr/lib/libGLESv2.so.2"
+ln -s mesa-libGLESv2.so.2.0.0 "${pkgdir}/usr/lib/libGLESv2.so.2.0.0"
+
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s nvidia-304xx "${pkgdir}/usr/share/licenses/nvidia-304xx-libgl"
+}
+
+package_nvidia-304xx-utils() {
+pkgdesc="NVIDIA drivers utilities and libraries, 304

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

2014-03-08 Thread Anatol Pomozov
Date: Sunday, March 9, 2014 @ 03:05:50
  Author: anatolik
Revision: 207429

upgpkg: dhcpcd 6.3.1-1

Modified:
  dhcpcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-09 01:59:37 UTC (rev 207428)
+++ PKGBUILD2014-03-09 02:05:50 UTC (rev 207429)
@@ -4,7 +4,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=dhcpcd
-pkgver=6.2.1
+pkgver=6.3.1
 pkgrel=1
 pkgdesc="RFC2131 compliant DHCP client daemon"
 url="http://roy.marples.name/projects/dhcpcd/";
@@ -18,7 +18,7 @@
 source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2";
 'dhcpcd_.service'
 'dhcpcd.service')
-sha1sums=('02319be210f10e73a3add726ae3fd96f69743cff'
+sha1sums=('4db014c7eeca57fea7f954640e68feaa1d249c79'
   '6f1633edde14d29b5cdc09c4f029a450ef2ebc96'
   '52c1bad9ab43e9a253c1eb175e7eefb13497b8f9')
 



[arch-commits] Commit in nvidia-304xx-utils/repos (2 files)

2014-03-08 Thread Felix Yan
Date: Sunday, March 9, 2014 @ 02:59:37
  Author: fyan
Revision: 207428

archrelease: copy trunk to testing-x86_64

Added:
  nvidia-304xx-utils/repos/testing-x86_64/
  nvidia-304xx-utils/repos/testing-x86_64/PKGBUILD
(from rev 207427, nvidia-304xx-utils/trunk/PKGBUILD)

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

Copied: nvidia-304xx-utils/repos/testing-x86_64/PKGBUILD (from rev 207427, 
nvidia-304xx-utils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-03-09 01:59:37 UTC (rev 207428)
@@ -0,0 +1,158 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andreas Radke 
+
+pkgbase=nvidia-304xx-utils
+pkgname=('nvidia-304xx-utils' 'nvidia-304xx-libgl' 'opencl-nvidia-304xx')
+pkgver=304.119
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+license=('custom')
+makedepends=('libcl' 'libxvmc' 'xorg-server' 'zlib' 'mesa')
+options=('!strip')
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('a2acb8066ac296005dbf560ee83ae6d9')
+elif [ "$CARCH" = "x86_64" ]; then
+_arch='x86_64'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('fb93002115c99f15b6ca393a90a9c9ec')
+fi
+
+create_links() {
+# create soname links
+while read -d '' _lib; do
+_soname="$(dirname "${_lib}")/$(LC_ALL=C readelf -d "${_lib}" | sed 
-nr 's/.*Library soname: \[(.*)\].*/\1/p')"
+[[ -e "${_soname}" ]] || ln -s "$(basename "${_lib}")" "${_soname}"
+[[ -e "${_soname/.[0-9]*/}" ]] || ln -s "$(basename "${_soname}")" 
"${_soname/.[0-9]*/}"
+done < <(find "${pkgdir}" -type f -name '*.so*' -print0)
+}
+
+build() {
+cd "${srcdir}"
+sh "${_pkg}.run" --extract-only
+}
+
+package_opencl-nvidia-304xx() {
+pkgdesc="OpenCL implemention for NVIDIA, 304xx legacy branch"
+depends=('libcl' 'zlib')
+optdepends=('opencl-headers: headers necessary for OpenCL development')
+provides=('opencl-nvidia')
+conflicts=('opencl-nvidia')
+ 
+cd "${srcdir}/${_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
+
+install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/opencl-nvidia-304xx/LICENSE"
+}
+
+package_nvidia-304xx-libgl() {
+pkgdesc="NVIDIA drivers libraries symlinks, 304xx legacy branch"
+depends=('nvidia-304xx-utils' 'mesa')
+conflicts=('libgl' 'nvidia-libgl')
+provides=('libgl' 'nvidia-libgl')
+cd "${srcdir}/${_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"
+
+# We have to provide symlinks to mesa, as nvidia 304xx doesn't ship them
+ln -s mesa-libEGL.so.1.0.0"${pkgdir}/usr/lib/libEGL.so"
+ln -s mesa-libEGL.so.1.0.0"${pkgdir}/usr/lib/libEGL.so.1"
+ln -s mesa-libEGL.so.1.0.0"${pkgdir}/usr/lib/libEGL.so.1.0.0"
+ln -s mesa-libGLESv1_CM.so.1.1.0  "${pkgdir}/usr/lib/libGLESv1_CM.so"
+ln -s mesa-libGLESv1_CM.so.1.1.0  "${pkgdir}/usr/lib/libGLESv1_CM.so.1"
+ln -s mesa-libGLESv1_CM.so.1.1.0  "${pkgdir}/usr/lib/libGLESv1_CM.so.1.1.0"
+ln -s mesa-libGLESv2.so.2.0.0 "${pkgdir}/usr/lib/libGLESv2.so"
+ln -s mesa-libGLESv2.so.2.0.0 "${pkgdir}/usr/lib/libGLESv2.so.2"
+ln -s mesa-libGLESv2.so.2.0.0 "${pkgdir}/usr/lib/libGLESv2.so.2.0.0"
+
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s nvidia-304xx "${pkgdir}/usr/share/licenses/nvidia-304xx-libgl"
+}
+
+package_nvidia-304xx-utils() {
+pkgdesc="NVIDIA drivers utilities and libraries, 304xx legacy branch"
+depends=('xorg-server' 'libxvmc' 'nvidia-304xx-libgl')
+optdepends=('gtk2: nvidia-settings'
+'pkg-config: nvidia-xconfig'
+'opencl-nvidia-304xx: OpenCL support')
+conflicts=('nvidia-utils')
+provides=('nvidia-utils')
+cd "${srcdir}/${_pkg}"
+
+# X driver
+install -D -m755 nvidia_drv.so 
"

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

2014-03-08 Thread Felix Yan
Date: Sunday, March 9, 2014 @ 02:58:56
  Author: fyan
Revision: 207427

upgpkg: nvidia-304xx-utils 304.119-2

- split nvidia-304xx-libgl to make the -utils package work with bumblebee 
(dependency on nvidia-304xx-utils will be removed in next release, I keep this 
dependency to give current user a clean upgrade)
- add symlinks to mesa libEGL & libGLES libraries, since nvidia 304xx doesn't 
ship them

Modified:
  nvidia-304xx-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-09 00:19:31 UTC (rev 207426)
+++ PKGBUILD2014-03-09 01:58:56 UTC (rev 207427)
@@ -1,14 +1,15 @@
 # $Id$
-# Maintainer: Andreas Radke 
+# Maintainer: Felix Yan 
+# Contributor: Andreas Radke 
 
 pkgbase=nvidia-304xx-utils
-pkgname=('nvidia-304xx-utils' 'opencl-nvidia-304xx')
+pkgname=('nvidia-304xx-utils' 'nvidia-304xx-libgl' 'opencl-nvidia-304xx')
 pkgver=304.119
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
 license=('custom')
-makedepends=('libcl' 'libxvmc' 'xorg-server' 'zlib')
+makedepends=('libcl' 'libxvmc' 'xorg-server' 'zlib' 'mesa')
 options=('!strip')
 
 if [ "$CARCH" = "i686" ]; then
@@ -56,42 +57,82 @@
 install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/opencl-nvidia-304xx/LICENSE"
 }
 
+package_nvidia-304xx-libgl() {
+pkgdesc="NVIDIA drivers libraries symlinks, 304xx legacy branch"
+depends=('nvidia-304xx-utils' 'mesa')
+conflicts=('libgl' 'nvidia-libgl')
+provides=('libgl' 'nvidia-libgl')
+cd "${srcdir}/${_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"
+
+# We have to provide symlinks to mesa, as nvidia 304xx doesn't ship them
+ln -s mesa-libEGL.so.1.0.0"${pkgdir}/usr/lib/libEGL.so"
+ln -s mesa-libEGL.so.1.0.0"${pkgdir}/usr/lib/libEGL.so.1"
+ln -s mesa-libEGL.so.1.0.0"${pkgdir}/usr/lib/libEGL.so.1.0.0"
+ln -s mesa-libGLESv1_CM.so.1.1.0  "${pkgdir}/usr/lib/libGLESv1_CM.so"
+ln -s mesa-libGLESv1_CM.so.1.1.0  "${pkgdir}/usr/lib/libGLESv1_CM.so.1"
+ln -s mesa-libGLESv1_CM.so.1.1.0  "${pkgdir}/usr/lib/libGLESv1_CM.so.1.1.0"
+ln -s mesa-libGLESv2.so.2.0.0 "${pkgdir}/usr/lib/libGLESv2.so"
+ln -s mesa-libGLESv2.so.2.0.0 "${pkgdir}/usr/lib/libGLESv2.so.2"
+ln -s mesa-libGLESv2.so.2.0.0 "${pkgdir}/usr/lib/libGLESv2.so.2.0.0"
+
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s nvidia-304xx "${pkgdir}/usr/share/licenses/nvidia-304xx-libgl"
+}
+
 package_nvidia-304xx-utils() {
 pkgdesc="NVIDIA drivers utilities and libraries, 304xx legacy branch"
-depends=('xorg-server' 'libxvmc')
+depends=('xorg-server' 'libxvmc' 'nvidia-304xx-libgl')
 optdepends=('gtk2: nvidia-settings'
 'pkg-config: nvidia-xconfig'
 'opencl-nvidia-304xx: OpenCL support')
-conflicts=('libgl' 'nvidia-utils')
-provides=('libgl' 'nvidia-utils')
+conflicts=('nvidia-utils')
+provides=('nvidia-utils')
 cd "${srcdir}/${_pkg}"
 
 # X driver
 install -D -m755 nvidia_drv.so 
"${pkgdir}/usr/lib/xorg/modules/drivers/nvidia_drv.so"
+
 # GLX extension module for X
-install -D -m755 "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"  # X doesn't find glx 
otherwise
-# OpenGL library
-install -D -m755 "libGL.so.${pkgver}" 
"${pkgdir}/usr/lib/libGL.so.${pkgver}"
+install -D -m755 "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/xorg/modules/extensions/libglx.so.${pkgver}"
+ln -s "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/xorg/modules/extensions/libglx.so"# X doesn't 
find glx otherwise
+
+# OpenGL libraries
+install -D -m755 "libGL.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/libGL.so.${pkgver}"
+
 # OpenGL core library
 install -D -m755 "libnvidia-glcore.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-glcore.so.${pkgver}"
+
 # XvMC
-#install -D -m644 libXvMCNVIDIA.a "${pkgdir}/usr/lib/libXvMCNVIDIA.a"
 install -D -m755 "libXvMCNVIDIA.so.${pkgver}" 
"${pkgdir}/usr/lib/libXvMCNVIDIA.so.${pkgver}"
+
 # VDPAU
 install -D -m755 "libvdpau_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/vdpau/libvdpau_nvidia.so.${pkgver}"
+
 # 

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

2014-03-08 Thread Anatol Pomozov
Date: Sunday, March 9, 2014 @ 01:19:31
  Author: anatolik
Revision: 207426

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

Added:
  apache/repos/testing-i686/
  apache/repos/testing-i686/PKGBUILD
(from rev 207425, apache/trunk/PKGBUILD)
  apache/repos/testing-i686/apache.install
(from rev 207425, apache/trunk/apache.install)
  apache/repos/testing-i686/apache.tmpfiles.conf
(from rev 207425, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-i686/arch.layout
(from rev 207425, apache/trunk/arch.layout)
  apache/repos/testing-i686/httpd.logrotate
(from rev 207425, apache/trunk/httpd.logrotate)
  apache/repos/testing-i686/httpd.service
(from rev 207425, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 207425, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache.install
(from rev 207425, apache/trunk/apache.install)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 207425, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 207425, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 207425, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 207425, apache/trunk/httpd.service)

-+
 testing-i686/PKGBUILD   |  117 ++
 testing-i686/apache.install |   12 +++
 testing-i686/apache.tmpfiles.conf   |1 
 testing-i686/arch.layout|   22 ++
 testing-i686/httpd.logrotate|6 +
 testing-i686/httpd.service  |   15 
 testing-x86_64/PKGBUILD |  117 ++
 testing-x86_64/apache.install   |   12 +++
 testing-x86_64/apache.tmpfiles.conf |1 
 testing-x86_64/arch.layout  |   22 ++
 testing-x86_64/httpd.logrotate  |6 +
 testing-x86_64/httpd.service|   15 
 12 files changed, 346 insertions(+)

Copied: apache/repos/testing-i686/PKGBUILD (from rev 207425, 
apache/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-03-09 00:19:31 UTC (rev 207426)
@@ -0,0 +1,117 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.7
+pkgrel=2
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('i686' 'x86_64')
+url='http://www.apache.org/dist/httpd'
+license=('APACHE')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+depends=('zlib' 'apr-util' 'pcre')
+makedepends=('libxml2' 'lua' 'openssl')
+optdepends=(
+'lua: for mod_lua support'
+'openssl: for mod_ssl support'
+'libxml2: for mod_xml2enc support' 
+'lynx: apachectl status'
+)
+install=apache.install
+source=(
+http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
+sha256sums=('64368d8301836815ae237f2b62d909711c896c1bd34573771e0ee5ad808ce71b'
+'SKIP'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'875903831634edf35d8d57e9a51bacb818255ecb3bfff29627f03e43d1ab65c3'
+'14d0a775eea7f8c66ba55399a9ad1e4fd29e0302f479a15b28bbfc754c5aa347'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
+
+build() {
+  cd httpd-${pkgver}
+
+  # set default user
+  sed -e 's#User daemon#User http#' \
+  -e 's#Group daemon#Group http#' \
+  -i docs/conf/httpd.conf.in
+
+  cat "${srcdir}/arch.layout" >> config.layout
+   
+  ./configure --sbindir=/usr/bin \
+  --enable-layout=Arch \
+  --enable-mpms-shared=all \
+  --enable-modules=all \
+  --enable-mods-shared=all \
+  --enable-so \
+  --enable-suexec \
+  --with-suexec-caller=http \
+  --with-suexec-docroot=/srv/http \
+  --with-suexec-logfile=/var/log/httpd/suexec.log \
+  --with-suexec-bin=/usr/bin/suexec \
+  --with-suexec-uidmin=99 --with-suexec-gidmin=99 \
+  --enable-ldap --enable-authnz-ldap \
+  --enable-cache --enable-disk-cache --enable-mem-cache 
--enable-file-cache \
+  --enable-ssl --with-ssl \
+  --enable-deflate --enable-cgi --enable-cgid \
+  --enable-proxy --enable-proxy-connect \
+  --enable-proxy-http --enable-proxy-ftp \
+  --enable-dbd --enable-imagemap --enable-ident --enable-cern-meta \
+  --enable-lua --enable-xml2enc \
+  --with-apr=/usr/bin/apr-1-config \
+  --with-apr-util=/usr/bin

[arch-commits] Commit in cuda/repos (5 files)

2014-03-08 Thread Sven-Hendrik Haase
Date: Sunday, March 9, 2014 @ 01:18:48
  Author: svenstaro
Revision: 106834

archrelease: copy trunk to community-testing-x86_64

Added:
  cuda/repos/community-testing-x86_64/
  cuda/repos/community-testing-x86_64/PKGBUILD
(from rev 106833, cuda/trunk/PKGBUILD)
  cuda/repos/community-testing-x86_64/cuda.conf
(from rev 106833, cuda/trunk/cuda.conf)
  cuda/repos/community-testing-x86_64/cuda.install
(from rev 106833, cuda/trunk/cuda.install)
  cuda/repos/community-testing-x86_64/cuda.sh
(from rev 106833, cuda/trunk/cuda.sh)

--+
 PKGBUILD |   53 +
 cuda.conf|2 ++
 cuda.install |   11 +++
 cuda.sh  |1 +
 4 files changed, 67 insertions(+)

Copied: cuda/repos/community-testing-x86_64/PKGBUILD (from rev 106833, 
cuda/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-03-09 00:18:48 UTC (rev 106834)
@@ -0,0 +1,53 @@
+# $Id: PKGBUILD 69719 2012-04-23 02:56:20Z svenstaro $
+# Maintainer: Sven-Hendrik Haase 
+pkgname=cuda
+pkgver=6.0.26_rc
+pkgrel=1
+pkgdesc="NVIDIA's GPU programming toolkit"
+arch=('x86_64')
+url="http://www.nvidia.com/object/cuda_home.html";
+license=('custom')
+depends=('gcc-libs' 'opencl-nvidia')
+replaces=('cuda-toolkit' 'cuda-sdk')
+provides=('cuda-toolkit' 'cuda-sdk')
+optdepends=('gdb: for cuda-gdb')
+options=(!strip staticlibs)
+md5sums=('ea1e1235ebc17dc8e2ca2bec3febde52'
+ '7e5990e03eea90075f5a500e91a0c3d3'
+ 'ffe1e6fb7f97b23da28fd94a5fd7356d')
+install=cuda.install
+source=(http://developer.download.nvidia.com/compute/cuda/6_0/rc/installers/cuda_${pkgver}_linux64.run
+cuda.sh
+cuda.conf)
+
+package() {
+  sh cuda_${pkgver}_linux64.run -extract=$srcdir
+  ./cuda-linux64-rel-6.0.26*.run -prefix=$pkgdir/opt/cuda -noprompt
+  ./cuda-samples-linux-6.0.26*.run -cudaprefix=$pkgdir/opt/cuda 
-prefix=$pkgdir/opt/cuda/samples -noprompt
+
+  # Now, let the hacks begin!
+
+  # allow newer gcc to work
+  # NOTE: We don't need these currently, but we might again! :D
+  #sed -i "/unsupported GNU/d" $pkgdir/opt/cuda/include/host_config.h
+  #sed -i "1 i #define __STRICT_ANSI__" $pkgdir/opt/cuda/include/cuda_runtime.h
+  #echo "#undef _GLIBCXX_ATOMIC_BUILTINS" >> 
$pkgdir/opt/cuda/include/cuda_runtime.h
+  #echo "#define _GLIBCXX_GTHREAD_USE_WEAK 0" >> 
$pkgdir/opt/cuda/include/cuda_runtime.h
+
+  # fix nvidia path fuckup
+  #sed -i "s|/build/pkg/cuda||g" $pkgdir/opt/cuda/bin/nvvp 
$pkgdir/opt/cuda/bin/nsight
+
+  install -Dm755 $srcdir/cuda.sh $pkgdir/etc/profile.d/cuda.sh
+  install -Dm644 $srcdir/cuda.conf $pkgdir/etc/ld.so.conf.d/cuda.conf
+
+  # correct cuda path in samples
+  cd $pkgdir/opt/cuda/samples
+  find . -name Makefile | xargs sed -i "s|$pkgdir/opt/cuda|/opt/cuda|g"
+
+  # make cuda-gdk work
+  mkdir -p $pkgdir/usr/lib
+  cd $pkgdir/usr/lib
+  ln -s /usr/lib/libncurses.so.5 libtinfo.so.5
+
+  install -Dm644 $pkgdir/opt/cuda/doc/pdf/EULA.pdf 
$pkgdir/usr/share/licenses/$pkgname/EULA.pdf
+}

Copied: cuda/repos/community-testing-x86_64/cuda.conf (from rev 106833, 
cuda/trunk/cuda.conf)
===
--- community-testing-x86_64/cuda.conf  (rev 0)
+++ community-testing-x86_64/cuda.conf  2014-03-09 00:18:48 UTC (rev 106834)
@@ -0,0 +1,2 @@
+/opt/cuda/lib64
+/opt/cuda/lib

Copied: cuda/repos/community-testing-x86_64/cuda.install (from rev 106833, 
cuda/trunk/cuda.install)
===
--- community-testing-x86_64/cuda.install   (rev 0)
+++ community-testing-x86_64/cuda.install   2014-03-09 00:18:48 UTC (rev 
106834)
@@ -0,0 +1,11 @@
+post_install() {
+echo "The cuda binaries are in /opt/cuda/bin"
+echo "The cuda samples are in /opt/cuda/samples"
+echo "The cuda docs are in /opt/cuda/doc"
+echo "You need to relogin in order for the cuda binaries to appear in your 
PATH"
+post_upgrade
+}
+
+post_upgrade() {
+ldconfig -r .
+}

Copied: cuda/repos/community-testing-x86_64/cuda.sh (from rev 106833, 
cuda/trunk/cuda.sh)
===
--- community-testing-x86_64/cuda.sh(rev 0)
+++ community-testing-x86_64/cuda.sh2014-03-09 00:18:48 UTC (rev 106834)
@@ -0,0 +1 @@
+export PATH=$PATH:/opt/cuda/bin



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

2014-03-08 Thread Sven-Hendrik Haase
Date: Sunday, March 9, 2014 @ 01:18:17
  Author: svenstaro
Revision: 106833

upgpkg: cuda 6.0.26_rc-1

upstream release 6.0.26rc

Modified:
  cuda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 20:39:18 UTC (rev 106832)
+++ PKGBUILD2014-03-09 00:18:17 UTC (rev 106833)
@@ -1,7 +1,7 @@
 # $Id: PKGBUILD 69719 2012-04-23 02:56:20Z svenstaro $
 # Maintainer: Sven-Hendrik Haase 
 pkgname=cuda
-pkgver=5.5.22
+pkgver=6.0.26_rc
 pkgrel=1
 pkgdesc="NVIDIA's GPU programming toolkit"
 arch=('x86_64')
@@ -12,18 +12,18 @@
 provides=('cuda-toolkit' 'cuda-sdk')
 optdepends=('gdb: for cuda-gdb')
 options=(!strip staticlibs)
-md5sums=('7bb06908bdf33eac0f8426821640c2fb'
+md5sums=('ea1e1235ebc17dc8e2ca2bec3febde52'
  '7e5990e03eea90075f5a500e91a0c3d3'
  'ffe1e6fb7f97b23da28fd94a5fd7356d')
 install=cuda.install
-source=(http://developer.download.nvidia.com/compute/cuda/5_5/rel/installers/cuda_${pkgver}_linux_64.run
+source=(http://developer.download.nvidia.com/compute/cuda/6_0/rc/installers/cuda_${pkgver}_linux64.run
 cuda.sh
 cuda.conf)
 
 package() {
-  sh cuda_${pkgver}_linux_64.run -extract=$srcdir
-  ./cuda-linux64-rel-${pkgver}*.run -prefix=$pkgdir/opt/cuda -noprompt
-  ./cuda-samples-linux-${pkgver}*.run -cudaprefix=$pkgdir/opt/cuda 
-prefix=$pkgdir/opt/cuda/samples -noprompt
+  sh cuda_${pkgver}_linux64.run -extract=$srcdir
+  ./cuda-linux64-rel-6.0.26*.run -prefix=$pkgdir/opt/cuda -noprompt
+  ./cuda-samples-linux-6.0.26*.run -cudaprefix=$pkgdir/opt/cuda 
-prefix=$pkgdir/opt/cuda/samples -noprompt
 
   # Now, let the hacks begin!
 



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

2014-03-08 Thread Anatol Pomozov
Date: Sunday, March 9, 2014 @ 01:16:15
  Author: anatolik
Revision: 207425

Enable missing Apache modules:

mod_cern_meta
mod_cgi
mod_ident
mod_imagemap
mod_lua
mod_proxy_html
mod_xml2enc

Fixes FS#39222 FS#39206

Modified:
  apache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 20:13:20 UTC (rev 207424)
+++ PKGBUILD2014-03-09 00:16:15 UTC (rev 207425)
@@ -5,7 +5,7 @@
 
 pkgname=apache
 pkgver=2.4.7
-pkgrel=1
+pkgrel=2
 pkgdesc='A high performance Unix-based HTTP server'
 arch=('i686' 'x86_64')
 url='http://www.apache.org/dist/httpd'



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

2014-03-08 Thread Sébastien Luttringer
Date: Saturday, March 8, 2014 @ 21:39:18
  Author: seblu
Revision: 106832

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  158 ++---
 1 file changed, 79 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-08 20:39:02 UTC (rev 106831)
+++ PKGBUILD2014-03-08 20:39:18 UTC (rev 106832)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Angel Velasquez 
-# Contributor: Fabio Volpe 
-
-pkgbase=python-sphinx
-pkgname=('python-sphinx' 'python2-sphinx')
-pkgver=1.2.1
-pkgrel=1
-arch=('any')
-url='http://sphinx.pocoo.org/'
-license=('GPL')
-makedepends=(
-  'python-distribute'
-  'python-docutils'
-  'python-jinja'
-  'python-pygments'
-  'python2-distribute'
-  'python2-docutils'
-  'python2-jinja'
-  'python2-pygments'
-)
-checkdepends=(
-  'python-nose'
-  'python2-nose'
-  'texlive-latexextra'
-)
-source=("http://pypi.python.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz";)
-md5sums=('104494f036889122c9f403ae065ae7a9')
-
-prepare() {
-  # souce duplication is required because makefile modify source code
-  # setyp.py --build tricks don't works well
-  cp -a Sphinx-$pkgver Sphinx-${pkgver}2
-  # change python2 interpreter
-  find Sphinx-${pkgver}2 -type f -exec \
-sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
-  # change sphinx-binaries name in source code
-  find Sphinx-${pkgver}2 -type f -name '*.py' -exec \
-sed -ri 's,(sphinx-(:?build|apidoc|autogen|quickstart)),\12,' {} \;
-}
-
-build() {
-  msg2 'Python 3 version'
-  cd "$srcdir"/Sphinx-$pkgver
-  make PYTHON=python3 build
-  msg2 'Python 2 version'
-  cd "$srcdir"/Sphinx-${pkgver}2
-  make PYTHON=python2 build
-}
-
-check() {
-  msg2 'Python 3 version'
-  cd "$srcdir"/Sphinx-$pkgver
-  make PYTHON=python3 test
-  msg2 'Python 2 version'
-  cd "$srcdir"/Sphinx-${pkgver}2
-  make PYTHON=python2 test
-}
-
-package_python-sphinx() {
-  pkgdesc='Python3 documentation generator'
-  depends=('python-jinja' 'python-pygments' 'python-docutils')
-  optdepends=('texlive-latexextra: for generation of PDF documentation')
-
-  cd Sphinx-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-sphinx() {
-  pkgdesc='Python2 documentation generator'
-  depends=('python2-jinja' 'python2-pygments' 'python2-docutils')
-  optdepends=('texlive-latexextra: for generation of PDF documentation')
-
-  cd Sphinx-${pkgver}2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-sphinx/repos/community-any/PKGBUILD (from rev 106831, 
python-sphinx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-08 20:39:18 UTC (rev 106832)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Angel Velasquez 
+# Contributor: Fabio Volpe 
+
+pkgbase=python-sphinx
+pkgname=('python-sphinx' 'python2-sphinx')
+pkgver=1.2.2
+pkgrel=1
+arch=('any')
+url='http://sphinx.pocoo.org/'
+license=('GPL')
+makedepends=(
+  'python-distribute'
+  'python-docutils'
+  'python-jinja'
+  'python-pygments'
+  'python2-distribute'
+  'python2-docutils'
+  'python2-jinja'
+  'python2-pygments'
+)
+checkdepends=(
+  'python-nose'
+  'python2-nose'
+  'texlive-latexextra'
+)
+source=("http://pypi.python.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz";)
+md5sums=('3dc73ccaa8d0bfb2d62fb671b1f7e8a4')
+
+prepare() {
+  # souce duplication is required because makefile modify source code
+  # setyp.py --build tricks don't works well
+  cp -a Sphinx-$pkgver Sphinx-${pkgver}2
+  # change python2 interpreter
+  find Sphinx-${pkgver}2 -type f -exec \
+sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
+  # change sphinx-binaries name in source code
+  find Sphinx-${pkgver}2 -type f -name '*.py' -exec \
+sed -ri 's,(sphinx-(:?build|apidoc|autogen|quickstart)),\12,' {} \;
+}
+
+build() {
+  msg2 'Python 3 version'
+  cd "$srcdir"/Sphinx-$pkgver
+  make PYTHON=python3 build
+  msg2 'Python 2 version'
+  cd "$srcdir"/Sphinx-${pkgver}2
+  make PYTHON=python2 build
+}
+
+check() {
+  msg2 'Python 3 version'
+  cd "$srcdir"/Sphinx-$pkgver
+  make PYTHON=python3 test
+  msg2 'Python 2 version'
+  cd "$srcdir"/Sphinx-${pkgver}2
+  make PYTHON=python2 test
+}
+
+package_python-sphinx() {
+  pkgdesc='Python3 documentation generator'
+  depends=('python-jinja' 'python-pygments' 'python-docutils')
+  optdepends=('texlive-latexextra: for generation of PDF documentation')
+
+  cd Sphinx-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-sphinx() {
+  pkgdesc='Python2 documentation generato

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

2014-03-08 Thread Sébastien Luttringer
Date: Saturday, March 8, 2014 @ 21:39:02
  Author: seblu
Revision: 106831

upgpkg: python-sphinx 1.2.2-1

Modified:
  python-sphinx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 20:35:54 UTC (rev 106830)
+++ PKGBUILD2014-03-08 20:39:02 UTC (rev 106831)
@@ -5,7 +5,7 @@
 
 pkgbase=python-sphinx
 pkgname=('python-sphinx' 'python2-sphinx')
-pkgver=1.2.1
+pkgver=1.2.2
 pkgrel=1
 arch=('any')
 url='http://sphinx.pocoo.org/'
@@ -26,7 +26,7 @@
   'texlive-latexextra'
 )
 
source=("http://pypi.python.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz";)
-md5sums=('104494f036889122c9f403ae065ae7a9')
+md5sums=('3dc73ccaa8d0bfb2d62fb671b1f7e8a4')
 
 prepare() {
   # souce duplication is required because makefile modify source code



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

2014-03-08 Thread Jelle van der Waa
Date: Saturday, March 8, 2014 @ 21:35:54
  Author: jelle
Revision: 106830

archrelease: copy trunk to community-any

Added:
  python-cherrypy/repos/community-any/PKGBUILD
(from rev 106829, python-cherrypy/trunk/PKGBUILD)
  python-cherrypy/repos/community-any/cherrypy-python33.patch
(from rev 106829, python-cherrypy/trunk/cherrypy-python33.patch)
Deleted:
  python-cherrypy/repos/community-any/PKGBUILD
  python-cherrypy/repos/community-any/cherrypy-python33.patch

-+
 PKGBUILD|  125 +++---
 cherrypy-python33.patch |  100 ++--
 2 files changed, 114 insertions(+), 111 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-08 20:35:47 UTC (rev 106829)
+++ PKGBUILD2014-03-08 20:35:54 UTC (rev 106830)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=3.2.4
-pkgrel=1
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org";
-license=('BSD')
-makedepends=('python' 'python2')
-source=("https://pypi.python.org/packages/source/C/CherryPy/CherryPy-${pkgver}.tar.gz";)
-md5sums=('e2c8455e15c39c9d60e0393c264a4d16')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy2-${pkgver}
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy2-${pkgver}"
-  sed \
--e 's_#! /usr/bin/env python_&2_' \
--i cherrypy/cherryd
-  sed \
--e 's_#!/usr/bin/python_&2_' \
--i cherrypy/test/sessiondemo.py
-  python2 ./setup.py build
-
-}
-
-package_python-cherrypy() {
-  depends=('python')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy2-${pkgver}
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
-}
-
-check() {
-  cd CherryPy2-${pkgver}
-  python2 ./setup.py check
-}

Copied: python-cherrypy/repos/community-any/PKGBUILD (from rev 106829, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-08 20:35:54 UTC (rev 106830)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=3.2.5
+pkgrel=1
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org";
+license=('BSD')
+makedepends=('python' 'python2')
+source=("https://pypi.python.org/packages/source/C/CherryPy/CherryPy-${pkgver}.tar.gz";)
+md5sums=('bb130fbd5b6fa38d4e9f5c5597ea9800')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy2-${pkgver}
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy2-${pkgver}"
+  sed \
+-e 's_#! /usr/bin/env python_&2_' \
+-i cherrypy/cherryd
+  sed \
+-e 's_#!/usr/bin/python_&2_' \
+-i cherrypy/test/sessiondemo.py
+  python2 ./setup.py build
+
+}
+
+package_python-cherrypy() {
+  depends=('python')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy2-${pkgver}
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 cherrypy/LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
+}
+
+check() {
+  cd CherryPy2-${pkgver}
+  python2 ./setup.py check
+
+  cd ../CherryPy-${pkgver}
+  python3 ./setup.py check
+}

Deleted: cherrypy-python33.patch
===
--- cherrypy-python33.patch 2014-03-08 20:35:47 UTC (rev 106829)
+++ cherrypy-python33.patch 2014-03-08 20:35:54 UTC (rev 106830)
@@ -1,50 +0,0 @@
-# HG changeset patch
-# User Jason R. Coombs 
-# Date 1349660887 14400
-# Branch cherrypy-3.2.x
-# Node ID 01b6adcb3849b2ff4fa31e3298b494f6b136369e
-# Parent  9820107d4ffb8058fd507888f90e28c695f6b4c0
-Timer class was renamed from _Timer to Timer in Python 3.3. This change adds a 
compatibility shim to detect this change and reference the base class 
accordingly. Fixes #1163.
-
-diff -r 9

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

2014-03-08 Thread Jelle van der Waa
Date: Saturday, March 8, 2014 @ 21:35:47
  Author: jelle
Revision: 106829

upgpkg: python-cherrypy 3.2.5-1

Modified:
  python-cherrypy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 19:50:18 UTC (rev 106828)
+++ PKGBUILD2014-03-08 20:35:47 UTC (rev 106829)
@@ -5,7 +5,7 @@
 # Contributor: Armando M. Baratti 
 # Contributor: Florian Richter 
 pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=3.2.4
+pkgver=3.2.5
 pkgrel=1
 pkgdesc="A pythonic, object-oriented web development framework"
 arch=('any')
@@ -13,7 +13,7 @@
 license=('BSD')
 makedepends=('python' 'python2')
 
source=("https://pypi.python.org/packages/source/C/CherryPy/CherryPy-${pkgver}.tar.gz";)
-md5sums=('e2c8455e15c39c9d60e0393c264a4d16')
+md5sums=('bb130fbd5b6fa38d4e9f5c5597ea9800')
 
 build() {
   cp -r CherryPy-${pkgver} CherryPy2-${pkgver}
@@ -58,4 +58,7 @@
 check() {
   cd CherryPy2-${pkgver}
   python2 ./setup.py check
+
+  cd ../CherryPy-${pkgver}
+  python3 ./setup.py check
 }



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

2014-03-08 Thread Ray Rashif
Date: Saturday, March 8, 2014 @ 21:13:20
  Author: schiv
Revision: 207424

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

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

-+
 /PKGBUILD   |  100 ++
 /rosegarden.install |   30 +++
 extra-i686/PKGBUILD |   50 ---
 extra-i686/rosegarden.install   |   15 -
 extra-x86_64/PKGBUILD   |   50 ---
 extra-x86_64/rosegarden.install |   15 -
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-03-08 20:13:01 UTC (rev 207423)
+++ extra-i686/PKGBUILD 2014-03-08 20:13:20 UTC (rev 207424)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif 
-# Contributor: Giovanni Scafora 
-# Contributor: damir 
-# Contributor: Robert Emil Berge 
-
-pkgname=rosegarden
-pkgver=13.10
-pkgrel=2
-pkgdesc="MIDI/audio sequencer and notation editor"
-arch=('i686' 'x86_64')
-url="http://www.rosegardenmusic.com/";
-license=('GPL')
-depends=('liblrdf' 'dssi' 'fftw' 'lirc-utils'
- 'perl' 'qt4' 'shared-mime-info' 'liblo>=0.28')
-makedepends=('imake')
-optdepends=('lilypond: notation display'
-'cups: printing support'
-'kdegraphics-okular: print preview, or any other PDF viewer'
-'timidity++: MIDI playback, or any other softsynth'
-'flac'
-'wavpack')
-[ "$CARCH" = "i686" ] && optdepends+=('dssi-vst: win32 VST support')
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2";)
-md5sums=('730a830da4d3b60fa8b15716d8dcd8a4')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # lrdf + raptor2 compatibility
-  lrdf_CFLAGS="$(pkg-config --cflags raptor2)"
-
-  # qt4 compatibility (qt->qt5)
-  LRELEASE=/usr/lib/qt4/bin/lrelease
-  LUPDATE=/usr/lib/qt4/bin/lupdate
-
-  export lrdf_CFLAGS LRELEASE LUPDATE
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rosegarden/repos/extra-i686/PKGBUILD (from rev 207423, 
rosegarden/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-03-08 20:13:20 UTC (rev 207424)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Giovanni Scafora 
+# Contributor: damir 
+# Contributor: Robert Emil Berge 
+
+pkgname=rosegarden
+pkgver=14.02
+pkgrel=1
+pkgdesc="MIDI/audio sequencer and notation editor"
+arch=('i686' 'x86_64')
+url="http://www.rosegardenmusic.com/";
+license=('GPL')
+depends=('liblrdf' 'dssi' 'fftw' 'lirc-utils'
+ 'perl' 'qt4' 'shared-mime-info' 'liblo>=0.28')
+makedepends=('imake')
+optdepends=('lilypond: notation display'
+'cups: printing support'
+'kdegraphics-okular: print preview, or any other PDF viewer'
+'timidity++: MIDI playback, or any other softsynth'
+'flac'
+'wavpack')
+[ "$CARCH" = "i686" ] && optdepends+=('dssi-vst: win32 VST support')
+install=$pkgname.install
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2";)
+md5sums=('f649556e5149650211d88684b1168ab4')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # lrdf + raptor2 compatibility
+  lrdf_CFLAGS="$(pkg-config --cflags raptor2)"
+
+  # qt4 compatibility (qt->qt5)
+  LRELEASE=/usr/lib/qt4/bin/lrelease
+  LUPDATE=/usr/lib/qt4/bin/lupdate
+
+  export lrdf_CFLAGS LRELEASE LUPDATE
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/rosegarden.install
===
--- extra-i686/rosegarden.install   2014-03-08 20:13:01 UTC (rev 207423)
+++ extra-i686/rosegarden.install   2014-03-08 20:13:20 UTC (rev 207424)
@@ -1,15 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-  update-mime-database usr/share/mime &> /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rosegarden/repos/extra-i686/rosegarden.install

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

2014-03-08 Thread Ray Rashif
Date: Saturday, March 8, 2014 @ 21:13:01
  Author: schiv
Revision: 207423

upgpkg: rosegarden 14.02-1

upstream release

Modified:
  rosegarden/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 19:28:16 UTC (rev 207422)
+++ PKGBUILD2014-03-08 20:13:01 UTC (rev 207423)
@@ -5,8 +5,8 @@
 # Contributor: Robert Emil Berge 
 
 pkgname=rosegarden
-pkgver=13.10
-pkgrel=2
+pkgver=14.02
+pkgrel=1
 pkgdesc="MIDI/audio sequencer and notation editor"
 arch=('i686' 'x86_64')
 url="http://www.rosegardenmusic.com/";
@@ -23,7 +23,7 @@
 [ "$CARCH" = "i686" ] && optdepends+=('dssi-vst: win32 VST support')
 install=$pkgname.install
 source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2";)
-md5sums=('730a830da4d3b60fa8b15716d8dcd8a4')
+md5sums=('f649556e5149650211d88684b1168ab4')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"



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

2014-03-08 Thread Sébastien Luttringer
Date: Saturday, March 8, 2014 @ 20:50:18
  Author: seblu
Revision: 106828

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

Added:
  ipset/repos/community-i686/PKGBUILD
(from rev 106827, ipset/trunk/PKGBUILD)
  ipset/repos/community-i686/ipset.service
(from rev 106827, ipset/trunk/ipset.service)
  ipset/repos/community-x86_64/PKGBUILD
(from rev 106827, ipset/trunk/PKGBUILD)
  ipset/repos/community-x86_64/ipset.service
(from rev 106827, ipset/trunk/ipset.service)
Deleted:
  ipset/repos/community-i686/PKGBUILD
  ipset/repos/community-i686/ipset.service
  ipset/repos/community-x86_64/PKGBUILD
  ipset/repos/community-x86_64/ipset.service

+
 /PKGBUILD  |   80 +++
 /ipset.service |   26 
 community-i686/PKGBUILD|   40 ---
 community-i686/ipset.service   |   13 --
 community-x86_64/PKGBUILD  |   40 ---
 community-x86_64/ipset.service |   13 --
 6 files changed, 106 insertions(+), 106 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-08 19:49:54 UTC (rev 106827)
+++ community-i686/PKGBUILD 2014-03-08 19:50:18 UTC (rev 106828)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgname=ipset
-pkgver=6.20.1
-pkgrel=2
-pkgdesc='Administration tool for IP sets'
-arch=('i686' 'x86_64')
-url='http://ipset.netfilter.org'
-license=('GPL2')
-depends=('libmnl')
-backup=("etc/$pkgname.conf")
-source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2";
-"$pkgname.service")
-md5sums=('8af741492752fbf24d3a28a9d1473d40'
- '4b195827996c6012a801e21f869c385d')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no
-  make
-}
-
-package() {
-  pushd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  # install doc
-  install -dm755 "$pkgdir/usr/share/doc/$pkgname"
-  install -m644 README UPGRADE ChangeLog "$pkgdir/usr/share/doc/$pkgname"
-  # install pkgconfig file
-  install -Dm644 lib/libipset.pc "$pkgdir/usr/lib/pkgconfig/libipset.pc"
-  popd
-  # systemd
-  install -Dm 644 $pkgname.service \
-"$pkgdir/usr/lib/systemd/system/$pkgname.service"
-  # default config file
-  install -Dm 644 /dev/null "$pkgdir/etc/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ipset/repos/community-i686/PKGBUILD (from rev 106827, 
ipset/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-08 19:50:18 UTC (rev 106828)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=ipset
+pkgver=6.21.1
+pkgrel=1
+pkgdesc='Administration tool for IP sets'
+arch=('i686' 'x86_64')
+url='http://ipset.netfilter.org'
+license=('GPL2')
+depends=('libmnl')
+backup=("etc/$pkgname.conf")
+source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2";
+"$pkgname.service")
+md5sums=('9c136fd51694eb0ef259cda085145da0'
+ '4b195827996c6012a801e21f869c385d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no
+  make
+}
+
+package() {
+  pushd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # install doc
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname"
+  install -m644 README UPGRADE ChangeLog "$pkgdir/usr/share/doc/$pkgname"
+  # install pkgconfig file
+  install -Dm644 lib/libipset.pc "$pkgdir/usr/lib/pkgconfig/libipset.pc"
+  popd
+  # systemd
+  install -Dm 644 $pkgname.service \
+"$pkgdir/usr/lib/systemd/system/$pkgname.service"
+  # default config file
+  install -Dm 644 /dev/null "$pkgdir/etc/$pkgname.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/ipset.service
===
--- community-i686/ipset.service2014-03-08 19:49:54 UTC (rev 106827)
+++ community-i686/ipset.service2014-03-08 19:50:18 UTC (rev 106828)
@@ -1,13 +0,0 @@
-[Unit]
-Description=Loading IP Sets
-Before=iptables.service
-
-[Service]
-Type=oneshot
-RemainAfterExit=yes
-ExecStart=/usr/bin/ipset -f /etc/ipset.conf restore
-ExecReload=/usr/bin/ipset -f /etc/ipset.conf restore
-ExecStop=/usr/bin/ipset destroy
-
-[Install]
-WantedBy=multi-user.target

Copied: ipset/repos/community-i686/ipset.service (from rev 106827, 
ipset/trunk/ipset.service)
===
--- community-i686/ipset.service(rev 0)
+++ community-i686/ipset.service2014-03-08 19:50:18 UTC (rev 106828)
@@ -0,0 +1,13 @@
+[Unit]
+Description=Loading IP Sets
+Before=iptables.service
+
+[Service]
+Type=oneshot
+RemainAfterExit=yes
+ExecStart=/usr/bin/ipset -f /etc/ipset.conf restore
+ExecReload=/usr/bin/ipset -f /etc/ipset.conf restore
+ExecStop=/usr/bin/ipset des

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

2014-03-08 Thread Sébastien Luttringer
Date: Saturday, March 8, 2014 @ 20:49:54
  Author: seblu
Revision: 106827

upgpkg: ipset 6.21.1-1

Modified:
  ipset/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 18:24:15 UTC (rev 106826)
+++ PKGBUILD2014-03-08 19:49:54 UTC (rev 106827)
@@ -2,8 +2,8 @@
 # Maintainer: Sébastien Luttringer
 
 pkgname=ipset
-pkgver=6.20.1
-pkgrel=2
+pkgver=6.21.1
+pkgrel=1
 pkgdesc='Administration tool for IP sets'
 arch=('i686' 'x86_64')
 url='http://ipset.netfilter.org'
@@ -12,7 +12,7 @@
 backup=("etc/$pkgname.conf")
 source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2";
 "$pkgname.service")
-md5sums=('8af741492752fbf24d3a28a9d1473d40'
+md5sums=('9c136fd51694eb0ef259cda085145da0'
  '4b195827996c6012a801e21f869c385d')
 
 build() {



[arch-commits] Commit in kdebase-workspace/repos (24 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 20:28:16
  Author: andrea
Revision: 207422

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdebase-workspace/repos/kde-unstable-i686/
  kdebase-workspace/repos/kde-unstable-i686/PKGBUILD
(from rev 207421, kdebase-workspace/kde-unstable/PKGBUILD)
  kdebase-workspace/repos/kde-unstable-i686/etc-scripts.patch
(from rev 207421, kdebase-workspace/kde-unstable/etc-scripts.patch)
  kdebase-workspace/repos/kde-unstable-i686/kde-np.pam
(from rev 207421, kdebase-workspace/kde-unstable/kde-np.pam)
  kdebase-workspace/repos/kde-unstable-i686/kde.pam
(from rev 207421, kdebase-workspace/kde-unstable/kde.pam)
  kdebase-workspace/repos/kde-unstable-i686/kdebase-workspace.install
(from rev 207421, kdebase-workspace/kde-unstable/kdebase-workspace.install)
  kdebase-workspace/repos/kde-unstable-i686/kdm-xinitrd.patch
(from rev 207421, kdebase-workspace/kde-unstable/kdm-xinitrd.patch)
  kdebase-workspace/repos/kde-unstable-i686/kdm.logrotate
(from rev 207421, kdebase-workspace/kde-unstable/kdm.logrotate)
  kdebase-workspace/repos/kde-unstable-i686/kdm.service
(from rev 207421, kdebase-workspace/kde-unstable/kdm.service)
  kdebase-workspace/repos/kde-unstable-i686/khotkeys-qt4.patch
(from rev 207421, kdebase-workspace/kde-unstable/khotkeys-qt4.patch)
  kdebase-workspace/repos/kde-unstable-i686/kscreensaver.pam
(from rev 207421, kdebase-workspace/kde-unstable/kscreensaver.pam)
  kdebase-workspace/repos/kde-unstable-i686/terminate-server.patch
(from rev 207421, kdebase-workspace/kde-unstable/terminate-server.patch)
  kdebase-workspace/repos/kde-unstable-x86_64/
  kdebase-workspace/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207421, kdebase-workspace/kde-unstable/PKGBUILD)
  kdebase-workspace/repos/kde-unstable-x86_64/etc-scripts.patch
(from rev 207421, kdebase-workspace/kde-unstable/etc-scripts.patch)
  kdebase-workspace/repos/kde-unstable-x86_64/kde-np.pam
(from rev 207421, kdebase-workspace/kde-unstable/kde-np.pam)
  kdebase-workspace/repos/kde-unstable-x86_64/kde.pam
(from rev 207421, kdebase-workspace/kde-unstable/kde.pam)
  kdebase-workspace/repos/kde-unstable-x86_64/kdebase-workspace.install
(from rev 207421, kdebase-workspace/kde-unstable/kdebase-workspace.install)
  kdebase-workspace/repos/kde-unstable-x86_64/kdm-xinitrd.patch
(from rev 207421, kdebase-workspace/kde-unstable/kdm-xinitrd.patch)
  kdebase-workspace/repos/kde-unstable-x86_64/kdm.logrotate
(from rev 207421, kdebase-workspace/kde-unstable/kdm.logrotate)
  kdebase-workspace/repos/kde-unstable-x86_64/kdm.service
(from rev 207421, kdebase-workspace/kde-unstable/kdm.service)
  kdebase-workspace/repos/kde-unstable-x86_64/khotkeys-qt4.patch
(from rev 207421, kdebase-workspace/kde-unstable/khotkeys-qt4.patch)
  kdebase-workspace/repos/kde-unstable-x86_64/kscreensaver.pam
(from rev 207421, kdebase-workspace/kde-unstable/kscreensaver.pam)
  kdebase-workspace/repos/kde-unstable-x86_64/terminate-server.patch
(from rev 207421, kdebase-workspace/kde-unstable/terminate-server.patch)

---+
 kde-unstable-i686/PKGBUILD|   93 
 kde-unstable-i686/etc-scripts.patch   |   11 ++
 kde-unstable-i686/kde-np.pam  |   12 +++
 kde-unstable-i686/kde.pam |8 ++
 kde-unstable-i686/kdebase-workspace.install   |   31 
 kde-unstable-i686/kdm-xinitrd.patch   |   18 
 kde-unstable-i686/kdm.logrotate   |6 +
 kde-unstable-i686/kdm.service |9 ++
 kde-unstable-i686/khotkeys-qt4.patch  |   22 +
 kde-unstable-i686/kscreensaver.pam|1 
 kde-unstable-i686/terminate-server.patch  |   11 ++
 kde-unstable-x86_64/PKGBUILD  |   93 
 kde-unstable-x86_64/etc-scripts.patch |   11 ++
 kde-unstable-x86_64/kde-np.pam|   12 +++
 kde-unstable-x86_64/kde.pam   |8 ++
 kde-unstable-x86_64/kdebase-workspace.install |   31 
 kde-unstable-x86_64/kdm-xinitrd.patch |   18 
 kde-unstable-x86_64/kdm.logrotate |6 +
 kde-unstable-x86_64/kdm.service   |9 ++
 kde-unstable-x86_64/khotkeys-qt4.patch|   22 +
 kde-unstable-x86_64/kscreensaver.pam  |1 
 kde-unstable-x86_64/terminate-server.patch|   11 ++
 22 files changed, 444 insertions(+)

Copied: kdebase-workspace/repos/kde-unstable-i686/PKGBUILD (from rev 207421, 
kdebase-workspace/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 19:28:16 UTC (rev 207422)
@@ -0,0 +1,93 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-workspace
+_pkgname=kde-workspace
+p

[arch-commits] Commit in kdebase-workspace (4 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 20:27:55
  Author: andrea
Revision: 207421

upgpkg: kdebase-workspace 4.11.7-3

Drop nepomuk runner

Added:
  kdebase-workspace/kde-unstable/
  kdebase-workspace/kde-unstable/PKGBUILD
(from rev 206908, kdebase-workspace/trunk/PKGBUILD)
  kdebase-workspace/kde-unstable/khotkeys-qt4.patch
(from rev 206908, kdebase-workspace/trunk/khotkeys-qt4.patch)
Deleted:
  kdebase-workspace/kde-unstable/PKGBUILD

-+
 PKGBUILD|   87 ---
 kde-unstable/PKGBUILD   |   93 ++
 kde-unstable/khotkeys-qt4.patch |   22 
 3 files changed, 115 insertions(+), 87 deletions(-)

Deleted: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2014-03-05 07:38:14 UTC (rev 206697)
+++ kde-unstable/PKGBUILD   2014-03-08 19:27:55 UTC (rev 207421)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-workspace
-_pkgname=kde-workspace
-pkgver=4.11.7
-_pkgver=4.12.3
-pkgrel=1
-pkgdesc="Provides the interface and basic tools for the KDE workspace"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-workspace'
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde')
-# note on libxdamage:
-#  not detected by namcap because libgl depends on it
-#  but nvidia providing libgl does not depend on libxdamage
-depends=("kdelibs>=${pkgver}" 'kdepim-runtime' 'lm_sensors' 'libraw1394'
- 'qimageblitz' 'polkit-kde' 'xorg-xprop' 'libxdamage' 'libqalculate'
- 'libxklavier' 'xorg-xsetroot' 'libxcomposite' 'libxinerama'
- 'xorg-xrdb' 'libxres' 'xorg-xrandr' 'xorg-xmessage' 'libusb-compat'
- 'kde-base-artwork' 'xcb-util-renderutil' 'xcb-util-image' 'ttf-font'
- 'xcb-util-keysyms' 'xcb-util-wm' 'pciutils' 'glu')
-makedepends=('cmake' 'automoc4' 'boost' 'kdebindings-python2' 'networkmanager')
-optdepends=('kde-wallpapers: wallpapers for KDE Plasma Workspaces'
-'appmenu-qt: menu applications over dbus')
-install="${pkgname}.install"
-backup=('usr/share/config/kdm/kdmrc')
-source=("http://download.kde.org/stable/${_pkgver}/src/${_pkgname}-${pkgver}.tar.xz";
-'kde.pam' 'kde-np.pam' 'kscreensaver.pam' 'kdm.service' 'kdm.logrotate'
-'etc-scripts.patch' 'terminate-server.patch' 'kdm-xinitrd.patch')
-sha1sums=('515c687a5a967e14e0470012e99ca2ae4cd86700'
-  '660eae40a707d2711d8d7f32a93214865506b795'
-  '6aeecc9e0e221f0515c6bf544f9a3c11cb6961fe'
-  '106635aa1aae51d6f0668b1853f6c49a4fe9d3d8'
-  'b6f8e8692737b11eec1f8022ce74b5b23e247b1b'
-  'bbe55f2000217474ce7246f12ee437ceaaf7e9ae'
-  'c079ebd157c836ba996190f0d2bcea1a7828d02c'
-  'ac7bc292c865bc1ab8c02e6341aa7aeaf1a3'
-  'd509dac592bd8b310df27991b208c95b6d907514')
-
-prepare() {
-mkdir build
-
-cd ${_pkgname}-${pkgver}
-
-# reads the shell scripts in /etc/kde/
-patch -p0 -i "${srcdir}"/etc-scripts.patch
-# FS#26120
-patch -p1 -i "${srcdir}"/kdm-xinitrd.patch
-
-# KDEBUG#202629
-patch -p0 -i "${srcdir}"/terminate-server.patch
-}
-
-build() {
-cd build
-cmake ../${_pkgname}-${pkgver} \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DKDE4_BUILD_TESTS=OFF \
-  -DCMAKE_SKIP_RPATH=ON \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DWITH_Xmms=OFF \
-  -DWITH_libgps=OFF \
-  -DPYTHON_EXECUTABLE=/usr/bin/python2 \
-  -DWITH_CkConnector=OFF
-make
-}
-
-package() {
-   cd build
-   make DESTDIR="${pkgdir}" install
-
-   install -D -m644 "${srcdir}"/kde.pam "${pkgdir}"/etc/pam.d/kde
-   install -D -m644 "${srcdir}"/kde-np.pam "${pkgdir}"/etc/pam.d/kde-np
-   install -D -m644 "${srcdir}"/kscreensaver.pam 
"${pkgdir}"/etc/pam.d/kscreensaver
-
-   install -d -m755 "${pkgdir}"/usr/share/xsessions/
-   ln -sf /usr/share/apps/kdm/sessions/kde-plasma{,-safe}.desktop \
-  "${pkgdir}"/usr/share/xsessions/
-   install -d -m755 "${pkgdir}"/etc/kde/{env,shutdown}
-
-   install -d -g 135 -o 135 "${pkgdir}"/var/lib/kdm
-install -D -m644 "${srcdir}"/kdm.service \
-  "${pkgdir}"/usr/lib/systemd/system/kdm.service
-install -Dm644 "${srcdir}"/kdm.logrotate "${pkgdir}"/etc/logrotate.d/kdm
-}

Copied: kdebase-workspace/kde-unstable/PKGBUILD (from rev 206908, 
kdebase-workspace/trunk/PKGBUILD)
===
--- kde-unstable/PKGBUILD   (rev 0)
+++ kde-unstable/PKGBUILD   2014-03-08 19:27:55 UTC (rev 207421)
@@ -0,0 +1,93 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-workspace
+_pkgname=kde-workspace
+pkgver=4.11.7
+_pkgver=4.12.3
+pkgrel=3
+pkgdesc="Provides the interface and basic tools for the KDE wo

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

2014-03-08 Thread Dave Reisner
Date: Saturday, March 8, 2014 @ 20:13:18
  Author: dreisner
Revision: 207420

archrelease: copy trunk to testing-any

Added:
  mkinitcpio/repos/testing-any/
  mkinitcpio/repos/testing-any/PKGBUILD
(from rev 207419, mkinitcpio/trunk/PKGBUILD)
  mkinitcpio/repos/testing-any/mkinitcpio.install
(from rev 207419, mkinitcpio/trunk/mkinitcpio.install)

+
 PKGBUILD   |   27 +++
 mkinitcpio.install |   15 +++
 2 files changed, 42 insertions(+)

Copied: mkinitcpio/repos/testing-any/PKGBUILD (from rev 207419, 
mkinitcpio/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2014-03-08 19:13:18 UTC (rev 207420)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Maintainer: Thomas Bächler 
+
+pkgname=mkinitcpio
+pkgver=17
+pkgrel=1
+pkgdesc="Modular initramfs image creation utility"
+arch=('any')
+url="https://projects.archlinux.org/mkinitcpio.git/";
+license=('GPL')
+depends=('awk' 'mkinitcpio-busybox>=1.19.4-2' 'kmod' 'util-linux>=2.23' 
'libarchive'
+ 'coreutils' 'bash' 'findutils' 'grep' 'filesystem>=2011.10-1' 'gzip' 
'systemd')
+optdepends=('xz: Use lzma or xz compression for the initramfs image'
+'bzip2: Use bzip2 compression for the initramfs image'
+'lzop: Use lzo compression for the initramfs image'
+'lz4: Use lz4 compression for the initramfs image'
+'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
+backup=('etc/mkinitcpio.conf')
+source=("ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+install=mkinitcpio.install
+sha256sums=('904821a027fdda26bb7150887680f3b751351ff37dc5e409dcb839e4733906ce'
+'SKIP')
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}

Copied: mkinitcpio/repos/testing-any/mkinitcpio.install (from rev 207419, 
mkinitcpio/trunk/mkinitcpio.install)
===
--- testing-any/mkinitcpio.install  (rev 0)
+++ testing-any/mkinitcpio.install  2014-03-08 19:13:18 UTC (rev 207420)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+post_upgrade() {
+  if [ "$(vercmp 0.9.0 "$2")" -eq 1 ]; then
+printf '==> If your /usr is on a separate partition, you must add the 
"usr" hook\n'
+printf 'to /etc/mkinitcpio.conf and regenerate your images before 
rebooting\n'
+  fi
+
+  if [ "$(vercmp 0.12.0 "$2")" -eq 1 ]; then
+printf '==> The "block" hook has replaced several hooks:\n'
+printf '   fw, sata, pata, scsi, virtio, mmc, usb\n'
+printf 'Replace any and all of these in /etc/mkinitcpio.conf with a 
single\n'
+printf 'instance of the "block" hook\n'
+  fi
+}



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

2014-03-08 Thread Dave Reisner
Date: Saturday, March 8, 2014 @ 20:13:06
  Author: dreisner
Revision: 207419

upgpkg: mkinitcpio 17-1

Modified:
  mkinitcpio/trunk/PKGBUILD
Deleted:
  mkinitcpio/trunk/0001-Add-l-flag-when-using-lz4-compression.patch

--+
 0001-Add-l-flag-when-using-lz4-compression.patch |   61 -
 PKGBUILD |   16 +
 2 files changed, 5 insertions(+), 72 deletions(-)

Deleted: 0001-Add-l-flag-when-using-lz4-compression.patch
===
--- 0001-Add-l-flag-when-using-lz4-compression.patch2014-03-08 18:51:10 UTC 
(rev 207418)
+++ 0001-Add-l-flag-when-using-lz4-compression.patch2014-03-08 19:13:06 UTC 
(rev 207419)
@@ -1,61 +0,0 @@
-From 2ce3a416c8714adedc3117e5247e6da364ddebc9 Mon Sep 17 00:00:00 2001
-From: Dave Reisner 
-Date: Sun, 22 Dec 2013 14:11:37 -0500
-Subject: [mkinitcpio] [PATCH] Add -l flag when using lz4 compression
-
-This isn't documented, but it's needed since the kernel lz4 support is
-based on the original streaming format and not the newer default. Use
--l to force the legacy codec.
-
-Fixup lsinitcpio to support the older format, and, add a warning when
-the newer format is detected. Who knows when this will be "resolved" ...
-
-Upstream discussion: https://code.google.com/p/lz4/issues/detail?id=102

- lsinitcpio | 15 +++
- mkinitcpio |  3 +++
- 2 files changed, 14 insertions(+), 4 deletions(-)
-
-diff --git a/lsinitcpio b/lsinitcpio
-index 10cd663..9d98d57 100755
 a/lsinitcpio
-+++ b/lsinitcpio
-@@ -91,10 +91,17 @@ detect_filetype() {
- return
- fi
- 
--if [[ $(hexdump -n 4 -e '"%x"' "$1") == '184d2204' ]]; then
--echo 'lz4'
--return
--fi
-+case $(hexdump -n 4 -e '"%x"' "$1") in
-+184d2204)
-+error 'Newer lz4 stream format detected! This may not boot!'
-+echo 'lz4'
-+return
-+;;
-+184c2102)
-+echo 'lz4 -l'
-+return
-+;;
-+esac
- 
- if [[ $(hexdump -n 3 -e '"%c"' "$1") == 'BZh' ]]; then
- echo 'bzip2'
-diff --git a/mkinitcpio b/mkinitcpio
-index cb94d62..42abde7 100755
 a/mkinitcpio
-+++ b/mkinitcpio
-@@ -202,6 +202,9 @@ build_image() {
- xz)
- COMPRESSION_OPTIONS+=' --check=crc32'
- ;;
-+lz4)
-+COMPRESSION_OPTIONS+=' -l'
-+;;
- esac
- 
- cpio_opts=('-0' '-o' '-H' 'newc')
--- 
-1.8.5.2
-

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 18:51:10 UTC (rev 207418)
+++ PKGBUILD2014-03-08 19:13:06 UTC (rev 207419)
@@ -3,8 +3,8 @@
 # Maintainer: Thomas Bächler 
 
 pkgname=mkinitcpio
-pkgver=16
-pkgrel=2
+pkgver=17
+pkgrel=1
 pkgdesc="Modular initramfs image creation utility"
 arch=('any')
 url="https://projects.archlinux.org/mkinitcpio.git/";
@@ -17,17 +17,11 @@
 'lz4: Use lz4 compression for the initramfs image'
 'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
 backup=('etc/mkinitcpio.conf')
-source=("ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}
-0001-Add-l-flag-when-using-lz4-compression.patch)
+source=("ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
 install=mkinitcpio.install
-sha256sums=('10821e533eb1ca51a9d3c1d06d8999c08a6151910a9a6029a45ff1638e9228a2'
-'SKIP'
-'e8dd2d3fb29e6c41bed53be2f8659a7e5daeae3c9495d8527b6b938787c54703')
+sha256sums=('904821a027fdda26bb7150887680f3b751351ff37dc5e409dcb839e4733906ce'
+'SKIP')
 
-prepare() {
-  patch -d "$pkgname-$pkgver" -Np1 
<"$srcdir/0001-Add-l-flag-when-using-lz4-compression.patch"
-}
-
 package() {
   make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
 }



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

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 19:24:15
  Author: andrea
Revision: 106826

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

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

-+
 /PKGBUILD   |   70 ++
 /kdeconnect.install |   22 ++
 community-i686/PKGBUILD |   34 
 community-i686/kdeconnect.install   |   11 -
 community-x86_64/PKGBUILD   |   34 
 community-x86_64/kdeconnect.install |   11 -
 6 files changed, 92 insertions(+), 90 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-08 18:23:44 UTC (rev 106825)
+++ community-i686/PKGBUILD 2014-03-08 18:24:15 UTC (rev 106826)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Kuba Serafinowski 
-
-pkgname=kdeconnect
-pkgver=0.5
-pkgrel=1
-pkgdesc='Adds communication between KDE and your smartphone'
-url='https://projects.kde.org/projects/playground/base/kdeconnect-kde'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('kdelibs' 'qjson' 'qca-ossl')
-makedepends=('automoc4' 'cmake')
-install="${pkgname}.install"
-source=("http://download.kde.org/unstable/${pkgname}/${pkgver}/src/${pkgname}-kde-${pkgver}.tar.xz";)
-md5sums=('c87a7032d5b66dc22b22004a8275b493')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-kde-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdeconnect/repos/community-i686/PKGBUILD (from rev 106825, 
kdeconnect/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-08 18:24:15 UTC (rev 106826)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Kuba Serafinowski 
+
+pkgname=kdeconnect
+pkgver=0.5.1
+pkgrel=1
+pkgdesc='Adds communication between KDE and your smartphone'
+url='https://projects.kde.org/projects/playground/base/kdeconnect-kde'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('kdelibs' 'qjson' 'qca-ossl')
+makedepends=('automoc4' 'cmake')
+#optdepends=('sshfs: remote filesystem browser')
+install="${pkgname}.install"
+source=("http://download.kde.org/unstable/${pkgname}/${pkgver}/src/${pkgname}-kde-${pkgver}.tar.xz";)
+md5sums=('0b85af9a0cd7e3feacffa2c0210dc1ec')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-kde-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/kdeconnect.install
===
--- community-i686/kdeconnect.install   2014-03-08 18:23:44 UTC (rev 106825)
+++ community-i686/kdeconnect.install   2014-03-08 18:24:15 UTC (rev 106826)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdeconnect/repos/community-i686/kdeconnect.install (from rev 106825, 
kdeconnect/trunk/kdeconnect.install)
===
--- community-i686/kdeconnect.install   (rev 0)
+++ community-i686/kdeconnect.install   2014-03-08 18:24:15 UTC (rev 106826)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-08 18:23:44 UTC (rev 106825)
+++ community-x86_64/PKGBUILD   2014-03-08 18:24:15 UTC (rev 106826)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Kuba Serafinowski 
-
-pkgname=kdeconnect
-pkgver=0.5
-pkgrel=1
-pkgdesc='Adds communication between KDE and your smartphone'
-url='https://projects.kde.org/projects/playground/base/kdeconnect-kde'
-license=('GPL')
-arch=('i686' '

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

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 19:23:44
  Author: andrea
Revision: 106825

upgpkg: kdeconnect 0.5.1-1

Upstream release

Modified:
  kdeconnect/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 17:42:39 UTC (rev 106824)
+++ PKGBUILD2014-03-08 18:23:44 UTC (rev 106825)
@@ -3,7 +3,7 @@
 # Contributor: Kuba Serafinowski 
 
 pkgname=kdeconnect
-pkgver=0.5
+pkgver=0.5.1
 pkgrel=1
 pkgdesc='Adds communication between KDE and your smartphone'
 url='https://projects.kde.org/projects/playground/base/kdeconnect-kde'
@@ -11,9 +11,10 @@
 arch=('i686' 'x86_64')
 depends=('kdelibs' 'qjson' 'qca-ossl')
 makedepends=('automoc4' 'cmake')
+#optdepends=('sshfs: remote filesystem browser')
 install="${pkgname}.install"
 
source=("http://download.kde.org/unstable/${pkgname}/${pkgver}/src/${pkgname}-kde-${pkgver}.tar.xz";)
-md5sums=('c87a7032d5b66dc22b22004a8275b493')
+md5sums=('0b85af9a0cd7e3feacffa2c0210dc1ec')
 
 prepare() {
   mkdir build



[arch-commits] Commit in kdelibs/kde-unstable (PKGBUILD)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 19:18:54
  Author: andrea
Revision: 207417

shared-desktop-ontologies is not needed neither, while icu is

Modified:
  kdelibs/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 17:43:17 UTC (rev 207416)
+++ PKGBUILD2014-03-08 18:18:54 UTC (rev 207417)
@@ -9,11 +9,10 @@
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kdelibs'
 license=('GPL' 'LGPL' 'FDL')
-depends=('strigi' 'attica' 'libxss' 'krb5' 'grantlee'
-'shared-desktop-ontologies' 'qca' 'libdbusmenu-qt' 'polkit-qt'
-'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr'
+depends=('attica' 'libxss' 'krb5' 'grantlee' 'qca' 'libdbusmenu-qt' 'polkit-qt'
+'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr' 'strigi'
 'docbook-xsl' 'upower' 'udisks2' 'libxcursor' 'phonon-qt4'
-'media-player-info' 'libxtst' 'libutempter' 'qtwebkit')
+'media-player-info' 'libxtst' 'libutempter' 'qtwebkit' 'icu')
 makedepends=('cmake' 'automoc4' 'avahi' 'libgl' 'hspell' 'mesa')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";



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

2014-03-08 Thread Andreas Radke
Date: Saturday, March 8, 2014 @ 18:40:14
  Author: andyrtr
Revision: 106820

upgpkg: cinnamon 2.0.14-3

rebuild for new libevdev

Modified:
  cinnamon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 17:14:28 UTC (rev 106819)
+++ PKGBUILD2014-03-08 17:40:14 UTC (rev 106820)
@@ -6,7 +6,7 @@
 
 pkgname=cinnamon
 pkgver=2.0.14
-pkgrel=2
+pkgrel=3
 pkgdesc="Linux desktop which provides advanced innovative features and a 
traditional user experience"
 arch=('i686' 'x86_64')
 url="http://cinnamon.linuxmint.com/";



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

2014-03-08 Thread Andreas Radke
Date: Saturday, March 8, 2014 @ 18:40:36
  Author: andyrtr
Revision: 106821

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

Added:
  cinnamon/repos/community-staging-i686/
  cinnamon/repos/community-staging-i686/PKGBUILD
(from rev 106820, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-staging-i686/cinnamon-gstreamer1.patch
(from rev 106820, cinnamon/trunk/cinnamon-gstreamer1.patch)
  cinnamon/repos/community-staging-i686/cinnamon.install
(from rev 106820, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-staging-i686/gtk3-lock-dialog.patch
(from rev 106820, cinnamon/trunk/gtk3-lock-dialog.patch)
  cinnamon/repos/community-staging-i686/input_keybindings.patch
(from rev 106820, cinnamon/trunk/input_keybindings.patch)
  cinnamon/repos/community-staging-i686/keyboard_applet.patch
(from rev 106820, cinnamon/trunk/keyboard_applet.patch)
  
cinnamon/repos/community-staging-i686/org.archlinux.pkexec.cinnamon-settings-users.policy
(from rev 106820, 
cinnamon/trunk/org.archlinux.pkexec.cinnamon-settings-users.policy)
  cinnamon/repos/community-staging-x86_64/
  cinnamon/repos/community-staging-x86_64/PKGBUILD
(from rev 106820, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-staging-x86_64/cinnamon-gstreamer1.patch
(from rev 106820, cinnamon/trunk/cinnamon-gstreamer1.patch)
  cinnamon/repos/community-staging-x86_64/cinnamon.install
(from rev 106820, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-staging-x86_64/gtk3-lock-dialog.patch
(from rev 106820, cinnamon/trunk/gtk3-lock-dialog.patch)
  cinnamon/repos/community-staging-x86_64/input_keybindings.patch
(from rev 106820, cinnamon/trunk/input_keybindings.patch)
  cinnamon/repos/community-staging-x86_64/keyboard_applet.patch
(from rev 106820, cinnamon/trunk/keyboard_applet.patch)
  
cinnamon/repos/community-staging-x86_64/org.archlinux.pkexec.cinnamon-settings-users.policy
(from rev 106820, 
cinnamon/trunk/org.archlinux.pkexec.cinnamon-settings-users.policy)

+
 community-staging-i686/PKGBUILD|   97 
 community-staging-i686/cinnamon-gstreamer1.patch   |  282 
 community-staging-i686/cinnamon.install|   11 
 community-staging-i686/gtk3-lock-dialog.patch  |  418 +++
 community-staging-i686/input_keybindings.patch |   11 
 community-staging-i686/keyboard_applet.patch   |  133 ++
 community-staging-x86_64/PKGBUILD  |   97 
 community-staging-x86_64/cinnamon-gstreamer1.patch |  282 
 community-staging-x86_64/cinnamon.install  |   11 
 community-staging-x86_64/gtk3-lock-dialog.patch|  418 +++
 community-staging-x86_64/input_keybindings.patch   |   11 
 community-staging-x86_64/keyboard_applet.patch |  133 ++
 12 files changed, 1904 insertions(+)

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


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

2014-03-08 Thread Giovanni Scafora
Date: Saturday, March 8, 2014 @ 18:14:28
  Author: giovanni
Revision: 106819

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

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

-+
 /PKGBUILD   |   64 ++
 /converseen.install |   22 +++
 community-i686/PKGBUILD |   32 -
 community-i686/converseen.install   |   11 -
 community-x86_64/PKGBUILD   |   32 -
 community-x86_64/converseen.install |   11 -
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-08 17:14:21 UTC (rev 106818)
+++ community-i686/PKGBUILD 2014-03-08 17:14:28 UTC (rev 106819)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: archtux 
-
-pkgname=converseen
-pkgver=0.6.7
-pkgrel=1
-pkgdesc="The batch image converter and resizer"
-arch=('i686' 'x86_64')
-url="http://converseen.sourceforge.net/";
-license=('GPL3')
-depends=('imagemagick' 'qt4' 'libwmf' 'openexr' 'libwebp')
-makedepends=('cmake')
-install=converseen.install
-source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('325fbb2dafeae826efe1c2b8fdca823c')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DCMAKE_INSTALL_PREFIX=/usr 
-  make
-}
-
-package() {
-  cd "${srcdir}/build"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: converseen/repos/community-i686/PKGBUILD (from rev 106818, 
converseen/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-08 17:14:28 UTC (rev 106819)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: archtux 
+
+pkgname=converseen
+pkgver=0.6.8
+pkgrel=1
+pkgdesc="The batch image converter and resizer"
+arch=('i686' 'x86_64')
+url="http://converseen.sourceforge.net/";
+license=('GPL3')
+depends=('imagemagick' 'qt4' 'libwmf' 'openexr' 'libwebp')
+makedepends=('cmake')
+install=converseen.install
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
+md5sums=('35d9c5d2e3a4aacbf12d92fe552c9539')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DCMAKE_INSTALL_PREFIX=/usr 
+  make
+}
+
+package() {
+  cd "${srcdir}/build"
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/converseen.install
===
--- community-i686/converseen.install   2014-03-08 17:14:21 UTC (rev 106818)
+++ community-i686/converseen.install   2014-03-08 17:14:28 UTC (rev 106819)
@@ -1,11 +0,0 @@
-post_install() {
- xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}

Copied: converseen/repos/community-i686/converseen.install (from rev 106818, 
converseen/trunk/converseen.install)
===
--- community-i686/converseen.install   (rev 0)
+++ community-i686/converseen.install   2014-03-08 17:14:28 UTC (rev 106819)
@@ -0,0 +1,11 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-08 17:14:21 UTC (rev 106818)
+++ community-x86_64/PKGBUILD   2014-03-08 17:14:28 UTC (rev 106819)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: archtux 
-
-pkgname=converseen
-pkgver=0.6.7
-pkgrel=1
-pkgdesc="The batch image converter and resizer"
-arch=('i686' 'x86_64')
-url="http://converseen.sourceforge.net/";
-license=('GPL3')
-depends=('imagemagick' 'qt4' 'libwmf' 'openexr' 'libwebp')
-makedepends=('cmake')
-install=converseen.install
-source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('325fbb2d

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

2014-03-08 Thread Giovanni Scafora
Date: Saturday, March 8, 2014 @ 18:14:21
  Author: giovanni
Revision: 106818

upgpkg: converseen 0.6.8-1

upstream release

Modified:
  converseen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 17:14:12 UTC (rev 106817)
+++ PKGBUILD2014-03-08 17:14:21 UTC (rev 106818)
@@ -3,7 +3,7 @@
 # Contributor: archtux 
 
 pkgname=converseen
-pkgver=0.6.7
+pkgver=0.6.8
 pkgrel=1
 pkgdesc="The batch image converter and resizer"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake')
 install=converseen.install
 
source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('325fbb2dafeae826efe1c2b8fdca823c')
+md5sums=('35d9c5d2e3a4aacbf12d92fe552c9539')
 
 build() {
   cd "${srcdir}"



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

2014-03-08 Thread Andreas Radke
Date: Saturday, March 8, 2014 @ 18:14:12
  Author: andyrtr
Revision: 106817

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

Added:
  nemo-extensions/repos/community-staging-i686/
  nemo-extensions/repos/community-staging-i686/PKGBUILD
(from rev 106816, nemo-extensions/trunk/PKGBUILD)
  nemo-extensions/repos/community-staging-i686/nemo-pastebin.install
(from rev 106816, nemo-extensions/trunk/nemo-pastebin.install)
  nemo-extensions/repos/community-staging-x86_64/
  nemo-extensions/repos/community-staging-x86_64/PKGBUILD
(from rev 106816, nemo-extensions/trunk/PKGBUILD)
  nemo-extensions/repos/community-staging-x86_64/nemo-pastebin.install
(from rev 106816, nemo-extensions/trunk/nemo-pastebin.install)

+
 community-staging-i686/PKGBUILD|  175 +++
 community-staging-i686/nemo-pastebin.install   |   11 +
 community-staging-x86_64/PKGBUILD  |  175 +++
 community-staging-x86_64/nemo-pastebin.install |   11 +
 4 files changed, 372 insertions(+)

Copied: nemo-extensions/repos/community-staging-i686/PKGBUILD (from rev 106816, 
nemo-extensions/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-03-08 17:14:12 UTC (rev 106817)
@@ -0,0 +1,175 @@
+# $Id$
+# Maintainer: Alexandre Filgueira 
+
+pkgbase=nemo-extensions
+pkgname=('nemo-fileroller'
+'nemo-preview'
+'nemo-python'
+'nemo-share'
+'nemo-seahorse')
+   #'nemo-media-columns'
+   #'nemo-pastebin'
+   #'nemo-compare'
+   #'nemo-rabbitvcs'
+pkgver=2.0.0
+_gitver=adeeeb12ea
+pkgrel=3
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="https://github.com/linuxmint/nemo-extensions";
+depends=(nemo file-roller cjs clutter-gtk clutter-gst gst-plugins-good 
libmusicbrainz5
+ evince gtksourceview3 webkitgtk python2-gobject seahorse-nautilus 
samba)
+makedepends=(gconf gnome-common gtk-doc intltool) # python2-distutils-extra
+options=('!emptydirs')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/linuxmint/nemo-extensions/archive/${_gitver}.tar.gz";)
+md5sums=('de6a36ee77265f2a1528b29526fd6afb')
+
+prepare() {
+  cd ${pkgbase}-${_gitver}*
+
+  # Python2 fix
+  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
+
+  # Fix nemo-preview build
+  sed -i '/AM_GNU_GETTEXT/d' nemo-preview/configure.ac
+}
+
+build() {
+  cd ${pkgbase}-${_gitver}*
+
+  _configure_pkgs="nemo-fileroller nemo-seahorse nemo-share"
+  for dir in ${_configure_pkgs}
+  do
+pushd ${dir}
+autoreconf -fi
+./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/${dir} \
+--disable-static --disable-schemas-compile
+make
+popd
+  done
+
+  _autogen_pkgs="nemo-preview nemo-python"
+  for dir in ${_autogen_pkgs}
+  do
+pushd ${dir}
+./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/${dir} \
+ --disable-static --disable-schemas-compile
+make
+popd
+  done
+
+# # nemo-pastebin
+# cd nemo-pastebin
+# python2 ./setup.py build --build-base ${srcdir}/build/ || return 1
+# cd ..
+
+   # nemo-media-columns
+   # Nothing to do here
+   # Required python2-pypdf from AUR
+
+   # nemo-compare
+   # cd nemo-compare
+
+# nemo-rabbitvcs
+# Nothing to do here
+
+}
+
+package_nemo-fileroller(){
+  pkgdesc="File archiver extension for Nemo"
+  depends=(nemo file-roller)
+
+  cd ${pkgbase}-${_gitver}*/nemo-fileroller
+  make DESTDIR="${pkgdir}" install
+}
+
+package_nemo-preview(){
+  pkgdesc=("GtkClutter and Javascript-based quick previewer for Nemo")
+  depends=(nemo cjs clutter-gtk clutter-gst gst-plugins-good libmusicbrainz5 
evince gtksourceview3 webkitgtk)
+
+  cd ${pkgbase}-${_gitver}*/nemo-preview
+  make DESTDIR="${pkgdir}" install
+}
+
+package_nemo-python() {
+  pkgdesc="Python2 binding for Nemo components"
+  depends=(nemo python2-gobject)
+
+  cd ${pkgbase}-${_gitver}*/nemo-python
+  make DESTDIR="${pkgdir}" install
+}
+
+package_nemo-seahorse(){
+  pkgdesc="PGP encryption and signing extension for Nemo"
+  depends=(nemo seahorse-nautilus)
+
+  cd ${pkgbase}-${_gitver}*/nemo-seahorse
+  make DESTDIR="${pkgdir}" install
+
+  # seahorse-tool is already in seahorse-nautilus package
+  make -C tool DESTDIR="${pkgdir}" uninstall
+}
+
+package_nemo-share(){
+  pkgdesc="Samba extension for Nemo"
+  depends=(nemo samba)
+
+  cd ${pkgbase}-${_gitver}*/nemo-share
+  make DESTDIR="${pkgdir}" install
+}
+
+# package_nemo-media-columns(){
+#  cd ${pkgbase}-${_gitver}*/nemo-media-columns
+
+#  pkgdesc=("A Nemo extension to display music/EXIF and PDF metadata info 
in the Nemo List View")
+#  arch=(any)
+
+#   install -d ${pkgdir}/usr/share/nemo-python/extensio

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

2014-03-08 Thread Andreas Radke
Date: Saturday, March 8, 2014 @ 18:13:57
  Author: andyrtr
Revision: 106816

upgpkg: nemo-extensions 2.0.0-3

rebuild for new libevdev

Modified:
  nemo-extensions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 17:09:01 UTC (rev 106815)
+++ PKGBUILD2014-03-08 17:13:57 UTC (rev 106816)
@@ -13,7 +13,7 @@
#'nemo-rabbitvcs'
 pkgver=2.0.0
 _gitver=adeeeb12ea
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 license=('GPL2')
 url="https://github.com/linuxmint/nemo-extensions";



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

2014-03-08 Thread Giovanni Scafora
Date: Saturday, March 8, 2014 @ 18:09:21
  Author: giovanni
Revision: 207413

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

Added:
  mercurial/repos/extra-i686/PKGBUILD
(from rev 207412, mercurial/trunk/PKGBUILD)
  mercurial/repos/extra-i686/mercurial.profile
(from rev 207412, mercurial/trunk/mercurial.profile)
  mercurial/repos/extra-x86_64/PKGBUILD
(from rev 207412, mercurial/trunk/PKGBUILD)
  mercurial/repos/extra-x86_64/mercurial.profile
(from rev 207412, mercurial/trunk/mercurial.profile)
Deleted:
  mercurial/repos/extra-i686/PKGBUILD
  mercurial/repos/extra-i686/mercurial.profile
  mercurial/repos/extra-x86_64/PKGBUILD
  mercurial/repos/extra-x86_64/mercurial.profile

+
 /PKGBUILD  |  100 +++
 /mercurial.profile |2 
 extra-i686/PKGBUILD|   50 ---
 extra-i686/mercurial.profile   |1 
 extra-x86_64/PKGBUILD  |   50 ---
 extra-x86_64/mercurial.profile |1 
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-03-08 17:09:15 UTC (rev 207412)
+++ extra-i686/PKGBUILD 2014-03-08 17:09:21 UTC (rev 207413)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=mercurial
-pkgver=2.9
-pkgrel=2
-pkgdesc="A scalable distributed SCM tool"
-arch=('i686' 'x86_64')
-url="http://mercurial.selenic.com/";
-license=('GPL')
-depends=('python2')
-optdepends=('tk: for the hgk GUI')
-backup=('etc/mercurial/hgrc')
-source=("http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz";
-'mercurial.profile')
-md5sums=('de902a5300beb16c778bc88949832e94'
- '43e1d36564d4c7fbe9a091d3ea370a44')
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-
-  sed -i -e 's#env python#env python2#' \
-"${pkgdir}"/usr/lib/python2.7/site-packages/mercurial/lsprof.py
-
-  install -d ${pkgdir}/usr/share/man/{man1,man5}
-  install -m644 doc/hg.1 "${pkgdir}/usr/share/man/man1"
-  install -m644 doc/{hgrc.5,hgignore.5} "${pkgdir}/usr/share/man/man5"
-  install -m755 contrib/hgk "${pkgdir}/usr/bin"
-  install -m644 -D contrib/zsh_completion 
"${pkgdir}/usr/share/zsh/site-functions/_hg"
-  install -m644 -D contrib/bash_completion 
"${pkgdir}/usr/share/bash-completion/completions/hg"
-  install -d "${pkgdir}/usr/share/emacs/site-lisp"
-  install -m644 contrib/{mq.el,mercurial.el} 
"${pkgdir}/usr/share/emacs/site-lisp"
-
-  vimpath="${pkgdir}/usr/share/vim/vimfiles"
-  install -Dm644 contrib/vim/HGAnnotate.vim "${vimpath}/syntax/HGAnnotate.vim"
-
-  # set some variables
-  install -m755 -d ${pkgdir}/etc/profile.d
-  install -m755 ${srcdir}/mercurial.profile 
"${pkgdir}/etc/profile.d/mercurial.sh"
-
-  # install configuration file
-  install -m755 -d ${pkgdir}/etc/mercurial
-  install -m644 contrib/sample.hgrc "${pkgdir}/etc/mercurial/hgrc"
-  
-  # FS#38825 - Add certs config to package 
-  echo -e "\n[web]\ncacerts = /etc/ssl/certs/ca-certificates.crt" >> 
"${pkgdir}/etc/mercurial/hgrc"
-}

Copied: mercurial/repos/extra-i686/PKGBUILD (from rev 207412, 
mercurial/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-03-08 17:09:21 UTC (rev 207413)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=mercurial
+pkgver=2.9.1
+pkgrel=1
+pkgdesc="A scalable distributed SCM tool"
+arch=('i686' 'x86_64')
+url="http://mercurial.selenic.com/";
+license=('GPL')
+depends=('python2')
+optdepends=('tk: for the hgk GUI')
+backup=('etc/mercurial/hgrc')
+source=("http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz";
+'mercurial.profile')
+md5sums=('56b3732f0f558f3cc986c9323ca8d17f'
+ '43e1d36564d4c7fbe9a091d3ea370a44')
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  python2 setup.py install --root="${pkgdir}/" --optimize=1
+
+  sed -i -e 's#env python#env python2#' \
+"${pkgdir}"/usr/lib/python2.7/site-packages/mercurial/lsprof.py
+
+  install -d ${pkgdir}/usr/share/man/{man1,man5}
+  install -m644 doc/hg.1 "${pkgdir}/usr/share/man/man1"
+  install -m644 doc/{hgrc.5,hgignore.5} "${pkgdir}/usr/share/man/man5"
+  install -m755 contrib/hgk "${pkgdir}/usr/bin"
+  install -m644 -D contrib/zsh_completion 
"${pkgdir}/usr/share/zsh/site-functions/_hg"
+  install -m644 -D contrib/bash_completion 
"${pkgdir}/usr/share/bash-completion/completions/hg"
+  install -d "${pkgdir}/usr/share/emacs/site-lisp"
+  install -m644 contrib/{mq.el,mercurial.el} 
"${pkgdir}/usr/share/emacs/site-lisp"
+
+  vimpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -Dm644 contrib/vim/HGAnnotate.vim "${vimpath}/syntax/HGAnnotate.vim"
+

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

2014-03-08 Thread Giovanni Scafora
Date: Saturday, March 8, 2014 @ 18:09:15
  Author: giovanni
Revision: 207412

upgpkg: mercurial 2.9.1-1

upstream release

Modified:
  mercurial/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 17:00:46 UTC (rev 207411)
+++ PKGBUILD2014-03-08 17:09:15 UTC (rev 207412)
@@ -3,8 +3,8 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=mercurial
-pkgver=2.9
-pkgrel=2
+pkgver=2.9.1
+pkgrel=1
 pkgdesc="A scalable distributed SCM tool"
 arch=('i686' 'x86_64')
 url="http://mercurial.selenic.com/";
@@ -14,7 +14,7 @@
 backup=('etc/mercurial/hgrc')
 source=("http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz";
 'mercurial.profile')
-md5sums=('de902a5300beb16c778bc88949832e94'
+md5sums=('56b3732f0f558f3cc986c9323ca8d17f'
  '43e1d36564d4c7fbe9a091d3ea370a44')
 
 package() {
@@ -46,5 +46,5 @@
   install -m644 contrib/sample.hgrc "${pkgdir}/etc/mercurial/hgrc"
   
   # FS#38825 - Add certs config to package 
-  echo -e "\n[web]\ncacerts = /etc/ssl/certs/ca-certificates.crt" >> 
"${pkgdir}/etc/mercurial/hgrc"
+  echo -e "\n[web]\ncacerts = /etc/ssl/certs/ca-certificates.crt\n" >> 
"${pkgdir}/etc/mercurial/hgrc"
 }



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

2014-03-08 Thread Andreas Radke
Date: Saturday, March 8, 2014 @ 18:09:01
  Author: andyrtr
Revision: 106815

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

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

-+
 community-staging-i686/PKGBUILD |   34 ++
 community-staging-i686/muffin.install   |   10 
 community-staging-x86_64/PKGBUILD   |   34 ++
 community-staging-x86_64/muffin.install |   10 
 4 files changed, 88 insertions(+)

Copied: muffin/repos/community-staging-i686/PKGBUILD (from rev 106814, 
muffin/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-03-08 17:09:01 UTC (rev 106815)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Alexandre Filgueira 
+# Contributor: Adam Hani Schakaki 
+# Contributor: Ner0
+
+pkgname=muffin
+pkgver=2.0.5
+pkgrel=2
+pkgdesc="Cinnamon window manager based on Mutter"
+arch=('i686' 'x86_64')
+url="https://github.com/linuxmint/muffin";
+license=('GPL')
+depends=('clutter' 'gobject-introspection' 'cinnamon-desktop' 'libcanberra'
+ 'startup-notification' 'zenity' 'dconf')
+makedepends=('intltool' 'gnome-doc-utils' 'gnome-common')
+options=('!emptydirs')
+install=$pkgname.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/archive/$pkgver.tar.gz";)
+sha256sums=('81a57d452ea88ea926b284248033f021960400b3b9d13f5a334a77cf3bd4c7ee')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  PYTHON=python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib/muffin \
+--localstatedir=/var 
--disable-static --disable-schemas-compile
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: muffin/repos/community-staging-i686/muffin.install (from rev 106814, 
muffin/trunk/muffin.install)
===
--- community-staging-i686/muffin.install   (rev 0)
+++ community-staging-i686/muffin.install   2014-03-08 17:09:01 UTC (rev 
106815)
@@ -0,0 +1,10 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+post_remove() {
+  post_install
+}

Copied: muffin/repos/community-staging-x86_64/PKGBUILD (from rev 106814, 
muffin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-03-08 17:09:01 UTC (rev 106815)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Alexandre Filgueira 
+# Contributor: Adam Hani Schakaki 
+# Contributor: Ner0
+
+pkgname=muffin
+pkgver=2.0.5
+pkgrel=2
+pkgdesc="Cinnamon window manager based on Mutter"
+arch=('i686' 'x86_64')
+url="https://github.com/linuxmint/muffin";
+license=('GPL')
+depends=('clutter' 'gobject-introspection' 'cinnamon-desktop' 'libcanberra'
+ 'startup-notification' 'zenity' 'dconf')
+makedepends=('intltool' 'gnome-doc-utils' 'gnome-common')
+options=('!emptydirs')
+install=$pkgname.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/archive/$pkgver.tar.gz";)
+sha256sums=('81a57d452ea88ea926b284248033f021960400b3b9d13f5a334a77cf3bd4c7ee')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  PYTHON=python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib/muffin \
+--localstatedir=/var 
--disable-static --disable-schemas-compile
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: muffin/repos/community-staging-x86_64/muffin.install (from rev 106814, 
muffin/trunk/muffin.install)
===
--- community-staging-x86_64/muffin.install (rev 0)
+++ community-staging-x86_64/muffin.install 2014-03-08 17:09:01 UTC (rev 
106815)
@@ -0,0 +1,10 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+post_remove() {
+  post_install
+}



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

2014-03-08 Thread Andreas Radke
Date: Saturday, March 8, 2014 @ 18:08:49
  Author: andyrtr
Revision: 106814

upgpkg: muffin 2.0.5-2

rebuild for new libevdev

Modified:
  muffin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 16:46:51 UTC (rev 106813)
+++ PKGBUILD2014-03-08 17:08:49 UTC (rev 106814)
@@ -5,7 +5,7 @@
 
 pkgname=muffin
 pkgver=2.0.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Cinnamon window manager based on Mutter"
 arch=('i686' 'x86_64')
 url="https://github.com/linuxmint/muffin";



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

2014-03-08 Thread Sven-Hendrik Haase
Date: Saturday, March 8, 2014 @ 18:00:36
  Author: svenstaro
Revision: 207410

upgpkg: qtcreator 3.0.1.git-2

Bumping to current branch

Modified:
  qtcreator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 16:58:35 UTC (rev 207409)
+++ PKGBUILD2014-03-08 17:00:36 UTC (rev 207410)
@@ -7,9 +7,9 @@
 # Contributor: delor 
 
 pkgname=qtcreator
-pkgver=3.0.1
-_pkgver=3.0.1
-pkgrel=1
+pkgver=3.0.1.git
+_pkgver=3.0
+pkgrel=2
 pkgdesc='Lightweight, cross-platform integrated development environment'
 arch=('i686' 'x86_64')
 url='http://qt-project.org'
@@ -26,7 +26,7 @@
 'bzr: for bazaar support'
 'valgrind: for analyze support')
 install=qtcreator.install
-source=("git://gitorious.org/qt-creator/qt-creator.git#tag=v${_pkgver}"
+source=("git://gitorious.org/qt-creator/qt-creator.git#branch=${_pkgver}"
 "git://gitorious.org/qt-labs/qbs.git"
 'qtcreator.desktop')
 md5sums=('SKIP'



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

2014-03-08 Thread Sven-Hendrik Haase
Date: Saturday, March 8, 2014 @ 18:00:46
  Author: svenstaro
Revision: 207411

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

Added:
  qtcreator/repos/extra-i686/PKGBUILD
(from rev 207410, qtcreator/trunk/PKGBUILD)
  qtcreator/repos/extra-i686/qtcreator.desktop
(from rev 207410, qtcreator/trunk/qtcreator.desktop)
  qtcreator/repos/extra-i686/qtcreator.install
(from rev 207410, qtcreator/trunk/qtcreator.install)
  qtcreator/repos/extra-x86_64/PKGBUILD
(from rev 207410, qtcreator/trunk/PKGBUILD)
  qtcreator/repos/extra-x86_64/qtcreator.desktop
(from rev 207410, qtcreator/trunk/qtcreator.desktop)
  qtcreator/repos/extra-x86_64/qtcreator.install
(from rev 207410, qtcreator/trunk/qtcreator.install)
Deleted:
  qtcreator/repos/extra-i686/PKGBUILD
  qtcreator/repos/extra-i686/qtcreator.desktop
  qtcreator/repos/extra-i686/qtcreator.install
  qtcreator/repos/extra-x86_64/PKGBUILD
  qtcreator/repos/extra-x86_64/qtcreator.desktop
  qtcreator/repos/extra-x86_64/qtcreator.install

+
 /PKGBUILD  |  120 +++
 /qtcreator.desktop |   18 +
 /qtcreator.install |   24 +++
 extra-i686/PKGBUILD|   60 ---
 extra-i686/qtcreator.desktop   |9 --
 extra-i686/qtcreator.install   |   12 ---
 extra-x86_64/PKGBUILD  |   60 ---
 extra-x86_64/qtcreator.desktop |9 --
 extra-x86_64/qtcreator.install |   12 ---
 9 files changed, 162 insertions(+), 162 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-03-08 17:00:36 UTC (rev 207410)
+++ extra-i686/PKGBUILD 2014-03-08 17:00:46 UTC (rev 207411)
@@ -1,60 +0,0 @@
-# $Id: PKGBUILD 101820 2013-12-02 00:06:01Z svenstaro $
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Imanol Celaya 
-# Contributor: Lukas Jirkovsky 
-# Contributor: Dan Vratil 
-# Contributor: thotypous 
-# Contributor: delor 
-
-pkgname=qtcreator
-pkgver=3.0.1
-_pkgver=3.0.1
-pkgrel=1
-pkgdesc='Lightweight, cross-platform integrated development environment'
-arch=('i686' 'x86_64')
-url='http://qt-project.org'
-license=('LGPL')
-depends=('qt5-quick1' 'qt5-tools' 'qt5-quickcontrols')
-makedepends=('git' 'mesa')
-options=('docs')
-optdepends=('qt5-doc: for the integrated Qt documentation'
-'gdb: for the debugger'
-'cmake: for cmake project support'
-'openssh-askpass: for ssh support'
-'git: for git support'
-'mercurial: for mercurial support'
-'bzr: for bazaar support'
-'valgrind: for analyze support')
-install=qtcreator.install
-source=("git://gitorious.org/qt-creator/qt-creator.git#tag=v${_pkgver}"
-"git://gitorious.org/qt-labs/qbs.git"
-'qtcreator.desktop')
-md5sums=('SKIP'
- 'SKIP'
- '50880836fd62ccd87550940feb995f06')
-
-prepare() {
-cd qt-creator
-git submodule init
-git config submodule.qbs.url $srcdir/qbs
-git submodule update
-}
-
-build() {
-  [[ -d build ]] && rm -r build
-  mkdir build && cd build
-
-  qmake ../qt-creator/qtcreator.pro
-  make
-  make docs -j1
-}
-
-package() {
-  cd build
-
-  make INSTALL_ROOT="${pkgdir}/usr/" install
-  make INSTALL_ROOT="${pkgdir}/usr/" install_docs
-
-  install -Dm644 ${srcdir}/qtcreator.desktop 
${pkgdir}/usr/share/applications/qtcreator.desktop
-  install -Dm644 ${srcdir}/qt-creator/LGPL_EXCEPTION.TXT 
${pkgdir}/usr/share/licenses/qtcreator/LGPL_EXCEPTION.TXT
-}

Copied: qtcreator/repos/extra-i686/PKGBUILD (from rev 207410, 
qtcreator/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-03-08 17:00:46 UTC (rev 207411)
@@ -0,0 +1,60 @@
+# $Id: PKGBUILD 101820 2013-12-02 00:06:01Z svenstaro $
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Imanol Celaya 
+# Contributor: Lukas Jirkovsky 
+# Contributor: Dan Vratil 
+# Contributor: thotypous 
+# Contributor: delor 
+
+pkgname=qtcreator
+pkgver=3.0.1.git
+_pkgver=3.0
+pkgrel=2
+pkgdesc='Lightweight, cross-platform integrated development environment'
+arch=('i686' 'x86_64')
+url='http://qt-project.org'
+license=('LGPL')
+depends=('qt5-quick1' 'qt5-tools' 'qt5-quickcontrols')
+makedepends=('git' 'mesa')
+options=('docs')
+optdepends=('qt5-doc: for the integrated Qt documentation'
+'gdb: for the debugger'
+'cmake: for cmake project support'
+'openssh-askpass: for ssh support'
+'git: for git support'
+'mercurial: for mercurial support'
+'bzr: for bazaar support'
+'valgrind: for analyze support')
+install=qtcreator.install
+source=("git://gitorious.org/qt-creator/qt-creator.git#branch=${_pkgver}"
+"git://gitorious.org/qt-labs/qbs.git"
+'qtcreator.desktop')
+md5sums=('SKIP'
+ 'SKIP'
+

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

2014-03-08 Thread Andreas Radke
Date: Saturday, March 8, 2014 @ 17:58:26
  Author: andyrtr
Revision: 207408

upgpkg: sushi 3.10.0-2

rebuild for new libevdev

Modified:
  sushi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 16:55:25 UTC (rev 207407)
+++ PKGBUILD2014-03-08 16:58:26 UTC (rev 207408)
@@ -3,7 +3,7 @@
 
 pkgname=sushi
 pkgver=3.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A quick previewer for Nautilus"
 arch=(i686 x86_64)
 url="http://www.gnome.org";



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

2014-03-08 Thread Andreas Radke
Date: Saturday, March 8, 2014 @ 17:58:35
  Author: andyrtr
Revision: 207409

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

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

--+
 staging-i686/PKGBUILD|   29 +
 staging-i686/sushi.install   |   11 +++
 staging-x86_64/PKGBUILD  |   29 +
 staging-x86_64/sushi.install |   11 +++
 4 files changed, 80 insertions(+)

Copied: sushi/repos/staging-i686/PKGBUILD (from rev 207408, 
sushi/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-03-08 16:58:35 UTC (rev 207409)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=sushi
+pkgver=3.10.0
+pkgrel=2
+pkgdesc="A quick previewer for Nautilus"
+arch=(i686 x86_64)
+url="http://www.gnome.org";
+license=('GPL2')
+groups=(gnome)
+depends=('clutter-gtk' 'clutter-gst' 'gjs' 'libmusicbrainz5' 'webkitgtk3' 
'gtksourceview3' 'evince')
+install=sushi.install
+makedepends=('intltool' 'gobject-introspection')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('cffcf28b170f5825e84983a979972d4d901a453b61cbe3e560d362e8dd4b4bc8')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --libexecdir=/usr/lib/sushi
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: sushi/repos/staging-i686/sushi.install (from rev 207408, 
sushi/trunk/sushi.install)
===
--- staging-i686/sushi.install  (rev 0)
+++ staging-i686/sushi.install  2014-03-08 16:58:35 UTC (rev 207409)
@@ -0,0 +1,11 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: sushi/repos/staging-x86_64/PKGBUILD (from rev 207408, 
sushi/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-03-08 16:58:35 UTC (rev 207409)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=sushi
+pkgver=3.10.0
+pkgrel=2
+pkgdesc="A quick previewer for Nautilus"
+arch=(i686 x86_64)
+url="http://www.gnome.org";
+license=('GPL2')
+groups=(gnome)
+depends=('clutter-gtk' 'clutter-gst' 'gjs' 'libmusicbrainz5' 'webkitgtk3' 
'gtksourceview3' 'evince')
+install=sushi.install
+makedepends=('intltool' 'gobject-introspection')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('cffcf28b170f5825e84983a979972d4d901a453b61cbe3e560d362e8dd4b4bc8')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --libexecdir=/usr/lib/sushi
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: sushi/repos/staging-x86_64/sushi.install (from rev 207408, 
sushi/trunk/sushi.install)
===
--- staging-x86_64/sushi.install(rev 0)
+++ staging-x86_64/sushi.install2014-03-08 16:58:35 UTC (rev 207409)
@@ -0,0 +1,11 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2014-03-08 Thread Andreas Radke
Date: Saturday, March 8, 2014 @ 17:55:25
  Author: andyrtr
Revision: 207407

put devel PKGBUILD back on top

Modified:
  clutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 16:54:51 UTC (rev 207406)
+++ PKGBUILD2014-03-08 16:55:25 UTC (rev 207407)
@@ -4,8 +4,8 @@
 # Contributor: William Rea 
 
 pkgname=clutter
-pkgver=1.16.4
-pkgrel=3
+pkgver=1.17.4
+pkgrel=1
 pkgdesc="A GObject based library for creating fast, visually rich graphical 
user interfaces"
 arch=('i686' 'x86_64')
 url="http://clutter-project.org/";
@@ -12,32 +12,9 @@
 license=('LGPL')
 depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi' 'libxkbcommon' 'libevdev')
 makedepends=('gobject-introspection')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
-fix_buffer_age.patch
-unref_devices_on_removal.diff
-fix_a_segfault_on_device_removal.diff
-stop_using_deprecated_libevdev_api.diff)
-sha256sums=('cf50836ec5503577b73f75f984577610881b3e2ff7a327bb5b6918b431b51b65'
-'e254b26663c88dfba756934f011451c0551e52bb70e2de037835aea267ed7bda'
-'70494fe0b46bbe4157196fd855e3fcef0970e543979018df57676fea00dd38af'
-'a9dabecb727f23654ef622aef8bba92e3dd1381ef6257107da7a689766e9917c'
-'02768f0032f57939caa3f0695723fd3a6b4ab7bb33908ca50502dfc7f49e6c21')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('283e05620353b0737d3fa95f5bd73763b550ec5c74cc5690e7cc632a4c45757a')
 
-prepare() {
-  cd "$pkgname-$pkgver"
-  patch -Np1 -i ../fix_buffer_age.patch
-  
-  # fix build with libevdev >= 1.0.x
-  # 
https://git.gnome.org/browse/clutter/commit/?h=clutter-1.18&id=7d8f72a60e4087a4d9e48d3f0e38b669b3717243
-  patch -Np1 -i ../unref_devices_on_removal.diff
-  # 
https://git.gnome.org/browse/clutter/patch/?id=05e6bcc666e345ed4619c1a40a298212d1075b99
-  patch -Np1 -i ../fix_a_segfault_on_device_removal.diff
-  # 
https://git.gnome.org/browse/clutter/patch/?id=3cd9a70fea1ccf795419a1726c7c279b0aaf237e
-  patch -Np1 -i ../stop_using_deprecated_libevdev_api.diff
-  
-  autoreconf -vfi
-}
-
 build() {
   cd "$pkgname-$pkgver"
   ./configure --prefix=/usr --enable-introspection \



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

2014-03-08 Thread Andreas Radke
Date: Saturday, March 8, 2014 @ 17:54:51
  Author: andyrtr
Revision: 207406

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

Added:
  clutter/repos/staging-i686/
  clutter/repos/staging-i686/PKGBUILD
(from rev 207405, clutter/trunk/PKGBUILD)
  clutter/repos/staging-i686/fix_a_segfault_on_device_removal.diff
(from rev 207405, clutter/trunk/fix_a_segfault_on_device_removal.diff)
  clutter/repos/staging-i686/fix_buffer_age.patch
(from rev 207405, clutter/trunk/fix_buffer_age.patch)
  clutter/repos/staging-i686/stop_using_deprecated_libevdev_api.diff
(from rev 207405, clutter/trunk/stop_using_deprecated_libevdev_api.diff)
  clutter/repos/staging-i686/unref_devices_on_removal.diff
(from rev 207405, clutter/trunk/unref_devices_on_removal.diff)
  clutter/repos/staging-x86_64/
  clutter/repos/staging-x86_64/PKGBUILD
(from rev 207405, clutter/trunk/PKGBUILD)
  clutter/repos/staging-x86_64/fix_a_segfault_on_device_removal.diff
(from rev 207405, clutter/trunk/fix_a_segfault_on_device_removal.diff)
  clutter/repos/staging-x86_64/fix_buffer_age.patch
(from rev 207405, clutter/trunk/fix_buffer_age.patch)
  clutter/repos/staging-x86_64/stop_using_deprecated_libevdev_api.diff
(from rev 207405, clutter/trunk/stop_using_deprecated_libevdev_api.diff)
  clutter/repos/staging-x86_64/unref_devices_on_removal.diff
(from rev 207405, clutter/trunk/unref_devices_on_removal.diff)

+
 staging-i686/PKGBUILD  |   56 +++
 staging-i686/fix_a_segfault_on_device_removal.diff |   31 +++
 staging-i686/fix_buffer_age.patch  |   34 
 staging-i686/stop_using_deprecated_libevdev_api.diff   |  117 +++
 staging-i686/unref_devices_on_removal.diff |   22 ++
 staging-x86_64/PKGBUILD|   56 +++
 staging-x86_64/fix_a_segfault_on_device_removal.diff   |   31 +++
 staging-x86_64/fix_buffer_age.patch|   34 
 staging-x86_64/stop_using_deprecated_libevdev_api.diff |  117 +++
 staging-x86_64/unref_devices_on_removal.diff   |   22 ++
 10 files changed, 520 insertions(+)

Copied: clutter/repos/staging-i686/PKGBUILD (from rev 207405, 
clutter/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-03-08 16:54:51 UTC (rev 207406)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Sergej Pupykin 
+# Contributor: William Rea 
+
+pkgname=clutter
+pkgver=1.16.4
+pkgrel=3
+pkgdesc="A GObject based library for creating fast, visually rich graphical 
user interfaces"
+arch=('i686' 'x86_64')
+url="http://clutter-project.org/";
+license=('LGPL')
+depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi' 'libxkbcommon' 'libevdev')
+makedepends=('gobject-introspection')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+fix_buffer_age.patch
+unref_devices_on_removal.diff
+fix_a_segfault_on_device_removal.diff
+stop_using_deprecated_libevdev_api.diff)
+sha256sums=('cf50836ec5503577b73f75f984577610881b3e2ff7a327bb5b6918b431b51b65'
+'e254b26663c88dfba756934f011451c0551e52bb70e2de037835aea267ed7bda'
+'70494fe0b46bbe4157196fd855e3fcef0970e543979018df57676fea00dd38af'
+'a9dabecb727f23654ef622aef8bba92e3dd1381ef6257107da7a689766e9917c'
+'02768f0032f57939caa3f0695723fd3a6b4ab7bb33908ca50502dfc7f49e6c21')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  patch -Np1 -i ../fix_buffer_age.patch
+  
+  # fix build with libevdev >= 1.0.x
+  # 
https://git.gnome.org/browse/clutter/commit/?h=clutter-1.18&id=7d8f72a60e4087a4d9e48d3f0e38b669b3717243
+  patch -Np1 -i ../unref_devices_on_removal.diff
+  # 
https://git.gnome.org/browse/clutter/patch/?id=05e6bcc666e345ed4619c1a40a298212d1075b99
+  patch -Np1 -i ../fix_a_segfault_on_device_removal.diff
+  # 
https://git.gnome.org/browse/clutter/patch/?id=3cd9a70fea1ccf795419a1726c7c279b0aaf237e
+  patch -Np1 -i ../stop_using_deprecated_libevdev_api.diff
+  
+  autoreconf -vfi
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --enable-introspection \
+--enable-wayland-backend --enable-egl-backend --enable-evdev-input \
+--enable-wayland-compositor
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Copied: clutter/repos/staging-i686/fix_a_segfault_on_device_removal.diff (from 
rev 207405, clutter/trunk/fix_a_segfault_on_device_removal.diff)
===
--- staging-i686/fix_a_segfault_on_device_removal.diff  
(rev 0)
+++ staging-i686/fix_a_segfault_on_device_removal.diff 

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

2014-03-08 Thread Andreas Radke
Date: Saturday, March 8, 2014 @ 17:54:29
  Author: andyrtr
Revision: 207405

upgpkg: clutter 1.16.4-3

rebuild for new libevdev, added required patches to make it compile

Added:
  clutter/trunk/fix_a_segfault_on_device_removal.diff
  clutter/trunk/fix_buffer_age.patch
  clutter/trunk/stop_using_deprecated_libevdev_api.diff
  clutter/trunk/unref_devices_on_removal.diff
Modified:
  clutter/trunk/PKGBUILD

-+
 PKGBUILD|   31 ++-
 fix_a_segfault_on_device_removal.diff   |   31 +++
 fix_buffer_age.patch|   34 
 stop_using_deprecated_libevdev_api.diff |  117 ++
 unref_devices_on_removal.diff   |   22 +
 5 files changed, 231 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 16:36:26 UTC (rev 207404)
+++ PKGBUILD2014-03-08 16:54:29 UTC (rev 207405)
@@ -4,8 +4,8 @@
 # Contributor: William Rea 
 
 pkgname=clutter
-pkgver=1.17.4
-pkgrel=1
+pkgver=1.16.4
+pkgrel=3
 pkgdesc="A GObject based library for creating fast, visually rich graphical 
user interfaces"
 arch=('i686' 'x86_64')
 url="http://clutter-project.org/";
@@ -12,9 +12,32 @@
 license=('LGPL')
 depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi' 'libxkbcommon' 'libevdev')
 makedepends=('gobject-introspection')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('283e05620353b0737d3fa95f5bd73763b550ec5c74cc5690e7cc632a4c45757a')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+fix_buffer_age.patch
+unref_devices_on_removal.diff
+fix_a_segfault_on_device_removal.diff
+stop_using_deprecated_libevdev_api.diff)
+sha256sums=('cf50836ec5503577b73f75f984577610881b3e2ff7a327bb5b6918b431b51b65'
+'e254b26663c88dfba756934f011451c0551e52bb70e2de037835aea267ed7bda'
+'70494fe0b46bbe4157196fd855e3fcef0970e543979018df57676fea00dd38af'
+'a9dabecb727f23654ef622aef8bba92e3dd1381ef6257107da7a689766e9917c'
+'02768f0032f57939caa3f0695723fd3a6b4ab7bb33908ca50502dfc7f49e6c21')
 
+prepare() {
+  cd "$pkgname-$pkgver"
+  patch -Np1 -i ../fix_buffer_age.patch
+  
+  # fix build with libevdev >= 1.0.x
+  # 
https://git.gnome.org/browse/clutter/commit/?h=clutter-1.18&id=7d8f72a60e4087a4d9e48d3f0e38b669b3717243
+  patch -Np1 -i ../unref_devices_on_removal.diff
+  # 
https://git.gnome.org/browse/clutter/patch/?id=05e6bcc666e345ed4619c1a40a298212d1075b99
+  patch -Np1 -i ../fix_a_segfault_on_device_removal.diff
+  # 
https://git.gnome.org/browse/clutter/patch/?id=3cd9a70fea1ccf795419a1726c7c279b0aaf237e
+  patch -Np1 -i ../stop_using_deprecated_libevdev_api.diff
+  
+  autoreconf -vfi
+}
+
 build() {
   cd "$pkgname-$pkgver"
   ./configure --prefix=/usr --enable-introspection \

Added: fix_a_segfault_on_device_removal.diff
===
--- fix_a_segfault_on_device_removal.diff   (rev 0)
+++ fix_a_segfault_on_device_removal.diff   2014-03-08 16:54:29 UTC (rev 
207405)
@@ -0,0 +1,31 @@
+From 05e6bcc666e345ed4619c1a40a298212d1075b99 Mon Sep 17 00:00:00 2001
+From: Rui Matos 
+Date: Thu, 21 Nov 2013 13:51:26 +
+Subject: device-manager-evdev: Fix a segfault on device removal
+
+Master devices have a NULL sysfs path so use g_strcmp0 to handle them
+without crashing.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=712812
+---
+diff --git a/clutter/evdev/clutter-device-manager-evdev.c 
b/clutter/evdev/clutter-device-manager-evdev.c
+index 256fd0e..38d707f 100644
+--- a/clutter/evdev/clutter-device-manager-evdev.c
 b/clutter/evdev/clutter-device-manager-evdev.c
+@@ -943,11 +943,8 @@ find_device_by_udev_device (ClutterDeviceManagerEvdev 
*manager_evdev,
+ {
+   ClutterInputDeviceEvdev *device = l->data;
+ 
+-  if (strcmp (sysfs_path,
+-  _clutter_input_device_evdev_get_sysfs_path (device)) == 0)
+-{
+-  return device;
+-}
++  if (g_strcmp0 (sysfs_path, _clutter_input_device_evdev_get_sysfs_path 
(device)) == 0)
++return device;
+ }
+ 
+   return NULL;
+--
+cgit v0.9.2
+

Added: fix_buffer_age.patch
===
--- fix_buffer_age.patch(rev 0)
+++ fix_buffer_age.patch2014-03-08 16:54:29 UTC (rev 207405)
@@ -0,0 +1,34 @@
+From 6665f47d66a871b6e1a5f4200282f42da043a0e8 Mon Sep 17 00:00:00 2001
+From: Adel Gadllah 
+Date: Sun, 16 Feb 2014 21:07:43 +
+Subject: stage-cogl: Fix buffer_age code path
+
+Currently we where checking whether the damage_history list contains
+more or equal then buffer_age entries. This is wrong because we prepend
+our current clip to the list just before the check.
+
+Fix that to check whether we have more entrie

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

2014-03-08 Thread Alexander Rødseth
Date: Saturday, March 8, 2014 @ 17:46:51
  Author: arodseth
Revision: 106813

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-08 16:46:29 UTC (rev 106812)
+++ community-i686/PKGBUILD 2014-03-08 16:46:51 UTC (rev 106813)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Alexander R�dseth 
-
-pkgname=addinclude
-pkgver=0.9
-pkgrel=9
-pkgdesc='Utility to add includes to C header- and sourcefiles'
-arch=('x86_64' 'i686')
-url='http://addinclude.roboticoverlords.org/'
-license=('GPL2')
-makedepends=('go')
-source=("http://$pkgname.roboticoverlords.org/$pkgname-$pkgver.tbz2";)
-sha256sums=('8d88014b4b166d808892f433ce12e3ee683101af5e31886faa52a44cc6f7b451')
-options=('zipman')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  source /etc/profile.d/go.sh
-  go build -o "$pkgname"
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  install -Dm755 "$pkgname" \
-"$pkgdir/usr/bin/$pkgname"
-  install -Dm644 "$pkgname.1.gz" \
-"$pkgdir/usr/share/man/man1/$pkgname.1.gz"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: addinclude/repos/community-i686/PKGBUILD (from rev 106812, 
addinclude/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-08 16:46:51 UTC (rev 106813)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alexander R�dseth 
+
+pkgname=addinclude
+pkgver=0.9
+pkgrel=10
+pkgdesc='Utility to add includes to C header- and sourcefiles'
+arch=('x86_64' 'i686')
+url='http://addinclude.roboticoverlords.org/'
+license=('GPL2')
+makedepends=('go')
+source=("http://$pkgname.roboticoverlords.org/$pkgname-$pkgver.tbz2";)
+sha256sums=('8d88014b4b166d808892f433ce12e3ee683101af5e31886faa52a44cc6f7b451')
+options=('zipman')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  go build -o "$pkgname"
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -Dm755 "$pkgname" \
+"$pkgdir/usr/bin/$pkgname"
+  install -Dm644 "$pkgname.1.gz" \
+"$pkgdir/usr/share/man/man1/$pkgname.1.gz"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-08 16:46:29 UTC (rev 106812)
+++ community-x86_64/PKGBUILD   2014-03-08 16:46:51 UTC (rev 106813)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Alexander R�dseth 
-
-pkgname=addinclude
-pkgver=0.9
-pkgrel=9
-pkgdesc='Utility to add includes to C header- and sourcefiles'
-arch=('x86_64' 'i686')
-url='http://addinclude.roboticoverlords.org/'
-license=('GPL2')
-makedepends=('go')
-source=("http://$pkgname.roboticoverlords.org/$pkgname-$pkgver.tbz2";)
-sha256sums=('8d88014b4b166d808892f433ce12e3ee683101af5e31886faa52a44cc6f7b451')
-options=('zipman')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  source /etc/profile.d/go.sh
-  go build -o "$pkgname"
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  install -Dm755 "$pkgname" \
-"$pkgdir/usr/bin/$pkgname"
-  install -Dm644 "$pkgname.1.gz" \
-"$pkgdir/usr/share/man/man1/$pkgname.1.gz"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: addinclude/repos/community-x86_64/PKGBUILD (from rev 106812, 
addinclude/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-03-08 16:46:51 UTC (rev 106813)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alexander R�dseth 
+
+pkgname=addinclude
+pkgver=0.9
+pkgrel=10
+pkgdesc='Utility to add includes to C header- and sourcefiles'
+arch=('x86_64' 'i686')
+url='http://addinclude.roboticoverlords.org/'
+license=('GPL2')
+makedepends=('go')
+source=("http://$pkgname.roboticoverlords.org/$pkgname-$pkgver.tbz2";)
+sha256sums=('8d88014b4b166d808892f433ce12e3ee683101af5e31886faa52a44cc6f7b451')
+options=('zipman')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  go build -o "$pkgname"
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -Dm755 "$pkgname" \
+"$pkgdir/usr/bin/$pkgname"
+  install -Dm644 "$pkgname.1.gz" \
+"$pkgdir/usr/share/man/man1/$pkgname.1.gz"
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-03-08 Thread Alexander Rødseth
Date: Saturday, March 8, 2014 @ 17:46:29
  Author: arodseth
Revision: 106812

upgpkg: addinclude 0.9-10

Modified:
  addinclude/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 10:45:47 UTC (rev 106811)
+++ PKGBUILD2014-03-08 16:46:29 UTC (rev 106812)
@@ -3,7 +3,7 @@
 
 pkgname=addinclude
 pkgver=0.9
-pkgrel=9
+pkgrel=10
 pkgdesc='Utility to add includes to C header- and sourcefiles'
 arch=('x86_64' 'i686')
 url='http://addinclude.roboticoverlords.org/'
@@ -14,14 +14,13 @@
 options=('zipman')
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
 
-  source /etc/profile.d/go.sh
   go build -o "$pkgname"
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
 
   install -Dm755 "$pkgname" \
 "$pkgdir/usr/bin/$pkgname"



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

2014-03-08 Thread Sven-Hendrik Haase
Date: Saturday, March 8, 2014 @ 17:36:26
  Author: svenstaro
Revision: 207404

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-03-08 16:36:16 UTC (rev 207403)
+++ extra-i686/PKGBUILD 2014-03-08 16:36:26 UTC (rev 207404)
@@ -1,34 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=sdl2
-pkgver=2.0.1
-pkgrel=3
-pkgdesc="A library for portable low-level access to a video framebuffer, audio 
output, mouse, and keyboard (Version 2)"
-arch=('i686' 'x86_64')
-url="http://www.libsdl.org";
-license=('MIT')
-depends=('glibc' 'libxext' 'libxrender' 'libx11' 'libgl' 'libxcursor')
-makedepends=('alsa-lib' 'mesa' 'libpulse' 'libxrandr' 'libxinerama')
-optdepends=('alsa-lib: ALSA audio driver'
-'libpulse: PulseAudio audio driver')
-source=("http://www.libsdl.org/release/SDL2-${pkgver}.tar.gz";)
-md5sums=('0eb97039488bf463e775295f7b18b227')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  ../SDL2-$pkgver/configure --prefix=/usr \
---enable-sdl-dlopen \
---disable-arts --disable-esd --disable-nas \
---enable-alsa --enable-pulseaudio-shared \
---disable-rpath
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  install -Dm644 ../SDL2-$pkgver/COPYING.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: sdl2/repos/extra-i686/PKGBUILD (from rev 207403, sdl2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-03-08 16:36:26 UTC (rev 207404)
@@ -0,0 +1,34 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=sdl2
+pkgver=2.0.2
+pkgrel=1
+pkgdesc="A library for portable low-level access to a video framebuffer, audio 
output, mouse, and keyboard (Version 2)"
+arch=('i686' 'x86_64')
+url="http://www.libsdl.org";
+license=('MIT')
+depends=('glibc' 'libxext' 'libxrender' 'libx11' 'libgl' 'libxcursor')
+makedepends=('alsa-lib' 'mesa' 'libpulse' 'libxrandr' 'libxinerama')
+optdepends=('alsa-lib: ALSA audio driver'
+'libpulse: PulseAudio audio driver')
+source=("http://www.libsdl.org/release/SDL2-${pkgver}.tar.gz";)
+md5sums=('e8070e8b6335def073a80cee78f3a7f0')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  ../SDL2-$pkgver/configure --prefix=/usr \
+--enable-sdl-dlopen \
+--disable-arts --disable-esd --disable-nas \
+--enable-alsa --enable-pulseaudio-shared \
+--disable-rpath
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../SDL2-$pkgver/COPYING.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-03-08 16:36:16 UTC (rev 207403)
+++ extra-x86_64/PKGBUILD   2014-03-08 16:36:26 UTC (rev 207404)
@@ -1,34 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=sdl2
-pkgver=2.0.1
-pkgrel=3
-pkgdesc="A library for portable low-level access to a video framebuffer, audio 
output, mouse, and keyboard (Version 2)"
-arch=('i686' 'x86_64')
-url="http://www.libsdl.org";
-license=('MIT')
-depends=('glibc' 'libxext' 'libxrender' 'libx11' 'libgl' 'libxcursor')
-makedepends=('alsa-lib' 'mesa' 'libpulse' 'libxrandr' 'libxinerama')
-optdepends=('alsa-lib: ALSA audio driver'
-'libpulse: PulseAudio audio driver')
-source=("http://www.libsdl.org/release/SDL2-${pkgver}.tar.gz";)
-md5sums=('0eb97039488bf463e775295f7b18b227')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  ../SDL2-$pkgver/configure --prefix=/usr \
---enable-sdl-dlopen \
---disable-arts --disable-esd --disable-nas \
---enable-alsa --enable-pulseaudio-shared \
---disable-rpath
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  install -Dm644 ../SDL2-$pkgver/COPYING.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: sdl2/repos/extra-x86_64/PKGBUILD (from rev 207403, sdl2/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-03-08 16:36:26 UTC (rev 207404)
@@ -0,0 +1,34 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=sdl2
+pkgver=2.0.2
+pkgrel=1
+pkgdesc="A library for portable low-level access to a video framebuffer, audio 
output, mouse, and keyboard (Version 2)"
+arc

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

2014-03-08 Thread Sven-Hendrik Haase
Date: Saturday, March 8, 2014 @ 17:36:16
  Author: svenstaro
Revision: 207403

upgpkg: sdl2 2.0.2-1

upstream release 2.0.2

Modified:
  sdl2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 16:24:20 UTC (rev 207402)
+++ PKGBUILD2014-03-08 16:36:16 UTC (rev 207403)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=sdl2
-pkgver=2.0.1
-pkgrel=3
+pkgver=2.0.2
+pkgrel=1
 pkgdesc="A library for portable low-level access to a video framebuffer, audio 
output, mouse, and keyboard (Version 2)"
 arch=('i686' 'x86_64')
 url="http://www.libsdl.org";
@@ -11,7 +11,7 @@
 optdepends=('alsa-lib: ALSA audio driver'
 'libpulse: PulseAudio audio driver')
 source=("http://www.libsdl.org/release/SDL2-${pkgver}.tar.gz";)
-md5sums=('0eb97039488bf463e775295f7b18b227')
+md5sums=('e8070e8b6335def073a80cee78f3a7f0')
 
 prepare() {
   mkdir build



[arch-commits] Commit in clutter/repos/extra-i686 (fix_buffer_age.patch)

2014-03-08 Thread Ionuț Mircea Bîru
Date: Saturday, March 8, 2014 @ 17:24:20
  Author: ioni
Revision: 207402

fix blinking issue with gnome using nvidia 334.21

Added:
  clutter/repos/extra-i686/fix_buffer_age.patch

--+
 fix_buffer_age.patch |   34 ++
 1 file changed, 34 insertions(+)

Added: fix_buffer_age.patch
===
--- fix_buffer_age.patch(rev 0)
+++ fix_buffer_age.patch2014-03-08 16:24:20 UTC (rev 207402)
@@ -0,0 +1,34 @@
+From 6665f47d66a871b6e1a5f4200282f42da043a0e8 Mon Sep 17 00:00:00 2001
+From: Adel Gadllah 
+Date: Sun, 16 Feb 2014 21:07:43 +
+Subject: stage-cogl: Fix buffer_age code path
+
+Currently we where checking whether the damage_history list contains
+more or equal then buffer_age entries. This is wrong because we prepend
+our current clip to the list just before the check.
+
+Fix that to check whether we have more entries instead of more or equal.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=724788
+---
+diff --git a/clutter/cogl/clutter-stage-cogl.c 
b/clutter/cogl/clutter-stage-cogl.c
+index 86546b1..cff8444 100644
+--- a/clutter/cogl/clutter-stage-cogl.c
 b/clutter/cogl/clutter-stage-cogl.c
+@@ -483,11 +483,12 @@ clutter_stage_cogl_redraw (ClutterStageWindow 
*stage_window)
+ 
+ stage_cogl->damage_history = g_slist_prepend 
(stage_cogl->damage_history, current_damage);
+ 
+-if (age != 0 && !stage_cogl->dirty_backbuffer && g_slist_length 
(stage_cogl->damage_history) >= age)
++if (age != 0 && !stage_cogl->dirty_backbuffer && g_slist_length 
(stage_cogl->damage_history) > age)
+   {
+ int i = 0;
+ GSList *tmp = NULL;
+-for (tmp = stage_cogl->damage_history; tmp; tmp = tmp->next)
++/* We skip the first entry because it is the clip_region itself */
++for (tmp = stage_cogl->damage_history->next; tmp; tmp = tmp->next)
+   {
+ _clutter_util_rectangle_union (clip_region, tmp->data, 
clip_region);
+ i++;
+--
+cgit v0.9.2



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

2014-03-08 Thread Ionuț Mircea Bîru
Date: Saturday, March 8, 2014 @ 17:24:07
  Author: ioni
Revision: 207401

fix blinking issue with gnome using nvidia 334.21

Added:
  clutter/repos/extra-x86_64/fix_buffer_age.patch
Modified:
  clutter/repos/extra-i686/PKGBUILD
  clutter/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |9 ++---
 extra-x86_64/PKGBUILD |9 ++---
 extra-x86_64/fix_buffer_age.patch |   34 ++
 3 files changed, 46 insertions(+), 6 deletions(-)

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-03-08 16:16:58 UTC (rev 207400)
+++ extra-i686/PKGBUILD 2014-03-08 16:24:07 UTC (rev 207401)
@@ -5,7 +5,7 @@
 
 pkgname=clutter
 pkgver=1.16.4
-pkgrel=1
+pkgrel=2
 pkgdesc="A GObject based library for creating fast, visually rich graphical 
user interfaces"
 arch=('i686' 'x86_64')
 url="http://clutter-project.org/";
@@ -12,11 +12,14 @@
 license=('LGPL')
 depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi' 'libxkbcommon' 'libevdev')
 makedepends=('gobject-introspection')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('cf50836ec5503577b73f75f984577610881b3e2ff7a327bb5b6918b431b51b65')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+fix_buffer_age.patch)
+sha256sums=('cf50836ec5503577b73f75f984577610881b3e2ff7a327bb5b6918b431b51b65'
+'e254b26663c88dfba756934f011451c0551e52bb70e2de037835aea267ed7bda')
 
 build() {
   cd "$pkgname-$pkgver"
+  patch -Np1 -i ../fix_buffer_age.patch
   ./configure --prefix=/usr --enable-introspection \
 --enable-wayland-backend --enable-egl-backend --enable-evdev-input \
 --enable-wayland-compositor

Modified: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-03-08 16:16:58 UTC (rev 207400)
+++ extra-x86_64/PKGBUILD   2014-03-08 16:24:07 UTC (rev 207401)
@@ -5,7 +5,7 @@
 
 pkgname=clutter
 pkgver=1.16.4
-pkgrel=1
+pkgrel=2
 pkgdesc="A GObject based library for creating fast, visually rich graphical 
user interfaces"
 arch=('i686' 'x86_64')
 url="http://clutter-project.org/";
@@ -12,11 +12,14 @@
 license=('LGPL')
 depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi' 'libxkbcommon' 'libevdev')
 makedepends=('gobject-introspection')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('cf50836ec5503577b73f75f984577610881b3e2ff7a327bb5b6918b431b51b65')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+fix_buffer_age.patch)
+sha256sums=('cf50836ec5503577b73f75f984577610881b3e2ff7a327bb5b6918b431b51b65'
+'e254b26663c88dfba756934f011451c0551e52bb70e2de037835aea267ed7bda')
 
 build() {
   cd "$pkgname-$pkgver"
+  patch -Np1 -i ../fix_buffer_age.patch
   ./configure --prefix=/usr --enable-introspection \
 --enable-wayland-backend --enable-egl-backend --enable-evdev-input \
 --enable-wayland-compositor

Added: extra-x86_64/fix_buffer_age.patch
===
--- extra-x86_64/fix_buffer_age.patch   (rev 0)
+++ extra-x86_64/fix_buffer_age.patch   2014-03-08 16:24:07 UTC (rev 207401)
@@ -0,0 +1,34 @@
+From 6665f47d66a871b6e1a5f4200282f42da043a0e8 Mon Sep 17 00:00:00 2001
+From: Adel Gadllah 
+Date: Sun, 16 Feb 2014 21:07:43 +
+Subject: stage-cogl: Fix buffer_age code path
+
+Currently we where checking whether the damage_history list contains
+more or equal then buffer_age entries. This is wrong because we prepend
+our current clip to the list just before the check.
+
+Fix that to check whether we have more entries instead of more or equal.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=724788
+---
+diff --git a/clutter/cogl/clutter-stage-cogl.c 
b/clutter/cogl/clutter-stage-cogl.c
+index 86546b1..cff8444 100644
+--- a/clutter/cogl/clutter-stage-cogl.c
 b/clutter/cogl/clutter-stage-cogl.c
+@@ -483,11 +483,12 @@ clutter_stage_cogl_redraw (ClutterStageWindow 
*stage_window)
+ 
+ stage_cogl->damage_history = g_slist_prepend 
(stage_cogl->damage_history, current_damage);
+ 
+-if (age != 0 && !stage_cogl->dirty_backbuffer && g_slist_length 
(stage_cogl->damage_history) >= age)
++if (age != 0 && !stage_cogl->dirty_backbuffer && g_slist_length 
(stage_cogl->damage_history) > age)
+   {
+ int i = 0;
+ GSList *tmp = NULL;
+-for (tmp = stage_cogl->damage_history; tmp; tmp = tmp->next)
++/* We skip the first entry because it is the clip_region itself */
++for (tmp = stage_cogl->damage_history->next; tmp; tmp = tmp->next)
+   {
+ _clutter_util_rectangle_union (clip_region, tmp->data, 
clip_region);
+ i++;
+--
+cgit v0.9.2

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

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 17:16:58
  Author: andrea
Revision: 207400

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdebindings-korundum/repos/kde-unstable-i686/PKGBUILD
(from rev 207399, kdebindings-korundum/kde-unstable/PKGBUILD)
  kdebindings-korundum/repos/kde-unstable-i686/no-nepomuk.patch
(from rev 207399, kdebindings-korundum/kde-unstable/no-nepomuk.patch)
  kdebindings-korundum/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207399, kdebindings-korundum/kde-unstable/PKGBUILD)
  kdebindings-korundum/repos/kde-unstable-x86_64/no-nepomuk.patch
(from rev 207399, kdebindings-korundum/kde-unstable/no-nepomuk.patch)
Deleted:
  kdebindings-korundum/repos/kde-unstable-i686/PKGBUILD
  kdebindings-korundum/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|   92 +
 kde-unstable-i686/PKGBUILD   |   40 --
 kde-unstable-i686/no-nepomuk.patch   |   21 +++
 kde-unstable-x86_64/PKGBUILD |   40 --
 kde-unstable-x86_64/no-nepomuk.patch |   21 +++
 5 files changed, 134 insertions(+), 80 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2014-03-08 16:16:46 UTC (rev 207399)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 16:16:58 UTC (rev 207400)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=kdebindings-korundum
-pkgver=4.12.80
-pkgrel=1
-pkgdesc="Ruby bindings for libraries created by the KDE community"
-url="https://projects.kde.org/projects/kde/kdebindings/ruby/korundum";
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-qtruby' 'kdebindings-smokekde')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
- 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate')
-optdepends=('kdegraphics-okular: okular bindings'
-'kdepimlibs: akonadi bindings')
-conflicts=('kdebindings-ruby')
-source=("http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.xz";)
-sha1sums=('79a57dbfcae018491a5045ae6a25df2ab0f620b0')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../korundum-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG["vendorlibdir"]') \
--DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG["vendorarchdir"]')
-
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdebindings-korundum/repos/kde-unstable-i686/PKGBUILD (from rev 207399, 
kdebindings-korundum/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 16:16:58 UTC (rev 207400)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdebindings-korundum
+pkgver=4.12.80
+pkgrel=2
+pkgdesc="Ruby bindings for libraries created by the KDE community"
+url="https://projects.kde.org/projects/kde/kdebindings/ruby/korundum";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-qtruby' 'kdebindings-smokekde')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
+ 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate')
+optdepends=('kdegraphics-okular: okular bindings'
+'kdepimlibs: akonadi bindings')
+conflicts=('kdebindings-ruby')
+source=("http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.xz";
+'no-nepomuk.patch')
+sha1sums=('79a57dbfcae018491a5045ae6a25df2ab0f620b0'
+  'c4834bab76316f0f7c956c0527351e9d885694fd')
+
+prepare() {
+  mkdir build
+
+  cd korundum-${pkgver}
+  patch -p1 -i "${srcdir}"/no-nepomuk.patch
+}
+
+build() {
+  cd build
+  cmake ../korundum-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG["vendorlibdir"]') \
+-DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG["vendorarchdir"]') \
+-DWITH_Nepomuk=OFF
+
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdebindings-korundum/repos/kde-unstable-i686/no-nepomuk.patch (from rev 
207399, kdebindings-korundum/kde-unstable/no-nepomuk.patch)
===
--- kde-unstable-i686/no-nepomuk.patch  (rev 0)
+++ kde-unstable-i686/no-nepomuk.patch  2014-03-08 16:16:58 UTC (rev 207400)
@@ -0,0 +1,21 @@
+--- korundum-4.12.80/CMakeLists.txt~   2014-03-08 16:02:37.343367661 +
 korundum-4.12.80/CMakeLists.txt2014-03-08 16:13:01.699397634 +
+@@ -19,12 +19,16 @@
+ Phonon
+ Plasma
+

[arch-commits] Commit in kdebindings-python/kde-unstable (PKGBUILD)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 17:16:13
  Author: andrea
Revision: 207397

upgpkg: kdebindings-python 4.12.80-2

Drop nepomuk bindings

Modified:
  kdebindings-python/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 16:02:22 UTC (rev 207396)
+++ PKGBUILD2014-03-08 16:16:13 UTC (rev 207397)
@@ -6,7 +6,7 @@
  'kdebindings-python2'
  'kdebindings-python-common')
 pkgver=4.12.80
-pkgrel=1
+pkgrel=2
 url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
@@ -32,7 +32,8 @@
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DPYTHON_EXECUTABLE=/usr/bin/python3 \
 -DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
--DPYKDEUIC4_ALTINSTALL=TRUE
+-DPYKDEUIC4_ALTINSTALL=TRUE \
+-DWITH_Nepomuk=OFF
   make
   cd ..
 
@@ -43,7 +44,8 @@
 -DKDE4_BUILD_TESTS=OFF \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYKDEUIC4_ALTINSTALL=TRUE
+-DPYKDEUIC4_ALTINSTALL=TRUE \
+-DWITH_Nepomuk=OFF
   make
 }
 



[arch-commits] Commit in kdebindings-korundum/kde-unstable (PKGBUILD no-nepomuk.patch)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 17:16:46
  Author: andrea
Revision: 207399

upgpkg: kdebindings-korundum 4.12.80-2

Drop nepomuk bindings

Added:
  kdebindings-korundum/kde-unstable/no-nepomuk.patch
Modified:
  kdebindings-korundum/kde-unstable/PKGBUILD

--+
 PKGBUILD |   14 ++
 no-nepomuk.patch |   21 +
 2 files changed, 31 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 16:16:26 UTC (rev 207398)
+++ PKGBUILD2014-03-08 16:16:46 UTC (rev 207399)
@@ -3,7 +3,7 @@
 
 pkgname=kdebindings-korundum
 pkgver=4.12.80
-pkgrel=1
+pkgrel=2
 pkgdesc="Ruby bindings for libraries created by the KDE community"
 url="https://projects.kde.org/projects/kde/kdebindings/ruby/korundum";
 arch=('i686' 'x86_64')
@@ -15,11 +15,16 @@
 optdepends=('kdegraphics-okular: okular bindings'
 'kdepimlibs: akonadi bindings')
 conflicts=('kdebindings-ruby')
-source=("http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.xz";)
-sha1sums=('79a57dbfcae018491a5045ae6a25df2ab0f620b0')
+source=("http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.xz";
+'no-nepomuk.patch')
+sha1sums=('79a57dbfcae018491a5045ae6a25df2ab0f620b0'
+  'c4834bab76316f0f7c956c0527351e9d885694fd')
 
 prepare() {
   mkdir build
+
+  cd korundum-${pkgver}
+  patch -p1 -i "${srcdir}"/no-nepomuk.patch
 }
 
 build() {
@@ -29,7 +34,8 @@
 -DKDE4_BUILD_TESTS=OFF \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG["vendorlibdir"]') \
--DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG["vendorarchdir"]')
+-DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG["vendorarchdir"]') \
+-DWITH_Nepomuk=OFF
 
   make
 }

Added: no-nepomuk.patch
===
--- no-nepomuk.patch(rev 0)
+++ no-nepomuk.patch2014-03-08 16:16:46 UTC (rev 207399)
@@ -0,0 +1,21 @@
+--- korundum-4.12.80/CMakeLists.txt~   2014-03-08 16:02:37.343367661 +
 korundum-4.12.80/CMakeLists.txt2014-03-08 16:13:01.699397634 +
+@@ -19,12 +19,16 @@
+ Phonon
+ Plasma
+ QtCore
+-Solid
++Solid )
++
++find_package(Smoke COMPONENTS
++Akonadi
++Okular
++Kate
+ Soprano
+ SopranoClient
+ SopranoServer
+ Nepomuk )
+-find_package(Smoke COMPONENTS Akonadi Okular Kate)
+ include(KDE4Defaults)
+ include_directories( ${KDE4_INCLUDES} ${SMOKE_INCLUDE_DIR} 
${QTRUBY_INCLUDE_DIR} ${SMOKE_QTCORE_INCLUDE_DIR} ${SMOKE_KDECORE_INCLUDE_DIR} )
+ 



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

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 17:16:26
  Author: andrea
Revision: 207398

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 207397, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-i686/pykde4.patch
(from rev 207397, kdebindings-python/kde-unstable/pykde4.patch)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207397, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/pykde4.patch
(from rev 207397, kdebindings-python/kde-unstable/pykde4.patch)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-i686/pykde4.patch
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/pykde4.patch

--+
 /PKGBUILD|  188 
 /pykde4.patch|  538 +
 kde-unstable-i686/PKGBUILD   |   92 --
 kde-unstable-i686/pykde4.patch   |  269 --
 kde-unstable-x86_64/PKGBUILD |   92 --
 kde-unstable-x86_64/pykde4.patch |  269 --
 6 files changed, 726 insertions(+), 722 deletions(-)

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


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

2014-03-08 Thread Sven-Hendrik Haase
Date: Saturday, March 8, 2014 @ 17:02:22
  Author: svenstaro
Revision: 207396

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

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

---+
 /PKGBUILD |  312 
 extra-i686/PKGBUILD   |  148 --
 extra-x86_64/PKGBUILD |  148 --
 3 files changed, 312 insertions(+), 296 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-03-08 16:02:07 UTC (rev 207395)
+++ extra-i686/PKGBUILD 2014-03-08 16:02:22 UTC (rev 207396)
@@ -1,148 +0,0 @@
-# $Id$
-# Maintainer: Thomas Baechler 
-# Contributor: James Rayner 
-pkgbase=nvidia-utils
-pkgname=('nvidia-utils' 'nvidia-libgl' 'opencl-nvidia')
-pkgver=334.21
-pkgrel=2
-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=('6a20159c173367f58e804c38f945000ffc153d99'
-  '68c99c3f5f727a9b61a920dc9ac63f67658212e1')
-
-[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
-[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
-
-create_links() {
-# create soname links
-while read -d '' _lib; do
-_soname="$(dirname "${_lib}")/$(LC_ALL=C readelf -d "${_lib}" | sed 
-nr 's/.*Library soname: \[(.*)\].*/\1/p')"
-[[ -e "${_soname}" ]] || ln -s "$(basename "${_lib}")" "${_soname}"
-[[ -e "${_soname/.[0-9]*/}" ]] || ln -s "$(basename "${_soname}")" 
"${_soname/.[0-9]*/}"
-done < <(find "${pkgdir}" -type f -name '*.so*' -print0)
-}
-
-build() {
-cd "${srcdir}"
-sh "${_pkg}.run" --extract-only
-}
-
-package_opencl-nvidia() {
-pkgdesc="OpenCL implemention for NVIDIA"
-depends=('libcl' 'zlib')
-optdepends=('opencl-headers: headers necessary for OpenCL development')
-cd "${srcdir}/${_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 "${srcdir}/${_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"
-depends=('xorg-server')
-optdepends=('gtk2: nvidia-settings'
-'opencl-nvidia: OpenCL support')
-cd "${srcdir}/${_pkg}"
-
-# X driver
-install -D -m755 nvidia_drv.so 
"${pkgdir}/usr/lib/xorg/modules/drivers/nvidia_drv.so"
-
-# GLX extension module for X
-install -D -m755 "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/xorg/modules/extensions/libglx.so.${pkgver}"
-ln -s "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/xorg/modules/extensions/libglx.so"   #

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

2014-03-08 Thread Sven-Hendrik Haase
Date: Saturday, March 8, 2014 @ 17:02:07
  Author: svenstaro
Revision: 207395

upgpkg: nvidia-utils 334.21-3

Add missing libraries

Modified:
  nvidia-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 15:50:15 UTC (rev 207394)
+++ PKGBUILD2014-03-08 16:02:07 UTC (rev 207395)
@@ -4,7 +4,7 @@
 pkgbase=nvidia-utils
 pkgname=('nvidia-utils' 'nvidia-libgl' 'opencl-nvidia')
 pkgver=334.21
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
 license=('custom')
@@ -97,11 +97,19 @@
 # OpenGL libraries
 install -D -m755 "libGL.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/libGL.so.${pkgver}"
 install -D -m755 "libEGL.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/libEGL.so.${pkgver}"
-install -D -m755 "libGLESv1_CM.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/libGLES1_CM.so.${pkgver}"
-install -D -m755 "libGLESv2.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/libGLES2.so.${pkgver}"
+install -D -m755 "libGLESv1_CM.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/libGLESv1_CM.so.${pkgver}"
+install -D -m755 "libGLESv2.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/libGLESv2.so.${pkgver}"
 
 # OpenGL core library
 install -D -m755 "libnvidia-glcore.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-glcore.so.${pkgver}"
+install -D -m755 "libnvidia-eglcore.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-eglcore.so.${pkgver}"
+install -D -m755 "libnvidia-glsi.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-glsi.so.${pkgver}"
+
+# nvidia-ifr library
+install -D -m755 "libnvidia-ifr.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-ifr.so.${pkgver}"
+
+# nvidia-fbc library
+install -D -m755 "libnvidia-fbc.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-fbc.so.${pkgver}"
 
 # VDPAU
 install -D -m755 "libvdpau_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/vdpau/libvdpau_nvidia.so.${pkgver}"



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

2014-03-08 Thread Thomas Bächler
Date: Saturday, March 8, 2014 @ 16:46:53
  Author: thomas
Revision: 207393

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

Added:
  linux/repos/core-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 207392, 
linux/repos/testing-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux/repos/core-i686/0001-sunrpc-create-a-new-dummy-pipe-for-gssd-to-hold-open.patch
(from rev 207392, 
linux/repos/testing-i686/0001-sunrpc-create-a-new-dummy-pipe-for-gssd-to-hold-open.patch)
  
linux/repos/core-i686/0001-syscalls.h-use-gcc-alias-instead-of-assembler-aliase.patch
(from rev 207392, 
linux/repos/testing-i686/0001-syscalls.h-use-gcc-alias-instead-of-assembler-aliase.patch)
  
linux/repos/core-i686/0002-sunrpc-replace-sunrpc_net-gssd_running-flag-with-a-m.patch
(from rev 207392, 
linux/repos/testing-i686/0002-sunrpc-replace-sunrpc_net-gssd_running-flag-with-a-m.patch)
  
linux/repos/core-i686/0003-nfs-check-if-gssd-is-running-before-attempting-to-us.patch
(from rev 207392, 
linux/repos/testing-i686/0003-nfs-check-if-gssd-is-running-before-attempting-to-us.patch)
  
linux/repos/core-i686/0004-rpc_pipe-remove-the-clntXX-dir-if-creating-the-pipe-.patch
(from rev 207392, 
linux/repos/testing-i686/0004-rpc_pipe-remove-the-clntXX-dir-if-creating-the-pipe-.patch)
  
linux/repos/core-i686/0005-sunrpc-add-an-info-file-for-the-dummy-gssd-pipe.patch
(from rev 207392, 
linux/repos/testing-i686/0005-sunrpc-add-an-info-file-for-the-dummy-gssd-pipe.patch)
  
linux/repos/core-i686/0006-rpc_pipe-fix-cleanup-of-dummy-gssd-directory-when-no.patch
(from rev 207392, 
linux/repos/testing-i686/0006-rpc_pipe-fix-cleanup-of-dummy-gssd-directory-when-no.patch)
  linux/repos/core-i686/PKGBUILD
(from rev 207392, linux/repos/testing-i686/PKGBUILD)
  linux/repos/core-i686/change-default-console-loglevel.patch
(from rev 207392, 
linux/repos/testing-i686/change-default-console-loglevel.patch)
  linux/repos/core-i686/config
(from rev 207392, linux/repos/testing-i686/config)
  linux/repos/core-i686/config.x86_64
(from rev 207392, linux/repos/testing-i686/config.x86_64)
  linux/repos/core-i686/criu-no-expert.patch
(from rev 207392, linux/repos/testing-i686/criu-no-expert.patch)
  linux/repos/core-i686/i8042-fix-aliases.patch
(from rev 207392, linux/repos/testing-i686/i8042-fix-aliases.patch)
  linux/repos/core-i686/linux.install
(from rev 207392, linux/repos/testing-i686/linux.install)
  linux/repos/core-i686/linux.preset
(from rev 207392, linux/repos/testing-i686/linux.preset)
  linux/repos/core-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 207392, 
linux/repos/testing-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux/repos/core-x86_64/0001-sunrpc-create-a-new-dummy-pipe-for-gssd-to-hold-open.patch
(from rev 207392, 
linux/repos/testing-x86_64/0001-sunrpc-create-a-new-dummy-pipe-for-gssd-to-hold-open.patch)
  
linux/repos/core-x86_64/0001-syscalls.h-use-gcc-alias-instead-of-assembler-aliase.patch
(from rev 207392, 
linux/repos/testing-x86_64/0001-syscalls.h-use-gcc-alias-instead-of-assembler-aliase.patch)
  
linux/repos/core-x86_64/0002-sunrpc-replace-sunrpc_net-gssd_running-flag-with-a-m.patch
(from rev 207392, 
linux/repos/testing-x86_64/0002-sunrpc-replace-sunrpc_net-gssd_running-flag-with-a-m.patch)
  
linux/repos/core-x86_64/0003-nfs-check-if-gssd-is-running-before-attempting-to-us.patch
(from rev 207392, 
linux/repos/testing-x86_64/0003-nfs-check-if-gssd-is-running-before-attempting-to-us.patch)
  
linux/repos/core-x86_64/0004-rpc_pipe-remove-the-clntXX-dir-if-creating-the-pipe-.patch
(from rev 207392, 
linux/repos/testing-x86_64/0004-rpc_pipe-remove-the-clntXX-dir-if-creating-the-pipe-.patch)
  
linux/repos/core-x86_64/0005-sunrpc-add-an-info-file-for-the-dummy-gssd-pipe.patch
(from rev 207392, 
linux/repos/testing-x86_64/0005-sunrpc-add-an-info-file-for-the-dummy-gssd-pipe.patch)
  
linux/repos/core-x86_64/0006-rpc_pipe-fix-cleanup-of-dummy-gssd-directory-when-no.patch
(from rev 207392, 
linux/repos/testing-x86_64/0006-rpc_pipe-fix-cleanup-of-dummy-gssd-directory-when-no.patch)
  linux/repos/core-x86_64/PKGBUILD
(from rev 207392, linux/repos/testing-x86_64/PKGBUILD)
  linux/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 207392, 
linux/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux/repos/core-x86_64/config
(from rev 207392, linux/repos/testing-x86_64/config)
  linux/repos/core-x86_64/config.x86_64
(from rev 207392, linux/repos/testing-x86_64/config.x86_64)
  linux/repos/core-x86_64/criu-no-expert.patch
(from rev 207392, linux/repos/testing-x86_64/criu-no-expert.patch)
  linux/repos/core-x86_64/i8042-fix-aliases.patch
(from rev 207392, linux/repos/testing-x86_64/i8042-fix-aliases.patch)
  linux/repos/core-x86_64/linux.install
(from rev 207392, linux/repos/testing-x86_64/linux.install)
  linux/repo

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

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 16:44:39
  Author: andrea
Revision: 207392

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdebindings-smokekde/repos/kde-unstable-i686/PKGBUILD
(from rev 207391, kdebindings-smokekde/kde-unstable/PKGBUILD)
  kdebindings-smokekde/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207391, kdebindings-smokekde/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-smokekde/repos/kde-unstable-i686/PKGBUILD
  kdebindings-smokekde/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|   80 +
 kde-unstable-i686/PKGBUILD   |   36 --
 kde-unstable-x86_64/PKGBUILD |   36 --
 3 files changed, 80 insertions(+), 72 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2014-03-08 15:44:30 UTC (rev 207391)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 15:44:39 UTC (rev 207392)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=kdebindings-smokekde
-pkgver=4.12.80
-pkgrel=1
-pkgdesc="Language independent library for KDE bindings"
-url="https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde";
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
- 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate'
- 'mesa')
-optdepends=('kdesdk-kate: Kate bindings'
-'kdegraphics-okular: Okular bindings'
-'kdepimlibs: akonadi bindings')
-conflicts=('kdebindings-smoke')
-source=("http://download.kde.org/unstable/${pkgver}/src/smokekde-${pkgver}.tar.xz";)
-sha1sums=('4b6db33490a54f41186052ea73d418dde420e026')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../smokekde-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdebindings-smokekde/repos/kde-unstable-i686/PKGBUILD (from rev 207391, 
kdebindings-smokekde/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 15:44:39 UTC (rev 207392)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdebindings-smokekde
+pkgver=4.12.80
+pkgrel=2
+pkgdesc="Language independent library for KDE bindings"
+url="https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
+ 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate'
+ 'mesa')
+optdepends=('kdesdk-kate: Kate bindings'
+'kdegraphics-okular: Okular bindings'
+'kdepimlibs: akonadi bindings')
+conflicts=('kdebindings-smoke')
+source=("http://download.kde.org/unstable/${pkgver}/src/smokekde-${pkgver}.tar.xz";)
+sha1sums=('4b6db33490a54f41186052ea73d418dde420e026')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../smokekde-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_Nepomuk=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2014-03-08 15:44:30 UTC (rev 207391)
+++ kde-unstable-x86_64/PKGBUILD2014-03-08 15:44:39 UTC (rev 207392)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=kdebindings-smokekde
-pkgver=4.12.80
-pkgrel=1
-pkgdesc="Language independent library for KDE bindings"
-url="https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde";
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
- 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate'
- 'mesa')
-optdepends=('kdesdk-kate: Kate bindings'
-'kdegraphics-okular: Okular bindings'
-'kdepimlibs: akonadi bindings')
-conflicts=('kdebindings-smoke')
-source=("http://download.kde.org/unstable/${pkgver}/src/smokekde-${pkgver}.tar.xz";)
-sha1sums=('4b6db33490a54f41186052ea73d418dde420e026')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../smokekde-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdebindings-smokekde/repos/kde-unstable-x86_64/PKGBUILD (from rev 
207391, kdebindings-smokekde/

[arch-commits] Commit in kdebindings-smokekde/kde-unstable (PKGBUILD)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 16:44:30
  Author: andrea
Revision: 207391

upgpkg: kdebindings-smokekde 4.12.80-2

Drop nepomuk bindings

Modified:
  kdebindings-smokekde/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 14:47:59 UTC (rev 207390)
+++ PKGBUILD2014-03-08 15:44:30 UTC (rev 207391)
@@ -3,7 +3,7 @@
 
 pkgname=kdebindings-smokekde
 pkgver=4.12.80
-pkgrel=1
+pkgrel=2
 pkgdesc="Language independent library for KDE bindings"
 url="https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde";
 arch=('i686' 'x86_64')
@@ -20,17 +20,21 @@
 
source=("http://download.kde.org/unstable/${pkgver}/src/smokekde-${pkgver}.tar.xz";)
 sha1sums=('4b6db33490a54f41186052ea73d418dde420e026')
 
+prepare() {
+  mkdir build
+}
+
 build() {
-  mkdir build
   cd build
   cmake ../smokekde-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
 -DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_Nepomuk=OFF
   make
 }
 
 package() {
-  cd "${srcdir}"/build
+  cd build
   make DESTDIR="${pkgdir}" install
 }



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

2014-03-08 Thread Anatol Pomozov
Date: Saturday, March 8, 2014 @ 15:47:59
  Author: anatolik
Revision: 207390

Enable the rest of modules, move openssl to optional as it needed only for 
mod_ssl.

Modified:
  apache/trunk/PKGBUILD
  apache/trunk/apache.install

+
 PKGBUILD   |   42 ++
 apache.install |4 ++--
 2 files changed, 28 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 14:00:43 UTC (rev 207389)
+++ PKGBUILD2014-03-08 14:47:59 UTC (rev 207390)
@@ -10,21 +10,31 @@
 arch=('i686' 'x86_64')
 url='http://www.apache.org/dist/httpd'
 license=('APACHE')
-backup=(etc/httpd/conf/httpd.conf
-etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
-etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
-etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
-   etc/httpd/conf/extra/proxy-html.conf
-   etc/httpd/conf/{mime.types,magic}
-etc/logrotate.d/httpd)
-depends=('openssl' 'zlib' 'apr-util' 'pcre' 'systemd')
-optdepends=('lynx: apachectl status')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+depends=('zlib' 'apr-util' 'pcre')
+makedepends=('libxml2' 'lua' 'openssl')
+optdepends=(
+'lua: for mod_lua support'
+'openssl: for mod_ssl support'
+'libxml2: for mod_xml2enc support' 
+'lynx: apachectl status'
+)
 install=apache.install
-source=(http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
-apache.tmpfiles.conf
-httpd.logrotate
-httpd.service
-arch.layout)
+source=(
+http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+)
 sha256sums=('64368d8301836815ae237f2b62d909711c896c1bd34573771e0ee5ad808ce71b'
 'SKIP'
 '63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
@@ -60,7 +70,8 @@
   --enable-deflate --enable-cgi --enable-cgid \
   --enable-proxy --enable-proxy-connect \
   --enable-proxy-http --enable-proxy-ftp \
-  --enable-dbd \
+  --enable-dbd --enable-imagemap --enable-ident --enable-cern-meta \
+  --enable-lua --enable-xml2enc \
   --with-apr=/usr/bin/apr-1-config \
   --with-apr-util=/usr/bin/apu-1-config \
   --with-pcre=/usr
@@ -76,7 +87,6 @@
   install -D -m644 "${srcdir}/httpd.logrotate" 
"${pkgdir}/etc/logrotate.d/httpd"
   install -D -m644 "${srcdir}/apache.tmpfiles.conf" 
"${pkgdir}/usr/lib/tmpfiles.d/apache.conf"
   install -D -m644 "${srcdir}/httpd.service" 
"${pkgdir}/usr/lib/systemd/system/httpd.service"  
-
   install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 
   # symlinks for /etc/httpd

Modified: apache.install
===
--- apache.install  2014-03-08 14:00:43 UTC (rev 207389)
+++ apache.install  2014-03-08 14:47:59 UTC (rev 207390)
@@ -1,9 +1,9 @@
 post_install() {
-  systemd-tmpfiles --create apache.conf
+  type -P systemd-tmpfiles >/dev/null && systemd-tmpfiles --create apache.conf
 }
 
 post_upgrade() {
-  systemd-tmpfiles --create apache.conf
+  type -P systemd-tmpfiles >/dev/null && systemd-tmpfiles --create apache.conf
 
   if [[ $2 == 2\.2\.* ]]; then
 # it is a major upgrade, show a useful link to upgrade instructions



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

2014-03-08 Thread Felix Yan
Date: Saturday, March 8, 2014 @ 15:00:43
  Author: fyan
Revision: 207389

archrelease: copy trunk to extra-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-08 13:59:56 UTC (rev 207388)
+++ PKGBUILD2014-03-08 14:00:43 UTC (rev 207389)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=3.0.2
-pkgrel=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="http://pypi.python.org/pypi/setuptools";
-makedepends=('python' 'python2')
-source=("http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz";)
-md5sums=('5fa068a279113e2a94cd56d31a05880f')
-
-check() {
-   # Check python3 module
-   cd "${srcdir}"/setuptools-${pkgver}
-   python3 setup.py test
-
-   # Check python2 module
-   cd "${srcdir}"/setuptools-${pkgver}-python2
-   python2 setup.py test
-}
- 
-prepare() {
-   cd "${srcdir}"
- 
-   pushd setuptools-${pkgver}
-   popd
- 
-   cp -a setuptools-${pkgver}{,-python2}
- 
-   cd "${srcdir}"/setuptools-${pkgver}
-   sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python3|" 
setuptools/tests/test_resources.py
-   sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-
-   cd ../setuptools-${pkgver}-python2
-   sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python2|" 
setuptools/tests/test_resources.py
-   sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
-}
-
-build() {
-   # Build python 3 module
-   cd "${srcdir}"/setuptools-${pkgver}
-   python3 setup.py build
- 
-   # Build python 2 module
-   cd ../setuptools-${pkgver}-python2
-   python2 setup.py build
-}
- 
-package_python-setuptools() {
-   depends=('python>=3.3')
-   provides=('python-distribute')
-   replaces=('python-distribute')
- 
-   cd "${srcdir}/setuptools-${pkgver}"
-   python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
-}
- 
-package_python2-setuptools() {
-   depends=('python2>=2.7')
-   provides=('python2-distribute' 'setuptools')
-   replaces=('python2-distribute' 'setuptools')
- 
-   cd "${srcdir}/setuptools-${pkgver}-python2"
-   python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
-   rm "${pkgdir}/usr/bin/easy_install"
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 207388, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-08 14:00:43 UTC (rev 207389)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=3.1
+pkgrel=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/setuptools";
+makedepends=('python' 'python2')
+source=("http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz";)
+md5sums=('425c2fa9329fc000e8c5ff947df001c3')
+
+check() {
+   # Check python3 module
+   cd "${srcdir}"/setuptools-${pkgver}
+   python3 setup.py test
+
+   # Check python2 module
+   cd "${srcdir}"/setuptools-${pkgver}-python2
+   python2 setup.py test
+}
+ 
+prepare() {
+   cd "${srcdir}"
+ 
+   pushd setuptools-${pkgver}
+   popd
+ 
+   cp -a setuptools-${pkgver}{,-python2}
+ 
+   cd "${srcdir}"/setuptools-${pkgver}
+   sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python3|" 
setuptools/tests/test_resources.py
+   sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
+
+   cd ../setuptools-${pkgver}-python2
+   sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python2|" 
setuptools/tests/test_resources.py
+   sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
+}
+
+build() {
+   # Build python 3 module
+   cd "${srcdir}"/setuptools-${pkgver}
+   python3 setup.py build
+ 
+   # Build python 2 module
+   cd ../setuptools-${pkgver}-python2
+   python2 setup.py build
+}
+ 
+package_python-setuptools() {
+   depends=('python>=3.3')
+   provides=('python-distribute')
+   replaces=('python-distribute')
+ 
+   cd "${srcdir}/setuptools-${pkgver}"
+   python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+}
+ 
+package_python2-setuptools() {
+   depends=('python2>=2.7')
+   provides=('python2-distribute' 'setuptools')
+   replaces=('

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

2014-03-08 Thread Felix Yan
Date: Saturday, March 8, 2014 @ 14:59:56
  Author: fyan
Revision: 207388

upgpkg: python-setuptools 3.1-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 13:48:43 UTC (rev 207387)
+++ PKGBUILD2014-03-08 13:59:56 UTC (rev 207388)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=3.0.2
+pkgver=3.1
 pkgrel=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
 arch=('any')
@@ -12,7 +12,7 @@
 url="http://pypi.python.org/pypi/setuptools";
 makedepends=('python' 'python2')
 
source=("http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz";)
-md5sums=('5fa068a279113e2a94cd56d31a05880f')
+md5sums=('425c2fa9329fc000e8c5ff947df001c3')
 
 check() {
# Check python3 module



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

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 14:48:43
  Author: andrea
Revision: 207387

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdelibs/repos/kde-unstable-i686/PKGBUILD
(from rev 207386, kdelibs/kde-unstable/PKGBUILD)
  kdelibs/repos/kde-unstable-i686/archlinux-menu.patch
(from rev 207386, kdelibs/kde-unstable/archlinux-menu.patch)
  kdelibs/repos/kde-unstable-i686/kde-applications-menu.patch
(from rev 207386, kdelibs/kde-unstable/kde-applications-menu.patch)
  kdelibs/repos/kde-unstable-i686/kdelibs.install
(from rev 207386, kdelibs/kde-unstable/kdelibs.install)
  kdelibs/repos/kde-unstable-i686/qt4.patch
(from rev 207386, kdelibs/kde-unstable/qt4.patch)
  kdelibs/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207386, kdelibs/kde-unstable/PKGBUILD)
  kdelibs/repos/kde-unstable-x86_64/archlinux-menu.patch
(from rev 207386, kdelibs/kde-unstable/archlinux-menu.patch)
  kdelibs/repos/kde-unstable-x86_64/kde-applications-menu.patch
(from rev 207386, kdelibs/kde-unstable/kde-applications-menu.patch)
  kdelibs/repos/kde-unstable-x86_64/kdelibs.install
(from rev 207386, kdelibs/kde-unstable/kdelibs.install)
  kdelibs/repos/kde-unstable-x86_64/qt4.patch
(from rev 207386, kdelibs/kde-unstable/qt4.patch)
Deleted:
  kdelibs/repos/kde-unstable-i686/PKGBUILD
  kdelibs/repos/kde-unstable-i686/archlinux-menu.patch
  kdelibs/repos/kde-unstable-i686/kde-applications-menu.patch
  kdelibs/repos/kde-unstable-i686/kdelibs.install
  kdelibs/repos/kde-unstable-i686/qt4.patch
  kdelibs/repos/kde-unstable-x86_64/PKGBUILD
  kdelibs/repos/kde-unstable-x86_64/archlinux-menu.patch
  kdelibs/repos/kde-unstable-x86_64/kde-applications-menu.patch
  kdelibs/repos/kde-unstable-x86_64/kdelibs.install
  kdelibs/repos/kde-unstable-x86_64/qt4.patch

-+
 /PKGBUILD   |  122 ++
 /archlinux-menu.patch   |   44 +++
 /kde-applications-menu.patch|   44 +++
 /kdelibs.install|   26 
 /qt4.patch  |   22 +++
 kde-unstable-i686/PKGBUILD  |   61 ---
 kde-unstable-i686/archlinux-menu.patch  |   22 ---
 kde-unstable-i686/kde-applications-menu.patch   |   22 ---
 kde-unstable-i686/kdelibs.install   |   13 --
 kde-unstable-i686/qt4.patch |   11 -
 kde-unstable-x86_64/PKGBUILD|   61 ---
 kde-unstable-x86_64/archlinux-menu.patch|   22 ---
 kde-unstable-x86_64/kde-applications-menu.patch |   22 ---
 kde-unstable-x86_64/kdelibs.install |   13 --
 kde-unstable-x86_64/qt4.patch   |   11 -
 15 files changed, 258 insertions(+), 258 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2014-03-08 13:48:28 UTC (rev 207386)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 13:48:43 UTC (rev 207387)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=kdelibs
-pkgver=4.12.80
-pkgrel=1
-pkgdesc="KDE Core Libraries"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdelibs'
-license=('GPL' 'LGPL' 'FDL')
-depends=('strigi' 'attica' 'libxss' 'soprano' 'krb5' 'grantlee'
-'shared-desktop-ontologies' 'qca' 'libdbusmenu-qt' 'polkit-qt'
-'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr'
-'docbook-xsl' 'upower' 'udisks2' 'libxcursor' 'phonon-qt4'
-'media-player-info' 'libxtst' 'libutempter' 'qtwebkit')
-makedepends=('cmake' 'automoc4' 'avahi' 'libgl' 'hspell' 'mesa')
-install=${pkgname}.install
-source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";
-'kde-applications-menu.patch' 'archlinux-menu.patch' 'qt4.patch')
-sha1sums=('ed2d61562cfaa5f2f9b2487fc8911d318acce943'
-  '86ee8c8660f19de8141ac99cd6943964d97a1ed7'
-  '63a850ab4196b9d06934f2b4a13acd9f7739bc67'
-  'ed1f57ee661e5c7440efcaba7e51d2554709701c')
-
-prepare() {
-   cd ${pkgname}-${pkgver}
-   # avoid file conflict with gnome-menus
-   patch -p1 -i "${srcdir}"/kde-applications-menu.patch
-   # add Archlinux menu entry
-   patch -p1 -i "${srcdir}"/archlinux-menu.patch
-   # qmake refers to Qt5
-   patch -p1 -i "${srcdir}"/qt4.patch
-}
-
-build() {
-   mkdir build
-   cd build
-   cmake ../${pkgname}-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DKDE4_BUILD_TESTS=OFF \
-   -DCMAKE_SKIP_RPATH=ON \
-   -DKDE_DISTRIBUTION_TEXT='Arch Linux' \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DSYSCONF_INSTALL_DIR=/etc \
-   -DHTML_INSTALL_DIR=/usr/share/doc/kde/html \
-   -DKDE_DEFAULT_HOME='.kde4' \
-   -DWITH_FAM=OFF \
-   -DWITH_SOLID

[arch-commits] Commit in kdelibs/kde-unstable (PKGBUILD)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 14:48:28
  Author: andrea
Revision: 207386

upgpkg: kdelibs 4.12.80-2

Drop soprano from deps

Modified:
  kdelibs/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 13:34:55 UTC (rev 207385)
+++ PKGBUILD2014-03-08 13:48:28 UTC (rev 207386)
@@ -4,12 +4,12 @@
 
 pkgname=kdelibs
 pkgver=4.12.80
-pkgrel=1
+pkgrel=2
 pkgdesc="KDE Core Libraries"
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kdelibs'
 license=('GPL' 'LGPL' 'FDL')
-depends=('strigi' 'attica' 'libxss' 'soprano' 'krb5' 'grantlee'
+depends=('strigi' 'attica' 'libxss' 'krb5' 'grantlee'
 'shared-desktop-ontologies' 'qca' 'libdbusmenu-qt' 'polkit-qt'
 'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr'
 'docbook-xsl' 'upower' 'udisks2' 'libxcursor' 'phonon-qt4'



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

2014-03-08 Thread Laurent Carlier
Date: Saturday, March 8, 2014 @ 14:34:40
  Author: lcarlier
Revision: 207384

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

Added:
  mesa/repos/testing-i686/LICENSE
(from rev 207383, mesa/trunk/LICENSE)
  mesa/repos/testing-i686/PKGBUILD
(from rev 207383, mesa/trunk/PKGBUILD)
  mesa/repos/testing-x86_64/LICENSE
(from rev 207383, mesa/trunk/LICENSE)
  mesa/repos/testing-x86_64/PKGBUILD
(from rev 207383, mesa/trunk/PKGBUILD)
Deleted:
  mesa/repos/testing-i686/LICENSE
  mesa/repos/testing-i686/PKGBUILD
  mesa/repos/testing-x86_64/LICENSE
  mesa/repos/testing-x86_64/PKGBUILD

-+
 /LICENSE|  164 +++
 /PKGBUILD   |  322 ++
 testing-i686/LICENSE|   82 ---
 testing-i686/PKGBUILD   |  149 -
 testing-x86_64/LICENSE  |   82 ---
 testing-x86_64/PKGBUILD |  149 -
 6 files changed, 486 insertions(+), 462 deletions(-)

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


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

2014-03-08 Thread Laurent Carlier
Date: Saturday, March 8, 2014 @ 14:34:29
  Author: lcarlier
Revision: 207383

upgpkg: mesa 10.1.0-2

Rename gles/egl with mesa prefixes, add symlinks in mesa-libgl (FS#39219)

Modified:
  mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 12:43:47 UTC (rev 207382)
+++ PKGBUILD2014-03-08 13:34:29 UTC (rev 207383)
@@ -5,7 +5,7 @@
 pkgbase=mesa
 pkgname=('ati-dri' 'intel-dri' 'nouveau-dri' 'svga-dri' 'mesa' 'mesa-libgl')
 pkgver=10.1.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 makedepends=('python2' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 
'dri3proto' 'presentproto' 
  'libxshmfence' 'libxxf86vm'  'libxdamage' 'libvdpau' 'wayland' 
'elfutils' 'llvm' 'systemd')
@@ -121,11 +121,14 @@
   replaces=('libglapi' 'osmesa' 'libgbm' 'libgles' 'libegl' 
'khrplatform-devel')
 
   mv -v ${srcdir}/fakeinstall/* ${pkgdir}
-  # rename libgl.so to not conflict with blobs - may break gl.pc ?
-  mv ${pkgdir}/usr/lib/libGL.so.1.2.0  ${pkgdir}/usr/lib/mesa-libGL.so.1.2.0
-  ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib/mesa-libGL.so.1
-  rm ${pkgdir}/usr/lib/libGL.so{,.1}
+  # rename libgl/EGL/glesv*.so to not conflict with blobs - may break .pc 
files ?
+  mv ${pkgdir}/usr/lib/libGL.so.1.2.0  
${pkgdir}/usr/lib/mesa-libGL.so.1.2.0
+  mv ${pkgdir}/usr/lib/libEGL.so.1.0.0 
${pkgdir}/usr/lib/mesa-libEGL.so.1.0.0
+  mv ${pkgdir}/usr/lib/libGLESv1_CM.so.1.1.0   
${pkgdir}/usr/lib/mesa-libGLESv1_CM.so.1.1.0
+  mv ${pkgdir}/usr/lib/libGLESv2.so.2.0.0  
${pkgdir}/usr/lib/mesa-libGLESv2.so.2.0.0
 
+  rm ${pkgdir}/usr/lib/lib{GL,EGL,GLESv1_CM,GLESv2}.so*
+
   install -m755 -d "${pkgdir}/usr/share/licenses/mesa"
   install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/mesa/"
 }
@@ -140,9 +143,18 @@
   install -m755 -d "${pkgdir}/usr/lib/xorg/modules/extensions"
   ln -s libglx.xorg "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so"
 
-  ln -s mesa-libGL.so.1.2.0  ${pkgdir}/usr/lib/libGL.so
-  ln -s mesa-libGL.so.1.2.0  ${pkgdir}/usr/lib/libGL.so.1
-  ln -s mesa-libGL.so.1.2.0  ${pkgdir}/usr/lib/libGL.so.1.2.0
+  ln -s mesa-libGL.so.1.2.0${pkgdir}/usr/lib/libGL.so
+  ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib/libGL.so.1
+  ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib/libGL.so.1.2.0
+  ln -s mesa-libEGL.so.1.0.0${pkgdir}/usr/lib/libEGL.so
+  ln -s mesa-libEGL.so.1.0.0${pkgdir}/usr/lib/libEGL.so.1
+  ln -s mesa-libEGL.so.1.0.0${pkgdir}/usr/lib/libEGL.so.1.0.0
+  ln -s mesa-libGLESv1_CM.so.1.1.0  ${pkgdir}/usr/lib/libGLESv1_CM.so
+  ln -s mesa-libGLESv1_CM.so.1.1.0  ${pkgdir}/usr/lib/libGLESv1_CM.so.1
+  ln -s mesa-libGLESv1_CM.so.1.1.0  ${pkgdir}/usr/lib/libGLESv1_CM.so.1.1.0
+  ln -s mesa-libGLESv2.so.2.0.0 ${pkgdir}/usr/lib/libGLESv2.so
+  ln -s mesa-libGLESv2.so.2.0.0 ${pkgdir}/usr/lib/libGLESv2.so.2
+  ln -s mesa-libGLESv2.so.2.0.0 ${pkgdir}/usr/lib/libGLESv2.so.2.0.0
 
   install -m755 -d "${pkgdir}/usr/share/licenses/mesa-libgl"
   install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/mesa-libgl/"



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

2014-03-08 Thread Laurent Carlier
Date: Saturday, March 8, 2014 @ 14:34:55
  Author: lcarlier
Revision: 207385

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

Added:
  mesa/repos/testing-i686/LICENSE
(from rev 207384, mesa/trunk/LICENSE)
  mesa/repos/testing-i686/PKGBUILD
(from rev 207384, mesa/trunk/PKGBUILD)
  mesa/repos/testing-x86_64/LICENSE
(from rev 207384, mesa/trunk/LICENSE)
  mesa/repos/testing-x86_64/PKGBUILD
(from rev 207384, mesa/trunk/PKGBUILD)
Deleted:
  mesa/repos/testing-i686/LICENSE
  mesa/repos/testing-i686/PKGBUILD
  mesa/repos/testing-x86_64/LICENSE
  mesa/repos/testing-x86_64/PKGBUILD

-+
 /LICENSE|  164 +++
 /PKGBUILD   |  322 ++
 testing-i686/LICENSE|   82 ---
 testing-i686/PKGBUILD   |  161 ---
 testing-x86_64/LICENSE  |   82 ---
 testing-x86_64/PKGBUILD |  161 ---
 6 files changed, 486 insertions(+), 486 deletions(-)

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


[arch-commits] Commit in telepathy-kde-common-internals/repos (6 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 13:43:47
  Author: andrea
Revision: 207382

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  telepathy-kde-common-internals/repos/kde-unstable-i686/
  telepathy-kde-common-internals/repos/kde-unstable-i686/PKGBUILD
(from rev 207381, telepathy-kde-common-internals/kde-unstable/PKGBUILD)
  
telepathy-kde-common-internals/repos/kde-unstable-i686/telepathy-kde-common-internals.install
(from rev 207381, 
telepathy-kde-common-internals/kde-unstable/telepathy-kde-common-internals.install)
  telepathy-kde-common-internals/repos/kde-unstable-x86_64/
  telepathy-kde-common-internals/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207381, telepathy-kde-common-internals/kde-unstable/PKGBUILD)
  
telepathy-kde-common-internals/repos/kde-unstable-x86_64/telepathy-kde-common-internals.install
(from rev 207381, 
telepathy-kde-common-internals/kde-unstable/telepathy-kde-common-internals.install)

+
 kde-unstable-i686/PKGBUILD |   33 +++
 kde-unstable-i686/telepathy-kde-common-internals.install   |   11 +++
 kde-unstable-x86_64/PKGBUILD   |   33 +++
 kde-unstable-x86_64/telepathy-kde-common-internals.install |   11 +++
 4 files changed, 88 insertions(+)

Copied: telepathy-kde-common-internals/repos/kde-unstable-i686/PKGBUILD (from 
rev 207381, telepathy-kde-common-internals/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 12:43:47 UTC (rev 207382)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-common-internals
+_pkgname=ktp-common-internals
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Common components for KDE-Telepathy"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('libkpeople' 'telepathy-logger-qt' 'telepathy-mission-control')
+makedepends=('cmake' 'automoc4' 'boost' 'doxygen')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('e914922ee983e0ef47f3263fbb8c03378fd7652b')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
telepathy-kde-common-internals/repos/kde-unstable-i686/telepathy-kde-common-internals.install
 (from rev 207381, 
telepathy-kde-common-internals/kde-unstable/telepathy-kde-common-internals.install)
===
--- kde-unstable-i686/telepathy-kde-common-internals.install
(rev 0)
+++ kde-unstable-i686/telepathy-kde-common-internals.install2014-03-08 
12:43:47 UTC (rev 207382)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_update() {
+post_install
+}
+
+post_remove() {
+post_install
+}
\ No newline at end of file

Copied: telepathy-kde-common-internals/repos/kde-unstable-x86_64/PKGBUILD (from 
rev 207381, telepathy-kde-common-internals/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-03-08 12:43:47 UTC (rev 207382)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-common-internals
+_pkgname=ktp-common-internals
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Common components for KDE-Telepathy"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('libkpeople' 'telepathy-logger-qt' 'telepathy-mission-control')
+makedepends=('cmake' 'automoc4' 'boost' 'doxygen')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('e914922ee983e0ef47f3263fbb8c03378fd7652b')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
telepathy-kde-common-internals/repos/kde-unstable-x86_64/telepathy-kde-common-internals.install
 (from rev 207381, 
telepathy-kde-common-internals/kde-unstable/telepathy-kde-common-internals.install)
===
--- kde-unstable-x86_64/telepathy-kde-common-internals.install  
(rev 0)
+++ kde-unstable-x86_64/telepathy-kde-common-internals.install  2014-03-08 
12:43:47 UTC (rev 207382)
@@ -0,0 +1,11 @@
+

[arch-commits] Commit in telepathy-kde-common-internals (3 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 13:43:39
  Author: andrea
Revision: 207381

upgpkg: telepathy-kde-common-internals 0.7.80-1

beta release

Added:
  telepathy-kde-common-internals/kde-unstable/
  telepathy-kde-common-internals/kde-unstable/PKGBUILD
(from rev 204080, telepathy-kde-common-internals/trunk/PKGBUILD)
Deleted:
  telepathy-kde-common-internals/kde-unstable/PKGBUILD

---+
 PKGBUILD  |   33 -
 kde-unstable/PKGBUILD |   33 +
 2 files changed, 33 insertions(+), 33 deletions(-)

Deleted: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2014-01-15 04:18:35 UTC (rev 204059)
+++ kde-unstable/PKGBUILD   2014-03-08 12:43:39 UTC (rev 207381)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=telepathy-kde-common-internals
-_pkgname=ktp-common-internals
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="Common components for KDE-Telepathy"
-arch=('i686' 'x86_64')
-url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
-license=('GPL')
-depends=('libkpeople' 'telepathy-logger-qt' 'telepathy-mission-control')
-makedepends=('cmake' 'automoc4' 'boost' 'doxygen')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/${_pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('9610eb4b606166200aacbb8d311b63c30724403e')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: telepathy-kde-common-internals/kde-unstable/PKGBUILD (from rev 204080, 
telepathy-kde-common-internals/trunk/PKGBUILD)
===
--- kde-unstable/PKGBUILD   (rev 0)
+++ kde-unstable/PKGBUILD   2014-03-08 12:43:39 UTC (rev 207381)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-common-internals
+_pkgname=ktp-common-internals
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Common components for KDE-Telepathy"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('libkpeople' 'telepathy-logger-qt' 'telepathy-mission-control')
+makedepends=('cmake' 'automoc4' 'boost' 'doxygen')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('e914922ee983e0ef47f3263fbb8c03378fd7652b')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-text-ui/repos (4 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:41:01
  Author: andrea
Revision: 207380

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  telepathy-kde-text-ui/repos/kde-unstable-i686/
  telepathy-kde-text-ui/repos/kde-unstable-i686/PKGBUILD
(from rev 207379, telepathy-kde-text-ui/kde-unstable/PKGBUILD)
  telepathy-kde-text-ui/repos/kde-unstable-x86_64/
  telepathy-kde-text-ui/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207379, telepathy-kde-text-ui/kde-unstable/PKGBUILD)

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

Copied: telepathy-kde-text-ui/repos/kde-unstable-i686/PKGBUILD (from rev 
207379, telepathy-kde-text-ui/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 11:41:01 UTC (rev 207380)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-text-ui
+_pkgname=ktp-text-ui
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Telepathy handler for Text Chats"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-contact-list' 'qjson')
+makedepends=('cmake' 'automoc4' 'boost')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('7c0173191989de9d62d393fa191cb11a37ad105c')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: telepathy-kde-text-ui/repos/kde-unstable-x86_64/PKGBUILD (from rev 
207379, telepathy-kde-text-ui/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-03-08 11:41:01 UTC (rev 207380)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-text-ui
+_pkgname=ktp-text-ui
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Telepathy handler for Text Chats"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-contact-list' 'qjson')
+makedepends=('cmake' 'automoc4' 'boost')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('7c0173191989de9d62d393fa191cb11a37ad105c')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-send-file/repos (6 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:40:45
  Author: andrea
Revision: 207378

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  telepathy-kde-send-file/repos/kde-unstable-i686/
  telepathy-kde-send-file/repos/kde-unstable-i686/PKGBUILD
(from rev 207377, telepathy-kde-send-file/kde-unstable/PKGBUILD)
  
telepathy-kde-send-file/repos/kde-unstable-i686/telepathy-kde-send-file.install
(from rev 207377, 
telepathy-kde-send-file/kde-unstable/telepathy-kde-send-file.install)
  telepathy-kde-send-file/repos/kde-unstable-x86_64/
  telepathy-kde-send-file/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207377, telepathy-kde-send-file/kde-unstable/PKGBUILD)
  
telepathy-kde-send-file/repos/kde-unstable-x86_64/telepathy-kde-send-file.install
(from rev 207377, 
telepathy-kde-send-file/kde-unstable/telepathy-kde-send-file.install)

-+
 kde-unstable-i686/PKGBUILD  |   34 ++
 kde-unstable-i686/telepathy-kde-send-file.install   |   11 +
 kde-unstable-x86_64/PKGBUILD|   34 ++
 kde-unstable-x86_64/telepathy-kde-send-file.install |   11 +
 4 files changed, 90 insertions(+)

Copied: telepathy-kde-send-file/repos/kde-unstable-i686/PKGBUILD (from rev 
207377, telepathy-kde-send-file/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 11:40:45 UTC (rev 207378)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-send-file
+_pkgname=ktp-send-file
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="A File manager plugin to launch a file transfer job with a specified 
contact"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-filetransfer-handler' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('f1d6bb0d0fbaf01a4dc7cdad989722e734fae7e3')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
telepathy-kde-send-file/repos/kde-unstable-i686/telepathy-kde-send-file.install 
(from rev 207377, 
telepathy-kde-send-file/kde-unstable/telepathy-kde-send-file.install)
===
--- kde-unstable-i686/telepathy-kde-send-file.install   
(rev 0)
+++ kde-unstable-i686/telepathy-kde-send-file.install   2014-03-08 11:40:45 UTC 
(rev 207378)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_update() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: telepathy-kde-send-file/repos/kde-unstable-x86_64/PKGBUILD (from rev 
207377, telepathy-kde-send-file/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-03-08 11:40:45 UTC (rev 207378)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-send-file
+_pkgname=ktp-send-file
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="A File manager plugin to launch a file transfer job with a specified 
contact"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-filetransfer-handler' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('f1d6bb0d0fbaf01a4dc7cdad989722e734fae7e3')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
telepathy-kde-send-file/repos/kde-unstable-x86_64/telepathy-kde-send-file.install
 (from rev 207377, 
telepathy-kde-send-file/kde-unstable/telepathy-kde-send-file.install)
===
--- kde-unstable-x86_64/telepathy-kde-send-file.install 
(rev 0)
+++ kde-unstable-x86_64/telepathy-kde-send-file.install 2014-03-08 11:40:45 UTC 
(rev 207378)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_update() {
+post_install
+}
+
+post_remove() {
+post_install
+}



[arch-commits] Commit in telepathy-kde-filetransfer-handler/repos (4 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:40:24
  Author: andrea
Revision: 207374

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  telepathy-kde-filetransfer-handler/repos/kde-unstable-i686/
  telepathy-kde-filetransfer-handler/repos/kde-unstable-i686/PKGBUILD
(from rev 207373, telepathy-kde-filetransfer-handler/kde-unstable/PKGBUILD)
  telepathy-kde-filetransfer-handler/repos/kde-unstable-x86_64/
  telepathy-kde-filetransfer-handler/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207373, telepathy-kde-filetransfer-handler/kde-unstable/PKGBUILD)

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

Copied: telepathy-kde-filetransfer-handler/repos/kde-unstable-i686/PKGBUILD 
(from rev 207373, telepathy-kde-filetransfer-handler/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 11:40:24 UTC (rev 207374)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-filetransfer-handler
+_pkgname=ktp-filetransfer-handler
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Telepathy file transfer handler"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('8408b7bc25a7d6e318e615e554dacbb040aeebca')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: telepathy-kde-filetransfer-handler/repos/kde-unstable-x86_64/PKGBUILD 
(from rev 207373, telepathy-kde-filetransfer-handler/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-03-08 11:40:24 UTC (rev 207374)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-filetransfer-handler
+_pkgname=ktp-filetransfer-handler
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Telepathy file transfer handler"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('8408b7bc25a7d6e318e615e554dacbb040aeebca')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-integration-module (3 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:40:28
  Author: andrea
Revision: 207375

upgpkg: telepathy-kde-integration-module 0.7.80-1

beta release

Added:
  telepathy-kde-integration-module/kde-unstable/
  telepathy-kde-integration-module/kde-unstable/PKGBUILD
(from rev 204074, telepathy-kde-integration-module/trunk/PKGBUILD)
Deleted:
  telepathy-kde-integration-module/kde-unstable/PKGBUILD

---+
 PKGBUILD  |   33 -
 kde-unstable/PKGBUILD |   33 +
 2 files changed, 33 insertions(+), 33 deletions(-)

Deleted: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2014-01-15 04:18:35 UTC (rev 204059)
+++ kde-unstable/PKGBUILD   2014-03-08 11:40:28 UTC (rev 207375)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=telepathy-kde-integration-module
-_pkgname=ktp-kded-integration-module
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="Sits in KDED and takes care of various bits of system integration 
like setting user to auto-away or handling connection errors"
-arch=('i686' 'x86_64')
-url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
-license=('GPL')
-depends=('telepathy-kde-common-internals')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/${_pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('0ce145e4a9354e40d19806febf5d8ad8097b13de')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: telepathy-kde-integration-module/kde-unstable/PKGBUILD (from rev 
204074, telepathy-kde-integration-module/trunk/PKGBUILD)
===
--- kde-unstable/PKGBUILD   (rev 0)
+++ kde-unstable/PKGBUILD   2014-03-08 11:40:28 UTC (rev 207375)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-integration-module
+_pkgname=ktp-kded-integration-module
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Sits in KDED and takes care of various bits of system integration 
like setting user to auto-away or handling connection errors"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('9a94235f1f806e19c9d627a9b19fa843a0cabc91')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-send-file (3 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:40:39
  Author: andrea
Revision: 207377

upgpkg: telepathy-kde-send-file 0.7.80-1

beta release

Added:
  telepathy-kde-send-file/kde-unstable/
  telepathy-kde-send-file/kde-unstable/PKGBUILD
(from rev 204076, telepathy-kde-send-file/trunk/PKGBUILD)
Deleted:
  telepathy-kde-send-file/kde-unstable/PKGBUILD

---+
 PKGBUILD  |   34 --
 kde-unstable/PKGBUILD |   34 ++
 2 files changed, 34 insertions(+), 34 deletions(-)

Deleted: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2014-01-15 04:18:35 UTC (rev 204059)
+++ kde-unstable/PKGBUILD   2014-03-08 11:40:39 UTC (rev 207377)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=telepathy-kde-send-file
-_pkgname=ktp-send-file
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="A File manager plugin to launch a file transfer job with a specified 
contact"
-arch=('i686' 'x86_64')
-url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
-license=('GPL')
-depends=('telepathy-kde-filetransfer-handler' 'telepathy-kde-contact-list')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/${_pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('16c5fa9437b4952c045957c2344eafec665b7bcb')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: telepathy-kde-send-file/kde-unstable/PKGBUILD (from rev 204076, 
telepathy-kde-send-file/trunk/PKGBUILD)
===
--- kde-unstable/PKGBUILD   (rev 0)
+++ kde-unstable/PKGBUILD   2014-03-08 11:40:39 UTC (rev 207377)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-send-file
+_pkgname=ktp-send-file
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="A File manager plugin to launch a file transfer job with a specified 
contact"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-filetransfer-handler' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('f1d6bb0d0fbaf01a4dc7cdad989722e734fae7e3')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-integration-module/repos (4 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:40:36
  Author: andrea
Revision: 207376

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  telepathy-kde-integration-module/repos/kde-unstable-i686/
  telepathy-kde-integration-module/repos/kde-unstable-i686/PKGBUILD
(from rev 207375, telepathy-kde-integration-module/kde-unstable/PKGBUILD)
  telepathy-kde-integration-module/repos/kde-unstable-x86_64/
  telepathy-kde-integration-module/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207375, telepathy-kde-integration-module/kde-unstable/PKGBUILD)

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

Copied: telepathy-kde-integration-module/repos/kde-unstable-i686/PKGBUILD (from 
rev 207375, telepathy-kde-integration-module/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 11:40:36 UTC (rev 207376)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-integration-module
+_pkgname=ktp-kded-integration-module
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Sits in KDED and takes care of various bits of system integration 
like setting user to auto-away or handling connection errors"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('9a94235f1f806e19c9d627a9b19fa843a0cabc91')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: telepathy-kde-integration-module/repos/kde-unstable-x86_64/PKGBUILD 
(from rev 207375, telepathy-kde-integration-module/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-03-08 11:40:36 UTC (rev 207376)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-integration-module
+_pkgname=ktp-kded-integration-module
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Sits in KDED and takes care of various bits of system integration 
like setting user to auto-away or handling connection errors"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('9a94235f1f806e19c9d627a9b19fa843a0cabc91')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-text-ui (3 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:40:48
  Author: andrea
Revision: 207379

upgpkg: telepathy-kde-text-ui 0.7.80-1

beta release

Added:
  telepathy-kde-text-ui/kde-unstable/
  telepathy-kde-text-ui/kde-unstable/PKGBUILD
(from rev 206067, telepathy-kde-text-ui/trunk/PKGBUILD)
Deleted:
  telepathy-kde-text-ui/kde-unstable/PKGBUILD

---+
 PKGBUILD  |   34 --
 kde-unstable/PKGBUILD |   34 ++
 2 files changed, 34 insertions(+), 34 deletions(-)

Deleted: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2014-02-16 17:07:26 UTC (rev 206066)
+++ kde-unstable/PKGBUILD   2014-03-08 11:40:48 UTC (rev 207379)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-
-pkgname=telepathy-kde-text-ui
-_pkgname=ktp-text-ui
-pkgver=0.7.1
-pkgrel=1
-pkgdesc="Telepathy handler for Text Chats"
-arch=('i686' 'x86_64')
-url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
-license=('GPL')
-depends=('telepathy-kde-contact-list' 'telepathy-logger-qt')
-makedepends=('cmake' 'automoc4' 'boost')
-groups=('kde-telepathy')
-source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('716372b35184c6997361ca67d9cea887125b745e')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: telepathy-kde-text-ui/kde-unstable/PKGBUILD (from rev 206067, 
telepathy-kde-text-ui/trunk/PKGBUILD)
===
--- kde-unstable/PKGBUILD   (rev 0)
+++ kde-unstable/PKGBUILD   2014-03-08 11:40:48 UTC (rev 207379)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-text-ui
+_pkgname=ktp-text-ui
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Telepathy handler for Text Chats"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-contact-list' 'qjson')
+makedepends=('cmake' 'automoc4' 'boost')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('7c0173191989de9d62d393fa191cb11a37ad105c')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-filetransfer-handler (3 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:40:16
  Author: andrea
Revision: 207373

upgpkg: telepathy-kde-filetransfer-handler 0.7.80-1

beta release

Added:
  telepathy-kde-filetransfer-handler/kde-unstable/
  telepathy-kde-filetransfer-handler/kde-unstable/PKGBUILD
(from rev 204072, telepathy-kde-filetransfer-handler/trunk/PKGBUILD)
Deleted:
  telepathy-kde-filetransfer-handler/kde-unstable/PKGBUILD

---+
 PKGBUILD  |   33 -
 kde-unstable/PKGBUILD |   33 +
 2 files changed, 33 insertions(+), 33 deletions(-)

Deleted: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2014-01-15 04:18:35 UTC (rev 204059)
+++ kde-unstable/PKGBUILD   2014-03-08 11:40:16 UTC (rev 207373)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=telepathy-kde-filetransfer-handler
-_pkgname=ktp-filetransfer-handler
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="Telepathy file transfer handler"
-arch=('i686' 'x86_64')
-url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
-license=('GPL')
-depends=('telepathy-kde-common-internals')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/${_pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('5586256d77b2675aa3c1bb036fb3832a7993e415')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: telepathy-kde-filetransfer-handler/kde-unstable/PKGBUILD (from rev 
204072, telepathy-kde-filetransfer-handler/trunk/PKGBUILD)
===
--- kde-unstable/PKGBUILD   (rev 0)
+++ kde-unstable/PKGBUILD   2014-03-08 11:40:16 UTC (rev 207373)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-filetransfer-handler
+_pkgname=ktp-filetransfer-handler
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Telepathy file transfer handler"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('8408b7bc25a7d6e318e615e554dacbb040aeebca')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-contact-runner (3 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:39:49
  Author: andrea
Revision: 207369

upgpkg: telepathy-kde-contact-runner 0.7.80-1

beta release

Added:
  telepathy-kde-contact-runner/kde-unstable/
  telepathy-kde-contact-runner/kde-unstable/PKGBUILD
(from rev 204068, telepathy-kde-contact-runner/trunk/PKGBUILD)
Deleted:
  telepathy-kde-contact-runner/kde-unstable/PKGBUILD

---+
 PKGBUILD  |   33 -
 kde-unstable/PKGBUILD |   33 +
 2 files changed, 33 insertions(+), 33 deletions(-)

Deleted: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2014-01-15 04:18:35 UTC (rev 204059)
+++ kde-unstable/PKGBUILD   2014-03-08 11:39:49 UTC (rev 207369)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=telepathy-kde-contact-runner
-_pkgname=ktp-contact-runner
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="KRunner plugin for KDE Telepathy"
-arch=('i686' 'x86_64')
-url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
-license=('GPL')
-depends=('telepathy-kde-common-internals')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/${_pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('cbba565c8fbb56857824ff8c18a14bf8094fc4e9')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: telepathy-kde-contact-runner/kde-unstable/PKGBUILD (from rev 204068, 
telepathy-kde-contact-runner/trunk/PKGBUILD)
===
--- kde-unstable/PKGBUILD   (rev 0)
+++ kde-unstable/PKGBUILD   2014-03-08 11:39:49 UTC (rev 207369)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-contact-runner
+_pkgname=ktp-contact-runner
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="KRunner plugin for KDE Telepathy"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('19106f74918bc25e7c7a4eca29614ecd2c417b86')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-desktop-applets/repos (4 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:40:12
  Author: andrea
Revision: 207372

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  telepathy-kde-desktop-applets/repos/kde-unstable-i686/
  telepathy-kde-desktop-applets/repos/kde-unstable-i686/PKGBUILD
(from rev 207371, telepathy-kde-desktop-applets/kde-unstable/PKGBUILD)
  telepathy-kde-desktop-applets/repos/kde-unstable-x86_64/
  telepathy-kde-desktop-applets/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207371, telepathy-kde-desktop-applets/kde-unstable/PKGBUILD)

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

Copied: telepathy-kde-desktop-applets/repos/kde-unstable-i686/PKGBUILD (from 
rev 207371, telepathy-kde-desktop-applets/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 11:40:12 UTC (rev 207372)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-desktop-applets
+_pkgname=ktp-desktop-applets
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="The KDE-Telepathy Plasma desktop applets"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'kdebase-workspace')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+conflicts=('telepathy-kde-contact-applet' 'telepathy-kde-presence-applet')
+replaces=('telepathy-kde-contact-applet' 'telepathy-kde-presence-applet')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('f58e0fa03049d5a6da53c5666cf635565ff368f4')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: telepathy-kde-desktop-applets/repos/kde-unstable-x86_64/PKGBUILD (from 
rev 207371, telepathy-kde-desktop-applets/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-03-08 11:40:12 UTC (rev 207372)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-desktop-applets
+_pkgname=ktp-desktop-applets
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="The KDE-Telepathy Plasma desktop applets"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'kdebase-workspace')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+conflicts=('telepathy-kde-contact-applet' 'telepathy-kde-presence-applet')
+replaces=('telepathy-kde-contact-applet' 'telepathy-kde-presence-applet')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('f58e0fa03049d5a6da53c5666cf635565ff368f4')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-desktop-applets (3 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:39:59
  Author: andrea
Revision: 207371

upgpkg: telepathy-kde-desktop-applets 0.7.80-1

beta release

Added:
  telepathy-kde-desktop-applets/kde-unstable/
  telepathy-kde-desktop-applets/kde-unstable/PKGBUILD
(from rev 204070, telepathy-kde-desktop-applets/trunk/PKGBUILD)
Deleted:
  telepathy-kde-desktop-applets/kde-unstable/PKGBUILD

---+
 PKGBUILD  |   35 ---
 kde-unstable/PKGBUILD |   35 +++
 2 files changed, 35 insertions(+), 35 deletions(-)

Deleted: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2014-01-15 04:18:35 UTC (rev 204059)
+++ kde-unstable/PKGBUILD   2014-03-08 11:39:59 UTC (rev 207371)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=telepathy-kde-desktop-applets
-_pkgname=ktp-desktop-applets
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="The KDE-Telepathy Plasma desktop applets"
-arch=('i686' 'x86_64')
-url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'kdebase-workspace')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-conflicts=('telepathy-kde-contact-applet' 'telepathy-kde-presence-applet')
-replaces=('telepathy-kde-contact-applet' 'telepathy-kde-presence-applet')
-source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/${_pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('0e968a850bd579ce0557773daf5b4fb33e9ff711')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: telepathy-kde-desktop-applets/kde-unstable/PKGBUILD (from rev 204070, 
telepathy-kde-desktop-applets/trunk/PKGBUILD)
===
--- kde-unstable/PKGBUILD   (rev 0)
+++ kde-unstable/PKGBUILD   2014-03-08 11:39:59 UTC (rev 207371)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-desktop-applets
+_pkgname=ktp-desktop-applets
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="The KDE-Telepathy Plasma desktop applets"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'kdebase-workspace')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+conflicts=('telepathy-kde-contact-applet' 'telepathy-kde-presence-applet')
+replaces=('telepathy-kde-contact-applet' 'telepathy-kde-presence-applet')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('f58e0fa03049d5a6da53c5666cf635565ff368f4')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-contact-runner/repos (4 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:39:56
  Author: andrea
Revision: 207370

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  telepathy-kde-contact-runner/repos/kde-unstable-i686/
  telepathy-kde-contact-runner/repos/kde-unstable-i686/PKGBUILD
(from rev 207369, telepathy-kde-contact-runner/kde-unstable/PKGBUILD)
  telepathy-kde-contact-runner/repos/kde-unstable-x86_64/
  telepathy-kde-contact-runner/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207369, telepathy-kde-contact-runner/kde-unstable/PKGBUILD)

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

Copied: telepathy-kde-contact-runner/repos/kde-unstable-i686/PKGBUILD (from rev 
207369, telepathy-kde-contact-runner/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 11:39:56 UTC (rev 207370)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-contact-runner
+_pkgname=ktp-contact-runner
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="KRunner plugin for KDE Telepathy"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('19106f74918bc25e7c7a4eca29614ecd2c417b86')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: telepathy-kde-contact-runner/repos/kde-unstable-x86_64/PKGBUILD (from 
rev 207369, telepathy-kde-contact-runner/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-03-08 11:39:56 UTC (rev 207370)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-contact-runner
+_pkgname=ktp-contact-runner
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="KRunner plugin for KDE Telepathy"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('19106f74918bc25e7c7a4eca29614ecd2c417b86')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-contact-list (3 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:39:39
  Author: andrea
Revision: 207367

upgpkg: telepathy-kde-contact-list 0.7.80-1

beta release

Added:
  telepathy-kde-contact-list/kde-unstable/
  telepathy-kde-contact-list/kde-unstable/PKGBUILD
(from rev 204066, telepathy-kde-contact-list/trunk/PKGBUILD)
Deleted:
  telepathy-kde-contact-list/kde-unstable/PKGBUILD

---+
 PKGBUILD  |   35 ---
 kde-unstable/PKGBUILD |   35 +++
 2 files changed, 35 insertions(+), 35 deletions(-)

Deleted: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2014-01-15 04:18:35 UTC (rev 204059)
+++ kde-unstable/PKGBUILD   2014-03-08 11:39:39 UTC (rev 207367)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-
-pkgname=telepathy-kde-contact-list
-_pkgname=ktp-contact-list
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="Telepathy contact list application"
-arch=('i686' 'x86_64')
-url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'kdebase-runtime')
-makedepends=('cmake' 'automoc4' 'boost')
-groups=('kde-telepathy')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/${_pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('493a7c0f5d3e46c1c2011130670f907a295fc4a4')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: telepathy-kde-contact-list/kde-unstable/PKGBUILD (from rev 204066, 
telepathy-kde-contact-list/trunk/PKGBUILD)
===
--- kde-unstable/PKGBUILD   (rev 0)
+++ kde-unstable/PKGBUILD   2014-03-08 11:39:39 UTC (rev 207367)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-contact-list
+_pkgname=ktp-contact-list
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Telepathy contact list application"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'boost')
+groups=('kde-telepathy')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('1d67a43d29418421986f1a79513715d66b88fe88')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-approver/repos (4 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:39:22
  Author: andrea
Revision: 207364

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  telepathy-kde-approver/repos/kde-unstable-i686/
  telepathy-kde-approver/repos/kde-unstable-i686/PKGBUILD
(from rev 207363, telepathy-kde-approver/kde-unstable/PKGBUILD)
  telepathy-kde-approver/repos/kde-unstable-x86_64/
  telepathy-kde-approver/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207363, telepathy-kde-approver/kde-unstable/PKGBUILD)

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

Copied: telepathy-kde-approver/repos/kde-unstable-i686/PKGBUILD (from rev 
207363, telepathy-kde-approver/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 11:39:22 UTC (rev 207364)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-approver
+_pkgname=ktp-approver
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="KDE Channel Approver for Telepathy"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('9f63863a55c1a36921234d6f3658dad4ed4a6555')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: telepathy-kde-approver/repos/kde-unstable-x86_64/PKGBUILD (from rev 
207363, telepathy-kde-approver/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-03-08 11:39:22 UTC (rev 207364)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-approver
+_pkgname=ktp-approver
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="KDE Channel Approver for Telepathy"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('9f63863a55c1a36921234d6f3658dad4ed4a6555')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-auth-handler (3 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:39:26
  Author: andrea
Revision: 207365

upgpkg: telepathy-kde-auth-handler 0.7.80-1

beta release

Added:
  telepathy-kde-auth-handler/kde-unstable/
  telepathy-kde-auth-handler/kde-unstable/PKGBUILD
(from rev 204064, telepathy-kde-auth-handler/trunk/PKGBUILD)
Deleted:
  telepathy-kde-auth-handler/kde-unstable/PKGBUILD

---+
 PKGBUILD  |   33 -
 kde-unstable/PKGBUILD |   33 +
 2 files changed, 33 insertions(+), 33 deletions(-)

Deleted: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2014-01-15 04:18:35 UTC (rev 204059)
+++ kde-unstable/PKGBUILD   2014-03-08 11:39:26 UTC (rev 207365)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=telepathy-kde-auth-handler
-_pkgname=ktp-auth-handler
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="Provide UI/KWallet Integration For Passwords and SSL Errors on 
Account Connect"
-arch=('i686' 'x86_64')
-url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'qjson' 'qca-ossl' 'libaccounts-qt' 
'signon')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/${_pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('0abeef4bc6905f0b975505f9a215bfbafa4b02a3')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: telepathy-kde-auth-handler/kde-unstable/PKGBUILD (from rev 204064, 
telepathy-kde-auth-handler/trunk/PKGBUILD)
===
--- kde-unstable/PKGBUILD   (rev 0)
+++ kde-unstable/PKGBUILD   2014-03-08 11:39:26 UTC (rev 207365)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-auth-handler
+_pkgname=ktp-auth-handler
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Provide UI/KWallet Integration For Passwords and SSL Errors on 
Account Connect"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'qjson' 'qca-ossl' 'libaccounts-qt' 
'signon')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('fa59e86cf30d97716fd25a2fb06fb1885ede4e6a')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-contact-list/repos (6 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:39:46
  Author: andrea
Revision: 207368

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  telepathy-kde-contact-list/repos/kde-unstable-i686/
  telepathy-kde-contact-list/repos/kde-unstable-i686/PKGBUILD
(from rev 207367, telepathy-kde-contact-list/kde-unstable/PKGBUILD)
  
telepathy-kde-contact-list/repos/kde-unstable-i686/telepathy-kde-contact-list.install
(from rev 207367, 
telepathy-kde-contact-list/kde-unstable/telepathy-kde-contact-list.install)
  telepathy-kde-contact-list/repos/kde-unstable-x86_64/
  telepathy-kde-contact-list/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207367, telepathy-kde-contact-list/kde-unstable/PKGBUILD)
  
telepathy-kde-contact-list/repos/kde-unstable-x86_64/telepathy-kde-contact-list.install
(from rev 207367, 
telepathy-kde-contact-list/kde-unstable/telepathy-kde-contact-list.install)

+
 kde-unstable-i686/PKGBUILD |   35 +++
 kde-unstable-i686/telepathy-kde-contact-list.install   |   11 
 kde-unstable-x86_64/PKGBUILD   |   35 +++
 kde-unstable-x86_64/telepathy-kde-contact-list.install |   11 
 4 files changed, 92 insertions(+)

Copied: telepathy-kde-contact-list/repos/kde-unstable-i686/PKGBUILD (from rev 
207367, telepathy-kde-contact-list/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 11:39:46 UTC (rev 207368)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-contact-list
+_pkgname=ktp-contact-list
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Telepathy contact list application"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'boost')
+groups=('kde-telepathy')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('1d67a43d29418421986f1a79513715d66b88fe88')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
telepathy-kde-contact-list/repos/kde-unstable-i686/telepathy-kde-contact-list.install
 (from rev 207367, 
telepathy-kde-contact-list/kde-unstable/telepathy-kde-contact-list.install)
===
--- kde-unstable-i686/telepathy-kde-contact-list.install
(rev 0)
+++ kde-unstable-i686/telepathy-kde-contact-list.install2014-03-08 
11:39:46 UTC (rev 207368)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: telepathy-kde-contact-list/repos/kde-unstable-x86_64/PKGBUILD (from rev 
207367, telepathy-kde-contact-list/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-03-08 11:39:46 UTC (rev 207368)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-contact-list
+_pkgname=ktp-contact-list
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Telepathy contact list application"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'boost')
+groups=('kde-telepathy')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('1d67a43d29418421986f1a79513715d66b88fe88')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
telepathy-kde-contact-list/repos/kde-unstable-x86_64/telepathy-kde-contact-list.install
 (from rev 207367, 
telepathy-kde-contact-list/kde-unstable/telepathy-kde-contact-list.install)
===
--- kde-unstable-x86_64/telepathy-kde-contact-list.install  
(rev 0)
+++ kde-unstable-x86_64/telepathy-kde-contact-list.install  2014-03-08 
11:39:46 UTC (rev 207368)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+

[arch-commits] Commit in telepathy-kde-auth-handler/repos (4 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:39:35
  Author: andrea
Revision: 207366

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  telepathy-kde-auth-handler/repos/kde-unstable-i686/
  telepathy-kde-auth-handler/repos/kde-unstable-i686/PKGBUILD
(from rev 207365, telepathy-kde-auth-handler/kde-unstable/PKGBUILD)
  telepathy-kde-auth-handler/repos/kde-unstable-x86_64/
  telepathy-kde-auth-handler/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207365, telepathy-kde-auth-handler/kde-unstable/PKGBUILD)

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

Copied: telepathy-kde-auth-handler/repos/kde-unstable-i686/PKGBUILD (from rev 
207365, telepathy-kde-auth-handler/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 11:39:35 UTC (rev 207366)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-auth-handler
+_pkgname=ktp-auth-handler
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Provide UI/KWallet Integration For Passwords and SSL Errors on 
Account Connect"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'qjson' 'qca-ossl' 'libaccounts-qt' 
'signon')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('fa59e86cf30d97716fd25a2fb06fb1885ede4e6a')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: telepathy-kde-auth-handler/repos/kde-unstable-x86_64/PKGBUILD (from rev 
207365, telepathy-kde-auth-handler/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-03-08 11:39:35 UTC (rev 207366)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=telepathy-kde-auth-handler
+_pkgname=ktp-auth-handler
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="Provide UI/KWallet Integration For Passwords and SSL Errors on 
Account Connect"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'qjson' 'qca-ossl' 'libaccounts-qt' 
'signon')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('fa59e86cf30d97716fd25a2fb06fb1885ede4e6a')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-accounts-kcm/repos (4 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:39:08
  Author: andrea
Revision: 207363

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  telepathy-kde-accounts-kcm/repos/kde-unstable-i686/PKGBUILD
(from rev 207362, telepathy-kde-accounts-kcm/kde-unstable/PKGBUILD)
  telepathy-kde-accounts-kcm/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207362, telepathy-kde-accounts-kcm/kde-unstable/PKGBUILD)
Deleted:
  telepathy-kde-accounts-kcm/repos/kde-unstable-i686/PKGBUILD
  telepathy-kde-accounts-kcm/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|   76 +
 kde-unstable-i686/PKGBUILD   |   38 
 kde-unstable-x86_64/PKGBUILD |   38 
 3 files changed, 76 insertions(+), 76 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2014-03-08 11:37:14 UTC (rev 207362)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 11:39:08 UTC (rev 207363)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-
-pkgname=telepathy-kde-accounts-kcm
-_pkgname=ktp-accounts-kcm
-pkgver=0.7.80
-pkgrel=1
-pkgdesc="KCM Module for configuring Telepathy Instant Messaging Accounts"
-arch=('i686' 'x86_64')
-url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
-makedepends=('cmake' 'automoc4' 'boost')
-optdepends=('telepathy-gabble: XMPP/Jabber/GTalk support'
-'telepathy-haze: all protocols supported by libpurple')
-groups=('kde-telepathy')
-conflicts=('telepathy-kde-accounts-kcm-plugins')
-replaces=('telepathy-kde-accounts-kcm-plugins')
-source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('0b9e605d0286b3549395213e98585db19efdae87')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: telepathy-kde-accounts-kcm/repos/kde-unstable-i686/PKGBUILD (from rev 
207362, telepathy-kde-accounts-kcm/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 11:39:08 UTC (rev 207363)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-accounts-kcm
+_pkgname=ktp-accounts-kcm
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="KCM Module for configuring Telepathy Instant Messaging Accounts"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4' 'boost')
+optdepends=('telepathy-gabble: XMPP/Jabber/GTalk support'
+'telepathy-haze: all protocols supported by libpurple')
+groups=('kde-telepathy')
+conflicts=('telepathy-kde-accounts-kcm-plugins')
+replaces=('telepathy-kde-accounts-kcm-plugins')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('0b9e605d0286b3549395213e98585db19efdae87')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2014-03-08 11:37:14 UTC (rev 207362)
+++ kde-unstable-x86_64/PKGBUILD2014-03-08 11:39:08 UTC (rev 207363)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-
-pkgname=telepathy-kde-accounts-kcm
-_pkgname=ktp-accounts-kcm
-pkgver=0.7.80
-pkgrel=1
-pkgdesc="KCM Module for configuring Telepathy Instant Messaging Accounts"
-arch=('i686' 'x86_64')
-url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
-makedepends=('cmake' 'automoc4' 'boost')
-optdepends=('telepathy-gabble: XMPP/Jabber/GTalk support'
-'telepathy-haze: all protocols supported by libpurple')
-groups=('kde-telepathy')
-conflicts=('telepathy-kde-accounts-kcm-plugins')
-replaces=('telepathy-kde-accounts-kcm-plugins')
-source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('0b9e605d0286b3549395213e98585db19efdae87')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUIL

[arch-commits] Commit in telepathy-kde-approver (3 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:37:14
  Author: andrea
Revision: 207362

upgpkg: telepathy-kde-approver 0.7.80-1

beta release

Added:
  telepathy-kde-approver/kde-unstable/
  telepathy-kde-approver/kde-unstable/PKGBUILD
(from rev 204062, telepathy-kde-approver/trunk/PKGBUILD)
Deleted:
  telepathy-kde-approver/kde-unstable/PKGBUILD

---+
 PKGBUILD  |   34 --
 kde-unstable/PKGBUILD |   34 ++
 2 files changed, 34 insertions(+), 34 deletions(-)

Deleted: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2014-01-15 04:18:35 UTC (rev 204059)
+++ kde-unstable/PKGBUILD   2014-03-08 11:37:14 UTC (rev 207362)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-
-pkgname=telepathy-kde-approver
-_pkgname=ktp-approver
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="KDE Channel Approver for Telepathy"
-arch=('i686' 'x86_64')
-url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
-makedepends=('cmake' 'automoc4')
-groups=('kde-telepathy')
-source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/${_pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('f250514208481a328732d73e1d3807e72f375d27')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: telepathy-kde-approver/kde-unstable/PKGBUILD (from rev 204062, 
telepathy-kde-approver/trunk/PKGBUILD)
===
--- kde-unstable/PKGBUILD   (rev 0)
+++ kde-unstable/PKGBUILD   2014-03-08 11:37:14 UTC (rev 207362)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-approver
+_pkgname=ktp-approver
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="KDE Channel Approver for Telepathy"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('9f63863a55c1a36921234d6f3658dad4ed4a6555')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-accounts-kcm/repos (4 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:37:10
  Author: andrea
Revision: 207361

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  telepathy-kde-accounts-kcm/repos/kde-unstable-i686/
  telepathy-kde-accounts-kcm/repos/kde-unstable-i686/PKGBUILD
(from rev 207360, telepathy-kde-accounts-kcm/kde-unstable/PKGBUILD)
  telepathy-kde-accounts-kcm/repos/kde-unstable-x86_64/
  telepathy-kde-accounts-kcm/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207360, telepathy-kde-accounts-kcm/kde-unstable/PKGBUILD)

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

Copied: telepathy-kde-accounts-kcm/repos/kde-unstable-i686/PKGBUILD (from rev 
207360, telepathy-kde-accounts-kcm/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 11:37:10 UTC (rev 207361)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-accounts-kcm
+_pkgname=ktp-accounts-kcm
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="KCM Module for configuring Telepathy Instant Messaging Accounts"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4' 'boost')
+optdepends=('telepathy-gabble: XMPP/Jabber/GTalk support'
+'telepathy-haze: all protocols supported by libpurple')
+groups=('kde-telepathy')
+conflicts=('telepathy-kde-accounts-kcm-plugins')
+replaces=('telepathy-kde-accounts-kcm-plugins')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('0b9e605d0286b3549395213e98585db19efdae87')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: telepathy-kde-accounts-kcm/repos/kde-unstable-x86_64/PKGBUILD (from rev 
207360, telepathy-kde-accounts-kcm/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-03-08 11:37:10 UTC (rev 207361)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-accounts-kcm
+_pkgname=ktp-accounts-kcm
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="KCM Module for configuring Telepathy Instant Messaging Accounts"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4' 'boost')
+optdepends=('telepathy-gabble: XMPP/Jabber/GTalk support'
+'telepathy-haze: all protocols supported by libpurple')
+groups=('kde-telepathy')
+conflicts=('telepathy-kde-accounts-kcm-plugins')
+replaces=('telepathy-kde-accounts-kcm-plugins')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('0b9e605d0286b3549395213e98585db19efdae87')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in telepathy-kde-accounts-kcm (3 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 12:36:53
  Author: andrea
Revision: 207360

upgpkg: telepathy-kde-accounts-kcm 0.7.80-1

beta release

Added:
  telepathy-kde-accounts-kcm/kde-unstable/
  telepathy-kde-accounts-kcm/kde-unstable/PKGBUILD
(from rev 204060, telepathy-kde-accounts-kcm/trunk/PKGBUILD)
Deleted:
  telepathy-kde-accounts-kcm/kde-unstable/PKGBUILD

---+
 PKGBUILD  |   38 --
 kde-unstable/PKGBUILD |   38 ++
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2014-01-15 04:18:35 UTC (rev 204059)
+++ kde-unstable/PKGBUILD   2014-03-08 11:36:53 UTC (rev 207360)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-
-pkgname=telepathy-kde-accounts-kcm
-_pkgname=ktp-accounts-kcm
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="KCM Module for configuring Telepathy Instant Messaging Accounts"
-arch=('i686' 'x86_64')
-url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
-license=('GPL')
-depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
-makedepends=('cmake' 'automoc4' 'boost')
-optdepends=('telepathy-gabble: XMPP/Jabber/GTalk support'
-'telepathy-haze: all protocols supported by libpurple')
-groups=('kde-telepathy')
-conflicts=('telepathy-kde-accounts-kcm-plugins')
-replaces=('telepathy-kde-accounts-kcm-plugins')
-source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/${_pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('8791acef43bb125259d218f2385ddf50a1ec857c')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: telepathy-kde-accounts-kcm/kde-unstable/PKGBUILD (from rev 204060, 
telepathy-kde-accounts-kcm/trunk/PKGBUILD)
===
--- kde-unstable/PKGBUILD   (rev 0)
+++ kde-unstable/PKGBUILD   2014-03-08 11:36:53 UTC (rev 207360)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-accounts-kcm
+_pkgname=ktp-accounts-kcm
+pkgver=0.7.80
+pkgrel=1
+pkgdesc="KCM Module for configuring Telepathy Instant Messaging Accounts"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration";
+license=('GPL')
+depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list')
+makedepends=('cmake' 'automoc4' 'boost')
+optdepends=('telepathy-gabble: XMPP/Jabber/GTalk support'
+'telepathy-haze: all protocols supported by libpurple')
+groups=('kde-telepathy')
+conflicts=('telepathy-kde-accounts-kcm-plugins')
+replaces=('telepathy-kde-accounts-kcm-plugins')
+source=("http://download.kde.org/stable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('0b9e605d0286b3549395213e98585db19efdae87')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



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

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 11:45:58
  Author: andrea
Revision: 207359

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  libkpeople/repos/kde-unstable-i686/
  libkpeople/repos/kde-unstable-i686/PKGBUILD
(from rev 207358, libkpeople/kde-unstable/PKGBUILD)
  libkpeople/repos/kde-unstable-x86_64/
  libkpeople/repos/kde-unstable-x86_64/PKGBUILD
(from rev 207358, libkpeople/kde-unstable/PKGBUILD)

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

Copied: libkpeople/repos/kde-unstable-i686/PKGBUILD (from rev 207358, 
libkpeople/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-03-08 10:45:58 UTC (rev 207359)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=libkpeople
+pkgver=0.2.1
+pkgrel=1
+pkgdesc="A contact aggregation library for KDE"
+arch=('i686' 'x86_64')
+url='http://community.kde.org/KTp/libkpeople'
+license=('LGPL')
+depends=('kdepimlibs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=("http://download.kde.org/unstable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('41d054aca63b667683e3d8eea789347c39a4894e')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}/" install
+}

Copied: libkpeople/repos/kde-unstable-x86_64/PKGBUILD (from rev 207358, 
libkpeople/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-03-08 10:45:58 UTC (rev 207359)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=libkpeople
+pkgver=0.2.1
+pkgrel=1
+pkgdesc="A contact aggregation library for KDE"
+arch=('i686' 'x86_64')
+url='http://community.kde.org/KTp/libkpeople'
+license=('LGPL')
+depends=('kdepimlibs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=("http://download.kde.org/unstable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('41d054aca63b667683e3d8eea789347c39a4894e')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}/" install
+}



[arch-commits] Commit in wine/repos/multilib-x86_64 (6 files)

2014-03-08 Thread Florian Pritz
Date: Saturday, March 8, 2014 @ 11:45:47
  Author: bluewind
Revision: 106811

archrelease: copy trunk to multilib-x86_64

Added:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 106810, wine/trunk/30-win32-aliases.conf)
  wine/repos/multilib-x86_64/PKGBUILD
(from rev 106810, wine/trunk/PKGBUILD)
  wine/repos/multilib-x86_64/wine.install
(from rev 106810, wine/trunk/wine.install)
Deleted:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
  wine/repos/multilib-x86_64/PKGBUILD
  wine/repos/multilib-x86_64/wine.install

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  354 
 wine.install  |   24 +--
 3 files changed, 209 insertions(+), 209 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2014-03-08 10:44:27 UTC (rev 106810)
+++ 30-win32-aliases.conf   2014-03-08 10:45:47 UTC (rev 106811)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine/repos/multilib-x86_64/30-win32-aliases.conf (from rev 106810, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2014-03-08 10:45:47 UTC (rev 106811)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-08 10:44:27 UTC (rev 106810)
+++ PKGBUILD2014-03-08 10:45:47 UTC (rev 106811)
@@ -1,177 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine
-pkgver=1.7.13
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$_pkgbasever.tar.bz2{,.sign}
-30-win32-aliases.conf)
-md5sums=('f238be82934d48fee55b46789a26d9aa'
- 'SKIP'
- '1ff4e467f59409272088d92173a0f801')
-
-pkgdesc="A compatibility layer for running Windows programs"
-url="http://www.winehq.com";
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-install=wine.install
-
-_depends=(
-  fontconfig  lib32-fontconfig
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex prelink
-  'gcc>=4.5.0-2'  'gcc-multilib>=4.5.0-2'
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  gnutls  lib32-gnutls
-  libxinerama lib32-libxinerama
-  libxcomposite   lib32-libxcomposite
-  libxmu  lib32-libxmu
-  libxxf86vm  lib32-libxxf86vm
-  libxml2 lib32-libxml2
-  libldap lib32-libldap
-  lcms2   lib32-lcms2
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  alsa-liblib32-alsa-lib
-  libxcomposite   lib32-libxcomposite
-  mesalib32-mesa
-  mesa-libgl  lib32-mesa-libgl
-  libcl   lib32-libcl
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  libldap lib32-libldap
-  gnutls  lib32-gnutls
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  libpulselib32-libpulse
-  alsa-pluginslib32-alsa-plugins
-  alsa-liblib32-alsa-lib
-  libjpeg-turbo   lib32-libjpeg-turbo
-  libxcomposite   lib32-libxcomposite
-  libxinerama lib32-libxinerama
-  ncurses lib32-ncurses
-  libcl   lib32-libcl
-  cups
-  samba   dosbox
-)
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  optdepends=(${optdepends[@]/*32-*/})
-else
-  makedepends=(${makedepends[@]} ${_depends[@]})
-  provides=("bin32-wine=$pkgver" "wine-wow64=$pkgver")
-  conflicts=('bin32-wine' 'wine-wow64')
-  replaces=('bin32-wine')
-fi
-
-build() {
-  cd "$srcdir"
-
-  # Allow ccache to work
-  mv $pkgname-$_pkgbasever $pkgname
-
-  # ncurses fix
-  sed -i 's|libncurses|libncursesw|g' "$srcdir/$pkgname/configure"
-  sed -i 's|lncurses|lncurse

[arch-commits] Commit in libkpeople (3 files)

2014-03-08 Thread Andrea Scarpino
Date: Saturday, March 8, 2014 @ 11:45:44
  Author: andrea
Revision: 207358

upgpkg: libkpeople 0.2.1-1

Upstream release

Added:
  libkpeople/kde-unstable/
  libkpeople/kde-unstable/PKGBUILD
(from rev 207355, libkpeople/trunk/PKGBUILD)
Deleted:
  libkpeople/kde-unstable/PKGBUILD

---+
 PKGBUILD  |   32 
 kde-unstable/PKGBUILD |   32 
 2 files changed, 32 insertions(+), 32 deletions(-)

Deleted: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2014-02-25 11:30:45 UTC (rev 206397)
+++ kde-unstable/PKGBUILD   2014-03-08 10:45:44 UTC (rev 207358)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=libkpeople
-pkgver=0.1.0
-pkgrel=2
-pkgdesc="A contact aggregation library for KDE"
-arch=('i686' 'x86_64')
-url='http://community.kde.org/KTp/libkpeople'
-license=('LGPL')
-depends=('nepomuk-core')
-makedepends=('cmake' 'automoc4')
-source=("http://download.kde.org/unstable/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('6ab54b3ba203ff06d17f101060ed277696dfbaad')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}/" install
-}

Copied: libkpeople/kde-unstable/PKGBUILD (from rev 207355, 
libkpeople/trunk/PKGBUILD)
===
--- kde-unstable/PKGBUILD   (rev 0)
+++ kde-unstable/PKGBUILD   2014-03-08 10:45:44 UTC (rev 207358)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=libkpeople
+pkgver=0.2.1
+pkgrel=1
+pkgdesc="A contact aggregation library for KDE"
+arch=('i686' 'x86_64')
+url='http://community.kde.org/KTp/libkpeople'
+license=('LGPL')
+depends=('kdepimlibs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=("http://download.kde.org/unstable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('41d054aca63b667683e3d8eea789347c39a4894e')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}/" install
+}



  1   2   3   >