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

2014-08-16 Thread Thomas Dziedzic
Date: Sunday, August 17, 2014 @ 08:42:32
  Author: td123
Revision: 220139

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

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

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

Copied: vim/repos/testing-i686/PKGBUILD (from rev 220138, vim/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-17 06:42:32 UTC (rev 220139)
@@ -0,0 +1,379 @@
+# Maintainer: Thomas Dziedzic 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: tobias [ tobias at archlinux org ]
+# Contributor: Daniel J Griffiths 
+
+pkgbase=vim
+pkgname=('vim-minimal' 'vim' 'vim-python3' 'gvim' 'gvim-python3' 'vim-runtime')
+_topver=7.4
+_patchlevel=408
+__hgrev=4c08173b8b95
+_versiondir="vim${_topver//./}"
+pkgver=${_topver}.${_patchlevel}
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('custom:vim')
+url="http://www.vim.org";
+makedepends=('gpm' 'python2' 'python' 'ruby' 'libxt' 'desktop-file-utils' 
'gtk2' 'lua')
+source=("ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz";
+"ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz.sig";
+'vimrc'
+'archlinux.vim'
+'gvim.desktop')
+md5sums=('80ab31325318c52c14184a41cb70e99b'
+ 'SKIP'
+ 'b9d4dcb9d3ee2e151dc4be1e94934f6a'
+ 'f3c8931847a12949bdd14c9d48fdabb3'
+ 'd90413bd21f400313a785bb4010120cd')
+
+# source PKGBUILD && mksource
+mksource() {
+  [[ -x /usr/bin/hg ]] || (echo "hg not found. Install mercurial." && return 1)
+
+  __hgroot='http://vim.googlecode.com/hg/'
+  __hgrepo='vim'
+  __hgbranch='default'
+
+  hg clone -b ${__hgbranch} -u ${__hgrev} "${__hgroot}${__hgrepo}" ${__hgrepo}
+
+  pushd ${__hgrepo}
+  if (( $(hg id -n) < $(hg id -nr ${__hgbranch}) )); then
+printf 'You are not building the latest revision!\n'
+printf "Consider updating __hgrev to $(hg id -r ${__hgbranch}).\n"
+  fi
+  popd
+
+  (cd vim/src && autoconf)
+
+  mv vim ${pkgbase}-${pkgver}
+  find ${pkgbase}-${pkgver} -depth -type d -name .hg -exec rm -rf {} \;
+  rm ${pkgbase}-${pkgver}/{.hgignore,.hgtags}
+  tar -cJf ${pkgbase}-${pkgver}.tar.xz ${pkgbase}-${pkgver}/*
+  rm -r ${pkgbase}-${pkgver}
+
+  gpg --detach-sign ${pkgbase}-${pkgver}.tar.xz
+
+  scp ${pkgbase}-${pkgver}.tar.xz nym:/srv/ftp/other/vim/
+  scp ${pkgbase}-${pkgver}.tar.xz.sig nym:/srv/ftp/other/vim/
+}
+
+build() {
+  for pkg in ${pkgname[@]}
+  do
+cp -a ${pkgbase}-${pkgver} ${pkg}-build
+  done
+
+  cd "${srcdir}"/vim-minimal-build
+
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=no \
+--disable-gui \
+--enable-multibyte \
+--enable-cscope \
+--disable-netbeans \
+--enable-perlinterp \
+--disable-pythoninterp \
+--disable-python3interp \
+--disable-rubyinterp \
+--disable-luainterp
+
+  make
+
+  cd "${srcdir}"/vim-build
+
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=no \
+--disable-gui \
+--enable-multibyte \
+--enable-cscope \
+--enable-netbeans \
+--enable-perlinterp \
+--enable-pythoninterp \
+--disable-python3interp \
+--enable-rubyinterp \
+--enable-luainterp
+
+  make
+
+  cd "${srcdir}"/vim-python3-build
+
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with

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

2014-08-16 Thread Thomas Dziedzic
Date: Sunday, August 17, 2014 @ 08:41:35
  Author: td123
Revision: 220138

upgpkg: vim 7.4.408-1

bump and add a vim-minimal and vim-python3 version

Modified:
  vim/trunk/PKGBUILD

--+
 PKGBUILD |  154 +
 1 file changed, 124 insertions(+), 30 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-17 06:22:26 UTC (rev 220137)
+++ PKGBUILD2014-08-17 06:41:35 UTC (rev 220138)
@@ -4,10 +4,10 @@
 # Contributor: Daniel J Griffiths 
 
 pkgbase=vim
-pkgname=('vim' 'gvim' 'gvim-python3' 'vim-runtime')
+pkgname=('vim-minimal' 'vim' 'vim-python3' 'gvim' 'gvim-python3' 'vim-runtime')
 _topver=7.4
-_patchlevel=404
-__hgrev=18fd959b07ef
+_patchlevel=408
+__hgrev=4c08173b8b95
 _versiondir="vim${_topver//./}"
 pkgver=${_topver}.${_patchlevel}
 pkgrel=1
@@ -20,7 +20,7 @@
 'vimrc'
 'archlinux.vim'
 'gvim.desktop')
-md5sums=('cc1ad0cd3399af0a8fe4d5ea6dabf7e2'
+md5sums=('80ab31325318c52c14184a41cb70e99b'
  'SKIP'
  'b9d4dcb9d3ee2e151dc4be1e94934f6a'
  'f3c8931847a12949bdd14c9d48fdabb3'
@@ -43,34 +43,28 @@
   fi
   popd
 
-  mv vim ${pkgname}-${pkgver}
-  find ${pkgname}-${pkgver} -depth -type d -name .hg -exec rm -rf {} \;
-  rm ${pkgname}-${pkgver}/{.hgignore,.hgtags}
-  tar -cJf ${pkgname}-${pkgver}.tar.xz ${pkgname}-${pkgver}/*
-  rm -r ${pkgname}-${pkgver}
+  (cd vim/src && autoconf)
 
-  gpg --detach-sign ${pkgname}-${pkgver}.tar.xz
+  mv vim ${pkgbase}-${pkgver}
+  find ${pkgbase}-${pkgver} -depth -type d -name .hg -exec rm -rf {} \;
+  rm ${pkgbase}-${pkgver}/{.hgignore,.hgtags}
+  tar -cJf ${pkgbase}-${pkgver}.tar.xz ${pkgbase}-${pkgver}/*
+  rm -r ${pkgbase}-${pkgver}
 
-  scp ${pkgname}-${pkgver}.tar.xz nym:/srv/ftp/other/vim/
-  scp ${pkgname}-${pkgver}.tar.xz.sig nym:/srv/ftp/other/vim/
+  gpg --detach-sign ${pkgbase}-${pkgver}.tar.xz
+
+  scp ${pkgbase}-${pkgver}.tar.xz nym:/srv/ftp/other/vim/
+  scp ${pkgbase}-${pkgver}.tar.xz.sig nym:/srv/ftp/other/vim/
 }
 
 build() {
-  cp -a ${pkgname}-${pkgver} vim-build
+  for pkg in ${pkgname[@]}
+  do
+cp -a ${pkgbase}-${pkgver} ${pkg}-build
+  done
 
-  # define the place for the global (g)vimrc file (set to /etc/vimrc)
-  sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*"\) .*$|\1|' \
-vim-build/src/feature.h
-  sed -i 's|^.*\(#define VIMRC_FILE.*"\) .*$|\1|' \
-vim-build/src/feature.h
+  cd "${srcdir}"/vim-minimal-build
 
-  (cd vim-build/src && autoconf)
-
-  cp -a vim-build gvim-build
-  cp -a vim-build gvim-python3-build
-
-  cd "${srcdir}"/vim-build
-
   ./configure \
 --prefix=/usr \
 --localstatedir=/var/lib/vim \
@@ -91,6 +85,50 @@
 
   make
 
+  cd "${srcdir}"/vim-build
+
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=no \
+--disable-gui \
+--enable-multibyte \
+--enable-cscope \
+--enable-netbeans \
+--enable-perlinterp \
+--enable-pythoninterp \
+--disable-python3interp \
+--enable-rubyinterp \
+--enable-luainterp
+
+  make
+
+  cd "${srcdir}"/vim-python3-build
+
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=no \
+--disable-gui \
+--enable-multibyte \
+--enable-cscope \
+--enable-netbeans \
+--enable-perlinterp \
+--disable-pythoninterp \
+--enable-python3interp \
+--enable-rubyinterp \
+--enable-luainterp
+
+  make
+
   cd "${srcdir}"/gvim-build
 
   ./configure \
@@ -148,11 +186,39 @@
   #make test
 }
 
-package_vim() {
-  pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor'
+package_vim-minimal() {
+  pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor (with a minimal set of dependencies)'
   depends=("vim-runtime=${pkgver}-${pkgrel}" 'gpm')
-  conflicts=('gvim')
+  conflicts=('vim' 'vim-python3' 'gvim' 'gvim-python3')
+  provides=("vim=${pkgver}-${pkgrel}")
 
+  cd "${srcdir}"/vim-minimal-build
+  make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install
+
+  # provided by (n)vi in core
+  rm "${pkgdir}"/usr/bin/{ex,view}
+
+  # delete some manpages
+  find "${pkgdir}"/usr/share/man -type d -name 'man1' 2>/dev/null | \
+while read _mandir; do
+cd ${_mandir}
+rm -f ex.1 view.1 # provided by (n)vi
+rm -f evim.1# this does not make sense if we have no GUI
+  done
+
+  # Runtime provided by runtime package
+  rm -r "${pkgdir}"/usr/share/vim
+
+  # license
+  install -Dm644 "${srcdir}"/vim-${pkgver}/runtime/doc/uganda.txt \
+"${pkgdir}"/usr/share/licenses/${pkgname}/license.txt
+}
+
+package_vim() {
+  pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor (with support for additional 

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

2014-08-16 Thread Giovanni Scafora
Date: Sunday, August 17, 2014 @ 08:22:26
  Author: giovanni
Revision: 220137

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-08-17 06:22:17 UTC (rev 220136)
+++ extra-i686/PKGBUILD 2014-08-17 06:22:26 UTC (rev 220137)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=0.4.3
-pkgrel=2
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/";
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-source=("http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('07500f0d1054691d88f21dd12b7c5871')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} -DPREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
--DENABLE_MAN=ON \
--DENABLE_DOC=ON
-}
-
-package() {
-  cd build
-
-  make DESTDIR="${pkgdir}/" install
-}

Copied: weechat/repos/extra-i686/PKGBUILD (from rev 220136, 
weechat/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-08-17 06:22:26 UTC (rev 220137)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: lucke 
+
+pkgname=weechat
+pkgver=1.0
+pkgrel=1
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('i686' 'x86_64')
+url="http://www.weechat.org/";
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+source=("http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2";)
+md5sums=('f922f26b162a99187f6de7b7c4a342a7')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} -DPREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+-DENABLE_MAN=ON \
+-DENABLE_DOC=ON
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}/" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-08-17 06:22:17 UTC (rev 220136)
+++ extra-x86_64/PKGBUILD   2014-08-17 06:22:26 UTC (rev 220137)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=0.4.3
-pkgrel=2
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/";
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-source=("http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('07500f0d1054691d88f21dd12b7c5871')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} -DPREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
--DENABLE_MAN=ON \
--DENABLE_DOC=ON
-}
-
-package() {
-  cd build
-
-  make DESTDIR="${pkgdir}/" install
-}

Copied: weechat/repos/extra-x86_64/PKGBUILD (from rev 220136, 
weechat/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-08-17 06:22:26 UTC (rev 220137)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: lucke 
+
+pkgname=weechat
+pkgver=1.0
+pkgrel=1
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('i686' 'x86_64')
+url="http://www.weechat.org/";
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+source=("http://www.weechat.org

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

2014-08-16 Thread Giovanni Scafora
Date: Sunday, August 17, 2014 @ 08:22:17
  Author: giovanni
Revision: 220136

upgpkg: weechat 1.0-1

upstream release

Modified:
  weechat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-17 06:11:13 UTC (rev 220135)
+++ PKGBUILD2014-08-17 06:22:17 UTC (rev 220136)
@@ -3,8 +3,8 @@
 # Contributor: lucke 
 
 pkgname=weechat
-pkgver=0.4.3
-pkgrel=2
+pkgver=1.0
+pkgrel=1
 pkgdesc="Fast, light and extensible IRC client (curses UI)"
 arch=('i686' 'x86_64')
 url="http://www.weechat.org/";
@@ -13,7 +13,7 @@
 makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
 optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
 source=("http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('07500f0d1054691d88f21dd12b7c5871')
+md5sums=('f922f26b162a99187f6de7b7c4a342a7')
 
 prepare() {
   mkdir build



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

2014-08-16 Thread Giovanni Scafora
Date: Sunday, August 17, 2014 @ 08:11:13
  Author: giovanni
Revision: 220135

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-08-17 06:11:02 UTC (rev 220134)
+++ extra-i686/PKGBUILD 2014-08-17 06:11:13 UTC (rev 220135)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Tom Newsom 
-
-pkgname=strace
-pkgver=4.8
-pkgrel=1
-pkgdesc="A useful diagnositic, instructional, and debugging tool"
-arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/strace/";
-license=('custom')
-depends=('perl')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.xz";)
-md5sums=('c575ef43829586801f514fd91bfe7575')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}/" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: strace/repos/extra-i686/PKGBUILD (from rev 220134, 
strace/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-08-17 06:11:13 UTC (rev 220135)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=strace
+pkgver=4.9
+pkgrel=1
+pkgdesc="A useful diagnositic, instructional, and debugging tool"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/strace/";
+license=('custom')
+depends=('perl')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.xz";)
+md5sums=('885eafadb10f6c60464a266d3929a2a4')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}/" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-08-17 06:11:02 UTC (rev 220134)
+++ extra-x86_64/PKGBUILD   2014-08-17 06:11:13 UTC (rev 220135)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Tom Newsom 
-
-pkgname=strace
-pkgver=4.8
-pkgrel=1
-pkgdesc="A useful diagnositic, instructional, and debugging tool"
-arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/strace/";
-license=('custom')
-depends=('perl')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.xz";)
-md5sums=('c575ef43829586801f514fd91bfe7575')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}/" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: strace/repos/extra-x86_64/PKGBUILD (from rev 220134, 
strace/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-08-17 06:11:13 UTC (rev 220135)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=strace
+pkgver=4.9
+pkgrel=1
+pkgdesc="A useful diagnositic, instructional, and debugging tool"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/strace/";
+license=('custom')
+depends=('perl')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.xz";)
+md5sums=('885eafadb10f6c60464a266d3929a2a4')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}/" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2014-08-16 Thread Giovanni Scafora
Date: Sunday, August 17, 2014 @ 08:11:02
  Author: giovanni
Revision: 220134

upgpkg: strace 4.9-1

upstream release

Modified:
  strace/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-17 05:53:15 UTC (rev 220133)
+++ PKGBUILD2014-08-17 06:11:02 UTC (rev 220134)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=strace
-pkgver=4.8
+pkgver=4.9
 pkgrel=1
 pkgdesc="A useful diagnositic, instructional, and debugging tool"
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 license=('custom')
 depends=('perl')
 
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.xz";)
-md5sums=('c575ef43829586801f514fd91bfe7575')
+md5sums=('885eafadb10f6c60464a266d3929a2a4')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



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

2014-08-16 Thread Giovanni Scafora
Date: Sunday, August 17, 2014 @ 08:06:40
  Author: giovanni
Revision: 117470

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

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

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

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

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

Deleted: community-i686/converseen.install
===
--- community-i686/converseen.install   2014-08-17 06:06:32 UTC (rev 117469)
+++ community-i686/converseen.install   2014-08-17 06:06:40 UTC (rev 117470)
@@ -1,11 +0,0 @@
-post_install() {
- xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}

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

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-08-17 06:06:32 UTC (rev 117469)
+++ community-x86_64/PKGBUILD   2014-08-17 06:06:40 UTC (rev 117470)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: archtux 
-
-pkgname=converseen
-pkgver=0.8
-pkgrel=1
-pkgdesc="The batch image converter and resizer"
-arch=('i686' 'x86_64')
-url="http://converseen.sourceforge.net/";
-license=('GPL3')
-depends=('imagemagick' 'qt4' 'libwmf' 'openexr' 'libwebp' 'openjpeg2' 
'librsvg' 'ghostscript')
-makedepends=('cmake')
-install=converseen.install
-source=("

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

2014-08-16 Thread Giovanni Scafora
Date: Sunday, August 17, 2014 @ 08:06:32
  Author: giovanni
Revision: 117469

upgpkg: converseen 0.8.1-1

upstream release

Modified:
  converseen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-17 05:55:01 UTC (rev 117468)
+++ PKGBUILD2014-08-17 06:06:32 UTC (rev 117469)
@@ -3,7 +3,7 @@
 # Contributor: archtux 
 
 pkgname=converseen
-pkgver=0.8
+pkgver=0.8.1
 pkgrel=1
 pkgdesc="The batch image converter and resizer"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake')
 install=converseen.install
 
source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('c9360f70ada3343a2136117f2c4341a1')
+md5sums=('e0bf5acc307a0e470536c4096b5d2d59')
 
 build() {
   cd "${srcdir}"



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

2014-08-16 Thread Felix Yan
Date: Sunday, August 17, 2014 @ 07:55:01
  Author: fyan
Revision: 117468

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

Added:
  mongodb/repos/community-i686/PKGBUILD
(from rev 117467, mongodb/trunk/PKGBUILD)
  mongodb/repos/community-i686/SConscript.client.patch
(from rev 117467, mongodb/trunk/SConscript.client.patch)
  mongodb/repos/community-i686/mongodb.conf
(from rev 117467, mongodb/trunk/mongodb.conf)
  mongodb/repos/community-i686/mongodb.install
(from rev 117467, mongodb/trunk/mongodb.install)
  mongodb/repos/community-i686/mongodb.service
(from rev 117467, mongodb/trunk/mongodb.service)
  mongodb/repos/community-x86_64/PKGBUILD
(from rev 117467, mongodb/trunk/PKGBUILD)
  mongodb/repos/community-x86_64/SConscript.client.patch
(from rev 117467, mongodb/trunk/SConscript.client.patch)
  mongodb/repos/community-x86_64/mongodb.conf
(from rev 117467, mongodb/trunk/mongodb.conf)
  mongodb/repos/community-x86_64/mongodb.install
(from rev 117467, mongodb/trunk/mongodb.install)
  mongodb/repos/community-x86_64/mongodb.service
(from rev 117467, mongodb/trunk/mongodb.service)
Deleted:
  mongodb/repos/community-i686/PKGBUILD
  mongodb/repos/community-i686/SConscript.client.patch
  mongodb/repos/community-i686/mongodb.conf
  mongodb/repos/community-i686/mongodb.install
  mongodb/repos/community-i686/mongodb.service
  mongodb/repos/community-x86_64/PKGBUILD
  mongodb/repos/community-x86_64/SConscript.client.patch
  mongodb/repos/community-x86_64/mongodb.conf
  mongodb/repos/community-x86_64/mongodb.install
  mongodb/repos/community-x86_64/mongodb.service

--+
 /PKGBUILD|  160 +
 /SConscript.client.patch |   26 
 /mongodb.conf|   16 ++
 /mongodb.install |   64 +++
 /mongodb.service |   20 +++
 community-i686/PKGBUILD  |   80 --
 community-i686/SConscript.client.patch   |   13 --
 community-i686/mongodb.conf  |8 -
 community-i686/mongodb.install   |   32 -
 community-i686/mongodb.service   |   10 -
 community-x86_64/PKGBUILD|   80 --
 community-x86_64/SConscript.client.patch |   13 --
 community-x86_64/mongodb.conf|8 -
 community-x86_64/mongodb.install |   32 -
 community-x86_64/mongodb.service |   10 -
 15 files changed, 286 insertions(+), 286 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-08-17 05:53:48 UTC (rev 117467)
+++ community-i686/PKGBUILD 2014-08-17 05:55:01 UTC (rev 117468)
@@ -1,80 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Mathias Stearn 
-# Contributor: Alec Thomas
-
-pkgname=mongodb
-pkgver=2.6.3
-pkgrel=1
-pkgdesc='A high-performance, open source, schema-free document-oriented 
database'
-arch=('i686' 'x86_64')
-url='http://www.mongodb.org'
-license=('AGPL3')
-depends=('pcre' 'snappy' 'openssl' 'gperftools' 'libsasl' 'boost-libs') # 
'libyaml' 'yaml-cpp' 'v8')
-makedepends=('scons' 'readline' 'ncurses' 'libpcap' 'boost' 'clang')
-checkdepends=('python2-pymongo')
-optdepends=('libpcap: needed for mongosniff')
-backup=('etc/mongodb.conf')
-install=mongodb.install
-source=("http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz";
-'mongodb.conf' 'mongodb.service')
-
-build() {
-  export SCONSFLAGS="$MAKEFLAGS"
-
-  cd mongodb-src-r${pkgver}
-
-  scons all \
---use-system-pcre \
---use-system-snappy \
---use-system-tcmalloc \
---use-sasl-client \
---use-system-boost \
---ssl --cc=clang --cxx=clang++
-# --use-system-yaml
-# --use-system-v8
-}
-
-check() {
-  # Tests not passing
-  export SCONSFLAGS="$MAKEFLAGS"
-
-  cd mongodb-src-r${pkgver}
-
-  scons smokeAll \
---use-system-pcre \
---use-system-snappy \
---use-system-tcmalloc \
---use-sasl-client \
---use-system-boost \
---ssl --cc=clang --cxx=clang++ \
---smokedbprefix="$srcdir" || warning "Tests failed"
-}
-
-package() {
-  export SCONSFLAGS="$MAKEFLAGS"
-
-  cd mongodb-src-r${pkgver}
-
-  scons install \
---use-system-pcre \
---use-system-snappy \
---use-system-tcmalloc \
---use-sasl-client \
---use-system-boost \
---ssl --cc=clang --cxx=clang++ \
---prefix="$pkgdir/usr"
-# --use-system-yaml
-# --use-system-v8
-
-  install -Dm644 "$srcdir/mongodb.conf" "$pkgdir/etc/mongodb.conf"
-  install -Dm644 "$srcdir/mongodb.service" 
"$pkgdir/usr/lib/systemd/system/mongodb.service"
-  install -dm700 "$pkgdir/var/lib/mongodb"
-  install -dm755 "$pkgdir/var/log/mongodb"
-}
-
-sha512sums=('c73ff95c949380c9b8a8e2c851d53731b08dcd6b93088c0d67fce1580a898d6742bebab

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

2014-08-16 Thread Felix Yan
Date: Sunday, August 17, 2014 @ 07:53:48
  Author: fyan
Revision: 117467

upgpkg: mongodb 2.6.4-1

Modified:
  mongodb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:47:19 UTC (rev 117466)
+++ PKGBUILD2014-08-17 05:53:48 UTC (rev 117467)
@@ -6,8 +6,8 @@
 # Contributor: Alec Thomas
 
 pkgname=mongodb
-pkgver=2.6.3
-pkgrel=2
+pkgver=2.6.4
+pkgrel=1
 pkgdesc='A high-performance, open source, schema-free document-oriented 
database'
 arch=('i686' 'x86_64')
 url='http://www.mongodb.org'
@@ -75,6 +75,6 @@
   install -dm755 "$pkgdir/var/log/mongodb"
 }
 
-sha512sums=('c73ff95c949380c9b8a8e2c851d53731b08dcd6b93088c0d67fce1580a898d6742bebab3a142d5316353f00fbe12ea32c4651f04b66b85b205589414b7f6811a'
+sha512sums=('1f2be43380948897d0f1861797d5b5ef5c5d7d0252f622382221710ed6c91e34ab89825a8e98ff77218854d52e6094534e0a6a336d1c5e8ca1668f0f62c00fad'
 
'05dead727d3ea5fe8af1a3c3888693f6b3e2b8cb7f197a5d793352e10d2c524e96c9a5c55ad2e88c1114643a9612ec0b26a2574b48a5260a9b51ec8941461f1c'
 
'177251404b2e818ae2b546fe8b13cb76e348c99e85c7bef22a04b0f07b600fd515a309ede50214f4198594388a6d2b31f46e945b9dae84aabb4dfa13b1123bb9')



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

2014-08-16 Thread Felix Yan
Date: Sunday, August 17, 2014 @ 07:52:52
  Author: fyan
Revision: 220132

upgpkg: perl-yaml 1.06-1

Modified:
  perl-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-17 03:43:28 UTC (rev 220131)
+++ PKGBUILD2014-08-17 05:52:52 UTC (rev 220132)
@@ -4,7 +4,7 @@
 # Contributor: Charles Mauch 
 
 pkgname=perl-yaml
-pkgver=1.04
+pkgver=1.06
 pkgrel=1
 pkgdesc="Perl/CPAN Module YAML : YAML Aint Markup Language"
 arch=('any')
@@ -14,7 +14,7 @@
 checkdepends=('perl-test-yaml')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/I/IN/INGY/YAML-${pkgver}.tar.gz)
-sha1sums=('7f4e91c79de78cb67aa749899ae12b11340ffca8')
+sha1sums=('a831bf9caa5a1da9d35d4edc7d4f247eefbd26fd')
 
 build() {
   cd YAML-${pkgver}



[arch-commits] Commit in perl-yaml/repos/extra-any (PKGBUILD PKGBUILD)

2014-08-16 Thread Felix Yan
Date: Sunday, August 17, 2014 @ 07:53:15
  Author: fyan
Revision: 220133

archrelease: copy trunk to extra-any

Added:
  perl-yaml/repos/extra-any/PKGBUILD
(from rev 220132, perl-yaml/trunk/PKGBUILD)
Deleted:
  perl-yaml/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-08-17 05:52:52 UTC (rev 220132)
+++ PKGBUILD2014-08-17 05:53:15 UTC (rev 220133)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jan de Groot 
-# Contributor: Charles Mauch 
-
-pkgname=perl-yaml
-pkgver=1.04
-pkgrel=1
-pkgdesc="Perl/CPAN Module YAML : YAML Aint Markup Language"
-arch=('any')
-url="http://search.cpan.org/dist/YAML/";
-license=('GPL' 'PerlArtistic')
-depends=('perl')
-checkdepends=('perl-test-yaml')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/I/IN/INGY/YAML-${pkgver}.tar.gz)
-sha1sums=('7f4e91c79de78cb67aa749899ae12b11340ffca8')
-
-build() {
-  cd YAML-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd YAML-${pkgver}
-  make test
-}
-
-package() {
-  cd YAML-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: perl-yaml/repos/extra-any/PKGBUILD (from rev 220132, 
perl-yaml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-08-17 05:53:15 UTC (rev 220133)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jan de Groot 
+# Contributor: Charles Mauch 
+
+pkgname=perl-yaml
+pkgver=1.06
+pkgrel=1
+pkgdesc="Perl/CPAN Module YAML : YAML Aint Markup Language"
+arch=('any')
+url="http://search.cpan.org/dist/YAML/";
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+checkdepends=('perl-test-yaml')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/I/IN/INGY/YAML-${pkgver}.tar.gz)
+sha1sums=('a831bf9caa5a1da9d35d4edc7d4f247eefbd26fd')
+
+build() {
+  cd YAML-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd YAML-${pkgver}
+  make test
+}
+
+package() {
+  cd YAML-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in perl-yaml/repos/extra-any (PKGBUILD PKGBUILD)

2014-08-16 Thread Felix Yan
Date: Sunday, August 17, 2014 @ 05:43:28
  Author: fyan
Revision: 220131

archrelease: copy trunk to extra-any

Added:
  perl-yaml/repos/extra-any/PKGBUILD
(from rev 220130, perl-yaml/trunk/PKGBUILD)
Deleted:
  perl-yaml/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-08-17 03:43:07 UTC (rev 220130)
+++ PKGBUILD2014-08-17 03:43:28 UTC (rev 220131)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jan de Groot 
-# Contributor: Charles Mauch 
-
-pkgname=perl-yaml
-pkgver=1.03
-pkgrel=1
-pkgdesc="Perl/CPAN Module YAML : YAML Aint Markup Language"
-arch=('any')
-url="http://search.cpan.org/dist/YAML/";
-license=('GPL' 'PerlArtistic')
-depends=('perl')
-checkdepends=('perl-test-yaml')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/I/IN/INGY/YAML-${pkgver}.tar.gz)
-sha1sums=('ea0664a0ba6c010f8ed2f27177848820513c4f58')
-
-build() {
-  cd YAML-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd YAML-${pkgver}
-  make test
-}
-
-package() {
-  cd YAML-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: perl-yaml/repos/extra-any/PKGBUILD (from rev 220130, 
perl-yaml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-08-17 03:43:28 UTC (rev 220131)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jan de Groot 
+# Contributor: Charles Mauch 
+
+pkgname=perl-yaml
+pkgver=1.04
+pkgrel=1
+pkgdesc="Perl/CPAN Module YAML : YAML Aint Markup Language"
+arch=('any')
+url="http://search.cpan.org/dist/YAML/";
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+checkdepends=('perl-test-yaml')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/I/IN/INGY/YAML-${pkgver}.tar.gz)
+sha1sums=('7f4e91c79de78cb67aa749899ae12b11340ffca8')
+
+build() {
+  cd YAML-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd YAML-${pkgver}
+  make test
+}
+
+package() {
+  cd YAML-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}



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

2014-08-16 Thread Felix Yan
Date: Sunday, August 17, 2014 @ 05:43:07
  Author: fyan
Revision: 220130

upgpkg: perl-yaml 1.04-1

Modified:
  perl-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-17 03:33:06 UTC (rev 220129)
+++ PKGBUILD2014-08-17 03:43:07 UTC (rev 220130)
@@ -4,7 +4,7 @@
 # Contributor: Charles Mauch 
 
 pkgname=perl-yaml
-pkgver=1.03
+pkgver=1.04
 pkgrel=1
 pkgdesc="Perl/CPAN Module YAML : YAML Aint Markup Language"
 arch=('any')
@@ -14,7 +14,7 @@
 checkdepends=('perl-test-yaml')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/I/IN/INGY/YAML-${pkgver}.tar.gz)
-sha1sums=('ea0664a0ba6c010f8ed2f27177848820513c4f58')
+sha1sums=('7f4e91c79de78cb67aa749899ae12b11340ffca8')
 
 build() {
   cd YAML-${pkgver}



[arch-commits] Commit in perl-module-build/repos/extra-any (PKGBUILD PKGBUILD)

2014-08-16 Thread Felix Yan
Date: Sunday, August 17, 2014 @ 05:33:06
  Author: fyan
Revision: 220129

archrelease: copy trunk to extra-any

Added:
  perl-module-build/repos/extra-any/PKGBUILD
(from rev 220128, perl-module-build/trunk/PKGBUILD)
Deleted:
  perl-module-build/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-08-17 03:32:45 UTC (rev 220128)
+++ PKGBUILD2014-08-17 03:33:06 UTC (rev 220129)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor : Alan Young 
-
-pkgname=perl-module-build
-pkgver=0.4206
-pkgrel=1
-pkgdesc="Build, test, and install Perl modules"
-arch=('any')
-url="http://search.cpan.org/dist/Module-Build";
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/Module-Build-$pkgver.tar.gz)
-md5sums=('55710a04c5639f2a165a000f78081d02')
-
-build() {
-  cd Module-Build-$pkgver
-  perl Build.PL installdirs=vendor
-  perl Build
-}
-
-check() {
-  cd Module-Build-$pkgver
-  perl Build test
-}
-
-package() {
-  cd Module-Build-$pkgver
-  perl Build install destdir="$pkgdir"
-}

Copied: perl-module-build/repos/extra-any/PKGBUILD (from rev 220128, 
perl-module-build/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-08-17 03:33:06 UTC (rev 220129)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor : Alan Young 
+
+pkgname=perl-module-build
+pkgver=0.4207
+pkgrel=1
+pkgdesc="Build, test, and install Perl modules"
+arch=('any')
+url="http://search.cpan.org/dist/Module-Build";
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/Module-Build-$pkgver.tar.gz)
+md5sums=('2f946fd5fc279e72fb07d6c1dd7bedee')
+
+build() {
+  cd Module-Build-$pkgver
+  perl Build.PL installdirs=vendor
+  perl Build
+}
+
+check() {
+  cd Module-Build-$pkgver
+  perl Build test
+}
+
+package() {
+  cd Module-Build-$pkgver
+  perl Build install destdir="$pkgdir"
+}



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

2014-08-16 Thread Felix Yan
Date: Sunday, August 17, 2014 @ 05:32:45
  Author: fyan
Revision: 220128

upgpkg: perl-module-build 0.4207-1

Modified:
  perl-module-build/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-17 03:20:11 UTC (rev 220127)
+++ PKGBUILD2014-08-17 03:32:45 UTC (rev 220128)
@@ -3,7 +3,7 @@
 # Contributor : Alan Young 
 
 pkgname=perl-module-build
-pkgver=0.4206
+pkgver=0.4207
 pkgrel=1
 pkgdesc="Build, test, and install Perl modules"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/Module-Build-$pkgver.tar.gz)
-md5sums=('55710a04c5639f2a165a000f78081d02')
+md5sums=('2f946fd5fc279e72fb07d6c1dd7bedee')
 
 build() {
   cd Module-Build-$pkgver



[arch-commits] Commit in perl-yaml/repos/extra-any (PKGBUILD PKGBUILD)

2014-08-16 Thread Felix Yan
Date: Sunday, August 17, 2014 @ 05:20:11
  Author: fyan
Revision: 220127

archrelease: copy trunk to extra-any

Added:
  perl-yaml/repos/extra-any/PKGBUILD
(from rev 220126, perl-yaml/trunk/PKGBUILD)
Deleted:
  perl-yaml/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-08-17 03:19:50 UTC (rev 220126)
+++ PKGBUILD2014-08-17 03:20:11 UTC (rev 220127)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jan de Groot 
-# Contributor: Charles Mauch 
-
-pkgname=perl-yaml
-pkgver=1.02
-pkgrel=1
-pkgdesc="Perl/CPAN Module YAML : YAML Aint Markup Language"
-arch=('any')
-url="http://search.cpan.org/dist/YAML/";
-license=('GPL' 'PerlArtistic')
-depends=('perl')
-checkdepends=('perl-test-yaml')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/I/IN/INGY/YAML-${pkgver}.tar.gz)
-sha1sums=('22c056515e0e0bfeeda5cde0b4a5677e48142853')
-
-build() {
-  cd YAML-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd YAML-${pkgver}
-  make test
-}
-
-package() {
-  cd YAML-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: perl-yaml/repos/extra-any/PKGBUILD (from rev 220126, 
perl-yaml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-08-17 03:20:11 UTC (rev 220127)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jan de Groot 
+# Contributor: Charles Mauch 
+
+pkgname=perl-yaml
+pkgver=1.03
+pkgrel=1
+pkgdesc="Perl/CPAN Module YAML : YAML Aint Markup Language"
+arch=('any')
+url="http://search.cpan.org/dist/YAML/";
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+checkdepends=('perl-test-yaml')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/I/IN/INGY/YAML-${pkgver}.tar.gz)
+sha1sums=('ea0664a0ba6c010f8ed2f27177848820513c4f58')
+
+build() {
+  cd YAML-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd YAML-${pkgver}
+  make test
+}
+
+package() {
+  cd YAML-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}



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

2014-08-16 Thread Felix Yan
Date: Sunday, August 17, 2014 @ 05:19:50
  Author: fyan
Revision: 220126

upgpkg: perl-yaml 1.03-1

Modified:
  perl-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-17 03:08:32 UTC (rev 220125)
+++ PKGBUILD2014-08-17 03:19:50 UTC (rev 220126)
@@ -4,7 +4,7 @@
 # Contributor: Charles Mauch 
 
 pkgname=perl-yaml
-pkgver=1.02
+pkgver=1.03
 pkgrel=1
 pkgdesc="Perl/CPAN Module YAML : YAML Aint Markup Language"
 arch=('any')
@@ -14,7 +14,7 @@
 checkdepends=('perl-test-yaml')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/I/IN/INGY/YAML-${pkgver}.tar.gz)
-sha1sums=('22c056515e0e0bfeeda5cde0b4a5677e48142853')
+sha1sums=('ea0664a0ba6c010f8ed2f27177848820513c4f58')
 
 build() {
   cd YAML-${pkgver}



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

2014-08-16 Thread Gaetan Bisson
Date: Sunday, August 17, 2014 @ 05:08:03
  Author: bisson
Revision: 220124

fix FS#40947

Modified:
  nmap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-17 00:55:15 UTC (rev 220123)
+++ PKGBUILD2014-08-17 03:08:03 UTC (rev 220124)
@@ -5,7 +5,7 @@
 
 pkgname=nmap
 pkgver=6.46
-pkgrel=1
+pkgrel=2
 pkgdesc='Utility for network discovery and security auditing'
 url='http://nmap.org/'
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 'xterm: privilege escalation for zenmap'
 'kdebase-runtime: privilege escalation for zenmap'
 'gksu: privilege escalation for zenmap')
-depends=('pcre' 'openssl' 'libpcap' 'lua')
+depends=('pcre' 'openssl' 'lua')
 source=("http://nmap.org/dist/${pkgname}-${pkgver}.tar.bz2";)
 sha1sums=('e19dd4d35d76b24b084665b90c423f53bc7fdcfe')
 
@@ -27,6 +27,7 @@
--prefix=/usr \
--libexecdir=/usr/lib \
--mandir=/usr/share/man \
+   --with-libpcap=included \
 
make
 }



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

2014-08-16 Thread Gaetan Bisson
Date: Sunday, August 17, 2014 @ 05:08:32
  Author: bisson
Revision: 220125

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-08-17 03:08:03 UTC (rev 220124)
+++ extra-i686/PKGBUILD 2014-08-17 03:08:32 UTC (rev 220125)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Angel Velasquez 
-# Contributor: Hugo Doria 
-
-pkgname=nmap
-pkgver=6.46
-pkgrel=1
-pkgdesc='Utility for network discovery and security auditing'
-url='http://nmap.org/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('pygtk')
-optdepends=('pygtk: zenmap'
-'sudo: privilege escalation for zenmap'
-'xterm: privilege escalation for zenmap'
-'kdebase-runtime: privilege escalation for zenmap'
-'gksu: privilege escalation for zenmap')
-depends=('pcre' 'openssl' 'libpcap' 'lua')
-source=("http://nmap.org/dist/${pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('e19dd4d35d76b24b084665b90c423f53bc7fdcfe')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export PYTHON=python2
-   ./configure \
-   --prefix=/usr \
-   --libexecdir=/usr/lib \
-   --mandir=/usr/share/man \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   rm "${pkgdir}"/usr/bin/uninstall_zenmap
-   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: nmap/repos/extra-i686/PKGBUILD (from rev 220124, nmap/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-08-17 03:08:32 UTC (rev 220125)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Angel Velasquez 
+# Contributor: Hugo Doria 
+
+pkgname=nmap
+pkgver=6.46
+pkgrel=2
+pkgdesc='Utility for network discovery and security auditing'
+url='http://nmap.org/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('pygtk')
+optdepends=('pygtk: zenmap'
+'sudo: privilege escalation for zenmap'
+'xterm: privilege escalation for zenmap'
+'kdebase-runtime: privilege escalation for zenmap'
+'gksu: privilege escalation for zenmap')
+depends=('pcre' 'openssl' 'lua')
+source=("http://nmap.org/dist/${pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('e19dd4d35d76b24b084665b90c423f53bc7fdcfe')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export PYTHON=python2
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib \
+   --mandir=/usr/share/man \
+   --with-libpcap=included \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   rm "${pkgdir}"/usr/bin/uninstall_zenmap
+   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-08-17 03:08:03 UTC (rev 220124)
+++ extra-x86_64/PKGBUILD   2014-08-17 03:08:32 UTC (rev 220125)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Angel Velasquez 
-# Contributor: Hugo Doria 
-
-pkgname=nmap
-pkgver=6.46
-pkgrel=1
-pkgdesc='Utility for network discovery and security auditing'
-url='http://nmap.org/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('pygtk')
-optdepends=('pygtk: zenmap'
-'sudo: privilege escalation for zenmap'
-'xterm: privilege escalation for zenmap'
-'kdebase-runtime: privilege escalation for zenmap'
-'gksu: privilege escalation for zenmap')
-depends=('pcre' 'openssl' 'libpcap' 'lua')
-source=("http://nmap.org/dist/${pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('e19dd4d35d76b24b084665b90c423f53bc7fdcfe')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export PYTHON=python2
-   ./configure \
-   --prefix=/usr \
-   --libexecdir=/usr/lib \
-   --mandir=/usr/share/man \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   rm "${pkgdir}"/usr/bin/uninstall_zenmap
-   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: nmap/repos/e

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

2014-08-16 Thread Eric BĂ©langer
Date: Sunday, August 17, 2014 @ 02:55:15
  Author: eric
Revision: 220123

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

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

--+
 /PKGBUILD|   54 +
 /freeciv.install |   22 
 extra-i686/PKGBUILD  |   27 
 extra-i686/freeciv.install   |   11 
 extra-x86_64/PKGBUILD|   27 
 extra-x86_64/freeciv.install |   11 
 6 files changed, 76 insertions(+), 76 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-08-17 00:52:39 UTC (rev 220122)
+++ extra-i686/PKGBUILD 2014-08-17 00:55:15 UTC (rev 220123)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Eric BĂ©langer 
-
-pkgname=freeciv
-pkgver=2.4.2
-pkgrel=1
-pkgdesc="A multiuser clone of the famous Microprose game of Civilization"
-arch=('i686' 'x86_64')
-url="http://www.freeciv.org/";
-license=('GPL')
-depends=('gtk2' 'sdl_mixer' 'lua51' 'sqlite' 'curl' 'libltdl')
-backup=('etc/freeciv/database.lua')
-install=freeciv.install
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('fe8aad19a3d99ebc641678c948417fa7d0c762e9')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --enable-shared --enable-sys-lua 
\
---enable-client=gtk2 --enable-fcdb=sqlite3 --enable-aimodules
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: freeciv/repos/extra-i686/PKGBUILD (from rev 220122, 
freeciv/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-08-17 00:55:15 UTC (rev 220123)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Eric BĂ©langer 
+
+pkgname=freeciv
+pkgver=2.4.3
+pkgrel=1
+pkgdesc="A multiuser clone of the famous Microprose game of Civilization"
+arch=('i686' 'x86_64')
+url="http://www.freeciv.org/";
+license=('GPL')
+depends=('gtk2' 'sdl_mixer' 'lua51' 'sqlite' 'curl' 'libltdl')
+backup=('etc/freeciv/database.lua')
+install=freeciv.install
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('ed7473e28c53e4bfbfc2535c15c7ef17d4e34204')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-shared --enable-sys-lua 
\
+--enable-client=gtk2 --enable-fcdb=sqlite3 --enable-aimodules
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/freeciv.install
===
--- extra-i686/freeciv.install  2014-08-17 00:52:39 UTC (rev 220122)
+++ extra-i686/freeciv.install  2014-08-17 00:55:15 UTC (rev 220123)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: freeciv/repos/extra-i686/freeciv.install (from rev 220122, 
freeciv/trunk/freeciv.install)
===
--- extra-i686/freeciv.install  (rev 0)
+++ extra-i686/freeciv.install  2014-08-17 00:55:15 UTC (rev 220123)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-08-17 00:52:39 UTC (rev 220122)
+++ extra-x86_64/PKGBUILD   2014-08-17 00:55:15 UTC (rev 220123)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Eric BĂ©langer 
-
-pkgname=freeciv
-pkgver=2.4.2
-pkgrel=1
-pkgdesc="A multiuser clone of the famous Microprose game of Civilization"
-arch=('i686' 'x86_64')
-url="http://www.freeciv.org/";
-license=('GPL')
-depends=('gtk2' 'sdl_mixer' 'lua51' 'sqlite' 'curl' 'libltdl')
-backup=('etc/freeciv/database.lua')
-install=freeciv.install
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('fe8aad19a3d99ebc641678c948417fa7d0c762e9')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --enable-shared --enable-sys-lua 
\
---enable-client

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

2014-08-16 Thread Eric BĂ©langer
Date: Sunday, August 17, 2014 @ 02:52:39
  Author: eric
Revision: 220122

upgpkg: freeciv 2.4.3-1

Upstream update

Modified:
  freeciv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 22:33:00 UTC (rev 220121)
+++ PKGBUILD2014-08-17 00:52:39 UTC (rev 220122)
@@ -2,7 +2,7 @@
 # Maintainer: Eric BĂ©langer 
 
 pkgname=freeciv
-pkgver=2.4.2
+pkgver=2.4.3
 pkgrel=1
 pkgdesc="A multiuser clone of the famous Microprose game of Civilization"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 backup=('etc/freeciv/database.lua')
 install=freeciv.install
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('fe8aad19a3d99ebc641678c948417fa7d0c762e9')
+sha1sums=('ed7473e28c53e4bfbfc2535c15c7ef17d4e34204')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2014-08-16 Thread Lukas Fleischer
Date: Sunday, August 17, 2014 @ 00:33:00
  Author: lfleischer
Revision: 220121

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

Added:
  lirc/repos/extra-i686/PKGBUILD
(from rev 220120, lirc/trunk/PKGBUILD)
  lirc/repos/extra-i686/irexec.service
(from rev 220120, lirc/trunk/irexec.service)
  lirc/repos/extra-i686/lirc-utils.install
(from rev 220120, lirc/trunk/lirc-utils.install)
  lirc/repos/extra-i686/lirc.install
(from rev 220120, lirc/trunk/lirc.install)
  lirc/repos/extra-i686/lirc.logrotate
(from rev 220120, lirc/trunk/lirc.logrotate)
  lirc/repos/extra-i686/lirc.tmpfiles
(from rev 220120, lirc/trunk/lirc.tmpfiles)
  lirc/repos/extra-i686/wpc8769l-build-fix.patch
(from rev 220120, lirc/trunk/wpc8769l-build-fix.patch)
  lirc/repos/extra-x86_64/PKGBUILD
(from rev 220120, lirc/trunk/PKGBUILD)
  lirc/repos/extra-x86_64/irexec.service
(from rev 220120, lirc/trunk/irexec.service)
  lirc/repos/extra-x86_64/lirc-utils.install
(from rev 220120, lirc/trunk/lirc-utils.install)
  lirc/repos/extra-x86_64/lirc.install
(from rev 220120, lirc/trunk/lirc.install)
  lirc/repos/extra-x86_64/lirc.logrotate
(from rev 220120, lirc/trunk/lirc.logrotate)
  lirc/repos/extra-x86_64/lirc.tmpfiles
(from rev 220120, lirc/trunk/lirc.tmpfiles)
  lirc/repos/extra-x86_64/wpc8769l-build-fix.patch
(from rev 220120, lirc/trunk/wpc8769l-build-fix.patch)
Deleted:
  lirc/repos/extra-i686/PKGBUILD
  lirc/repos/extra-i686/irexec.service
  lirc/repos/extra-i686/lirc-utils.install
  lirc/repos/extra-i686/lirc.install
  lirc/repos/extra-i686/lirc.logrotate
  lirc/repos/extra-i686/lirc.tmpfiles
  lirc/repos/extra-i686/wpc8769l-build-fix.patch
  lirc/repos/extra-x86_64/PKGBUILD
  lirc/repos/extra-x86_64/irexec.service
  lirc/repos/extra-x86_64/lirc-utils.install
  lirc/repos/extra-x86_64/lirc.install
  lirc/repos/extra-x86_64/lirc.logrotate
  lirc/repos/extra-x86_64/lirc.tmpfiles
  lirc/repos/extra-x86_64/wpc8769l-build-fix.patch

---+
 /PKGBUILD |  198 
 /irexec.service   |   22 +++
 /lirc-utils.install   |   26 
 /lirc.install |   28 
 /lirc.logrotate   |   10 +
 /lirc.tmpfiles|2 
 /wpc8769l-build-fix.patch |  180 +
 extra-i686/PKGBUILD   |   98 ---
 extra-i686/irexec.service |   11 -
 extra-i686/lirc-utils.install |   13 --
 extra-i686/lirc.install   |   14 --
 extra-i686/lirc.logrotate |5 
 extra-i686/lirc.tmpfiles  |1 
 extra-i686/wpc8769l-build-fix.patch   |   90 --
 extra-x86_64/PKGBUILD |   98 ---
 extra-x86_64/irexec.service   |   11 -
 extra-x86_64/lirc-utils.install   |   13 --
 extra-x86_64/lirc.install |   14 --
 extra-x86_64/lirc.logrotate   |5 
 extra-x86_64/lirc.tmpfiles|1 
 extra-x86_64/wpc8769l-build-fix.patch |   90 --
 21 files changed, 466 insertions(+), 464 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-08-16 22:32:11 UTC (rev 220120)
+++ extra-i686/PKGBUILD 2014-08-16 22:33:00 UTC (rev 220121)
@@ -1,98 +0,0 @@
-# $Id$
-# Maintainer: Paul Mattal 
-
-pkgbase=lirc
-pkgname=('lirc' 'lirc-utils')
-pkgver=0.9.1
-pkgrel=1
-epoch=1
-_extramodules=extramodules-3.16-ARCH
-arch=('i686' 'x86_64')
-url="http://www.lirc.org/";
-license=('GPL')
-# NOTICE: Don't forget to bump version in depends in package_lirc()!
-makedepends=('help2man' 'linux>=3.16' 'linux<3.17' 'linux-headers>=3.16' 
'linux-headers<3.17' 'alsa-lib' 'libx11' 'libftdi-compat' 'libirman' 'python2')
-options=('!makeflags' '!strip')
-source=("http://prdownloads.sourceforge.net/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2";
-   "wpc8769l-build-fix.patch"
-lirc.logrotate
-irexec.service
-lirc.tmpfiles)
-md5sums=('3b78c3cc872d5e2fa78b796c2efd46db'
- '9ec33169b3407f74264062d7679dd269'
- '3deb02604b37811d41816e9b4385fcc3'
- '32df3b9bc859565d6acf5f0e5b747083'
- 'febf25c154a7d36f01159e84f26c2d9a')
-
-prepare() {
-  cd "${srcdir}/lirc-${pkgver}"
-
-  patch -Np1 -i "${srcdir}/wpc8769l-build-fix.patch"
-
-  sed -i '/AC_PATH_XTRA/d' configure.ac
-  sed -e 's/@X_CFLAGS@//g' \
-  -e 's/@X_LIBS@//g' \
-  -e 's/@X_PRE_LIBS@//g' \
-  -e 's/@X_EXTRA_LIBS@//g' -i Makefile.am tools/Makefile.am
-
-  libtoolize
-  autoreconf
-}
-
-build() {
-  cd "${srcdir}/lirc-${pkgver}"
-  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-
-  PYTHON=python2 ./configure --enable-sandboxed --prefix=/usr \
-  --with-driver=all --with-kerneldir="/usr/lib/modules/${_kernver}/build/" 
\
-  --with-moduledir="/usr/lib/modules/${_kernver

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

2014-08-16 Thread Lukas Fleischer
Date: Sunday, August 17, 2014 @ 00:32:11
  Author: lfleischer
Revision: 220120

upgpkg: lirc 1:0.9.1.a-1

Upstream update.

Modified:
  lirc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:53:11 UTC (rev 220119)
+++ PKGBUILD2014-08-16 22:32:11 UTC (rev 220120)
@@ -3,7 +3,8 @@
 
 pkgbase=lirc
 pkgname=('lirc' 'lirc-utils')
-pkgver=0.9.1
+_pkgver=0.9.1a
+[[ $_pkgver =~ [a-z]$ ]] && pkgver="${_pkgver:0:-1}.${_pkgver: -1}" || 
pkgver="$_pkgver"
 pkgrel=1
 epoch=1
 _extramodules=extramodules-3.16-ARCH
@@ -13,12 +14,12 @@
 # NOTICE: Don't forget to bump version in depends in package_lirc()!
 makedepends=('help2man' 'linux>=3.16' 'linux<3.17' 'linux-headers>=3.16' 
'linux-headers<3.17' 'alsa-lib' 'libx11' 'libftdi-compat' 'libirman' 'python2')
 options=('!makeflags' '!strip')
-source=("http://prdownloads.sourceforge.net/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2";
+source=("http://prdownloads.sourceforge.net/${pkgbase}/${pkgbase}-${_pkgver}.tar.bz2";
"wpc8769l-build-fix.patch"
 lirc.logrotate
 irexec.service
 lirc.tmpfiles)
-md5sums=('3b78c3cc872d5e2fa78b796c2efd46db'
+md5sums=('1f1fac162ed309dd50f307e96a292957'
  '9ec33169b3407f74264062d7679dd269'
  '3deb02604b37811d41816e9b4385fcc3'
  '32df3b9bc859565d6acf5f0e5b747083'
@@ -25,7 +26,7 @@
  'febf25c154a7d36f01159e84f26c2d9a')
 
 prepare() {
-  cd "${srcdir}/lirc-${pkgver}"
+  cd "${srcdir}/lirc-${_pkgver}"
 
   patch -Np1 -i "${srcdir}/wpc8769l-build-fix.patch"
 
@@ -40,7 +41,7 @@
 }
 
 build() {
-  cd "${srcdir}/lirc-${pkgver}"
+  cd "${srcdir}/lirc-${_pkgver}"
   _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
 
   PYTHON=python2 ./configure --enable-sandboxed --prefix=/usr \
@@ -63,7 +64,7 @@
   replaces=('lirc+pctv')
   install=lirc.install
 
-  cd "${srcdir}/lirc-${pkgver}/drivers"
+  cd "${srcdir}/lirc-${_pkgver}/drivers"
 
   make DESTDIR="${pkgdir}" moduledir="/usr/lib/modules/${_extramodules}" 
install
   gzip -9 "${pkgdir}/usr/lib/modules/${_extramodules}"/*.ko
@@ -80,7 +81,7 @@
   backup=('etc/lirc/lirc_options.conf' 'etc/lirc/lircd.conf' 
'etc/lirc/lircmd.conf')
   install=lirc-utils.install
 
-  cd "${srcdir}/lirc-${pkgver}"
+  cd "${srcdir}/lirc-${_pkgver}"
 
   make DESTDIR="${pkgdir}" install
 



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

2014-08-16 Thread Andreas Radke
Date: Saturday, August 16, 2014 @ 22:53:11
  Author: andyrtr
Revision: 220119

cleanup install msg, add a note about new fresh branch

Modified:
  libreoffice-still/trunk/PKGBUILD
  libreoffice-still/trunk/libreoffice-still-common.install

--+
 PKGBUILD |2 +-
 libreoffice-still-common.install |   33 ++---
 2 files changed, 7 insertions(+), 28 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:23:49 UTC (rev 220118)
+++ PKGBUILD2014-08-16 20:53:11 UTC (rev 220119)
@@ -20,7 +20,7 @@
'libreoffice-still-extension-nlpsolver')
 _LOver=4.2.6.2
 pkgver=4.2.6
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/";

Modified: libreoffice-still-common.install
===
--- libreoffice-still-common.install2014-08-16 20:23:49 UTC (rev 220118)
+++ libreoffice-still-common.install2014-08-16 20:53:11 UTC (rev 220119)
@@ -3,23 +3,6 @@
 xdg-icon-resource forceupdate --theme hicolor
 update-desktop-database -q
 update-mime-database usr/share/mime > /dev/null 2>&1
-
-echo " * see https://wiki.archlinux.org/index.php/LibreOffice";
-echo "---"
-echo "LibreOffice has been split into several packages:"
-echo "- libreoffice-common"
-echo "- libreoffice-{base,calc,draw,impress,math,writer} - frontend 
applications"
-echo "- libreoffice-{gnome,kde4} - desktop integration plugins"
-echo "- libreoffice-{sdk,sdk-doc} - add-on and doc for programming using"
-echo "  the LibreOffice APIs and for creating"
-echo "  extensions (UNO components)."
-echo "---"
-echo " * you need to install at least one libreoffice-langpack"
-echo " * you may want to pacman -Ss libreoffice-extensions"
-echo "   to see what additional extensions are prepared to install"
-echo " * it's recommended to install {hunspell,mythes,hyphen}-xx pkg
- for spell checking"
-echo " * make sure you have installed some ttf font (ttf-dejavu recommended)"
 }
 
 post_upgrade() {
@@ -27,16 +10,12 @@
 xdg-icon-resource forceupdate --theme hicolor
 update-desktop-database -q
 update-mime-database usr/share/mime > /dev/null 2>&1
-  if [ "`vercmp $2 3.4.2rc1`" -lt 0 ]; then
-# important upgrade notice
-echo "LibreOffice has been split into several packages:"
-echo "- libreoffice-common"
-echo "- libreoffice-{base,calc,draw,impress,math,writer} - frontend 
applications"
-echo "- libreoffice-{gnome,kde4} - desktop integration plugins"
-echo "- libreoffice-{sdk,sdk-doc} - add-on and doc for programming using"
-echo "  the LibreOffice APIs and for creating"
-echo "  extensions (UNO components)."
-echo "Now you need to install at least one libreoffice-langpack!"
+  if [ "`vercmp $2 4.2.5`" -lt 0 ]; then
+echo "Arch is now shipping LibreOffice in two branches:"
+echo "* libreoffice-still: the maintenance branch you are using right now"
+echo "* libreoffice-fresh: the new fresh release branch offering latest 
feature additions"
+echo "If you want switch to the \"fresh\" branch run"
+echo " pacman -S libreoffice-fresh"
   fi
 }
 



[arch-commits] Commit in dwarffortress/repos/community-i686 (10 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:47:19
  Author: svenstaro
Revision: 117466

archrelease: copy trunk to community-i686

Added:
  dwarffortress/repos/community-i686/PKGBUILD
(from rev 117465, dwarffortress/trunk/PKGBUILD)
  dwarffortress/repos/community-i686/dwarffortress
(from rev 117465, dwarffortress/trunk/dwarffortress)
  dwarffortress/repos/community-i686/dwarffortress.desktop
(from rev 117465, dwarffortress/trunk/dwarffortress.desktop)
  dwarffortress/repos/community-i686/dwarffortress.install
(from rev 117465, dwarffortress/trunk/dwarffortress.install)
  dwarffortress/repos/community-i686/dwarffortress.png
(from rev 117465, dwarffortress/trunk/dwarffortress.png)
Deleted:
  dwarffortress/repos/community-i686/PKGBUILD
  dwarffortress/repos/community-i686/dwarffortress
  dwarffortress/repos/community-i686/dwarffortress.desktop
  dwarffortress/repos/community-i686/dwarffortress.install
  dwarffortress/repos/community-i686/dwarffortress.png

---+
 PKGBUILD  |  146 
 dwarffortress |   40 ++---
 dwarffortress.desktop |   18 ++---
 dwarffortress.install |   16 ++---
 4 files changed, 110 insertions(+), 110 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-08-16 20:44:26 UTC (rev 117465)
+++ PKGBUILD2014-08-16 20:47:19 UTC (rev 117466)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Daenyth 
-# Contributor: djnm 
-pkgname=dwarffortress
-pkgver=0.40.08
-_pkgver=40_08
-pkgrel=3
-pkgdesc="A single-player fantasy game. You control a dwarven outpost or an 
adventurer in a randomly generated persistent world."
-arch=(i686 x86_64)
-url="http://www.bay12games.com/dwarves/";
-license=('custom:dwarffortress')
-depends=(gtk2 glu sdl_image libsndfile openal sdl_ttf glew gcc-libs)
-makedepends=(git cmake)
-options=('!strip' '!buildflags')
-install=${pkgname}.install
-if [[ $CARCH == 'x86_64' ]]; then
-  makedepends+=(gcc-multilib)
-  depends=(gcc-libs-multilib lib32-gtk2 lib32-glu lib32-sdl_image 
lib32-libsndfile lib32-openal
-   lib32-libxdamage lib32-ncurses lib32-sdl_ttf lib32-glew)
-  optdepends=('lib32-nvidia-utils: If you have nvidia graphics'
-  'lib32-catalyst-utils: If you have ATI graphics'
-  'lib32-alsa-lib: for alsa sound'
-  'lib32-libpulse: for pulse sound')
-fi
-# I made a fucking github repo with the sole purpose of unfucking df a bit
-# We try to compile whatever little bit of df is open source
-source=(http://www.bay12games.com/dwarves/df_${_pkgver}_linux.tar.bz2
-git://github.com/svenstaro/dwarf_fortress_unfuck.git#commit=9c955d
-dwarffortress
-dwarffortress.desktop
-dwarffortress.png)
-sha256sums=('24fa1642b84a108b39fd82eb703b8d8c3f678e4d4bd61a56b6416d99ab76f5ab'
-'SKIP'
-'7dc1f0ed0d496b21f4f240334f77dc43b728823f3e1c4ea25ce768691346ec07'
-'e79e3d945c6cc0da58f4ca30a210c7bf1bc3149fd10406d1262a6214eb40445a'
-'83183abc70b11944720b0d86f4efd07468f786b03fa52fe429ca8e371f708e0f')
-
-build() {
-  cd $srcdir/dwarf_fortress_unfuck
-
-  cmake .
-  make VERBOSE=1
-}
-
-package() {
-  install -dm755 $pkgdir/opt/
-  cp -r $srcdir/df_linux $pkgdir/opt/$pkgname
-  rm -r $pkgdir/opt/$pkgname/df $pkgdir/opt/$pkgname/libs/* 
$pkgdir/opt/$pkgname/g_src
-
-  find $pkgdir/opt/$pkgname -type d -exec chmod 755 {} +
-  find $pkgdir/opt/$pkgname -type f -exec chmod 644 {} +
-
-  install -Dm755 $srcdir/df_linux/libs/Dwarf_Fortress 
$pkgdir/opt/$pkgname/libs/Dwarf_Fortress
-  install -Dm755 $srcdir/dwarf_fortress_unfuck/libgraphics.so 
$pkgdir/opt/$pkgname/libs/libgraphics.so
-  install -Dm755 $srcdir/dwarffortress $pkgdir/usr/bin/$pkgname
-
-  # No idea why we need this. Really. This isn't being loaded dynamically, 
it's not linked and
-  # in general there is no indication this is being used. However, it doesn't 
work without this symlink.
-  [[ $CARCH == "x86_64" ]] && ln -s /usr/lib32/libpng.so 
$pkgdir/opt/$pkgname/libs/libpng.so.3
-  [[ $CARCH == "i686" ]] && ln -s /usr/lib/libpng.so 
$pkgdir/opt/$pkgname/libs/libpng.so.3
-
-  # Set pkgname in runscript
-  sed -i "s/^pkgname=.*/pkgname=$pkgname/" $pkgdir/usr/bin/$pkgname
-
-  # Desktop launcher with icon
-  install -Dm644 $srcdir/dwarffortress.desktop 
$pkgdir/usr/share/applications/"$pkgname".desktop
-  install -Dm644 $srcdir/dwarffortress.png 
$pkgdir/usr/share/pixmaps/"$pkgname".png
-
-  install -Dm644 $srcdir/df_linux/readme.txt 
$pkgdir/usr/share/licenses/$pkgname/readme.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dwarffortress/repos/community-i686/PKGBUILD (from rev 117465, 
dwarffortress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-08-16 20:47:19 UTC (rev 117466)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Sven-Hendr

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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:44:21
  Author: svenstaro
Revision: 117464

upgpkg: dwarffortress 0.40.08-4

Try again

Modified:
  dwarffortress/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 19:46:34 UTC (rev 117463)
+++ PKGBUILD2014-08-16 20:44:21 UTC (rev 117464)
@@ -5,7 +5,7 @@
 pkgname=dwarffortress
 pkgver=0.40.08
 _pkgver=40_08
-pkgrel=3
+pkgrel=4
 pkgdesc="A single-player fantasy game. You control a dwarven outpost or an 
adventurer in a randomly generated persistent world."
 arch=(i686 x86_64)
 url="http://www.bay12games.com/dwarves/";
@@ -26,7 +26,7 @@
 # I made a fucking github repo with the sole purpose of unfucking df a bit
 # We try to compile whatever little bit of df is open source
 source=(http://www.bay12games.com/dwarves/df_${_pkgver}_linux.tar.bz2
-git://github.com/svenstaro/dwarf_fortress_unfuck.git#commit=9c955d
+git://github.com/svenstaro/dwarf_fortress_unfuck.git#commit=468150
 dwarffortress
 dwarffortress.desktop
 dwarffortress.png)



[arch-commits] Commit in dwarffortress/repos/multilib-x86_64 (10 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:44:26
  Author: svenstaro
Revision: 117465

archrelease: copy trunk to multilib-x86_64

Added:
  dwarffortress/repos/multilib-x86_64/PKGBUILD
(from rev 117464, dwarffortress/trunk/PKGBUILD)
  dwarffortress/repos/multilib-x86_64/dwarffortress
(from rev 117464, dwarffortress/trunk/dwarffortress)
  dwarffortress/repos/multilib-x86_64/dwarffortress.desktop
(from rev 117464, dwarffortress/trunk/dwarffortress.desktop)
  dwarffortress/repos/multilib-x86_64/dwarffortress.install
(from rev 117464, dwarffortress/trunk/dwarffortress.install)
  dwarffortress/repos/multilib-x86_64/dwarffortress.png
(from rev 117464, dwarffortress/trunk/dwarffortress.png)
Deleted:
  dwarffortress/repos/multilib-x86_64/PKGBUILD
  dwarffortress/repos/multilib-x86_64/dwarffortress
  dwarffortress/repos/multilib-x86_64/dwarffortress.desktop
  dwarffortress/repos/multilib-x86_64/dwarffortress.install
  dwarffortress/repos/multilib-x86_64/dwarffortress.png

---+
 PKGBUILD  |  146 
 dwarffortress |   40 ++---
 dwarffortress.desktop |   18 ++---
 dwarffortress.install |   16 ++---
 4 files changed, 110 insertions(+), 110 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-08-16 20:44:21 UTC (rev 117464)
+++ PKGBUILD2014-08-16 20:44:26 UTC (rev 117465)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Daenyth 
-# Contributor: djnm 
-pkgname=dwarffortress
-pkgver=0.40.08
-_pkgver=40_08
-pkgrel=3
-pkgdesc="A single-player fantasy game. You control a dwarven outpost or an 
adventurer in a randomly generated persistent world."
-arch=(i686 x86_64)
-url="http://www.bay12games.com/dwarves/";
-license=('custom:dwarffortress')
-depends=(gtk2 glu sdl_image libsndfile openal sdl_ttf glew gcc-libs)
-makedepends=(git cmake)
-options=('!strip' '!buildflags')
-install=${pkgname}.install
-if [[ $CARCH == 'x86_64' ]]; then
-  makedepends+=(gcc-multilib)
-  depends=(gcc-libs-multilib lib32-gtk2 lib32-glu lib32-sdl_image 
lib32-libsndfile lib32-openal
-   lib32-libxdamage lib32-ncurses lib32-sdl_ttf lib32-glew)
-  optdepends=('lib32-nvidia-utils: If you have nvidia graphics'
-  'lib32-catalyst-utils: If you have ATI graphics'
-  'lib32-alsa-lib: for alsa sound'
-  'lib32-libpulse: for pulse sound')
-fi
-# I made a fucking github repo with the sole purpose of unfucking df a bit
-# We try to compile whatever little bit of df is open source
-source=(http://www.bay12games.com/dwarves/df_${_pkgver}_linux.tar.bz2
-git://github.com/svenstaro/dwarf_fortress_unfuck.git#commit=9c955d
-dwarffortress
-dwarffortress.desktop
-dwarffortress.png)
-sha256sums=('24fa1642b84a108b39fd82eb703b8d8c3f678e4d4bd61a56b6416d99ab76f5ab'
-'SKIP'
-'7dc1f0ed0d496b21f4f240334f77dc43b728823f3e1c4ea25ce768691346ec07'
-'e79e3d945c6cc0da58f4ca30a210c7bf1bc3149fd10406d1262a6214eb40445a'
-'83183abc70b11944720b0d86f4efd07468f786b03fa52fe429ca8e371f708e0f')
-
-build() {
-  cd $srcdir/dwarf_fortress_unfuck
-
-  cmake .
-  make VERBOSE=1
-}
-
-package() {
-  install -dm755 $pkgdir/opt/
-  cp -r $srcdir/df_linux $pkgdir/opt/$pkgname
-  rm -r $pkgdir/opt/$pkgname/df $pkgdir/opt/$pkgname/libs/* 
$pkgdir/opt/$pkgname/g_src
-
-  find $pkgdir/opt/$pkgname -type d -exec chmod 755 {} +
-  find $pkgdir/opt/$pkgname -type f -exec chmod 644 {} +
-
-  install -Dm755 $srcdir/df_linux/libs/Dwarf_Fortress 
$pkgdir/opt/$pkgname/libs/Dwarf_Fortress
-  install -Dm755 $srcdir/dwarf_fortress_unfuck/libgraphics.so 
$pkgdir/opt/$pkgname/libs/libgraphics.so
-  install -Dm755 $srcdir/dwarffortress $pkgdir/usr/bin/$pkgname
-
-  # No idea why we need this. Really. This isn't being loaded dynamically, 
it's not linked and
-  # in general there is no indication this is being used. However, it doesn't 
work without this symlink.
-  [[ $CARCH == "x86_64" ]] && ln -s /usr/lib32/libpng.so 
$pkgdir/opt/$pkgname/libs/libpng.so.3
-  [[ $CARCH == "i686" ]] && ln -s /usr/lib/libpng.so 
$pkgdir/opt/$pkgname/libs/libpng.so.3
-
-  # Set pkgname in runscript
-  sed -i "s/^pkgname=.*/pkgname=$pkgname/" $pkgdir/usr/bin/$pkgname
-
-  # Desktop launcher with icon
-  install -Dm644 $srcdir/dwarffortress.desktop 
$pkgdir/usr/share/applications/"$pkgname".desktop
-  install -Dm644 $srcdir/dwarffortress.png 
$pkgdir/usr/share/pixmaps/"$pkgname".png
-
-  install -Dm644 $srcdir/df_linux/readme.txt 
$pkgdir/usr/share/licenses/$pkgname/readme.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dwarffortress/repos/multilib-x86_64/PKGBUILD (from rev 117464, 
dwarffortress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-08-16 20:44:26 UTC (rev 117465)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer

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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:23:49
  Author: svenstaro
Revision: 220118

archrelease: copy trunk to testing-any

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

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

Copied: kde-l10n/repos/testing-any/PKGBUILD (from rev 220117, 
kde-l10n/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2014-08-16 20:23:49 UTC (rev 220118)
@@ -0,0 +1,495 @@
+# $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-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-id'
+ '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-sk'
+ 'kde-l10n-sl'
+ 'kde-l10n-sr'
+ 'kde-l10n-sv'
+ 'kde-l10n-tr'
+ 'kde-l10n-ug'
+ 'kde-l10n-uk'
+ 'kde-l10n-wa'
+ 'kde-l10n-zh_cn'
+ 'kde-l10n-zh_tw')
+pkgver=4.14.0
+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}-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}-id-${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";
+
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-km-${pkgver}.tar.xz"

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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:23:22
  Author: svenstaro
Revision: 220116

archrelease: copy trunk to testing-any

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

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

Copied: kde-wallpapers/repos/testing-any/PKGBUILD (from rev 220115, 
kde-wallpapers/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2014-08-16 20:23:22 UTC (rev 220116)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kde-wallpapers
+pkgver=4.14.0
+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=('2e83770154ecc9294733c7f318324d8d023ebd21')
+
+package() {
+  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 kde-l10n/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:23:34
  Author: svenstaro
Revision: 220117

upgpkg: kde-l10n 4.14.0-1

kde 4.14.0

Modified:
  kde-l10n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:23:22 UTC (rev 220116)
+++ PKGBUILD2014-08-16 20:23:34 UTC (rev 220117)
@@ -52,11 +52,10 @@
  '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.13.3
+pkgver=4.14.0
 pkgrel=1
 arch=('any')
 url='http://www.kde.org/'
@@ -112,68 +111,66 @@
 
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-tr-${pkgver}.tar.xz";
 
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-ug-${pkgver}.tar.xz";
 
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-uk-${pkgver}.tar.xz";
-
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-vi-${pkgver}.tar.xz";
 
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-wa-${pkgver}.tar.xz";
 
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-zh_CN-${pkgver}.tar.xz";
 
"http://download.kde.org/stable/${pkgver}/src/${pkgbase}/${pkgbase}-zh_TW-${pkgver}.tar.xz";)
-sha1sums=('c9a61e36e268fa59ad3853bf28ef91efe3f41922'
- '12652a2d9bdc49dbaf8e41c8059ae5cd66808835'
- '821ae26664d44bd31a2bb371ce93d9b6f9936b34'
- '0eba7a78fd1aa873c85faa96545cf01f0da86821'
- '5c463f4489e940dae91f99b1c7f39f62a493ab7c'
- 'f289f79f9664d1f992ce7160cf31ffde7e62c4a8'
- '6d5ef28431c3e5f80b4ad910eaf7d632da4dd810'
- 'ed90fca69b8ed98323f1b8e2cc01be1d21320280'
- '262e91bf0fd6423da368e419fc357d3c2455797b'
- '4a34285b83a8bc4b8e31f06a14285772990f0cce'
- '338f10a6f110a15ef0502e3a1e6b79ea509b5514'
- '9f3d5dedf25d3b82484ad12598f430fb96fbb083'
- '0c76054152806c2da856c85af66b032ac7fcd11f'
- '26aef99ae591e9d6ee648f9869921754029eab04'
- 'a77e4494b4a8da4abcbea1bedc883a5ba0d06cc7'
- '621e7734da7d289013a581ab9a01516277537fba'
- '10a4ceff2fe2b29bf05c2199ce8c30be71a8b4f3'
- '1721142355aa5d813c6d1adf16d3097021fe207f'
- 'cc775b649653ac249ab9df2917eaf67265efb862'
- '17222d3f71401fdb55daf2d4f9263fc734d8fb39'
- '690be63152d57db6c1efcaa0c1de16b555f113fe'
- '66575ecbe058e7bddf992c831b131ce2256c3aa5'
- '8259ba3989565158a1ed9db2f2ed0e061e2d316e'
- '5a946a9dc82fd02477da227d3d86767cd1bab9d8'
- '9a08e701a70e34241489b52855716fea1b3ceb7f'
- '233d69bb85421ae020db2dd8d0d19787cf39f461'
- '78ec51a364ced41b976039c533fa01bcd01fef86'
- '101d46d27582294fbb0f843b2b9fe38b4d6894bc'
- '407afedf3f65a60b9e154ce80ccac814f6e9da21'
- '89934546ca6cd26f5716fc44c893ce4000aa7602'
- 'd1f24ecd000a1d077af68055f3548973408b946a'
- '02d7633a616fc576e9dcb5b260acb3a1fbcd5695'
- '68b1da08325b39ee0f18aeb6c68c3dc18da1b90b'
- 'c553c30eaf2b57c3f5ad83007edf628493dc7dc0'
- '0b05a64b4d6c5537b5e66d271a2b8c8b3d6417fe'
- 'ba5e32b2a0e23df918c201a12029e15134b60d9e'
- 'e39894e46d1803224f03b84c95ba1b163e642875'
- '7b8801beb77fce8209c1ddffd4701d5beff59536'
- '8657d5d0710ae9c0f92ee1219f78607294aa9d5d'
- '8989f52febc5af36b2fb494d37848c6d985a8ac6'
- '53b6b1e70da2c182e3b4ef0771e99be16ad1ca78'
- 'd04f5ac398e8e339bbeed8a3b33767878fe1b5e5'
- 'a9c131e509b3ddc8667ae416e7f2597c404ead4a'
- '5ce46b3e769820efffb76b4d19c9966df1aaa0cc'
- '3074f977de5ad1330465dba22df56dc90bf8d1f4'
- '86963b1646a7946f54d7de1238dc7e5092ff2ef9'
- 'a41a107406d58a7b0b382e885a65f7c72b1370c4'
- '0538ec7f179b62bc8938e20e03f7f245da34e15b'
- '3685c95515309003aad85831d96b4f63ac1fa1f7'
- 'e6baf334e8ecac74559e27dda5e526507ad7993f'
- '9aa4cb63adcccbc94dd805c46fb1fde7fbfe5fbc'
- '915a809210777cde446ee8a25c4d87d29910dc7b'
- '4beea930316ab046d23cec2b12aa42aaf1e4370d')
+sha1sums=('e2ae7d823f8eeb213cfa6c660d232aaec3696f5d'
+  '3f6af3e921c3096a9df4df2f45f156550cbe91d2'
+  '630d9932f87ea78b3114263510eeb68af76f5b10'
+  'f71278de1e11501d09c9f83ced6c2a3f59159d9f'
+  '42da8abbc99fde03f2bfe251923dde1cf833177e'
+  '97701cbb51569d5c498b92ff7d24211decaf5690'
+  '396a0825afcd8f0a7455ca76a25e88d939ae59ad'
+  '11ba070b38a1df6ee9a0781ad7511b84504f19ca'
+  'e9b5b634ec896281725ccadc0e545a8c61ca619f'
+  'f331767b499da9a50f40abdd08674897552e1e87'
+  'ae23169fd41f3cf1656ca99d14b95b5ae96190eb'
+  '0642c4e18f717e8e0674feee278955ca0ed339f7'
+  'dfcb4bce3131982bd2b486f67c

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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:23:15
  Author: svenstaro
Revision: 220115

upgpkg: kde-wallpapers 4.14.0-1

kde 4.14.0

Modified:
  kde-wallpapers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:23:11 UTC (rev 220114)
+++ PKGBUILD2014-08-16 20:23:15 UTC (rev 220115)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kde-wallpapers
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc="A set of wallpapers for KDE"
 arch=('any')
@@ -11,7 +11,7 @@
 groups=('kde' 'kde-meta' 'kdebase')
 makedepends=('kdelibs' 'cmake' 'automoc4')
 
source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('17fe293e7fd22c6d21607066812dd604850228b7')
+sha1sums=('2e83770154ecc9294733c7f318324d8d023ebd21')
 
 package() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:23:02
  Author: svenstaro
Revision: 220112

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

Added:
  kdeutils-sweeper/repos/testing-i686/
  kdeutils-sweeper/repos/testing-i686/PKGBUILD
(from rev 220111, kdeutils-sweeper/trunk/PKGBUILD)
  kdeutils-sweeper/repos/testing-x86_64/
  kdeutils-sweeper/repos/testing-x86_64/PKGBUILD
(from rev 220111, 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 220111, 
kdeutils-sweeper/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:23:02 UTC (rev 220112)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-sweeper
+pkgver=4.14.0
+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=('3ddcd1b7afba1600bb053f08bd7099eaddf764ca')
+
+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 220111, 
kdeutils-sweeper/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:23:02 UTC (rev 220112)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-sweeper
+pkgver=4.14.0
+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=('3ddcd1b7afba1600bb053f08bd7099eaddf764ca')
+
+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-print-manager/repos (4 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:45
  Author: svenstaro
Revision: 220108

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 220107, kdeutils-print-manager/trunk/PKGBUILD)
  kdeutils-print-manager/repos/testing-x86_64/
  kdeutils-print-manager/repos/testing-x86_64/PKGBUILD
(from rev 220107, 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 220107, 
kdeutils-print-manager/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:22:45 UTC (rev 220108)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-print-manager
+pkgver=4.14.0
+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=('978648e8f721de623e20551264347e29c28b219c')
+
+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 220107, 
kdeutils-print-manager/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:22:45 UTC (rev 220108)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-print-manager
+pkgver=4.14.0
+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=('978648e8f721de623e20551264347e29c28b219c')
+
+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-kremotecontrol/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:18
  Author: svenstaro
Revision: 220101

upgpkg: kdeutils-kremotecontrol 4.14.0-1

kde 4.14.0

Modified:
  kdeutils-kremotecontrol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:22:15 UTC (rev 220100)
+++ PKGBUILD2014-08-16 20:22:18 UTC (rev 220101)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-kremotecontrol
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Configure your remote controls for use with applications'
 url='http://kde.org/applications/utilities/kremotecontrol/'
@@ -15,7 +15,7 @@
 conflicts=('kdeutils-kdelirc')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/${pkgver}/src/kremotecontrol-${pkgver}.tar.xz";)
-sha1sums=('28efeb1c97fa3b3b7b22c9fad92967b49811c7c7')
+sha1sums=('e921580e4b2c2d979710cecc12bd5ad0c8aafdcc')
 
 build() {
   cd "${srcdir}"



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:23:05
  Author: svenstaro
Revision: 220113

upgpkg: kdewebdev 4.14.0-1

kde 4.14.0

Modified:
  kdewebdev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:23:02 UTC (rev 220112)
+++ PKGBUILD2014-08-16 20:23:05 UTC (rev 220113)
@@ -7,7 +7,7 @@
  'kdewebdev-kimagemapeditor'
  'kdewebdev-klinkstatus'
  'kdewebdev-kommander')
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -15,7 +15,7 @@
 groups=('kde' 'kdewebdev')
 makedepends=('cmake' 'automoc4' 'ruby' 'tidyhtml' 'kdepimlibs' 'boost')
 
source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('51ba61001fd54feef10818bcd91f0938648daa91')
+sha1sums=('f9c7c8c1ec7d59034835aeffc30c1b61a2d622ef')
 
 build() {
cd $srcdir



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:01
  Author: svenstaro
Revision: 220097

upgpkg: kdeutils-kfloppy 4.14.0-1

kde 4.14.0

Modified:
  kdeutils-kfloppy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:21:59 UTC (rev 220096)
+++ PKGBUILD2014-08-16 20:22:01 UTC (rev 220097)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-kfloppy
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Floppy Formatter'
 url='http://kde.org/applications/utilities/kfloppy/'
@@ -13,7 +13,7 @@
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/${pkgver}/src/kfloppy-${pkgver}.tar.xz";)
-sha1sums=('d86244b349bc14a79fa0ed0cc9e640fcb9b8cd53')
+sha1sums=('0f20ce3642ae9e4f977461b0c8f67e20d542e5eb')
 
 build() {
   cd "${srcdir}"



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:10
  Author: svenstaro
Revision: 220099

upgpkg: kdeutils-kgpg 4.14.0-1

kde 4.14.0

Modified:
  kdeutils-kgpg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:22:08 UTC (rev 220098)
+++ PKGBUILD2014-08-16 20:22:10 UTC (rev 220099)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-kgpg
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='A GnuPG frontend'
 url='http://kde.org/applications/utilities/kgpg/'
@@ -13,7 +13,7 @@
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/kgpg-${pkgver}.tar.xz";)
-sha1sums=('4ad04a74f2438dac957ec37b0016d8c37887e434')
+sha1sums=('07973b7e80baf77e4d624173408f9e7e7c422e37')
 
 prepare() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:23:11
  Author: svenstaro
Revision: 220114

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

Added:
  kdewebdev/repos/testing-i686/
  kdewebdev/repos/testing-i686/PKGBUILD
(from rev 220113, kdewebdev/trunk/PKGBUILD)
  kdewebdev/repos/testing-i686/kdewebdev-kimagemapeditor.install
(from rev 220113, kdewebdev/trunk/kdewebdev-kimagemapeditor.install)
  kdewebdev/repos/testing-i686/kdewebdev.install
(from rev 220113, kdewebdev/trunk/kdewebdev.install)
  kdewebdev/repos/testing-x86_64/
  kdewebdev/repos/testing-x86_64/PKGBUILD
(from rev 220113, kdewebdev/trunk/PKGBUILD)
  kdewebdev/repos/testing-x86_64/kdewebdev-kimagemapeditor.install
(from rev 220113, kdewebdev/trunk/kdewebdev-kimagemapeditor.install)
  kdewebdev/repos/testing-x86_64/kdewebdev.install
(from rev 220113, 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 220113, 
kdewebdev/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:23:11 UTC (rev 220114)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdewebdev
+pkgname=('kdewebdev-kfilereplace'
+ 'kdewebdev-kimagemapeditor'
+ 'kdewebdev-klinkstatus'
+ 'kdewebdev-kommander')
+pkgver=4.14.0
+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=('f9c7c8c1ec7d59034835aeffc30c1b61a2d622ef')
+
+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 220113, kdewebdev/trunk/kdewebdev-kimagemapeditor.install)
===
--- testing-i686/kdewebdev-kimagemapeditor.install  
(rev 0)
+++ testing-i686/kdewebdev-kimagemapeditor.install  2014-08-16 20:23:11 UTC 
(rev 220114)
@@ -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 220113, 
kdewebdev/trunk/kdewebdev.install)
===
--- testing-i686/kdewebdev.install  (rev 0)
+++ testing-i686/kdewebdev.install  2014-08-16 20:23:11 UTC (rev 220114)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupda

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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:32
  Author: svenstaro
Revision: 220105

upgpkg: kdeutils-kwalletmanager 4.14.0-1

kde 4.14.0

Modified:
  kdeutils-kwalletmanager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:22:30 UTC (rev 220104)
+++ PKGBUILD2014-08-16 20:22:32 UTC (rev 220105)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-kwalletmanager
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Wallet Management Tool'
 url='http://kde.org/applications/system/kwalletmanager/'
@@ -15,7 +15,7 @@
 replaces=('kdeutils-kwallet')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/${pkgver}/src/kwalletmanager-${pkgver}.tar.xz";)
-sha1sums=('0356ac479e3c569566a9aa01b2c0206518d73eff')
+sha1sums=('86d77dd6f8b295572f19d0d0ad4bdf2c157d')
 
 prepare() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:08
  Author: svenstaro
Revision: 220098

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

Added:
  kdeutils-kfloppy/repos/testing-i686/
  kdeutils-kfloppy/repos/testing-i686/PKGBUILD
(from rev 220097, kdeutils-kfloppy/trunk/PKGBUILD)
  kdeutils-kfloppy/repos/testing-i686/kdeutils-kfloppy.install
(from rev 220097, kdeutils-kfloppy/trunk/kdeutils-kfloppy.install)
  kdeutils-kfloppy/repos/testing-x86_64/
  kdeutils-kfloppy/repos/testing-x86_64/PKGBUILD
(from rev 220097, kdeutils-kfloppy/trunk/PKGBUILD)
  kdeutils-kfloppy/repos/testing-x86_64/kdeutils-kfloppy.install
(from rev 220097, 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 220097, 
kdeutils-kfloppy/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:22:08 UTC (rev 220098)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kfloppy
+pkgver=4.14.0
+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=('0f20ce3642ae9e4f977461b0c8f67e20d542e5eb')
+
+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 
220097, kdeutils-kfloppy/trunk/kdeutils-kfloppy.install)
===
--- testing-i686/kdeutils-kfloppy.install   (rev 0)
+++ testing-i686/kdeutils-kfloppy.install   2014-08-16 20:22:08 UTC (rev 
220098)
@@ -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 220097, 
kdeutils-kfloppy/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:22:08 UTC (rev 220098)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kfloppy
+pkgver=4.14.0
+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=('0f20ce3642ae9e4f977461b0c8f67e20d542e5eb')
+
+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 220097, kdeutils-kfloppy/trunk/kdeutils-kfloppy.install)
===
--- testing-x86_64/kdeutils-kfloppy.install (rev 0)
+++ testing-x86_64/kdeutils-kfloppy.install 2014-08-16 20:22:08 UTC (rev 
220098)
@@ -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/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:39
  Author: svenstaro
Revision: 220107

upgpkg: kdeutils-print-manager 4.14.0-1

kde 4.14.0

Modified:
  kdeutils-print-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:22:37 UTC (rev 220106)
+++ PKGBUILD2014-08-16 20:22:39 UTC (rev 220107)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-print-manager
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc="A tool for managing print jobs and printers"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 conflicts=('print-manager')
 groups=('kde' 'kdeutils')
 
source=("http://download.kde.org/stable/${pkgver}/src/print-manager-${pkgver}.tar.xz";)
-sha1sums=('7d323595b20808a9110adbcd8daf2d173618a897')
+sha1sums=('978648e8f721de623e20551264347e29c28b219c')
 
 build() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:15
  Author: svenstaro
Revision: 220100

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

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

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

Copied: kdeutils-kgpg/repos/testing-i686/PKGBUILD (from rev 220099, 
kdeutils-kgpg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:22:15 UTC (rev 220100)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kgpg
+pkgver=4.14.0
+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' 'boost')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kgpg-${pkgver}.tar.xz";)
+sha1sums=('07973b7e80baf77e4d624173408f9e7e7c422e37')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kgpg-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kgpg/repos/testing-i686/kdeutils-kgpg.install (from rev 
220099, kdeutils-kgpg/trunk/kdeutils-kgpg.install)
===
--- testing-i686/kdeutils-kgpg.install  (rev 0)
+++ testing-i686/kdeutils-kgpg.install  2014-08-16 20:22:15 UTC (rev 220100)
@@ -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 220099, 
kdeutils-kgpg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:22:15 UTC (rev 220100)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kgpg
+pkgver=4.14.0
+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' 'boost')
+groups=('kde' 'kdeutils')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kgpg-${pkgver}.tar.xz";)
+sha1sums=('07973b7e80baf77e4d624173408f9e7e7c422e37')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kgpg-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kgpg/repos/testing-x86_64/kdeutils-kgpg.install (from rev 
220099, kdeutils-kgpg/trunk/kdeutils-kgpg.install)
===
--- testing-x86_64/kdeutils-kgpg.install(rev 0)
+++ testing-x86_64/kdeutils-kgpg.install2014-08-16 20:22:15 UTC (rev 
220100)
@@ -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-sweeper/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:57
  Author: svenstaro
Revision: 220111

upgpkg: kdeutils-sweeper 4.14.0-1

kde 4.14.0

Modified:
  kdeutils-sweeper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:22:54 UTC (rev 220110)
+++ PKGBUILD2014-08-16 20:22:57 UTC (rev 220111)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-sweeper
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='System Cleaner'
 url='http://kde.org/applications/utilities/sweeper'
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'automoc4')
 groups=('kde' 'kdeutils')
 
source=("http://download.kde.org/stable/${pkgver}/src/sweeper-${pkgver}.tar.xz";)
-sha1sums=('3156f6e570bafd5aa24fb6a86ee386d51c3f1455')
+sha1sums=('3ddcd1b7afba1600bb053f08bd7099eaddf764ca')
 
 build() {
   cd "${srcdir}"



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:49
  Author: svenstaro
Revision: 220109

upgpkg: kdeutils-superkaramba 4.14.0-1

kde 4.14.0

Modified:
  kdeutils-superkaramba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:22:45 UTC (rev 220108)
+++ PKGBUILD2014-08-16 20:22:49 UTC (rev 220109)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-superkaramba
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='An engine for cool desktop eyecandy'
 url='http://kde.org/applications/utilities/superkaramba/'
@@ -13,7 +13,7 @@
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/${pkgver}/src/superkaramba-${pkgver}.tar.xz";)
-sha1sums=('4974f7a41f1ad2d6dabc2da03d726016d19c123a')
+sha1sums=('e0a10a404ca655462dfa59f1da9774c751b2f964')
 
 build() {
   cd "${srcdir}"



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:30
  Author: svenstaro
Revision: 220104

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

Added:
  kdeutils-ktimer/repos/testing-i686/
  kdeutils-ktimer/repos/testing-i686/PKGBUILD
(from rev 220103, kdeutils-ktimer/trunk/PKGBUILD)
  kdeutils-ktimer/repos/testing-i686/kdeutils-ktimer.install
(from rev 220103, kdeutils-ktimer/trunk/kdeutils-ktimer.install)
  kdeutils-ktimer/repos/testing-x86_64/
  kdeutils-ktimer/repos/testing-x86_64/PKGBUILD
(from rev 220103, kdeutils-ktimer/trunk/PKGBUILD)
  kdeutils-ktimer/repos/testing-x86_64/kdeutils-ktimer.install
(from rev 220103, 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 220103, 
kdeutils-ktimer/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:22:30 UTC (rev 220104)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-ktimer
+pkgver=4.14.0
+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=('f0f32c5620b42b7122f58635362ab7d14c50a35b')
+
+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 
220103, kdeutils-ktimer/trunk/kdeutils-ktimer.install)
===
--- testing-i686/kdeutils-ktimer.install(rev 0)
+++ testing-i686/kdeutils-ktimer.install2014-08-16 20:22:30 UTC (rev 
220104)
@@ -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 220103, 
kdeutils-ktimer/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:22:30 UTC (rev 220104)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-ktimer
+pkgver=4.14.0
+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=('f0f32c5620b42b7122f58635362ab7d14c50a35b')
+
+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 
220103, kdeutils-ktimer/trunk/kdeutils-ktimer.install)
===
--- testing-x86_64/kdeutils-ktimer.install  (rev 0)
+++ testing-x86_64/kdeutils-ktimer.install  2014-08-16 20:22:30 UTC (rev 
220104)
@@ -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-superkaramba/repos (6 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:54
  Author: svenstaro
Revision: 220110

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

Added:
  kdeutils-superkaramba/repos/testing-i686/
  kdeutils-superkaramba/repos/testing-i686/PKGBUILD
(from rev 220109, kdeutils-superkaramba/trunk/PKGBUILD)
  kdeutils-superkaramba/repos/testing-i686/kdeutils-superkaramba.install
(from rev 220109, kdeutils-superkaramba/trunk/kdeutils-superkaramba.install)
  kdeutils-superkaramba/repos/testing-x86_64/
  kdeutils-superkaramba/repos/testing-x86_64/PKGBUILD
(from rev 220109, kdeutils-superkaramba/trunk/PKGBUILD)
  kdeutils-superkaramba/repos/testing-x86_64/kdeutils-superkaramba.install
(from rev 220109, 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 220109, 
kdeutils-superkaramba/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:22:54 UTC (rev 220110)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-superkaramba
+pkgver=4.14.0
+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=('e0a10a404ca655462dfa59f1da9774c751b2f964')
+
+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 220109, kdeutils-superkaramba/trunk/kdeutils-superkaramba.install)
===
--- testing-i686/kdeutils-superkaramba.install  (rev 0)
+++ testing-i686/kdeutils-superkaramba.install  2014-08-16 20:22:54 UTC (rev 
220110)
@@ -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 220109, 
kdeutils-superkaramba/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:22:54 UTC (rev 220110)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-superkaramba
+pkgver=4.14.0
+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=('e0a10a404ca655462dfa59f1da9774c751b2f964')
+
+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 220109, kdeutils-superkaramba/trunk/kdeutils-superkaramba.install)
===
--- testing-x86_64/kdeutils-superkaramba.install
(rev 0)
+++ testing-x86_64/kdeutils-superkaramba.install2014-08-16 20:22:54 UTC 
(rev 220110)
@@ -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/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:25
  Author: svenstaro
Revision: 220103

upgpkg: kdeutils-ktimer 4.14.0-1

kde 4.14.0

Modified:
  kdeutils-ktimer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:22:23 UTC (rev 220102)
+++ PKGBUILD2014-08-16 20:22:25 UTC (rev 220103)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-ktimer
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Countdown Launcher'
 url='http://kde.org/applications/utilities/ktimer/'
@@ -13,7 +13,7 @@
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/ktimer-${pkgver}.tar.xz";)
-sha1sums=('6c887daf23f1c8dbbfce6427d83dcf164465198f')
+sha1sums=('f0f32c5620b42b7122f58635362ab7d14c50a35b')
 
 build() {
   cd "${srcdir}"



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:37
  Author: svenstaro
Revision: 220106

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

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

+
 testing-i686/PKGBUILD  |   36 +++
 testing-i686/kdeutils-kwalletmanager.install   |   12 +++
 testing-x86_64/PKGBUILD|   36 +++
 testing-x86_64/kdeutils-kwalletmanager.install |   12 +++
 4 files changed, 96 insertions(+)

Copied: kdeutils-kwalletmanager/repos/testing-i686/PKGBUILD (from rev 220105, 
kdeutils-kwalletmanager/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:22:37 UTC (rev 220106)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kwalletmanager
+pkgver=4.14.0
+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')
+conflicts=('kdeutils-kwallet')
+replaces=('kdeutils-kwallet')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kwalletmanager-${pkgver}.tar.xz";)
+sha1sums=('86d77dd6f8b295572f19d0d0ad4bdf2c157d')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kwalletmanager-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
kdeutils-kwalletmanager/repos/testing-i686/kdeutils-kwalletmanager.install 
(from rev 220105, kdeutils-kwalletmanager/trunk/kdeutils-kwalletmanager.install)
===
--- testing-i686/kdeutils-kwalletmanager.install
(rev 0)
+++ testing-i686/kdeutils-kwalletmanager.install2014-08-16 20:22:37 UTC 
(rev 220106)
@@ -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-kwalletmanager/repos/testing-x86_64/PKGBUILD (from rev 220105, 
kdeutils-kwalletmanager/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:22:37 UTC (rev 220106)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kwalletmanager
+pkgver=4.14.0
+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')
+conflicts=('kdeutils-kwallet')
+replaces=('kdeutils-kwallet')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kwalletmanager-${pkgver}.tar.xz";)
+sha1sums=('86d77dd6f8b295572f19d0d0ad4bdf2c157d')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kwalletmanager-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
kdeutils-kwalletmanager/repos/testing-x86_64/kdeutils-kwalletmanager.install 
(from rev 220105, kdeutils-kwalletmanager/trunk/kdeutils-kwalletmanager.install)
===
--- testing-x86_64/kdeutils-kwalletmanager.install  
(rev 0)
+++ testing-x86_64/kdeutils-kwalletmanager.install  2014-08-16 20:22:37 UTC 
(rev 220106)
@@ -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-kremotecontrol/repos (6 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:22:23
  Author: svenstaro
Revision: 220102

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

Added:
  kdeutils-kremotecontrol/repos/testing-i686/
  kdeutils-kremotecontrol/repos/testing-i686/PKGBUILD
(from rev 220101, kdeutils-kremotecontrol/trunk/PKGBUILD)
  kdeutils-kremotecontrol/repos/testing-i686/kdeutils-kremotecontrol.install
(from rev 220101, 
kdeutils-kremotecontrol/trunk/kdeutils-kremotecontrol.install)
  kdeutils-kremotecontrol/repos/testing-x86_64/
  kdeutils-kremotecontrol/repos/testing-x86_64/PKGBUILD
(from rev 220101, kdeutils-kremotecontrol/trunk/PKGBUILD)
  kdeutils-kremotecontrol/repos/testing-x86_64/kdeutils-kremotecontrol.install
(from rev 220101, 
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 220101, 
kdeutils-kremotecontrol/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:22:23 UTC (rev 220102)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kremotecontrol
+pkgver=4.14.0
+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=('e921580e4b2c2d979710cecc12bd5ad0c8aafdcc')
+
+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 220101, kdeutils-kremotecontrol/trunk/kdeutils-kremotecontrol.install)
===
--- testing-i686/kdeutils-kremotecontrol.install
(rev 0)
+++ testing-i686/kdeutils-kremotecontrol.install2014-08-16 20:22:23 UTC 
(rev 220102)
@@ -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 220101, 
kdeutils-kremotecontrol/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:22:23 UTC (rev 220102)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kremotecontrol
+pkgver=4.14.0
+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=('e921580e4b2c2d979710cecc12bd5ad0c8aafdcc')
+
+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 220101, kdeutils-kremotecontrol/trunk/kdeutils-kremotecontrol.install)
===
--- testing-x86_64/kdeutils-kremotecontrol.install  
(rev 0)
+++ testing-x86_64/kdeutils-kremotecontrol.install  2014-08-16 20:22:23 UTC 
(rev 220102)
@@ -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-kdf/repos (6 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:59
  Author: svenstaro
Revision: 220096

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

Added:
  kdeutils-kdf/repos/testing-i686/
  kdeutils-kdf/repos/testing-i686/PKGBUILD
(from rev 220095, kdeutils-kdf/trunk/PKGBUILD)
  kdeutils-kdf/repos/testing-i686/kdeutils-kdf.install
(from rev 220095, kdeutils-kdf/trunk/kdeutils-kdf.install)
  kdeutils-kdf/repos/testing-x86_64/
  kdeutils-kdf/repos/testing-x86_64/PKGBUILD
(from rev 220095, kdeutils-kdf/trunk/PKGBUILD)
  kdeutils-kdf/repos/testing-x86_64/kdeutils-kdf.install
(from rev 220095, 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 220095, 
kdeutils-kdf/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:21:59 UTC (rev 220096)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kdf
+pkgver=4.14.0
+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=('de7e806bc2cee023ee25c62397e506af058703ca')
+
+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 220095, 
kdeutils-kdf/trunk/kdeutils-kdf.install)
===
--- testing-i686/kdeutils-kdf.install   (rev 0)
+++ testing-i686/kdeutils-kdf.install   2014-08-16 20:21:59 UTC (rev 220096)
@@ -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 220095, 
kdeutils-kdf/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:21:59 UTC (rev 220096)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kdf
+pkgver=4.14.0
+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=('de7e806bc2cee023ee25c62397e506af058703ca')
+
+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 
220095, kdeutils-kdf/trunk/kdeutils-kdf.install)
===
--- testing-x86_64/kdeutils-kdf.install (rev 0)
+++ testing-x86_64/kdeutils-kdf.install 2014-08-16 20:21:59 UTC (rev 220096)
@@ -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-kcalc/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:38
  Author: svenstaro
Revision: 220091

upgpkg: kdeutils-kcalc 4.14.0-1

kde 4.14.0

Modified:
  kdeutils-kcalc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:21:35 UTC (rev 220090)
+++ PKGBUILD2014-08-16 20:21:38 UTC (rev 220091)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-kcalc
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Scientific Calculator'
 url='http://kde.org/applications/utilities/kcalc/'
@@ -13,7 +13,7 @@
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/kcalc-${pkgver}.tar.xz";)
-sha1sums=('acca59a806e8d827bf46fc66faab713d9679c86c')
+sha1sums=('8f8d95e11162f9156fac16fa72eddd1f1ac3e642')
 
 build() {
   cd "${srcdir}"



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:46
  Author: svenstaro
Revision: 220093

upgpkg: kdeutils-kcharselect 4.14.0-1

kde 4.14.0

Modified:
  kdeutils-kcharselect/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:21:43 UTC (rev 220092)
+++ PKGBUILD2014-08-16 20:21:46 UTC (rev 220093)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-kcharselect
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Character Selector'
 url="http://kde.org/applications/utilities/kcharselect/";
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'automoc4')
 groups=('kde' 'kdeutils')
 
source=("http://download.kde.org/stable/${pkgver}/src/kcharselect-${pkgver}.tar.xz";)
-sha1sums=('c4107eae55c290a9a80723a47afd7bd2caa346d0')
+sha1sums=('a9b6e6ad6a0f6db1d13a5387031a0758279f0ae8')
 
 build() {
   cd "${srcdir}"



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:21
  Author: svenstaro
Revision: 220086

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

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

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

Copied: kdetoys-ktux/repos/testing-i686/PKGBUILD (from rev 220085, 
kdetoys-ktux/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:21:21 UTC (rev 220086)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdetoys-ktux
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='A Tux-in-a-spaceship screen saver'
+url='https://projects.kde.org/projects/kde/kdetoys/ktux'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdetoys')
+depends=('kdebase-workspace')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ktux-${pkgver}.tar.xz";)
+sha1sums=('b4332f3fbfe673bf7b58b51f4fafde681ba61748')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../ktux-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdetoys-ktux/repos/testing-i686/kdetoys-ktux.install (from rev 220085, 
kdetoys-ktux/trunk/kdetoys-ktux.install)
===
--- testing-i686/kdetoys-ktux.install   (rev 0)
+++ testing-i686/kdetoys-ktux.install   2014-08-16 20:21:21 UTC (rev 220086)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdetoys-ktux/repos/testing-x86_64/PKGBUILD (from rev 220085, 
kdetoys-ktux/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:21:21 UTC (rev 220086)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdetoys-ktux
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='A Tux-in-a-spaceship screen saver'
+url='https://projects.kde.org/projects/kde/kdetoys/ktux'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdetoys')
+depends=('kdebase-workspace')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/ktux-${pkgver}.tar.xz";)
+sha1sums=('b4332f3fbfe673bf7b58b51f4fafde681ba61748')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../ktux-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdetoys-ktux/repos/testing-x86_64/kdetoys-ktux.install (from rev 
220085, kdetoys-ktux/trunk/kdetoys-ktux.install)
===
--- testing-x86_64/kdetoys-ktux.install (rev 0)
+++ testing-x86_64/kdetoys-ktux.install 2014-08-16 20:21:21 UTC (rev 220086)
@@ -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 kdetoys-ktux/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:13
  Author: svenstaro
Revision: 220085

upgpkg: kdetoys-ktux 4.14.0-1

kde 4.14.0

Modified:
  kdetoys-ktux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:21:11 UTC (rev 220084)
+++ PKGBUILD2014-08-16 20:21:13 UTC (rev 220085)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdetoys-ktux
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='A Tux-in-a-spaceship screen saver'
 url='https://projects.kde.org/projects/kde/kdetoys/ktux'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/ktux-${pkgver}.tar.xz";)
-sha1sums=('01bda9e9ff8f20b4c36c30a37ac50190ba4eb17d')
+sha1sums=('b4332f3fbfe673bf7b58b51f4fafde681ba61748')
 
 build() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:04
  Author: svenstaro
Revision: 220082

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

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

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

Copied: kdetoys-amor/repos/testing-i686/PKGBUILD (from rev 220081, 
kdetoys-amor/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:21:04 UTC (rev 220082)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdetoys-amor
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='On-Screen Creature'
+url='https://projects.kde.org/projects/kde/kdetoys/amor'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdetoys')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/amor-${pkgver}.tar.xz";)
+sha1sums=('8b60c18cd24c16f0676cb6a47b562f90e314b31d')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../amor-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdetoys-amor/repos/testing-i686/kdetoys-amor.install (from rev 220081, 
kdetoys-amor/trunk/kdetoys-amor.install)
===
--- testing-i686/kdetoys-amor.install   (rev 0)
+++ testing-i686/kdetoys-amor.install   2014-08-16 20:21:04 UTC (rev 220082)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdetoys-amor/repos/testing-x86_64/PKGBUILD (from rev 220081, 
kdetoys-amor/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:21:04 UTC (rev 220082)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdetoys-amor
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='On-Screen Creature'
+url='https://projects.kde.org/projects/kde/kdetoys/amor'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdetoys')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/amor-${pkgver}.tar.xz";)
+sha1sums=('8b60c18cd24c16f0676cb6a47b562f90e314b31d')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../amor-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdetoys-amor/repos/testing-x86_64/kdetoys-amor.install (from rev 
220081, kdetoys-amor/trunk/kdetoys-amor.install)
===
--- testing-x86_64/kdetoys-amor.install (rev 0)
+++ testing-x86_64/kdetoys-amor.install 2014-08-16 20:21:04 UTC (rev 220082)
@@ -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)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:52
  Author: svenstaro
Revision: 220094

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

Added:
  kdeutils-kcharselect/repos/testing-i686/
  kdeutils-kcharselect/repos/testing-i686/PKGBUILD
(from rev 220093, kdeutils-kcharselect/trunk/PKGBUILD)
  kdeutils-kcharselect/repos/testing-x86_64/
  kdeutils-kcharselect/repos/testing-x86_64/PKGBUILD
(from rev 220093, 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 220093, 
kdeutils-kcharselect/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:21:52 UTC (rev 220094)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kcharselect
+pkgver=4.14.0
+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=('a9b6e6ad6a0f6db1d13a5387031a0758279f0ae8')
+
+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 220093, 
kdeutils-kcharselect/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:21:52 UTC (rev 220094)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kcharselect
+pkgver=4.14.0
+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=('a9b6e6ad6a0f6db1d13a5387031a0758279f0ae8')
+
+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 kdesdk-umbrello/repos (6 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:57
  Author: svenstaro
Revision: 220080

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

Added:
  kdesdk-umbrello/repos/testing-i686/
  kdesdk-umbrello/repos/testing-i686/PKGBUILD
(from rev 220079, kdesdk-umbrello/trunk/PKGBUILD)
  kdesdk-umbrello/repos/testing-i686/kdesdk-umbrello.install
(from rev 220079, kdesdk-umbrello/trunk/kdesdk-umbrello.install)
  kdesdk-umbrello/repos/testing-x86_64/
  kdesdk-umbrello/repos/testing-x86_64/PKGBUILD
(from rev 220079, kdesdk-umbrello/trunk/PKGBUILD)
  kdesdk-umbrello/repos/testing-x86_64/kdesdk-umbrello.install
(from rev 220079, kdesdk-umbrello/trunk/kdesdk-umbrello.install)

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

Copied: kdesdk-umbrello/repos/testing-i686/PKGBUILD (from rev 220079, 
kdesdk-umbrello/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:20:57 UTC (rev 220080)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-umbrello
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='UML Modeller'
+url='http://kde.org/applications/development/umbrello/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'boost')
+optdepends=('ruby')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/umbrello-${pkgver}.tar.xz";)
+sha1sums=('69e755b8604d671f79993e61eb9a12e785eeabfc')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../umbrello-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-umbrello/repos/testing-i686/kdesdk-umbrello.install (from rev 
220079, kdesdk-umbrello/trunk/kdesdk-umbrello.install)
===
--- testing-i686/kdesdk-umbrello.install(rev 0)
+++ testing-i686/kdesdk-umbrello.install2014-08-16 20:20:57 UTC (rev 
220080)
@@ -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: kdesdk-umbrello/repos/testing-x86_64/PKGBUILD (from rev 220079, 
kdesdk-umbrello/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:20:57 UTC (rev 220080)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-umbrello
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='UML Modeller'
+url='http://kde.org/applications/development/umbrello/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'boost')
+optdepends=('ruby')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/umbrello-${pkgver}.tar.xz";)
+sha1sums=('69e755b8604d671f79993e61eb9a12e785eeabfc')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../umbrello-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-umbrello/repos/testing-x86_64/kdesdk-umbrello.install (from rev 
220079, kdesdk-umbrello/trunk/kdesdk-umbrello.install)
===
--- testing-x86_64/kdesdk-umbrello.install  (rev 0)
+++ testing-x86_64/kdesdk-umbrello.install  2014-08-16 20:20:57 UTC (rev 
220080)
@@ -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-filelight/repos (6 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:35
  Author: svenstaro
Revision: 220090

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

Added:
  kdeutils-filelight/repos/testing-i686/
  kdeutils-filelight/repos/testing-i686/PKGBUILD
(from rev 220089, kdeutils-filelight/trunk/PKGBUILD)
  kdeutils-filelight/repos/testing-i686/kdeutils-filelight.install
(from rev 220089, kdeutils-filelight/trunk/kdeutils-filelight.install)
  kdeutils-filelight/repos/testing-x86_64/
  kdeutils-filelight/repos/testing-x86_64/PKGBUILD
(from rev 220089, kdeutils-filelight/trunk/PKGBUILD)
  kdeutils-filelight/repos/testing-x86_64/kdeutils-filelight.install
(from rev 220089, 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 220089, 
kdeutils-filelight/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:21:35 UTC (rev 220090)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-filelight
+pkgver=4.14.0
+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=('800e572fdca38219c77ffbc95a9ecc1e57a01984')
+
+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 220089, kdeutils-filelight/trunk/kdeutils-filelight.install)
===
--- testing-i686/kdeutils-filelight.install (rev 0)
+++ testing-i686/kdeutils-filelight.install 2014-08-16 20:21:35 UTC (rev 
220090)
@@ -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 220089, 
kdeutils-filelight/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:21:35 UTC (rev 220090)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-filelight
+pkgver=4.14.0
+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=('800e572fdca38219c77ffbc95a9ecc1e57a01984')
+
+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 220089, kdeutils-filelight/trunk/kdeutils-filelight.install)
===
--- testing-x86_64/kdeutils-filelight.install   (rev 0)
+++ testing-x86_64/kdeutils-filelight.install   2014-08-16 20:21:35 UTC (rev 
220090)
@@ -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/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:54
  Author: svenstaro
Revision: 220095

upgpkg: kdeutils-kdf 4.14.0-1

kde 4.14.0

Modified:
  kdeutils-kdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:21:52 UTC (rev 220094)
+++ PKGBUILD2014-08-16 20:21:54 UTC (rev 220095)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-kdf
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 url="http://kde.org/applications/system/kdiskfree/";
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/kdf-${pkgver}.tar.xz";)
-sha1sums=('230ef29e4b1d4b2d49ed60adcec840e842f15f0d')
+sha1sums=('de7e806bc2cee023ee25c62397e506af058703ca')
 
 build() {
   cd "${srcdir}"



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:59
  Author: svenstaro
Revision: 220081

upgpkg: kdetoys-amor 4.14.0-1

kde 4.14.0

Modified:
  kdetoys-amor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:20:57 UTC (rev 220080)
+++ PKGBUILD2014-08-16 20:20:59 UTC (rev 220081)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdetoys-amor
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='On-Screen Creature'
 url='https://projects.kde.org/projects/kde/kdetoys/amor'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/amor-${pkgver}.tar.xz";)
-sha1sums=('73b5ee58cd1a642a75af09ff485cfe60a5d6ea9c')
+sha1sums=('8b60c18cd24c16f0676cb6a47b562f90e314b31d')
 
 build() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:43
  Author: svenstaro
Revision: 220092

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

Added:
  kdeutils-kcalc/repos/testing-i686/
  kdeutils-kcalc/repos/testing-i686/PKGBUILD
(from rev 220091, kdeutils-kcalc/trunk/PKGBUILD)
  kdeutils-kcalc/repos/testing-i686/kdeutils-kcalc.install
(from rev 220091, kdeutils-kcalc/trunk/kdeutils-kcalc.install)
  kdeutils-kcalc/repos/testing-x86_64/
  kdeutils-kcalc/repos/testing-x86_64/PKGBUILD
(from rev 220091, kdeutils-kcalc/trunk/PKGBUILD)
  kdeutils-kcalc/repos/testing-x86_64/kdeutils-kcalc.install
(from rev 220091, 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 220091, 
kdeutils-kcalc/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:21:43 UTC (rev 220092)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kcalc
+pkgver=4.14.0
+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=('8f8d95e11162f9156fac16fa72eddd1f1ac3e642')
+
+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 
220091, kdeutils-kcalc/trunk/kdeutils-kcalc.install)
===
--- testing-i686/kdeutils-kcalc.install (rev 0)
+++ testing-i686/kdeutils-kcalc.install 2014-08-16 20:21:43 UTC (rev 220092)
@@ -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 220091, 
kdeutils-kcalc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:21:43 UTC (rev 220092)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-kcalc
+pkgver=4.14.0
+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=('8f8d95e11162f9156fac16fa72eddd1f1ac3e642')
+
+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 
220091, kdeutils-kcalc/trunk/kdeutils-kcalc.install)
===
--- testing-x86_64/kdeutils-kcalc.install   (rev 0)
+++ testing-x86_64/kdeutils-kcalc.install   2014-08-16 20:21:43 UTC (rev 
220092)
@@ -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 kdesdk-thumbnailers/repos (4 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:50
  Author: svenstaro
Revision: 220078

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

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

-+
 testing-i686/PKGBUILD   |   30 ++
 testing-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: kdesdk-thumbnailers/repos/testing-i686/PKGBUILD (from rev 220077, 
kdesdk-thumbnailers/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:20:50 UTC (rev 220078)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-thumbnailers
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Plugins for the thumbnailing system'
+url='https://projects.kde.org/projects/kde/kdesdk/kdesdk-thumbnailers'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime' 'gettext')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/kdesdk-thumbnailers-${pkgver}.tar.xz";)
+sha1sums=('59797830739079e9a5e0676f425f750810b1943c')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kdesdk-thumbnailers-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-thumbnailers/repos/testing-x86_64/PKGBUILD (from rev 220077, 
kdesdk-thumbnailers/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:20:50 UTC (rev 220078)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-thumbnailers
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Plugins for the thumbnailing system'
+url='https://projects.kde.org/projects/kde/kdesdk/kdesdk-thumbnailers'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime' 'gettext')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/kdesdk-thumbnailers-${pkgver}.tar.xz";)
+sha1sums=('59797830739079e9a5e0676f425f750810b1943c')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kdesdk-thumbnailers-${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 kdetoys-kteatime/repos (6 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:11
  Author: svenstaro
Revision: 220084

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

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

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

Copied: kdetoys-kteatime/repos/testing-i686/PKGBUILD (from rev 220083, 
kdetoys-kteatime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:21:11 UTC (rev 220084)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdetoys-kteatime
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Tea Cooker'
+url='http://kde.org/applications/games/kteatime/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdetoys')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kteatime-${pkgver}.tar.xz";)
+sha1sums=('b7aefce842400def0d88df35b059c99c0338fbff')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kteatime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdetoys-kteatime/repos/testing-i686/kdetoys-kteatime.install (from rev 
220083, kdetoys-kteatime/trunk/kdetoys-kteatime.install)
===
--- testing-i686/kdetoys-kteatime.install   (rev 0)
+++ testing-i686/kdetoys-kteatime.install   2014-08-16 20:21:11 UTC (rev 
220084)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdetoys-kteatime/repos/testing-x86_64/PKGBUILD (from rev 220083, 
kdetoys-kteatime/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:21:11 UTC (rev 220084)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdetoys-kteatime
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Tea Cooker'
+url='http://kde.org/applications/games/kteatime/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdetoys')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kteatime-${pkgver}.tar.xz";)
+sha1sums=('b7aefce842400def0d88df35b059c99c0338fbff')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kteatime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdetoys-kteatime/repos/testing-x86_64/kdetoys-kteatime.install (from 
rev 220083, kdetoys-kteatime/trunk/kdetoys-kteatime.install)
===
--- testing-x86_64/kdetoys-kteatime.install (rev 0)
+++ testing-x86_64/kdetoys-kteatime.install 2014-08-16 20:21:11 UTC (rev 
220084)
@@ -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 kdesdk-thumbnailers/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:44
  Author: svenstaro
Revision: 220077

upgpkg: kdesdk-thumbnailers 4.14.0-1

kde 4.14.0

Modified:
  kdesdk-thumbnailers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:20:42 UTC (rev 220076)
+++ PKGBUILD2014-08-16 20:20:44 UTC (rev 220077)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdesdk-thumbnailers
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Plugins for the thumbnailing system'
 url='https://projects.kde.org/projects/kde/kdesdk/kdesdk-thumbnailers'
@@ -12,7 +12,7 @@
 depends=('kdebase-runtime' 'gettext')
 makedepends=('cmake' 'automoc4')
 
source=("http://download.kde.org/stable/${pkgver}/src/kdesdk-thumbnailers-${pkgver}.tar.xz";)
-sha1sums=('5443a9316eaa123cef82a90537559e691bd4d738')
+sha1sums=('59797830739079e9a5e0676f425f750810b1943c')
 
 build() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:06
  Author: svenstaro
Revision: 220083

upgpkg: kdetoys-kteatime 4.14.0-1

kde 4.14.0

Modified:
  kdetoys-kteatime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:21:04 UTC (rev 220082)
+++ PKGBUILD2014-08-16 20:21:06 UTC (rev 220083)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdetoys-kteatime
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Tea Cooker'
 url='http://kde.org/applications/games/kteatime/'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/${pkgver}/src/kteatime-${pkgver}.tar.xz";)
-sha1sums=('a4d703c1c2619d740df792b627aa230bef5683b9')
+sha1sums=('b7aefce842400def0d88df35b059c99c0338fbff')
 
 build() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:30
  Author: svenstaro
Revision: 220089

upgpkg: kdeutils-filelight 4.14.0-1

kde 4.14.0

Modified:
  kdeutils-filelight/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:21:28 UTC (rev 220088)
+++ PKGBUILD2014-08-16 20:21:30 UTC (rev 220089)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-filelight
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='View disk usage information'
 url='http://kde.org/applications/utilities/filelight'
@@ -15,7 +15,7 @@
 conflicts=('filelight')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/${pkgver}/src/filelight-${pkgver}.tar.xz";)
-sha1sums=('a0f20f629b01e2aedab27d5c77ca0feb4e4d25ab')
+sha1sums=('800e572fdca38219c77ffbc95a9ecc1e57a01984')
 
 build() {
   cd "${srcdir}"



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:52
  Author: svenstaro
Revision: 220079

upgpkg: kdesdk-umbrello 4.14.0-1

kde 4.14.0

Modified:
  kdesdk-umbrello/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:20:50 UTC (rev 220078)
+++ PKGBUILD2014-08-16 20:20:52 UTC (rev 220079)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdesdk-umbrello
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='UML Modeller'
 url='http://kde.org/applications/development/umbrello/'
@@ -14,7 +14,7 @@
 optdepends=('ruby')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/${pkgver}/src/umbrello-${pkgver}.tar.xz";)
-sha1sums=('ee6a4a115c8b5a5c19e2842b77c46f9dc0c3b657')
+sha1sums=('69e755b8604d671f79993e61eb9a12e785eeabfc')
 
 build() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:28
  Author: svenstaro
Revision: 220088

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

Added:
  kdeutils-ark/repos/testing-i686/
  kdeutils-ark/repos/testing-i686/PKGBUILD
(from rev 220087, kdeutils-ark/trunk/PKGBUILD)
  kdeutils-ark/repos/testing-i686/kdeutils-ark.install
(from rev 220087, kdeutils-ark/trunk/kdeutils-ark.install)
  kdeutils-ark/repos/testing-x86_64/
  kdeutils-ark/repos/testing-x86_64/PKGBUILD
(from rev 220087, kdeutils-ark/trunk/PKGBUILD)
  kdeutils-ark/repos/testing-x86_64/kdeutils-ark.install
(from rev 220087, 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 220087, 
kdeutils-ark/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:21:28 UTC (rev 220088)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-ark
+pkgver=4.14.0
+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=('fc5d388ccedddfa1e68254b4de00186e93930669')
+
+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 220087, 
kdeutils-ark/trunk/kdeutils-ark.install)
===
--- testing-i686/kdeutils-ark.install   (rev 0)
+++ testing-i686/kdeutils-ark.install   2014-08-16 20:21:28 UTC (rev 220088)
@@ -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 220087, 
kdeutils-ark/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:21:28 UTC (rev 220088)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdeutils-ark
+pkgver=4.14.0
+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=('fc5d388ccedddfa1e68254b4de00186e93930669')
+
+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 
220087, kdeutils-ark/trunk/kdeutils-ark.install)
===
--- testing-x86_64/kdeutils-ark.install (rev 0)
+++ testing-x86_64/kdeutils-ark.install 2014-08-16 20:21:28 UTC (rev 220088)
@@ -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 kdeutils-ark/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:21:23
  Author: svenstaro
Revision: 220087

upgpkg: kdeutils-ark 4.14.0-1

kde 4.14.0

Modified:
  kdeutils-ark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:21:21 UTC (rev 220086)
+++ PKGBUILD2014-08-16 20:21:23 UTC (rev 220087)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-ark
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Archiving Tool'
 url='http://kde.org/applications/utilities/ark/'
@@ -14,7 +14,7 @@
 optdepends=('p7zip' 'zip' 'unzip' 'unrar')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/ark-${pkgver}.tar.xz";)
-sha1sums=('432afb91b79e95b10a0d15ed13697e8c4ecf99d3')
+sha1sums=('fc5d388ccedddfa1e68254b4de00186e93930669')
 
 build() {
   cd "${srcdir}"



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:06
  Author: svenstaro
Revision: 220067

upgpkg: kdesdk-kompare 4.14.0-1

kde 4.14.0

Modified:
  kdesdk-kompare/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:20:03 UTC (rev 220066)
+++ PKGBUILD2014-08-16 20:20:06 UTC (rev 220067)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdesdk-kompare
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Diff/Patch Frontend'
 url='http://kde.org/applications/development/kompare/'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/${pkgver}/src/kompare-${pkgver}.tar.xz";)
-sha1sums=('c65f780ae315f1119faa067a5d8137adcdfe222f')
+sha1sums=('1954dea23673adf4dd3c3cf452f82a673a61b2e1')
 
 prepare() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:11
  Author: svenstaro
Revision: 220068

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

Added:
  kdesdk-kompare/repos/testing-i686/
  kdesdk-kompare/repos/testing-i686/PKGBUILD
(from rev 220067, kdesdk-kompare/trunk/PKGBUILD)
  kdesdk-kompare/repos/testing-i686/kdesdk-kompare.install
(from rev 220067, kdesdk-kompare/trunk/kdesdk-kompare.install)
  kdesdk-kompare/repos/testing-x86_64/
  kdesdk-kompare/repos/testing-x86_64/PKGBUILD
(from rev 220067, kdesdk-kompare/trunk/PKGBUILD)
  kdesdk-kompare/repos/testing-x86_64/kdesdk-kompare.install
(from rev 220067, kdesdk-kompare/trunk/kdesdk-kompare.install)

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

Copied: kdesdk-kompare/repos/testing-i686/PKGBUILD (from rev 220067, 
kdesdk-kompare/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:20:11 UTC (rev 220068)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-kompare
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Diff/Patch Frontend'
+url='http://kde.org/applications/development/kompare/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime' 'libkomparediff2')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kompare-${pkgver}.tar.xz";)
+sha1sums=('1954dea23673adf4dd3c3cf452f82a673a61b2e1')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kompare-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-kompare/repos/testing-i686/kdesdk-kompare.install (from rev 
220067, kdesdk-kompare/trunk/kdesdk-kompare.install)
===
--- testing-i686/kdesdk-kompare.install (rev 0)
+++ testing-i686/kdesdk-kompare.install 2014-08-16 20:20:11 UTC (rev 220068)
@@ -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: kdesdk-kompare/repos/testing-x86_64/PKGBUILD (from rev 220067, 
kdesdk-kompare/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:20:11 UTC (rev 220068)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-kompare
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Diff/Patch Frontend'
+url='http://kde.org/applications/development/kompare/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime' 'libkomparediff2')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kompare-${pkgver}.tar.xz";)
+sha1sums=('1954dea23673adf4dd3c3cf452f82a673a61b2e1')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kompare-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-kompare/repos/testing-x86_64/kdesdk-kompare.install (from rev 
220067, kdesdk-kompare/trunk/kdesdk-kompare.install)
===
--- testing-x86_64/kdesdk-kompare.install   (rev 0)
+++ testing-x86_64/kdesdk-kompare.install   2014-08-16 20:20:11 UTC (rev 
220068)
@@ -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 kdesdk-lokalize/repos (8 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:19
  Author: svenstaro
Revision: 220070

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

Added:
  kdesdk-lokalize/repos/testing-i686/
  kdesdk-lokalize/repos/testing-i686/PKGBUILD
(from rev 220069, kdesdk-lokalize/trunk/PKGBUILD)
  kdesdk-lokalize/repos/testing-i686/fix-python2-path.patch
(from rev 220069, kdesdk-lokalize/trunk/fix-python2-path.patch)
  kdesdk-lokalize/repos/testing-i686/kdesdk-lokalize.install
(from rev 220069, kdesdk-lokalize/trunk/kdesdk-lokalize.install)
  kdesdk-lokalize/repos/testing-x86_64/
  kdesdk-lokalize/repos/testing-x86_64/PKGBUILD
(from rev 220069, kdesdk-lokalize/trunk/PKGBUILD)
  kdesdk-lokalize/repos/testing-x86_64/fix-python2-path.patch
(from rev 220069, kdesdk-lokalize/trunk/fix-python2-path.patch)
  kdesdk-lokalize/repos/testing-x86_64/kdesdk-lokalize.install
(from rev 220069, kdesdk-lokalize/trunk/kdesdk-lokalize.install)

+
 testing-i686/PKGBUILD  |   45 +++
 testing-i686/fix-python2-path.patch|   22 +++
 testing-i686/kdesdk-lokalize.install   |   12 
 testing-x86_64/PKGBUILD|   45 +++
 testing-x86_64/fix-python2-path.patch  |   22 +++
 testing-x86_64/kdesdk-lokalize.install |   12 
 6 files changed, 158 insertions(+)

Copied: kdesdk-lokalize/repos/testing-i686/PKGBUILD (from rev 220069, 
kdesdk-lokalize/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:20:19 UTC (rev 220070)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-lokalize
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Computer-Aided Translation System'
+url='http://kde.org/applications/development/lokalize/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime' 'kdebindings-python2' 'kdesdk-strigi-analyzers')
+makedepends=('cmake' 'automoc4')
+optdepends=('translate-toolkit: enable extra scripts'
+'kdebindings-kross-python: enable python scripts')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/lokalize-${pkgver}.tar.xz";
+'fix-python2-path.patch')
+sha1sums=('83b14e225c584c8295677b4b2480efcbca102293'
+  '07db42bbcae402c292eebf002e549b04162621c5')
+
+prepare() {
+  mkdir build
+
+  cd lokalize-${pkgver}
+  patch -p2 -i "${srcdir}"/fix-python2-path.patch
+}
+
+build() {
+  cd build
+  cmake ../lokalize-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+"${pkgdir}"/usr/share/apps/lokalize/scripts/odf/xliffmerge.py
+}

Copied: kdesdk-lokalize/repos/testing-i686/fix-python2-path.patch (from rev 
220069, kdesdk-lokalize/trunk/fix-python2-path.patch)
===
--- testing-i686/fix-python2-path.patch (rev 0)
+++ testing-i686/fix-python2-path.patch 2014-08-16 20:20:19 UTC (rev 220070)
@@ -0,0 +1,22 @@
+--- kdesdk-4.5.80/lokalize/scripts/msgmerge.py~2010-11-24 
11:22:42.12002 +0100
 kdesdk-4.5.80/lokalize/scripts/msgmerge.py 2010-11-24 11:22:42.14670 
+0100
+@@ -114,7 +114,7 @@
+ print >>sys.stderr, "Execution failed:", e
+ 
+ cmd='%s/odf/xliffmerge.py -i %s -t %s -o %s' % 
(ourPath,xliffpathname,xlifftemplatepathname,xliffpathname)
+-if os.name!='nt': cmd='python '+cmd
++if os.name!='nt': cmd='python2 '+cmd
+ else: cmd=cmd.replace('/','\\')
+ os.system(cmd)
+
+--- kdesdk-4.5.80/lokalize/scripts/xliff2odf.py~   2010-11-24 
11:24:10.85336 +0100
 kdesdk-4.5.80/lokalize/scripts/xliff2odf.py2010-11-24 
11:24:10.88336 +0100
+@@ -42,7 +42,7 @@
+ xliff2odf.convertxliff(xliffinput, translatedodfpathname, odf)
+ 
+ ourpath=([p for p in sys.path if 
os.path.exists(p+'/xliff2odf.py')]+[''])[0]
+-os.system('python "'+ourpath+'/xliff2odf-standalone.py" "%s" "%s" 
&'%(translatedodfpathname, Editor.currentEntryId()))
++os.system('python2 "'+ourpath+'/xliff2odf-standalone.py" "%s" "%s" 
&'%(translatedodfpathname, Editor.currentEntryId()))
+ 
+ try: convert()
+ except: print 'error occured'

Copied: kdesdk-lokalize/repos/testing-i686/kdesdk-lokalize.install (from rev 
220069, kdesdk-lokalize/trunk/kdesdk-lokalize.install)
===
--- testing-i686/kdesdk-lokalize.install(rev 0)
+++ testing-i686/kdesdk-lokalize.install2014-08-16 20:20:19 UTC (rev 
220070)
@@ -0,0 +1,12 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &

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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:30
  Author: svenstaro
Revision: 220073

upgpkg: kdesdk-poxml 4.14.0-1

kde 4.14.0

Modified:
  kdesdk-poxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:20:27 UTC (rev 220072)
+++ PKGBUILD2014-08-16 20:20:30 UTC (rev 220073)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdesdk-poxml
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Translates DocBook XML files using gettext po files'
 url='https://projects.kde.org/projects/kde/kdesdk/poxml'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4' 'antlr2')
 optdepends=('antlr2: required for po2xml and swappo tool')
 source=("http://download.kde.org/stable/${pkgver}/src/poxml-${pkgver}.tar.xz";)
-sha1sums=('6c8248a9b273cd1dbe51625bd2594abe7d882e15')
+sha1sums=('9e214925ca3dadbcc9333682b7c7baed38e3d530')
 
 build() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:19:49
  Author: svenstaro
Revision: 220063

upgpkg: kdesdk-kcachegrind 4.14.0-1

kde 4.14.0

Modified:
  kdesdk-kcachegrind/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:19:47 UTC (rev 220062)
+++ PKGBUILD2014-08-16 20:19:49 UTC (rev 220063)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdesdk-kcachegrind
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Visualization of Performance Profiling Data'
 url='http://kde.org/applications/development/kcachegrind/'
@@ -14,7 +14,7 @@
 optdepends=('php: PHP support')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/${pkgver}/src/kcachegrind-${pkgver}.tar.xz";)
-sha1sums=('dbdaf16ff88a35388f7535f7d3fbef45d3700385')
+sha1sums=('403f10048445b9348a985504ac5e80d70d563244')
 
 prepare() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:35
  Author: svenstaro
Revision: 220074

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

Added:
  kdesdk-poxml/repos/testing-i686/
  kdesdk-poxml/repos/testing-i686/PKGBUILD
(from rev 220073, kdesdk-poxml/trunk/PKGBUILD)
  kdesdk-poxml/repos/testing-x86_64/
  kdesdk-poxml/repos/testing-x86_64/PKGBUILD
(from rev 220073, kdesdk-poxml/trunk/PKGBUILD)

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

Copied: kdesdk-poxml/repos/testing-i686/PKGBUILD (from rev 220073, 
kdesdk-poxml/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:20:35 UTC (rev 220074)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-poxml
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Translates DocBook XML files using gettext po files'
+url='https://projects.kde.org/projects/kde/kdesdk/poxml'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4' 'antlr2')
+optdepends=('antlr2: required for po2xml and swappo tool')
+source=("http://download.kde.org/stable/${pkgver}/src/poxml-${pkgver}.tar.xz";)
+sha1sums=('9e214925ca3dadbcc9333682b7c7baed38e3d530')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../poxml-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-poxml/repos/testing-x86_64/PKGBUILD (from rev 220073, 
kdesdk-poxml/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:20:35 UTC (rev 220074)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-poxml
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Translates DocBook XML files using gettext po files'
+url='https://projects.kde.org/projects/kde/kdesdk/poxml'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4' 'antlr2')
+optdepends=('antlr2: required for po2xml and swappo tool')
+source=("http://download.kde.org/stable/${pkgver}/src/poxml-${pkgver}.tar.xz";)
+sha1sums=('9e214925ca3dadbcc9333682b7c7baed38e3d530')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../poxml-${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 kdesdk-strigi-analyzers/repos (4 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:42
  Author: svenstaro
Revision: 220076

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

Added:
  kdesdk-strigi-analyzers/repos/testing-i686/
  kdesdk-strigi-analyzers/repos/testing-i686/PKGBUILD
(from rev 220075, kdesdk-strigi-analyzers/trunk/PKGBUILD)
  kdesdk-strigi-analyzers/repos/testing-x86_64/
  kdesdk-strigi-analyzers/repos/testing-x86_64/PKGBUILD
(from rev 220075, kdesdk-strigi-analyzers/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   30 ++
 testing-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: kdesdk-strigi-analyzers/repos/testing-i686/PKGBUILD (from rev 220075, 
kdesdk-strigi-analyzers/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:20:42 UTC (rev 220076)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-strigi-analyzers
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Analyzer plugins for strigi'
+url='https://projects.kde.org/projects/kde/kdesdk/kdesdk-strigi-analyzers'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/kdesdk-strigi-analyzers-${pkgver}.tar.xz";)
+sha1sums=('e659ce2810808a0d85d78751f12d6b37a4e75cb6')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kdesdk-strigi-analyzers-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-strigi-analyzers/repos/testing-x86_64/PKGBUILD (from rev 220075, 
kdesdk-strigi-analyzers/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:20:42 UTC (rev 220076)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-strigi-analyzers
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Analyzer plugins for strigi'
+url='https://projects.kde.org/projects/kde/kdesdk/kdesdk-strigi-analyzers'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/kdesdk-strigi-analyzers-${pkgver}.tar.xz";)
+sha1sums=('e659ce2810808a0d85d78751f12d6b37a4e75cb6')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kdesdk-strigi-analyzers-${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 kdesdk-kioslaves/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:19:57
  Author: svenstaro
Revision: 220065

upgpkg: kdesdk-kioslaves 4.14.0-1

kde 4.14.0

Modified:
  kdesdk-kioslaves/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:19:54 UTC (rev 220064)
+++ PKGBUILD2014-08-16 20:19:57 UTC (rev 220065)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdesdk-kioslaves
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='KIO-Slaves'
 url='https://projects.kde.org/projects/kde/kdesdk/kdesdk-kioslaves'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/${pkgver}/src/kdesdk-kioslaves-${pkgver}.tar.xz";)
-sha1sums=('d65ffb9462840cc4eba26b3638dc38d0562ebea5')
+sha1sums=('932c9e1901ffa2e6ad9c3bf377564e4e5a33ffea')
 
 build() {
   mkdir build



[arch-commits] Commit in kdesdk-strigi-analyzers/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:37
  Author: svenstaro
Revision: 220075

upgpkg: kdesdk-strigi-analyzers 4.14.0-1

kde 4.14.0

Modified:
  kdesdk-strigi-analyzers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:20:35 UTC (rev 220074)
+++ PKGBUILD2014-08-16 20:20:37 UTC (rev 220075)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdesdk-strigi-analyzers
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Analyzer plugins for strigi'
 url='https://projects.kde.org/projects/kde/kdesdk/kdesdk-strigi-analyzers'
@@ -12,7 +12,7 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 
source=("http://download.kde.org/stable/${pkgver}/src/kdesdk-strigi-analyzers-${pkgver}.tar.xz";)
-sha1sums=('4adb296f240f67a566342d9760e60c5bfcbf0d1a')
+sha1sums=('e659ce2810808a0d85d78751f12d6b37a4e75cb6')
 
 build() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:03
  Author: svenstaro
Revision: 220066

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

Added:
  kdesdk-kioslaves/repos/testing-i686/
  kdesdk-kioslaves/repos/testing-i686/PKGBUILD
(from rev 220065, kdesdk-kioslaves/trunk/PKGBUILD)
  kdesdk-kioslaves/repos/testing-i686/kdesdk-kioslaves.install
(from rev 220065, kdesdk-kioslaves/trunk/kdesdk-kioslaves.install)
  kdesdk-kioslaves/repos/testing-x86_64/
  kdesdk-kioslaves/repos/testing-x86_64/PKGBUILD
(from rev 220065, kdesdk-kioslaves/trunk/PKGBUILD)
  kdesdk-kioslaves/repos/testing-x86_64/kdesdk-kioslaves.install
(from rev 220065, kdesdk-kioslaves/trunk/kdesdk-kioslaves.install)

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

Copied: kdesdk-kioslaves/repos/testing-i686/PKGBUILD (from rev 220065, 
kdesdk-kioslaves/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:20:03 UTC (rev 220066)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-kioslaves
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='KIO-Slaves'
+url='https://projects.kde.org/projects/kde/kdesdk/kdesdk-kioslaves'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime' 'subversion')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kdesdk-kioslaves-${pkgver}.tar.xz";)
+sha1sums=('932c9e1901ffa2e6ad9c3bf377564e4e5a33ffea')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kdesdk-kioslaves-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-kioslaves/repos/testing-i686/kdesdk-kioslaves.install (from rev 
220065, kdesdk-kioslaves/trunk/kdesdk-kioslaves.install)
===
--- testing-i686/kdesdk-kioslaves.install   (rev 0)
+++ testing-i686/kdesdk-kioslaves.install   2014-08-16 20:20:03 UTC (rev 
220066)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdesdk-kioslaves/repos/testing-x86_64/PKGBUILD (from rev 220065, 
kdesdk-kioslaves/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:20:03 UTC (rev 220066)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-kioslaves
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='KIO-Slaves'
+url='https://projects.kde.org/projects/kde/kdesdk/kdesdk-kioslaves'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime' 'subversion')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kdesdk-kioslaves-${pkgver}.tar.xz";)
+sha1sums=('932c9e1901ffa2e6ad9c3bf377564e4e5a33ffea')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kdesdk-kioslaves-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-kioslaves/repos/testing-x86_64/kdesdk-kioslaves.install (from 
rev 220065, kdesdk-kioslaves/trunk/kdesdk-kioslaves.install)
===
--- testing-x86_64/kdesdk-kioslaves.install (rev 0)
+++ testing-x86_64/kdesdk-kioslaves.install 2014-08-16 20:20:03 UTC (rev 
220066)
@@ -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-dragonplayer/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:16:22
  Author: svenstaro
Revision: 220022

upgpkg: kdemultimedia-dragonplayer 4.14.0-1

kde 4.14.0

Modified:
  kdemultimedia-dragonplayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:16:19 UTC (rev 220021)
+++ PKGBUILD2014-08-16 20:16:22 UTC (rev 220022)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdemultimedia-dragonplayer
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc="A multimedia player where the focus is on simplicity, instead of
 features"
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'automoc4')
 install="${pkgname}.install"
 source=("http://download.kde.org/stable/${pkgver}/src/dragon-${pkgver}.tar.xz";)
-sha1sums=('b13af30b951b8eb3b4da5224dbc463239ef39b98')
+sha1sums=('114fe11158b697ce91f06c21eaed176c964172f9')
 
 build() {
   cd "${srcdir}"



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:19:14
  Author: svenstaro
Revision: 220055

upgpkg: kdesdk-dev-utils 4.14.0-1

kde 4.14.0

Modified:
  kdesdk-dev-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:19:12 UTC (rev 220054)
+++ PKGBUILD2014-08-16 20:19:14 UTC (rev 220055)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdesdk-dev-utils
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Small utilities for developers using KDE/Qt libs/frameworks'
 url='https://projects.kde.org/projects/kde/kdesdk/kde-dev-utils'
@@ -17,7 +17,7 @@
   'kdesdk-kstartperf' 'kdesdk-kuiviewer')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/${pkgver}/src/kde-dev-utils-${pkgver}.tar.xz";)
-sha1sums=('f52fae23d76d80cf0a28162066f2f107cd1db49b')
+sha1sums=('50c4ed73cd34eb1c3081dd79ffad0b90def132a2')
 
 build() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:18:20
  Author: svenstaro
Revision: 220050

upgpkg: kdepim 4.14.0-1

kde 4.14.0

Modified:
  kdepim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:18:17 UTC (rev 220049)
+++ PKGBUILD2014-08-16 20:18:20 UTC (rev 220050)
@@ -20,7 +20,7 @@
  'kdepim-ktimetracker'
  'kdepim-ktnef'
  'kdepim-libkdepim')
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://pim.kde.org'
@@ -29,7 +29,7 @@
 makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'libxss' 'pilot-link'
  'baloo' 'link-grammar')
 
source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('5faa0321e78765ceff6dea5daab3ee5c841764e7')
+sha1sums=('e5f24a8892954004f4b4eada5bcd46b6c71e1bbd')
 
 build() {
mkdir build



[arch-commits] Commit in kdesdk-dolphin-plugins/repos (6 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:19:40
  Author: svenstaro
Revision: 220060

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

Added:
  kdesdk-dolphin-plugins/repos/testing-i686/
  kdesdk-dolphin-plugins/repos/testing-i686/PKGBUILD
(from rev 220059, kdesdk-dolphin-plugins/trunk/PKGBUILD)
  kdesdk-dolphin-plugins/repos/testing-i686/kdesdk-dolphin-plugins.install
(from rev 220059, 
kdesdk-dolphin-plugins/trunk/kdesdk-dolphin-plugins.install)
  kdesdk-dolphin-plugins/repos/testing-x86_64/
  kdesdk-dolphin-plugins/repos/testing-x86_64/PKGBUILD
(from rev 220059, kdesdk-dolphin-plugins/trunk/PKGBUILD)
  kdesdk-dolphin-plugins/repos/testing-x86_64/kdesdk-dolphin-plugins.install
(from rev 220059, 
kdesdk-dolphin-plugins/trunk/kdesdk-dolphin-plugins.install)

---+
 testing-i686/PKGBUILD |   35 
 testing-i686/kdesdk-dolphin-plugins.install   |   11 +++
 testing-x86_64/PKGBUILD   |   35 
 testing-x86_64/kdesdk-dolphin-plugins.install |   11 +++
 4 files changed, 92 insertions(+)

Copied: kdesdk-dolphin-plugins/repos/testing-i686/PKGBUILD (from rev 220059, 
kdesdk-dolphin-plugins/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:19:40 UTC (rev 220060)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-dolphin-plugins
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Extra Dolphin plugins'
+url='https://projects.kde.org/projects/kde/kdesdk/dolphin-plugins'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime' 'kdebase-lib')
+makedepends=('cmake' 'automoc4')
+optdepends=('bzr: bazaar support'
+'git: git support'
+'mercurial: hg support'
+'subversion: svn support')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/dolphin-plugins-${pkgver}.tar.xz";)
+sha1sums=('4f8cc97f10e25550abab8eea8b5c7cb96d543b5b')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../dolphin-plugins-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: 
kdesdk-dolphin-plugins/repos/testing-i686/kdesdk-dolphin-plugins.install (from 
rev 220059, kdesdk-dolphin-plugins/trunk/kdesdk-dolphin-plugins.install)
===
--- testing-i686/kdesdk-dolphin-plugins.install (rev 0)
+++ testing-i686/kdesdk-dolphin-plugins.install 2014-08-16 20:19:40 UTC (rev 
220060)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdesdk-dolphin-plugins/repos/testing-x86_64/PKGBUILD (from rev 220059, 
kdesdk-dolphin-plugins/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:19:40 UTC (rev 220060)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-dolphin-plugins
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Extra Dolphin plugins'
+url='https://projects.kde.org/projects/kde/kdesdk/dolphin-plugins'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime' 'kdebase-lib')
+makedepends=('cmake' 'automoc4')
+optdepends=('bzr: bazaar support'
+'git: git support'
+'mercurial: hg support'
+'subversion: svn support')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/dolphin-plugins-${pkgver}.tar.xz";)
+sha1sums=('4f8cc97f10e25550abab8eea8b5c7cb96d543b5b')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../dolphin-plugins-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: 
kdesdk-dolphin-plugins/repos/testing-x86_64/kdesdk-dolphin-plugins.install 
(from rev 220059, kdesdk-dolphin-plugins/trunk/kdesdk-dolphin-plugins.install)
===
--- testing-x86_64/kdesdk-dolphin-plugins.install   
(rev 0)
+++ testing-x86_64/kdesdk-dolphin-plugins.install   2014-08-16 20:19:40 UTC 
(rev 220060)
@@ -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 kdesdk-okteta/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:21
  Author: svenstaro
Revision: 220071

upgpkg: kdesdk-okteta 4.14.0-1

kde 4.14.0

Modified:
  kdesdk-okteta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:20:19 UTC (rev 220070)
+++ PKGBUILD2014-08-16 20:20:21 UTC (rev 220071)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdesdk-okteta
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Hex Editor'
 url='http://kde.org/applications/utilities/okteta/'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/okteta-${pkgver}.tar.xz";)
-sha1sums=('08f04a6c9c6adc29d6d0e158e2e54e54f430106d')
+sha1sums=('54a31f0adf7f0db4f21751b813255fe0d246a062')
 
 build() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:13
  Author: svenstaro
Revision: 220069

upgpkg: kdesdk-lokalize 4.14.0-1

kde 4.14.0

Modified:
  kdesdk-lokalize/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:20:11 UTC (rev 220068)
+++ PKGBUILD2014-08-16 20:20:13 UTC (rev 220069)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdesdk-lokalize
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Computer-Aided Translation System'
 url='http://kde.org/applications/development/lokalize/'
@@ -16,7 +16,7 @@
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/${pkgver}/src/lokalize-${pkgver}.tar.xz";
 'fix-python2-path.patch')
-sha1sums=('9563f249b5cfe19f10a7e5379ac1552c5b930711'
+sha1sums=('83b14e225c584c8295677b4b2480efcbca102293'
   '07db42bbcae402c292eebf002e549b04162621c5')
 
 prepare() {



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:19:47
  Author: svenstaro
Revision: 220062

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

Added:
  kdesdk-kapptemplate/repos/testing-i686/
  kdesdk-kapptemplate/repos/testing-i686/PKGBUILD
(from rev 220061, kdesdk-kapptemplate/trunk/PKGBUILD)
  kdesdk-kapptemplate/repos/testing-i686/kdesdk-kapptemplate.install
(from rev 220061, kdesdk-kapptemplate/trunk/kdesdk-kapptemplate.install)
  kdesdk-kapptemplate/repos/testing-x86_64/
  kdesdk-kapptemplate/repos/testing-x86_64/PKGBUILD
(from rev 220061, kdesdk-kapptemplate/trunk/PKGBUILD)
  kdesdk-kapptemplate/repos/testing-x86_64/kdesdk-kapptemplate.install
(from rev 220061, kdesdk-kapptemplate/trunk/kdesdk-kapptemplate.install)

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

Copied: kdesdk-kapptemplate/repos/testing-i686/PKGBUILD (from rev 220061, 
kdesdk-kapptemplate/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:19:47 UTC (rev 220062)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-kapptemplate
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='KDE Template Generator'
+url='http://kde.org/applications/development/kapptemplate/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kapptemplate-${pkgver}.tar.xz";)
+sha1sums=('bcd226c9a8293cdbf88e371c70ca8538fc5bd9e0')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kapptemplate-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-kapptemplate/repos/testing-i686/kdesdk-kapptemplate.install 
(from rev 220061, kdesdk-kapptemplate/trunk/kdesdk-kapptemplate.install)
===
--- testing-i686/kdesdk-kapptemplate.install(rev 0)
+++ testing-i686/kdesdk-kapptemplate.install2014-08-16 20:19:47 UTC (rev 
220062)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdesdk-kapptemplate/repos/testing-x86_64/PKGBUILD (from rev 220061, 
kdesdk-kapptemplate/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:19:47 UTC (rev 220062)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-kapptemplate
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='KDE Template Generator'
+url='http://kde.org/applications/development/kapptemplate/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kapptemplate-${pkgver}.tar.xz";)
+sha1sums=('bcd226c9a8293cdbf88e371c70ca8538fc5bd9e0')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kapptemplate-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-kapptemplate/repos/testing-x86_64/kdesdk-kapptemplate.install 
(from rev 220061, kdesdk-kapptemplate/trunk/kdesdk-kapptemplate.install)
===
--- testing-x86_64/kdesdk-kapptemplate.install  (rev 0)
+++ testing-x86_64/kdesdk-kapptemplate.install  2014-08-16 20:19:47 UTC (rev 
220062)
@@ -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 kdesdk-kapptemplate/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:19:42
  Author: svenstaro
Revision: 220061

upgpkg: kdesdk-kapptemplate 4.14.0-1

kde 4.14.0

Modified:
  kdesdk-kapptemplate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:19:40 UTC (rev 220060)
+++ PKGBUILD2014-08-16 20:19:42 UTC (rev 220061)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdesdk-kapptemplate
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='KDE Template Generator'
 url='http://kde.org/applications/development/kapptemplate/'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/${pkgver}/src/kapptemplate-${pkgver}.tar.xz";)
-sha1sums=('d57d6623df02c22be34e502636f33e6dafad6eae')
+sha1sums=('bcd226c9a8293cdbf88e371c70ca8538fc5bd9e0')
 
 build() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:20:27
  Author: svenstaro
Revision: 220072

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

Added:
  kdesdk-okteta/repos/testing-i686/
  kdesdk-okteta/repos/testing-i686/PKGBUILD
(from rev 220071, kdesdk-okteta/trunk/PKGBUILD)
  kdesdk-okteta/repos/testing-i686/kdesdk-okteta.install
(from rev 220071, kdesdk-okteta/trunk/kdesdk-okteta.install)
  kdesdk-okteta/repos/testing-x86_64/
  kdesdk-okteta/repos/testing-x86_64/PKGBUILD
(from rev 220071, kdesdk-okteta/trunk/PKGBUILD)
  kdesdk-okteta/repos/testing-x86_64/kdesdk-okteta.install
(from rev 220071, kdesdk-okteta/trunk/kdesdk-okteta.install)

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

Copied: kdesdk-okteta/repos/testing-i686/PKGBUILD (from rev 220071, 
kdesdk-okteta/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:20:27 UTC (rev 220072)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-okteta
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Hex Editor'
+url='http://kde.org/applications/utilities/okteta/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/okteta-${pkgver}.tar.xz";)
+sha1sums=('54a31f0adf7f0db4f21751b813255fe0d246a062')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../okteta-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-okteta/repos/testing-i686/kdesdk-okteta.install (from rev 
220071, kdesdk-okteta/trunk/kdesdk-okteta.install)
===
--- testing-i686/kdesdk-okteta.install  (rev 0)
+++ testing-i686/kdesdk-okteta.install  2014-08-16 20:20:27 UTC (rev 220072)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdesdk-okteta/repos/testing-x86_64/PKGBUILD (from rev 220071, 
kdesdk-okteta/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:20:27 UTC (rev 220072)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-okteta
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Hex Editor'
+url='http://kde.org/applications/utilities/okteta/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/okteta-${pkgver}.tar.xz";)
+sha1sums=('54a31f0adf7f0db4f21751b813255fe0d246a062')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../okteta-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-okteta/repos/testing-x86_64/kdesdk-okteta.install (from rev 
220071, kdesdk-okteta/trunk/kdesdk-okteta.install)
===
--- testing-x86_64/kdesdk-okteta.install(rev 0)
+++ testing-x86_64/kdesdk-okteta.install2014-08-16 20:20:27 UTC (rev 
220072)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:19:54
  Author: svenstaro
Revision: 220064

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

Added:
  kdesdk-kcachegrind/repos/testing-i686/
  kdesdk-kcachegrind/repos/testing-i686/PKGBUILD
(from rev 220063, kdesdk-kcachegrind/trunk/PKGBUILD)
  kdesdk-kcachegrind/repos/testing-i686/kdesdk-kcachegrind.install
(from rev 220063, kdesdk-kcachegrind/trunk/kdesdk-kcachegrind.install)
  kdesdk-kcachegrind/repos/testing-x86_64/
  kdesdk-kcachegrind/repos/testing-x86_64/PKGBUILD
(from rev 220063, kdesdk-kcachegrind/trunk/PKGBUILD)
  kdesdk-kcachegrind/repos/testing-x86_64/kdesdk-kcachegrind.install
(from rev 220063, kdesdk-kcachegrind/trunk/kdesdk-kcachegrind.install)

---+
 testing-i686/PKGBUILD |   39 
 testing-i686/kdesdk-kcachegrind.install   |   12 
 testing-x86_64/PKGBUILD   |   39 
 testing-x86_64/kdesdk-kcachegrind.install |   12 
 4 files changed, 102 insertions(+)

Copied: kdesdk-kcachegrind/repos/testing-i686/PKGBUILD (from rev 220063, 
kdesdk-kcachegrind/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:19:54 UTC (rev 220064)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-kcachegrind
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Visualization of Performance Profiling Data'
+url='http://kde.org/applications/development/kcachegrind/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime' 'python2')
+makedepends=('cmake' 'automoc4')
+optdepends=('php: PHP support')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kcachegrind-${pkgver}.tar.xz";)
+sha1sums=('403f10048445b9348a985504ac5e80d70d563244')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kcachegrind-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+"${pkgdir}"/usr/bin/hotshot2calltree
+}

Copied: kdesdk-kcachegrind/repos/testing-i686/kdesdk-kcachegrind.install (from 
rev 220063, kdesdk-kcachegrind/trunk/kdesdk-kcachegrind.install)
===
--- testing-i686/kdesdk-kcachegrind.install (rev 0)
+++ testing-i686/kdesdk-kcachegrind.install 2014-08-16 20:19:54 UTC (rev 
220064)
@@ -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: kdesdk-kcachegrind/repos/testing-x86_64/PKGBUILD (from rev 220063, 
kdesdk-kcachegrind/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:19:54 UTC (rev 220064)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-kcachegrind
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Visualization of Performance Profiling Data'
+url='http://kde.org/applications/development/kcachegrind/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime' 'python2')
+makedepends=('cmake' 'automoc4')
+optdepends=('php: PHP support')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kcachegrind-${pkgver}.tar.xz";)
+sha1sums=('403f10048445b9348a985504ac5e80d70d563244')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kcachegrind-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+"${pkgdir}"/usr/bin/hotshot2calltree
+}

Copied: kdesdk-kcachegrind/repos/testing-x86_64/kdesdk-kcachegrind.install 
(from rev 220063, kdesdk-kcachegrind/trunk/kdesdk-kcachegrind.install)
===
--- testing-x86_64/kdesdk-kcachegrind.install   (rev 0)
+++ testing-x86_64/kdesdk-kcachegrind.install   2014-08-16 20:19:54 UTC (rev 
220064)
@@ -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 kdesdk-dolphin-plugins/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:19:35
  Author: svenstaro
Revision: 220059

upgpkg: kdesdk-dolphin-plugins 4.14.0-1

kde 4.14.0

Modified:
  kdesdk-dolphin-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:19:32 UTC (rev 220058)
+++ PKGBUILD2014-08-16 20:19:35 UTC (rev 220059)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdesdk-dolphin-plugins
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Extra Dolphin plugins'
 url='https://projects.kde.org/projects/kde/kdesdk/dolphin-plugins'
@@ -17,7 +17,7 @@
 'subversion: svn support')
 install=${pkgname}.install
 
source=("http://download.kde.org/stable/${pkgver}/src/dolphin-plugins-${pkgver}.tar.xz";)
-sha1sums=('84507e85ca32046436fcedbfbf615e9a1088dc0c')
+sha1sums=('4f8cc97f10e25550abab8eea8b5c7cb96d543b5b')
 
 build() {
   mkdir build



[arch-commits] Commit in kdesdk-dev-scripts/repos (4 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:19:32
  Author: svenstaro
Revision: 220058

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

Added:
  kdesdk-dev-scripts/repos/testing-i686/
  kdesdk-dev-scripts/repos/testing-i686/PKGBUILD
(from rev 220057, kdesdk-dev-scripts/trunk/PKGBUILD)
  kdesdk-dev-scripts/repos/testing-x86_64/
  kdesdk-dev-scripts/repos/testing-x86_64/PKGBUILD
(from rev 220057, kdesdk-dev-scripts/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: kdesdk-dev-scripts/repos/testing-i686/PKGBUILD (from rev 220057, 
kdesdk-dev-scripts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:19:32 UTC (rev 220058)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-dev-scripts
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Scripts and setting files useful during development of KDE software'
+url='https://projects.kde.org/projects/kde/kdesdk/kde-dev-scripts'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime' 'python2')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/kde-dev-scripts-${pkgver}.tar.xz";)
+sha1sums=('269ce68278e31732bead5f994cd665ef25f44695')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kde-dev-scripts-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+"${pkgdir}"/usr/bin/{zonetab2pot,kde-systemsettings-tree}.py
+  sed -i 's|#! /usr/bin/env python|#!/usr/bin/env python2|' \
+"${pkgdir}"/usr/bin/{kdelnk2desktop.py,kde_generate_export_header}
+}

Copied: kdesdk-dev-scripts/repos/testing-x86_64/PKGBUILD (from rev 220057, 
kdesdk-dev-scripts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:19:32 UTC (rev 220058)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-dev-scripts
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Scripts and setting files useful during development of KDE software'
+url='https://projects.kde.org/projects/kde/kdesdk/kde-dev-scripts'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime' 'python2')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/kde-dev-scripts-${pkgver}.tar.xz";)
+sha1sums=('269ce68278e31732bead5f994cd665ef25f44695')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kde-dev-scripts-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+"${pkgdir}"/usr/bin/{zonetab2pot,kde-systemsettings-tree}.py
+  sed -i 's|#! /usr/bin/env python|#!/usr/bin/env python2|' \
+"${pkgdir}"/usr/bin/{kdelnk2desktop.py,kde_generate_export_header}
+}



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:16:55
  Author: svenstaro
Revision: 220030

upgpkg: kdemultimedia-kscd 4.14.0-1

kde 4.14.0

Modified:
  kdemultimedia-kscd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:16:52 UTC (rev 220029)
+++ PKGBUILD2014-08-16 20:16:55 UTC (rev 220030)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdemultimedia-kscd
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc="KDE CD player"
 url='http://kde.org/applications/multimedia/kscd/'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install="${pkgname}.install"
 source=("http://download.kde.org/stable/${pkgver}/src/kscd-${pkgver}.tar.xz";)
-sha1sums=('c00dc79bd68c62c6a1a3146879c2e20ebd154b01')
+sha1sums=('f163aaf69bf464fdb7baface9ea61468c30d837b')
 
 build() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:16:19
  Author: svenstaro
Revision: 220021

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 220020, kdemultimedia-audiocd-kio/trunk/PKGBUILD)
  kdemultimedia-audiocd-kio/repos/testing-x86_64/
  kdemultimedia-audiocd-kio/repos/testing-x86_64/PKGBUILD
(from rev 220020, 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 220020, 
kdemultimedia-audiocd-kio/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:16:19 UTC (rev 220021)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-audiocd-kio
+pkgver=4.14.0
+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=('884a3ae83c5775c79f95ab5ca36876e0f83310e0')
+
+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 
220020, kdemultimedia-audiocd-kio/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:16:19 UTC (rev 220021)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-audiocd-kio
+pkgver=4.14.0
+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=('884a3ae83c5775c79f95ab5ca36876e0f83310e0')
+
+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 kdenetwork-kget/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:17:20
  Author: svenstaro
Revision: 220036

upgpkg: kdenetwork-kget 4.14.0-1

kde 4.14.0

Modified:
  kdenetwork-kget/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:17:17 UTC (rev 220035)
+++ PKGBUILD2014-08-16 20:17:20 UTC (rev 220036)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdenetwork-kget
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Download Manager'
 url='http://kde.org/applications/internet/kget/'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4' 'boost')
 install=${pkgname}.install
 source=("http://download.kde.org/stable/${pkgver}/src/kget-${pkgver}.tar.xz";)
-sha1sums=('f9694b34df63671578c2c3b96e969c2cd60da864')
+sha1sums=('cce8b37a786f0da6af84d64ea9ee923fa00c5e13')
 
 prepare() {
   mkdir build



[arch-commits] Commit in kdesdk-dev-scripts/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:19:26
  Author: svenstaro
Revision: 220057

upgpkg: kdesdk-dev-scripts 4.14.0-1

kde 4.14.0

Modified:
  kdesdk-dev-scripts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:19:22 UTC (rev 220056)
+++ PKGBUILD2014-08-16 20:19:26 UTC (rev 220057)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdesdk-dev-scripts
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Scripts and setting files useful during development of KDE software'
 url='https://projects.kde.org/projects/kde/kdesdk/kde-dev-scripts'
@@ -12,7 +12,7 @@
 depends=('kdebase-runtime' 'python2')
 makedepends=('cmake' 'automoc4')
 
source=("http://download.kde.org/stable/${pkgver}/src/kde-dev-scripts-${pkgver}.tar.xz";)
-sha1sums=('9fcc6dfbaccad2fd5d8a72bf03677d8acd3f8909')
+sha1sums=('269ce68278e31732bead5f994cd665ef25f44695')
 
 build() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:19:12
  Author: svenstaro
Revision: 220054

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

Added:
  kdesdk-cervisia/repos/testing-i686/
  kdesdk-cervisia/repos/testing-i686/PKGBUILD
(from rev 220053, kdesdk-cervisia/trunk/PKGBUILD)
  kdesdk-cervisia/repos/testing-i686/kdesdk-cervisia.install
(from rev 220053, kdesdk-cervisia/trunk/kdesdk-cervisia.install)
  kdesdk-cervisia/repos/testing-x86_64/
  kdesdk-cervisia/repos/testing-x86_64/PKGBUILD
(from rev 220053, kdesdk-cervisia/trunk/PKGBUILD)
  kdesdk-cervisia/repos/testing-x86_64/kdesdk-cervisia.install
(from rev 220053, kdesdk-cervisia/trunk/kdesdk-cervisia.install)

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

Copied: kdesdk-cervisia/repos/testing-i686/PKGBUILD (from rev 220053, 
kdesdk-cervisia/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:19:12 UTC (rev 220054)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-cervisia
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='CVS Frontend'
+url='http://kde.org/applications/development/cervisia/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/cervisia-${pkgver}.tar.xz";)
+sha1sums=('2c9f159f14df13bbc506dbc329ed0827ddba2498')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../cervisia-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-cervisia/repos/testing-i686/kdesdk-cervisia.install (from rev 
220053, kdesdk-cervisia/trunk/kdesdk-cervisia.install)
===
--- testing-i686/kdesdk-cervisia.install(rev 0)
+++ testing-i686/kdesdk-cervisia.install2014-08-16 20:19:12 UTC (rev 
220054)
@@ -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: kdesdk-cervisia/repos/testing-x86_64/PKGBUILD (from rev 220053, 
kdesdk-cervisia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:19:12 UTC (rev 220054)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdesdk-cervisia
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='CVS Frontend'
+url='http://kde.org/applications/development/cervisia/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/cervisia-${pkgver}.tar.xz";)
+sha1sums=('2c9f159f14df13bbc506dbc329ed0827ddba2498')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../cervisia-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-cervisia/repos/testing-x86_64/kdesdk-cervisia.install (from rev 
220053, kdesdk-cervisia/trunk/kdesdk-cervisia.install)
===
--- testing-x86_64/kdesdk-cervisia.install  (rev 0)
+++ testing-x86_64/kdesdk-cervisia.install  2014-08-16 20:19:12 UTC (rev 
220054)
@@ -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 kdenetwork-zeroconf-ioslave/trunk (PKGBUILD)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:18:10
  Author: svenstaro
Revision: 220048

upgpkg: kdenetwork-zeroconf-ioslave 4.14.0-1

kde 4.14.0

Modified:
  kdenetwork-zeroconf-ioslave/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-16 20:18:07 UTC (rev 220047)
+++ PKGBUILD2014-08-16 20:18:10 UTC (rev 220048)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdenetwork-zeroconf-ioslave
-pkgver=4.13.3
+pkgver=4.14.0
 pkgrel=1
 pkgdesc='Network Monitor for DNS-SD services (Zeroconf)'
 url='https://projects.kde.org/projects/kde/kdenetwork/zeroconf-ioslave'
@@ -14,7 +14,7 @@
 conflicts=('kdenetwork-kdnssd')
 replaces=('kdenetwork-kdnssd')
 
source=("http://download.kde.org/stable/${pkgver}/src/zeroconf-ioslave-${pkgver}.tar.xz";)
-sha1sums=('bdae0e7895164a9a4aef1bc61c9ecd32c3bf2c2a')
+sha1sums=('3eeb1cbe6ec17d123c727c7f26d241ad50b53743')
 
 prepare() {
   mkdir build



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

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:16:26
  Author: svenstaro
Revision: 220023

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

Added:
  kdemultimedia-dragonplayer/repos/testing-i686/
  kdemultimedia-dragonplayer/repos/testing-i686/PKGBUILD
(from rev 220022, kdemultimedia-dragonplayer/trunk/PKGBUILD)
  
kdemultimedia-dragonplayer/repos/testing-i686/kdemultimedia-dragonplayer.install
(from rev 220022, 
kdemultimedia-dragonplayer/trunk/kdemultimedia-dragonplayer.install)
  kdemultimedia-dragonplayer/repos/testing-x86_64/
  kdemultimedia-dragonplayer/repos/testing-x86_64/PKGBUILD
(from rev 220022, kdemultimedia-dragonplayer/trunk/PKGBUILD)
  
kdemultimedia-dragonplayer/repos/testing-x86_64/kdemultimedia-dragonplayer.install
(from rev 220022, 
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 
220022, kdemultimedia-dragonplayer/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:16:26 UTC (rev 220023)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-dragonplayer
+pkgver=4.14.0
+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=('114fe11158b697ce91f06c21eaed176c964172f9')
+
+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 220022, 
kdemultimedia-dragonplayer/trunk/kdemultimedia-dragonplayer.install)
===
--- testing-i686/kdemultimedia-dragonplayer.install 
(rev 0)
+++ testing-i686/kdemultimedia-dragonplayer.install 2014-08-16 20:16:26 UTC 
(rev 220023)
@@ -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 
220022, kdemultimedia-dragonplayer/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:16:26 UTC (rev 220023)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdemultimedia-dragonplayer
+pkgver=4.14.0
+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=('114fe11158b697ce91f06c21eaed176c964172f9')
+
+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 220022, 
kdemultimedia-dragonplayer/trunk/kdemultimedia-dragonplayer.install)
===
--- testing-x86_64/kdemultimedia-dragonplayer.install   
(rev 0)
+++ testing-x86_64/kdemultimedia-dragonplayer.install   2014-08-16 20:16:26 UTC 
(rev 220023)
@@ -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 kdenetwork-kppp/repos (6 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:17:41
  Author: svenstaro
Revision: 220041

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

Added:
  kdenetwork-kppp/repos/testing-i686/
  kdenetwork-kppp/repos/testing-i686/PKGBUILD
(from rev 220040, kdenetwork-kppp/trunk/PKGBUILD)
  kdenetwork-kppp/repos/testing-i686/kdenetwork-kppp.install
(from rev 220040, kdenetwork-kppp/trunk/kdenetwork-kppp.install)
  kdenetwork-kppp/repos/testing-x86_64/
  kdenetwork-kppp/repos/testing-x86_64/PKGBUILD
(from rev 220040, kdenetwork-kppp/trunk/PKGBUILD)
  kdenetwork-kppp/repos/testing-x86_64/kdenetwork-kppp.install
(from rev 220040, kdenetwork-kppp/trunk/kdenetwork-kppp.install)

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

Copied: kdenetwork-kppp/repos/testing-i686/PKGBUILD (from rev 220040, 
kdenetwork-kppp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:17:41 UTC (rev 220041)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdenetwork-kppp
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Internet Dial-Up Tool'
+url='http://kde.org/applications/internet/kppp/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdenetwork')
+depends=('kdebase-runtime' 'ppp')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kppp-${pkgver}.tar.xz";)
+sha1sums=('89277176595d940e0c2846ca56a584f713b16a98')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kppp-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdenetwork-kppp/repos/testing-i686/kdenetwork-kppp.install (from rev 
220040, kdenetwork-kppp/trunk/kdenetwork-kppp.install)
===
--- testing-i686/kdenetwork-kppp.install(rev 0)
+++ testing-i686/kdenetwork-kppp.install2014-08-16 20:17:41 UTC (rev 
220041)
@@ -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: kdenetwork-kppp/repos/testing-x86_64/PKGBUILD (from rev 220040, 
kdenetwork-kppp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:17:41 UTC (rev 220041)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kdenetwork-kppp
+pkgver=4.14.0
+pkgrel=1
+pkgdesc='Internet Dial-Up Tool'
+url='http://kde.org/applications/internet/kppp/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdenetwork')
+depends=('kdebase-runtime' 'ppp')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/${pkgver}/src/kppp-${pkgver}.tar.xz";)
+sha1sums=('89277176595d940e0c2846ca56a584f713b16a98')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kppp-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdenetwork-kppp/repos/testing-x86_64/kdenetwork-kppp.install (from rev 
220040, kdenetwork-kppp/trunk/kdenetwork-kppp.install)
===
--- testing-x86_64/kdenetwork-kppp.install  (rev 0)
+++ testing-x86_64/kdenetwork-kppp.install  2014-08-16 20:17:41 UTC (rev 
220041)
@@ -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
+}



  1   2   3   4   >