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

2013-05-07 Thread Daniel Micay
Date: Wednesday, May 8, 2013 @ 08:00:57
  Author: thestinger
Revision: 90176

rust: use $pkgname for license directory name

Modified:
  rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-05-08 03:27:00 UTC (rev 90175)
+++ PKGBUILD2013-05-08 06:00:57 UTC (rev 90176)
@@ -34,7 +34,7 @@
   cd rust-$pkgver
   make DESTDIR="$pkgdir" install
 
-  mkdir -p "$pkgdir/usr/share/vim" "$pkgdir/usr/share/licenses/rust"
+  mkdir -p "$pkgdir/usr/share/vim" "$pkgdir/usr/share/licenses/$pkgname"
 
   cp -a src/etc/vim "$pkgdir/usr/share/vim/vimfiles"
   find "$pkgdir/usr/share/vim" -type f -exec chmod 644 {} +
@@ -46,8 +46,8 @@
   install -Dm644 
src/etc/gedit/share/gtksourceview-3.0/language-specs/rust.lang \
 "$pkgdir/usr/share/gtksourceview-3.0/language-specs/rust.lang"
 
-  install -m644 LICENSE-APACHE "$pkgdir/usr/share/licenses/rust"
-  install -m644 LICENSE-MIT "$pkgdir/usr/share/licenses/rust"
+  install -m644 LICENSE-APACHE "$pkgdir/usr/share/licenses/$pkgname"
+  install -m644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname"
 
   cd src/etc/emacs
   make



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

2013-05-07 Thread Sven-Hendrik Haase
Date: Wednesday, May 8, 2013 @ 05:27:00
  Author: svenstaro
Revision: 90175

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

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

--+
 /PKGBUILD|  158 +
 /blender.install |   26 ++
 community-i686/PKGBUILD  |   79 --
 community-i686/blender.install   |   13 ---
 community-x86_64/PKGBUILD|   79 --
 community-x86_64/blender.install |   13 ---
 6 files changed, 184 insertions(+), 184 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-05-08 03:26:46 UTC (rev 90174)
+++ community-i686/PKGBUILD 2013-05-08 03:27:00 UTC (rev 90175)
@@ -1,79 +0,0 @@
-# $Id$
-# Contributor: John Sowiak 
-# Contributor: tobias 
-# Maintainer: Sven-Hendrik Haase 
-
-# Sometimes blender.org takes some time to release patch releases and because 
Arch users
-# are impatient, we sometimes need to build from svn directly.
-
-_svnrev=56125
-
-pkgname=blender
-pkgver=2.66a
-[[ -n $_svnrev ]] && pkgver=2.66a.$_svnrev
-pkgrel=2
-epoch=7
-pkgdesc="A fully integrated 3D graphics creation suite"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.blender.org";
-depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils'
- 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew'
- 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada'
- 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage')
-makedepends=('cmake' 'boost' 'cuda' 'subversion' 'mesa')
-optdepends=('cuda: cycles renderer cuda support')
-options=(!strip)
-install=blender.install
-if [[ -n $_svnrev ]]; then
-  
source=("${pkgname}-${pkgver}::svn+https://svn.blender.org/svnroot/bf-blender/trunk/blender#revision=${_svnrev}";)
-  md5sums=(SKIP)
-else
-  source=(http://download.blender.org/source/$pkgname-$pkgver.tar.gz)
-  md5sums=('dde8211818e35b00a1c01a11efef4533')
-fi
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  mkdir build
-  cd build
-
-  [[ $CARCH == i686 ]] && ENABLESSE2="-DSUPPORT_SSE2_BUILD=OFF"
-  [[ $CARCH == i686 ]] && BUILDCUDA="OFF" || BUILDCUDA="ON"
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DWITH_INSTALL_PORTABLE=OFF \
--DWITH_PYTHON_INSTALL=OFF \
--DWITH_OPENCOLLADA=ON \
--DOPENIMAGEIO_ROOT_DIR=/usr \
--DWITH_GAMEENGINE=ON \
--DWITH_JACK=ON \
--DWITH_PLAYER=ON \
--DWITH_CODEC_FFMPEG=ON \
--DWITH_CODEC_SNDFILE=ON \
--DWITH_CYCLES=ON \
--DWITH_CYCLES_CUDA_BINARIES=$BUILDCUDA \
--DWITH_CYCLES_OSL=ON \
--DCUDA_TOOLKIT_ROOT_DIR=/opt/cuda/ \
--DWITH_FFTW3=ON \
--DWITH_MOD_OCEANSIM=ON \
--DPYTHON_VERSION=3.3 \
--DPYTHON_LIBPATH=/usr/lib \
--DPYTHON_LIBRARY=python3.3m \
--DPYTHON_INCLUDE_DIRS=/usr/include/python3.3m \
-$ENABLESSE2
-
-  make $MAKEFLAGS
-
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver/build"
-
-  make DESTDIR="${pkgdir}" install
-  python -m compileall "${pkgdir}/usr/share/blender"
-}

Copied: blender/repos/community-i686/PKGBUILD (from rev 90174, 
blender/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-05-08 03:27:00 UTC (rev 90175)
@@ -0,0 +1,79 @@
+# $Id$
+# Contributor: John Sowiak 
+# Contributor: tobias 
+# Maintainer: Sven-Hendrik Haase 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from svn directly.
+
+#_svnrev=56125
+
+pkgname=blender
+pkgver=2.67
+[[ -n $_svnrev ]] && pkgver=2.67.$_svnrev
+pkgrel=1
+epoch=7
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.blender.org";
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage')
+makedepends=('cmake' 'boost' 'cuda' 'subversion' 'mesa')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+install=blender.install
+if [[ -n $_svnrev ]]; then
+  

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

2013-05-07 Thread Sven-Hendrik Haase
Date: Wednesday, May 8, 2013 @ 05:26:46
  Author: svenstaro
Revision: 90174

upgpkg: blender 7:2.67-1

Updating to 2.67

Modified:
  blender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-05-07 23:14:33 UTC (rev 90173)
+++ PKGBUILD2013-05-08 03:26:46 UTC (rev 90174)
@@ -6,12 +6,12 @@
 # Sometimes blender.org takes some time to release patch releases and because 
Arch users
 # are impatient, we sometimes need to build from svn directly.
 
-_svnrev=56125
+#_svnrev=56125
 
 pkgname=blender
-pkgver=2.66a
-[[ -n $_svnrev ]] && pkgver=2.66a.$_svnrev
-pkgrel=2
+pkgver=2.67
+[[ -n $_svnrev ]] && pkgver=2.67.$_svnrev
+pkgrel=1
 epoch=7
 pkgdesc="A fully integrated 3D graphics creation suite"
 arch=('i686' 'x86_64')
@@ -30,7 +30,7 @@
   md5sums=(SKIP)
 else
   source=(http://download.blender.org/source/$pkgname-$pkgver.tar.gz)
-  md5sums=('dde8211818e35b00a1c01a11efef4533')
+  md5sums=('5ada1df1f0e5d106dc43e6156652c5ea')
 fi
 
 build() {



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

2013-05-07 Thread Xyne
Date: Wednesday, May 8, 2013 @ 01:14:33
  Author: xyne
Revision: 90173

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   52 ++--
 autojump.install |8 
 2 files changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-05-07 23:13:39 UTC (rev 90172)
+++ PKGBUILD2013-05-07 23:14:33 UTC (rev 90173)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Geoffroy Carrier 
-# Contributor: Joël Schaerer 
-# Contributor: Daniel J Griffiths 
-
-pkgname=autojump
-pkgver=21.0.3
-pkgrel=1
-pkgdesc="A faster way to navigate your filesystem from the command line"
-arch=('any')
-url="http://wiki.github.com/joelthelion/autojump";
-license=('GPL3')
-depends=('bash' 'python')
-optdepends=('python2: needed for jumpapplet')
-install=$pkgname.install
-source=(https://github.com/downloads/joelthelion/${pkgname}/${pkgname}_v${pkgver}.tar.gz)
-sha256sums=('d4d44e8413773f0d67d41f37bb02e9082de9e61275b3222dfa6be01a86ff50be')
-
-package() {
-  cd ${pkgname}_v${pkgver}
-
-  sed -i "s:/env python:/python3:g" bin/$pkgname
-
-  ./install.sh --local --prefix ${pkgdir}/usr
-}

Copied: autojump/repos/community-any/PKGBUILD (from rev 90172, 
autojump/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-05-07 23:14:33 UTC (rev 90173)
@@ -0,0 +1,26 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: graysky 
+# Contributor: Geoffroy Carrier 
+# Contributor: Joël Schaerer 
+# Contributor: Daniel J Griffiths 
+
+pkgname=autojump
+pkgver=21.5.8
+pkgrel=1
+pkgdesc="A faster way to navigate your filesystem from the command line."
+arch=('any')
+url="http://wiki.github.com/joelthelion/autojump";
+license=('GPL3')
+depends=('python')
+source=(https://github.com/joelthelion/${pkgname}/archive/release-v${pkgver}.tar.gz)
+sha256sums=('4e18585aac319da1c900f0f022a4fe8ce3e21257d440c034d7abf29ed42d4e1e')
+
+prepare() {
+  sed -i "s:/env python:/python3:g" 
${pkgname}-release-v${pkgver}/bin/${pkgname}
+}
+
+package() {
+  cd ${pkgname}-release-v${pkgver}
+  ./install.sh --global --destdir "${pkgdir}"
+  rm "$pkgdir"/_j
+}

Deleted: autojump.install
===
--- autojump.install2013-05-07 23:13:39 UTC (rev 90172)
+++ autojump.install2013-05-07 23:14:33 UTC (rev 90173)
@@ -1,4 +0,0 @@
-post_install() {
-  echo " > You need to source /etc/profile in your ~/.bashrc for this to work"
-  echo " > only guaranteed to work with bash"
-}

Copied: autojump/repos/community-any/autojump.install (from rev 90172, 
autojump/trunk/autojump.install)
===
--- autojump.install(rev 0)
+++ autojump.install2013-05-07 23:14:33 UTC (rev 90173)
@@ -0,0 +1,4 @@
+post_install() {
+  echo " > You need to source /etc/profile in your ~/.bashrc for this to work"
+  echo " > only guaranteed to work with bash"
+}



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

2013-05-07 Thread Xyne
Date: Wednesday, May 8, 2013 @ 01:13:39
  Author: xyne
Revision: 90172

upgpkg: autojump 21.5.8-1

Upstream updated, submitted by graysky.

Modified:
  autojump/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-05-07 22:21:14 UTC (rev 90171)
+++ PKGBUILD2013-05-07 23:13:39 UTC (rev 90172)
@@ -1,26 +1,26 @@
-# $Id$
 # Maintainer: Jaroslav Lichtblau 
+# Contributor: graysky 
 # Contributor: Geoffroy Carrier 
 # Contributor: Joël Schaerer 
 # Contributor: Daniel J Griffiths 
 
 pkgname=autojump
-pkgver=21.0.3
+pkgver=21.5.8
 pkgrel=1
-pkgdesc="A faster way to navigate your filesystem from the command line"
+pkgdesc="A faster way to navigate your filesystem from the command line."
 arch=('any')
 url="http://wiki.github.com/joelthelion/autojump";
 license=('GPL3')
-depends=('bash' 'python')
-optdepends=('python2: needed for jumpapplet')
-install=$pkgname.install
-source=(https://github.com/downloads/joelthelion/${pkgname}/${pkgname}_v${pkgver}.tar.gz)
-sha256sums=('d4d44e8413773f0d67d41f37bb02e9082de9e61275b3222dfa6be01a86ff50be')
+depends=('python')
+source=(https://github.com/joelthelion/${pkgname}/archive/release-v${pkgver}.tar.gz)
+sha256sums=('4e18585aac319da1c900f0f022a4fe8ce3e21257d440c034d7abf29ed42d4e1e')
 
+prepare() {
+  sed -i "s:/env python:/python3:g" 
${pkgname}-release-v${pkgver}/bin/${pkgname}
+}
+
 package() {
-  cd ${pkgname}_v${pkgver}
-
-  sed -i "s:/env python:/python3:g" bin/$pkgname
-
-  ./install.sh --local --prefix ${pkgdir}/usr
+  cd ${pkgname}-release-v${pkgver}
+  ./install.sh --global --destdir "${pkgdir}"
+  rm "$pkgdir"/_j
 }



[arch-commits] Commit in gnome-icon-theme-symbolic/repos/extra-any (5 files)

2013-05-07 Thread Jan Steffens
Date: Wednesday, May 8, 2013 @ 00:38:41
  Author: heftig
Revision: 184758

archrelease: copy trunk to extra-any

Added:
  gnome-icon-theme-symbolic/repos/extra-any/PKGBUILD
(from rev 184757, gnome-icon-theme-symbolic/trunk/PKGBUILD)
  gnome-icon-theme-symbolic/repos/extra-any/gnome-icon-theme-symbolic.install
(from rev 184757, 
gnome-icon-theme-symbolic/trunk/gnome-icon-theme-symbolic.install)
Deleted:
  gnome-icon-theme-symbolic/repos/extra-any/PKGBUILD
  gnome-icon-theme-symbolic/repos/extra-any/gnome-icon-theme-symbolic.install
  gnome-icon-theme-symbolic/repos/extra-any/gnome-icon-theme-symbolic.pc.in

---+
 PKGBUILD  |   61 
 gnome-icon-theme-symbolic.install |   22 ++--
 gnome-icon-theme-symbolic.pc.in   |6 ---
 3 files changed, 39 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-05-07 22:37:57 UTC (rev 184757)
+++ PKGBUILD2013-05-07 22:38:41 UTC (rev 184758)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: Ionut Biru 
-
-pkgname=gnome-icon-theme-symbolic
-pkgver=3.8.0.1
-pkgrel=1
-pkgdesc="GNOME icon theme, symbolic icons"
-arch=(any)
-depends=('gtk-update-icon-cache' 'icon-naming-utils' 'hicolor-icon-theme')
-makedepends=('intltool')
-url="http://www.gnome.org";
-license=('GPL')
-install=gnome-icon-theme-symbolic.install
-groups=('gnome')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz
-gnome-icon-theme-symbolic.pc.in)
-sha256sums=('b2fc2a319b1b3b5d74899c2001616b1317d2ec73b462918b240da1beada38342'
-'eff5b212c3e67c2ee2ee4d038bbec57a12ecc274fb5ffeddf06e332a7036af7c')
-
-build() {
-  cd "$pkgname-$pkgver"
-  # HACK: Upstream maintainer generated the tarball with outdated Makefiles, 
check if this is still needed on updates
-  cp ../gnome-icon-theme-symbolic.pc.in .
-
-  GTK_UPDATE_ICON_CACHE=/bin/true ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-icon-theme-symbolic/repos/extra-any/PKGBUILD (from rev 184757, 
gnome-icon-theme-symbolic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-05-07 22:38:41 UTC (rev 184758)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: Ionut Biru 
+
+pkgname=gnome-icon-theme-symbolic
+pkgver=3.8.0.1
+pkgrel=2
+pkgdesc="GNOME icon theme, symbolic icons"
+arch=(any)
+depends=(gtk-update-icon-cache icon-naming-utils hicolor-icon-theme librsvg)
+makedepends=(intltool)
+url="http://www.gnome.org";
+license=(GPL)
+install=gnome-icon-theme-symbolic.install
+groups=(gnome)
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('b2fc2a319b1b3b5d74899c2001616b1317d2ec73b462918b240da1beada38342')
+
+build() {
+  cd "$pkgname-$pkgver"
+  GTK_UPDATE_ICON_CACHE=/bin/true ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: gnome-icon-theme-symbolic.install
===
--- gnome-icon-theme-symbolic.install   2013-05-07 22:37:57 UTC (rev 184757)
+++ gnome-icon-theme-symbolic.install   2013-05-07 22:38:41 UTC (rev 184758)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f /usr/share/icons/gnome
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: 
gnome-icon-theme-symbolic/repos/extra-any/gnome-icon-theme-symbolic.install 
(from rev 184757, 
gnome-icon-theme-symbolic/trunk/gnome-icon-theme-symbolic.install)
===
--- gnome-icon-theme-symbolic.install   (rev 0)
+++ gnome-icon-theme-symbolic.install   2013-05-07 22:38:41 UTC (rev 184758)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/gnome
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: gnome-icon-theme-symbolic.pc.in
===
--- gnome-icon-theme-symbolic.pc.in 2013-05-07 22:37:57 UTC (rev 184757)
+++ gnome-icon-theme-symbolic.pc.in 2013-05-07 22:38:41 UTC (rev 184758)
@@ -1,6 +0,0 @@
-Name: gnome-icon-theme-symbolic
-Description: A collection of symbolic icons used as the basis for GNOME themes
-Version: @VERSION@
-Requires:
-Libs:
-Cflags:



[arch-commits] Commit in gnome-icon-theme-symbolic/trunk (2 files)

2013-05-07 Thread Jan Steffens
Date: Wednesday, May 8, 2013 @ 00:37:57
  Author: heftig
Revision: 184757

Add librsvg dep; cleanup

Modified:
  gnome-icon-theme-symbolic/trunk/PKGBUILD
Deleted:
  gnome-icon-theme-symbolic/trunk/gnome-icon-theme-symbolic.pc.in

-+
 PKGBUILD|   19 +++
 gnome-icon-theme-symbolic.pc.in |6 --
 2 files changed, 7 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-07 16:48:04 UTC (rev 184756)
+++ PKGBUILD2013-05-07 22:37:57 UTC (rev 184757)
@@ -4,25 +4,20 @@
 
 pkgname=gnome-icon-theme-symbolic
 pkgver=3.8.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="GNOME icon theme, symbolic icons"
 arch=(any)
-depends=('gtk-update-icon-cache' 'icon-naming-utils' 'hicolor-icon-theme')
-makedepends=('intltool')
+depends=(gtk-update-icon-cache icon-naming-utils hicolor-icon-theme librsvg)
+makedepends=(intltool)
 url="http://www.gnome.org";
-license=('GPL')
+license=(GPL)
 install=gnome-icon-theme-symbolic.install
-groups=('gnome')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz
-gnome-icon-theme-symbolic.pc.in)
-sha256sums=('b2fc2a319b1b3b5d74899c2001616b1317d2ec73b462918b240da1beada38342'
-'eff5b212c3e67c2ee2ee4d038bbec57a12ecc274fb5ffeddf06e332a7036af7c')
+groups=(gnome)
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('b2fc2a319b1b3b5d74899c2001616b1317d2ec73b462918b240da1beada38342')
 
 build() {
   cd "$pkgname-$pkgver"
-  # HACK: Upstream maintainer generated the tarball with outdated Makefiles, 
check if this is still needed on updates
-  cp ../gnome-icon-theme-symbolic.pc.in .
-
   GTK_UPDATE_ICON_CACHE=/bin/true ./configure --prefix=/usr
   make
 }

Deleted: gnome-icon-theme-symbolic.pc.in
===
--- gnome-icon-theme-symbolic.pc.in 2013-05-07 16:48:04 UTC (rev 184756)
+++ gnome-icon-theme-symbolic.pc.in 2013-05-07 22:37:57 UTC (rev 184757)
@@ -1,6 +0,0 @@
-Name: gnome-icon-theme-symbolic
-Description: A collection of symbolic icons used as the basis for GNOME themes
-Version: @VERSION@
-Requires:
-Libs:
-Cflags:



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

2013-05-07 Thread Daniel Micay
Date: Wednesday, May 8, 2013 @ 00:21:14
  Author: thestinger
Revision: 90171

rust: rm redundant gcc-libs dependency

Modified:
  rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-05-07 22:11:28 UTC (rev 90170)
+++ PKGBUILD2013-05-07 22:21:14 UTC (rev 90171)
@@ -7,7 +7,7 @@
 pkgdesc='A safe, concurrent, practical language'
 url='http://www.rust-lang.org/'
 license=('MIT' 'Apache')
-depends=(gcc gcc-libs shared-mime-info)
+depends=(gcc shared-mime-info)
 makedepends=(libffi perl python2 curl chrpath emacs)
 optdepends=('haskell-pandoc: documentation generator (rustdoc)')
 source=("http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz";)



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

2013-05-07 Thread Daniel Micay
Date: Wednesday, May 8, 2013 @ 00:11:28
  Author: thestinger
Revision: 90170

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

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

---+
 /PKGBUILD |  126 
 /rust.install |   22 ++
 community-i686/PKGBUILD   |   63 
 community-i686/rust.install   |   11 ---
 community-x86_64/PKGBUILD |   63 
 community-x86_64/rust.install |   11 ---
 6 files changed, 148 insertions(+), 148 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-05-07 22:10:50 UTC (rev 90169)
+++ community-i686/PKGBUILD 2013-05-07 22:11:28 UTC (rev 90170)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay 
-pkgname=rust
-pkgver=0.6
-pkgrel=3
-arch=('i686' 'x86_64')
-pkgdesc='A safe, concurrent, practical language'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-depends=(gcc-libs shared-mime-info)
-makedepends=(libffi perl python2 curl chrpath emacs)
-optdepends=('haskell-pandoc: documentation generator (rustdoc)')
-source=("http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz";)
-sha256sums=('e11cb529a1e20f27d99033181a9e0e131817136b46d2742f0fa1afa1210053e5')
-install=rust.install
-
-build() {
-  cd rust-$pkgver
-
-  ./configure --prefix=/usr --disable-docs
-
-  # avoid python makedepend (force fallback to python2)
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-
-  make
-}
-
-check() {
-  cd rust-$pkgver
-  make check
-}
-
-package() {
-  cd rust-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  mkdir -p "$pkgdir/usr/share/vim" "$pkgdir/usr/share/licenses/rust"
-
-  cp -a src/etc/vim "$pkgdir/usr/share/vim/vimfiles"
-  find "$pkgdir/usr/share/vim" -type f -exec chmod 644 {} +
-  find "$pkgdir/usr/share/vim" -type d -exec chmod 755 {} +
-
-  install -Dm644 src/etc/kate/rust.xml 
"$pkgdir/usr/share/apps/katepart/syntax/rust.xml"
-  install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
-"$pkgdir/usr/share/mime/packages/rust.xml"
-  install -Dm644 
src/etc/gedit/share/gtksourceview-3.0/language-specs/rust.lang \
-"$pkgdir/usr/share/gtksourceview-3.0/language-specs/rust.lang"
-
-  install -m644 LICENSE-APACHE "$pkgdir/usr/share/licenses/rust"
-  install -m644 LICENSE-MIT "$pkgdir/usr/share/licenses/rust"
-
-  cd src/etc/emacs
-  make
-  mkdir -p "$pkgdir/usr/share/emacs/site-lisp/"
-  install -Dm644 cm-mode.el{,c} rust-mode.el{,c} 
"$pkgdir/usr/share/emacs/site-lisp/"
-
-  cd "$pkgdir/usr"
-
-  # https://github.com/mozilla/rust/issues/5219
-  chrpath -d bin/* lib/*.so lib/rustc/*/lib/*.so
-
-  cp lib/rustc/*/lib/{librustdoc-*-0.6.so,librustpkg-*-0.6.so} lib/
-}

Copied: rust/repos/community-i686/PKGBUILD (from rev 90169, rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-05-07 22:11:28 UTC (rev 90170)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Daniel Micay 
+pkgname=rust
+pkgver=0.6
+pkgrel=4
+arch=('i686' 'x86_64')
+pkgdesc='A safe, concurrent, practical language'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+depends=(gcc gcc-libs shared-mime-info)
+makedepends=(libffi perl python2 curl chrpath emacs)
+optdepends=('haskell-pandoc: documentation generator (rustdoc)')
+source=("http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz";)
+sha256sums=('e11cb529a1e20f27d99033181a9e0e131817136b46d2742f0fa1afa1210053e5')
+install=rust.install
+
+build() {
+  cd rust-$pkgver
+
+  ./configure --prefix=/usr --disable-docs
+
+  # avoid python makedepend (force fallback to python2)
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+
+  make
+}
+
+#check() {
+  #cd rust-$pkgver
+  #make check
+#}
+
+package() {
+  cd rust-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  mkdir -p "$pkgdir/usr/share/vim" "$pkgdir/usr/share/licenses/rust"
+
+  cp -a src/etc/vim "$pkgdir/usr/share/vim/vimfiles"
+  find "$pkgdir/usr/share/vim" -type f -exec chmod 644 {} +
+  find "$pkgdir/usr/share/vim" -type d -exec chmod 755 {} +
+
+  install -Dm644 src/etc/kate/rust.xml 
"$pkgdir/usr/share/apps/katepart/syntax/rust.xml"
+  install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
+"$pkgdir/usr/share/mime/packages/rust.xml"
+  install -Dm644 
src/etc/gedit/share/gtksourceview-3.0/lang

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

2013-05-07 Thread Daniel Micay
Date: Wednesday, May 8, 2013 @ 00:10:50
  Author: thestinger
Revision: 90169

upgpkg: rust 0.6-4

Modified:
  rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-05-07 19:19:32 UTC (rev 90168)
+++ PKGBUILD2013-05-07 22:10:50 UTC (rev 90169)
@@ -25,10 +25,10 @@
   make
 }
 
-check() {
-  cd rust-$pkgver
-  make check
-}
+#check() {
+  #cd rust-$pkgver
+  #make check
+#}
 
 package() {
   cd rust-$pkgver



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

2013-05-07 Thread Daniel Micay
Date: Tuesday, May 7, 2013 @ 21:19:32
  Author: thestinger
Revision: 90168

rust: add gcc dependency

Modified:
  rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-05-07 19:14:34 UTC (rev 90167)
+++ PKGBUILD2013-05-07 19:19:32 UTC (rev 90168)
@@ -2,12 +2,12 @@
 # Maintainer: Daniel Micay 
 pkgname=rust
 pkgver=0.6
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 pkgdesc='A safe, concurrent, practical language'
 url='http://www.rust-lang.org/'
 license=('MIT' 'Apache')
-depends=(gcc-libs shared-mime-info)
+depends=(gcc gcc-libs shared-mime-info)
 makedepends=(libffi perl python2 curl chrpath emacs)
 optdepends=('haskell-pandoc: documentation generator (rustdoc)')
 source=("http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz";)



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

2013-05-07 Thread Sébastien Luttringer
Date: Tuesday, May 7, 2013 @ 21:14:15
  Author: seblu
Revision: 90166

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

Added:
  bird/repos/community-i686/PKGBUILD
(from rev 90165, bird/trunk/PKGBUILD)
  bird/repos/community-i686/bird.service
(from rev 90165, bird/trunk/bird.service)
  bird/repos/community-i686/bird6.service
(from rev 90165, bird/trunk/bird6.service)
  bird/repos/community-x86_64/PKGBUILD
(from rev 90165, bird/trunk/PKGBUILD)
  bird/repos/community-x86_64/bird.service
(from rev 90165, bird/trunk/bird.service)
  bird/repos/community-x86_64/bird6.service
(from rev 90165, bird/trunk/bird6.service)
Deleted:
  bird/repos/community-i686/PKGBUILD
  bird/repos/community-i686/bird.service
  bird/repos/community-i686/bird6.service
  bird/repos/community-x86_64/PKGBUILD
  bird/repos/community-x86_64/bird.service
  bird/repos/community-x86_64/bird6.service

+
 /PKGBUILD  |  132 +++
 /bird.service  |   22 ++
 /bird6.service |   22 ++
 community-i686/PKGBUILD|   66 ---
 community-i686/bird.service|   11 ---
 community-i686/bird6.service   |   11 ---
 community-x86_64/PKGBUILD  |   66 ---
 community-x86_64/bird.service  |   11 ---
 community-x86_64/bird6.service |   11 ---
 9 files changed, 176 insertions(+), 176 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-05-07 19:14:03 UTC (rev 90165)
+++ community-i686/PKGBUILD 2013-05-07 19:14:15 UTC (rev 90166)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer 
-
-pkgbase=bird
-pkgname=('bird' 'bird6')
-pkgver=1.3.9
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://bird.network.cz/'
-license=('GPL2')
-depends=('readline' 'ncurses')
-source=("ftp://bird.network.cz/pub/bird/${pkgname}-${pkgver}.tar.gz";
-'bird.service'
-'bird6.service')
-md5sums=('86042560b5053dd008ba0b5ecbdde136'
- 'ccd12c994501e28a7256a6a2a17154b2'
- '631eea3de9be2f259aaf91f281d2d39a')
-
-build() {
-  cd $pkgbase-$pkgver
-  [[ -e _build4 ]] && rm -rf _build4
-  [[ -e _build6 ]] && rm -rf _build6
-  mkdir _build4 _build6
-
-  # build ipv4 bird
-  cd _build4
-  ../configure --prefix=/usr --sysconfdir=/etc  --localstatedir=/var
-  make
-
-  # build ipv6 bird
-  cd ../_build6
-  ../configure --prefix=/usr --sysconfdir=/etc  --localstatedir=/var 
--enable-ipv6
-  make
-}
-
-package_bird () {
-  pkgdesc='RIP, OSPFv2 and BGP daemon (ipv4 version)'
-  backup=('etc/bird.conf')
-
-  cd $pkgbase-$pkgver/_build4
-  make prefix="$pkgdir/usr" sysconfdir="$pkgdir/etc" 
localstatedir="$pkgdir/var" install
-  make docdir="$pkgdir/usr/share/doc/$pkgname" install-docs
-
-  # no /var inside pkg
-  rm -r "$pkgdir/var"
-
-  # systemd
-  install -D -m 644 "$srcdir/bird.service" 
"$pkgdir/usr/lib/systemd/system/bird.service"
-}
-
-package_bird6 () {
-  pkgdesc='RIP, OSPFv3, RADV and BGP daemon (ipv6 version)'
-  backup=('etc/bird6.conf')
-
-  cd $pkgbase-$pkgver/_build6
-  make prefix="$pkgdir/usr" sysconfdir="$pkgdir/etc" 
localstatedir="$pkgdir/var" install
-  make docdir="$pkgdir/usr/share/doc/$pkgname" install-docs
-
-  # no /var inside pkg
-  rm -r "$pkgdir/var"
-
-  # systemd
-  install -D -m 644 "$srcdir/bird6.service" 
"$pkgdir/usr/lib/systemd/system/bird6.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: bird/repos/community-i686/PKGBUILD (from rev 90165, bird/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-05-07 19:14:15 UTC (rev 90166)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgbase=bird
+pkgname=('bird' 'bird6')
+pkgver=1.3.10
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://bird.network.cz/'
+license=('GPL2')
+depends=('readline' 'ncurses')
+source=("ftp://bird.network.cz/pub/bird/${pkgname}-${pkgver}.tar.gz";
+'bird.service'
+'bird6.service')
+md5sums=('553c331b32bca9e926519cb2f67d68be'
+ 'ccd12c994501e28a7256a6a2a17154b2'
+ '631eea3de9be2f259aaf91f281d2d39a')
+
+build() {
+  cd $pkgbase-$pkgver
+  [[ -e _build4 ]] && rm -rf _build4
+  [[ -e _build6 ]] && rm -rf _build6
+  mkdir _build4 _build6
+
+  # build ipv4 bird
+  cd _build4
+  ../configure --prefix=/usr --sysconfdir=/etc  --localstatedir=/var
+  make
+
+  # build ipv6 bird
+  cd ../_build6
+  ../configure --prefix=/usr --sysconfdir=/etc  --localstatedir=/var 
--enable-ipv6
+  make
+}
+
+package_bird () {
+  pkgdesc='RIP, OSPFv2 and BGP daemon (ipv4 version)'
+  backup=('etc/bird.conf')
+
+  cd $pkgbase-$pkgver/_build4
+  make prefix="$pkgdir/usr" sysconfdir="$pkgdir/etc" 
localstatedir="$pkgdir/var" install
+  make docdir="$pkgdir/usr/share/doc/$pkgname" install-docs
+
+  # no /var inside pkg
+  rm -r "$pk

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

2013-05-07 Thread Sébastien Luttringer
Date: Tuesday, May 7, 2013 @ 21:14:03
  Author: seblu
Revision: 90165

upgpkg: bird 1.3.10-1

Modified:
  bird/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-05-07 16:07:18 UTC (rev 90164)
+++ PKGBUILD2013-05-07 19:14:03 UTC (rev 90165)
@@ -3,7 +3,7 @@
 
 pkgbase=bird
 pkgname=('bird' 'bird6')
-pkgver=1.3.9
+pkgver=1.3.10
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://bird.network.cz/'
@@ -12,7 +12,7 @@
 source=("ftp://bird.network.cz/pub/bird/${pkgname}-${pkgver}.tar.gz";
 'bird.service'
 'bird6.service')
-md5sums=('86042560b5053dd008ba0b5ecbdde136'
+md5sums=('553c331b32bca9e926519cb2f67d68be'
  'ccd12c994501e28a7256a6a2a17154b2'
  '631eea3de9be2f259aaf91f281d2d39a')
 



[arch-commits] Commit in kde-l10n/repos (testing-any testing-any/PKGBUILD)

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:48:04
  Author: andrea
Revision: 184756

archrelease: copy trunk to testing-any

Added:
  kde-l10n/repos/testing-any/
  kde-l10n/repos/testing-any/PKGBUILD
(from rev 184755, kde-l10n/trunk/PKGBUILD)

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

Copied: kde-l10n/repos/testing-any/PKGBUILD (from rev 184755, 
kde-l10n/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-05-07 16:48:04 UTC (rev 184756)
@@ -0,0 +1,531 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kde-l10n
+pkgname=('kde-l10n-ar'
+ 'kde-l10n-bg'
+ 'kde-l10n-bs'
+ 'kde-l10n-ca'
+ 'kde-l10n-ca@valencia'
+ 'kde-l10n-cs'
+ 'kde-l10n-da'
+ 'kde-l10n-de'
+ 'kde-l10n-el'
+ 'kde-l10n-en_gb'
+ 'kde-l10n-es'
+ 'kde-l10n-et'
+ 'kde-l10n-eu'
+ 'kde-l10n-fa'
+ 'kde-l10n-fi'
+ 'kde-l10n-fr'
+ 'kde-l10n-ga'
+ 'kde-l10n-gl'
+ 'kde-l10n-he'
+ 'kde-l10n-hi'
+ 'kde-l10n-hr'
+ 'kde-l10n-hu'
+ 'kde-l10n-ia'
+ 'kde-l10n-is'
+ 'kde-l10n-it'
+ 'kde-l10n-ja'
+ 'kde-l10n-kk'
+ 'kde-l10n-km'
+ 'kde-l10n-ko'
+ 'kde-l10n-lt'
+ 'kde-l10n-lv'
+ 'kde-l10n-mr'
+ 'kde-l10n-nb'
+ 'kde-l10n-nds'
+ 'kde-l10n-nl'
+ 'kde-l10n-nn'
+ 'kde-l10n-pa'
+ 'kde-l10n-pl'
+ 'kde-l10n-pt'
+ 'kde-l10n-pt_br'
+ 'kde-l10n-ro'
+ 'kde-l10n-ru'
+ 'kde-l10n-si'
+ 'kde-l10n-sk'
+ 'kde-l10n-sl'
+ 'kde-l10n-sr'
+ 'kde-l10n-sv'
+ 'kde-l10n-tg'
+ 'kde-l10n-th'
+ 'kde-l10n-tr'
+ 'kde-l10n-ug'
+ 'kde-l10n-uk'
+ 'kde-l10n-vi'
+ 'kde-l10n-wa'
+ 'kde-l10n-zh_cn'
+ 'kde-l10n-zh_tw')
+pkgver=4.10.3
+pkgrel=1
+arch=('any')
+url='http://www.kde.org/'
+license=('GPL')
+makedepends=('cmake' 'automoc4' 'kdelibs')
+options=('docs')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-ar-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-bg-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-bs-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-ca-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-ca@valencia-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-cs-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-da-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-de-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-el-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-en_GB-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-es-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-et-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-eu-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-fa-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-fi-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-fr-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-ga-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-gl-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-he-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-hi-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-hr-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-hu-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-ia-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-is-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-it-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-ja-${pkgver}.tar.xz";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-kk-${pkgver}.tar.xz";
+

[arch-commits] Commit in kde-wallpapers/repos (testing-any testing-any/PKGBUILD)

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:47:46
  Author: andrea
Revision: 184755

archrelease: copy trunk to testing-any

Added:
  kde-wallpapers/repos/testing-any/
  kde-wallpapers/repos/testing-any/PKGBUILD
(from rev 184754, kde-wallpapers/trunk/PKGBUILD)

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

Copied: kde-wallpapers/repos/testing-any/PKGBUILD (from rev 184754, 
kde-wallpapers/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-05-07 16:47:46 UTC (rev 184755)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kde-wallpapers
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A set of wallpapers for KDE"
+arch=('any')
+url='http://www.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kde-meta' 'kdebase')
+makedepends=('kdelibs' 'cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('565d388b2931b8ac7ef202d3a25b0ecae3ef3f51')
+
+package() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make DESTDIR="${pkgdir}" install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:47:41
  Author: andrea
Revision: 184754

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

Added:
  kdewebdev/repos/testing-i686/
  kdewebdev/repos/testing-i686/PKGBUILD
(from rev 184753, kdewebdev/trunk/PKGBUILD)
  kdewebdev/repos/testing-i686/kdewebdev-kimagemapeditor.install
(from rev 184753, kdewebdev/trunk/kdewebdev-kimagemapeditor.install)
  kdewebdev/repos/testing-i686/kdewebdev.install
(from rev 184753, kdewebdev/trunk/kdewebdev.install)
  kdewebdev/repos/testing-x86_64/
  kdewebdev/repos/testing-x86_64/PKGBUILD
(from rev 184753, kdewebdev/trunk/PKGBUILD)
  kdewebdev/repos/testing-x86_64/kdewebdev-kimagemapeditor.install
(from rev 184753, kdewebdev/trunk/kdewebdev-kimagemapeditor.install)
  kdewebdev/repos/testing-x86_64/kdewebdev.install
(from rev 184753, kdewebdev/trunk/kdewebdev.install)

--+
 testing-i686/PKGBUILD|   71 +
 testing-i686/kdewebdev-kimagemapeditor.install   |   12 +++
 testing-i686/kdewebdev.install   |   11 +++
 testing-x86_64/PKGBUILD  |   71 +
 testing-x86_64/kdewebdev-kimagemapeditor.install |   12 +++
 testing-x86_64/kdewebdev.install |   11 +++
 6 files changed, 188 insertions(+)

Copied: kdewebdev/repos/testing-i686/PKGBUILD (from rev 184753, 
kdewebdev/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:47:41 UTC (rev 184754)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdewebdev
+pkgname=('kdewebdev-kfilereplace'
+ 'kdewebdev-kimagemapeditor'
+ 'kdewebdev-klinkstatus'
+ 'kdewebdev-kommander')
+pkgver=4.10.3
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdewebdev')
+makedepends=('cmake' 'automoc4' 'ruby' 'tidyhtml' 'kdepimlibs' 'boost')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('ea30f3187bd40eb0b972f2a9a7275674d6cee286')
+
+build() {
+   cd $srcdir
+   mkdir build
+   cd build
+   cmake ../${pkgbase}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_SKIP_RPATH=ON \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package_kdewebdev-kfilereplace() {
+   pkgdesc='Search & Replace Tool'
+   depends=('kdebase-runtime')
+   url="http://kde.org/applications/utilities/kfilereplace/";
+   install='kdewebdev.install'
+   cd $srcdir/build/kfilereplace
+   make DESTDIR=$pkgdir install
+   cd $srcdir/build/doc/kfilereplace
+   make DESTDIR=$pkgdir install
+}
+
+package_kdewebdev-kimagemapeditor() {
+   pkgdesc='HTML Image Map Editor'
+   depends=('kdebase-runtime')
+url="http://www.kde.org/applications/development/kimagemapeditor/";
+   install='kdewebdev-kimagemapeditor.install'
+   cd $srcdir/build/kimagemapeditor
+   make DESTDIR=$pkgdir install
+   cd $srcdir/build/doc/kimagemapeditor
+   make DESTDIR=$pkgdir install
+}
+
+package_kdewebdev-klinkstatus() {
+   pkgdesc='Link Checker'
+   depends=('kdebase-runtime' 'kdepimlibs' 'tidyhtml')
+url="http://www.kde.org/applications/development/klinkstatus/";
+   install='kdewebdev.install'
+   cd $srcdir/build/klinkstatus
+   make DESTDIR=$pkgdir install
+   cd $srcdir/build/doc/klinkstatus
+   make DESTDIR=$pkgdir install
+}
+
+package_kdewebdev-kommander() {
+   pkgdesc='Executor for Kommander dialogs'
+   depends=('kdebase-runtime')
+url="http://www.kde.org/applications/development/kommander/";
+   cd $srcdir/build/kommander
+   make DESTDIR=$pkgdir install
+}

Copied: kdewebdev/repos/testing-i686/kdewebdev-kimagemapeditor.install (from 
rev 184753, kdewebdev/trunk/kdewebdev-kimagemapeditor.install)
===
--- testing-i686/kdewebdev-kimagemapeditor.install  
(rev 0)
+++ testing-i686/kdewebdev-kimagemapeditor.install  2013-05-07 16:47:41 UTC 
(rev 184754)
@@ -0,0 +1,12 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: kdewebdev/repos/testing-i686/kdewebdev.install (from rev 184753, 
kdewebdev/trunk/kdewebdev.install)
===
--- testing-i686/kdewebdev.install  (rev 0)
+++ testing-i686/kdewebdev.install  2013-05-07 16:47:41 UTC (rev 184754)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --the

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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:47:32
  Author: andrea
Revision: 184753

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

Added:
  kdeutils-sweeper/repos/testing-i686/
  kdeutils-sweeper/repos/testing-i686/PKGBUILD
(from rev 184752, kdeutils-sweeper/trunk/PKGBUILD)
  kdeutils-sweeper/repos/testing-x86_64/
  kdeutils-sweeper/repos/testing-x86_64/PKGBUILD
(from rev 184752, kdeutils-sweeper/trunk/PKGBUILD)

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

Copied: kdeutils-sweeper/repos/testing-i686/PKGBUILD (from rev 184752, 
kdeutils-sweeper/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:47:32 UTC (rev 184753)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-sweeper
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='System Cleaner'
+url='http://kde.org/applications/utilities/sweeper'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+source=("http://download.kde.org/stable/${pkgver}/src/sweeper-${pkgver}.tar.xz";)
+sha1sums=('978f599562a6c9b2792fa7383f333d7048309ab6')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../sweeper-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-sweeper/repos/testing-x86_64/PKGBUILD (from rev 184752, 
kdeutils-sweeper/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:47:32 UTC (rev 184753)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-sweeper
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='System Cleaner'
+url='http://kde.org/applications/utilities/sweeper'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+source=("http://download.kde.org/stable/${pkgver}/src/sweeper-${pkgver}.tar.xz";)
+sha1sums=('978f599562a6c9b2792fa7383f333d7048309ab6')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../sweeper-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:47:24
  Author: andrea
Revision: 184752

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

Added:
  kdeutils-superkaramba/repos/testing-i686/
  kdeutils-superkaramba/repos/testing-i686/PKGBUILD
(from rev 184751, kdeutils-superkaramba/trunk/PKGBUILD)
  kdeutils-superkaramba/repos/testing-i686/kdeutils-superkaramba.install
(from rev 184751, kdeutils-superkaramba/trunk/kdeutils-superkaramba.install)
  kdeutils-superkaramba/repos/testing-x86_64/
  kdeutils-superkaramba/repos/testing-x86_64/PKGBUILD
(from rev 184751, kdeutils-superkaramba/trunk/PKGBUILD)
  kdeutils-superkaramba/repos/testing-x86_64/kdeutils-superkaramba.install
(from rev 184751, kdeutils-superkaramba/trunk/kdeutils-superkaramba.install)

--+
 testing-i686/PKGBUILD|   32 +
 testing-i686/kdeutils-superkaramba.install   |   12 +
 testing-x86_64/PKGBUILD  |   32 +
 testing-x86_64/kdeutils-superkaramba.install |   12 +
 4 files changed, 88 insertions(+)

Copied: kdeutils-superkaramba/repos/testing-i686/PKGBUILD (from rev 184751, 
kdeutils-superkaramba/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:47:24 UTC (rev 184752)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-superkaramba
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='An engine for cool desktop eyecandy'
+url='http://kde.org/applications/utilities/superkaramba/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime' 'qimageblitz')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/superkaramba-${pkgver}.tar.xz";)
+sha1sums=('b74241f3357a91149bbb1610ee7e944e053b25ff')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../superkaramba-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-superkaramba/repos/testing-i686/kdeutils-superkaramba.install 
(from rev 184751, kdeutils-superkaramba/trunk/kdeutils-superkaramba.install)
===
--- testing-i686/kdeutils-superkaramba.install  (rev 0)
+++ testing-i686/kdeutils-superkaramba.install  2013-05-07 16:47:24 UTC (rev 
184752)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeutils-superkaramba/repos/testing-x86_64/PKGBUILD (from rev 184751, 
kdeutils-superkaramba/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:47:24 UTC (rev 184752)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-superkaramba
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='An engine for cool desktop eyecandy'
+url='http://kde.org/applications/utilities/superkaramba/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime' 'qimageblitz')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/superkaramba-${pkgver}.tar.xz";)
+sha1sums=('b74241f3357a91149bbb1610ee7e944e053b25ff')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../superkaramba-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: 
kdeutils-superkaramba/repos/testing-x86_64/kdeutils-superkaramba.install (from 
rev 184751, kdeutils-superkaramba/trunk/kdeutils-superkaramba.install)
===
--- testing-x86_64/kdeutils-superkaramba.install
(rev 0)
+++ testing-x86_64/kdeutils-superkaramba.install2013-05-07 16:47:24 UTC 
(rev 184752)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdeutils-print-manager/repos (4 files)

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:47:18
  Author: andrea
Revision: 184751

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

Added:
  kdeutils-print-manager/repos/testing-i686/
  kdeutils-print-manager/repos/testing-i686/PKGBUILD
(from rev 184750, kdeutils-print-manager/trunk/PKGBUILD)
  kdeutils-print-manager/repos/testing-x86_64/
  kdeutils-print-manager/repos/testing-x86_64/PKGBUILD
(from rev 184750, kdeutils-print-manager/trunk/PKGBUILD)

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

Copied: kdeutils-print-manager/repos/testing-i686/PKGBUILD (from rev 184750, 
kdeutils-print-manager/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:47:18 UTC (rev 184751)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-print-manager
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A tool for managing print jobs and printers"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdeutils/print-manager'
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-workspace' 'libcups')
+makedepends=('cmake' 'automoc4')
+optdepends=('system-config-printer: auto-detect the printer driver')
+replaces=('print-manager' 'kdeutils-printer-applet' 
'kdeadmin-system-config-printer-kde')
+conflicts=('print-manager')
+groups=('kde' 'kdeutils')
+source=("http://download.kde.org/stable/${pkgver}/src/print-manager-${pkgver}.tar.xz";)
+sha1sums=('91b98fd9827e61bc9b351fc7027df8212764f817')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../print-manager-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeutils-print-manager/repos/testing-x86_64/PKGBUILD (from rev 184750, 
kdeutils-print-manager/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:47:18 UTC (rev 184751)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-print-manager
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A tool for managing print jobs and printers"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdeutils/print-manager'
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-workspace' 'libcups')
+makedepends=('cmake' 'automoc4')
+optdepends=('system-config-printer: auto-detect the printer driver')
+replaces=('print-manager' 'kdeutils-printer-applet' 
'kdeadmin-system-config-printer-kde')
+conflicts=('print-manager')
+groups=('kde' 'kdeutils')
+source=("http://download.kde.org/stable/${pkgver}/src/print-manager-${pkgver}.tar.xz";)
+sha1sums=('91b98fd9827e61bc9b351fc7027df8212764f817')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../print-manager-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:47:10
  Author: andrea
Revision: 184750

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

Added:
  kdeutils-kwallet/repos/testing-i686/
  kdeutils-kwallet/repos/testing-i686/PKGBUILD
(from rev 184749, kdeutils-kwallet/trunk/PKGBUILD)
  kdeutils-kwallet/repos/testing-i686/kdeutils-kwallet.install
(from rev 184749, kdeutils-kwallet/trunk/kdeutils-kwallet.install)
  kdeutils-kwallet/repos/testing-x86_64/
  kdeutils-kwallet/repos/testing-x86_64/PKGBUILD
(from rev 184749, kdeutils-kwallet/trunk/PKGBUILD)
  kdeutils-kwallet/repos/testing-x86_64/kdeutils-kwallet.install
(from rev 184749, kdeutils-kwallet/trunk/kdeutils-kwallet.install)

-+
 testing-i686/PKGBUILD   |   32 ++
 testing-i686/kdeutils-kwallet.install   |   12 +++
 testing-x86_64/PKGBUILD |   32 ++
 testing-x86_64/kdeutils-kwallet.install |   12 +++
 4 files changed, 88 insertions(+)

Copied: kdeutils-kwallet/repos/testing-i686/PKGBUILD (from rev 184749, 
kdeutils-kwallet/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:47:10 UTC (rev 184750)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kwallet
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='Wallet Management Tool'
+url='http://kde.org/applications/system/kwalletmanager/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kwallet-${pkgver}.tar.xz";)
+sha1sums=('41a32b861ea2dcf4892c0161bce90996e9c8bd3d')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kwallet-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kwallet/repos/testing-i686/kdeutils-kwallet.install (from rev 
184749, kdeutils-kwallet/trunk/kdeutils-kwallet.install)
===
--- testing-i686/kdeutils-kwallet.install   (rev 0)
+++ testing-i686/kdeutils-kwallet.install   2013-05-07 16:47:10 UTC (rev 
184750)
@@ -0,0 +1,12 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: kdeutils-kwallet/repos/testing-x86_64/PKGBUILD (from rev 184749, 
kdeutils-kwallet/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:47:10 UTC (rev 184750)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kwallet
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='Wallet Management Tool'
+url='http://kde.org/applications/system/kwalletmanager/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kwallet-${pkgver}.tar.xz";)
+sha1sums=('41a32b861ea2dcf4892c0161bce90996e9c8bd3d')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kwallet-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kwallet/repos/testing-x86_64/kdeutils-kwallet.install (from 
rev 184749, kdeutils-kwallet/trunk/kdeutils-kwallet.install)
===
--- testing-x86_64/kdeutils-kwallet.install (rev 0)
+++ testing-x86_64/kdeutils-kwallet.install 2013-05-07 16:47:10 UTC (rev 
184750)
@@ -0,0 +1,12 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:47:04
  Author: andrea
Revision: 184749

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

Added:
  kdeutils-ktimer/repos/testing-i686/
  kdeutils-ktimer/repos/testing-i686/PKGBUILD
(from rev 184748, kdeutils-ktimer/trunk/PKGBUILD)
  kdeutils-ktimer/repos/testing-i686/kdeutils-ktimer.install
(from rev 184748, kdeutils-ktimer/trunk/kdeutils-ktimer.install)
  kdeutils-ktimer/repos/testing-x86_64/
  kdeutils-ktimer/repos/testing-x86_64/PKGBUILD
(from rev 184748, kdeutils-ktimer/trunk/PKGBUILD)
  kdeutils-ktimer/repos/testing-x86_64/kdeutils-ktimer.install
(from rev 184748, kdeutils-ktimer/trunk/kdeutils-ktimer.install)

+
 testing-i686/PKGBUILD  |   32 +++
 testing-i686/kdeutils-ktimer.install   |   11 ++
 testing-x86_64/PKGBUILD|   32 +++
 testing-x86_64/kdeutils-ktimer.install |   11 ++
 4 files changed, 86 insertions(+)

Copied: kdeutils-ktimer/repos/testing-i686/PKGBUILD (from rev 184748, 
kdeutils-ktimer/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:47:04 UTC (rev 184749)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-ktimer
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='Countdown Launcher'
+url='http://kde.org/applications/utilities/ktimer/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ktimer-${pkgver}.tar.xz";)
+sha1sums=('c39948abf291f0ddd9e07cdc6b9d48922f62b317')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../ktimer-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-ktimer/repos/testing-i686/kdeutils-ktimer.install (from rev 
184748, kdeutils-ktimer/trunk/kdeutils-ktimer.install)
===
--- testing-i686/kdeutils-ktimer.install(rev 0)
+++ testing-i686/kdeutils-ktimer.install2013-05-07 16:47:04 UTC (rev 
184749)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeutils-ktimer/repos/testing-x86_64/PKGBUILD (from rev 184748, 
kdeutils-ktimer/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:47:04 UTC (rev 184749)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-ktimer
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='Countdown Launcher'
+url='http://kde.org/applications/utilities/ktimer/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ktimer-${pkgver}.tar.xz";)
+sha1sums=('c39948abf291f0ddd9e07cdc6b9d48922f62b317')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../ktimer-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-ktimer/repos/testing-x86_64/kdeutils-ktimer.install (from rev 
184748, kdeutils-ktimer/trunk/kdeutils-ktimer.install)
===
--- testing-x86_64/kdeutils-ktimer.install  (rev 0)
+++ testing-x86_64/kdeutils-ktimer.install  2013-05-07 16:47:04 UTC (rev 
184749)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:46:58
  Author: andrea
Revision: 184748

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

Added:
  kdeutils-kremotecontrol/repos/testing-i686/
  kdeutils-kremotecontrol/repos/testing-i686/PKGBUILD
(from rev 184747, kdeutils-kremotecontrol/trunk/PKGBUILD)
  kdeutils-kremotecontrol/repos/testing-i686/kdeutils-kremotecontrol.install
(from rev 184747, 
kdeutils-kremotecontrol/trunk/kdeutils-kremotecontrol.install)
  kdeutils-kremotecontrol/repos/testing-x86_64/
  kdeutils-kremotecontrol/repos/testing-x86_64/PKGBUILD
(from rev 184747, kdeutils-kremotecontrol/trunk/PKGBUILD)
  kdeutils-kremotecontrol/repos/testing-x86_64/kdeutils-kremotecontrol.install
(from rev 184747, 
kdeutils-kremotecontrol/trunk/kdeutils-kremotecontrol.install)

+
 testing-i686/PKGBUILD  |   34 +++
 testing-i686/kdeutils-kremotecontrol.install   |   11 +++
 testing-x86_64/PKGBUILD|   34 +++
 testing-x86_64/kdeutils-kremotecontrol.install |   11 +++
 4 files changed, 90 insertions(+)

Copied: kdeutils-kremotecontrol/repos/testing-i686/PKGBUILD (from rev 184747, 
kdeutils-kremotecontrol/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:46:58 UTC (rev 184748)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kremotecontrol
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='Configure your remote controls for use with applications'
+url='http://kde.org/applications/utilities/kremotecontrol/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-workspace')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+replaces=('kdeutils-kdelirc')
+conflicts=('kdeutils-kdelirc')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kremotecontrol-${pkgver}.tar.xz";)
+sha1sums=('5a3df78e08688647224c63418363940b222abe21')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kremotecontrol-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: 
kdeutils-kremotecontrol/repos/testing-i686/kdeutils-kremotecontrol.install 
(from rev 184747, kdeutils-kremotecontrol/trunk/kdeutils-kremotecontrol.install)
===
--- testing-i686/kdeutils-kremotecontrol.install
(rev 0)
+++ testing-i686/kdeutils-kremotecontrol.install2013-05-07 16:46:58 UTC 
(rev 184748)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeutils-kremotecontrol/repos/testing-x86_64/PKGBUILD (from rev 184747, 
kdeutils-kremotecontrol/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:46:58 UTC (rev 184748)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kremotecontrol
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='Configure your remote controls for use with applications'
+url='http://kde.org/applications/utilities/kremotecontrol/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-workspace')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+replaces=('kdeutils-kdelirc')
+conflicts=('kdeutils-kdelirc')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kremotecontrol-${pkgver}.tar.xz";)
+sha1sums=('5a3df78e08688647224c63418363940b222abe21')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kremotecontrol-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: 
kdeutils-kremotecontrol/repos/testing-x86_64/kdeutils-kremotecontrol.install 
(from rev 184747, kdeutils-kremotecontrol/trunk/kdeutils-kremotecontrol.install)
===
--- testing-x86_64/kdeutils-kremotecontrol.install  
(rev 0)
+++ testing-x86_64/kdeutils-kremotecontrol.install  2013-05-07 16:46:58 UTC 
(rev 184748)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:46:51
  Author: andrea
Revision: 184747

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

Added:
  kdeutils-kgpg/repos/testing-i686/
  kdeutils-kgpg/repos/testing-i686/PKGBUILD
(from rev 184746, kdeutils-kgpg/trunk/PKGBUILD)
  kdeutils-kgpg/repos/testing-i686/kdeutils-kgpg.install
(from rev 184746, kdeutils-kgpg/trunk/kdeutils-kgpg.install)
  kdeutils-kgpg/repos/testing-x86_64/
  kdeutils-kgpg/repos/testing-x86_64/PKGBUILD
(from rev 184746, kdeutils-kgpg/trunk/PKGBUILD)
  kdeutils-kgpg/repos/testing-x86_64/kdeutils-kgpg.install
(from rev 184746, kdeutils-kgpg/trunk/kdeutils-kgpg.install)

--+
 testing-i686/PKGBUILD|   32 
 testing-i686/kdeutils-kgpg.install   |   12 
 testing-x86_64/PKGBUILD  |   32 
 testing-x86_64/kdeutils-kgpg.install |   12 
 4 files changed, 88 insertions(+)

Copied: kdeutils-kgpg/repos/testing-i686/PKGBUILD (from rev 184746, 
kdeutils-kgpg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:46:51 UTC (rev 184747)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kgpg
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='A GnuPG frontend'
+url='http://kde.org/applications/utilities/kgpg/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime' 'kdepimlibs' 'kde-agent')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kgpg-${pkgver}.tar.xz";)
+sha1sums=('ba92c6edcf6ce857fec7969aab5a8b8afce2d43c')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kgpg-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kgpg/repos/testing-i686/kdeutils-kgpg.install (from rev 
184746, kdeutils-kgpg/trunk/kdeutils-kgpg.install)
===
--- testing-i686/kdeutils-kgpg.install  (rev 0)
+++ testing-i686/kdeutils-kgpg.install  2013-05-07 16:46:51 UTC (rev 184747)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeutils-kgpg/repos/testing-x86_64/PKGBUILD (from rev 184746, 
kdeutils-kgpg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:46:51 UTC (rev 184747)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kgpg
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='A GnuPG frontend'
+url='http://kde.org/applications/utilities/kgpg/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime' 'kdepimlibs' 'kde-agent')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kgpg-${pkgver}.tar.xz";)
+sha1sums=('ba92c6edcf6ce857fec7969aab5a8b8afce2d43c')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kgpg-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kgpg/repos/testing-x86_64/kdeutils-kgpg.install (from rev 
184746, kdeutils-kgpg/trunk/kdeutils-kgpg.install)
===
--- testing-x86_64/kdeutils-kgpg.install(rev 0)
+++ testing-x86_64/kdeutils-kgpg.install2013-05-07 16:46:51 UTC (rev 
184747)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:46:45
  Author: andrea
Revision: 184746

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

Added:
  kdeutils-kfloppy/repos/testing-i686/
  kdeutils-kfloppy/repos/testing-i686/PKGBUILD
(from rev 184745, kdeutils-kfloppy/trunk/PKGBUILD)
  kdeutils-kfloppy/repos/testing-i686/kdeutils-kfloppy.install
(from rev 184745, kdeutils-kfloppy/trunk/kdeutils-kfloppy.install)
  kdeutils-kfloppy/repos/testing-x86_64/
  kdeutils-kfloppy/repos/testing-x86_64/PKGBUILD
(from rev 184745, kdeutils-kfloppy/trunk/PKGBUILD)
  kdeutils-kfloppy/repos/testing-x86_64/kdeutils-kfloppy.install
(from rev 184745, kdeutils-kfloppy/trunk/kdeutils-kfloppy.install)

-+
 testing-i686/PKGBUILD   |   32 ++
 testing-i686/kdeutils-kfloppy.install   |   12 +++
 testing-x86_64/PKGBUILD |   32 ++
 testing-x86_64/kdeutils-kfloppy.install |   12 +++
 4 files changed, 88 insertions(+)

Copied: kdeutils-kfloppy/repos/testing-i686/PKGBUILD (from rev 184745, 
kdeutils-kfloppy/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:46:45 UTC (rev 184746)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kfloppy
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='Floppy Formatter'
+url='http://kde.org/applications/utilities/kfloppy/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kfloppy-${pkgver}.tar.xz";)
+sha1sums=('25ff13f6551542eb58384c7606837c05a452fb54')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kfloppy-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kfloppy/repos/testing-i686/kdeutils-kfloppy.install (from rev 
184745, kdeutils-kfloppy/trunk/kdeutils-kfloppy.install)
===
--- testing-i686/kdeutils-kfloppy.install   (rev 0)
+++ testing-i686/kdeutils-kfloppy.install   2013-05-07 16:46:45 UTC (rev 
184746)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeutils-kfloppy/repos/testing-x86_64/PKGBUILD (from rev 184745, 
kdeutils-kfloppy/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:46:45 UTC (rev 184746)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kfloppy
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='Floppy Formatter'
+url='http://kde.org/applications/utilities/kfloppy/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kfloppy-${pkgver}.tar.xz";)
+sha1sums=('25ff13f6551542eb58384c7606837c05a452fb54')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kfloppy-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kfloppy/repos/testing-x86_64/kdeutils-kfloppy.install (from 
rev 184745, kdeutils-kfloppy/trunk/kdeutils-kfloppy.install)
===
--- testing-x86_64/kdeutils-kfloppy.install (rev 0)
+++ testing-x86_64/kdeutils-kfloppy.install 2013-05-07 16:46:45 UTC (rev 
184746)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:46:38
  Author: andrea
Revision: 184745

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

Added:
  kdeutils-kdf/repos/testing-i686/
  kdeutils-kdf/repos/testing-i686/PKGBUILD
(from rev 184744, kdeutils-kdf/trunk/PKGBUILD)
  kdeutils-kdf/repos/testing-i686/kdeutils-kdf.install
(from rev 184744, kdeutils-kdf/trunk/kdeutils-kdf.install)
  kdeutils-kdf/repos/testing-x86_64/
  kdeutils-kdf/repos/testing-x86_64/PKGBUILD
(from rev 184744, kdeutils-kdf/trunk/PKGBUILD)
  kdeutils-kdf/repos/testing-x86_64/kdeutils-kdf.install
(from rev 184744, kdeutils-kdf/trunk/kdeutils-kdf.install)

-+
 testing-i686/PKGBUILD   |   32 
 testing-i686/kdeutils-kdf.install   |   11 +++
 testing-x86_64/PKGBUILD |   32 
 testing-x86_64/kdeutils-kdf.install |   11 +++
 4 files changed, 86 insertions(+)

Copied: kdeutils-kdf/repos/testing-i686/PKGBUILD (from rev 184744, 
kdeutils-kdf/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:46:38 UTC (rev 184745)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kdf
+pkgver=4.10.3
+pkgrel=1
+url="http://kde.org/applications/system/kdiskfree/";
+arch=('i686' 'x86_64')
+pkgdesc='View Disk Usage'
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kdf-${pkgver}.tar.xz";)
+sha1sums=('a88a393714a127a5629c2b50690ee6766c6ed484')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kdf-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kdf/repos/testing-i686/kdeutils-kdf.install (from rev 184744, 
kdeutils-kdf/trunk/kdeutils-kdf.install)
===
--- testing-i686/kdeutils-kdf.install   (rev 0)
+++ testing-i686/kdeutils-kdf.install   2013-05-07 16:46:38 UTC (rev 184745)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeutils-kdf/repos/testing-x86_64/PKGBUILD (from rev 184744, 
kdeutils-kdf/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:46:38 UTC (rev 184745)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kdf
+pkgver=4.10.3
+pkgrel=1
+url="http://kde.org/applications/system/kdiskfree/";
+arch=('i686' 'x86_64')
+pkgdesc='View Disk Usage'
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kdf-${pkgver}.tar.xz";)
+sha1sums=('a88a393714a127a5629c2b50690ee6766c6ed484')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kdf-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kdf/repos/testing-x86_64/kdeutils-kdf.install (from rev 
184744, kdeutils-kdf/trunk/kdeutils-kdf.install)
===
--- testing-x86_64/kdeutils-kdf.install (rev 0)
+++ testing-x86_64/kdeutils-kdf.install 2013-05-07 16:46:38 UTC (rev 184745)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:46:31
  Author: andrea
Revision: 184744

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

Added:
  kdeutils-kcharselect/repos/testing-i686/
  kdeutils-kcharselect/repos/testing-i686/PKGBUILD
(from rev 184743, kdeutils-kcharselect/trunk/PKGBUILD)
  kdeutils-kcharselect/repos/testing-x86_64/
  kdeutils-kcharselect/repos/testing-x86_64/PKGBUILD
(from rev 184743, kdeutils-kcharselect/trunk/PKGBUILD)

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

Copied: kdeutils-kcharselect/repos/testing-i686/PKGBUILD (from rev 184743, 
kdeutils-kcharselect/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:46:31 UTC (rev 184744)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kcharselect
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='Character Selector'
+url="http://kde.org/applications/utilities/kcharselect/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+source=("http://download.kde.org/stable/${pkgver}/src/kcharselect-${pkgver}.tar.xz";)
+sha1sums=('15360b8b7d1878b146cc38030e8ab59d2fa76acc')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kcharselect-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kcharselect/repos/testing-x86_64/PKGBUILD (from rev 184743, 
kdeutils-kcharselect/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:46:31 UTC (rev 184744)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kcharselect
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='Character Selector'
+url="http://kde.org/applications/utilities/kcharselect/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+source=("http://download.kde.org/stable/${pkgver}/src/kcharselect-${pkgver}.tar.xz";)
+sha1sums=('15360b8b7d1878b146cc38030e8ab59d2fa76acc')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kcharselect-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:46:23
  Author: andrea
Revision: 184743

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

Added:
  kdeutils-kcalc/repos/testing-i686/
  kdeutils-kcalc/repos/testing-i686/PKGBUILD
(from rev 184742, kdeutils-kcalc/trunk/PKGBUILD)
  kdeutils-kcalc/repos/testing-i686/kdeutils-kcalc.install
(from rev 184742, kdeutils-kcalc/trunk/kdeutils-kcalc.install)
  kdeutils-kcalc/repos/testing-x86_64/
  kdeutils-kcalc/repos/testing-x86_64/PKGBUILD
(from rev 184742, kdeutils-kcalc/trunk/PKGBUILD)
  kdeutils-kcalc/repos/testing-x86_64/kdeutils-kcalc.install
(from rev 184742, kdeutils-kcalc/trunk/kdeutils-kcalc.install)

---+
 testing-i686/PKGBUILD |   32 
 testing-i686/kdeutils-kcalc.install   |   11 +++
 testing-x86_64/PKGBUILD   |   32 
 testing-x86_64/kdeutils-kcalc.install |   11 +++
 4 files changed, 86 insertions(+)

Copied: kdeutils-kcalc/repos/testing-i686/PKGBUILD (from rev 184742, 
kdeutils-kcalc/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:46:23 UTC (rev 184743)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kcalc
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='Scientific Calculator'
+url='http://kde.org/applications/utilities/kcalc/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kcalc-${pkgver}.tar.xz";)
+sha1sums=('c80f91c2f41a60cca670c8cb1b5e2c395e935fac')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kcalc-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kcalc/repos/testing-i686/kdeutils-kcalc.install (from rev 
184742, kdeutils-kcalc/trunk/kdeutils-kcalc.install)
===
--- testing-i686/kdeutils-kcalc.install (rev 0)
+++ testing-i686/kdeutils-kcalc.install 2013-05-07 16:46:23 UTC (rev 184743)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeutils-kcalc/repos/testing-x86_64/PKGBUILD (from rev 184742, 
kdeutils-kcalc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:46:23 UTC (rev 184743)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kcalc
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='Scientific Calculator'
+url='http://kde.org/applications/utilities/kcalc/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kcalc-${pkgver}.tar.xz";)
+sha1sums=('c80f91c2f41a60cca670c8cb1b5e2c395e935fac')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kcalc-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kcalc/repos/testing-x86_64/kdeutils-kcalc.install (from rev 
184742, kdeutils-kcalc/trunk/kdeutils-kcalc.install)
===
--- testing-x86_64/kdeutils-kcalc.install   (rev 0)
+++ testing-x86_64/kdeutils-kcalc.install   2013-05-07 16:46:23 UTC (rev 
184743)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:46:17
  Author: andrea
Revision: 184742

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

Added:
  kdeutils-filelight/repos/testing-i686/
  kdeutils-filelight/repos/testing-i686/PKGBUILD
(from rev 184741, kdeutils-filelight/trunk/PKGBUILD)
  kdeutils-filelight/repos/testing-i686/kdeutils-filelight.install
(from rev 184741, kdeutils-filelight/trunk/kdeutils-filelight.install)
  kdeutils-filelight/repos/testing-x86_64/
  kdeutils-filelight/repos/testing-x86_64/PKGBUILD
(from rev 184741, kdeutils-filelight/trunk/PKGBUILD)
  kdeutils-filelight/repos/testing-x86_64/kdeutils-filelight.install
(from rev 184741, kdeutils-filelight/trunk/kdeutils-filelight.install)

---+
 testing-i686/PKGBUILD |   34 
 testing-i686/kdeutils-filelight.install   |   12 +
 testing-x86_64/PKGBUILD   |   34 
 testing-x86_64/kdeutils-filelight.install |   12 +
 4 files changed, 92 insertions(+)

Copied: kdeutils-filelight/repos/testing-i686/PKGBUILD (from rev 184741, 
kdeutils-filelight/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:46:17 UTC (rev 184742)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-filelight
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='View disk usage information'
+url='http://kde.org/applications/utilities/filelight'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+replaces=('filelight')
+conflicts=('filelight')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/filelight-${pkgver}.tar.xz";)
+sha1sums=('ebfa5a9cc39abf311208d6a9d058e5003cb4daf8')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../filelight-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-filelight/repos/testing-i686/kdeutils-filelight.install (from 
rev 184741, kdeutils-filelight/trunk/kdeutils-filelight.install)
===
--- testing-i686/kdeutils-filelight.install (rev 0)
+++ testing-i686/kdeutils-filelight.install 2013-05-07 16:46:17 UTC (rev 
184742)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeutils-filelight/repos/testing-x86_64/PKGBUILD (from rev 184741, 
kdeutils-filelight/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:46:17 UTC (rev 184742)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-filelight
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='View disk usage information'
+url='http://kde.org/applications/utilities/filelight'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdeutils')
+replaces=('filelight')
+conflicts=('filelight')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/filelight-${pkgver}.tar.xz";)
+sha1sums=('ebfa5a9cc39abf311208d6a9d058e5003cb4daf8')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../filelight-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-filelight/repos/testing-x86_64/kdeutils-filelight.install 
(from rev 184741, kdeutils-filelight/trunk/kdeutils-filelight.install)
===
--- testing-x86_64/kdeutils-filelight.install   (rev 0)
+++ testing-x86_64/kdeutils-filelight.install   2013-05-07 16:46:17 UTC (rev 
184742)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:46:10
  Author: andrea
Revision: 184741

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

Added:
  kdeutils-ark/repos/testing-i686/
  kdeutils-ark/repos/testing-i686/PKGBUILD
(from rev 184740, kdeutils-ark/trunk/PKGBUILD)
  kdeutils-ark/repos/testing-i686/kdeutils-ark.install
(from rev 184740, kdeutils-ark/trunk/kdeutils-ark.install)
  kdeutils-ark/repos/testing-x86_64/
  kdeutils-ark/repos/testing-x86_64/PKGBUILD
(from rev 184740, kdeutils-ark/trunk/PKGBUILD)
  kdeutils-ark/repos/testing-x86_64/kdeutils-ark.install
(from rev 184740, kdeutils-ark/trunk/kdeutils-ark.install)

-+
 testing-i686/PKGBUILD   |   33 +
 testing-i686/kdeutils-ark.install   |   12 
 testing-x86_64/PKGBUILD |   33 +
 testing-x86_64/kdeutils-ark.install |   12 
 4 files changed, 90 insertions(+)

Copied: kdeutils-ark/repos/testing-i686/PKGBUILD (from rev 184740, 
kdeutils-ark/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:46:10 UTC (rev 184741)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-ark
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='Archiving Tool'
+url='http://kde.org/applications/utilities/ark/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeutils')
+depends=('kdebase-runtime' 'kdebase-lib' 'libarchive' 'qjson')
+makedepends=('cmake' 'automoc4')
+optdepends=('p7zip' 'zip' 'unzip' 'unrar')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ark-${pkgver}.tar.xz";)
+sha1sums=('26437751ddf6f466a948a402f253f66bfc19660e')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../ark-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-ark/repos/testing-i686/kdeutils-ark.install (from rev 184740, 
kdeutils-ark/trunk/kdeutils-ark.install)
===
--- testing-i686/kdeutils-ark.install   (rev 0)
+++ testing-i686/kdeutils-ark.install   2013-05-07 16:46:10 UTC (rev 184741)
@@ -0,0 +1,12 @@
+post_install() {
+update-desktop-database -q
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_update() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: kdeutils-ark/repos/testing-x86_64/PKGBUILD (from rev 184740, 
kdeutils-ark/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:46:10 UTC (rev 184741)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-ark
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='Archiving Tool'
+url='http://kde.org/applications/utilities/ark/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeutils')
+depends=('kdebase-runtime' 'kdebase-lib' 'libarchive' 'qjson')
+makedepends=('cmake' 'automoc4')
+optdepends=('p7zip' 'zip' 'unzip' 'unrar')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ark-${pkgver}.tar.xz";)
+sha1sums=('26437751ddf6f466a948a402f253f66bfc19660e')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../ark-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-ark/repos/testing-x86_64/kdeutils-ark.install (from rev 
184740, kdeutils-ark/trunk/kdeutils-ark.install)
===
--- testing-x86_64/kdeutils-ark.install (rev 0)
+++ testing-x86_64/kdeutils-ark.install 2013-05-07 16:46:10 UTC (rev 184741)
@@ -0,0 +1,12 @@
+post_install() {
+update-desktop-database -q
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_update() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:46:04
  Author: andrea
Revision: 184740

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

Added:
  kdetoys/repos/testing-i686/
  kdetoys/repos/testing-i686/PKGBUILD
(from rev 184739, kdetoys/trunk/PKGBUILD)
  kdetoys/repos/testing-i686/kdetoys.install
(from rev 184739, kdetoys/trunk/kdetoys.install)
  kdetoys/repos/testing-x86_64/
  kdetoys/repos/testing-x86_64/PKGBUILD
(from rev 184739, kdetoys/trunk/PKGBUILD)
  kdetoys/repos/testing-x86_64/kdetoys.install
(from rev 184739, kdetoys/trunk/kdetoys.install)

+
 testing-i686/PKGBUILD  |   53 +++
 testing-i686/kdetoys.install   |   11 
 testing-x86_64/PKGBUILD|   53 +++
 testing-x86_64/kdetoys.install |   11 
 4 files changed, 128 insertions(+)

Copied: kdetoys/repos/testing-i686/PKGBUILD (from rev 184739, 
kdetoys/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:46:04 UTC (rev 184740)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdetoys
+pkgname=('kdetoys-amor'
+ 'kdetoys-kteatime'
+ 'kdetoys-ktux')
+pkgver=4.10.3
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdetoys')
+makedepends=('cmake' 'automoc4' 'kdebase-workspace')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('1272b33ff3ef669ab309c8c230d3609d597c743b')
+
+build() {
+   cd $srcdir
+   mkdir build
+   cd build
+   cmake ../${pkgbase}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_SKIP_RPATH=ON \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package_kdetoys-amor() {
+   pkgdesc='On-Screen Creature'
+   depends=('kdebase-runtime')
+   install='kdetoys.install'
+   cd $srcdir/build/amor
+   make DESTDIR=$pkgdir install
+}
+
+package_kdetoys-kteatime() {
+   pkgdesc='Tea Cooker'
+   depends=('kdebase-runtime')
+   install='kdetoys.install'
+   cd $srcdir/build/kteatime
+   make DESTDIR=$pkgdir install
+}
+
+package_kdetoys-ktux() {
+   pkgdesc='KTux'
+   depends=('kdebase-workspace' )
+   install='kdetoys.install'
+   cd $srcdir/build/ktux
+   make DESTDIR=$pkgdir install
+}

Copied: kdetoys/repos/testing-i686/kdetoys.install (from rev 184739, 
kdetoys/trunk/kdetoys.install)
===
--- testing-i686/kdetoys.install(rev 0)
+++ testing-i686/kdetoys.install2013-05-07 16:46:04 UTC (rev 184740)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdetoys/repos/testing-x86_64/PKGBUILD (from rev 184739, 
kdetoys/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:46:04 UTC (rev 184740)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdetoys
+pkgname=('kdetoys-amor'
+ 'kdetoys-kteatime'
+ 'kdetoys-ktux')
+pkgver=4.10.3
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdetoys')
+makedepends=('cmake' 'automoc4' 'kdebase-workspace')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('1272b33ff3ef669ab309c8c230d3609d597c743b')
+
+build() {
+   cd $srcdir
+   mkdir build
+   cd build
+   cmake ../${pkgbase}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_SKIP_RPATH=ON \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package_kdetoys-amor() {
+   pkgdesc='On-Screen Creature'
+   depends=('kdebase-runtime')
+   install='kdetoys.install'
+   cd $srcdir/build/amor
+   make DESTDIR=$pkgdir install
+}
+
+package_kdetoys-kteatime() {
+   pkgdesc='Tea Cooker'
+   depends=('kdebase-runtime')
+   install='kdetoys.install'
+   cd $srcdir/build/kteatime
+   make DESTDIR=$pkgdir install
+}
+
+package_kdetoys-ktux() {
+   pkgdesc='KTux'
+   depends=('kdebase-workspace' )
+   install='kdetoys.install'
+   cd $srcdir/build/ktux
+   make DESTDIR=$pkgdir install
+}

Copied: kdetoys/repos/testing-x86_64/kdetoys.install (from rev 184739, 
kdetoys/trunk/kdetoys.install)
===
--- testing-x8

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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:45:54
  Author: andrea
Revision: 184739

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

Added:
  kdesdk/repos/testing-i686/
  kdesdk/repos/testing-i686/PKGBUILD
(from rev 184738, kdesdk/trunk/PKGBUILD)
  kdesdk/repos/testing-i686/fix-python2-path.patch
(from rev 184738, kdesdk/trunk/fix-python2-path.patch)
  kdesdk/repos/testing-i686/kdesdk-cervisia.install
(from rev 184738, kdesdk/trunk/kdesdk-cervisia.install)
  kdesdk/repos/testing-i686/kdesdk-dev-utils.install
(from rev 184738, kdesdk/trunk/kdesdk-dev-utils.install)
  kdesdk/repos/testing-i686/kdesdk-kcachegrind.install
(from rev 184738, kdesdk/trunk/kdesdk-kcachegrind.install)
  kdesdk/repos/testing-i686/kdesdk-kompare.install
(from rev 184738, kdesdk/trunk/kdesdk-kompare.install)
  kdesdk/repos/testing-i686/kdesdk-lokalize.install
(from rev 184738, kdesdk/trunk/kdesdk-lokalize.install)
  kdesdk/repos/testing-i686/kdesdk-okteta.install
(from rev 184738, kdesdk/trunk/kdesdk-okteta.install)
  kdesdk/repos/testing-i686/kdesdk-umbrello.install
(from rev 184738, kdesdk/trunk/kdesdk-umbrello.install)
  kdesdk/repos/testing-i686/kdesdk.install
(from rev 184738, kdesdk/trunk/kdesdk.install)
  kdesdk/repos/testing-x86_64/
  kdesdk/repos/testing-x86_64/PKGBUILD
(from rev 184738, kdesdk/trunk/PKGBUILD)
  kdesdk/repos/testing-x86_64/fix-python2-path.patch
(from rev 184738, kdesdk/trunk/fix-python2-path.patch)
  kdesdk/repos/testing-x86_64/kdesdk-cervisia.install
(from rev 184738, kdesdk/trunk/kdesdk-cervisia.install)
  kdesdk/repos/testing-x86_64/kdesdk-dev-utils.install
(from rev 184738, kdesdk/trunk/kdesdk-dev-utils.install)
  kdesdk/repos/testing-x86_64/kdesdk-kcachegrind.install
(from rev 184738, kdesdk/trunk/kdesdk-kcachegrind.install)
  kdesdk/repos/testing-x86_64/kdesdk-kompare.install
(from rev 184738, kdesdk/trunk/kdesdk-kompare.install)
  kdesdk/repos/testing-x86_64/kdesdk-lokalize.install
(from rev 184738, kdesdk/trunk/kdesdk-lokalize.install)
  kdesdk/repos/testing-x86_64/kdesdk-okteta.install
(from rev 184738, kdesdk/trunk/kdesdk-okteta.install)
  kdesdk/repos/testing-x86_64/kdesdk-umbrello.install
(from rev 184738, kdesdk/trunk/kdesdk-umbrello.install)
  kdesdk/repos/testing-x86_64/kdesdk.install
(from rev 184738, kdesdk/trunk/kdesdk.install)

---+
 testing-i686/PKGBUILD |  198 
 testing-i686/fix-python2-path.patch   |   22 +++
 testing-i686/kdesdk-cervisia.install  |   12 +
 testing-i686/kdesdk-dev-utils.install |   12 +
 testing-i686/kdesdk-kcachegrind.install   |   12 +
 testing-i686/kdesdk-kompare.install   |   12 +
 testing-i686/kdesdk-lokalize.install  |   12 +
 testing-i686/kdesdk-okteta.install|   12 +
 testing-i686/kdesdk-umbrello.install  |   12 +
 testing-i686/kdesdk.install   |   11 +
 testing-x86_64/PKGBUILD   |  198 
 testing-x86_64/fix-python2-path.patch |   22 +++
 testing-x86_64/kdesdk-cervisia.install|   12 +
 testing-x86_64/kdesdk-dev-utils.install   |   12 +
 testing-x86_64/kdesdk-kcachegrind.install |   12 +
 testing-x86_64/kdesdk-kompare.install |   12 +
 testing-x86_64/kdesdk-lokalize.install|   12 +
 testing-x86_64/kdesdk-okteta.install  |   12 +
 testing-x86_64/kdesdk-umbrello.install|   12 +
 testing-x86_64/kdesdk.install |   11 +
 20 files changed, 630 insertions(+)

Copied: kdesdk/repos/testing-i686/PKGBUILD (from rev 184738, 
kdesdk/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:45:54 UTC (rev 184739)
@@ -0,0 +1,198 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdesdk
+pkgname=('kdesdk-cervisia'
+ 'kdesdk-dolphin-plugins'
+ 'kdesdk-dev-utils'
+ 'kdesdk-dev-scripts'
+ 'kdesdk-kapptemplate'
+ 'kdesdk-kcachegrind'
+ 'kdesdk-kioslaves'
+ 'kdesdk-kompare'
+ 'kdesdk-lokalize'
+ 'kdesdk-okteta'
+ 'kdesdk-poxml'
+ 'kdesdk-strigi-analyzers'
+ 'kdesdk-umbrello')
+pkgver=4.10.3
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+makedepends=('cmake' 'automoc4' 'boost' 'subversion' 'antlr2' 'kdepimlibs'
+ 'kdebase-lib')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";
+'fix-python2-path.patch')
+sha1sums=('84d16fb8ecea59118c4bbe273d1b8149c6739c0a'
+  '07db42bbcae402c292eebf002e549b04162621c5')
+
+build() {
+   cd ${srcdir}/${pkgbase}-${pkgver}
+
+   # Fix hardcoded python2 cmd
+   patch -Np1 -i ${srcdir}/fix-python2-path.patch
+
+   cd ${srcdir}
+   mkdir build
+   cd build

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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:45:29
  Author: andrea
Revision: 184738

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

Added:
  kdeplasma-addons/repos/testing-i686/
  kdeplasma-addons/repos/testing-i686/PKGBUILD
(from rev 184737, kdeplasma-addons/trunk/PKGBUILD)
  kdeplasma-addons/repos/testing-i686/kdeplasma-addons-applets-lancelot.install
(from rev 184737, 
kdeplasma-addons/trunk/kdeplasma-addons-applets-lancelot.install)
  kdeplasma-addons/repos/testing-i686/kdeplasma-addons.install
(from rev 184737, kdeplasma-addons/trunk/kdeplasma-addons.install)
  kdeplasma-addons/repos/testing-x86_64/
  kdeplasma-addons/repos/testing-x86_64/PKGBUILD
(from rev 184737, kdeplasma-addons/trunk/PKGBUILD)
  
kdeplasma-addons/repos/testing-x86_64/kdeplasma-addons-applets-lancelot.install
(from rev 184737, 
kdeplasma-addons/trunk/kdeplasma-addons-applets-lancelot.install)
  kdeplasma-addons/repos/testing-x86_64/kdeplasma-addons.install
(from rev 184737, kdeplasma-addons/trunk/kdeplasma-addons.install)

--+
 testing-i686/PKGBUILD|  645 +
 testing-i686/kdeplasma-addons-applets-lancelot.install   |   12 
 testing-i686/kdeplasma-addons.install|   11 
 testing-x86_64/PKGBUILD  |  645 +
 testing-x86_64/kdeplasma-addons-applets-lancelot.install |   12 
 testing-x86_64/kdeplasma-addons.install  |   11 
 6 files changed, 1336 insertions(+)

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


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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:45:14
  Author: andrea
Revision: 184737

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

Added:
  kdepim/repos/testing-i686/
  kdepim/repos/testing-i686/PKGBUILD
(from rev 184736, kdepim/trunk/PKGBUILD)
  kdepim/repos/testing-i686/kdepim-akregator.install
(from rev 184736, kdepim/trunk/kdepim-akregator.install)
  kdepim/repos/testing-i686/kdepim-kleopatra.install
(from rev 184736, kdepim/trunk/kdepim-kleopatra.install)
  kdepim/repos/testing-i686/kdepim-kmail.install
(from rev 184736, kdepim/trunk/kdepim-kmail.install)
  kdepim/repos/testing-i686/kdepim-knode.install
(from rev 184736, kdepim/trunk/kdepim-knode.install)
  kdepim/repos/testing-i686/kdepim-korganizer.install
(from rev 184736, kdepim/trunk/kdepim-korganizer.install)
  kdepim/repos/testing-i686/kdepim-ktnef.install
(from rev 184736, kdepim/trunk/kdepim-ktnef.install)
  kdepim/repos/testing-i686/kdepim.install
(from rev 184736, kdepim/trunk/kdepim.install)
  kdepim/repos/testing-x86_64/
  kdepim/repos/testing-x86_64/PKGBUILD
(from rev 184736, kdepim/trunk/PKGBUILD)
  kdepim/repos/testing-x86_64/kdepim-akregator.install
(from rev 184736, kdepim/trunk/kdepim-akregator.install)
  kdepim/repos/testing-x86_64/kdepim-kleopatra.install
(from rev 184736, kdepim/trunk/kdepim-kleopatra.install)
  kdepim/repos/testing-x86_64/kdepim-kmail.install
(from rev 184736, kdepim/trunk/kdepim-kmail.install)
  kdepim/repos/testing-x86_64/kdepim-knode.install
(from rev 184736, kdepim/trunk/kdepim-knode.install)
  kdepim/repos/testing-x86_64/kdepim-korganizer.install
(from rev 184736, kdepim/trunk/kdepim-korganizer.install)
  kdepim/repos/testing-x86_64/kdepim-ktnef.install
(from rev 184736, kdepim/trunk/kdepim-ktnef.install)
  kdepim/repos/testing-x86_64/kdepim.install
(from rev 184736, kdepim/trunk/kdepim.install)

--+
 testing-i686/PKGBUILD|  262 +
 testing-i686/kdepim-akregator.install|   12 +
 testing-i686/kdepim-kleopatra.install|   12 +
 testing-i686/kdepim-kmail.install|   12 +
 testing-i686/kdepim-knode.install|   12 +
 testing-i686/kdepim-korganizer.install   |   12 +
 testing-i686/kdepim-ktnef.install|   12 +
 testing-i686/kdepim.install  |   11 +
 testing-x86_64/PKGBUILD  |  262 +
 testing-x86_64/kdepim-akregator.install  |   12 +
 testing-x86_64/kdepim-kleopatra.install  |   12 +
 testing-x86_64/kdepim-kmail.install  |   12 +
 testing-x86_64/kdepim-knode.install  |   12 +
 testing-x86_64/kdepim-korganizer.install |   12 +
 testing-x86_64/kdepim-ktnef.install  |   12 +
 testing-x86_64/kdepim.install|   11 +
 16 files changed, 690 insertions(+)

Copied: kdepim/repos/testing-i686/PKGBUILD (from rev 184736, 
kdepim/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:45:14 UTC (rev 184737)
@@ -0,0 +1,262 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdepim
+pkgname=('kdepim-akonadiconsole'
+ 'kdepim-akregator'
+ 'kdepim-blogilo'
+ 'kdepim-console'
+ 'kdepim-kaddressbook'
+ 'kdepim-kalarm'
+ 'kdepim-kjots'
+ 'kdepim-kleopatra'
+ 'kdepim-kmail'
+ 'kdepim-knode'
+ 'kdepim-knotes'
+ 'kdepim-kontact'
+ 'kdepim-korganizer'
+ 'kdepim-kresources'
+ 'kdepim-ktimetracker'
+ 'kdepim-ktnef'
+ 'kdepim-libkdepim')
+pkgver=4.10.3
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://pim.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdepim')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'libxss' 'pilot-link'
+ 'kde-agent' 'nepomuk-widgets')
+ 
source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('78ca9b822f905355ec00142a7de6c08c38b97c08')
+
+build() {
+   mkdir build
+   cd build
+   cmake ../${pkgbase}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_SKIP_RPATH=ON \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DKDEPIM_BUILD_MOBILE=OFF
+   make
+}
+
+package_kdepim-akonadiconsole() {
+   pkgdesc='Akonadi Management and Debugging Console'
+   depends=('kdepim-libkdepim' 'nepomuk-widgets')
+   url='http://pim.kde.org'
+   install='kdepim.install'
+   cd "${srcdir}"/build/akonadiconsole
+   make DESTDIR="${pkgdir}" install
+}
+
+package_kdepim-akregator() {
+   pkgdesc='A Feed Reader for KDE'
+   depends=('kdepim-libkdepim')
+   url="http://kde.org/applications/internet/akregator/";
+   install='kdepim-akregator.install'
+   cd "${srcdir}"/build

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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:44:51
  Author: andrea
Revision: 184736

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

Added:
  kdenetwork/repos/testing-i686/
  kdenetwork/repos/testing-i686/PKGBUILD
(from rev 184735, kdenetwork/trunk/PKGBUILD)
  kdenetwork/repos/testing-i686/kdenetwork-kget.install
(from rev 184735, kdenetwork/trunk/kdenetwork-kget.install)
  kdenetwork/repos/testing-i686/kdenetwork-kopete.install
(from rev 184735, kdenetwork/trunk/kdenetwork-kopete.install)
  kdenetwork/repos/testing-i686/kdenetwork-kppp.install
(from rev 184735, kdenetwork/trunk/kdenetwork-kppp.install)
  kdenetwork/repos/testing-i686/kdenetwork.install
(from rev 184735, kdenetwork/trunk/kdenetwork.install)
  kdenetwork/repos/testing-i686/use-libotr3.patch
(from rev 184735, kdenetwork/trunk/use-libotr3.patch)
  kdenetwork/repos/testing-x86_64/
  kdenetwork/repos/testing-x86_64/PKGBUILD
(from rev 184735, kdenetwork/trunk/PKGBUILD)
  kdenetwork/repos/testing-x86_64/kdenetwork-kget.install
(from rev 184735, kdenetwork/trunk/kdenetwork-kget.install)
  kdenetwork/repos/testing-x86_64/kdenetwork-kopete.install
(from rev 184735, kdenetwork/trunk/kdenetwork-kopete.install)
  kdenetwork/repos/testing-x86_64/kdenetwork-kppp.install
(from rev 184735, kdenetwork/trunk/kdenetwork-kppp.install)
  kdenetwork/repos/testing-x86_64/kdenetwork.install
(from rev 184735, kdenetwork/trunk/kdenetwork.install)
  kdenetwork/repos/testing-x86_64/use-libotr3.patch
(from rev 184735, kdenetwork/trunk/use-libotr3.patch)

--+
 testing-i686/PKGBUILD|  119 +
 testing-i686/kdenetwork-kget.install |   12 ++
 testing-i686/kdenetwork-kopete.install   |   12 ++
 testing-i686/kdenetwork-kppp.install |   12 ++
 testing-i686/kdenetwork.install  |   11 ++
 testing-i686/use-libotr3.patch   |   71 +
 testing-x86_64/PKGBUILD  |  119 +
 testing-x86_64/kdenetwork-kget.install   |   12 ++
 testing-x86_64/kdenetwork-kopete.install |   12 ++
 testing-x86_64/kdenetwork-kppp.install   |   12 ++
 testing-x86_64/kdenetwork.install|   11 ++
 testing-x86_64/use-libotr3.patch |   71 +
 12 files changed, 474 insertions(+)

Copied: kdenetwork/repos/testing-i686/PKGBUILD (from rev 184735, 
kdenetwork/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:44:51 UTC (rev 184736)
@@ -0,0 +1,119 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdenetwork
+pkgname=('kdenetwork-filesharing'
+ 'kdenetwork-kdnssd'
+ 'kdenetwork-kget'
+ 'kdenetwork-kopete'
+ 'kdenetwork-kppp'
+ 'kdenetwork-krdc'
+ 'kdenetwork-krfb')
+pkgver=4.10.3
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdenetwork')
+makedepends=('cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr3' 'ppp'
+   'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver'
+'v4l-utils' 'libidn' 'qimageblitz' 'libxdamage' 'libgadu' 'libmsn'
+'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";
+'use-libotr3.patch')
+sha1sums=('9c5e14b1ebc575777d1e6d09b593f62940a4fd1d'
+  '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384')
+
+build() {
+cd ${pkgbase}-${pkgver}
+patch -p1 -i "${srcdir}"/use-libotr3.patch
+cd ../
+
+   mkdir build
+   cd build
+   cmake ../${pkgbase}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_SKIP_RPATH=ON \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DMOZPLUGIN_INSTALL_DIR=/usr/lib/mozilla/plugins/ \
+   -DWITH_Xmms=OFF \
+   -DWITH_LibMeanwhile=OFF \
+   -DWITH_qq=OFF
+   make
+}
+
+package_kdenetwork-filesharing() {
+   pkgdesc='Konqueror properties dialog plugin to share a directory with 
the local network'
+   depends=('kdelibs' 'smbclient')
+   install='kdenetwork.install'
+   cd $srcdir/build/filesharing
+   make DESTDIR=$pkgdir install
+}
+
+package_kdenetwork-kdnssd() {
+   pkgdesc='Monitors the network for DNS-SD services'
+   depends=('kdelibs')
+   cd $srcdir/build/kdnssd
+   make DESTDIR=$pkgdir install
+}
+
+package_kdenetwork-kget() {
+   pkgdesc='Download Manager'
+   depends=('kdebase-workspace' 'kdebase-lib' 'libktorrent' 'libmms')
+   url="http://kde.org/applications/internet/kget/";
+   install='kdenetwork-kget.install'
+   cd $srcdir/build/kget
+   make DESTDIR=$pkgdir install
+   cd $srcdir/build/doc/kget
+   make DESTDIR=$pkgdir ins

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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:44:39
  Author: andrea
Revision: 184735

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

Added:
  kdemultimedia-mplayerthumbs/repos/testing-i686/
  kdemultimedia-mplayerthumbs/repos/testing-i686/PKGBUILD
(from rev 184734, kdemultimedia-mplayerthumbs/trunk/PKGBUILD)
  kdemultimedia-mplayerthumbs/repos/testing-x86_64/
  kdemultimedia-mplayerthumbs/repos/testing-x86_64/PKGBUILD
(from rev 184734, kdemultimedia-mplayerthumbs/trunk/PKGBUILD)

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

Copied: kdemultimedia-mplayerthumbs/repos/testing-i686/PKGBUILD (from rev 
184734, kdemultimedia-mplayerthumbs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:44:39 UTC (rev 184735)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-mplayerthumbs
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="MPlayer based thumbnail generator for video files"
+url='https://projects.kde.org/projects/kde/kdemultimedia/mplayerthumbs'
+arch=('i686' 'x86_64')
+groups=('kde' 'kdemultimedia')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime' 'mplayer')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/mplayerthumbs-${pkgver}.tar.xz";)
+sha1sums=('f6446375ff72ffa841c223252dea1f0f95d73939')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../mplayerthumbs-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdemultimedia-mplayerthumbs/repos/testing-x86_64/PKGBUILD (from rev 
184734, kdemultimedia-mplayerthumbs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:44:39 UTC (rev 184735)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-mplayerthumbs
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="MPlayer based thumbnail generator for video files"
+url='https://projects.kde.org/projects/kde/kdemultimedia/mplayerthumbs'
+arch=('i686' 'x86_64')
+groups=('kde' 'kdemultimedia')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime' 'mplayer')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/mplayerthumbs-${pkgver}.tar.xz";)
+sha1sums=('f6446375ff72ffa841c223252dea1f0f95d73939')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../mplayerthumbs-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:44:30
  Author: andrea
Revision: 184734

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

Added:
  kdemultimedia-kscd/repos/testing-i686/
  kdemultimedia-kscd/repos/testing-i686/PKGBUILD
(from rev 184733, kdemultimedia-kscd/trunk/PKGBUILD)
  kdemultimedia-kscd/repos/testing-i686/kdemultimedia-kscd.install
(from rev 184733, kdemultimedia-kscd/trunk/kdemultimedia-kscd.install)
  kdemultimedia-kscd/repos/testing-x86_64/
  kdemultimedia-kscd/repos/testing-x86_64/PKGBUILD
(from rev 184733, kdemultimedia-kscd/trunk/PKGBUILD)
  kdemultimedia-kscd/repos/testing-x86_64/kdemultimedia-kscd.install
(from rev 184733, kdemultimedia-kscd/trunk/kdemultimedia-kscd.install)

---+
 testing-i686/PKGBUILD |   31 
 testing-i686/kdemultimedia-kscd.install   |   11 +
 testing-x86_64/PKGBUILD   |   31 
 testing-x86_64/kdemultimedia-kscd.install |   11 +
 4 files changed, 84 insertions(+)

Copied: kdemultimedia-kscd/repos/testing-i686/PKGBUILD (from rev 184733, 
kdemultimedia-kscd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:44:30 UTC (rev 184734)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-kscd
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="KDE CD player"
+url='http://kde.org/applications/multimedia/kscd/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdemultimedia')
+depends=('kdebase-runtime' 'libmusicbrainz3')
+makedepends=('cmake' 'automoc4')
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/${pkgver}/src/kscd-${pkgver}.tar.xz";)
+sha1sums=('e2cbfef5d1cdfcc7145fae803971d799f8739c37')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kscd-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdemultimedia-kscd/repos/testing-i686/kdemultimedia-kscd.install (from 
rev 184733, kdemultimedia-kscd/trunk/kdemultimedia-kscd.install)
===
--- testing-i686/kdemultimedia-kscd.install (rev 0)
+++ testing-i686/kdemultimedia-kscd.install 2013-05-07 16:44:30 UTC (rev 
184734)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: kdemultimedia-kscd/repos/testing-x86_64/PKGBUILD (from rev 184733, 
kdemultimedia-kscd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:44:30 UTC (rev 184734)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-kscd
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="KDE CD player"
+url='http://kde.org/applications/multimedia/kscd/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdemultimedia')
+depends=('kdebase-runtime' 'libmusicbrainz3')
+makedepends=('cmake' 'automoc4')
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/${pkgver}/src/kscd-${pkgver}.tar.xz";)
+sha1sums=('e2cbfef5d1cdfcc7145fae803971d799f8739c37')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kscd-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdemultimedia-kscd/repos/testing-x86_64/kdemultimedia-kscd.install 
(from rev 184733, kdemultimedia-kscd/trunk/kdemultimedia-kscd.install)
===
--- testing-x86_64/kdemultimedia-kscd.install   (rev 0)
+++ testing-x86_64/kdemultimedia-kscd.install   2013-05-07 16:44:30 UTC (rev 
184734)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:44:23
  Author: andrea
Revision: 184733

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

Added:
  kdemultimedia-kmix/repos/testing-i686/
  kdemultimedia-kmix/repos/testing-i686/PKGBUILD
(from rev 184732, kdemultimedia-kmix/trunk/PKGBUILD)
  kdemultimedia-kmix/repos/testing-i686/kdemultimedia-kmix.install
(from rev 184732, kdemultimedia-kmix/trunk/kdemultimedia-kmix.install)
  kdemultimedia-kmix/repos/testing-x86_64/
  kdemultimedia-kmix/repos/testing-x86_64/PKGBUILD
(from rev 184732, kdemultimedia-kmix/trunk/PKGBUILD)
  kdemultimedia-kmix/repos/testing-x86_64/kdemultimedia-kmix.install
(from rev 184732, kdemultimedia-kmix/trunk/kdemultimedia-kmix.install)

---+
 testing-i686/PKGBUILD |   32 
 testing-i686/kdemultimedia-kmix.install   |   11 +
 testing-x86_64/PKGBUILD   |   32 
 testing-x86_64/kdemultimedia-kmix.install |   11 +
 4 files changed, 86 insertions(+)

Copied: kdemultimedia-kmix/repos/testing-i686/PKGBUILD (from rev 184732, 
kdemultimedia-kmix/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:44:23 UTC (rev 184733)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-kmix
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="KDE volume control program"
+url='http://kde.org/applications/multimedia/kmix/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdemultimedia')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/${pkgver}/src/kmix-${pkgver}.tar.xz";)
+sha1sums=('09289c9bb6bd5e592d214f3f665078010e9a7dd2')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kmix-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdemultimedia-kmix/repos/testing-i686/kdemultimedia-kmix.install (from 
rev 184732, kdemultimedia-kmix/trunk/kdemultimedia-kmix.install)
===
--- testing-i686/kdemultimedia-kmix.install (rev 0)
+++ testing-i686/kdemultimedia-kmix.install 2013-05-07 16:44:23 UTC (rev 
184733)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: kdemultimedia-kmix/repos/testing-x86_64/PKGBUILD (from rev 184732, 
kdemultimedia-kmix/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:44:23 UTC (rev 184733)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-kmix
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="KDE volume control program"
+url='http://kde.org/applications/multimedia/kmix/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdemultimedia')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/${pkgver}/src/kmix-${pkgver}.tar.xz";)
+sha1sums=('09289c9bb6bd5e592d214f3f665078010e9a7dd2')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kmix-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdemultimedia-kmix/repos/testing-x86_64/kdemultimedia-kmix.install 
(from rev 184732, kdemultimedia-kmix/trunk/kdemultimedia-kmix.install)
===
--- testing-x86_64/kdemultimedia-kmix.install   (rev 0)
+++ testing-x86_64/kdemultimedia-kmix.install   2013-05-07 16:44:23 UTC (rev 
184733)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:44:17
  Author: andrea
Revision: 184732

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

Added:
  kdemultimedia-juk/repos/testing-i686/
  kdemultimedia-juk/repos/testing-i686/PKGBUILD
(from rev 184731, kdemultimedia-juk/trunk/PKGBUILD)
  kdemultimedia-juk/repos/testing-i686/kdemultimedia-juk.install
(from rev 184731, kdemultimedia-juk/trunk/kdemultimedia-juk.install)
  kdemultimedia-juk/repos/testing-x86_64/
  kdemultimedia-juk/repos/testing-x86_64/PKGBUILD
(from rev 184731, kdemultimedia-juk/trunk/PKGBUILD)
  kdemultimedia-juk/repos/testing-x86_64/kdemultimedia-juk.install
(from rev 184731, kdemultimedia-juk/trunk/kdemultimedia-juk.install)

--+
 testing-i686/PKGBUILD|   33 +
 testing-i686/kdemultimedia-juk.install   |   11 +
 testing-x86_64/PKGBUILD  |   33 +
 testing-x86_64/kdemultimedia-juk.install |   11 +
 4 files changed, 88 insertions(+)

Copied: kdemultimedia-juk/repos/testing-i686/PKGBUILD (from rev 184731, 
kdemultimedia-juk/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:44:17 UTC (rev 184732)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-juk
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='A jukebox, tagger and music collection manager'
+url='http://kde.org/applications/multimedia/juk/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdemultimedia')
+depends=('kdebase-runtime' 'taglib')
+makedepends=('cmake' 'automoc4')
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/${pkgver}/src/juk-${pkgver}.tar.xz";)
+sha1sums=('d889a49e4cafef2ed10879a7e314e1d14bb09dd5')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../juk-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_TunePimp=OFF
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdemultimedia-juk/repos/testing-i686/kdemultimedia-juk.install (from 
rev 184731, kdemultimedia-juk/trunk/kdemultimedia-juk.install)
===
--- testing-i686/kdemultimedia-juk.install  (rev 0)
+++ testing-i686/kdemultimedia-juk.install  2013-05-07 16:44:17 UTC (rev 
184732)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: kdemultimedia-juk/repos/testing-x86_64/PKGBUILD (from rev 184731, 
kdemultimedia-juk/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:44:17 UTC (rev 184732)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-juk
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='A jukebox, tagger and music collection manager'
+url='http://kde.org/applications/multimedia/juk/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdemultimedia')
+depends=('kdebase-runtime' 'taglib')
+makedepends=('cmake' 'automoc4')
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/${pkgver}/src/juk-${pkgver}.tar.xz";)
+sha1sums=('d889a49e4cafef2ed10879a7e314e1d14bb09dd5')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../juk-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_TunePimp=OFF
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdemultimedia-juk/repos/testing-x86_64/kdemultimedia-juk.install (from 
rev 184731, kdemultimedia-juk/trunk/kdemultimedia-juk.install)
===
--- testing-x86_64/kdemultimedia-juk.install(rev 0)
+++ testing-x86_64/kdemultimedia-juk.install2013-05-07 16:44:17 UTC (rev 
184732)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:44:10
  Author: andrea
Revision: 184731

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

Added:
  kdemultimedia-ffmpegthumbs/repos/testing-i686/
  kdemultimedia-ffmpegthumbs/repos/testing-i686/PKGBUILD
(from rev 184730, kdemultimedia-ffmpegthumbs/trunk/PKGBUILD)
  kdemultimedia-ffmpegthumbs/repos/testing-x86_64/
  kdemultimedia-ffmpegthumbs/repos/testing-x86_64/PKGBUILD
(from rev 184730, kdemultimedia-ffmpegthumbs/trunk/PKGBUILD)

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

Copied: kdemultimedia-ffmpegthumbs/repos/testing-i686/PKGBUILD (from rev 
184730, kdemultimedia-ffmpegthumbs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:44:10 UTC (rev 184731)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-ffmpegthumbs
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='FFmpeg-based thumbnail creator for video files'
+url='https://projects.kde.org/projects/kde/kdemultimedia/ffmpegthumbs'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdemultimedia')
+depends=('kdelibs' 'ffmpeg')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/ffmpegthumbs-${pkgver}.tar.xz";)
+sha1sums=('1b4508d3f1c74a8d1a6136f27ba233ae3fb84eda')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../ffmpegthumbs-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdemultimedia-ffmpegthumbs/repos/testing-x86_64/PKGBUILD (from rev 
184730, kdemultimedia-ffmpegthumbs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:44:10 UTC (rev 184731)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-ffmpegthumbs
+pkgver=4.10.3
+pkgrel=1
+pkgdesc='FFmpeg-based thumbnail creator for video files'
+url='https://projects.kde.org/projects/kde/kdemultimedia/ffmpegthumbs'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdemultimedia')
+depends=('kdelibs' 'ffmpeg')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/ffmpegthumbs-${pkgver}.tar.xz";)
+sha1sums=('1b4508d3f1c74a8d1a6136f27ba233ae3fb84eda')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../ffmpegthumbs-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:44:02
  Author: andrea
Revision: 184730

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

Added:
  kdemultimedia-dragonplayer/repos/testing-i686/
  kdemultimedia-dragonplayer/repos/testing-i686/PKGBUILD
(from rev 184729, kdemultimedia-dragonplayer/trunk/PKGBUILD)
  
kdemultimedia-dragonplayer/repos/testing-i686/kdemultimedia-dragonplayer.install
(from rev 184729, 
kdemultimedia-dragonplayer/trunk/kdemultimedia-dragonplayer.install)
  kdemultimedia-dragonplayer/repos/testing-x86_64/
  kdemultimedia-dragonplayer/repos/testing-x86_64/PKGBUILD
(from rev 184729, kdemultimedia-dragonplayer/trunk/PKGBUILD)
  
kdemultimedia-dragonplayer/repos/testing-x86_64/kdemultimedia-dragonplayer.install
(from rev 184729, 
kdemultimedia-dragonplayer/trunk/kdemultimedia-dragonplayer.install)

---+
 testing-i686/PKGBUILD |   33 
 testing-i686/kdemultimedia-dragonplayer.install   |   12 +++
 testing-x86_64/PKGBUILD   |   33 
 testing-x86_64/kdemultimedia-dragonplayer.install |   12 +++
 4 files changed, 90 insertions(+)

Copied: kdemultimedia-dragonplayer/repos/testing-i686/PKGBUILD (from rev 
184729, kdemultimedia-dragonplayer/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:44:02 UTC (rev 184730)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-dragonplayer
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A multimedia player where the focus is on simplicity, instead of
+features"
+url='http://kde.org/applications/multimedia/dragonplayer/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdemultimedia')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/${pkgver}/src/dragon-${pkgver}.tar.xz";)
+sha1sums=('9ebb61b985a6054f690ff8f89e638ad8da6a483a')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../dragon-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
kdemultimedia-dragonplayer/repos/testing-i686/kdemultimedia-dragonplayer.install
 (from rev 184729, 
kdemultimedia-dragonplayer/trunk/kdemultimedia-dragonplayer.install)
===
--- testing-i686/kdemultimedia-dragonplayer.install 
(rev 0)
+++ testing-i686/kdemultimedia-dragonplayer.install 2013-05-07 16:44:02 UTC 
(rev 184730)
@@ -0,0 +1,12 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: kdemultimedia-dragonplayer/repos/testing-x86_64/PKGBUILD (from rev 
184729, kdemultimedia-dragonplayer/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:44:02 UTC (rev 184730)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-dragonplayer
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A multimedia player where the focus is on simplicity, instead of
+features"
+url='http://kde.org/applications/multimedia/dragonplayer/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdemultimedia')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/${pkgver}/src/dragon-${pkgver}.tar.xz";)
+sha1sums=('9ebb61b985a6054f690ff8f89e638ad8da6a483a')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../dragon-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
kdemultimedia-dragonplayer/repos/testing-x86_64/kdemultimedia-dragonplayer.install
 (from rev 184729, 
kdemultimedia-dragonplayer/trunk/kdemultimedia-dragonplayer.install)
===
--- testing-x86_64/kdemultimedia-dragonplayer.install   
(rev 0)
+++ testing-x86_64/kdemultimedia-dragonplayer.install   2013-05-07 16:44:02 UTC 
(rev 184730)
@@ -0,0 +1,12 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



[arch-commits] Commit in kdemultimedia-audiocd-kio/repos (4 files)

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:43:54
  Author: andrea
Revision: 184729

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

Added:
  kdemultimedia-audiocd-kio/repos/testing-i686/
  kdemultimedia-audiocd-kio/repos/testing-i686/PKGBUILD
(from rev 184728, kdemultimedia-audiocd-kio/trunk/PKGBUILD)
  kdemultimedia-audiocd-kio/repos/testing-x86_64/
  kdemultimedia-audiocd-kio/repos/testing-x86_64/PKGBUILD
(from rev 184728, kdemultimedia-audiocd-kio/trunk/PKGBUILD)

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

Copied: kdemultimedia-audiocd-kio/repos/testing-i686/PKGBUILD (from rev 184728, 
kdemultimedia-audiocd-kio/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:43:54 UTC (rev 184729)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-audiocd-kio
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Kioslave for accessing audio CDs"
+url='https://projects.kde.org/projects/kde/kdemultimedia/audiocd-kio'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('libkcddb' 'libkcompactdisc' 'lame' 'cdparanoia')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdemultimedia')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')
+source=("http://download.kde.org/stable/${pkgver}/src/audiocd-kio-${pkgver}.tar.xz";)
+sha1sums=('5539c665dd3173493d0a45fb775c27a4a84a2b3d')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../audiocd-kio-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdemultimedia-audiocd-kio/repos/testing-x86_64/PKGBUILD (from rev 
184728, kdemultimedia-audiocd-kio/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:43:54 UTC (rev 184729)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-audiocd-kio
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Kioslave for accessing audio CDs"
+url='https://projects.kde.org/projects/kde/kdemultimedia/audiocd-kio'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('libkcddb' 'libkcompactdisc' 'lame' 'cdparanoia')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdemultimedia')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')
+source=("http://download.kde.org/stable/${pkgver}/src/audiocd-kio-${pkgver}.tar.xz";)
+sha1sums=('5539c665dd3173493d0a45fb775c27a4a84a2b3d')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../audiocd-kio-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:43:47
  Author: andrea
Revision: 184728

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

Added:
  kdegraphics-thumbnailers/repos/testing-i686/
  kdegraphics-thumbnailers/repos/testing-i686/PKGBUILD
(from rev 184727, kdegraphics-thumbnailers/trunk/PKGBUILD)
  kdegraphics-thumbnailers/repos/testing-x86_64/
  kdegraphics-thumbnailers/repos/testing-x86_64/PKGBUILD
(from rev 184727, kdegraphics-thumbnailers/trunk/PKGBUILD)

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

Copied: kdegraphics-thumbnailers/repos/testing-i686/PKGBUILD (from rev 184727, 
kdegraphics-thumbnailers/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:43:47 UTC (rev 184728)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-thumbnailers
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Thumbnailers for various graphics file formats"
+url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-thumbnailers";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('libkexiv2' 'libkdcraw')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('c128aef92f9bd61b18ca9f9db9a43e6652454313')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegraphics-thumbnailers/repos/testing-x86_64/PKGBUILD (from rev 
184727, kdegraphics-thumbnailers/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:43:47 UTC (rev 184728)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-thumbnailers
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Thumbnailers for various graphics file formats"
+url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-thumbnailers";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('libkexiv2' 'libkdcraw')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('c128aef92f9bd61b18ca9f9db9a43e6652454313')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:43:39
  Author: andrea
Revision: 184727

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

Added:
  kdegraphics-svgpart/repos/testing-i686/
  kdegraphics-svgpart/repos/testing-i686/PKGBUILD
(from rev 184726, kdegraphics-svgpart/trunk/PKGBUILD)
  kdegraphics-svgpart/repos/testing-x86_64/
  kdegraphics-svgpart/repos/testing-x86_64/PKGBUILD
(from rev 184726, kdegraphics-svgpart/trunk/PKGBUILD)

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

Copied: kdegraphics-svgpart/repos/testing-i686/PKGBUILD (from rev 184726, 
kdegraphics-svgpart/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:43:39 UTC (rev 184727)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-svgpart
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A KPart for viewing SVGs"
+url="https://projects.kde.org/projects/kde/kdegraphics/svgpart";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+source=("http://download.kde.org/stable/${pkgver}/src/svgpart-${pkgver}.tar.xz";)
+sha1sums=('61869d8bac977faa151356583475f324a29f9d68')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../svgpart-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegraphics-svgpart/repos/testing-x86_64/PKGBUILD (from rev 184726, 
kdegraphics-svgpart/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:43:39 UTC (rev 184727)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-svgpart
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A KPart for viewing SVGs"
+url="https://projects.kde.org/projects/kde/kdegraphics/svgpart";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+source=("http://download.kde.org/stable/${pkgver}/src/svgpart-${pkgver}.tar.xz";)
+sha1sums=('61869d8bac977faa151356583475f324a29f9d68')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../svgpart-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in kdegraphics-strigi-analyzer/repos (4 files)

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:43:31
  Author: andrea
Revision: 184726

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

Added:
  kdegraphics-strigi-analyzer/repos/testing-i686/
  kdegraphics-strigi-analyzer/repos/testing-i686/PKGBUILD
(from rev 184725, kdegraphics-strigi-analyzer/trunk/PKGBUILD)
  kdegraphics-strigi-analyzer/repos/testing-x86_64/
  kdegraphics-strigi-analyzer/repos/testing-x86_64/PKGBUILD
(from rev 184725, kdegraphics-strigi-analyzer/trunk/PKGBUILD)

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

Copied: kdegraphics-strigi-analyzer/repos/testing-i686/PKGBUILD (from rev 
184725, kdegraphics-strigi-analyzer/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:43:31 UTC (rev 184726)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-strigi-analyzer
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Strigi analyzers for various graphics file formats"
+url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-strigi-analyzer";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('6e71181e30e003641893bbdbcfca508d1fde41a4')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegraphics-strigi-analyzer/repos/testing-x86_64/PKGBUILD (from rev 
184725, kdegraphics-strigi-analyzer/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:43:31 UTC (rev 184726)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-strigi-analyzer
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Strigi analyzers for various graphics file formats"
+url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-strigi-analyzer";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('6e71181e30e003641893bbdbcfca508d1fde41a4')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:43:23
  Author: andrea
Revision: 184725

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

Added:
  kdegraphics-mobipocket/repos/testing-i686/
  kdegraphics-mobipocket/repos/testing-i686/PKGBUILD
(from rev 184724, kdegraphics-mobipocket/trunk/PKGBUILD)
  kdegraphics-mobipocket/repos/testing-i686/kdegraphics-mobipocket.install
(from rev 184724, 
kdegraphics-mobipocket/trunk/kdegraphics-mobipocket.install)
  kdegraphics-mobipocket/repos/testing-x86_64/
  kdegraphics-mobipocket/repos/testing-x86_64/PKGBUILD
(from rev 184724, kdegraphics-mobipocket/trunk/PKGBUILD)
  kdegraphics-mobipocket/repos/testing-x86_64/kdegraphics-mobipocket.install
(from rev 184724, 
kdegraphics-mobipocket/trunk/kdegraphics-mobipocket.install)

---+
 testing-i686/PKGBUILD |   34 
 testing-i686/kdegraphics-mobipocket.install   |   11 +++
 testing-x86_64/PKGBUILD   |   34 
 testing-x86_64/kdegraphics-mobipocket.install |   11 +++
 4 files changed, 90 insertions(+)

Copied: kdegraphics-mobipocket/repos/testing-i686/PKGBUILD (from rev 184724, 
kdegraphics-mobipocket/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:43:23 UTC (rev 184725)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-mobipocket
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A collection of plugins to handle mobipocket files"
+url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-mobipocket";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4' 'kdegraphics-okular')
+groups=('kde' 'kdegraphics')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('fe06feea93d3f38196a29dc410ee1427cfefa382')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
kdegraphics-mobipocket/repos/testing-i686/kdegraphics-mobipocket.install (from 
rev 184724, kdegraphics-mobipocket/trunk/kdegraphics-mobipocket.install)
===
--- testing-i686/kdegraphics-mobipocket.install (rev 0)
+++ testing-i686/kdegraphics-mobipocket.install 2013-05-07 16:43:23 UTC (rev 
184725)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: kdegraphics-mobipocket/repos/testing-x86_64/PKGBUILD (from rev 184724, 
kdegraphics-mobipocket/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:43:23 UTC (rev 184725)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-mobipocket
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A collection of plugins to handle mobipocket files"
+url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-mobipocket";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4' 'kdegraphics-okular')
+groups=('kde' 'kdegraphics')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('fe06feea93d3f38196a29dc410ee1427cfefa382')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
kdegraphics-mobipocket/repos/testing-x86_64/kdegraphics-mobipocket.install 
(from rev 184724, kdegraphics-mobipocket/trunk/kdegraphics-mobipocket.install)
===
--- testing-x86_64/kdegraphics-mobipocket.install   
(rev 0)
+++ testing-x86_64/kdegraphics-mobipocket.install   2013-05-07 16:43:23 UTC 
(rev 184725)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:43:17
  Author: andrea
Revision: 184724

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

Added:
  kdegraphics-ksnapshot/repos/testing-i686/
  kdegraphics-ksnapshot/repos/testing-i686/PKGBUILD
(from rev 184723, kdegraphics-ksnapshot/trunk/PKGBUILD)
  kdegraphics-ksnapshot/repos/testing-i686/kdegraphics-ksnapshot.install
(from rev 184723, kdegraphics-ksnapshot/trunk/kdegraphics-ksnapshot.install)
  kdegraphics-ksnapshot/repos/testing-x86_64/
  kdegraphics-ksnapshot/repos/testing-x86_64/PKGBUILD
(from rev 184723, kdegraphics-ksnapshot/trunk/PKGBUILD)
  kdegraphics-ksnapshot/repos/testing-x86_64/kdegraphics-ksnapshot.install
(from rev 184723, kdegraphics-ksnapshot/trunk/kdegraphics-ksnapshot.install)

--+
 testing-i686/PKGBUILD|   33 +
 testing-i686/kdegraphics-ksnapshot.install   |   12 +
 testing-x86_64/PKGBUILD  |   33 +
 testing-x86_64/kdegraphics-ksnapshot.install |   12 +
 4 files changed, 90 insertions(+)

Copied: kdegraphics-ksnapshot/repos/testing-i686/PKGBUILD (from rev 184723, 
kdegraphics-ksnapshot/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:43:17 UTC (rev 184724)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-ksnapshot
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Screen Capture Program"
+url="http://kde.org/applications/graphics/ksnapshot/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime' 'libkipi')
+makedepends=('cmake' 'automoc4')
+optdepends=('kipi-plugins')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ksnapshot-${pkgver}.tar.xz";)
+sha1sums=('c0b2b72cd26b64a930d3a14c0508ab2685caed5a')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../ksnapshot-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegraphics-ksnapshot/repos/testing-i686/kdegraphics-ksnapshot.install 
(from rev 184723, kdegraphics-ksnapshot/trunk/kdegraphics-ksnapshot.install)
===
--- testing-i686/kdegraphics-ksnapshot.install  (rev 0)
+++ testing-i686/kdegraphics-ksnapshot.install  2013-05-07 16:43:17 UTC (rev 
184724)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegraphics-ksnapshot/repos/testing-x86_64/PKGBUILD (from rev 184723, 
kdegraphics-ksnapshot/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:43:17 UTC (rev 184724)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-ksnapshot
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Screen Capture Program"
+url="http://kde.org/applications/graphics/ksnapshot/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime' 'libkipi')
+makedepends=('cmake' 'automoc4')
+optdepends=('kipi-plugins')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ksnapshot-${pkgver}.tar.xz";)
+sha1sums=('c0b2b72cd26b64a930d3a14c0508ab2685caed5a')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../ksnapshot-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
kdegraphics-ksnapshot/repos/testing-x86_64/kdegraphics-ksnapshot.install (from 
rev 184723, kdegraphics-ksnapshot/trunk/kdegraphics-ksnapshot.install)
===
--- testing-x86_64/kdegraphics-ksnapshot.install
(rev 0)
+++ testing-x86_64/kdegraphics-ksnapshot.install2013-05-07 16:43:17 UTC 
(rev 184724)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:43:11
  Author: andrea
Revision: 184723

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

Added:
  kdegraphics-ksaneplugin/repos/testing-i686/
  kdegraphics-ksaneplugin/repos/testing-i686/PKGBUILD
(from rev 184722, kdegraphics-ksaneplugin/trunk/PKGBUILD)
  kdegraphics-ksaneplugin/repos/testing-x86_64/
  kdegraphics-ksaneplugin/repos/testing-x86_64/PKGBUILD
(from rev 184722, kdegraphics-ksaneplugin/trunk/PKGBUILD)

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

Copied: kdegraphics-ksaneplugin/repos/testing-i686/PKGBUILD (from rev 184722, 
kdegraphics-ksaneplugin/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:43:11 UTC (rev 184723)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-ksaneplugin
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A scan plugin that implements the scanning"
+url="https://projects.kde.org/projects/kde/kdegraphics/ksaneplugin";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('libksane')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+source=("http://download.kde.org/stable/${pkgver}/src/ksaneplugin-${pkgver}.tar.xz";)
+sha1sums=('5620639393632a68a30c6e726aa8925f455c2f7a')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../ksaneplugin-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegraphics-ksaneplugin/repos/testing-x86_64/PKGBUILD (from rev 184722, 
kdegraphics-ksaneplugin/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:43:11 UTC (rev 184723)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-ksaneplugin
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A scan plugin that implements the scanning"
+url="https://projects.kde.org/projects/kde/kdegraphics/ksaneplugin";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('libksane')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+source=("http://download.kde.org/stable/${pkgver}/src/ksaneplugin-${pkgver}.tar.xz";)
+sha1sums=('5620639393632a68a30c6e726aa8925f455c2f7a')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../ksaneplugin-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:43:03
  Author: andrea
Revision: 184722

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

Added:
  kdegraphics-kruler/repos/testing-i686/
  kdegraphics-kruler/repos/testing-i686/PKGBUILD
(from rev 184721, kdegraphics-kruler/trunk/PKGBUILD)
  kdegraphics-kruler/repos/testing-i686/kdegraphics-kruler.install
(from rev 184721, kdegraphics-kruler/trunk/kdegraphics-kruler.install)
  kdegraphics-kruler/repos/testing-x86_64/
  kdegraphics-kruler/repos/testing-x86_64/PKGBUILD
(from rev 184721, kdegraphics-kruler/trunk/PKGBUILD)
  kdegraphics-kruler/repos/testing-x86_64/kdegraphics-kruler.install
(from rev 184721, kdegraphics-kruler/trunk/kdegraphics-kruler.install)

---+
 testing-i686/PKGBUILD |   32 
 testing-i686/kdegraphics-kruler.install   |   12 ++
 testing-x86_64/PKGBUILD   |   32 
 testing-x86_64/kdegraphics-kruler.install |   12 ++
 4 files changed, 88 insertions(+)

Copied: kdegraphics-kruler/repos/testing-i686/PKGBUILD (from rev 184721, 
kdegraphics-kruler/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:43:03 UTC (rev 184722)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-kruler
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Screen Ruler"
+url="http://kde.org/applications/graphics/kruler/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kruler-${pkgver}.tar.xz";)
+sha1sums=('fba61042b5a5f9cfac5b078238cd350f6ffa0bdf')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kruler-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegraphics-kruler/repos/testing-i686/kdegraphics-kruler.install (from 
rev 184721, kdegraphics-kruler/trunk/kdegraphics-kruler.install)
===
--- testing-i686/kdegraphics-kruler.install (rev 0)
+++ testing-i686/kdegraphics-kruler.install 2013-05-07 16:43:03 UTC (rev 
184722)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegraphics-kruler/repos/testing-x86_64/PKGBUILD (from rev 184721, 
kdegraphics-kruler/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:43:03 UTC (rev 184722)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-kruler
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Screen Ruler"
+url="http://kde.org/applications/graphics/kruler/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kruler-${pkgver}.tar.xz";)
+sha1sums=('fba61042b5a5f9cfac5b078238cd350f6ffa0bdf')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kruler-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegraphics-kruler/repos/testing-x86_64/kdegraphics-kruler.install 
(from rev 184721, kdegraphics-kruler/trunk/kdegraphics-kruler.install)
===
--- testing-x86_64/kdegraphics-kruler.install   (rev 0)
+++ testing-x86_64/kdegraphics-kruler.install   2013-05-07 16:43:03 UTC (rev 
184722)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:42:57
  Author: andrea
Revision: 184721

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

Added:
  kdegraphics-kolourpaint/repos/testing-i686/
  kdegraphics-kolourpaint/repos/testing-i686/PKGBUILD
(from rev 184720, kdegraphics-kolourpaint/trunk/PKGBUILD)
  kdegraphics-kolourpaint/repos/testing-i686/kdegraphics-kolourpaint.install
(from rev 184720, 
kdegraphics-kolourpaint/trunk/kdegraphics-kolourpaint.install)
  kdegraphics-kolourpaint/repos/testing-x86_64/
  kdegraphics-kolourpaint/repos/testing-x86_64/PKGBUILD
(from rev 184720, kdegraphics-kolourpaint/trunk/PKGBUILD)
  kdegraphics-kolourpaint/repos/testing-x86_64/kdegraphics-kolourpaint.install
(from rev 184720, 
kdegraphics-kolourpaint/trunk/kdegraphics-kolourpaint.install)

+
 testing-i686/PKGBUILD  |   32 +++
 testing-i686/kdegraphics-kolourpaint.install   |   12 
 testing-x86_64/PKGBUILD|   32 +++
 testing-x86_64/kdegraphics-kolourpaint.install |   12 
 4 files changed, 88 insertions(+)

Copied: kdegraphics-kolourpaint/repos/testing-i686/PKGBUILD (from rev 184720, 
kdegraphics-kolourpaint/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:42:57 UTC (rev 184721)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-kolourpaint
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Paint Program"
+url="http://kde.org/applications/graphics/kolourpaint/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime' 'qimageblitz')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kolourpaint-${pkgver}.tar.xz";)
+sha1sums=('8e1b458bd98c25bf5ab4a8dfaa883fd314ee4232')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kolourpaint-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
kdegraphics-kolourpaint/repos/testing-i686/kdegraphics-kolourpaint.install 
(from rev 184720, kdegraphics-kolourpaint/trunk/kdegraphics-kolourpaint.install)
===
--- testing-i686/kdegraphics-kolourpaint.install
(rev 0)
+++ testing-i686/kdegraphics-kolourpaint.install2013-05-07 16:42:57 UTC 
(rev 184721)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegraphics-kolourpaint/repos/testing-x86_64/PKGBUILD (from rev 184720, 
kdegraphics-kolourpaint/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:42:57 UTC (rev 184721)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-kolourpaint
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Paint Program"
+url="http://kde.org/applications/graphics/kolourpaint/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime' 'qimageblitz')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kolourpaint-${pkgver}.tar.xz";)
+sha1sums=('8e1b458bd98c25bf5ab4a8dfaa883fd314ee4232')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kolourpaint-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
kdegraphics-kolourpaint/repos/testing-x86_64/kdegraphics-kolourpaint.install 
(from rev 184720, kdegraphics-kolourpaint/trunk/kdegraphics-kolourpaint.install)
===
--- testing-x86_64/kdegraphics-kolourpaint.install  
(rev 0)
+++ testing-x86_64/kdegraphics-kolourpaint.install  2013-05-07 16:42:57 UTC 
(rev 184721)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:42:50
  Author: andrea
Revision: 184720

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

Added:
  kdegraphics-kgamma/repos/testing-i686/
  kdegraphics-kgamma/repos/testing-i686/PKGBUILD
(from rev 184719, kdegraphics-kgamma/trunk/PKGBUILD)
  kdegraphics-kgamma/repos/testing-x86_64/
  kdegraphics-kgamma/repos/testing-x86_64/PKGBUILD
(from rev 184719, kdegraphics-kgamma/trunk/PKGBUILD)

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

Copied: kdegraphics-kgamma/repos/testing-i686/PKGBUILD (from rev 184719, 
kdegraphics-kgamma/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:42:50 UTC (rev 184720)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-kgamma
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A monitor calibration tool"
+url="http://kde.org/applications/graphics/kgamma/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+# note on libxxf86vm:
+#   not detected by namcap because libgl depends on it
+#   but nvidia providing libgl does not depend on libxxf86vm
+depends=('kdebase-runtime' 'libxxf86vm')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/kgamma-${pkgver}.tar.xz";)
+sha1sums=('7e246704a1e639886925d794dcb4bfab7bb993ca')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kgamma-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegraphics-kgamma/repos/testing-x86_64/PKGBUILD (from rev 184719, 
kdegraphics-kgamma/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:42:50 UTC (rev 184720)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-kgamma
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A monitor calibration tool"
+url="http://kde.org/applications/graphics/kgamma/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+# note on libxxf86vm:
+#   not detected by namcap because libgl depends on it
+#   but nvidia providing libgl does not depend on libxxf86vm
+depends=('kdebase-runtime' 'libxxf86vm')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/kgamma-${pkgver}.tar.xz";)
+sha1sums=('7e246704a1e639886925d794dcb4bfab7bb993ca')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kgamma-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:42:42
  Author: andrea
Revision: 184719

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

Added:
  kdegraphics-kcolorchooser/repos/testing-i686/
  kdegraphics-kcolorchooser/repos/testing-i686/PKGBUILD
(from rev 184718, kdegraphics-kcolorchooser/trunk/PKGBUILD)
  kdegraphics-kcolorchooser/repos/testing-i686/kdegraphics-kcolorchooser.install
(from rev 184718, 
kdegraphics-kcolorchooser/trunk/kdegraphics-kcolorchooser.install)
  kdegraphics-kcolorchooser/repos/testing-x86_64/
  kdegraphics-kcolorchooser/repos/testing-x86_64/PKGBUILD
(from rev 184718, kdegraphics-kcolorchooser/trunk/PKGBUILD)
  
kdegraphics-kcolorchooser/repos/testing-x86_64/kdegraphics-kcolorchooser.install
(from rev 184718, 
kdegraphics-kcolorchooser/trunk/kdegraphics-kcolorchooser.install)

--+
 testing-i686/PKGBUILD|   32 +
 testing-i686/kdegraphics-kcolorchooser.install   |   11 +++
 testing-x86_64/PKGBUILD  |   32 +
 testing-x86_64/kdegraphics-kcolorchooser.install |   11 +++
 4 files changed, 86 insertions(+)

Copied: kdegraphics-kcolorchooser/repos/testing-i686/PKGBUILD (from rev 184718, 
kdegraphics-kcolorchooser/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:42:42 UTC (rev 184719)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-kcolorchooser
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Color Chooser"
+url="http://kde.org/applications/graphics/kcolorchooser/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kcolorchooser-${pkgver}.tar.xz";)
+sha1sums=('5d76ce1018f9852f0de2a5f8fa2affde8021c834')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kcolorchooser-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
kdegraphics-kcolorchooser/repos/testing-i686/kdegraphics-kcolorchooser.install 
(from rev 184718, 
kdegraphics-kcolorchooser/trunk/kdegraphics-kcolorchooser.install)
===
--- testing-i686/kdegraphics-kcolorchooser.install  
(rev 0)
+++ testing-i686/kdegraphics-kcolorchooser.install  2013-05-07 16:42:42 UTC 
(rev 184719)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegraphics-kcolorchooser/repos/testing-x86_64/PKGBUILD (from rev 
184718, kdegraphics-kcolorchooser/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:42:42 UTC (rev 184719)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-kcolorchooser
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Color Chooser"
+url="http://kde.org/applications/graphics/kcolorchooser/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kcolorchooser-${pkgver}.tar.xz";)
+sha1sums=('5d76ce1018f9852f0de2a5f8fa2affde8021c834')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kcolorchooser-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
kdegraphics-kcolorchooser/repos/testing-x86_64/kdegraphics-kcolorchooser.install
 (from rev 184718, 
kdegraphics-kcolorchooser/trunk/kdegraphics-kcolorchooser.install)
===
--- testing-x86_64/kdegraphics-kcolorchooser.install
(rev 0)
+++ testing-x86_64/kdegraphics-kcolorchooser.install2013-05-07 16:42:42 UTC 
(rev 184719)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:42:36
  Author: andrea
Revision: 184718

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

Added:
  kdegraphics-kamera/repos/testing-i686/
  kdegraphics-kamera/repos/testing-i686/PKGBUILD
(from rev 184717, kdegraphics-kamera/trunk/PKGBUILD)
  kdegraphics-kamera/repos/testing-x86_64/
  kdegraphics-kamera/repos/testing-x86_64/PKGBUILD
(from rev 184717, kdegraphics-kamera/trunk/PKGBUILD)

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

Copied: kdegraphics-kamera/repos/testing-i686/PKGBUILD (from rev 184717, 
kdegraphics-kamera/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:42:36 UTC (rev 184718)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-kamera
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Configure Kamera"
+url="http://kde.org/applications/graphics/kamera/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime' 'libgphoto2')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/kamera-${pkgver}.tar.xz";)
+sha1sums=('72a724c99cada0ed81c18dde1ad2e93b4907631f')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kamera-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegraphics-kamera/repos/testing-x86_64/PKGBUILD (from rev 184717, 
kdegraphics-kamera/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:42:36 UTC (rev 184718)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-kamera
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Configure Kamera"
+url="http://kde.org/applications/graphics/kamera/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime' 'libgphoto2')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/kamera-${pkgver}.tar.xz";)
+sha1sums=('72a724c99cada0ed81c18dde1ad2e93b4907631f')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kamera-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:42:28
  Author: andrea
Revision: 184717

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

Added:
  kdegraphics-gwenview/repos/testing-i686/
  kdegraphics-gwenview/repos/testing-i686/PKGBUILD
(from rev 184716, kdegraphics-gwenview/trunk/PKGBUILD)
  kdegraphics-gwenview/repos/testing-i686/kdegraphics-gwenview.install
(from rev 184716, kdegraphics-gwenview/trunk/kdegraphics-gwenview.install)
  kdegraphics-gwenview/repos/testing-x86_64/
  kdegraphics-gwenview/repos/testing-x86_64/PKGBUILD
(from rev 184716, kdegraphics-gwenview/trunk/PKGBUILD)
  kdegraphics-gwenview/repos/testing-x86_64/kdegraphics-gwenview.install
(from rev 184716, kdegraphics-gwenview/trunk/kdegraphics-gwenview.install)

-+
 testing-i686/PKGBUILD   |   32 ++
 testing-i686/kdegraphics-gwenview.install   |   12 +
 testing-x86_64/PKGBUILD |   32 ++
 testing-x86_64/kdegraphics-gwenview.install |   12 +
 4 files changed, 88 insertions(+)

Copied: kdegraphics-gwenview/repos/testing-i686/PKGBUILD (from rev 184716, 
kdegraphics-gwenview/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:42:28 UTC (rev 184717)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-gwenview
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A fast and easy to use image viewer for KDE"
+url="http://kde.org/applications/graphics/gwenview/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-lib' 'kdebase-runtime' 'libkipi' 'lcms2')
+makedepends=('cmake' 'automoc4' 'mesa')
+optdepends=('kipi-plugins: extra plugins to share photos')
+install=$pkgname.install
+source=("http://download.kde.org/stable/${pkgver}/src/gwenview-${pkgver}.tar.xz";)
+sha1sums=('1b020d9689a3b401f254ae6f26bc0f1e2455e11e')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../gwenview-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegraphics-gwenview/repos/testing-i686/kdegraphics-gwenview.install 
(from rev 184716, kdegraphics-gwenview/trunk/kdegraphics-gwenview.install)
===
--- testing-i686/kdegraphics-gwenview.install   (rev 0)
+++ testing-i686/kdegraphics-gwenview.install   2013-05-07 16:42:28 UTC (rev 
184717)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegraphics-gwenview/repos/testing-x86_64/PKGBUILD (from rev 184716, 
kdegraphics-gwenview/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:42:28 UTC (rev 184717)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegraphics-gwenview
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A fast and easy to use image viewer for KDE"
+url="http://kde.org/applications/graphics/gwenview/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-lib' 'kdebase-runtime' 'libkipi' 'lcms2')
+makedepends=('cmake' 'automoc4' 'mesa')
+optdepends=('kipi-plugins: extra plugins to share photos')
+install=$pkgname.install
+source=("http://download.kde.org/stable/${pkgver}/src/gwenview-${pkgver}.tar.xz";)
+sha1sums=('1b020d9689a3b401f254ae6f26bc0f1e2455e11e')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../gwenview-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegraphics-gwenview/repos/testing-x86_64/kdegraphics-gwenview.install 
(from rev 184716, kdegraphics-gwenview/trunk/kdegraphics-gwenview.install)
===
--- testing-x86_64/kdegraphics-gwenview.install (rev 0)
+++ testing-x86_64/kdegraphics-gwenview.install 2013-05-07 16:42:28 UTC (rev 
184717)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:42:21
  Author: andrea
Revision: 184716

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

Added:
  kdegames-picmi/repos/testing-i686/
  kdegames-picmi/repos/testing-i686/PKGBUILD
(from rev 184715, kdegames-picmi/trunk/PKGBUILD)
  kdegames-picmi/repos/testing-i686/kdegames-picmi.install
(from rev 184715, kdegames-picmi/trunk/kdegames-picmi.install)
  kdegames-picmi/repos/testing-x86_64/
  kdegames-picmi/repos/testing-x86_64/PKGBUILD
(from rev 184715, kdegames-picmi/trunk/PKGBUILD)
  kdegames-picmi/repos/testing-x86_64/kdegames-picmi.install
(from rev 184715, kdegames-picmi/trunk/kdegames-picmi.install)

---+
 testing-i686/PKGBUILD |   33 
 testing-i686/kdegames-picmi.install   |   11 ++
 testing-x86_64/PKGBUILD   |   33 
 testing-x86_64/kdegames-picmi.install |   11 ++
 4 files changed, 88 insertions(+)

Copied: kdegames-picmi/repos/testing-i686/PKGBUILD (from rev 184715, 
kdegames-picmi/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:42:21 UTC (rev 184716)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-picmi
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A nonogram logic game for KDE"
+url="http://kde.org/applications/games/picmi/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+replaces=('picmi')
+conflicts=('picmi')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/picmi-${pkgver}.tar.xz";)
+sha1sums=('af60a275f0b06a4ae2fe552cf7973a510e2a7f6b')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../picmi-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-picmi/repos/testing-i686/kdegames-picmi.install (from rev 
184715, kdegames-picmi/trunk/kdegames-picmi.install)
===
--- testing-i686/kdegames-picmi.install (rev 0)
+++ testing-i686/kdegames-picmi.install 2013-05-07 16:42:21 UTC (rev 184716)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-picmi/repos/testing-x86_64/PKGBUILD (from rev 184715, 
kdegames-picmi/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:42:21 UTC (rev 184716)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-picmi
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A nonogram logic game for KDE"
+url="http://kde.org/applications/games/picmi/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+replaces=('picmi')
+conflicts=('picmi')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/picmi-${pkgver}.tar.xz";)
+sha1sums=('af60a275f0b06a4ae2fe552cf7973a510e2a7f6b')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../picmi-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-picmi/repos/testing-x86_64/kdegames-picmi.install (from rev 
184715, kdegames-picmi/trunk/kdegames-picmi.install)
===
--- testing-x86_64/kdegames-picmi.install   (rev 0)
+++ testing-x86_64/kdegames-picmi.install   2013-05-07 16:42:21 UTC (rev 
184716)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:42:14
  Author: andrea
Revision: 184715

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

Added:
  kdegames-palapeli/repos/testing-i686/
  kdegames-palapeli/repos/testing-i686/PKGBUILD
(from rev 184714, kdegames-palapeli/trunk/PKGBUILD)
  kdegames-palapeli/repos/testing-i686/kdegames-palapeli.install
(from rev 184714, kdegames-palapeli/trunk/kdegames-palapeli.install)
  kdegames-palapeli/repos/testing-x86_64/
  kdegames-palapeli/repos/testing-x86_64/PKGBUILD
(from rev 184714, kdegames-palapeli/trunk/PKGBUILD)
  kdegames-palapeli/repos/testing-x86_64/kdegames-palapeli.install
(from rev 184714, kdegames-palapeli/trunk/kdegames-palapeli.install)

--+
 testing-i686/PKGBUILD|   31 +
 testing-i686/kdegames-palapeli.install   |   13 
 testing-x86_64/PKGBUILD  |   31 +
 testing-x86_64/kdegames-palapeli.install |   13 
 4 files changed, 88 insertions(+)

Copied: kdegames-palapeli/repos/testing-i686/PKGBUILD (from rev 184714, 
kdegames-palapeli/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:42:14 UTC (rev 184715)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-palapeli
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A single-player jigsaw puzzle game"
+url="http://kde.org/applications/games/palapeli/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/palapeli-${pkgver}.tar.xz";)
+sha1sums=('251df2913548628f245516341a6c91a7edc1632c')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../palapeli-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-palapeli/repos/testing-i686/kdegames-palapeli.install (from 
rev 184714, kdegames-palapeli/trunk/kdegames-palapeli.install)
===
--- testing-i686/kdegames-palapeli.install  (rev 0)
+++ testing-i686/kdegames-palapeli.install  2013-05-07 16:42:14 UTC (rev 
184715)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-palapeli/repos/testing-x86_64/PKGBUILD (from rev 184714, 
kdegames-palapeli/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:42:14 UTC (rev 184715)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-palapeli
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A single-player jigsaw puzzle game"
+url="http://kde.org/applications/games/palapeli/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/palapeli-${pkgver}.tar.xz";)
+sha1sums=('251df2913548628f245516341a6c91a7edc1632c')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../palapeli-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-palapeli/repos/testing-x86_64/kdegames-palapeli.install (from 
rev 184714, kdegames-palapeli/trunk/kdegames-palapeli.install)
===
--- testing-x86_64/kdegames-palapeli.install(rev 0)
+++ testing-x86_64/kdegames-palapeli.install2013-05-07 16:42:14 UTC (rev 
184715)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:42:08
  Author: andrea
Revision: 184714

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

Added:
  kdegames-lskat/repos/testing-i686/
  kdegames-lskat/repos/testing-i686/PKGBUILD
(from rev 184713, kdegames-lskat/trunk/PKGBUILD)
  kdegames-lskat/repos/testing-i686/kdegames-lskat.install
(from rev 184713, kdegames-lskat/trunk/kdegames-lskat.install)
  kdegames-lskat/repos/testing-x86_64/
  kdegames-lskat/repos/testing-x86_64/PKGBUILD
(from rev 184713, kdegames-lskat/trunk/PKGBUILD)
  kdegames-lskat/repos/testing-x86_64/kdegames-lskat.install
(from rev 184713, kdegames-lskat/trunk/kdegames-lskat.install)

---+
 testing-i686/PKGBUILD |   31 +++
 testing-i686/kdegames-lskat.install   |   12 
 testing-x86_64/PKGBUILD   |   31 +++
 testing-x86_64/kdegames-lskat.install |   12 
 4 files changed, 86 insertions(+)

Copied: kdegames-lskat/repos/testing-i686/PKGBUILD (from rev 184713, 
kdegames-lskat/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:42:08 UTC (rev 184714)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-lskat
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Lieutenant Skat is a fun and engaging card game for two players"
+url="http://kde.org/applications/games/lskat/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/lskat-${pkgver}.tar.xz";)
+sha1sums=('3223e7680c81d09e926d6c04b59f7b403e1b41b0')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../lskat-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-lskat/repos/testing-i686/kdegames-lskat.install (from rev 
184713, kdegames-lskat/trunk/kdegames-lskat.install)
===
--- testing-i686/kdegames-lskat.install (rev 0)
+++ testing-i686/kdegames-lskat.install 2013-05-07 16:42:08 UTC (rev 184714)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-lskat/repos/testing-x86_64/PKGBUILD (from rev 184713, 
kdegames-lskat/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:42:08 UTC (rev 184714)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-lskat
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Lieutenant Skat is a fun and engaging card game for two players"
+url="http://kde.org/applications/games/lskat/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/lskat-${pkgver}.tar.xz";)
+sha1sums=('3223e7680c81d09e926d6c04b59f7b403e1b41b0')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../lskat-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-lskat/repos/testing-x86_64/kdegames-lskat.install (from rev 
184713, kdegames-lskat/trunk/kdegames-lskat.install)
===
--- testing-x86_64/kdegames-lskat.install   (rev 0)
+++ testing-x86_64/kdegames-lskat.install   2013-05-07 16:42:08 UTC (rev 
184714)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:42:01
  Author: andrea
Revision: 184713

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

Added:
  kdegames-kubrick/repos/testing-i686/
  kdegames-kubrick/repos/testing-i686/PKGBUILD
(from rev 184712, kdegames-kubrick/trunk/PKGBUILD)
  kdegames-kubrick/repos/testing-i686/kdegames-kubrick.install
(from rev 184712, kdegames-kubrick/trunk/kdegames-kubrick.install)
  kdegames-kubrick/repos/testing-x86_64/
  kdegames-kubrick/repos/testing-x86_64/PKGBUILD
(from rev 184712, kdegames-kubrick/trunk/PKGBUILD)
  kdegames-kubrick/repos/testing-x86_64/kdegames-kubrick.install
(from rev 184712, kdegames-kubrick/trunk/kdegames-kubrick.install)

-+
 testing-i686/PKGBUILD   |   31 ++
 testing-i686/kdegames-kubrick.install   |   11 ++
 testing-x86_64/PKGBUILD |   31 ++
 testing-x86_64/kdegames-kubrick.install |   11 ++
 4 files changed, 84 insertions(+)

Copied: kdegames-kubrick/repos/testing-i686/PKGBUILD (from rev 184712, 
kdegames-kubrick/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:42:01 UTC (rev 184713)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kubrick
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Based on the famous Rubik's Cube"
+url="http://kde.org/applications/games/kubrick/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kubrick-${pkgver}.tar.xz";)
+sha1sums=('54680f556ff5678e5091fcd254c3576c11396a39')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kubrick-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kubrick/repos/testing-i686/kdegames-kubrick.install (from rev 
184712, kdegames-kubrick/trunk/kdegames-kubrick.install)
===
--- testing-i686/kdegames-kubrick.install   (rev 0)
+++ testing-i686/kdegames-kubrick.install   2013-05-07 16:42:01 UTC (rev 
184713)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kubrick/repos/testing-x86_64/PKGBUILD (from rev 184712, 
kdegames-kubrick/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:42:01 UTC (rev 184713)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kubrick
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Based on the famous Rubik's Cube"
+url="http://kde.org/applications/games/kubrick/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kubrick-${pkgver}.tar.xz";)
+sha1sums=('54680f556ff5678e5091fcd254c3576c11396a39')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kubrick-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kubrick/repos/testing-x86_64/kdegames-kubrick.install (from 
rev 184712, kdegames-kubrick/trunk/kdegames-kubrick.install)
===
--- testing-x86_64/kdegames-kubrick.install (rev 0)
+++ testing-x86_64/kdegames-kubrick.install 2013-05-07 16:42:01 UTC (rev 
184713)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:41:54
  Author: andrea
Revision: 184712

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

Added:
  kdegames-ktuberling/repos/testing-i686/
  kdegames-ktuberling/repos/testing-i686/PKGBUILD
(from rev 184711, kdegames-ktuberling/trunk/PKGBUILD)
  kdegames-ktuberling/repos/testing-i686/kdegames-ktuberling.install
(from rev 184711, kdegames-ktuberling/trunk/kdegames-ktuberling.install)
  kdegames-ktuberling/repos/testing-x86_64/
  kdegames-ktuberling/repos/testing-x86_64/PKGBUILD
(from rev 184711, kdegames-ktuberling/trunk/PKGBUILD)
  kdegames-ktuberling/repos/testing-x86_64/kdegames-ktuberling.install
(from rev 184711, kdegames-ktuberling/trunk/kdegames-ktuberling.install)

+
 testing-i686/PKGBUILD  |   31 +++
 testing-i686/kdegames-ktuberling.install   |   12 ++
 testing-x86_64/PKGBUILD|   31 +++
 testing-x86_64/kdegames-ktuberling.install |   12 ++
 4 files changed, 86 insertions(+)

Copied: kdegames-ktuberling/repos/testing-i686/PKGBUILD (from rev 184711, 
kdegames-ktuberling/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:41:54 UTC (rev 184712)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-ktuberling
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A simple constructor game suitable for children and adults alike"
+url="http://kde.org/applications/games/ktuberling/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ktuberling-${pkgver}.tar.xz";)
+sha1sums=('223838a37bcdc0b1b45ef04140437a1a59b1c2a8')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../ktuberling-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-ktuberling/repos/testing-i686/kdegames-ktuberling.install 
(from rev 184711, kdegames-ktuberling/trunk/kdegames-ktuberling.install)
===
--- testing-i686/kdegames-ktuberling.install(rev 0)
+++ testing-i686/kdegames-ktuberling.install2013-05-07 16:41:54 UTC (rev 
184712)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-ktuberling/repos/testing-x86_64/PKGBUILD (from rev 184711, 
kdegames-ktuberling/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:41:54 UTC (rev 184712)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-ktuberling
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A simple constructor game suitable for children and adults alike"
+url="http://kde.org/applications/games/ktuberling/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ktuberling-${pkgver}.tar.xz";)
+sha1sums=('223838a37bcdc0b1b45ef04140437a1a59b1c2a8')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../ktuberling-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-ktuberling/repos/testing-x86_64/kdegames-ktuberling.install 
(from rev 184711, kdegames-ktuberling/trunk/kdegames-ktuberling.install)
===
--- testing-x86_64/kdegames-ktuberling.install  (rev 0)
+++ testing-x86_64/kdegames-ktuberling.install  2013-05-07 16:41:54 UTC (rev 
184712)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:41:47
  Author: andrea
Revision: 184711

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

Added:
  kdegames-ksudoku/repos/testing-i686/
  kdegames-ksudoku/repos/testing-i686/PKGBUILD
(from rev 184710, kdegames-ksudoku/trunk/PKGBUILD)
  kdegames-ksudoku/repos/testing-i686/kdegames-ksudoku.install
(from rev 184710, kdegames-ksudoku/trunk/kdegames-ksudoku.install)
  kdegames-ksudoku/repos/testing-x86_64/
  kdegames-ksudoku/repos/testing-x86_64/PKGBUILD
(from rev 184710, kdegames-ksudoku/trunk/PKGBUILD)
  kdegames-ksudoku/repos/testing-x86_64/kdegames-ksudoku.install
(from rev 184710, kdegames-ksudoku/trunk/kdegames-ksudoku.install)

-+
 testing-i686/PKGBUILD   |   31 ++
 testing-i686/kdegames-ksudoku.install   |   11 ++
 testing-x86_64/PKGBUILD |   31 ++
 testing-x86_64/kdegames-ksudoku.install |   11 ++
 4 files changed, 84 insertions(+)

Copied: kdegames-ksudoku/repos/testing-i686/PKGBUILD (from rev 184710, 
kdegames-ksudoku/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:41:47 UTC (rev 184711)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-ksudoku
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A logic-based symbol placement puzzle"
+url="http://kde.org/applications/games/ksudoku/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ksudoku-${pkgver}.tar.xz";)
+sha1sums=('5421c4693119defc9001e59a044e5b197f1ebc91')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../ksudoku-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-ksudoku/repos/testing-i686/kdegames-ksudoku.install (from rev 
184710, kdegames-ksudoku/trunk/kdegames-ksudoku.install)
===
--- testing-i686/kdegames-ksudoku.install   (rev 0)
+++ testing-i686/kdegames-ksudoku.install   2013-05-07 16:41:47 UTC (rev 
184711)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-ksudoku/repos/testing-x86_64/PKGBUILD (from rev 184710, 
kdegames-ksudoku/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:41:47 UTC (rev 184711)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-ksudoku
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A logic-based symbol placement puzzle"
+url="http://kde.org/applications/games/ksudoku/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ksudoku-${pkgver}.tar.xz";)
+sha1sums=('5421c4693119defc9001e59a044e5b197f1ebc91')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../ksudoku-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-ksudoku/repos/testing-x86_64/kdegames-ksudoku.install (from 
rev 184710, kdegames-ksudoku/trunk/kdegames-ksudoku.install)
===
--- testing-x86_64/kdegames-ksudoku.install (rev 0)
+++ testing-x86_64/kdegames-ksudoku.install 2013-05-07 16:41:47 UTC (rev 
184711)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:41:41
  Author: andrea
Revision: 184710

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

Added:
  kdegames-ksquares/repos/testing-i686/
  kdegames-ksquares/repos/testing-i686/PKGBUILD
(from rev 184709, kdegames-ksquares/trunk/PKGBUILD)
  kdegames-ksquares/repos/testing-i686/kdegames-ksquares.install
(from rev 184709, kdegames-ksquares/trunk/kdegames-ksquares.install)
  kdegames-ksquares/repos/testing-x86_64/
  kdegames-ksquares/repos/testing-x86_64/PKGBUILD
(from rev 184709, kdegames-ksquares/trunk/PKGBUILD)
  kdegames-ksquares/repos/testing-x86_64/kdegames-ksquares.install
(from rev 184709, kdegames-ksquares/trunk/kdegames-ksquares.install)

--+
 testing-i686/PKGBUILD|   31 +
 testing-i686/kdegames-ksquares.install   |   11 ++
 testing-x86_64/PKGBUILD  |   31 +
 testing-x86_64/kdegames-ksquares.install |   11 ++
 4 files changed, 84 insertions(+)

Copied: kdegames-ksquares/repos/testing-i686/PKGBUILD (from rev 184709, 
kdegames-ksquares/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:41:41 UTC (rev 184710)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-ksquares
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A modeled after the well known pen and paper based game of Dots and 
Boxes"
+url="http://kde.org/applications/games/ksquares/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ksquares-${pkgver}.tar.xz";)
+sha1sums=('1def07ebcfed0d2edc8771cb2c3c25de9ea9e0c5')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../ksquares-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-ksquares/repos/testing-i686/kdegames-ksquares.install (from 
rev 184709, kdegames-ksquares/trunk/kdegames-ksquares.install)
===
--- testing-i686/kdegames-ksquares.install  (rev 0)
+++ testing-i686/kdegames-ksquares.install  2013-05-07 16:41:41 UTC (rev 
184710)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-ksquares/repos/testing-x86_64/PKGBUILD (from rev 184709, 
kdegames-ksquares/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:41:41 UTC (rev 184710)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-ksquares
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A modeled after the well known pen and paper based game of Dots and 
Boxes"
+url="http://kde.org/applications/games/ksquares/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ksquares-${pkgver}.tar.xz";)
+sha1sums=('1def07ebcfed0d2edc8771cb2c3c25de9ea9e0c5')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../ksquares-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-ksquares/repos/testing-x86_64/kdegames-ksquares.install (from 
rev 184709, kdegames-ksquares/trunk/kdegames-ksquares.install)
===
--- testing-x86_64/kdegames-ksquares.install(rev 0)
+++ testing-x86_64/kdegames-ksquares.install2013-05-07 16:41:41 UTC (rev 
184710)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:41:32
  Author: andrea
Revision: 184709

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

Added:
  kdegames-kspaceduel/repos/testing-i686/
  kdegames-kspaceduel/repos/testing-i686/PKGBUILD
(from rev 184708, kdegames-kspaceduel/trunk/PKGBUILD)
  kdegames-kspaceduel/repos/testing-i686/kdegames-kspaceduel.install
(from rev 184708, kdegames-kspaceduel/trunk/kdegames-kspaceduel.install)
  kdegames-kspaceduel/repos/testing-x86_64/
  kdegames-kspaceduel/repos/testing-x86_64/PKGBUILD
(from rev 184708, kdegames-kspaceduel/trunk/PKGBUILD)
  kdegames-kspaceduel/repos/testing-x86_64/kdegames-kspaceduel.install
(from rev 184708, kdegames-kspaceduel/trunk/kdegames-kspaceduel.install)

+
 testing-i686/PKGBUILD  |   31 +++
 testing-i686/kdegames-kspaceduel.install   |   12 ++
 testing-x86_64/PKGBUILD|   31 +++
 testing-x86_64/kdegames-kspaceduel.install |   12 ++
 4 files changed, 86 insertions(+)

Copied: kdegames-kspaceduel/repos/testing-i686/PKGBUILD (from rev 184708, 
kdegames-kspaceduel/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:41:32 UTC (rev 184709)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kspaceduel
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Each of two possible players controls a satellite spaceship orbiting 
the sun"
+url="http://kde.org/applications/games/kspaceduel/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kspaceduel-${pkgver}.tar.xz";)
+sha1sums=('20fe3641363fc8a7a6d21bf8c2da810b4687bc76')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kspaceduel-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kspaceduel/repos/testing-i686/kdegames-kspaceduel.install 
(from rev 184708, kdegames-kspaceduel/trunk/kdegames-kspaceduel.install)
===
--- testing-i686/kdegames-kspaceduel.install(rev 0)
+++ testing-i686/kdegames-kspaceduel.install2013-05-07 16:41:32 UTC (rev 
184709)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kspaceduel/repos/testing-x86_64/PKGBUILD (from rev 184708, 
kdegames-kspaceduel/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:41:32 UTC (rev 184709)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kspaceduel
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Each of two possible players controls a satellite spaceship orbiting 
the sun"
+url="http://kde.org/applications/games/kspaceduel/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kspaceduel-${pkgver}.tar.xz";)
+sha1sums=('20fe3641363fc8a7a6d21bf8c2da810b4687bc76')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kspaceduel-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kspaceduel/repos/testing-x86_64/kdegames-kspaceduel.install 
(from rev 184708, kdegames-kspaceduel/trunk/kdegames-kspaceduel.install)
===
--- testing-x86_64/kdegames-kspaceduel.install  (rev 0)
+++ testing-x86_64/kdegames-kspaceduel.install  2013-05-07 16:41:32 UTC (rev 
184709)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:41:26
  Author: andrea
Revision: 184708

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

Added:
  kdegames-ksnakeduel/repos/testing-i686/
  kdegames-ksnakeduel/repos/testing-i686/PKGBUILD
(from rev 184707, kdegames-ksnakeduel/trunk/PKGBUILD)
  kdegames-ksnakeduel/repos/testing-i686/kdegames-ksnakeduel.install
(from rev 184707, kdegames-ksnakeduel/trunk/kdegames-ksnakeduel.install)
  kdegames-ksnakeduel/repos/testing-x86_64/
  kdegames-ksnakeduel/repos/testing-x86_64/PKGBUILD
(from rev 184707, kdegames-ksnakeduel/trunk/PKGBUILD)
  kdegames-ksnakeduel/repos/testing-x86_64/kdegames-ksnakeduel.install
(from rev 184707, kdegames-ksnakeduel/trunk/kdegames-ksnakeduel.install)

+
 testing-i686/PKGBUILD  |   31 +++
 testing-i686/kdegames-ksnakeduel.install   |   11 +
 testing-x86_64/PKGBUILD|   31 +++
 testing-x86_64/kdegames-ksnakeduel.install |   11 +
 4 files changed, 84 insertions(+)

Copied: kdegames-ksnakeduel/repos/testing-i686/PKGBUILD (from rev 184707, 
kdegames-ksnakeduel/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:41:26 UTC (rev 184708)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-ksnakeduel
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A simple snake duel game"
+url="http://kde.org/applications/games/ksnakeduel/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ksnakeduel-${pkgver}.tar.xz";)
+sha1sums=('e492edb83f0c7c284934d6b7eec53c737cbe197a')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../ksnakeduel-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-ksnakeduel/repos/testing-i686/kdegames-ksnakeduel.install 
(from rev 184707, kdegames-ksnakeduel/trunk/kdegames-ksnakeduel.install)
===
--- testing-i686/kdegames-ksnakeduel.install(rev 0)
+++ testing-i686/kdegames-ksnakeduel.install2013-05-07 16:41:26 UTC (rev 
184708)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-ksnakeduel/repos/testing-x86_64/PKGBUILD (from rev 184707, 
kdegames-ksnakeduel/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:41:26 UTC (rev 184708)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-ksnakeduel
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A simple snake duel game"
+url="http://kde.org/applications/games/ksnakeduel/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ksnakeduel-${pkgver}.tar.xz";)
+sha1sums=('e492edb83f0c7c284934d6b7eec53c737cbe197a')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../ksnakeduel-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-ksnakeduel/repos/testing-x86_64/kdegames-ksnakeduel.install 
(from rev 184707, kdegames-ksnakeduel/trunk/kdegames-ksnakeduel.install)
===
--- testing-x86_64/kdegames-ksnakeduel.install  (rev 0)
+++ testing-x86_64/kdegames-ksnakeduel.install  2013-05-07 16:41:26 UTC (rev 
184708)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:41:18
  Author: andrea
Revision: 184707

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

Added:
  kdegames-ksirk/repos/testing-i686/
  kdegames-ksirk/repos/testing-i686/PKGBUILD
(from rev 184706, kdegames-ksirk/trunk/PKGBUILD)
  kdegames-ksirk/repos/testing-i686/kdegames-ksirk.install
(from rev 184706, kdegames-ksirk/trunk/kdegames-ksirk.install)
  kdegames-ksirk/repos/testing-x86_64/
  kdegames-ksirk/repos/testing-x86_64/PKGBUILD
(from rev 184706, kdegames-ksirk/trunk/PKGBUILD)
  kdegames-ksirk/repos/testing-x86_64/kdegames-ksirk.install
(from rev 184706, kdegames-ksirk/trunk/kdegames-ksirk.install)

---+
 testing-i686/PKGBUILD |   31 +++
 testing-i686/kdegames-ksirk.install   |   11 +++
 testing-x86_64/PKGBUILD   |   31 +++
 testing-x86_64/kdegames-ksirk.install |   11 +++
 4 files changed, 84 insertions(+)

Copied: kdegames-ksirk/repos/testing-i686/PKGBUILD (from rev 184706, 
kdegames-ksirk/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:41:18 UTC (rev 184707)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-ksirk
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A computerized version of a well known strategy game"
+url="http://kde.org/applications/games/ksirk/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ksirk-${pkgver}.tar.xz";)
+sha1sums=('69181f4ac4338e76295cd25926b23a38bbba36dd')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../ksirk-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-ksirk/repos/testing-i686/kdegames-ksirk.install (from rev 
184706, kdegames-ksirk/trunk/kdegames-ksirk.install)
===
--- testing-i686/kdegames-ksirk.install (rev 0)
+++ testing-i686/kdegames-ksirk.install 2013-05-07 16:41:18 UTC (rev 184707)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-ksirk/repos/testing-x86_64/PKGBUILD (from rev 184706, 
kdegames-ksirk/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:41:18 UTC (rev 184707)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-ksirk
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A computerized version of a well known strategy game"
+url="http://kde.org/applications/games/ksirk/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ksirk-${pkgver}.tar.xz";)
+sha1sums=('69181f4ac4338e76295cd25926b23a38bbba36dd')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../ksirk-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-ksirk/repos/testing-x86_64/kdegames-ksirk.install (from rev 
184706, kdegames-ksirk/trunk/kdegames-ksirk.install)
===
--- testing-x86_64/kdegames-ksirk.install   (rev 0)
+++ testing-x86_64/kdegames-ksirk.install   2013-05-07 16:41:18 UTC (rev 
184707)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:41:12
  Author: andrea
Revision: 184706

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

Added:
  kdegames-kshisen/repos/testing-i686/
  kdegames-kshisen/repos/testing-i686/PKGBUILD
(from rev 184705, kdegames-kshisen/trunk/PKGBUILD)
  kdegames-kshisen/repos/testing-i686/kdegames-kshisen.install
(from rev 184705, kdegames-kshisen/trunk/kdegames-kshisen.install)
  kdegames-kshisen/repos/testing-x86_64/
  kdegames-kshisen/repos/testing-x86_64/PKGBUILD
(from rev 184705, kdegames-kshisen/trunk/PKGBUILD)
  kdegames-kshisen/repos/testing-x86_64/kdegames-kshisen.install
(from rev 184705, kdegames-kshisen/trunk/kdegames-kshisen.install)

-+
 testing-i686/PKGBUILD   |   31 ++
 testing-i686/kdegames-kshisen.install   |   11 ++
 testing-x86_64/PKGBUILD |   31 ++
 testing-x86_64/kdegames-kshisen.install |   11 ++
 4 files changed, 84 insertions(+)

Copied: kdegames-kshisen/repos/testing-i686/PKGBUILD (from rev 184705, 
kdegames-kshisen/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:41:12 UTC (rev 184706)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kshisen
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A solitaire-like game played using the standard set of Mahjong tiles"
+url="http://kde.org/applications/games/kshisen/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames' 'libkmahjongg')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kshisen-${pkgver}.tar.xz";)
+sha1sums=('36f8e99e64d9fd29e6b264c9c83fda38f5f09423')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kshisen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kshisen/repos/testing-i686/kdegames-kshisen.install (from rev 
184705, kdegames-kshisen/trunk/kdegames-kshisen.install)
===
--- testing-i686/kdegames-kshisen.install   (rev 0)
+++ testing-i686/kdegames-kshisen.install   2013-05-07 16:41:12 UTC (rev 
184706)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kshisen/repos/testing-x86_64/PKGBUILD (from rev 184705, 
kdegames-kshisen/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:41:12 UTC (rev 184706)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kshisen
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A solitaire-like game played using the standard set of Mahjong tiles"
+url="http://kde.org/applications/games/kshisen/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames' 'libkmahjongg')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kshisen-${pkgver}.tar.xz";)
+sha1sums=('36f8e99e64d9fd29e6b264c9c83fda38f5f09423')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kshisen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kshisen/repos/testing-x86_64/kdegames-kshisen.install (from 
rev 184705, kdegames-kshisen/trunk/kdegames-kshisen.install)
===
--- testing-x86_64/kdegames-kshisen.install (rev 0)
+++ testing-x86_64/kdegames-kshisen.install 2013-05-07 16:41:12 UTC (rev 
184706)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:41:05
  Author: andrea
Revision: 184705

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

Added:
  kdegames-kreversi/repos/testing-i686/
  kdegames-kreversi/repos/testing-i686/PKGBUILD
(from rev 184704, kdegames-kreversi/trunk/PKGBUILD)
  kdegames-kreversi/repos/testing-i686/kdegames-kreversi.install
(from rev 184704, kdegames-kreversi/trunk/kdegames-kreversi.install)
  kdegames-kreversi/repos/testing-x86_64/
  kdegames-kreversi/repos/testing-x86_64/PKGBUILD
(from rev 184704, kdegames-kreversi/trunk/PKGBUILD)
  kdegames-kreversi/repos/testing-x86_64/kdegames-kreversi.install
(from rev 184704, kdegames-kreversi/trunk/kdegames-kreversi.install)

--+
 testing-i686/PKGBUILD|   31 +
 testing-i686/kdegames-kreversi.install   |   11 ++
 testing-x86_64/PKGBUILD  |   31 +
 testing-x86_64/kdegames-kreversi.install |   11 ++
 4 files changed, 84 insertions(+)

Copied: kdegames-kreversi/repos/testing-i686/PKGBUILD (from rev 184704, 
kdegames-kreversi/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:41:05 UTC (rev 184705)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kreversi
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A simple one player strategy game played against the computer"
+url="http://kde.org/applications/games/kreversi/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kreversi-${pkgver}.tar.xz";)
+sha1sums=('a2b35641a39706de0deda9ea4777ff0b2ebde367')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kreversi-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kreversi/repos/testing-i686/kdegames-kreversi.install (from 
rev 184704, kdegames-kreversi/trunk/kdegames-kreversi.install)
===
--- testing-i686/kdegames-kreversi.install  (rev 0)
+++ testing-i686/kdegames-kreversi.install  2013-05-07 16:41:05 UTC (rev 
184705)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kreversi/repos/testing-x86_64/PKGBUILD (from rev 184704, 
kdegames-kreversi/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:41:05 UTC (rev 184705)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kreversi
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A simple one player strategy game played against the computer"
+url="http://kde.org/applications/games/kreversi/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kreversi-${pkgver}.tar.xz";)
+sha1sums=('a2b35641a39706de0deda9ea4777ff0b2ebde367')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kreversi-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kreversi/repos/testing-x86_64/kdegames-kreversi.install (from 
rev 184704, kdegames-kreversi/trunk/kdegames-kreversi.install)
===
--- testing-x86_64/kdegames-kreversi.install(rev 0)
+++ testing-x86_64/kdegames-kreversi.install2013-05-07 16:41:05 UTC (rev 
184705)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:40:58
  Author: andrea
Revision: 184704

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

Added:
  kdegames-kpatience/repos/testing-i686/
  kdegames-kpatience/repos/testing-i686/PKGBUILD
(from rev 184703, kdegames-kpatience/trunk/PKGBUILD)
  kdegames-kpatience/repos/testing-i686/kdegames-kpatience.install
(from rev 184703, kdegames-kpatience/trunk/kdegames-kpatience.install)
  kdegames-kpatience/repos/testing-x86_64/
  kdegames-kpatience/repos/testing-x86_64/PKGBUILD
(from rev 184703, kdegames-kpatience/trunk/PKGBUILD)
  kdegames-kpatience/repos/testing-x86_64/kdegames-kpatience.install
(from rev 184703, kdegames-kpatience/trunk/kdegames-kpatience.install)

---+
 testing-i686/PKGBUILD |   31 
 testing-i686/kdegames-kpatience.install   |   13 +++
 testing-x86_64/PKGBUILD   |   31 
 testing-x86_64/kdegames-kpatience.install |   13 +++
 4 files changed, 88 insertions(+)

Copied: kdegames-kpatience/repos/testing-i686/PKGBUILD (from rev 184703, 
kdegames-kpatience/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:40:58 UTC (rev 184704)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kpatience
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Offers a selection of solitaire card games"
+url="http://kde.org/applications/games/kpat/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kpat-${pkgver}.tar.xz";)
+sha1sums=('b2c9a9c65ab4a3760400cf51d055989f08464851')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kpat-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kpatience/repos/testing-i686/kdegames-kpatience.install (from 
rev 184703, kdegames-kpatience/trunk/kdegames-kpatience.install)
===
--- testing-i686/kdegames-kpatience.install (rev 0)
+++ testing-i686/kdegames-kpatience.install 2013-05-07 16:40:58 UTC (rev 
184704)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kpatience/repos/testing-x86_64/PKGBUILD (from rev 184703, 
kdegames-kpatience/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:40:58 UTC (rev 184704)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kpatience
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Offers a selection of solitaire card games"
+url="http://kde.org/applications/games/kpat/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kpat-${pkgver}.tar.xz";)
+sha1sums=('b2c9a9c65ab4a3760400cf51d055989f08464851')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kpat-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kpatience/repos/testing-x86_64/kdegames-kpatience.install 
(from rev 184703, kdegames-kpatience/trunk/kdegames-kpatience.install)
===
--- testing-x86_64/kdegames-kpatience.install   (rev 0)
+++ testing-x86_64/kdegames-kpatience.install   2013-05-07 16:40:58 UTC (rev 
184704)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:40:52
  Author: andrea
Revision: 184703

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

Added:
  kdegames-konquest/repos/testing-i686/
  kdegames-konquest/repos/testing-i686/PKGBUILD
(from rev 184702, kdegames-konquest/trunk/PKGBUILD)
  kdegames-konquest/repos/testing-i686/kdegames-konquest.install
(from rev 184702, kdegames-konquest/trunk/kdegames-konquest.install)
  kdegames-konquest/repos/testing-x86_64/
  kdegames-konquest/repos/testing-x86_64/PKGBUILD
(from rev 184702, kdegames-konquest/trunk/PKGBUILD)
  kdegames-konquest/repos/testing-x86_64/kdegames-konquest.install
(from rev 184702, kdegames-konquest/trunk/kdegames-konquest.install)

--+
 testing-i686/PKGBUILD|   31 +
 testing-i686/kdegames-konquest.install   |   11 ++
 testing-x86_64/PKGBUILD  |   31 +
 testing-x86_64/kdegames-konquest.install |   11 ++
 4 files changed, 84 insertions(+)

Copied: kdegames-konquest/repos/testing-i686/PKGBUILD (from rev 184702, 
kdegames-konquest/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:40:52 UTC (rev 184703)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-konquest
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="The KDE version of Gnu-Lactic"
+url="http://kde.org/applications/games/konquest/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/konquest-${pkgver}.tar.xz";)
+sha1sums=('7034913a42475d21af4adb28257b088172e771da')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../konquest-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-konquest/repos/testing-i686/kdegames-konquest.install (from 
rev 184702, kdegames-konquest/trunk/kdegames-konquest.install)
===
--- testing-i686/kdegames-konquest.install  (rev 0)
+++ testing-i686/kdegames-konquest.install  2013-05-07 16:40:52 UTC (rev 
184703)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-konquest/repos/testing-x86_64/PKGBUILD (from rev 184702, 
kdegames-konquest/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:40:52 UTC (rev 184703)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-konquest
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="The KDE version of Gnu-Lactic"
+url="http://kde.org/applications/games/konquest/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/konquest-${pkgver}.tar.xz";)
+sha1sums=('7034913a42475d21af4adb28257b088172e771da')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../konquest-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-konquest/repos/testing-x86_64/kdegames-konquest.install (from 
rev 184702, kdegames-konquest/trunk/kdegames-konquest.install)
===
--- testing-x86_64/kdegames-konquest.install(rev 0)
+++ testing-x86_64/kdegames-konquest.install2013-05-07 16:40:52 UTC (rev 
184703)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:40:46
  Author: andrea
Revision: 184702

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

Added:
  kdegames-kollision/repos/testing-i686/
  kdegames-kollision/repos/testing-i686/PKGBUILD
(from rev 184701, kdegames-kollision/trunk/PKGBUILD)
  kdegames-kollision/repos/testing-i686/kdegames-kollision.install
(from rev 184701, kdegames-kollision/trunk/kdegames-kollision.install)
  kdegames-kollision/repos/testing-x86_64/
  kdegames-kollision/repos/testing-x86_64/PKGBUILD
(from rev 184701, kdegames-kollision/trunk/PKGBUILD)
  kdegames-kollision/repos/testing-x86_64/kdegames-kollision.install
(from rev 184701, kdegames-kollision/trunk/kdegames-kollision.install)

---+
 testing-i686/PKGBUILD |   31 
 testing-i686/kdegames-kollision.install   |   11 +
 testing-x86_64/PKGBUILD   |   31 
 testing-x86_64/kdegames-kollision.install |   11 +
 4 files changed, 84 insertions(+)

Copied: kdegames-kollision/repos/testing-i686/PKGBUILD (from rev 184701, 
kdegames-kollision/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:40:46 UTC (rev 184702)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kollision
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A simple ball dodging game"
+url="http://kde.org/applications/games/kollision/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kollision-${pkgver}.tar.xz";)
+sha1sums=('196770d3b15a74c4399348549efea5f1b5f2808e')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kollision-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kollision/repos/testing-i686/kdegames-kollision.install (from 
rev 184701, kdegames-kollision/trunk/kdegames-kollision.install)
===
--- testing-i686/kdegames-kollision.install (rev 0)
+++ testing-i686/kdegames-kollision.install 2013-05-07 16:40:46 UTC (rev 
184702)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kollision/repos/testing-x86_64/PKGBUILD (from rev 184701, 
kdegames-kollision/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:40:46 UTC (rev 184702)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kollision
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A simple ball dodging game"
+url="http://kde.org/applications/games/kollision/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kollision-${pkgver}.tar.xz";)
+sha1sums=('196770d3b15a74c4399348549efea5f1b5f2808e')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kollision-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kollision/repos/testing-x86_64/kdegames-kollision.install 
(from rev 184701, kdegames-kollision/trunk/kdegames-kollision.install)
===
--- testing-x86_64/kdegames-kollision.install   (rev 0)
+++ testing-x86_64/kdegames-kollision.install   2013-05-07 16:40:46 UTC (rev 
184702)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:40:39
  Author: andrea
Revision: 184701

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

Added:
  kdegames-kolf/repos/testing-i686/
  kdegames-kolf/repos/testing-i686/PKGBUILD
(from rev 184700, kdegames-kolf/trunk/PKGBUILD)
  kdegames-kolf/repos/testing-i686/kdegames-kolf.install
(from rev 184700, kdegames-kolf/trunk/kdegames-kolf.install)
  kdegames-kolf/repos/testing-x86_64/
  kdegames-kolf/repos/testing-x86_64/PKGBUILD
(from rev 184700, kdegames-kolf/trunk/PKGBUILD)
  kdegames-kolf/repos/testing-x86_64/kdegames-kolf.install
(from rev 184700, kdegames-kolf/trunk/kdegames-kolf.install)

--+
 testing-i686/PKGBUILD|   31 +++
 testing-i686/kdegames-kolf.install   |   12 
 testing-x86_64/PKGBUILD  |   31 +++
 testing-x86_64/kdegames-kolf.install |   12 
 4 files changed, 86 insertions(+)

Copied: kdegames-kolf/repos/testing-i686/PKGBUILD (from rev 184700, 
kdegames-kolf/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:40:39 UTC (rev 184701)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kolf
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A miniature golf game with 2d top-down view"
+url="http://kde.org/applications/games/kolf/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kolf-${pkgver}.tar.xz";)
+sha1sums=('f35c94f3e184e8b1bcaab50e519b424e580c5665')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kolf-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kolf/repos/testing-i686/kdegames-kolf.install (from rev 
184700, kdegames-kolf/trunk/kdegames-kolf.install)
===
--- testing-i686/kdegames-kolf.install  (rev 0)
+++ testing-i686/kdegames-kolf.install  2013-05-07 16:40:39 UTC (rev 184701)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kolf/repos/testing-x86_64/PKGBUILD (from rev 184700, 
kdegames-kolf/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:40:39 UTC (rev 184701)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kolf
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A miniature golf game with 2d top-down view"
+url="http://kde.org/applications/games/kolf/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kolf-${pkgver}.tar.xz";)
+sha1sums=('f35c94f3e184e8b1bcaab50e519b424e580c5665')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kolf-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kolf/repos/testing-x86_64/kdegames-kolf.install (from rev 
184700, kdegames-kolf/trunk/kdegames-kolf.install)
===
--- testing-x86_64/kdegames-kolf.install(rev 0)
+++ testing-x86_64/kdegames-kolf.install2013-05-07 16:40:39 UTC (rev 
184701)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:40:32
  Author: andrea
Revision: 184700

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

Added:
  kdegames-knetwalk/repos/testing-i686/
  kdegames-knetwalk/repos/testing-i686/PKGBUILD
(from rev 184699, kdegames-knetwalk/trunk/PKGBUILD)
  kdegames-knetwalk/repos/testing-i686/kdegames-knetwalk.install
(from rev 184699, kdegames-knetwalk/trunk/kdegames-knetwalk.install)
  kdegames-knetwalk/repos/testing-x86_64/
  kdegames-knetwalk/repos/testing-x86_64/PKGBUILD
(from rev 184699, kdegames-knetwalk/trunk/PKGBUILD)
  kdegames-knetwalk/repos/testing-x86_64/kdegames-knetwalk.install
(from rev 184699, kdegames-knetwalk/trunk/kdegames-knetwalk.install)

--+
 testing-i686/PKGBUILD|   31 +
 testing-i686/kdegames-knetwalk.install   |   11 ++
 testing-x86_64/PKGBUILD  |   31 +
 testing-x86_64/kdegames-knetwalk.install |   11 ++
 4 files changed, 84 insertions(+)

Copied: kdegames-knetwalk/repos/testing-i686/PKGBUILD (from rev 184699, 
kdegames-knetwalk/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:40:32 UTC (rev 184700)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-knetwalk
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Connect all the terminals to the server, in as few turns as possible"
+url="http://kde.org/applications/games/knetwalk/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/knetwalk-${pkgver}.tar.xz";)
+sha1sums=('13dfaa5039b53fc6b50e5c8e4998324b283806f0')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../knetwalk-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-knetwalk/repos/testing-i686/kdegames-knetwalk.install (from 
rev 184699, kdegames-knetwalk/trunk/kdegames-knetwalk.install)
===
--- testing-i686/kdegames-knetwalk.install  (rev 0)
+++ testing-i686/kdegames-knetwalk.install  2013-05-07 16:40:32 UTC (rev 
184700)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-knetwalk/repos/testing-x86_64/PKGBUILD (from rev 184699, 
kdegames-knetwalk/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:40:32 UTC (rev 184700)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-knetwalk
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Connect all the terminals to the server, in as few turns as possible"
+url="http://kde.org/applications/games/knetwalk/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/knetwalk-${pkgver}.tar.xz";)
+sha1sums=('13dfaa5039b53fc6b50e5c8e4998324b283806f0')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../knetwalk-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-knetwalk/repos/testing-x86_64/kdegames-knetwalk.install (from 
rev 184699, kdegames-knetwalk/trunk/kdegames-knetwalk.install)
===
--- testing-x86_64/kdegames-knetwalk.install(rev 0)
+++ testing-x86_64/kdegames-knetwalk.install2013-05-07 16:40:32 UTC (rev 
184700)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:40:25
  Author: andrea
Revision: 184699

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

Added:
  kdegames-knavalbattle/repos/testing-i686/
  kdegames-knavalbattle/repos/testing-i686/PKGBUILD
(from rev 184698, kdegames-knavalbattle/trunk/PKGBUILD)
  kdegames-knavalbattle/repos/testing-i686/kdegames-knavalbattle.install
(from rev 184698, kdegames-knavalbattle/trunk/kdegames-knavalbattle.install)
  kdegames-knavalbattle/repos/testing-x86_64/
  kdegames-knavalbattle/repos/testing-x86_64/PKGBUILD
(from rev 184698, kdegames-knavalbattle/trunk/PKGBUILD)
  kdegames-knavalbattle/repos/testing-x86_64/kdegames-knavalbattle.install
(from rev 184698, kdegames-knavalbattle/trunk/kdegames-knavalbattle.install)

--+
 testing-i686/PKGBUILD|   31 +
 testing-i686/kdegames-knavalbattle.install   |   12 +
 testing-x86_64/PKGBUILD  |   31 +
 testing-x86_64/kdegames-knavalbattle.install |   12 +
 4 files changed, 86 insertions(+)

Copied: kdegames-knavalbattle/repos/testing-i686/PKGBUILD (from rev 184698, 
kdegames-knavalbattle/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:40:25 UTC (rev 184699)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-knavalbattle
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A ship sinking game"
+url="http://kde.org/applications/games/knavalbattle/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/knavalbattle-${pkgver}.tar.xz";)
+sha1sums=('aa6e06896e93c5e33623a55c0b5d2c15cd49ea97')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../knavalbattle-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-knavalbattle/repos/testing-i686/kdegames-knavalbattle.install 
(from rev 184698, kdegames-knavalbattle/trunk/kdegames-knavalbattle.install)
===
--- testing-i686/kdegames-knavalbattle.install  (rev 0)
+++ testing-i686/kdegames-knavalbattle.install  2013-05-07 16:40:25 UTC (rev 
184699)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-knavalbattle/repos/testing-x86_64/PKGBUILD (from rev 184698, 
kdegames-knavalbattle/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:40:25 UTC (rev 184699)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-knavalbattle
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A ship sinking game"
+url="http://kde.org/applications/games/knavalbattle/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/knavalbattle-${pkgver}.tar.xz";)
+sha1sums=('aa6e06896e93c5e33623a55c0b5d2c15cd49ea97')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../knavalbattle-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
kdegames-knavalbattle/repos/testing-x86_64/kdegames-knavalbattle.install (from 
rev 184698, kdegames-knavalbattle/trunk/kdegames-knavalbattle.install)
===
--- testing-x86_64/kdegames-knavalbattle.install
(rev 0)
+++ testing-x86_64/kdegames-knavalbattle.install2013-05-07 16:40:25 UTC 
(rev 184699)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:40:19
  Author: andrea
Revision: 184698

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

Added:
  kdegames-kmines/repos/testing-i686/
  kdegames-kmines/repos/testing-i686/PKGBUILD
(from rev 184697, kdegames-kmines/trunk/PKGBUILD)
  kdegames-kmines/repos/testing-i686/kdegames-kmines.install
(from rev 184697, kdegames-kmines/trunk/kdegames-kmines.install)
  kdegames-kmines/repos/testing-x86_64/
  kdegames-kmines/repos/testing-x86_64/PKGBUILD
(from rev 184697, kdegames-kmines/trunk/PKGBUILD)
  kdegames-kmines/repos/testing-x86_64/kdegames-kmines.install
(from rev 184697, kdegames-kmines/trunk/kdegames-kmines.install)

+
 testing-i686/PKGBUILD  |   31 +++
 testing-i686/kdegames-kmines.install   |   11 +++
 testing-x86_64/PKGBUILD|   31 +++
 testing-x86_64/kdegames-kmines.install |   11 +++
 4 files changed, 84 insertions(+)

Copied: kdegames-kmines/repos/testing-i686/PKGBUILD (from rev 184697, 
kdegames-kmines/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:40:19 UTC (rev 184698)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kmines
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="The classic Minesweeper game"
+url="http://kde.org/applications/games/kmines/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kmines-${pkgver}.tar.xz";)
+sha1sums=('9f0130c4ce1276bbc0b8d89880d5db73efdc3aef')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kmines-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kmines/repos/testing-i686/kdegames-kmines.install (from rev 
184697, kdegames-kmines/trunk/kdegames-kmines.install)
===
--- testing-i686/kdegames-kmines.install(rev 0)
+++ testing-i686/kdegames-kmines.install2013-05-07 16:40:19 UTC (rev 
184698)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kmines/repos/testing-x86_64/PKGBUILD (from rev 184697, 
kdegames-kmines/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:40:19 UTC (rev 184698)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kmines
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="The classic Minesweeper game"
+url="http://kde.org/applications/games/kmines/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kmines-${pkgver}.tar.xz";)
+sha1sums=('9f0130c4ce1276bbc0b8d89880d5db73efdc3aef')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kmines-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kmines/repos/testing-x86_64/kdegames-kmines.install (from rev 
184697, kdegames-kmines/trunk/kdegames-kmines.install)
===
--- testing-x86_64/kdegames-kmines.install  (rev 0)
+++ testing-x86_64/kdegames-kmines.install  2013-05-07 16:40:19 UTC (rev 
184698)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:40:12
  Author: andrea
Revision: 184697

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

Added:
  kdegames-kmahjongg/repos/testing-i686/
  kdegames-kmahjongg/repos/testing-i686/PKGBUILD
(from rev 184696, kdegames-kmahjongg/trunk/PKGBUILD)
  kdegames-kmahjongg/repos/testing-i686/kdegames-kmahjongg.install
(from rev 184696, kdegames-kmahjongg/trunk/kdegames-kmahjongg.install)
  kdegames-kmahjongg/repos/testing-x86_64/
  kdegames-kmahjongg/repos/testing-x86_64/PKGBUILD
(from rev 184696, kdegames-kmahjongg/trunk/PKGBUILD)
  kdegames-kmahjongg/repos/testing-x86_64/kdegames-kmahjongg.install
(from rev 184696, kdegames-kmahjongg/trunk/kdegames-kmahjongg.install)

---+
 testing-i686/PKGBUILD |   31 
 testing-i686/kdegames-kmahjongg.install   |   11 +
 testing-x86_64/PKGBUILD   |   31 
 testing-x86_64/kdegames-kmahjongg.install |   11 +
 4 files changed, 84 insertions(+)

Copied: kdegames-kmahjongg/repos/testing-i686/PKGBUILD (from rev 184696, 
kdegames-kmahjongg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:40:12 UTC (rev 184697)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kmahjongg
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A tile matching game for one or two players"
+url="http://kde.org/applications/games/kmahjongg/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkmahjongg' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kmahjongg-${pkgver}.tar.xz";)
+sha1sums=('8c1168da227c5be6775ae71adfaa7be39ce69a28')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kmahjongg-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kmahjongg/repos/testing-i686/kdegames-kmahjongg.install (from 
rev 184696, kdegames-kmahjongg/trunk/kdegames-kmahjongg.install)
===
--- testing-i686/kdegames-kmahjongg.install (rev 0)
+++ testing-i686/kdegames-kmahjongg.install 2013-05-07 16:40:12 UTC (rev 
184697)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kmahjongg/repos/testing-x86_64/PKGBUILD (from rev 184696, 
kdegames-kmahjongg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:40:12 UTC (rev 184697)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kmahjongg
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A tile matching game for one or two players"
+url="http://kde.org/applications/games/kmahjongg/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkmahjongg' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kmahjongg-${pkgver}.tar.xz";)
+sha1sums=('8c1168da227c5be6775ae71adfaa7be39ce69a28')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kmahjongg-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kmahjongg/repos/testing-x86_64/kdegames-kmahjongg.install 
(from rev 184696, kdegames-kmahjongg/trunk/kdegames-kmahjongg.install)
===
--- testing-x86_64/kdegames-kmahjongg.install   (rev 0)
+++ testing-x86_64/kdegames-kmahjongg.install   2013-05-07 16:40:12 UTC (rev 
184697)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:40:06
  Author: andrea
Revision: 184696

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

Added:
  kdegames-klines/repos/testing-i686/
  kdegames-klines/repos/testing-i686/PKGBUILD
(from rev 184695, kdegames-klines/trunk/PKGBUILD)
  kdegames-klines/repos/testing-i686/kdegames-klines.install
(from rev 184695, kdegames-klines/trunk/kdegames-klines.install)
  kdegames-klines/repos/testing-x86_64/
  kdegames-klines/repos/testing-x86_64/PKGBUILD
(from rev 184695, kdegames-klines/trunk/PKGBUILD)
  kdegames-klines/repos/testing-x86_64/kdegames-klines.install
(from rev 184695, kdegames-klines/trunk/kdegames-klines.install)

+
 testing-i686/PKGBUILD  |   31 +++
 testing-i686/kdegames-klines.install   |   11 +++
 testing-x86_64/PKGBUILD|   31 +++
 testing-x86_64/kdegames-klines.install |   11 +++
 4 files changed, 84 insertions(+)

Copied: kdegames-klines/repos/testing-i686/PKGBUILD (from rev 184695, 
kdegames-klines/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:40:06 UTC (rev 184696)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-klines
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A simple but highly addictive, one player game"
+url="http://kde.org/applications/games/klines/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/klines-${pkgver}.tar.xz";)
+sha1sums=('474bab91de2112f55c5286f754778cd638d0862c')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../klines-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-klines/repos/testing-i686/kdegames-klines.install (from rev 
184695, kdegames-klines/trunk/kdegames-klines.install)
===
--- testing-i686/kdegames-klines.install(rev 0)
+++ testing-i686/kdegames-klines.install2013-05-07 16:40:06 UTC (rev 
184696)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-klines/repos/testing-x86_64/PKGBUILD (from rev 184695, 
kdegames-klines/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:40:06 UTC (rev 184696)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-klines
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A simple but highly addictive, one player game"
+url="http://kde.org/applications/games/klines/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/klines-${pkgver}.tar.xz";)
+sha1sums=('474bab91de2112f55c5286f754778cd638d0862c')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../klines-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-klines/repos/testing-x86_64/kdegames-klines.install (from rev 
184695, kdegames-klines/trunk/kdegames-klines.install)
===
--- testing-x86_64/kdegames-klines.install  (rev 0)
+++ testing-x86_64/kdegames-klines.install  2013-05-07 16:40:06 UTC (rev 
184696)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:39:52
  Author: andrea
Revision: 184695

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

Added:
  kdegames-klickety/repos/testing-i686/
  kdegames-klickety/repos/testing-i686/PKGBUILD
(from rev 184694, kdegames-klickety/trunk/PKGBUILD)
  kdegames-klickety/repos/testing-i686/kdegames-klickety.install
(from rev 184694, kdegames-klickety/trunk/kdegames-klickety.install)
  kdegames-klickety/repos/testing-x86_64/
  kdegames-klickety/repos/testing-x86_64/PKGBUILD
(from rev 184694, kdegames-klickety/trunk/PKGBUILD)
  kdegames-klickety/repos/testing-x86_64/kdegames-klickety.install
(from rev 184694, kdegames-klickety/trunk/kdegames-klickety.install)

--+
 testing-i686/PKGBUILD|   31 +
 testing-i686/kdegames-klickety.install   |   11 ++
 testing-x86_64/PKGBUILD  |   31 +
 testing-x86_64/kdegames-klickety.install |   11 ++
 4 files changed, 84 insertions(+)

Copied: kdegames-klickety/repos/testing-i686/PKGBUILD (from rev 184694, 
kdegames-klickety/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:39:52 UTC (rev 184695)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-klickety
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="An adaptation of the Clickomania game"
+url="http://kde.org/applications/games/klickety/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/klickety-${pkgver}.tar.xz";)
+sha1sums=('2ac5e9e52b3312bc54b9d02a5210caccc83f7f39')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../klickety-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-klickety/repos/testing-i686/kdegames-klickety.install (from 
rev 184694, kdegames-klickety/trunk/kdegames-klickety.install)
===
--- testing-i686/kdegames-klickety.install  (rev 0)
+++ testing-i686/kdegames-klickety.install  2013-05-07 16:39:52 UTC (rev 
184695)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-klickety/repos/testing-x86_64/PKGBUILD (from rev 184694, 
kdegames-klickety/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:39:52 UTC (rev 184695)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-klickety
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="An adaptation of the Clickomania game"
+url="http://kde.org/applications/games/klickety/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/klickety-${pkgver}.tar.xz";)
+sha1sums=('2ac5e9e52b3312bc54b9d02a5210caccc83f7f39')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../klickety-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-klickety/repos/testing-x86_64/kdegames-klickety.install (from 
rev 184694, kdegames-klickety/trunk/kdegames-klickety.install)
===
--- testing-x86_64/kdegames-klickety.install(rev 0)
+++ testing-x86_64/kdegames-klickety.install2013-05-07 16:39:52 UTC (rev 
184695)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:39:45
  Author: andrea
Revision: 184694

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

Added:
  kdegames-kjumpingcube/repos/testing-i686/
  kdegames-kjumpingcube/repos/testing-i686/PKGBUILD
(from rev 184693, kdegames-kjumpingcube/trunk/PKGBUILD)
  kdegames-kjumpingcube/repos/testing-i686/kdegames-kjumpingcube.install
(from rev 184693, kdegames-kjumpingcube/trunk/kdegames-kjumpingcube.install)
  kdegames-kjumpingcube/repos/testing-x86_64/
  kdegames-kjumpingcube/repos/testing-x86_64/PKGBUILD
(from rev 184693, kdegames-kjumpingcube/trunk/PKGBUILD)
  kdegames-kjumpingcube/repos/testing-x86_64/kdegames-kjumpingcube.install
(from rev 184693, kdegames-kjumpingcube/trunk/kdegames-kjumpingcube.install)

--+
 testing-i686/PKGBUILD|   31 +
 testing-i686/kdegames-kjumpingcube.install   |   11 
 testing-x86_64/PKGBUILD  |   31 +
 testing-x86_64/kdegames-kjumpingcube.install |   11 
 4 files changed, 84 insertions(+)

Copied: kdegames-kjumpingcube/repos/testing-i686/PKGBUILD (from rev 184693, 
kdegames-kjumpingcube/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:39:45 UTC (rev 184694)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kjumpingcube
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A simple tactical game"
+url="http://kde.org/applications/games/kjumpingcube/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kjumpingcube-${pkgver}.tar.xz";)
+sha1sums=('9c46888572703e2f1d632e09ba5330e8434c51c1')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kjumpingcube-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kjumpingcube/repos/testing-i686/kdegames-kjumpingcube.install 
(from rev 184693, kdegames-kjumpingcube/trunk/kdegames-kjumpingcube.install)
===
--- testing-i686/kdegames-kjumpingcube.install  (rev 0)
+++ testing-i686/kdegames-kjumpingcube.install  2013-05-07 16:39:45 UTC (rev 
184694)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kjumpingcube/repos/testing-x86_64/PKGBUILD (from rev 184693, 
kdegames-kjumpingcube/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:39:45 UTC (rev 184694)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kjumpingcube
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A simple tactical game"
+url="http://kde.org/applications/games/kjumpingcube/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kjumpingcube-${pkgver}.tar.xz";)
+sha1sums=('9c46888572703e2f1d632e09ba5330e8434c51c1')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kjumpingcube-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
kdegames-kjumpingcube/repos/testing-x86_64/kdegames-kjumpingcube.install (from 
rev 184693, kdegames-kjumpingcube/trunk/kdegames-kjumpingcube.install)
===
--- testing-x86_64/kdegames-kjumpingcube.install
(rev 0)
+++ testing-x86_64/kdegames-kjumpingcube.install2013-05-07 16:39:45 UTC 
(rev 184694)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:39:39
  Author: andrea
Revision: 184693

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

Added:
  kdegames-kiriki/repos/testing-i686/
  kdegames-kiriki/repos/testing-i686/PKGBUILD
(from rev 184692, kdegames-kiriki/trunk/PKGBUILD)
  kdegames-kiriki/repos/testing-i686/kdegames-kiriki.install
(from rev 184692, kdegames-kiriki/trunk/kdegames-kiriki.install)
  kdegames-kiriki/repos/testing-x86_64/
  kdegames-kiriki/repos/testing-x86_64/PKGBUILD
(from rev 184692, kdegames-kiriki/trunk/PKGBUILD)
  kdegames-kiriki/repos/testing-x86_64/kdegames-kiriki.install
(from rev 184692, kdegames-kiriki/trunk/kdegames-kiriki.install)

+
 testing-i686/PKGBUILD  |   31 +++
 testing-i686/kdegames-kiriki.install   |   11 +++
 testing-x86_64/PKGBUILD|   31 +++
 testing-x86_64/kdegames-kiriki.install |   11 +++
 4 files changed, 84 insertions(+)

Copied: kdegames-kiriki/repos/testing-i686/PKGBUILD (from rev 184692, 
kdegames-kiriki/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:39:39 UTC (rev 184693)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kiriki
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="An addictive and fun dice game"
+url="http://kde.org/applications/games/kiriki/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kiriki-${pkgver}.tar.xz";)
+sha1sums=('9ec35954ba2eab34d6a760d17f3ab5ebfa193a61')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kiriki-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kiriki/repos/testing-i686/kdegames-kiriki.install (from rev 
184692, kdegames-kiriki/trunk/kdegames-kiriki.install)
===
--- testing-i686/kdegames-kiriki.install(rev 0)
+++ testing-i686/kdegames-kiriki.install2013-05-07 16:39:39 UTC (rev 
184693)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kiriki/repos/testing-x86_64/PKGBUILD (from rev 184692, 
kdegames-kiriki/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:39:39 UTC (rev 184693)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kiriki
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="An addictive and fun dice game"
+url="http://kde.org/applications/games/kiriki/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kiriki-${pkgver}.tar.xz";)
+sha1sums=('9ec35954ba2eab34d6a760d17f3ab5ebfa193a61')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kiriki-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kiriki/repos/testing-x86_64/kdegames-kiriki.install (from rev 
184692, kdegames-kiriki/trunk/kdegames-kiriki.install)
===
--- testing-x86_64/kdegames-kiriki.install  (rev 0)
+++ testing-x86_64/kdegames-kiriki.install  2013-05-07 16:39:39 UTC (rev 
184693)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:39:30
  Author: andrea
Revision: 184692

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

Added:
  kdegames-killbots/repos/testing-i686/
  kdegames-killbots/repos/testing-i686/PKGBUILD
(from rev 184691, kdegames-killbots/trunk/PKGBUILD)
  kdegames-killbots/repos/testing-i686/kdegames-killbots.install
(from rev 184691, kdegames-killbots/trunk/kdegames-killbots.install)
  kdegames-killbots/repos/testing-x86_64/
  kdegames-killbots/repos/testing-x86_64/PKGBUILD
(from rev 184691, kdegames-killbots/trunk/PKGBUILD)
  kdegames-killbots/repos/testing-x86_64/kdegames-killbots.install
(from rev 184691, kdegames-killbots/trunk/kdegames-killbots.install)

--+
 testing-i686/PKGBUILD|   31 +
 testing-i686/kdegames-killbots.install   |   11 ++
 testing-x86_64/PKGBUILD  |   31 +
 testing-x86_64/kdegames-killbots.install |   11 ++
 4 files changed, 84 insertions(+)

Copied: kdegames-killbots/repos/testing-i686/PKGBUILD (from rev 184691, 
kdegames-killbots/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:39:30 UTC (rev 184692)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-killbots
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A simple game of evading killer robots"
+url="http://kde.org/applications/games/killbots/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/killbots-${pkgver}.tar.xz";)
+sha1sums=('9b580830f82468351fb91306f30a085519432b10')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../killbots-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-killbots/repos/testing-i686/kdegames-killbots.install (from 
rev 184691, kdegames-killbots/trunk/kdegames-killbots.install)
===
--- testing-i686/kdegames-killbots.install  (rev 0)
+++ testing-i686/kdegames-killbots.install  2013-05-07 16:39:30 UTC (rev 
184692)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-killbots/repos/testing-x86_64/PKGBUILD (from rev 184691, 
kdegames-killbots/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:39:30 UTC (rev 184692)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-killbots
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A simple game of evading killer robots"
+url="http://kde.org/applications/games/killbots/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/killbots-${pkgver}.tar.xz";)
+sha1sums=('9b580830f82468351fb91306f30a085519432b10')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../killbots-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-killbots/repos/testing-x86_64/kdegames-killbots.install (from 
rev 184691, kdegames-killbots/trunk/kdegames-killbots.install)
===
--- testing-x86_64/kdegames-killbots.install(rev 0)
+++ testing-x86_64/kdegames-killbots.install2013-05-07 16:39:30 UTC (rev 
184692)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:39:23
  Author: andrea
Revision: 184691

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

Added:
  kdegames-kigo/repos/testing-i686/
  kdegames-kigo/repos/testing-i686/PKGBUILD
(from rev 184690, kdegames-kigo/trunk/PKGBUILD)
  kdegames-kigo/repos/testing-i686/kdegames-kigo.install
(from rev 184690, kdegames-kigo/trunk/kdegames-kigo.install)
  kdegames-kigo/repos/testing-x86_64/
  kdegames-kigo/repos/testing-x86_64/PKGBUILD
(from rev 184690, kdegames-kigo/trunk/PKGBUILD)
  kdegames-kigo/repos/testing-x86_64/kdegames-kigo.install
(from rev 184690, kdegames-kigo/trunk/kdegames-kigo.install)

--+
 testing-i686/PKGBUILD|   31 +++
 testing-i686/kdegames-kigo.install   |   12 
 testing-x86_64/PKGBUILD  |   31 +++
 testing-x86_64/kdegames-kigo.install |   12 
 4 files changed, 86 insertions(+)

Copied: kdegames-kigo/repos/testing-i686/PKGBUILD (from rev 184690, 
kdegames-kigo/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:39:23 UTC (rev 184691)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kigo
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="An open-source implementation of the popular Go game"
+url="http://kde.org/applications/games/kigo/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames' 'gnugo')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kigo-${pkgver}.tar.xz";)
+sha1sums=('370656ff032a8980579b5a478a7868598035c897')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kigo-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kigo/repos/testing-i686/kdegames-kigo.install (from rev 
184690, kdegames-kigo/trunk/kdegames-kigo.install)
===
--- testing-i686/kdegames-kigo.install  (rev 0)
+++ testing-i686/kdegames-kigo.install  2013-05-07 16:39:23 UTC (rev 184691)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kigo/repos/testing-x86_64/PKGBUILD (from rev 184690, 
kdegames-kigo/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:39:23 UTC (rev 184691)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kigo
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="An open-source implementation of the popular Go game"
+url="http://kde.org/applications/games/kigo/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames' 'gnugo')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kigo-${pkgver}.tar.xz";)
+sha1sums=('370656ff032a8980579b5a478a7868598035c897')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kigo-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kigo/repos/testing-x86_64/kdegames-kigo.install (from rev 
184690, kdegames-kigo/trunk/kdegames-kigo.install)
===
--- testing-x86_64/kdegames-kigo.install(rev 0)
+++ testing-x86_64/kdegames-kigo.install2013-05-07 16:39:23 UTC (rev 
184691)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:39:14
  Author: andrea
Revision: 184690

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

Added:
  kdegames-kgoldrunner/repos/testing-i686/
  kdegames-kgoldrunner/repos/testing-i686/PKGBUILD
(from rev 184689, kdegames-kgoldrunner/trunk/PKGBUILD)
  kdegames-kgoldrunner/repos/testing-i686/kdegames-kgoldrunner.install
(from rev 184689, kdegames-kgoldrunner/trunk/kdegames-kgoldrunner.install)
  kdegames-kgoldrunner/repos/testing-x86_64/
  kdegames-kgoldrunner/repos/testing-x86_64/PKGBUILD
(from rev 184689, kdegames-kgoldrunner/trunk/PKGBUILD)
  kdegames-kgoldrunner/repos/testing-x86_64/kdegames-kgoldrunner.install
(from rev 184689, kdegames-kgoldrunner/trunk/kdegames-kgoldrunner.install)

-+
 testing-i686/PKGBUILD   |   31 ++
 testing-i686/kdegames-kgoldrunner.install   |   11 +
 testing-x86_64/PKGBUILD |   31 ++
 testing-x86_64/kdegames-kgoldrunner.install |   11 +
 4 files changed, 84 insertions(+)

Copied: kdegames-kgoldrunner/repos/testing-i686/PKGBUILD (from rev 184689, 
kdegames-kgoldrunner/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:39:14 UTC (rev 184690)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kgoldrunner
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A game of action and puzzle solving"
+url="http://kde.org/applications/games/kgoldrunner/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kgoldrunner-${pkgver}.tar.xz";)
+sha1sums=('3701237b7c3b15d4d4ffe17d78c8470231004d0a')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kgoldrunner-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kgoldrunner/repos/testing-i686/kdegames-kgoldrunner.install 
(from rev 184689, kdegames-kgoldrunner/trunk/kdegames-kgoldrunner.install)
===
--- testing-i686/kdegames-kgoldrunner.install   (rev 0)
+++ testing-i686/kdegames-kgoldrunner.install   2013-05-07 16:39:14 UTC (rev 
184690)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kgoldrunner/repos/testing-x86_64/PKGBUILD (from rev 184689, 
kdegames-kgoldrunner/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:39:14 UTC (rev 184690)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kgoldrunner
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A game of action and puzzle solving"
+url="http://kde.org/applications/games/kgoldrunner/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kgoldrunner-${pkgver}.tar.xz";)
+sha1sums=('3701237b7c3b15d4d4ffe17d78c8470231004d0a')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kgoldrunner-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kgoldrunner/repos/testing-x86_64/kdegames-kgoldrunner.install 
(from rev 184689, kdegames-kgoldrunner/trunk/kdegames-kgoldrunner.install)
===
--- testing-x86_64/kdegames-kgoldrunner.install (rev 0)
+++ testing-x86_64/kdegames-kgoldrunner.install 2013-05-07 16:39:14 UTC (rev 
184690)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:39:02
  Author: andrea
Revision: 184689

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

Added:
  kdegames-kfourinline/repos/testing-i686/
  kdegames-kfourinline/repos/testing-i686/PKGBUILD
(from rev 184688, kdegames-kfourinline/trunk/PKGBUILD)
  kdegames-kfourinline/repos/testing-i686/kdegames-kfourinline.install
(from rev 184688, kdegames-kfourinline/trunk/kdegames-kfourinline.install)
  kdegames-kfourinline/repos/testing-x86_64/
  kdegames-kfourinline/repos/testing-x86_64/PKGBUILD
(from rev 184688, kdegames-kfourinline/trunk/PKGBUILD)
  kdegames-kfourinline/repos/testing-x86_64/kdegames-kfourinline.install
(from rev 184688, kdegames-kfourinline/trunk/kdegames-kfourinline.install)

-+
 testing-i686/PKGBUILD   |   31 ++
 testing-i686/kdegames-kfourinline.install   |   12 ++
 testing-x86_64/PKGBUILD |   31 ++
 testing-x86_64/kdegames-kfourinline.install |   12 ++
 4 files changed, 86 insertions(+)

Copied: kdegames-kfourinline/repos/testing-i686/PKGBUILD (from rev 184688, 
kdegames-kfourinline/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:39:02 UTC (rev 184689)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kfourinline
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A four-in-a-row game"
+url="http://kde.org/applications/games/kfourinline/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kfourinline-${pkgver}.tar.xz";)
+sha1sums=('d49eff3bc2198c4ebb7d14a664ed7b2271e4ca32')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kfourinline-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kfourinline/repos/testing-i686/kdegames-kfourinline.install 
(from rev 184688, kdegames-kfourinline/trunk/kdegames-kfourinline.install)
===
--- testing-i686/kdegames-kfourinline.install   (rev 0)
+++ testing-i686/kdegames-kfourinline.install   2013-05-07 16:39:02 UTC (rev 
184689)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kfourinline/repos/testing-x86_64/PKGBUILD (from rev 184688, 
kdegames-kfourinline/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:39:02 UTC (rev 184689)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kfourinline
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A four-in-a-row game"
+url="http://kde.org/applications/games/kfourinline/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kfourinline-${pkgver}.tar.xz";)
+sha1sums=('d49eff3bc2198c4ebb7d14a664ed7b2271e4ca32')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kfourinline-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kfourinline/repos/testing-x86_64/kdegames-kfourinline.install 
(from rev 184688, kdegames-kfourinline/trunk/kdegames-kfourinline.install)
===
--- testing-x86_64/kdegames-kfourinline.install (rev 0)
+++ testing-x86_64/kdegames-kfourinline.install 2013-05-07 16:39:02 UTC (rev 
184689)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:38:50
  Author: andrea
Revision: 184688

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

Added:
  kdegames-kdiamond/repos/testing-i686/
  kdegames-kdiamond/repos/testing-i686/PKGBUILD
(from rev 184687, kdegames-kdiamond/trunk/PKGBUILD)
  kdegames-kdiamond/repos/testing-i686/kdegames-kdiamond.install
(from rev 184687, kdegames-kdiamond/trunk/kdegames-kdiamond.install)
  kdegames-kdiamond/repos/testing-x86_64/
  kdegames-kdiamond/repos/testing-x86_64/PKGBUILD
(from rev 184687, kdegames-kdiamond/trunk/PKGBUILD)
  kdegames-kdiamond/repos/testing-x86_64/kdegames-kdiamond.install
(from rev 184687, kdegames-kdiamond/trunk/kdegames-kdiamond.install)

--+
 testing-i686/PKGBUILD|   31 +
 testing-i686/kdegames-kdiamond.install   |   11 ++
 testing-x86_64/PKGBUILD  |   31 +
 testing-x86_64/kdegames-kdiamond.install |   11 ++
 4 files changed, 84 insertions(+)

Copied: kdegames-kdiamond/repos/testing-i686/PKGBUILD (from rev 184687, 
kdegames-kdiamond/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:38:50 UTC (rev 184688)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kdiamond
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A single player puzzle game"
+url="http://kde.org/applications/games/kdiamond/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kdiamond-${pkgver}.tar.xz";)
+sha1sums=('ba11547157b1b5d7b789fd2c854aebb3ff5b1714')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kdiamond-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kdiamond/repos/testing-i686/kdegames-kdiamond.install (from 
rev 184687, kdegames-kdiamond/trunk/kdegames-kdiamond.install)
===
--- testing-i686/kdegames-kdiamond.install  (rev 0)
+++ testing-i686/kdegames-kdiamond.install  2013-05-07 16:38:50 UTC (rev 
184688)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kdiamond/repos/testing-x86_64/PKGBUILD (from rev 184687, 
kdegames-kdiamond/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:38:50 UTC (rev 184688)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kdiamond
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A single player puzzle game"
+url="http://kde.org/applications/games/kdiamond/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kdiamond-${pkgver}.tar.xz";)
+sha1sums=('ba11547157b1b5d7b789fd2c854aebb3ff5b1714')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kdiamond-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kdiamond/repos/testing-x86_64/kdegames-kdiamond.install (from 
rev 184687, kdegames-kdiamond/trunk/kdegames-kdiamond.install)
===
--- testing-x86_64/kdegames-kdiamond.install(rev 0)
+++ testing-x86_64/kdegames-kdiamond.install2013-05-07 16:38:50 UTC (rev 
184688)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:38:44
  Author: andrea
Revision: 184687

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

Added:
  kdegames-kbreakout/repos/testing-i686/
  kdegames-kbreakout/repos/testing-i686/PKGBUILD
(from rev 184686, kdegames-kbreakout/trunk/PKGBUILD)
  kdegames-kbreakout/repos/testing-i686/kdegames-kbreakout.install
(from rev 184686, kdegames-kbreakout/trunk/kdegames-kbreakout.install)
  kdegames-kbreakout/repos/testing-x86_64/
  kdegames-kbreakout/repos/testing-x86_64/PKGBUILD
(from rev 184686, kdegames-kbreakout/trunk/PKGBUILD)
  kdegames-kbreakout/repos/testing-x86_64/kdegames-kbreakout.install
(from rev 184686, kdegames-kbreakout/trunk/kdegames-kbreakout.install)

---+
 testing-i686/PKGBUILD |   31 
 testing-i686/kdegames-kbreakout.install   |   11 +
 testing-x86_64/PKGBUILD   |   31 
 testing-x86_64/kdegames-kbreakout.install |   11 +
 4 files changed, 84 insertions(+)

Copied: kdegames-kbreakout/repos/testing-i686/PKGBUILD (from rev 184686, 
kdegames-kbreakout/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:38:44 UTC (rev 184687)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kbreakout
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A Breakout-like game"
+url="http://kde.org/applications/games/kbreakout/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kbreakout-${pkgver}.tar.xz";)
+sha1sums=('8d8508abde6eb2d0aaf75a66ffb253e2f7a67046')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kbreakout-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kbreakout/repos/testing-i686/kdegames-kbreakout.install (from 
rev 184686, kdegames-kbreakout/trunk/kdegames-kbreakout.install)
===
--- testing-i686/kdegames-kbreakout.install (rev 0)
+++ testing-i686/kdegames-kbreakout.install 2013-05-07 16:38:44 UTC (rev 
184687)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kbreakout/repos/testing-x86_64/PKGBUILD (from rev 184686, 
kdegames-kbreakout/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:38:44 UTC (rev 184687)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kbreakout
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A Breakout-like game"
+url="http://kde.org/applications/games/kbreakout/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kbreakout-${pkgver}.tar.xz";)
+sha1sums=('8d8508abde6eb2d0aaf75a66ffb253e2f7a67046')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kbreakout-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kbreakout/repos/testing-x86_64/kdegames-kbreakout.install 
(from rev 184686, kdegames-kbreakout/trunk/kdegames-kbreakout.install)
===
--- testing-x86_64/kdegames-kbreakout.install   (rev 0)
+++ testing-x86_64/kdegames-kbreakout.install   2013-05-07 16:38:44 UTC (rev 
184687)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:38:35
  Author: andrea
Revision: 184686

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

Added:
  kdegames-kbounce/repos/testing-i686/
  kdegames-kbounce/repos/testing-i686/PKGBUILD
(from rev 184685, kdegames-kbounce/trunk/PKGBUILD)
  kdegames-kbounce/repos/testing-i686/kdegames-kbounce.install
(from rev 184685, kdegames-kbounce/trunk/kdegames-kbounce.install)
  kdegames-kbounce/repos/testing-x86_64/
  kdegames-kbounce/repos/testing-x86_64/PKGBUILD
(from rev 184685, kdegames-kbounce/trunk/PKGBUILD)
  kdegames-kbounce/repos/testing-x86_64/kdegames-kbounce.install
(from rev 184685, kdegames-kbounce/trunk/kdegames-kbounce.install)

-+
 testing-i686/PKGBUILD   |   31 ++
 testing-i686/kdegames-kbounce.install   |   11 ++
 testing-x86_64/PKGBUILD |   31 ++
 testing-x86_64/kdegames-kbounce.install |   11 ++
 4 files changed, 84 insertions(+)

Copied: kdegames-kbounce/repos/testing-i686/PKGBUILD (from rev 184685, 
kdegames-kbounce/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:38:35 UTC (rev 184686)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kbounce
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A single player arcade game with the elements of puzzle"
+url="http://kde.org/applications/games/kbounce/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kbounce-${pkgver}.tar.xz";)
+sha1sums=('6c83f932c62d29432aef0403733998a4ae0ca7ad')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kbounce-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kbounce/repos/testing-i686/kdegames-kbounce.install (from rev 
184685, kdegames-kbounce/trunk/kdegames-kbounce.install)
===
--- testing-i686/kdegames-kbounce.install   (rev 0)
+++ testing-i686/kdegames-kbounce.install   2013-05-07 16:38:35 UTC (rev 
184686)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kbounce/repos/testing-x86_64/PKGBUILD (from rev 184685, 
kdegames-kbounce/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:38:35 UTC (rev 184686)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kbounce
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A single player arcade game with the elements of puzzle"
+url="http://kde.org/applications/games/kbounce/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kbounce-${pkgver}.tar.xz";)
+sha1sums=('6c83f932c62d29432aef0403733998a4ae0ca7ad')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kbounce-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kbounce/repos/testing-x86_64/kdegames-kbounce.install (from 
rev 184685, kdegames-kbounce/trunk/kdegames-kbounce.install)
===
--- testing-x86_64/kdegames-kbounce.install (rev 0)
+++ testing-x86_64/kdegames-kbounce.install 2013-05-07 16:38:35 UTC (rev 
184686)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:38:28
  Author: andrea
Revision: 184685

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

Added:
  kdegames-kblocks/repos/testing-i686/
  kdegames-kblocks/repos/testing-i686/PKGBUILD
(from rev 184684, kdegames-kblocks/trunk/PKGBUILD)
  kdegames-kblocks/repos/testing-i686/kdegames-kblocks.install
(from rev 184684, kdegames-kblocks/trunk/kdegames-kblocks.install)
  kdegames-kblocks/repos/testing-x86_64/
  kdegames-kblocks/repos/testing-x86_64/PKGBUILD
(from rev 184684, kdegames-kblocks/trunk/PKGBUILD)
  kdegames-kblocks/repos/testing-x86_64/kdegames-kblocks.install
(from rev 184684, kdegames-kblocks/trunk/kdegames-kblocks.install)

-+
 testing-i686/PKGBUILD   |   31 ++
 testing-i686/kdegames-kblocks.install   |   11 ++
 testing-x86_64/PKGBUILD |   31 ++
 testing-x86_64/kdegames-kblocks.install |   11 ++
 4 files changed, 84 insertions(+)

Copied: kdegames-kblocks/repos/testing-i686/PKGBUILD (from rev 184684, 
kdegames-kblocks/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:38:28 UTC (rev 184685)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kblocks
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="The classic falling blocks game"
+url="http://kde.org/applications/games/kblocks/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kblocks-${pkgver}.tar.xz";)
+sha1sums=('2a43bd8f55474122b241c8993fe98cbd26d36b98')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kblocks-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kblocks/repos/testing-i686/kdegames-kblocks.install (from rev 
184684, kdegames-kblocks/trunk/kdegames-kblocks.install)
===
--- testing-i686/kdegames-kblocks.install   (rev 0)
+++ testing-i686/kdegames-kblocks.install   2013-05-07 16:38:28 UTC (rev 
184685)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kblocks/repos/testing-x86_64/PKGBUILD (from rev 184684, 
kdegames-kblocks/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:38:28 UTC (rev 184685)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kblocks
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="The classic falling blocks game"
+url="http://kde.org/applications/games/kblocks/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kblocks-${pkgver}.tar.xz";)
+sha1sums=('2a43bd8f55474122b241c8993fe98cbd26d36b98')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kblocks-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kblocks/repos/testing-x86_64/kdegames-kblocks.install (from 
rev 184684, kdegames-kblocks/trunk/kdegames-kblocks.install)
===
--- testing-x86_64/kdegames-kblocks.install (rev 0)
+++ testing-x86_64/kdegames-kblocks.install 2013-05-07 16:38:28 UTC (rev 
184685)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:38:18
  Author: andrea
Revision: 184684

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

Added:
  kdegames-kblackbox/repos/testing-i686/
  kdegames-kblackbox/repos/testing-i686/PKGBUILD
(from rev 184683, kdegames-kblackbox/trunk/PKGBUILD)
  kdegames-kblackbox/repos/testing-i686/kdegames-kblackbox.install
(from rev 184683, kdegames-kblackbox/trunk/kdegames-kblackbox.install)
  kdegames-kblackbox/repos/testing-x86_64/
  kdegames-kblackbox/repos/testing-x86_64/PKGBUILD
(from rev 184683, kdegames-kblackbox/trunk/PKGBUILD)
  kdegames-kblackbox/repos/testing-x86_64/kdegames-kblackbox.install
(from rev 184683, kdegames-kblackbox/trunk/kdegames-kblackbox.install)

---+
 testing-i686/PKGBUILD |   31 
 testing-i686/kdegames-kblackbox.install   |   11 +
 testing-x86_64/PKGBUILD   |   31 
 testing-x86_64/kdegames-kblackbox.install |   11 +
 4 files changed, 84 insertions(+)

Copied: kdegames-kblackbox/repos/testing-i686/PKGBUILD (from rev 184683, 
kdegames-kblackbox/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:38:18 UTC (rev 184684)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kblackbox
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A game of hide and seek played on a grid of boxes"
+url="http://kde.org/applications/games/kblackbox/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kblackbox-${pkgver}.tar.xz";)
+sha1sums=('2953256d4659cca0a2a4b35d2c81fe1569bbb762')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kblackbox-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kblackbox/repos/testing-i686/kdegames-kblackbox.install (from 
rev 184683, kdegames-kblackbox/trunk/kdegames-kblackbox.install)
===
--- testing-i686/kdegames-kblackbox.install (rev 0)
+++ testing-i686/kdegames-kblackbox.install 2013-05-07 16:38:18 UTC (rev 
184684)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kblackbox/repos/testing-x86_64/PKGBUILD (from rev 184683, 
kdegames-kblackbox/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:38:18 UTC (rev 184684)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kblackbox
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A game of hide and seek played on a grid of boxes"
+url="http://kde.org/applications/games/kblackbox/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kblackbox-${pkgver}.tar.xz";)
+sha1sums=('2953256d4659cca0a2a4b35d2c81fe1569bbb762')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kblackbox-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kblackbox/repos/testing-x86_64/kdegames-kblackbox.install 
(from rev 184683, kdegames-kblackbox/trunk/kdegames-kblackbox.install)
===
--- testing-x86_64/kdegames-kblackbox.install   (rev 0)
+++ testing-x86_64/kdegames-kblackbox.install   2013-05-07 16:38:18 UTC (rev 
184684)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:38:12
  Author: andrea
Revision: 184683

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

Added:
  kdegames-katomic/repos/testing-i686/
  kdegames-katomic/repos/testing-i686/PKGBUILD
(from rev 184682, kdegames-katomic/trunk/PKGBUILD)
  kdegames-katomic/repos/testing-i686/kdegames-katomic.install
(from rev 184682, kdegames-katomic/trunk/kdegames-katomic.install)
  kdegames-katomic/repos/testing-x86_64/
  kdegames-katomic/repos/testing-x86_64/PKGBUILD
(from rev 184682, kdegames-katomic/trunk/PKGBUILD)
  kdegames-katomic/repos/testing-x86_64/kdegames-katomic.install
(from rev 184682, kdegames-katomic/trunk/kdegames-katomic.install)

-+
 testing-i686/PKGBUILD   |   31 ++
 testing-i686/kdegames-katomic.install   |   11 ++
 testing-x86_64/PKGBUILD |   31 ++
 testing-x86_64/kdegames-katomic.install |   11 ++
 4 files changed, 84 insertions(+)

Copied: kdegames-katomic/repos/testing-i686/PKGBUILD (from rev 184682, 
kdegames-katomic/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:38:12 UTC (rev 184683)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-katomic
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A fun and educational game built around molecular geometry"
+url="http://kde.org/applications/games/katomic/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/katomic-${pkgver}.tar.xz";)
+sha1sums=('69cf2cedad8575b32fbb685c1116bfd2c7090ebf')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../katomic-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-katomic/repos/testing-i686/kdegames-katomic.install (from rev 
184682, kdegames-katomic/trunk/kdegames-katomic.install)
===
--- testing-i686/kdegames-katomic.install   (rev 0)
+++ testing-i686/kdegames-katomic.install   2013-05-07 16:38:12 UTC (rev 
184683)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-katomic/repos/testing-x86_64/PKGBUILD (from rev 184682, 
kdegames-katomic/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:38:12 UTC (rev 184683)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-katomic
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A fun and educational game built around molecular geometry"
+url="http://kde.org/applications/games/katomic/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/katomic-${pkgver}.tar.xz";)
+sha1sums=('69cf2cedad8575b32fbb685c1116bfd2c7090ebf')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../katomic-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-katomic/repos/testing-x86_64/kdegames-katomic.install (from 
rev 184682, kdegames-katomic/trunk/kdegames-katomic.install)
===
--- testing-x86_64/kdegames-katomic.install (rev 0)
+++ testing-x86_64/kdegames-katomic.install 2013-05-07 16:38:12 UTC (rev 
184683)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:38:05
  Author: andrea
Revision: 184682

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

Added:
  kdegames-kapman/repos/testing-i686/
  kdegames-kapman/repos/testing-i686/PKGBUILD
(from rev 184681, kdegames-kapman/trunk/PKGBUILD)
  kdegames-kapman/repos/testing-i686/kdegames-kapman.install
(from rev 184681, kdegames-kapman/trunk/kdegames-kapman.install)
  kdegames-kapman/repos/testing-x86_64/
  kdegames-kapman/repos/testing-x86_64/PKGBUILD
(from rev 184681, kdegames-kapman/trunk/PKGBUILD)
  kdegames-kapman/repos/testing-x86_64/kdegames-kapman.install
(from rev 184681, kdegames-kapman/trunk/kdegames-kapman.install)

+
 testing-i686/PKGBUILD  |   31 +++
 testing-i686/kdegames-kapman.install   |   11 +++
 testing-x86_64/PKGBUILD|   31 +++
 testing-x86_64/kdegames-kapman.install |   11 +++
 4 files changed, 84 insertions(+)

Copied: kdegames-kapman/repos/testing-i686/PKGBUILD (from rev 184681, 
kdegames-kapman/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:38:05 UTC (rev 184682)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kapman
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A clone of the well known game Pac-Man"
+url="http://kde.org/applications/games/kapman/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kapman-${pkgver}.tar.xz";)
+sha1sums=('83fda18300857338a698fff899cb2569ec4539fb')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kapman-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kapman/repos/testing-i686/kdegames-kapman.install (from rev 
184681, kdegames-kapman/trunk/kdegames-kapman.install)
===
--- testing-i686/kdegames-kapman.install(rev 0)
+++ testing-i686/kdegames-kapman.install2013-05-07 16:38:05 UTC (rev 
184682)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-kapman/repos/testing-x86_64/PKGBUILD (from rev 184681, 
kdegames-kapman/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:38:05 UTC (rev 184682)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kapman
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A clone of the well known game Pac-Man"
+url="http://kde.org/applications/games/kapman/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kapman-${pkgver}.tar.xz";)
+sha1sums=('83fda18300857338a698fff899cb2569ec4539fb')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kapman-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-kapman/repos/testing-x86_64/kdegames-kapman.install (from rev 
184681, kdegames-kapman/trunk/kdegames-kapman.install)
===
--- testing-x86_64/kdegames-kapman.install  (rev 0)
+++ testing-x86_64/kdegames-kapman.install  2013-05-07 16:38:05 UTC (rev 
184682)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:37:59
  Author: andrea
Revision: 184681

archrelease: copy trunk to testing-any

Added:
  kdegames-kajongg/repos/testing-any/
  kdegames-kajongg/repos/testing-any/PKGBUILD
(from rev 184680, kdegames-kajongg/trunk/PKGBUILD)
  kdegames-kajongg/repos/testing-any/kdegames-kajongg.install
(from rev 184680, kdegames-kajongg/trunk/kdegames-kajongg.install)

--+
 PKGBUILD |   36 
 kdegames-kajongg.install |   11 +++
 2 files changed, 47 insertions(+)

Copied: kdegames-kajongg/repos/testing-any/PKGBUILD (from rev 184680, 
kdegames-kajongg/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-05-07 16:37:59 UTC (rev 184681)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-kajongg
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="The ancient Chinese board game for 4 players"
+url="http://kde.org/applications/games/kajongg/";
+arch=('any')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'twisted' 'kdebindings-python2')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kajongg-${pkgver}.tar.xz";)
+sha1sums=('88944b76d63e1e5e2337c9aa92d2811c88a69024')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kajongg-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+  # Fix the python shebang
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+
"${pkgdir}"/usr/share/apps/kajongg/{deferredutil,kajongg,kajonggserver,server}.py
+}

Copied: kdegames-kajongg/repos/testing-any/kdegames-kajongg.install (from rev 
184680, kdegames-kajongg/trunk/kdegames-kajongg.install)
===
--- testing-any/kdegames-kajongg.install(rev 0)
+++ testing-any/kdegames-kajongg.install2013-05-07 16:37:59 UTC (rev 
184681)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:37:54
  Author: andrea
Revision: 184680

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

Added:
  kdegames-granatier/repos/testing-i686/
  kdegames-granatier/repos/testing-i686/PKGBUILD
(from rev 184679, kdegames-granatier/trunk/PKGBUILD)
  kdegames-granatier/repos/testing-i686/kdegames-granatier.install
(from rev 184679, kdegames-granatier/trunk/kdegames-granatier.install)
  kdegames-granatier/repos/testing-x86_64/
  kdegames-granatier/repos/testing-x86_64/PKGBUILD
(from rev 184679, kdegames-granatier/trunk/PKGBUILD)
  kdegames-granatier/repos/testing-x86_64/kdegames-granatier.install
(from rev 184679, kdegames-granatier/trunk/kdegames-granatier.install)

---+
 testing-i686/PKGBUILD |   31 
 testing-i686/kdegames-granatier.install   |   11 +
 testing-x86_64/PKGBUILD   |   31 
 testing-x86_64/kdegames-granatier.install |   11 +
 4 files changed, 84 insertions(+)

Copied: kdegames-granatier/repos/testing-i686/PKGBUILD (from rev 184679, 
kdegames-granatier/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:37:54 UTC (rev 184680)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-granatier
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A clone of the classic Bomberman game"
+url="http://kde.org/applications/games/granatier/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/granatier-${pkgver}.tar.xz";)
+sha1sums=('4a135280da57cac2cadc2874c27b50fc7740bebf')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../granatier-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-granatier/repos/testing-i686/kdegames-granatier.install (from 
rev 184679, kdegames-granatier/trunk/kdegames-granatier.install)
===
--- testing-i686/kdegames-granatier.install (rev 0)
+++ testing-i686/kdegames-granatier.install 2013-05-07 16:37:54 UTC (rev 
184680)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-granatier/repos/testing-x86_64/PKGBUILD (from rev 184679, 
kdegames-granatier/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:37:54 UTC (rev 184680)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-granatier
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A clone of the classic Bomberman game"
+url="http://kde.org/applications/games/granatier/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/granatier-${pkgver}.tar.xz";)
+sha1sums=('4a135280da57cac2cadc2874c27b50fc7740bebf')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../granatier-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-granatier/repos/testing-x86_64/kdegames-granatier.install 
(from rev 184679, kdegames-granatier/trunk/kdegames-granatier.install)
===
--- testing-x86_64/kdegames-granatier.install   (rev 0)
+++ testing-x86_64/kdegames-granatier.install   2013-05-07 16:37:54 UTC (rev 
184680)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:37:48
  Author: andrea
Revision: 184679

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

Added:
  kdegames-bovo/repos/testing-i686/
  kdegames-bovo/repos/testing-i686/PKGBUILD
(from rev 184678, kdegames-bovo/trunk/PKGBUILD)
  kdegames-bovo/repos/testing-i686/kdegames-bovo.install
(from rev 184678, kdegames-bovo/trunk/kdegames-bovo.install)
  kdegames-bovo/repos/testing-x86_64/
  kdegames-bovo/repos/testing-x86_64/PKGBUILD
(from rev 184678, kdegames-bovo/trunk/PKGBUILD)
  kdegames-bovo/repos/testing-x86_64/kdegames-bovo.install
(from rev 184678, kdegames-bovo/trunk/kdegames-bovo.install)

--+
 testing-i686/PKGBUILD|   31 +++
 testing-i686/kdegames-bovo.install   |   11 +++
 testing-x86_64/PKGBUILD  |   31 +++
 testing-x86_64/kdegames-bovo.install |   11 +++
 4 files changed, 84 insertions(+)

Copied: kdegames-bovo/repos/testing-i686/PKGBUILD (from rev 184678, 
kdegames-bovo/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:37:48 UTC (rev 184679)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-bovo
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A Gomoku like game for two players"
+url="http://kde.org/applications/games/bovo/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/bovo-${pkgver}.tar.xz";)
+sha1sums=('53fa8f79b8a6d048a00da0cfc703f400c6ddd178')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../bovo-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-bovo/repos/testing-i686/kdegames-bovo.install (from rev 
184678, kdegames-bovo/trunk/kdegames-bovo.install)
===
--- testing-i686/kdegames-bovo.install  (rev 0)
+++ testing-i686/kdegames-bovo.install  2013-05-07 16:37:48 UTC (rev 184679)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-bovo/repos/testing-x86_64/PKGBUILD (from rev 184678, 
kdegames-bovo/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:37:48 UTC (rev 184679)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-bovo
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A Gomoku like game for two players"
+url="http://kde.org/applications/games/bovo/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/bovo-${pkgver}.tar.xz";)
+sha1sums=('53fa8f79b8a6d048a00da0cfc703f400c6ddd178')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../bovo-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-bovo/repos/testing-x86_64/kdegames-bovo.install (from rev 
184678, kdegames-bovo/trunk/kdegames-bovo.install)
===
--- testing-x86_64/kdegames-bovo.install(rev 0)
+++ testing-x86_64/kdegames-bovo.install2013-05-07 16:37:48 UTC (rev 
184679)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:37:41
  Author: andrea
Revision: 184678

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

Added:
  kdegames-bomber/repos/testing-i686/
  kdegames-bomber/repos/testing-i686/PKGBUILD
(from rev 184677, kdegames-bomber/trunk/PKGBUILD)
  kdegames-bomber/repos/testing-i686/kdegames-bomber.install
(from rev 184677, kdegames-bomber/trunk/kdegames-bomber.install)
  kdegames-bomber/repos/testing-x86_64/
  kdegames-bomber/repos/testing-x86_64/PKGBUILD
(from rev 184677, kdegames-bomber/trunk/PKGBUILD)
  kdegames-bomber/repos/testing-x86_64/kdegames-bomber.install
(from rev 184677, kdegames-bomber/trunk/kdegames-bomber.install)

+
 testing-i686/PKGBUILD  |   31 +++
 testing-i686/kdegames-bomber.install   |   11 +++
 testing-x86_64/PKGBUILD|   31 +++
 testing-x86_64/kdegames-bomber.install |   11 +++
 4 files changed, 84 insertions(+)

Copied: kdegames-bomber/repos/testing-i686/PKGBUILD (from rev 184677, 
kdegames-bomber/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:37:41 UTC (rev 184678)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-bomber
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A single player arcade game"
+url="http://kde.org/applications/games/bomber/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/bomber-${pkgver}.tar.xz";)
+sha1sums=('b2cf0a81d282424811cdc527545a132ef5d73a3a')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../bomber-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-bomber/repos/testing-i686/kdegames-bomber.install (from rev 
184677, kdegames-bomber/trunk/kdegames-bomber.install)
===
--- testing-i686/kdegames-bomber.install(rev 0)
+++ testing-i686/kdegames-bomber.install2013-05-07 16:37:41 UTC (rev 
184678)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdegames-bomber/repos/testing-x86_64/PKGBUILD (from rev 184677, 
kdegames-bomber/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:37:41 UTC (rev 184678)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdegames-bomber
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A single player arcade game"
+url="http://kde.org/applications/games/bomber/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/bomber-${pkgver}.tar.xz";)
+sha1sums=('b2cf0a81d282424811cdc527545a132ef5d73a3a')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../bomber-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdegames-bomber/repos/testing-x86_64/kdegames-bomber.install (from rev 
184677, kdegames-bomber/trunk/kdegames-bomber.install)
===
--- testing-x86_64/kdegames-bomber.install  (rev 0)
+++ testing-x86_64/kdegames-bomber.install  2013-05-07 16:37:41 UTC (rev 
184678)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:37:33
  Author: andrea
Revision: 184677

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

Added:
  kdeedu-step/repos/testing-i686/
  kdeedu-step/repos/testing-i686/PKGBUILD
(from rev 184676, kdeedu-step/trunk/PKGBUILD)
  kdeedu-step/repos/testing-i686/kdeedu-step.install
(from rev 184676, kdeedu-step/trunk/kdeedu-step.install)
  kdeedu-step/repos/testing-x86_64/
  kdeedu-step/repos/testing-x86_64/PKGBUILD
(from rev 184676, kdeedu-step/trunk/PKGBUILD)
  kdeedu-step/repos/testing-x86_64/kdeedu-step.install
(from rev 184676, kdeedu-step/trunk/kdeedu-step.install)

+
 testing-i686/PKGBUILD  |   32 
 testing-i686/kdeedu-step.install   |   11 +++
 testing-x86_64/PKGBUILD|   32 
 testing-x86_64/kdeedu-step.install |   11 +++
 4 files changed, 86 insertions(+)

Copied: kdeedu-step/repos/testing-i686/PKGBUILD (from rev 184676, 
kdeedu-step/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:37:33 UTC (rev 184677)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-step
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Interactive Physical Simulator"
+url="http://kde.org/applications/education/step/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime' 'libqalculate' 'gsl')
+makedepends=('cmake' 'automoc4' 'eigen' 'mesa')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/step-${pkgver}.tar.xz";)
+sha1sums=('85a85c09deb6f04bcf90279785d099aa31ce0262')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../step-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-step/repos/testing-i686/kdeedu-step.install (from rev 184676, 
kdeedu-step/trunk/kdeedu-step.install)
===
--- testing-i686/kdeedu-step.install(rev 0)
+++ testing-i686/kdeedu-step.install2013-05-07 16:37:33 UTC (rev 184677)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeedu-step/repos/testing-x86_64/PKGBUILD (from rev 184676, 
kdeedu-step/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:37:33 UTC (rev 184677)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-step
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Interactive Physical Simulator"
+url="http://kde.org/applications/education/step/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime' 'libqalculate' 'gsl')
+makedepends=('cmake' 'automoc4' 'eigen' 'mesa')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/step-${pkgver}.tar.xz";)
+sha1sums=('85a85c09deb6f04bcf90279785d099aa31ce0262')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../step-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-step/repos/testing-x86_64/kdeedu-step.install (from rev 184676, 
kdeedu-step/trunk/kdeedu-step.install)
===
--- testing-x86_64/kdeedu-step.install  (rev 0)
+++ testing-x86_64/kdeedu-step.install  2013-05-07 16:37:33 UTC (rev 184677)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:37:26
  Author: andrea
Revision: 184676

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

Added:
  kdeedu-rocs/repos/testing-i686/
  kdeedu-rocs/repos/testing-i686/PKGBUILD
(from rev 184675, kdeedu-rocs/trunk/PKGBUILD)
  kdeedu-rocs/repos/testing-i686/kdeedu-rocs.install
(from rev 184675, kdeedu-rocs/trunk/kdeedu-rocs.install)
  kdeedu-rocs/repos/testing-x86_64/
  kdeedu-rocs/repos/testing-x86_64/PKGBUILD
(from rev 184675, kdeedu-rocs/trunk/PKGBUILD)
  kdeedu-rocs/repos/testing-x86_64/kdeedu-rocs.install
(from rev 184675, kdeedu-rocs/trunk/kdeedu-rocs.install)

+
 testing-i686/PKGBUILD  |   32 
 testing-i686/kdeedu-rocs.install   |   11 +++
 testing-x86_64/PKGBUILD|   32 
 testing-x86_64/kdeedu-rocs.install |   11 +++
 4 files changed, 86 insertions(+)

Copied: kdeedu-rocs/repos/testing-i686/PKGBUILD (from rev 184675, 
kdeedu-rocs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:37:26 UTC (rev 184676)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-rocs
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Rocs Graph Theory"
+url="http://kde.org/applications/education/rocs/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'boost')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/rocs-${pkgver}.tar.xz";)
+sha1sums=('aeb9aaee1a2ec3faf410da4319d0f7a7f27c3630')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../rocs-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-rocs/repos/testing-i686/kdeedu-rocs.install (from rev 184675, 
kdeedu-rocs/trunk/kdeedu-rocs.install)
===
--- testing-i686/kdeedu-rocs.install(rev 0)
+++ testing-i686/kdeedu-rocs.install2013-05-07 16:37:26 UTC (rev 184676)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeedu-rocs/repos/testing-x86_64/PKGBUILD (from rev 184675, 
kdeedu-rocs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:37:26 UTC (rev 184676)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-rocs
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Rocs Graph Theory"
+url="http://kde.org/applications/education/rocs/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'boost')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/rocs-${pkgver}.tar.xz";)
+sha1sums=('aeb9aaee1a2ec3faf410da4319d0f7a7f27c3630')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../rocs-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-rocs/repos/testing-x86_64/kdeedu-rocs.install (from rev 184675, 
kdeedu-rocs/trunk/kdeedu-rocs.install)
===
--- testing-x86_64/kdeedu-rocs.install  (rev 0)
+++ testing-x86_64/kdeedu-rocs.install  2013-05-07 16:37:26 UTC (rev 184676)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:37:19
  Author: andrea
Revision: 184675

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

Added:
  kdeedu-parley/repos/testing-i686/
  kdeedu-parley/repos/testing-i686/PKGBUILD
(from rev 184674, kdeedu-parley/trunk/PKGBUILD)
  kdeedu-parley/repos/testing-i686/kdeedu-parley.install
(from rev 184674, kdeedu-parley/trunk/kdeedu-parley.install)
  kdeedu-parley/repos/testing-x86_64/
  kdeedu-parley/repos/testing-x86_64/PKGBUILD
(from rev 184674, kdeedu-parley/trunk/PKGBUILD)
  kdeedu-parley/repos/testing-x86_64/kdeedu-parley.install
(from rev 184674, kdeedu-parley/trunk/kdeedu-parley.install)

--+
 testing-i686/PKGBUILD|   32 
 testing-i686/kdeedu-parley.install   |   12 
 testing-x86_64/PKGBUILD  |   32 
 testing-x86_64/kdeedu-parley.install |   12 
 4 files changed, 88 insertions(+)

Copied: kdeedu-parley/repos/testing-i686/PKGBUILD (from rev 184674, 
kdeedu-parley/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:37:19 UTC (rev 184675)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-parley
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Vocabulary Trainer"
+url="http://kde.org/applications/education/parley/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime' 'libkdeedu')
+makedepends=('cmake' 'automoc4')
+optdepends=('kdebindings-kross-python: scripting support')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/parley-${pkgver}.tar.xz";)
+sha1sums=('efcce4ba4c8a211d494c3537b1c0c2e421fa7586')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../parley-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-parley/repos/testing-i686/kdeedu-parley.install (from rev 
184674, kdeedu-parley/trunk/kdeedu-parley.install)
===
--- testing-i686/kdeedu-parley.install  (rev 0)
+++ testing-i686/kdeedu-parley.install  2013-05-07 16:37:19 UTC (rev 184675)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeedu-parley/repos/testing-x86_64/PKGBUILD (from rev 184674, 
kdeedu-parley/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:37:19 UTC (rev 184675)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-parley
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Vocabulary Trainer"
+url="http://kde.org/applications/education/parley/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime' 'libkdeedu')
+makedepends=('cmake' 'automoc4')
+optdepends=('kdebindings-kross-python: scripting support')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/parley-${pkgver}.tar.xz";)
+sha1sums=('efcce4ba4c8a211d494c3537b1c0c2e421fa7586')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../parley-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-parley/repos/testing-x86_64/kdeedu-parley.install (from rev 
184674, kdeedu-parley/trunk/kdeedu-parley.install)
===
--- testing-x86_64/kdeedu-parley.install(rev 0)
+++ testing-x86_64/kdeedu-parley.install2013-05-07 16:37:19 UTC (rev 
184675)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:37:12
  Author: andrea
Revision: 184674

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

Added:
  kdeedu-pairs/repos/testing-i686/
  kdeedu-pairs/repos/testing-i686/PKGBUILD
(from rev 184673, kdeedu-pairs/trunk/PKGBUILD)
  kdeedu-pairs/repos/testing-i686/kdeedu-pairs.install
(from rev 184673, kdeedu-pairs/trunk/kdeedu-pairs.install)
  kdeedu-pairs/repos/testing-x86_64/
  kdeedu-pairs/repos/testing-x86_64/PKGBUILD
(from rev 184673, kdeedu-pairs/trunk/PKGBUILD)
  kdeedu-pairs/repos/testing-x86_64/kdeedu-pairs.install
(from rev 184673, kdeedu-pairs/trunk/kdeedu-pairs.install)

-+
 testing-i686/PKGBUILD   |   32 
 testing-i686/kdeedu-pairs.install   |   12 
 testing-x86_64/PKGBUILD |   32 
 testing-x86_64/kdeedu-pairs.install |   12 
 4 files changed, 88 insertions(+)

Copied: kdeedu-pairs/repos/testing-i686/PKGBUILD (from rev 184673, 
kdeedu-pairs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:37:12 UTC (rev 184674)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-pairs
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A memory and pairs game for KDE"
+url="https://projects.kde.org/projects/kde/kdeedu/pairs";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/pairs-${pkgver}.tar.xz";)
+sha1sums=('7995139b4fc5604f6a71e5747f4db0de41bb666c')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../pairs-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-pairs/repos/testing-i686/kdeedu-pairs.install (from rev 184673, 
kdeedu-pairs/trunk/kdeedu-pairs.install)
===
--- testing-i686/kdeedu-pairs.install   (rev 0)
+++ testing-i686/kdeedu-pairs.install   2013-05-07 16:37:12 UTC (rev 184674)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeedu-pairs/repos/testing-x86_64/PKGBUILD (from rev 184673, 
kdeedu-pairs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:37:12 UTC (rev 184674)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-pairs
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="A memory and pairs game for KDE"
+url="https://projects.kde.org/projects/kde/kdeedu/pairs";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/pairs-${pkgver}.tar.xz";)
+sha1sums=('7995139b4fc5604f6a71e5747f4db0de41bb666c')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../pairs-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-pairs/repos/testing-x86_64/kdeedu-pairs.install (from rev 
184673, kdeedu-pairs/trunk/kdeedu-pairs.install)
===
--- testing-x86_64/kdeedu-pairs.install (rev 0)
+++ testing-x86_64/kdeedu-pairs.install 2013-05-07 16:37:12 UTC (rev 184674)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:37:05
  Author: andrea
Revision: 184673

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

Added:
  kdeedu-kwordquiz/repos/testing-i686/
  kdeedu-kwordquiz/repos/testing-i686/PKGBUILD
(from rev 184672, kdeedu-kwordquiz/trunk/PKGBUILD)
  kdeedu-kwordquiz/repos/testing-i686/kdeedu-kwordquiz.install
(from rev 184672, kdeedu-kwordquiz/trunk/kdeedu-kwordquiz.install)
  kdeedu-kwordquiz/repos/testing-x86_64/
  kdeedu-kwordquiz/repos/testing-x86_64/PKGBUILD
(from rev 184672, kdeedu-kwordquiz/trunk/PKGBUILD)
  kdeedu-kwordquiz/repos/testing-x86_64/kdeedu-kwordquiz.install
(from rev 184672, kdeedu-kwordquiz/trunk/kdeedu-kwordquiz.install)

-+
 testing-i686/PKGBUILD   |   32 ++
 testing-i686/kdeedu-kwordquiz.install   |   12 +++
 testing-x86_64/PKGBUILD |   32 ++
 testing-x86_64/kdeedu-kwordquiz.install |   12 +++
 4 files changed, 88 insertions(+)

Copied: kdeedu-kwordquiz/repos/testing-i686/PKGBUILD (from rev 184672, 
kdeedu-kwordquiz/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:37:05 UTC (rev 184673)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-kwordquiz
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Flash Card Trainer"
+url="http://kde.org/applications/education/kwordquiz/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime' 'libkdeedu')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kwordquiz-${pkgver}.tar.xz";)
+sha1sums=('0286f384cc3dfb9c6b7ca39badd50a18fa579f16')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kwordquiz-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-kwordquiz/repos/testing-i686/kdeedu-kwordquiz.install (from rev 
184672, kdeedu-kwordquiz/trunk/kdeedu-kwordquiz.install)
===
--- testing-i686/kdeedu-kwordquiz.install   (rev 0)
+++ testing-i686/kdeedu-kwordquiz.install   2013-05-07 16:37:05 UTC (rev 
184673)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeedu-kwordquiz/repos/testing-x86_64/PKGBUILD (from rev 184672, 
kdeedu-kwordquiz/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:37:05 UTC (rev 184673)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-kwordquiz
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Flash Card Trainer"
+url="http://kde.org/applications/education/kwordquiz/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime' 'libkdeedu')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kwordquiz-${pkgver}.tar.xz";)
+sha1sums=('0286f384cc3dfb9c6b7ca39badd50a18fa579f16')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kwordquiz-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-kwordquiz/repos/testing-x86_64/kdeedu-kwordquiz.install (from 
rev 184672, kdeedu-kwordquiz/trunk/kdeedu-kwordquiz.install)
===
--- testing-x86_64/kdeedu-kwordquiz.install (rev 0)
+++ testing-x86_64/kdeedu-kwordquiz.install 2013-05-07 16:37:05 UTC (rev 
184673)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:36:59
  Author: andrea
Revision: 184672

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

Added:
  kdeedu-kturtle/repos/testing-i686/
  kdeedu-kturtle/repos/testing-i686/PKGBUILD
(from rev 184671, kdeedu-kturtle/trunk/PKGBUILD)
  kdeedu-kturtle/repos/testing-i686/kdeedu-kturtle.install
(from rev 184671, kdeedu-kturtle/trunk/kdeedu-kturtle.install)
  kdeedu-kturtle/repos/testing-x86_64/
  kdeedu-kturtle/repos/testing-x86_64/PKGBUILD
(from rev 184671, kdeedu-kturtle/trunk/PKGBUILD)
  kdeedu-kturtle/repos/testing-x86_64/kdeedu-kturtle.install
(from rev 184671, kdeedu-kturtle/trunk/kdeedu-kturtle.install)

---+
 testing-i686/PKGBUILD |   32 
 testing-i686/kdeedu-kturtle.install   |   11 +++
 testing-x86_64/PKGBUILD   |   32 
 testing-x86_64/kdeedu-kturtle.install |   11 +++
 4 files changed, 86 insertions(+)

Copied: kdeedu-kturtle/repos/testing-i686/PKGBUILD (from rev 184671, 
kdeedu-kturtle/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:36:59 UTC (rev 184672)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-kturtle
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Educational Programming Environment"
+url="http://kde.org/applications/education/kturtle/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kturtle-${pkgver}.tar.xz";)
+sha1sums=('8df184d9647dfbf342dcd3adcc674f2c9b50af39')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kturtle-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-kturtle/repos/testing-i686/kdeedu-kturtle.install (from rev 
184671, kdeedu-kturtle/trunk/kdeedu-kturtle.install)
===
--- testing-i686/kdeedu-kturtle.install (rev 0)
+++ testing-i686/kdeedu-kturtle.install 2013-05-07 16:36:59 UTC (rev 184672)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeedu-kturtle/repos/testing-x86_64/PKGBUILD (from rev 184671, 
kdeedu-kturtle/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:36:59 UTC (rev 184672)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-kturtle
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Educational Programming Environment"
+url="http://kde.org/applications/education/kturtle/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kturtle-${pkgver}.tar.xz";)
+sha1sums=('8df184d9647dfbf342dcd3adcc674f2c9b50af39')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../kturtle-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-kturtle/repos/testing-x86_64/kdeedu-kturtle.install (from rev 
184671, kdeedu-kturtle/trunk/kdeedu-kturtle.install)
===
--- testing-x86_64/kdeedu-kturtle.install   (rev 0)
+++ testing-x86_64/kdeedu-kturtle.install   2013-05-07 16:36:59 UTC (rev 
184672)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:36:51
  Author: andrea
Revision: 184671

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

Added:
  kdeedu-ktouch/repos/testing-i686/
  kdeedu-ktouch/repos/testing-i686/PKGBUILD
(from rev 184670, kdeedu-ktouch/trunk/PKGBUILD)
  kdeedu-ktouch/repos/testing-i686/kdeedu-ktouch.install
(from rev 184670, kdeedu-ktouch/trunk/kdeedu-ktouch.install)
  kdeedu-ktouch/repos/testing-x86_64/
  kdeedu-ktouch/repos/testing-x86_64/PKGBUILD
(from rev 184670, kdeedu-ktouch/trunk/PKGBUILD)
  kdeedu-ktouch/repos/testing-x86_64/kdeedu-ktouch.install
(from rev 184670, kdeedu-ktouch/trunk/kdeedu-ktouch.install)

--+
 testing-i686/PKGBUILD|   32 
 testing-i686/kdeedu-ktouch.install   |   11 +++
 testing-x86_64/PKGBUILD  |   32 
 testing-x86_64/kdeedu-ktouch.install |   11 +++
 4 files changed, 86 insertions(+)

Copied: kdeedu-ktouch/repos/testing-i686/PKGBUILD (from rev 184670, 
kdeedu-ktouch/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:36:51 UTC (rev 184671)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-ktouch
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Touch Typing Tutor"
+url="http://kde.org/applications/education/ktouch/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'mesa')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ktouch-${pkgver}.tar.xz";)
+sha1sums=('076345fadaf98bdc878cb4b9f99e759bb2642b2d')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../ktouch-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-ktouch/repos/testing-i686/kdeedu-ktouch.install (from rev 
184670, kdeedu-ktouch/trunk/kdeedu-ktouch.install)
===
--- testing-i686/kdeedu-ktouch.install  (rev 0)
+++ testing-i686/kdeedu-ktouch.install  2013-05-07 16:36:51 UTC (rev 184671)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeedu-ktouch/repos/testing-x86_64/PKGBUILD (from rev 184670, 
kdeedu-ktouch/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:36:51 UTC (rev 184671)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-ktouch
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Touch Typing Tutor"
+url="http://kde.org/applications/education/ktouch/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'mesa')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ktouch-${pkgver}.tar.xz";)
+sha1sums=('076345fadaf98bdc878cb4b9f99e759bb2642b2d')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../ktouch-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-ktouch/repos/testing-x86_64/kdeedu-ktouch.install (from rev 
184670, kdeedu-ktouch/trunk/kdeedu-ktouch.install)
===
--- testing-x86_64/kdeedu-ktouch.install(rev 0)
+++ testing-x86_64/kdeedu-ktouch.install2013-05-07 16:36:51 UTC (rev 
184671)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:36:42
  Author: andrea
Revision: 184670

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

Added:
  kdeedu-kstars/repos/testing-i686/
  kdeedu-kstars/repos/testing-i686/PKGBUILD
(from rev 184669, kdeedu-kstars/trunk/PKGBUILD)
  kdeedu-kstars/repos/testing-i686/kdeedu-kstars.install
(from rev 184669, kdeedu-kstars/trunk/kdeedu-kstars.install)
  kdeedu-kstars/repos/testing-x86_64/
  kdeedu-kstars/repos/testing-x86_64/PKGBUILD
(from rev 184669, kdeedu-kstars/trunk/PKGBUILD)
  kdeedu-kstars/repos/testing-x86_64/kdeedu-kstars.install
(from rev 184669, kdeedu-kstars/trunk/kdeedu-kstars.install)

--+
 testing-i686/PKGBUILD|   32 
 testing-i686/kdeedu-kstars.install   |   11 +++
 testing-x86_64/PKGBUILD  |   32 
 testing-x86_64/kdeedu-kstars.install |   11 +++
 4 files changed, 86 insertions(+)

Copied: kdeedu-kstars/repos/testing-i686/PKGBUILD (from rev 184669, 
kdeedu-kstars/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:36:42 UTC (rev 184670)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-kstars
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Desktop Planetarium"
+url="http://kde.org/applications/education/kstars/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime' 'wcslib' 'libindi')
+makedepends=('cmake' 'automoc4' 'eigen')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kstars-${pkgver}.tar.xz";)
+sha1sums=('32490b846b468dc9a8393c0a70cb0d0e805163a8')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kstars-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_Xplanet=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-kstars/repos/testing-i686/kdeedu-kstars.install (from rev 
184669, kdeedu-kstars/trunk/kdeedu-kstars.install)
===
--- testing-i686/kdeedu-kstars.install  (rev 0)
+++ testing-i686/kdeedu-kstars.install  2013-05-07 16:36:42 UTC (rev 184670)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeedu-kstars/repos/testing-x86_64/PKGBUILD (from rev 184669, 
kdeedu-kstars/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:36:42 UTC (rev 184670)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeedu-kstars
+pkgver=4.10.3
+pkgrel=1
+pkgdesc="Desktop Planetarium"
+url="http://kde.org/applications/education/kstars/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime' 'wcslib' 'libindi')
+makedepends=('cmake' 'automoc4' 'eigen')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kstars-${pkgver}.tar.xz";)
+sha1sums=('32490b846b468dc9a8393c0a70cb0d0e805163a8')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kstars-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_Xplanet=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeedu-kstars/repos/testing-x86_64/kdeedu-kstars.install (from rev 
184669, kdeedu-kstars/trunk/kdeedu-kstars.install)
===
--- testing-x86_64/kdeedu-kstars.install(rev 0)
+++ testing-x86_64/kdeedu-kstars.install2013-05-07 16:36:42 UTC (rev 
184670)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



  1   2   3   4   >