[arch-commits] Commit in pinentry/trunk (3 files)

2012-05-25 Thread Tobias Powalowski
Date: Friday, May 25, 2012 @ 08:43:42
  Author: tpowa
Revision: 159495

upgpkg: pinentry 0.8.1-4

fix #29998

Added:
  pinentry/trunk/qt4-pinentry-window.patch
Modified:
  pinentry/trunk/PKGBUILD
Deleted:
  pinentry/trunk/gtk2-pinentry-segfault.patch

--+
 PKGBUILD |   19 +++
 gtk2-pinentry-segfault.patch |   11 ---
 qt4-pinentry-window.patch|   28 
 3 files changed, 39 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-05-25 03:17:36 UTC (rev 159494)
+++ PKGBUILD2012-05-25 12:43:42 UTC (rev 159495)
@@ -2,7 +2,7 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=pinentry
 pkgver=0.8.1
-pkgrel=3
+pkgrel=4
 pkgdesc=a collection of simple PIN or passphrase entry dialogs which utilize 
the Assuan protocol
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -12,11 +12,13 @@
 optdepends=('gtk2: for gtk2 backend'
 'qt: for qt4 backend')  
 source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.gz
-gtk2-pinentry-segfault.patch)
+qt4-pinentry-window.patch)
 install=pinentry.install
 
 build() {
-  cd $startdir/src/$pkgname-$pkgver
+  cd $srcdir/$pkgname-$pkgver
+  #fix: https://bugs.archlinux.org/task/29998
+  patch -Np1 -i ../qt4-pinentry-window.patch
   for file in qt4/*.moc; do
/usr/bin/moc ${file/.moc/.h}  ${file}
done
@@ -27,11 +29,12 @@
--enable-pinentry-gtk2 \
 --enable-pinentry-qt4 \
--enable-fallback-curses
-  make 
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
   make DESTDIR=${pkgdir} install 
-  #rm ${pkgdir}/usr/share/info/dir 
-  #rm ${pkgdir}/usr/bin/pinentry 
-  #ln -s /usr/bin/pinentry-gtk-2 ${pkgdir}/usr/bin/pinentry 
 }
 md5sums=('81f99904daee5331eb6738408bb024b6'
- 'bd9888fafc56464b2c4deaad5b8edb07')
+ '450b8713fe42f1bd93311ef84767c3d8')

Deleted: gtk2-pinentry-segfault.patch
===
--- gtk2-pinentry-segfault.patch2012-05-25 03:17:36 UTC (rev 159494)
+++ gtk2-pinentry-segfault.patch2012-05-25 12:43:42 UTC (rev 159495)
@@ -1,11 +0,0 @@
 gtk+-2/pinentry-gtk-2.c.orig   2010-03-03 05:19:55.0 -0600
-+++ gtk+-2/pinentry-gtk-2.c2010-07-07 00:11:30.413572124 -0500
-@@ -145,7 +145,7 @@
- {
-   gdk_keyboard_ungrab (gdk_event_get_time (event));
-   /* Unmake window transient for the root window.  */
--  gdk_window_set_transient_for (win-window, NULL);
-+  gdk_property_delete (win-window, gdk_atom_intern_static_string 
(WM_TRANSIENT_FOR));
- }
- 
- 

Added: qt4-pinentry-window.patch
===
--- qt4-pinentry-window.patch   (rev 0)
+++ qt4-pinentry-window.patch   2012-05-25 12:43:42 UTC (rev 159495)
@@ -0,0 +1,28 @@
+From c2ab12b3742c929a225c3753439438edc27bfa81 Mon Sep 17 00:00:00 2001
+From: Stanislav Ochotnicky sochotni...@redhat.com
+Date: Tue, 1 Feb 2011 14:42:27 +0100
+Subject: [PATCH] Fix qt4 pinentry window created in the background
+
+This is probably just a workaround. Proper fix is being investigated.
+See:
+https://bugzilla.redhat.com/show_bug.cgi?id=589532
+http://stackoverflow.com/questions/2788518/calling-activatewindow-on-qdialog-sends-window-to-background
+---
+ qt4/pinentrydialog.cpp |1 -
+ 1 files changed, 0 insertions(+), 1 deletions(-)
+
+diff --git a/qt4/pinentrydialog.cpp b/qt4/pinentrydialog.cpp
+index 541baf4..d634eb6 100644
+--- a/qt4/pinentrydialog.cpp
 b/qt4/pinentrydialog.cpp
+@@ -69,7 +69,6 @@ void raiseWindow( QWidget* w )
+ SetForegroundWindow( w-winId() );
+ #endif
+ w-raise();
+-w-activateWindow();
+ }
+ 
+ QPixmap icon( QStyle::StandardPixmap which )
+-- 
+1.7.3.5
+



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

2012-05-25 Thread Tobias Powalowski
Date: Friday, May 25, 2012 @ 08:44:10
  Author: tpowa
Revision: 159496

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

Added:
  pinentry/repos/testing-i686/
  pinentry/repos/testing-i686/PKGBUILD
(from rev 159495, pinentry/trunk/PKGBUILD)
  pinentry/repos/testing-i686/pinentry.install
(from rev 159495, pinentry/trunk/pinentry.install)
  pinentry/repos/testing-i686/qt4-pinentry-window.patch
(from rev 159495, pinentry/trunk/qt4-pinentry-window.patch)
  pinentry/repos/testing-x86_64/
  pinentry/repos/testing-x86_64/PKGBUILD
(from rev 159495, pinentry/trunk/PKGBUILD)
  pinentry/repos/testing-x86_64/pinentry.install
(from rev 159495, pinentry/trunk/pinentry.install)
  pinentry/repos/testing-x86_64/qt4-pinentry-window.patch
(from rev 159495, pinentry/trunk/qt4-pinentry-window.patch)

--+
 testing-i686/PKGBUILD|   40 +
 testing-i686/pinentry.install|   20 ++
 testing-i686/qt4-pinentry-window.patch   |   28 
 testing-x86_64/PKGBUILD  |   40 +
 testing-x86_64/pinentry.install  |   20 ++
 testing-x86_64/qt4-pinentry-window.patch |   28 
 6 files changed, 176 insertions(+)

Copied: pinentry/repos/testing-i686/PKGBUILD (from rev 159495, 
pinentry/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-05-25 12:44:10 UTC (rev 159496)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+pkgname=pinentry
+pkgver=0.8.1
+pkgrel=4
+pkgdesc=a collection of simple PIN or passphrase entry dialogs which utilize 
the Assuan protocol
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.gnupg.org/aegypten2;
+depends=('ncurses' 'libcap=2.16')
+makedepends=('gtk2' 'qt')
+optdepends=('gtk2: for gtk2 backend'
+'qt: for qt4 backend')  
+source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.gz
+qt4-pinentry-window.patch)
+install=pinentry.install
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  #fix: https://bugs.archlinux.org/task/29998
+  patch -Np1 -i ../qt4-pinentry-window.patch
+  for file in qt4/*.moc; do
+   /usr/bin/moc ${file/.moc/.h}  ${file}
+   done
+  ./configure --prefix=/usr \
+   --enable-pinentry-curses \
+--disable-pinentry-gtk \
+--disable-pinentry-qt \
+   --enable-pinentry-gtk2 \
+--enable-pinentry-qt4 \
+   --enable-fallback-curses
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install 
+}
+md5sums=('81f99904daee5331eb6738408bb024b6'
+ '450b8713fe42f1bd93311ef84767c3d8')

Copied: pinentry/repos/testing-i686/pinentry.install (from rev 159495, 
pinentry/trunk/pinentry.install)
===
--- testing-i686/pinentry.install   (rev 0)
+++ testing-i686/pinentry.install   2012-05-25 12:44:10 UTC (rev 159496)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(pinentry.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}

Copied: pinentry/repos/testing-i686/qt4-pinentry-window.patch (from rev 159495, 
pinentry/trunk/qt4-pinentry-window.patch)
===
--- testing-i686/qt4-pinentry-window.patch  (rev 0)
+++ testing-i686/qt4-pinentry-window.patch  2012-05-25 12:44:10 UTC (rev 
159496)
@@ -0,0 +1,28 @@
+From c2ab12b3742c929a225c3753439438edc27bfa81 Mon Sep 17 00:00:00 2001
+From: Stanislav Ochotnicky sochotni...@redhat.com
+Date: Tue, 1 Feb 2011 14:42:27 +0100
+Subject: [PATCH] Fix qt4 pinentry window created in the background
+
+This is probably just a workaround. Proper fix is being investigated.
+See:
+https://bugzilla.redhat.com/show_bug.cgi?id=589532
+http://stackoverflow.com/questions/2788518/calling-activatewindow-on-qdialog-sends-window-to-background
+---
+ qt4/pinentrydialog.cpp |1 -
+ 1 files changed, 0 insertions(+), 1 deletions(-)
+
+diff --git a/qt4/pinentrydialog.cpp b/qt4/pinentrydialog.cpp
+index 541baf4..d634eb6 100644
+--- a/qt4/pinentrydialog.cpp
 b/qt4/pinentrydialog.cpp
+@@ -69,7 +69,6 @@ void raiseWindow( QWidget* w )
+ SetForegroundWindow( w-winId() );
+ #endif
+ w-raise();
+-w-activateWindow();
+ }
+ 
+ QPixmap icon( QStyle::StandardPixmap which )
+-- 
+1.7.3.5
+

Copied: pinentry/repos/testing-x86_64/PKGBUILD (from rev 159495, 
pinentry/trunk/PKGBUILD)

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

2012-05-25 Thread Dave Reisner
Date: Friday, May 25, 2012 @ 10:32:43
  Author: dreisner
Revision: 159497

upgpkg: curl 7.26.0-1

Modified:
  curl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-05-25 12:44:10 UTC (rev 159496)
+++ PKGBUILD2012-05-25 14:32:43 UTC (rev 159497)
@@ -6,7 +6,7 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=curl
-pkgver=7.25.0
+pkgver=7.26.0
 pkgrel=1
 pkgdesc=An URL retrival utility and library
 arch=('i686' 'x86_64')
@@ -16,8 +16,8 @@
 options=('!libtool')
 source=(http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz{,.asc}
 curlbuild.h)
-md5sums=('a56cbe2778b09769f8a5ba17d8f4d92a'
- '0e0fd2da19bde6f7be687667e2fac02f'
+md5sums=('3fa4d5236f2a36ca5c3af6715e837691'
+ '61b594830d5acba3c99e4af0ba39a14e'
  '751bd433ede935c8fae727377625a8ae')
 
 ptrsize=$(cpp '__SIZEOF_POINTER__' | sed '/^#/d')



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

2012-05-25 Thread Dave Reisner
Date: Friday, May 25, 2012 @ 10:33:21
  Author: dreisner
Revision: 159498

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

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

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

Copied: curl/repos/testing-i686/PKGBUILD (from rev 159497, curl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-05-25 14:33:21 UTC (rev 159498)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Eric Belanger e...@archlinux.org
+# Contributor: Lucien Immink l.imm...@student.fnt.hvu.nl
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=curl
+pkgver=7.26.0
+pkgrel=1
+pkgdesc=An URL retrival utility and library
+arch=('i686' 'x86_64')
+url=http://curl.haxx.se;
+license=('MIT')
+depends=('ca-certificates' 'libssh2' 'openssl' 'zlib')
+options=('!libtool')
+source=(http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz{,.asc}
+curlbuild.h)
+md5sums=('3fa4d5236f2a36ca5c3af6715e837691'
+ '61b594830d5acba3c99e4af0ba39a14e'
+ '751bd433ede935c8fae727377625a8ae')
+
+ptrsize=$(cpp '__SIZEOF_POINTER__' | sed '/^#/d')
+case $ptrsize in
+  8) _curlbuild=curlbuild-64.h ;;
+  4) _curlbuild=curlbuild-32.h ;;
+  *) error unknown pointer size for architecture: %s bytes $ptrsize
+exit 1
+;;
+esac
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-dependency-tracking \
+  --disable-ldap \
+  --disable-ldaps \
+  --enable-ipv6 \
+  --enable-manual \
+  --enable-versioned-symbols \
+  --enable-threaded-resolver \
+  --without-libidn \
+  --with-random=/dev/urandom \
+  --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # license
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+
+  # devel
+  install -Dm644 docs/libcurl/libcurl.m4 $pkgdir/usr/share/aclocal/libcurl.m4
+  mv $pkgdir/usr/include/curl/curlbuild.h 
$pkgdir/usr/include/curl/$_curlbuild
+  install -m644 $srcdir/curlbuild.h $pkgdir/usr/include/curl/curlbuild.h
+}

Copied: curl/repos/testing-i686/curlbuild.h (from rev 159497, 
curl/trunk/curlbuild.h)
===
--- testing-i686/curlbuild.h(rev 0)
+++ testing-i686/curlbuild.h2012-05-25 14:33:21 UTC (rev 159498)
@@ -0,0 +1,9 @@
+#include bits/wordsize.h
+
+#if __WORDSIZE == 32
+#include curlbuild-32.h
+#elif __WORDSIZE == 64
+#include curlbuild-64.h
+#else
+#error Unknown word size
+#endif

Copied: curl/repos/testing-x86_64/PKGBUILD (from rev 159497, 
curl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-05-25 14:33:21 UTC (rev 159498)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Eric Belanger e...@archlinux.org
+# Contributor: Lucien Immink l.imm...@student.fnt.hvu.nl
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=curl
+pkgver=7.26.0
+pkgrel=1
+pkgdesc=An URL retrival utility and library
+arch=('i686' 'x86_64')
+url=http://curl.haxx.se;
+license=('MIT')
+depends=('ca-certificates' 'libssh2' 'openssl' 'zlib')
+options=('!libtool')
+source=(http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz{,.asc}
+curlbuild.h)
+md5sums=('3fa4d5236f2a36ca5c3af6715e837691'
+ '61b594830d5acba3c99e4af0ba39a14e'
+ '751bd433ede935c8fae727377625a8ae')
+
+ptrsize=$(cpp '__SIZEOF_POINTER__' | sed '/^#/d')
+case $ptrsize in
+  8) _curlbuild=curlbuild-64.h ;;
+  4) _curlbuild=curlbuild-32.h ;;
+  *) error unknown pointer size for architecture: %s bytes $ptrsize
+exit 1
+;;
+esac
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-dependency-tracking \
+  --disable-ldap \
+  --disable-ldaps \
+  --enable-ipv6 \
+  --enable-manual \
+  --enable-versioned-symbols \
+  

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

2012-05-25 Thread andyrtr
Date: Friday, May 25, 2012 @ 11:03:55
  Author: andyrtr
Revision: 159499

upgpkg: xf86-input-vmmouse 12.9.0-1

upstream update 12.9.0

Modified:
  xf86-input-vmmouse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-05-25 14:33:21 UTC (rev 159498)
+++ PKGBUILD2012-05-25 15:03:55 UTC (rev 159499)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xf86-input-vmmouse
-pkgver=12.8.0
-pkgrel=2
+pkgver=12.9.0
+pkgrel=1
 pkgdesc=X.org VMWare Mouse input driver
 arch=(i686 x86_64)
 license=('custom')
@@ -15,7 +15,7 @@
 backup=('etc/X11/xorg.conf.d/50-vmmouse.conf')
 options=('!libtool')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('ecca90d5e992f9358f7932e0c46e92ebe715f9de')
+sha1sums=('83500beddba2da390389705d482131872fe9be8b')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2012-05-25 Thread andyrtr
Date: Friday, May 25, 2012 @ 11:04:46
  Author: andyrtr
Revision: 159500

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-05-25 15:03:55 UTC (rev 159499)
+++ extra-i686/PKGBUILD 2012-05-25 15:04:46 UTC (rev 159500)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-input-vmmouse
-pkgver=12.8.0
-pkgrel=2
-pkgdesc=X.org VMWare Mouse input driver
-arch=(i686 x86_64)
-license=('custom')
-url=http://xorg.freedesktop.org/;
-depends=('glibc' 'sh')
-makedepends=('xorg-server-devel=1.11.99.902')
-conflicts=('xorg-server1.11.99.902')
-groups=('xorg-drivers' 'xorg')
-backup=('etc/X11/xorg.conf.d/50-vmmouse.conf')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('ecca90d5e992f9358f7932e0c46e92ebe715f9de')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---with-xorg-conf-dir=/etc/X11/xorg.conf.d \
---with-udev-rules-dir=/usr/lib/udev/rules.d
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-  rm -rfv ${pkgdir}/usr/{lib,share}/hal
-}

Copied: xf86-input-vmmouse/repos/extra-i686/PKGBUILD (from rev 159499, 
xf86-input-vmmouse/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-05-25 15:04:46 UTC (rev 159500)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-vmmouse
+pkgver=12.9.0
+pkgrel=1
+pkgdesc=X.org VMWare Mouse input driver
+arch=(i686 x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('glibc' 'sh')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+groups=('xorg-drivers' 'xorg')
+backup=('etc/X11/xorg.conf.d/50-vmmouse.conf')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('83500beddba2da390389705d482131872fe9be8b')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--with-xorg-conf-dir=/etc/X11/xorg.conf.d \
+--with-udev-rules-dir=/usr/lib/udev/rules.d
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+  rm -rfv ${pkgdir}/usr/{lib,share}/hal
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-05-25 15:03:55 UTC (rev 159499)
+++ extra-x86_64/PKGBUILD   2012-05-25 15:04:46 UTC (rev 159500)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-input-vmmouse
-pkgver=12.8.0
-pkgrel=2
-pkgdesc=X.org VMWare Mouse input driver
-arch=(i686 x86_64)
-license=('custom')
-url=http://xorg.freedesktop.org/;
-depends=('glibc' 'sh')
-makedepends=('xorg-server-devel=1.11.99.902')
-conflicts=('xorg-server1.11.99.902')
-groups=('xorg-drivers' 'xorg')
-backup=('etc/X11/xorg.conf.d/50-vmmouse.conf')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('ecca90d5e992f9358f7932e0c46e92ebe715f9de')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---with-xorg-conf-dir=/etc/X11/xorg.conf.d \
---with-udev-rules-dir=/usr/lib/udev/rules.d
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-  rm -rfv ${pkgdir}/usr/{lib,share}/hal
-}

Copied: xf86-input-vmmouse/repos/extra-x86_64/PKGBUILD (from rev 159499, 
xf86-input-vmmouse/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-05-25 15:04:46 UTC (rev 159500)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-vmmouse
+pkgver=12.9.0
+pkgrel=1
+pkgdesc=X.org VMWare Mouse input 

[arch-commits] Commit in claws-mail-extra-plugins/trunk (PKGBUILD)

2012-05-25 Thread andyrtr
Date: Friday, May 25, 2012 @ 12:02:51
  Author: andyrtr
Revision: 159501

upgpkg: claws-mail-extra-plugins 3.8.0-3

perl rebuild

Modified:
  claws-mail-extra-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-05-25 15:04:46 UTC (rev 159500)
+++ PKGBUILD2012-05-25 16:02:51 UTC (rev 159501)
@@ -4,13 +4,13 @@
 
 pkgname=claws-mail-extra-plugins
 pkgver=3.8.0
-pkgrel=2
+pkgrel=3
 pkgdesc=Extra plugins for claws-mail
 url=http://www.claws-mail.org/plugins.php?branch=EXT;
 license=('GPL3')
 arch=('i686' 'x86_64')
 depends=('claws-mail=3.8.0')
-makedepends=('make' 'bc' 'perl=5.10.1-5' 'libgtkhtml=2.11.1-2' 
'libnotify=0.7'
+makedepends=('make' 'bc' 'perl=5.16.0' 'libgtkhtml=2.11.1-2' 'libnotify=0.7'
  'libxml2=2.7.6' 'curl=7.19.7' 'libytnef=1.5-2' 
'libwebkit=1.6.1'
  'pygtk=2.16.0' 'libsoup-gnome' 'libcanberra' 'libgdata')
 optdepends=('libgtkhtml: for gtkhtml2_viewer plugin'



[arch-commits] Commit in claws-mail-extra-plugins/repos (4 files)

2012-05-25 Thread andyrtr
Date: Friday, May 25, 2012 @ 12:03:35
  Author: andyrtr
Revision: 159502

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

Added:
  claws-mail-extra-plugins/repos/staging-i686/
  claws-mail-extra-plugins/repos/staging-i686/PKGBUILD
(from rev 159501, claws-mail-extra-plugins/trunk/PKGBUILD)
  claws-mail-extra-plugins/repos/staging-x86_64/
  claws-mail-extra-plugins/repos/staging-x86_64/PKGBUILD
(from rev 159501, claws-mail-extra-plugins/trunk/PKGBUILD)

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

Copied: claws-mail-extra-plugins/repos/staging-i686/PKGBUILD (from rev 159501, 
claws-mail-extra-plugins/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-05-25 16:03:35 UTC (rev 159502)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Mildred mildred593 at online dot fr
+
+pkgname=claws-mail-extra-plugins
+pkgver=3.8.0
+pkgrel=3
+pkgdesc=Extra plugins for claws-mail
+url=http://www.claws-mail.org/plugins.php?branch=EXT;
+license=('GPL3')
+arch=('i686' 'x86_64')
+depends=('claws-mail=3.8.0')
+makedepends=('make' 'bc' 'perl=5.16.0' 'libgtkhtml=2.11.1-2' 'libnotify=0.7'
+ 'libxml2=2.7.6' 'curl=7.19.7' 'libytnef=1.5-2' 
'libwebkit=1.6.1'
+ 'pygtk=2.16.0' 'libsoup-gnome' 'libcanberra' 'libgdata')
+optdepends=('libgtkhtml: for gtkhtml2_viewer plugin'
+'perl: for perl plugin'
+'libnotify: for notification plugin'
+'libcanberra: for notification plugin'
+'dbus-core: for notification plugin'
+'libxml2: for gtkhtml2_viewer and rssyl plugins'
+'curl: for gtkhtml2_viewer, vcalendar, rssyl and spamreport 
plugins'
+'libarchive: for archive plugin'
+'libytnef: for tnef_parse plugin'
+'libwebkit: for the fancy webkit html plugin'
+'libsoup-gnome: for the fancy webkit html plugin'
+'python2: for python plugin'
+   'libgdata: for gdata plugin')
+conflicts=('claws-gtkhtml2_viewer' 'claws-mail-acpinotifier-plugin'
+   'sylpheed-claws-gtkhtml2-plugin' 'sylpheed-claws-rssyl-plugin'
+   'sylpheed-claws-extra-plugins' 'claws-tnef-plugin'
+   'claws-webkit-plugin-svn' 'claws-mayflower-plugin-svn')
+replaces=('sylpheed-claws-extra-plugins')
+options=('!libtool' '!strip')
+source=(http://downloads.sourceforge.net/project/sylpheed-claws/extra%20plugins/$pkgver/claws-mail-extra-plugins-$pkgver.tar.bz2)
+md5sums=('4776f6e0357a694f384349ac73b6da52')
+
+build() {
+  cd $srcdir/claws-mail-extra-plugins-$pkgver
+
+  # fix for python2
+  export PYTHON=/usr/bin/python2
+
+  # fix gdata plugin build
+  sed -i -e s:libgdata\ \ 0.9.0:libgdata\ \ 0.11.0:g 
gdata_plugin-0.3/configure
+ 
+  for dir in */; do
+[[ $dir != geolocation_plugin-* ]]  (
+  cd $dir
+
+  ./configure --prefix=/usr --disable-static
+  make
+)
+  done
+}
+
+package() {
+  cd $srcdir/claws-mail-extra-plugins-$pkgver
+  for dir in */; do
+[[ $dir != geolocation_plugin-* ]]  
+  make -C $dir DESTDIR=$pkgdir install
+  done
+
+  # fix fileconflict with libical, #11485
+  rm -f $pkgdir/usr/include/ical.h
+}

Copied: claws-mail-extra-plugins/repos/staging-x86_64/PKGBUILD (from rev 
159501, claws-mail-extra-plugins/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-05-25 16:03:35 UTC (rev 159502)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Mildred mildred593 at online dot fr
+
+pkgname=claws-mail-extra-plugins
+pkgver=3.8.0
+pkgrel=3
+pkgdesc=Extra plugins for claws-mail
+url=http://www.claws-mail.org/plugins.php?branch=EXT;
+license=('GPL3')
+arch=('i686' 'x86_64')
+depends=('claws-mail=3.8.0')
+makedepends=('make' 'bc' 'perl=5.16.0' 'libgtkhtml=2.11.1-2' 'libnotify=0.7'
+ 'libxml2=2.7.6' 'curl=7.19.7' 'libytnef=1.5-2' 
'libwebkit=1.6.1'
+ 'pygtk=2.16.0' 'libsoup-gnome' 'libcanberra' 'libgdata')
+optdepends=('libgtkhtml: for gtkhtml2_viewer plugin'
+'perl: for perl plugin'
+'libnotify: for notification plugin'
+'libcanberra: for notification plugin'
+'dbus-core: for notification plugin'
+'libxml2: for gtkhtml2_viewer and rssyl plugins'
+'curl: for gtkhtml2_viewer, vcalendar, rssyl and spamreport 
plugins'
+'libarchive: for archive plugin'
+'libytnef: for tnef_parse plugin'
+'libwebkit: for the fancy webkit html plugin'
+'libsoup-gnome: for the fancy webkit html plugin'
+

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

2012-05-25 Thread andyrtr
Date: Friday, May 25, 2012 @ 12:04:09
  Author: andyrtr
Revision: 159503

db-move: moved xdg-utils from [testing] to [extra] (any)

Added:
  xdg-utils/repos/extra-any/PKGBUILD
(from rev 159502, xdg-utils/repos/testing-any/PKGBUILD)
  xdg-utils/repos/extra-any/xfce-detection.diff
(from rev 159502, xdg-utils/repos/testing-any/xfce-detection.diff)
Deleted:
  xdg-utils/repos/extra-any/PKGBUILD
  xdg-utils/repos/extra-any/xfce-detection.diff
  xdg-utils/repos/testing-any/

-+
 PKGBUILD|   92 +++---
 xfce-detection.diff |   98 +-
 2 files changed, 87 insertions(+), 103 deletions(-)

Deleted: extra-any/PKGBUILD
===
--- extra-any/PKGBUILD  2012-05-25 16:03:35 UTC (rev 159502)
+++ extra-any/PKGBUILD  2012-05-25 16:04:09 UTC (rev 159503)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xdg-utils
-pkgver=1.1.0rc1
-pkgrel=3
-pkgdesc='Command line tools that assist applications with a variety of desktop 
integration tasks'
-arch=('any')
-url='http://portland.freedesktop.org/'
-license=('MIT')
-depends=('sh' 'xorg-xset')
-makedepends=('docbook-xsl' 'lynx' 'xmlto')
-optdepends=('kdebase-runtime: for KDE support in xdg-open'
-'libgnome: for GNOME support in xdg-open'
-'exo: for Xfce support in xdg-open'
-'xorg-xprop: for Xfce support in xdg-open'
-'pcmanfm: for LXDE support in xdg-open'
-'perl-file-mimeinfo: for generic support in xdg-open')
-source=(#ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.xz;
-   
http://portland.freedesktop.org/download/${pkgname}-${pkgver/rc1/-rc1}.tar.gz \
-   xfce-detection.diff)
-md5sums=('fadf5e7a08e0526fc60dbe3e5b7ef8d6'
- '061c85755b9f3ca8a8cc847518b6be3d')
-
-build() {
-   #cd ${srcdir}/${pkgname}-${pkgver}
-   cd ${srcdir}/${pkgname}-${pkgver/rc1/-rc1}
-   patch -p0 -i ${srcdir}/xfce-detection.diff
-   ./configure --prefix=/usr --mandir=/usr/share/man
-   make -C scripts
-   make
-}
-
-package() {
-   #cd ${srcdir}/${pkgname}-${pkgver}
-   cd ${srcdir}/${pkgname}-${pkgver/rc1/-rc1}
-   make DESTDIR=${pkgdir} install
-   install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-_source() {
-
-   # outdated! see now http://cgit.freedesktop.org/xdg/xdg-utils/
-   local _current=$(pwd)
-   local _tmp=$(mktemp -d)
-   cd $_tmp
-
-   cvs -d:pserver:anon...@anoncvs.freedesktop.org:/cvs/portland co -d 
${pkgname}-${pkgver} portland/xdg-utils
-   find ${pkgname}-${pkgver} -name 'CVS' -type d -exec rm -rf {} \;
-   bsdtar cJf ${pkgname}-${pkgver}.tar.xz ${pkgname}-${pkgver}
-   mv ${pkgname}-${pkgver}.tar.xz $_current
-   cd $_current
-   rm -rf $_tmp
-}

Copied: xdg-utils/repos/extra-any/PKGBUILD (from rev 159502, 
xdg-utils/repos/testing-any/PKGBUILD)
===
--- extra-any/PKGBUILD  (rev 0)
+++ extra-any/PKGBUILD  2012-05-25 16:04:09 UTC (rev 159503)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xdg-utils
+pkgver=1.1.0
+_gitdate=20120520
+pkgrel=0.${_gitdate}
+pkgdesc=Command line tools that assist applications with a variety of desktop 
integration tasks
+arch=('any')
+url=http://portland.freedesktop.org/;
+license=('MIT')
+depends=('sh' 'xorg-xset') # xset needed inside xdg-screensaver
+makedepends=('docbook-xsl' 'lynx' 'xmlto')
+optdepends=('kdebase-runtime: for KDE support in xdg-open'
+'libgnome: for GNOME support in xdg-open'
+'exo: for Xfce support in xdg-open'
+'xorg-xprop: for Xfce support in xdg-open'
+'pcmanfm: for LXDE support in xdg-open'
+'perl-file-mimeinfo: for generic support in xdg-open')
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.${_gitdate}.tar.gz
  # last git commit 2012-03-10 13:55:24 (GMT) allow DESKTOP_SESSION='Xfce 
Session' to match xfce
+   xfce-detection.diff)
+md5sums=('4e37d65322dbc4763e85b8ba461f919b'
+ '061c85755b9f3ca8a8cc847518b6be3d')
+
+build() {
+   cd ${srcdir}/${pkgname}-5be359a49d4d8dc3c5f814ab89b8422ad522d837
+   # disable patch for now, the grep upstream issue is solved as fixed and 
lots of xfce related commits should have fixed this
+   #patch -p0 -i ${srcdir}/xfce-detection.diff
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make -C scripts
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-5be359a49d4d8dc3c5f814ab89b8422ad522d837
+   make DESTDIR=${pkgdir} install
+   install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-any/xfce-detection.diff
===
--- 

[arch-commits] Commit in (49 files)

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 12:19:35
  Author: andrea
Revision: 159504

KDE-multimedia has been split

Added:
  kdemultimedia-audiocd-kio/
  kdemultimedia-audiocd-kio/kde-unstable/
  kdemultimedia-audiocd-kio/kde-unstable/PKGBUILD
  kdemultimedia-audiocd-kio/repos/
  kdemultimedia-audiocd-kio/trunk/
  kdemultimedia-dragonplayer/
  kdemultimedia-dragonplayer/kde-unstable/
  kdemultimedia-dragonplayer/kde-unstable/PKGBUILD
  kdemultimedia-dragonplayer/kde-unstable/kdemultimedia-dragonplayer.install
  kdemultimedia-dragonplayer/repos/
  kdemultimedia-dragonplayer/trunk/
  kdemultimedia-ffmpegthumbs/
  kdemultimedia-ffmpegthumbs/kde-unstable/
  kdemultimedia-ffmpegthumbs/kde-unstable/PKGBUILD
  kdemultimedia-ffmpegthumbs/repos/
  kdemultimedia-ffmpegthumbs/trunk/
  kdemultimedia-juk/
  kdemultimedia-juk/kde-unstable/
  kdemultimedia-juk/kde-unstable/PKGBUILD
  kdemultimedia-juk/kde-unstable/kdemultimedia-juk.install
  kdemultimedia-juk/repos/
  kdemultimedia-juk/trunk/
  kdemultimedia-kmix/
  kdemultimedia-kmix/kde-unstable/
  kdemultimedia-kmix/kde-unstable/PKGBUILD
  kdemultimedia-kmix/kde-unstable/kdemultimedia-kmix.install
  kdemultimedia-kmix/repos/
  kdemultimedia-kmix/trunk/
  kdemultimedia-kscd/
  kdemultimedia-kscd/kde-unstable/
  kdemultimedia-kscd/kde-unstable/PKGBUILD
  kdemultimedia-kscd/kde-unstable/kdemultimedia-kscd.install
  kdemultimedia-kscd/repos/
  kdemultimedia-kscd/trunk/
  kdemultimedia-mplayerthumbs/
  kdemultimedia-mplayerthumbs/kde-unstable/
  kdemultimedia-mplayerthumbs/kde-unstable/PKGBUILD
  kdemultimedia-mplayerthumbs/repos/
  kdemultimedia-mplayerthumbs/trunk/
  libkcddb/
  libkcddb/kde-unstable/
  libkcddb/kde-unstable/PKGBUILD
  libkcddb/repos/
  libkcddb/trunk/
  libkcompactdisc/
  libkcompactdisc/kde-unstable/
  libkcompactdisc/kde-unstable/PKGBUILD
  libkcompactdisc/repos/
  libkcompactdisc/trunk/

+
 kdemultimedia-audiocd-kio/kde-unstable/PKGBUILD|   
31 ++
 kdemultimedia-dragonplayer/kde-unstable/PKGBUILD   |   
31 ++
 kdemultimedia-dragonplayer/kde-unstable/kdemultimedia-dragonplayer.install |   
12 +++
 kdemultimedia-ffmpegthumbs/kde-unstable/PKGBUILD   |   
29 +
 kdemultimedia-juk/kde-unstable/PKGBUILD|   
31 ++
 kdemultimedia-juk/kde-unstable/kdemultimedia-juk.install   |   
11 +++
 kdemultimedia-kmix/kde-unstable/PKGBUILD   |   
30 +
 kdemultimedia-kmix/kde-unstable/kdemultimedia-kmix.install |   
11 +++
 kdemultimedia-kscd/kde-unstable/PKGBUILD   |   
30 +
 kdemultimedia-kscd/kde-unstable/kdemultimedia-kscd.install |   
11 +++
 kdemultimedia-mplayerthumbs/kde-unstable/PKGBUILD  |   
29 +
 libkcddb/kde-unstable/PKGBUILD |   
31 ++
 libkcompactdisc/kde-unstable/PKGBUILD  |   
31 ++
 13 files changed, 318 insertions(+)

Added: kdemultimedia-audiocd-kio/kde-unstable/PKGBUILD
===
--- kdemultimedia-audiocd-kio/kde-unstable/PKGBUILD 
(rev 0)
+++ kdemultimedia-audiocd-kio/kde-unstable/PKGBUILD 2012-05-25 16:19:35 UTC 
(rev 159504)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdemultimedia-audiocd-kio
+pkgver=4.8.80
+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')
+makedepends=('cmake' 'automoc4')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')
+source=(http://download.kde.org/unstable/${pkgver}/src/audiocd-kio-${pkgver}.tar.xz;)
+sha1sums=('eb4d8c065a77c43eb4492c75085ddf9a1be0d1c8')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../audiocd-kio-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}


Property changes on: kdemultimedia-audiocd-kio/kde-unstable/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: kdemultimedia-dragonplayer/kde-unstable/PKGBUILD
===
--- kdemultimedia-dragonplayer/kde-unstable/PKGBUILD
(rev 0)
+++ kdemultimedia-dragonplayer/kde-unstable/PKGBUILD2012-05-25 16:19:35 UTC 
(rev 159504)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdemultimedia-dragonplayer
+pkgver=4.8.80
+pkgrel=1

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

2012-05-25 Thread andyrtr
Date: Friday, May 25, 2012 @ 12:24:47
  Author: andyrtr
Revision: 159505

upgpkg: cups 1.5.3-2

fix dep from libusb-compat to libusb, FS#29985

Modified:
  cups/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-05-25 16:19:35 UTC (rev 159504)
+++ PKGBUILD2012-05-25 16:24:47 UTC (rev 159505)
@@ -4,12 +4,12 @@
 pkgbase=cups
 pkgname=('libcups' 'cups')
 pkgver=1.5.3
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('GPL')
 url=http://www.cups.org/;
 makedepends=('libtiff=4.0.0' 'libpng=1.5.7' 'acl' 'openslp' 'pam' 
'xdg-utils' 'krb5' 'gnutls=2.8.3' 'poppler=0.12.3'
- 'xinetd' 'gzip' 'autoconf' 'php' 'libusb-compat' 'dbus-core' 
'avahi'  'hicolor-icon-theme')
+ 'xinetd' 'gzip' 'autoconf' 'php' 'libusb' 'dbus-core' 'avahi'  
'hicolor-icon-theme')
 source=(ftp://ftp.easysw.com/pub/cups/${pkgver}/cups-${pkgver}-source.tar.bz2
 cups-avahi-1-config.patch
 cups-avahi-2-backend.patch
@@ -116,7 +116,7 @@
 etc/logrotate.d/cups
 etc/pam.d/cups
 etc/xinetd.d/cups-lpd)
-depends=('acl' 'openslp' 'pam' libcups=${pkgver} 'poppler=0.12.3' 
'libusb-compat' 'dbus-core' 'hicolor-icon-theme')
+depends=('acl' 'openslp' 'pam' libcups=${pkgver} 'poppler=0.12.3' 'libusb' 
'dbus-core' 'hicolor-icon-theme')
 optdepends=('php: for included phpcups.so module'
 'ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'



[arch-commits] Commit in cups/repos (52 files)

2012-05-25 Thread andyrtr
Date: Friday, May 25, 2012 @ 12:27:21
  Author: andyrtr
Revision: 159506

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

Added:
  cups/repos/extra-i686/PKGBUILD
(from rev 159505, cups/trunk/PKGBUILD)
  cups/repos/extra-i686/cups
(from rev 159505, cups/trunk/cups)
  cups/repos/extra-i686/cups-avahi-1-config.patch
(from rev 159505, cups/trunk/cups-avahi-1-config.patch)
  cups/repos/extra-i686/cups-avahi-2-backend.patch
(from rev 159505, cups/trunk/cups-avahi-2-backend.patch)
  cups/repos/extra-i686/cups-avahi-3-timeouts.patch
(from rev 159505, cups/trunk/cups-avahi-3-timeouts.patch)
  cups/repos/extra-i686/cups-avahi-4-poll.patch
(from rev 159505, cups/trunk/cups-avahi-4-poll.patch)
  cups/repos/extra-i686/cups-avahi-5-services.patch
(from rev 159505, cups/trunk/cups-avahi-5-services.patch)
  cups/repos/extra-i686/cups-no-export-ssllibs.patch
(from rev 159505, cups/trunk/cups-no-export-ssllibs.patch)
  cups/repos/extra-i686/cups-no-gcrypt.patch
(from rev 159505, cups/trunk/cups-no-gcrypt.patch)
  cups/repos/extra-i686/cups-no-gzip-man.patch
(from rev 159505, cups/trunk/cups-no-gzip-man.patch)
  cups/repos/extra-i686/cups.install
(from rev 159505, cups/trunk/cups.install)
  cups/repos/extra-i686/cups.logrotate
(from rev 159505, cups/trunk/cups.logrotate)
  cups/repos/extra-i686/cups.pam
(from rev 159505, cups/trunk/cups.pam)
  cups/repos/extra-x86_64/PKGBUILD
(from rev 159505, cups/trunk/PKGBUILD)
  cups/repos/extra-x86_64/cups
(from rev 159505, cups/trunk/cups)
  cups/repos/extra-x86_64/cups-avahi-1-config.patch
(from rev 159505, cups/trunk/cups-avahi-1-config.patch)
  cups/repos/extra-x86_64/cups-avahi-2-backend.patch
(from rev 159505, cups/trunk/cups-avahi-2-backend.patch)
  cups/repos/extra-x86_64/cups-avahi-3-timeouts.patch
(from rev 159505, cups/trunk/cups-avahi-3-timeouts.patch)
  cups/repos/extra-x86_64/cups-avahi-4-poll.patch
(from rev 159505, cups/trunk/cups-avahi-4-poll.patch)
  cups/repos/extra-x86_64/cups-avahi-5-services.patch
(from rev 159505, cups/trunk/cups-avahi-5-services.patch)
  cups/repos/extra-x86_64/cups-no-export-ssllibs.patch
(from rev 159505, cups/trunk/cups-no-export-ssllibs.patch)
  cups/repos/extra-x86_64/cups-no-gcrypt.patch
(from rev 159505, cups/trunk/cups-no-gcrypt.patch)
  cups/repos/extra-x86_64/cups-no-gzip-man.patch
(from rev 159505, cups/trunk/cups-no-gzip-man.patch)
  cups/repos/extra-x86_64/cups.install
(from rev 159505, cups/trunk/cups.install)
  cups/repos/extra-x86_64/cups.logrotate
(from rev 159505, cups/trunk/cups.logrotate)
  cups/repos/extra-x86_64/cups.pam
(from rev 159505, cups/trunk/cups.pam)
Deleted:
  cups/repos/extra-i686/PKGBUILD
  cups/repos/extra-i686/cups
  cups/repos/extra-i686/cups-avahi-1-config.patch
  cups/repos/extra-i686/cups-avahi-2-backend.patch
  cups/repos/extra-i686/cups-avahi-3-timeouts.patch
  cups/repos/extra-i686/cups-avahi-4-poll.patch
  cups/repos/extra-i686/cups-avahi-5-services.patch
  cups/repos/extra-i686/cups-no-export-ssllibs.patch
  cups/repos/extra-i686/cups-no-gcrypt.patch
  cups/repos/extra-i686/cups-no-gzip-man.patch
  cups/repos/extra-i686/cups.install
  cups/repos/extra-i686/cups.logrotate
  cups/repos/extra-i686/cups.pam
  cups/repos/extra-x86_64/PKGBUILD
  cups/repos/extra-x86_64/cups
  cups/repos/extra-x86_64/cups-avahi-1-config.patch
  cups/repos/extra-x86_64/cups-avahi-2-backend.patch
  cups/repos/extra-x86_64/cups-avahi-3-timeouts.patch
  cups/repos/extra-x86_64/cups-avahi-4-poll.patch
  cups/repos/extra-x86_64/cups-avahi-5-services.patch
  cups/repos/extra-x86_64/cups-no-export-ssllibs.patch
  cups/repos/extra-x86_64/cups-no-gcrypt.patch
  cups/repos/extra-x86_64/cups-no-gzip-man.patch
  cups/repos/extra-x86_64/cups.install
  cups/repos/extra-x86_64/cups.logrotate
  cups/repos/extra-x86_64/cups.pam

---+
 extra-i686/PKGBUILD   |  334 +--
 extra-i686/cups   |  136 -
 extra-i686/cups-avahi-1-config.patch  |   84 
 extra-i686/cups-avahi-2-backend.patch | 2236 
 extra-i686/cups-avahi-3-timeouts.patch|  762 
 extra-i686/cups-avahi-4-poll.patch| 1058 +--
 extra-i686/cups-avahi-5-services.patch| 2544 ++--
 extra-i686/cups-no-export-ssllibs.patch   |   24 
 extra-i686/cups-no-gcrypt.patch   |   76 
 extra-i686/cups-no-gzip-man.patch |   36 
 extra-i686/cups.install   |   52 
 extra-i686/cups.logrotate |   16 
 extra-i686/cups.pam   |6 
 extra-x86_64/PKGBUILD |  334 +--
 extra-x86_64/cups |  136 -
 extra-x86_64/cups-avahi-1-config.patch|   84 
 extra-x86_64/cups-avahi-2-backend.patch   | 2236 
 extra-x86_64/cups-avahi-3-timeouts.patch  |  762 
 extra-x86_64/cups-avahi-4-poll.patch  | 1058 

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

2012-05-25 Thread Tobias Powalowski
Date: Friday, May 25, 2012 @ 12:30:47
  Author: tpowa
Revision: 159507

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

Added:
  linux-lts/repos/core-i686/CVE-2012-0056.patch
(from rev 159506, linux-lts/repos/testing-i686/CVE-2012-0056.patch)
  linux-lts/repos/core-i686/PKGBUILD
(from rev 159506, linux-lts/repos/testing-i686/PKGBUILD)
  linux-lts/repos/core-i686/change-default-console-loglevel.patch
(from rev 159506, 
linux-lts/repos/testing-i686/change-default-console-loglevel.patch)
  linux-lts/repos/core-i686/config
(from rev 159506, linux-lts/repos/testing-i686/config)
  linux-lts/repos/core-i686/config.x86_64
(from rev 159506, linux-lts/repos/testing-i686/config.x86_64)
  linux-lts/repos/core-i686/ext4-options.patch
(from rev 159506, linux-lts/repos/testing-i686/ext4-options.patch)
  linux-lts/repos/core-i686/i915-fix-ghost-tv-output.patch
(from rev 159506, 
linux-lts/repos/testing-i686/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/core-i686/linux-lts.install
(from rev 159506, linux-lts/repos/testing-i686/linux-lts.install)
  linux-lts/repos/core-i686/linux-lts.preset
(from rev 159506, linux-lts/repos/testing-i686/linux-lts.preset)
Deleted:
  linux-lts/repos/core-i686/CVE-2012-0056.patch
  linux-lts/repos/core-i686/PKGBUILD
  linux-lts/repos/core-i686/change-default-console-loglevel.patch
  linux-lts/repos/core-i686/config
  linux-lts/repos/core-i686/config.x86_64
  linux-lts/repos/core-i686/ext4-options.patch
  linux-lts/repos/core-i686/i915-fix-ghost-tv-output.patch
  linux-lts/repos/core-i686/linux-lts.install
  linux-lts/repos/core-i686/linux-lts.preset
  linux-lts/repos/testing-i686/

---+
 CVE-2012-0056.patch   |  538 -
 PKGBUILD  |  558 -
 change-default-console-loglevel.patch |   24 
 config|11294 
 config.x86_64 |10770 +++---
 ext4-options.patch|   98 
 i915-fix-ghost-tv-output.patch|   52 
 linux-lts.install |  124 
 linux-lts.preset  |   28 
 9 files changed, 11743 insertions(+), 11743 deletions(-)

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


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

2012-05-25 Thread Tobias Powalowski
Date: Friday, May 25, 2012 @ 12:30:50
  Author: tpowa
Revision: 159508

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

Added:
  linux-lts/repos/core-x86_64/CVE-2012-0056.patch
(from rev 159506, linux-lts/repos/testing-x86_64/CVE-2012-0056.patch)
  linux-lts/repos/core-x86_64/PKGBUILD
(from rev 159506, linux-lts/repos/testing-x86_64/PKGBUILD)
  linux-lts/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 159506, 
linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux-lts/repos/core-x86_64/config
(from rev 159506, linux-lts/repos/testing-x86_64/config)
  linux-lts/repos/core-x86_64/config.x86_64
(from rev 159506, linux-lts/repos/testing-x86_64/config.x86_64)
  linux-lts/repos/core-x86_64/ext4-options.patch
(from rev 159506, linux-lts/repos/testing-x86_64/ext4-options.patch)
  linux-lts/repos/core-x86_64/i915-fix-ghost-tv-output.patch
(from rev 159506, 
linux-lts/repos/testing-x86_64/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/core-x86_64/linux-lts.install
(from rev 159506, linux-lts/repos/testing-x86_64/linux-lts.install)
  linux-lts/repos/core-x86_64/linux-lts.preset
(from rev 159506, linux-lts/repos/testing-x86_64/linux-lts.preset)
Deleted:
  linux-lts/repos/core-x86_64/CVE-2012-0056.patch
  linux-lts/repos/core-x86_64/PKGBUILD
  linux-lts/repos/core-x86_64/change-default-console-loglevel.patch
  linux-lts/repos/core-x86_64/config
  linux-lts/repos/core-x86_64/config.x86_64
  linux-lts/repos/core-x86_64/ext4-options.patch
  linux-lts/repos/core-x86_64/i915-fix-ghost-tv-output.patch
  linux-lts/repos/core-x86_64/linux-lts.install
  linux-lts/repos/core-x86_64/linux-lts.preset
  linux-lts/repos/testing-x86_64/

---+
 CVE-2012-0056.patch   |  538 -
 PKGBUILD  |  558 -
 change-default-console-loglevel.patch |   24 
 config|11294 
 config.x86_64 |10770 +++---
 ext4-options.patch|   98 
 i915-fix-ghost-tv-output.patch|   52 
 linux-lts.install |  124 
 linux-lts.preset  |   28 
 9 files changed, 11743 insertions(+), 11743 deletions(-)

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


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

2012-05-25 Thread andyrtr
Date: Friday, May 25, 2012 @ 12:34:34
  Author: andyrtr
Revision: 159509

upgpkg: cups 1.5.3-2

fix dep from libusb-compat to libusb, FS#29985

Modified:
  cups/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-05-25 16:30:50 UTC (rev 159508)
+++ PKGBUILD2012-05-25 16:34:34 UTC (rev 159509)
@@ -90,7 +90,7 @@
   cd ${srcdir}/${pkgbase}-${pkgver}
   make BUILDROOT=${pkgdir} install-headers install-libs
   # put this into the libs pkg to make other software find the libs(no 
pkg-config file included)
-  mkdir -p ${pkgdir}/usr/bin
+  mkdir -p ${pkgdir}/usr/bin 
   install -m755 ${srcdir}/${pkgbase}-${pkgver}/cups-config 
${pkgdir}/usr/bin/cups-config
   
   # install client.conf man page and config file



[arch-commits] Commit in cups/repos (52 files)

2012-05-25 Thread andyrtr
Date: Friday, May 25, 2012 @ 12:49:23
  Author: andyrtr
Revision: 159510

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

Added:
  cups/repos/extra-i686/PKGBUILD
(from rev 159509, cups/trunk/PKGBUILD)
  cups/repos/extra-i686/cups
(from rev 159509, cups/trunk/cups)
  cups/repos/extra-i686/cups-avahi-1-config.patch
(from rev 159509, cups/trunk/cups-avahi-1-config.patch)
  cups/repos/extra-i686/cups-avahi-2-backend.patch
(from rev 159509, cups/trunk/cups-avahi-2-backend.patch)
  cups/repos/extra-i686/cups-avahi-3-timeouts.patch
(from rev 159509, cups/trunk/cups-avahi-3-timeouts.patch)
  cups/repos/extra-i686/cups-avahi-4-poll.patch
(from rev 159509, cups/trunk/cups-avahi-4-poll.patch)
  cups/repos/extra-i686/cups-avahi-5-services.patch
(from rev 159509, cups/trunk/cups-avahi-5-services.patch)
  cups/repos/extra-i686/cups-no-export-ssllibs.patch
(from rev 159509, cups/trunk/cups-no-export-ssllibs.patch)
  cups/repos/extra-i686/cups-no-gcrypt.patch
(from rev 159509, cups/trunk/cups-no-gcrypt.patch)
  cups/repos/extra-i686/cups-no-gzip-man.patch
(from rev 159509, cups/trunk/cups-no-gzip-man.patch)
  cups/repos/extra-i686/cups.install
(from rev 159509, cups/trunk/cups.install)
  cups/repos/extra-i686/cups.logrotate
(from rev 159509, cups/trunk/cups.logrotate)
  cups/repos/extra-i686/cups.pam
(from rev 159509, cups/trunk/cups.pam)
  cups/repos/extra-x86_64/PKGBUILD
(from rev 159509, cups/trunk/PKGBUILD)
  cups/repos/extra-x86_64/cups
(from rev 159509, cups/trunk/cups)
  cups/repos/extra-x86_64/cups-avahi-1-config.patch
(from rev 159509, cups/trunk/cups-avahi-1-config.patch)
  cups/repos/extra-x86_64/cups-avahi-2-backend.patch
(from rev 159509, cups/trunk/cups-avahi-2-backend.patch)
  cups/repos/extra-x86_64/cups-avahi-3-timeouts.patch
(from rev 159509, cups/trunk/cups-avahi-3-timeouts.patch)
  cups/repos/extra-x86_64/cups-avahi-4-poll.patch
(from rev 159509, cups/trunk/cups-avahi-4-poll.patch)
  cups/repos/extra-x86_64/cups-avahi-5-services.patch
(from rev 159509, cups/trunk/cups-avahi-5-services.patch)
  cups/repos/extra-x86_64/cups-no-export-ssllibs.patch
(from rev 159509, cups/trunk/cups-no-export-ssllibs.patch)
  cups/repos/extra-x86_64/cups-no-gcrypt.patch
(from rev 159509, cups/trunk/cups-no-gcrypt.patch)
  cups/repos/extra-x86_64/cups-no-gzip-man.patch
(from rev 159509, cups/trunk/cups-no-gzip-man.patch)
  cups/repos/extra-x86_64/cups.install
(from rev 159509, cups/trunk/cups.install)
  cups/repos/extra-x86_64/cups.logrotate
(from rev 159509, cups/trunk/cups.logrotate)
  cups/repos/extra-x86_64/cups.pam
(from rev 159509, cups/trunk/cups.pam)
Deleted:
  cups/repos/extra-i686/PKGBUILD
  cups/repos/extra-i686/cups
  cups/repos/extra-i686/cups-avahi-1-config.patch
  cups/repos/extra-i686/cups-avahi-2-backend.patch
  cups/repos/extra-i686/cups-avahi-3-timeouts.patch
  cups/repos/extra-i686/cups-avahi-4-poll.patch
  cups/repos/extra-i686/cups-avahi-5-services.patch
  cups/repos/extra-i686/cups-no-export-ssllibs.patch
  cups/repos/extra-i686/cups-no-gcrypt.patch
  cups/repos/extra-i686/cups-no-gzip-man.patch
  cups/repos/extra-i686/cups.install
  cups/repos/extra-i686/cups.logrotate
  cups/repos/extra-i686/cups.pam
  cups/repos/extra-x86_64/PKGBUILD
  cups/repos/extra-x86_64/cups
  cups/repos/extra-x86_64/cups-avahi-1-config.patch
  cups/repos/extra-x86_64/cups-avahi-2-backend.patch
  cups/repos/extra-x86_64/cups-avahi-3-timeouts.patch
  cups/repos/extra-x86_64/cups-avahi-4-poll.patch
  cups/repos/extra-x86_64/cups-avahi-5-services.patch
  cups/repos/extra-x86_64/cups-no-export-ssllibs.patch
  cups/repos/extra-x86_64/cups-no-gcrypt.patch
  cups/repos/extra-x86_64/cups-no-gzip-man.patch
  cups/repos/extra-x86_64/cups.install
  cups/repos/extra-x86_64/cups.logrotate
  cups/repos/extra-x86_64/cups.pam

---+
 extra-i686/PKGBUILD   |  334 +--
 extra-i686/cups   |  136 -
 extra-i686/cups-avahi-1-config.patch  |   84 
 extra-i686/cups-avahi-2-backend.patch | 2236 
 extra-i686/cups-avahi-3-timeouts.patch|  762 
 extra-i686/cups-avahi-4-poll.patch| 1058 +--
 extra-i686/cups-avahi-5-services.patch| 2544 ++--
 extra-i686/cups-no-export-ssllibs.patch   |   24 
 extra-i686/cups-no-gcrypt.patch   |   76 
 extra-i686/cups-no-gzip-man.patch |   36 
 extra-i686/cups.install   |   52 
 extra-i686/cups.logrotate |   16 
 extra-i686/cups.pam   |6 
 extra-x86_64/PKGBUILD |  334 +--
 extra-x86_64/cups |  136 -
 extra-x86_64/cups-avahi-1-config.patch|   84 
 extra-x86_64/cups-avahi-2-backend.patch   | 2236 
 extra-x86_64/cups-avahi-3-timeouts.patch  |  762 
 extra-x86_64/cups-avahi-4-poll.patch  | 1058 

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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 13:30:42
  Author: andrea
Revision: 159511

new kdelibs dependence

Added:
  herqq/
  herqq/repos/
  herqq/trunk/
  herqq/trunk/PKGBUILD

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

Added: herqq/trunk/PKGBUILD
===
--- herqq/trunk/PKGBUILD(rev 0)
+++ herqq/trunk/PKGBUILD2012-05-25 17:30:42 UTC (rev 159511)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=herqq
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=A software library for building UPnP devices (HUPnP)
+arch=('i686' 'x86_64')
+url=http://www.herqq.org/;
+license=('GPL')
+depends=('qt')
+source=(http://downloads.sourceforge.net/hupnp/${pkgname}-${pkgver}.zip;)
+md5sums=('45a0632f7c7b64bc0fdab852d36c1e61')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  qmake PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make INSTALL_ROOT=${pkgdir} install
+}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 13:32:07
  Author: andrea
Revision: 159512

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

Added:
  herqq/repos/extra-i686/
  herqq/repos/extra-i686/PKGBUILD
(from rev 159511, herqq/trunk/PKGBUILD)
  herqq/repos/extra-x86_64/
  herqq/repos/extra-x86_64/PKGBUILD
(from rev 159511, herqq/trunk/PKGBUILD)

---+
 extra-i686/PKGBUILD   |   24 
 extra-x86_64/PKGBUILD |   24 
 2 files changed, 48 insertions(+)

Copied: herqq/repos/extra-i686/PKGBUILD (from rev 159511, herqq/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-05-25 17:32:07 UTC (rev 159512)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=herqq
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=A software library for building UPnP devices (HUPnP)
+arch=('i686' 'x86_64')
+url=http://www.herqq.org/;
+license=('GPL')
+depends=('qt')
+source=(http://downloads.sourceforge.net/hupnp/${pkgname}-${pkgver}.zip;)
+md5sums=('45a0632f7c7b64bc0fdab852d36c1e61')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  qmake PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make INSTALL_ROOT=${pkgdir} install
+}

Copied: herqq/repos/extra-x86_64/PKGBUILD (from rev 159511, 
herqq/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-05-25 17:32:07 UTC (rev 159512)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=herqq
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=A software library for building UPnP devices (HUPnP)
+arch=('i686' 'x86_64')
+url=http://www.herqq.org/;
+license=('GPL')
+depends=('qt')
+source=(http://downloads.sourceforge.net/hupnp/${pkgname}-${pkgver}.zip;)
+md5sums=('45a0632f7c7b64bc0fdab852d36c1e61')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  qmake PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make INSTALL_ROOT=${pkgdir} install
+}



[arch-commits] Commit in (5 files)

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 13:35:43
  Author: andrea
Revision: 159513

split from kde-runtime

Added:
  nepomuk-core/
  nepomuk-core/kde-unstable/
  nepomuk-core/kde-unstable/PKGBUILD
  nepomuk-core/repos/
  nepomuk-core/trunk/

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

Added: nepomuk-core/kde-unstable/PKGBUILD
===
--- nepomuk-core/kde-unstable/PKGBUILD  (rev 0)
+++ nepomuk-core/kde-unstable/PKGBUILD  2012-05-25 17:35:43 UTC (rev 159513)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=nepomuk-core
+pkgver=4.8.80
+pkgrel=1
+pkgdesc=Contains the central Nepomuk services like file indexing, file system 
monitoring, query, storage, client libraries
+url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-core;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4' 'doxygen')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('6d1a84f51018476b2fe05b47c265bd6d182335aa')
+
+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
+}


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


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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 13:57:23
  Author: andrea
Revision: 159514

fixes

Modified:
  nepomuk-core/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-05-25 17:35:43 UTC (rev 159513)
+++ PKGBUILD2012-05-25 17:57:23 UTC (rev 159514)
@@ -26,4 +26,11 @@
 package() {
   cd ${srcdir}/build
   make DESTDIR=${pkgdir} install
+
+  # Fix the python shebang
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+${pkgdir}/usr/bin/nepomuk-simpleresource-rcgen
+
+  # Fix conflict
+  rm ${pkgdir}/usr/bin/nepomuk-rcgen
 }



[arch-commits] Commit in (4 files)

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 14:25:32
  Author: andrea
Revision: 159515

New kdepim-runtime dependence

Added:
  libkgoogle/
  libkgoogle/repos/
  libkgoogle/trunk/
  libkgoogle/trunk/PKGBUILD

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

Added: libkgoogle/trunk/PKGBUILD
===
--- libkgoogle/trunk/PKGBUILD   (rev 0)
+++ libkgoogle/trunk/PKGBUILD   2012-05-25 18:25:32 UTC (rev 159515)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkgoogle
+pkgver=0.3.1
+pkgrel=1
+pkgdesc=A KDE-based library for accessing various Google services via their 
public API
+url='https://projects.kde.org/projects/kdereview/libkgoogle'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdepimlibs' 'qjson')
+makedepends=('cmake' 'automoc4' 'boost')
+replaces=('akonadi-google')
+conflicts=('akonadi-google')
+source=(http://www.progdan.cz/wp-content/uploads/akonadi-google-${pkgver}.tar.gz;)
+md5sums=('fed8d9082547835ab916edd219831cf6')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../akonadi-google-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}


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


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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 14:26:22
  Author: andrea
Revision: 159516

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

Added:
  libkgoogle/repos/extra-i686/
  libkgoogle/repos/extra-i686/PKGBUILD
(from rev 159515, libkgoogle/trunk/PKGBUILD)
  libkgoogle/repos/extra-x86_64/
  libkgoogle/repos/extra-x86_64/PKGBUILD
(from rev 159515, libkgoogle/trunk/PKGBUILD)

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

Copied: libkgoogle/repos/extra-i686/PKGBUILD (from rev 159515, 
libkgoogle/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-05-25 18:26:22 UTC (rev 159516)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkgoogle
+pkgver=0.3.1
+pkgrel=1
+pkgdesc=A KDE-based library for accessing various Google services via their 
public API
+url='https://projects.kde.org/projects/kdereview/libkgoogle'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdepimlibs' 'qjson')
+makedepends=('cmake' 'automoc4' 'boost')
+replaces=('akonadi-google')
+conflicts=('akonadi-google')
+source=(http://www.progdan.cz/wp-content/uploads/akonadi-google-${pkgver}.tar.gz;)
+md5sums=('fed8d9082547835ab916edd219831cf6')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../akonadi-google-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Copied: libkgoogle/repos/extra-x86_64/PKGBUILD (from rev 159515, 
libkgoogle/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-05-25 18:26:22 UTC (rev 159516)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkgoogle
+pkgver=0.3.1
+pkgrel=1
+pkgdesc=A KDE-based library for accessing various Google services via their 
public API
+url='https://projects.kde.org/projects/kdereview/libkgoogle'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdepimlibs' 'qjson')
+makedepends=('cmake' 'automoc4' 'boost')
+replaces=('akonadi-google')
+conflicts=('akonadi-google')
+source=(http://www.progdan.cz/wp-content/uploads/akonadi-google-${pkgver}.tar.gz;)
+md5sums=('fed8d9082547835ab916edd219831cf6')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../akonadi-google-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:58:34
  Author: andrea
Revision: 159517

KDE 4.9

Added:
  kdelibs/kde-unstable/
Modified:
  kdelibs/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:58:34 UTC (rev 159517)
@@ -3,22 +3,23 @@
 # Contributor: Pierre Schmitz pie...@archlinux.de
 
 pkgname=kdelibs
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=KDE Core Libraries
 arch=('i686' 'x86_64')
-url='http://www.kde.org'
+url='https://projects.kde.org/projects/kde/kdelibs'
 license=('GPL' 'LGPL' 'FDL')
 depends=('strigi' 'attica' 'libxss' 'soprano' 'krb5' 'grantlee'
 'shared-desktop-ontologies' 'qca' 'libdbusmenu-qt' 'polkit-qt'
 'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr'
-'docbook-xsl' 'upower' 'udisks' 'libxcursor' 'phonon' 'qtwebkit')
+'docbook-xsl' 'upower' 'udisks' 'libxcursor' 'phonon' 'qtwebkit'
+'media-player-info' 'herqq')
 makedepends=('cmake' 'automoc4' 'avahi' 'libgl' 'hspell')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
 'kde-applications-menu.patch' 'archlinux-menu.patch'
 'use-pythondontwritebytecode.patch')
-sha1sums=('50633efa4ea2a133e51bf55286ff754c46f2eae2'
+sha1sums=('769f86e07cd23fe7a12afc66fbbea015c090a16f'
   '86ee8c8660f19de8141ac99cd6943964d97a1ed7'
   '63a850ab4196b9d06934f2b4a13acd9f7739bc67'
   'a1e35760d5b4e29471ad357c963a343c67200f32')



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:58:37
  Author: andrea
Revision: 159518

KDE 4.9

Added:
  kdepimlibs/kde-unstable/
Modified:
  kdepimlibs/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:58:37 UTC (rev 159518)
@@ -3,30 +3,29 @@
 # Contributor: Pierre Schmitz pie...@archlinux.de
 
 pkgname=kdepimlibs
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=KDE PIM Libraries
 arch=('i686' 'x86_64')
-url='http://www.kde.org'
+url='https://projects.kde.org/projects/kde/kdepimlibs'
 license=('GPL' 'LGPL')
 depends=('kdelibs' 'gpgme' 'akonadi' 'libical' 'prison')
 makedepends=('cmake' 'automoc4' 'boost' 'cyrus-sasl')
 install='kdepimlibs.install'
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('453badec44fa2fd8b551fc9f8df2d51c88930dca')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('ae808daa00e5d8a5fa3f62777e311391d2412c7c')
 
 build() {
-   cd ${srcdir}
-   mkdir build
-   cd build
-   cmake ../${pkgname}-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_SKIP_RPATH=ON \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
+  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
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
 }



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:58:39
  Author: andrea
Revision: 159519

KDE 4.9

Added:
  oxygen-icons/kde-unstable/
Modified:
  oxygen-icons/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:58:39 UTC (rev 159519)
@@ -5,15 +5,15 @@
 pkgbase=oxygen-icons
 pkgname=('oxygen-icons'
  'oxygen-icons-svg')
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=The Oxygen Icon Theme
 arch=('any')
 url='http://www.oxygen-icons.org/'
 license=('LGPL')
 makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('6057679500867f2438b65692c4073b0d51894554')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('9f5284c72c59ac622b9ac48e2e8e2a386cdfd198')
 
 build() {
cd $srcdir



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:58:42
  Author: andrea
Revision: 159520

KDE 4.9

Added:
  kdebase-runtime/kde-unstable/
Modified:
  kdebase-runtime/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:58:42 UTC (rev 159520)
@@ -3,20 +3,21 @@
 # Contributor: Pierre Schmitz pie...@archlinux.de
 
 pkgname=kdebase-runtime
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
-pkgdesc=KDE Base Runtime Environment
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
 arch=('i686' 'x86_64')
-url='http://www.kde.org'
+url='https://projects.kde.org/projects/kde/kde-runtime'
 license=('GPL' 'LGPL')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth')
+depends=('kdepimlibs' 'nepomuk-core' 'smbclient' 'libssh' 'libcanberra' 
'oxygen-icons'
+'xorg-xauth' 'kactivities')
 makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager')
 optdepends=('htdig: to build the search index in khelpcenter'
 'rarian: needed by khelpcenter'
 'gdb: drkonq crash handler')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('500ada503708aa89e2cbfa3ddb6353c3d350d96f')
+source=(http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('2ef106862e33a8fc2b936a875ab87e581d25d2ee')
 
 build() {
 cd ${srcdir}
@@ -35,9 +36,9 @@
cd $srcdir/build
make DESTDIR=$pkgdir install
rm -f ${pkgdir}/usr/share/icons/hicolor/index.theme
-   ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
 
-# Fix Python2 path
-sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
-  ${pkgdir}/usr/bin/nepomuk-simpleresource-rcgen
+ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
+
+# Fix conflict
+rm ${pkgdir}/usr/lib/libnepomukcommon.so
 }



[arch-commits] Commit in kdepim-runtime (3 files)

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:58:45
  Author: andrea
Revision: 159521

KDE 4.9

Added:
  kdepim-runtime/kde-unstable/
Modified:
  kdepim-runtime/kde-unstable/PKGBUILD
Deleted:
  kdepim-runtime/kde-unstable/fix-carddav-support.patch

---+
 PKGBUILD  |   21 -
 fix-carddav-support.patch |   26 --
 2 files changed, 8 insertions(+), 39 deletions(-)

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:58:45 UTC (rev 159521)
@@ -3,24 +3,19 @@
 # Contributor: Pierre Schmitz pie...@archlinux.de
 
 pkgname=kdepim-runtime
-pkgver=4.8.3
-pkgrel=2
-pkgdesc='KDE PIM Runtime Environment'
+pkgver=4.8.80
+pkgrel=1
+pkgdesc='Extends the functionality of kdepim'
 arch=('i686' 'x86_64')
-url='http://www.kde.org'
+url='https://projects.kde.org/projects/kde/kdepim-runtime'
 license=('GPL' 'LGPL' 'FDL')
-depends=('kdepimlibs' 'kdebase-runtime')
+depends=('kdebase-runtime' 'libkgoogle')
 makedepends=('cmake' 'automoc4' 'boost')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
-'fix-carddav-support.patch')
-sha1sums=('f1c6691522113887dc5f098678ccbbacfecb9390'
-  '1362bc04e82a3fdf870578c051a2e16170c43e86')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('1c9b97f2e562edeebda926b16f8b97a257b000d0')
 
 build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-patch -p1 -i ${srcdir}/fix-carddav-support.patch
-
 cd ${srcdir}
mkdir build
cd build

Deleted: kde-unstable/fix-carddav-support.patch
===
--- trunk/fix-carddav-support.patch 2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/fix-carddav-support.patch  2012-05-25 19:58:45 UTC (rev 
159521)
@@ -1,26 +0,0 @@
-commit bec63a313160ec6dc1833029d5e99746779ed3f4
-Author: Gregory Oestreicher g...@kamago.net
-Date:   Tue May 15 21:19:17 2012 +0200
-
-Add a prop-filter in the CardDAV requests
-
-BUG: 299482
-FIXED-IN: 4.8.4
-
-diff --git a/resources/dav/protocols/carddavprotocol.cpp 
b/resources/dav/protocols/carddavprotocol.cpp
-index 38eca17..9c58653 100644
 a/resources/dav/protocols/carddavprotocol.cpp
-+++ b/resources/dav/protocols/carddavprotocol.cpp
-@@ -35,6 +35,12 @@ CarddavProtocol::CarddavProtocol()
-   propElement.appendChild( document.createElementNS( DAV:, resourcetype ) 
);
-   propElement.appendChild( document.createElementNS( DAV:, getetag ) );
- 
-+  QDomElement filterElement = document.createElementNS( 
urn:ietf:params:xml:ns:carddav, filter );
-+  queryElement.appendChild( filterElement );
-+  QDomElement propfilterElement = document.createElementNS( 
urn:ietf:params:xml:ns:carddav, prop-filter );
-+  propfilterElement.setAttribute( name, FN );
-+  filterElement.appendChild( propfilterElement );
-+
-   mItemsQueries  document;
- }
- 



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:58:47
  Author: andrea
Revision: 159522

KDE 4.9

Added:
  kdebindings-smokegen/kde-unstable/
Modified:
  kdebindings-smokegen/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:58:47 UTC (rev 159522)
@@ -2,17 +2,17 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-smokegen
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=A general purpose C++ parser with a plugin infrastructure
-url=http://kde.org/;
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/stable/${pkgver}/src/smokegen-${pkgver}.tar.xz;)
-sha1sums=('0ea29388a8a8116e8b4fa7fe6e8a0b270e99cdcd')
+source=(http://download.kde.org/unstable/${pkgver}/src/smokegen-${pkgver}.tar.xz;)
+sha1sums=('3f98d0a97db5604a924fdf2e654640b0f257486a')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:58:50
  Author: andrea
Revision: 159523

KDE 4.9

Added:
  kdebindings-smokeqt/kde-unstable/
Modified:
  kdebindings-smokeqt/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:58:50 UTC (rev 159523)
@@ -2,18 +2,18 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-smokeqt
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Language independent library for Qt bindings
-url=http://kde.org/;
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kdebindings')
-depends=('kdebase-runtime' 'qimageblitz' 'qscintilla' 'kdebindings-smokegen')
+depends=('kdebindings-smokegen' 'qimageblitz' 'qscintilla')
 makedepends=('cmake' 'automoc4')
 conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/stable/${pkgver}/src/smokeqt-${pkgver}.tar.xz;)
-sha1sums=('a1f5e5ed2a8ea94bf785771b2b43bf2dcb3b7808')
+source=(http://download.kde.org/unstable/${pkgver}/src/smokeqt-${pkgver}.tar.xz;)
+sha1sums=('8ecb3a8aa49a7095ae4c0b74949ba66cb4d63c2d')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:58:53
  Author: andrea
Revision: 159524

KDE 4.9

Added:
  kdegraphics-okular/kde-unstable/
Modified:
  kdegraphics-okular/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:58:53 UTC (rev 159524)
@@ -2,8 +2,8 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-okular
-pkgver=4.8.3
-pkgrel=2
+pkgver=4.8.80
+pkgrel=1
 pkgdesc='Document Viewer'
 arch=('i686' 'x86_64')
 url=http://kde.org/applications/graphics/okular/;
@@ -14,8 +14,8 @@
 makedepends=('cmake' 'automoc4')
 optdepends=('kdegraphics-mobipocket: mobipocket support')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/okular-${pkgver}.tar.xz;)
-sha1sums=('7c43076df3e9d6217e2a5cbb8ef6d8af89f8ae37')
+source=(http://download.kde.org/unstable/${pkgver}/src/okular-${pkgver}.tar.xz;)
+sha1sums=('01f5bccc92a12847d975ff39f5ae0861fbcefe7c')
 
 build() {
   cd ${srcdir}
@@ -23,7 +23,6 @@
   cd build
   cmake ../okular-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
 -DCMAKE_INSTALL_PREFIX=/usr
   make
 }



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:58:55
  Author: andrea
Revision: 159525

KDE 4.9

Added:
  kdesdk-kate/kde-unstable/
Modified:
  kdesdk-kate/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:58:55 UTC (rev 159525)
@@ -5,14 +5,14 @@
 pkgname=('kdebase-katepart'
  'kdebase-kwrite'
  'kdesdk-kate')
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 makedepends=('kdelibs ''cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/kate-${pkgver}.tar.xz;
+source=(http://download.kde.org/unstable/${pkgver}/src/kate-${pkgver}.tar.xz;
 'pkgbuild-syntax-highlight.patch')
-sha1sums=('100fcc86de792d3418ea0f9995233bdd8871d7f9'
+sha1sums=('4f757fe5fd2a49a0119b8cafb072d8e742189029'
   '0a928253bd2077f0264d96a6c8823c69c47b6a8d')
 
 build() {



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:58:59
  Author: andrea
Revision: 159526

KDE 4.9

Added:
  kdebindings-smokekde/kde-unstable/
Modified:
  kdebindings-smokekde/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:58:59 UTC (rev 159526)
@@ -2,19 +2,21 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-smokekde
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Language independent library for KDE bindings
-url=http://kde.org/;
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kdebindings')
 depends=('kdebindings-smokeqt')
 makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
  'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate')
+optdepends=('kdesdk-kate: Kate bindings'
+'ldegraphics-okular: Okular bindings')
 conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/stable/${pkgver}/src/smokekde-${pkgver}.tar.xz;)
-sha1sums=('b02b4b12dd5a23b2a87787bdde4491161d6a4e8d')
+source=(http://download.kde.org/unstable/${pkgver}/src/smokekde-${pkgver}.tar.xz;)
+sha1sums=('d349b9fe6ef29c0717d3faa831d2f2d1f0281290')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:01
  Author: andrea
Revision: 159527

KDE 4.9

Added:
  kdebindings-perlqt/kde-unstable/
Modified:
  kdebindings-perlqt/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:01 UTC (rev 159527)
@@ -2,17 +2,17 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-perlqt
-pkgver=4.8.3
-pkgrel=2
+pkgver=4.8.80
+pkgrel=1
 pkgdesc=Perl bindings for the Qt libraries
-url=http://kde.org/;
+url=https://projects.kde.org/projects/kde/kdebindings/perl/perlqt;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kdebindings')
 depends=('kdebindings-smokeqt' 'perl-list-moreutils')
 makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
-source=(http://download.kde.org/stable/${pkgver}/src/perlqt-${pkgver}.tar.xz;)
-sha1sums=('d0d0d5da1fd9c50bd19ff2bb49d6a71a2d97759f')
+source=(http://download.kde.org/unstable/${pkgver}/src/perlqt-${pkgver}.tar.xz;)
+sha1sums=('a0e7bbb60978c43dc6f888c3ee0e757d0eb14be0')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:04
  Author: andrea
Revision: 159528

KDE 4.9

Added:
  kdebindings-python/kde-unstable/
Modified:
  kdebindings-python/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:04 UTC (rev 159528)
@@ -4,15 +4,15 @@
 pkgbase=kdebindings-python
 pkgname=('kdebindings-python'
  'kdebindings-python2')
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
-url='http://kde.org/'
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kdebindings')
 makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
-source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('e88ef838b492802f401b0242205e87149c19d032')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('72bd95baeaf8ab71a66de6da8bba09e978e59bd2')
 
 build() {
   export PYTHONDONTWRITEBYTECODE=TRUE



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:07
  Author: andrea
Revision: 159529

KDE 4.9

Added:
  kdebindings-qyoto/kde-unstable/
Modified:
  kdebindings-qyoto/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:07 UTC (rev 159529)
@@ -2,18 +2,18 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-qyoto
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=.NET/Mono bindings for the Qt libraries
-url=http://kde.org/;
+url=https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kdebindings')
 depends=('kdebindings-smokeqt' 'mono')
 makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
 conflicts=('kdebindings-csharp')
-source=(http://download.kde.org/stable/${pkgver}/src/qyoto-${pkgver}.tar.xz;)
-sha1sums=('7d20a80fef76d4cdfb8d03a66e07b82074df69b0')
+source=(http://download.kde.org/unstable/${pkgver}/src/qyoto-${pkgver}.tar.xz;)
+sha1sums=('70b384fdc5509fcde8870e5aa1a08b285ef9d35f')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:09
  Author: andrea
Revision: 159530

KDE 4.9

Added:
  kdebindings-qtruby/kde-unstable/
Modified:
  kdebindings-qtruby/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:09 UTC (rev 159530)
@@ -2,18 +2,18 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-qtruby
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
-pkgdesc=Qt bindings for ruby
-url=http://kde.org/;
+pkgdesc=Ruby bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/ruby/qtruby;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kdebindings')
 depends=('kdebindings-smokeqt' 'ruby')
 makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
 conflicts=('kdebindings-ruby')
-source=(http://download.kde.org/stable/${pkgver}/src/qtruby-${pkgver}.tar.xz;)
-sha1sums=('aa88b382034cb66f283c200a10c04d3ba2170492')
+source=(http://download.kde.org/unstable/${pkgver}/src/qtruby-${pkgver}.tar.xz;)
+sha1sums=('8cf9bc95f95f72c00f32e0a867e20e5029b8bcbb')
 
 build() {
   cd ${srcdir}
@@ -22,7 +22,8 @@
   cmake ../qtruby-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCUSTOM_RUBY_SITE_LIB_DIR=`ruby -e 'puts 
RbConfig::CONFIG[vendorlibdir]'`
+-DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorlibdir]') \
+-DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorarchdir]')
   make
 }
 



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:14
  Author: andrea
Revision: 159531

KDE 4.9

Added:
  kactivities/kde-unstable/
Modified:
  kactivities/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:14 UTC (rev 159531)
@@ -2,16 +2,16 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kactivities
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
-pkgdesc='API for using and interacting with Activities'
-url='http://kde.org/'
+pkgdesc='API for using and interacting with the Activity Manager'
+url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
 license=('GPL' 'FDL')
 depends=('kdelibs')
 makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('de382701c5a9f8c04de78124a4b2c19f3707656c')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('e98929eff9d8c4102bc643cf44a06d28646ff8ce')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:17
  Author: andrea
Revision: 159532

KDE 4.9

Added:
  kdebase-workspace/kde-unstable/
Modified:
  kdebase-workspace/kde-unstable/PKGBUILD
Deleted:
  kdebase-workspace/kde-unstable/fix-krunner-crash.patch

-+
 PKGBUILD|   24 ++--
 fix-krunner-crash.patch |   13 -
 2 files changed, 10 insertions(+), 27 deletions(-)

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:17 UTC (rev 159532)
@@ -4,11 +4,11 @@
 
 pkgname=kdebase-workspace
 _pkgname=kde-workspace
-pkgver=4.8.3
-pkgrel=2
-pkgdesc=KDE Base Workspace
+pkgver=4.8.80
+pkgrel=1
+pkgdesc=Provides the interface and basic tools for the KDE workspace
 arch=('i686' 'x86_64')
-url='http://www.kde.org'
+url='https://projects.kde.org/projects/kde/kde-workspace'
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde')
 # note on libxdamage:
@@ -17,8 +17,8 @@
 depends=('kdepim-runtime' 'lm_sensors' 'libraw1394' 'libqalculate'
  'qimageblitz' 'polkit-kde' 'consolekit' 'xorg-xprop' 'libxdamage'
  'libxklavier' 'xorg-xsetroot' 'libxcomposite' 'libxinerama'
- 'xorg-xrdb' 'libgles' 'libegl' 'kactivities' 'libxres' 'libxtst'
- 'xorg-xrandr' 'xorg-xmessage')
+ 'xorg-xrdb' 'libgles' 'libegl' 'libxres' 'xorg-xrandr'
+ 'xorg-xmessage' 'libusb-compat')
 makedepends=('cmake' 'automoc4' 'boost' 'kdebindings-python2' 'networkmanager')
 optdepends=('kde-wallpapers: wallpapers for KDE Plasma Workspaces')
 install=${pkgname}.install
@@ -27,19 +27,17 @@
 'etc/pam.d/kde-np'
 'etc/pam.d/kscreensaver')
 options=('emptydirs')
-source=(http://download.kde.org/stable/${pkgver}/src/${_pkgname}-${pkgver}.tar.xz;
+source=(http://download.kde.org/unstable/${pkgver}/src/${_pkgname}-${pkgver}.tar.xz;
 'kdm' 'kde.pam' 'kde-np.pam' 'kscreensaver.pam'
-'fixpath.patch' 'terminate-server.patch' 'kdm-xinitrd.patch'
-'fix-krunner-crash.patch')
-sha1sums=('23dbd023f76769ba6ea77dbc11314eca504ad3d2'
+'fixpath.patch' 'terminate-server.patch' 'kdm-xinitrd.patch')
+sha1sums=('4d07acfeddf522d6354bb4ee9330cdf0be8d06de'
   '5db3a245201bd4a50e65aa2ef583cf5490e4f646'
   '712a90999bd429883dcef5dcaf288aace332ced8'
   'b321b5e613b60231330e606fdf1e124646148388'
   '106635aa1aae51d6f0668b1853f6c49a4fe9d3d8'
   'd7b5883f7e65c6839b1f65f94d58026673dd0226'
   'ac7bc292c865bc1ab8c02e6341aa7aeaf1a3'
-  'd509dac592bd8b310df27991b208c95b6d907514'
-  'f898561d2b32dead8195f0610141edf7d423d46c')
+  'd509dac592bd8b310df27991b208c95b6d907514')
 
 build() {
cd ${srcdir}/${_pkgname}-${pkgver}
@@ -47,8 +45,6 @@
patch -p0 -i ${srcdir}/fixpath.patch
patch -p0 -i ${srcdir}/terminate-server.patch

-patch -p1 -i ${srcdir}/fix-krunner-crash.patch
-
cd ${srcdir}
mkdir build
cd build

Deleted: kde-unstable/fix-krunner-crash.patch
===
--- trunk/fix-krunner-crash.patch   2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/fix-krunner-crash.patch2012-05-25 19:59:17 UTC (rev 
159532)
@@ -1,13 +0,0 @@
-diff --git a/libs/plasmagenericshell/panelshadows.cpp 
b/libs/plasmagenericshell/panelshadows.cpp
-index ee55571..2f45153 100644
 a/libs/plasmagenericshell/panelshadows.cpp
-+++ b/libs/plasmagenericshell/panelshadows.cpp
-@@ -122,7 +122,7 @@ void PanelShadows::Private::initPixmap(const QString 
element)
- {
- #ifdef Q_WS_X11
- QPixmap pix = q-pixmap(element);
--if (pix.handle() == 0) {
-+if (!pix.isNull()  pix.handle() == 0) {
- Pixmap xPix = XCreatePixmap(QX11Info::display(), 
QX11Info::appRootWindow(), pix.width(), pix.height(), 32);
- QPixmap tempPix = QPixmap::fromX11Pixmap(xPix, 
QPixmap::ExplicitlyShared);
- tempPix.fill(Qt::transparent);



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:20
  Author: andrea
Revision: 159533

KDE 4.9

Added:
  kdebase/kde-unstable/
Modified:
  kdebase/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:20 UTC (rev 159533)
@@ -12,15 +12,15 @@
  'kdebase-konqueror'
  'kdebase-lib'
  'kdebase-plasma')
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdebase')
 makedepends=('kdelibs' 'cmake' 'automoc4' 'tidyhtml')
-source=(http://download.kde.org/stable/${pkgver}/src/kde-baseapps-${pkgver}.tar.xz;)
-sha1sums=('593053e7fdd50b32e6f9264edf2a69e499ddc0a6')
+source=(http://download.kde.org/unstable/${pkgver}/src/kde-baseapps-${pkgver}.tar.xz;)
+sha1sums=('7057f83087295391c2bbbd1d75a79cf1ec696a20')
 
 build() {
cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:28
  Author: andrea
Revision: 159536

KDE 4.9

Added:
  libkdcraw/kde-unstable/
Modified:
  libkdcraw/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:28 UTC (rev 159536)
@@ -2,10 +2,10 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=libkdcraw
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=A C++ interface used to decode RAW picture
-url=http://kde.org/;
+url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkdcraw;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 depends=('kdelibs' 'lcms')
@@ -13,8 +13,8 @@
 replaces=('kdegraphics-libs')
 conflicts=('kdegraphics-libs')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('99fc4a00fe77df18aca53a8bdd0cfca79cab6e8b')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('d2b2e3ab0ca1a1ca58e73de0595ea3c3ebcb56c6')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:23
  Author: andrea
Revision: 159534

KDE 4.9

Added:
  libkdeedu/kde-unstable/
Modified:
  libkdeedu/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:23 UTC (rev 159534)
@@ -2,18 +2,18 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=libkdeedu
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Libraries used by KDE Education applications
-url=http://kde.org/;
+url=https://projects.kde.org/projects/kde/kdeedu/libkdeedu;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 depends=('kdelibs')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 replaces=('kdeedu-libkdeedu' 'kdeedu-data')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('6d7ce71dea0a4ee16cdec8cfaf3b6dbd64c3eaa0')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('d260aa9679ed0d9a7711b4e9311d4c8cb7e9c17d')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:31
  Author: andrea
Revision: 159537

KDE 4.9

Added:
  libkexiv2/kde-unstable/
Modified:
  libkexiv2/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:31 UTC (rev 159537)
@@ -2,18 +2,18 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=libkexiv2
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=A library to manipulate pictures metadata
-url=http://kde.org/;
+url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 depends=('kdelibs')
 makedepends=('cmake' 'automoc4')
 replaces=('kdegraphics-libs')
 conflicts=('kdegraphics-libs')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('6b7c6833479faa29916d3cc294a15f78c154c438')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('7693b3454d6dd0a77e01df6f160bb7721605db73')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:38
  Author: andrea
Revision: 159539

KDE 4.9

Added:
  libksane/kde-unstable/
Modified:
  libksane/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:38 UTC (rev 159539)
@@ -2,10 +2,10 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=libksane
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=An image scanning library
-url=http://kde.org/;
+url=https://projects.kde.org/projects/kde/kdegraphics/libs/libksane;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 depends=('kdelibs' 'sane')
@@ -13,8 +13,8 @@
 replaces=('kdegraphics-libs')
 conflicts=('kdegraphics-libs')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('ccacaec0d1a46689cdf5f5294f14b442d0f4317b')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('f5377bce072e80a122c5e2371076463f70d9a7f1')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:25
  Author: andrea
Revision: 159535

KDE 4.9

Added:
  kdeedu-marble/kde-unstable/
Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:25 UTC (rev 159535)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
@@ -13,8 +13,8 @@
 makedepends=('cmake' 'automoc4' 'gpsd')
 optdepends=('gpsd: gps support')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('d33d73d757b14a42640176b994ad5930ebc1df30')
+source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz;)
+sha1sums=('d3f6b27cda2710d48dfa2873dc09f4b0bccbcb09')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:35
  Author: andrea
Revision: 159538

KDE 4.9

Added:
  libkipi/kde-unstable/
Modified:
  libkipi/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:35 UTC (rev 159538)
@@ -2,10 +2,10 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=libkipi
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=An interface to use kipi-plugins from a KDE application
-url=http://kde.org/;
+url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkipi;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 depends=('kdelibs')
@@ -13,8 +13,8 @@
 replaces=('kdegraphics-libs')
 conflicts=('kdegraphics-libs')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('1646eca0521524eabcc8c1c97d8d2f85ff181cac')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('0e2335ab38e65fa33a93fed1d8f35c6984b20c30')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:41
  Author: andrea
Revision: 159540

KDE 4.9

Added:
  kdeedu-analitza/kde-unstable/
Modified:
  kdeedu-analitza/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:41 UTC (rev 159540)
@@ -2,17 +2,17 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-analitza
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=A library to add mathematical features to your program
-url=http://kde.org/;
+url=https://projects.kde.org/projects/kde/kdeedu/analitza;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdeedu')
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/analitza-${pkgver}.tar.xz;)
-sha1sums=('bec5927a68028b74193afb6e7f2a36f97ba25543')
+source=(http://download.kde.org/unstable/${pkgver}/src/analitza-${pkgver}.tar.xz;)
+sha1sums=('5ebeced5d8f4b2aa58e532d5c46511e01fe31f54')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:52
  Author: andrea
Revision: 159543

KDE 4.9

Added:
  kdeaccessibility-kmag/kde-unstable/
Modified:
  kdeaccessibility-kmag/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:52 UTC (rev 159543)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeaccessibility-kmag
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
 pkgdesc='Screen Magnifier'
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kmag-${pkgver}.tar.xz;)
-sha1sums=('20a72ae6eaf120bdc6449f8bf048688ade5c584a')
+source=(http://download.kde.org/unstable/${pkgver}/src/kmag-${pkgver}.tar.xz;)
+sha1sums=('8e4251fc8cf61a18816d5674ce4e353f5ab70560')
 
 build() {
   cd ${srcdir}



[arch-commits] Commit in kdeaccessibility-kmousetool (2 files)

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:55
  Author: andrea
Revision: 159544

KDE 4.9

Added:
  kdeaccessibility-kmousetool/kde-unstable/
Modified:
  kdeaccessibility-kmousetool/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:55 UTC (rev 159544)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeaccessibility-kmousetool
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
 pkgdesc='Clicks the mouse for you, reducing the effects of RSI'
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kmousetool-${pkgver}.tar.xz;)
-sha1sums=('95f888155714dbec9a886ab86c247eb695ea2999')
+source=(http://download.kde.org/unstable/${pkgver}/src/kmousetool-${pkgver}.tar.xz;)
+sha1sums=('8f7a55b3cb32ffe4cd098f5c66c8d6327d97e027')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:44
  Author: andrea
Revision: 159541

KDE 4.9

Added:
  kdeaccessibility-jovie/kde-unstable/
Modified:
  kdeaccessibility-jovie/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:44 UTC (rev 159541)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeaccessibility-jovie
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
 pkgdesc='A text to speech application'
@@ -13,8 +13,8 @@
 makedepends=('cmake' 'automoc4')
 replaces=('kdeaccessibility-kttsd')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/jovie-${pkgver}.tar.xz;)
-sha1sums=('d8ec774abfc4ec4f8e43103365b37ef99f62aa3f')
+source=(http://download.kde.org/unstable/${pkgver}/src/jovie-${pkgver}.tar.xz;)
+sha1sums=('5b1f25ece3e8b0bcb40b72be493c9b7524880b26')
 
 build() {
   cd ${srcdir}



[arch-commits] Commit in kdeaccessibility-kaccessible (2 files)

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:49
  Author: andrea
Revision: 159542

KDE 4.9

Added:
  kdeaccessibility-kaccessible/kde-unstable/
Modified:
  kdeaccessibility-kaccessible/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:49 UTC (rev 159542)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeaccessibility-kaccessible
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
 pkgdesc='Provides accessibility services like focus tracking and a 
screenreader'
@@ -11,8 +11,8 @@
 groups=('kde' 'kdeaccessibility')
 depends=('kdelibs' 'speech-dispatcher')
 makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/kaccessible-${pkgver}.tar.xz;)
-sha1sums=('50b2c1b5df4652c7ba078820d1e073ef14c8b9ee')
+source=(http://download.kde.org/unstable/${pkgver}/src/kaccessible-${pkgver}.tar.xz;)
+sha1sums=('b38912943052b797b5568bae7bb2a2ff31839d84')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 15:59:58
  Author: andrea
Revision: 159545

KDE 4.9

Added:
  kdeaccessibility-kmouth/kde-unstable/
Modified:
  kdeaccessibility-kmouth/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 19:59:58 UTC (rev 159545)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeaccessibility-kmouth
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
 pkgdesc='Speech Synthesizer Frontend'
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kmouth-${pkgver}.tar.xz;)
-sha1sums=('2bf8356df5207de3a7c95a931070fb6b2d0fba6f')
+source=(http://download.kde.org/unstable/${pkgver}/src/kmouth-${pkgver}.tar.xz;)
+sha1sums=('6f11f249f3b2fb314a2536c23da2ccea9f491762')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:00
  Author: andrea
Revision: 159546

KDE 4.9

Added:
  kdeadmin/kde-unstable/
Modified:
  kdeadmin/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:00 UTC (rev 159546)
@@ -7,16 +7,16 @@
  'kdeadmin-ksystemlog'
  'kdeadmin-kuser'
  'kdeadmin-system-config-printer-kde')
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdeadmin')
 makedepends=('cmake' 'automoc4' 'kdebindings-python2' 
'system-config-printer-common')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
 'syslog-path.patch')
-sha1sums=('6de6dd896c43fa6825e569b1c1eea522454e152c'
+sha1sums=('3c9016b7ec0e174c9744dd340d237086d90aa345'
   '20095ce6e0f3e5b6800a7c6e52de6fddba62c031')
 
 build() {



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:03
  Author: andrea
Revision: 159547

KDE 4.9

Added:
  kdeartwork/kde-unstable/
Modified:
  kdeartwork/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:03 UTC (rev 159547)
@@ -13,7 +13,7 @@
  'kdeartwork-styles'
  'kdeartwork-wallpapers'
  'kdeartwork-weatherwallpapers')
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -21,8 +21,8 @@
 groups=('kde' 'kdeartwork')
 makedepends=('cmake' 'automoc4' 'xscreensaver' 'eigen' 'kdebase-workspace'
  'libkexiv2')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('fa2dd6f3a1b9e82564b1250be003577c4ef77185')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('0a021b7c4b8595936c6721061b9590bbaecd642e')
 
 build() {
cd $srcdir



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:07
  Author: andrea
Revision: 159548

KDE 4.9

Added:
  kdebase-konsole/kde-unstable/
Modified:
  kdebase-konsole/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:07 UTC (rev 159548)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebase-konsole
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://kde.org/applications/system/konsole/'
@@ -11,8 +11,8 @@
 groups=('kde' 'kdebase')
 depends=('kdebase-runtime' 'kdebase-lib')
 makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/konsole-${pkgver}.tar.xz;)
-sha1sums=('f9dff6e2d66c7533474146b6a4b19112f866796b')
+source=(http://download.kde.org/unstable/${pkgver}/src/konsole-${pkgver}.tar.xz;)
+sha1sums=('e7c471637fd052261521716882f0d543161692c4')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:13
  Author: andrea
Revision: 159550

KDE 4.9

Added:
  kdebindings-korundum/kde-unstable/
Modified:
  kdebindings-korundum/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:13 UTC (rev 159550)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-korundum
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=KDE bindings for ruby
 url=http://kde.org/;
@@ -14,9 +14,9 @@
  'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate')
 conflicts=('kdebindings-ruby')
 options=('!makeflags')
-source=(http://download.kde.org/stable/${pkgver}/src/korundum-${pkgver}.tar.xz;
+source=(http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.xz;
 'korundum-4.8.0-ruby19.patch')
-sha1sums=('e949fae573d1399e67830c3eef0ebaa853905026'
+sha1sums=('0beb858c76fe21d6575ee48cb8490013ff360ad7'
   '73299f56a891d8a5475ac07dd485619859312f70')
 
 build() {



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:16
  Author: andrea
Revision: 159551

KDE 4.9

Added:
  kdebindings-kross/kde-unstable/
Modified:
  kdebindings-kross/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:16 UTC (rev 159551)
@@ -5,15 +5,15 @@
 pkgname=('kdebindings-kross-python'
 # 'kdebindings-kross-ruby'
  'kdebindings-kross-java')
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 url=http://kde.org/;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kdebindings')
 makedepends=('kdelibs' 'cmake' 'automoc4' 'python2' 'java-environment')
-source=(http://download.kde.org/stable/${pkgver}/src/kross-interpreters-${pkgver}.tar.xz;)
-sha1sums=('1191563f2a925a261b40d61b62f1d1b7e01238aa')
+source=(http://download.kde.org/unstable/${pkgver}/src/kross-interpreters-${pkgver}.tar.xz;)
+sha1sums=('829814ae8753ffe4c7dc44a733c022b5447d7fa5')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:22
  Author: andrea
Revision: 159553

KDE 4.9

Added:
  kdeedu-blinken/kde-unstable/
Modified:
  kdeedu-blinken/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:22 UTC (rev 159553)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-blinken
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Memory Enhancement Game
 url=http://kde.org/applications/education/blinken/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/blinken-${pkgver}.tar.xz;)
-sha1sums=('66b94eb99a9e2075465fd60d8e5635d4b064ecb9')
+source=(http://download.kde.org/unstable/${pkgver}/src/blinken-${pkgver}.tar.xz;)
+sha1sums=('30070f8de37593ae25c764d269fc6dbcf688f82a')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:25
  Author: andrea
Revision: 159554

KDE 4.9

Added:
  kdeedu-cantor/kde-unstable/
Modified:
  kdeedu-cantor/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:25 UTC (rev 159554)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-cantor
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=KDE Frontend to Mathematical Software
 url=http://kde.org/applications/education/cantor/;
@@ -15,8 +15,8 @@
 'octave: Octave backend'
 'r: R backend')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/cantor-${pkgver}.tar.xz;)
-sha1sums=('e4aba48e30a4bee444f7e01eab807619908cd903')
+source=(http://download.kde.org/unstable/${pkgver}/src/cantor-${pkgver}.tar.xz;)
+sha1sums=('cdb2842805d8a35f465101b5efe6906ecf9a6bfe')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:10
  Author: andrea
Revision: 159549

KDE 4.9

Added:
  kdebindings-kimono/kde-unstable/
Modified:
  kdebindings-kimono/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:10 UTC (rev 159549)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-kimono
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=.NET/Mono bindings for the KDE libraries
 url=http://kde.org/;
@@ -12,8 +12,8 @@
 depends=('kdebindings-qyoto' 'kdebindings-smokekde')
 makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost' 'kdepimlibs')
 conflicts=('kdebindings-csharp')
-source=(http://download.kde.org/stable/${pkgver}/src/kimono-${pkgver}.tar.xz;)
-sha1sums=('b509d3511204d858049009c827a5ffe395296124')
+source=(http://download.kde.org/unstable/${pkgver}/src/kimono-${pkgver}.tar.xz;)
+sha1sums=('348529351170cba46ea3bb071416f54cedd05f9c')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:19
  Author: andrea
Revision: 159552

KDE 4.9

Added:
  kdebindings-perlkde/kde-unstable/
Modified:
  kdebindings-perlkde/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:19 UTC (rev 159552)
@@ -2,8 +2,8 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-perlkde
-pkgver=4.8.3
-pkgrel=2
+pkgver=4.8.80
+pkgrel=1
 pkgdesc=Perl bindings for the KDE libraries
 url=http://kde.org/;
 arch=('i686' 'x86_64')
@@ -12,8 +12,8 @@
 depends=('kdebindings-perlqt' 'kdebindings-smokekde')
 makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'kdepimlibs'
 'kdegraphics-okular' 'kdesdk-kate')
-source=(http://download.kde.org/stable/${pkgver}/src/perlkde-${pkgver}.tar.xz;)
-sha1sums=('bfc1c3a86789832cf7747dfc854d586d86c10a99')
+source=(http://download.kde.org/unstable/${pkgver}/src/perlkde-${pkgver}.tar.xz;)
+sha1sums=('ac8fddd40ee3020ce8a344a25810b37675a38bd2')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:38
  Author: andrea
Revision: 159557

KDE 4.9

Added:
  kdeedu-kanagram/kde-unstable/
Modified:
  kdeedu-kanagram/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:38 UTC (rev 159557)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-kanagram
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Letter Order Game
 url=http://kde.org/applications/education/kanagram/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime' 'libkdeedu')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kanagram-${pkgver}.tar.xz;)
-sha1sums=('36036b57bec5896945e5edaeb183120df4b90ed1')
+source=(http://download.kde.org/unstable/${pkgver}/src/kanagram-${pkgver}.tar.xz;)
+sha1sums=('311c23ac72fda6c425b4a74c687e41fb730ec3de')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:54
  Author: andrea
Revision: 159562

KDE 4.9

Added:
  kdeedu-kiten/kde-unstable/
Modified:
  kdeedu-kiten/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:54 UTC (rev 159562)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-kiten
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Japanese Reference/Study Tool
 url=http://kde.org/applications/education/kiten/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kiten-${pkgver}.tar.xz;)
-sha1sums=('8d94c45907a18db22117801ab1773cc43afb8c23')
+source=(http://download.kde.org/unstable/${pkgver}/src/kiten-${pkgver}.tar.xz;)
+sha1sums=('04502f5b20493ec396c31e844ceba4aff09d6b30')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:57
  Author: andrea
Revision: 159563

KDE 4.9

Added:
  kdeedu-klettres/kde-unstable/
Modified:
  kdeedu-klettres/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:57 UTC (rev 159563)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-klettres
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Learn The Alphabet
 url=http://kde.org/applications/education/klettres/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/klettres-${pkgver}.tar.xz;)
-sha1sums=('e0156053117b07bf0a81a4258f7cce6f0ba4f60e')
+source=(http://download.kde.org/unstable/${pkgver}/src/klettres-${pkgver}.tar.xz;)
+sha1sums=('7e13e0b73dfb7b99372c636f5d8ec52112869cb7')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:41
  Author: andrea
Revision: 159558

KDE 4.9

Added:
  kdeedu-kbruch/kde-unstable/
Modified:
  kdeedu-kbruch/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:41 UTC (rev 159558)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-kbruch
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Exercise Fractions
 url=http://kde.org/applications/education/kbruch/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kbruch-${pkgver}.tar.xz;)
-sha1sums=('6cbb2ef86950e306bb4824e190e7689f8dacca2e')
+source=(http://download.kde.org/unstable/${pkgver}/src/kbruch-${pkgver}.tar.xz;)
+sha1sums=('38277c19633c864fefbeb337eb27bdbbb851fdf8')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:28
  Author: andrea
Revision: 159555

KDE 4.9

Added:
  kdeedu-kalgebra/kde-unstable/
Modified:
  kdeedu-kalgebra/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:28 UTC (rev 159555)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-kalgebra
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Graph Calculator
 url=http://kde.org/applications/education/kalgebra/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime' 'libkdeedu' 'kdeedu-analitza')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kalgebra-${pkgver}.tar.xz;)
-sha1sums=('bea6a48ff5ae650e95fd443134dced3b08b169d5')
+source=(http://download.kde.org/unstable/${pkgver}/src/kalgebra-${pkgver}.tar.xz;)
+sha1sums=('890a56c4f302019015fc3f85ef044a638f35d01e')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:00
  Author: andrea
Revision: 159564

KDE 4.9

Added:
  kdeedu-kmplot/kde-unstable/
Modified:
  kdeedu-kmplot/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:00 UTC (rev 159564)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-kmplot
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Mathematical Function Plotter
 url=http://kde.org/applications/education/kmplot/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kmplot-${pkgver}.tar.xz;)
-sha1sums=('c34c93266fd00d7c9b0d6f16625dbed13dba2a20')
+source=(http://download.kde.org/unstable/${pkgver}/src/kmplot-${pkgver}.tar.xz;)
+sha1sums=('0ccef544a8fcde8be41300d160253505bca41576')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:45
  Author: andrea
Revision: 159559

KDE 4.9

Added:
  kdeedu-kgeography/kde-unstable/
Modified:
  kdeedu-kgeography/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:45 UTC (rev 159559)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-kgeography
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Geography Trainer
 url=http://kde.org/applications/education/kgeography/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kgeography-${pkgver}.tar.xz;)
-sha1sums=('70a5577a5303fd8d97efbc06220bd896ec00574f')
+source=(http://download.kde.org/unstable/${pkgver}/src/kgeography-${pkgver}.tar.xz;)
+sha1sums=('5b2a17154fdce9d5bdd27124e8c51816d6679e93')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:51
  Author: andrea
Revision: 159561

KDE 4.9

Added:
  kdeedu-kig/kde-unstable/
Modified:
  kdeedu-kig/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:51 UTC (rev 159561)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-kig
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Interactive Geometry
 url=http://kde.org/applications/education/kig/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kig-${pkgver}.tar.xz;)
-sha1sums=('f7bd8d16cbb98ca44868df7bfd6b7a9e608c9ff4')
+source=(http://download.kde.org/unstable/${pkgver}/src/kig-${pkgver}.tar.xz;)
+sha1sums=('37c9801eb57c8bc774621f76c12eb7805bd895cd')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:48
  Author: andrea
Revision: 159560

KDE 4.9

Added:
  kdeedu-khangman/kde-unstable/
Modified:
  kdeedu-khangman/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:48 UTC (rev 159560)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-khangman
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Hangman Game
 url=http://kde.org/applications/education/khangman/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime' 'libkdeedu')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/khangman-${pkgver}.tar.xz;)
-sha1sums=('75d0147a2e374b8940cf472550ca7f45a5c63587')
+source=(http://download.kde.org/unstable/${pkgver}/src/khangman-${pkgver}.tar.xz;)
+sha1sums=('25a57b963e0ad130fcacd926316bd1237d93a573')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:03
  Author: andrea
Revision: 159565

KDE 4.9

Added:
  kdeedu-kstars/kde-unstable/
Modified:
  kdeedu-kstars/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:03 UTC (rev 159565)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-kstars
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Desktop Planetarium
 url=http://kde.org/applications/education/kstars/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime' 'libindi')
 makedepends=('cmake' 'automoc4' 'eigen')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kstars-${pkgver}.tar.xz;)
-sha1sums=('3c06bfb4f1e84565ac4de8126cfe47111217c995')
+source=(http://download.kde.org/unstable/${pkgver}/src/kstars-${pkgver}.tar.xz;)
+sha1sums=('8e869413470abc4b984ae878ebcc34646cfaafe5')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:06
  Author: andrea
Revision: 159566

KDE 4.9

Added:
  kdeedu-ktouch/kde-unstable/
Modified:
  kdeedu-ktouch/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:06 UTC (rev 159566)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-ktouch
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Touch Typing Tutor
 url=http://kde.org/applications/education/ktouch/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/ktouch-${pkgver}.tar.xz;)
-sha1sums=('f098df93bb5c3dfd349104d168f3fcb1eb73ffb6')
+source=(http://download.kde.org/unstable/${pkgver}/src/ktouch-${pkgver}.tar.xz;)
+sha1sums=('5d046796b78e506ef451c70a2ee68b8b337dc4de')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:08
  Author: andrea
Revision: 159567

KDE 4.9

Added:
  kdeedu-kturtle/kde-unstable/
Modified:
  kdeedu-kturtle/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:08 UTC (rev 159567)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-kturtle
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Educational Programming Environment
 url=http://kde.org/applications/education/kturtle/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kturtle-${pkgver}.tar.xz;)
-sha1sums=('6f8c102e4bf41c9e214b5f71bd79f56f5651c1dc')
+source=(http://download.kde.org/unstable/${pkgver}/src/kturtle-${pkgver}.tar.xz;)
+sha1sums=('b5c3705ac91c0ab3e5781f0fb764da113a427673')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:00:33
  Author: andrea
Revision: 159556

KDE 4.9

Added:
  kdeedu-kalzium/kde-unstable/
Modified:
  kdeedu-kalzium/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:00:33 UTC (rev 159556)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-kalzium
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Periodic Table of Elements
 url=http://kde.org/applications/education/kalzium/;
@@ -12,8 +12,8 @@
 depends=('kdelibs' 'avogadro' 'ocaml' 'facile')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kalzium-${pkgver}.tar.xz;)
-sha1sums=('33629c565b82c755af0b73746c675ac44c234028')
+source=(http://download.kde.org/unstable/${pkgver}/src/kalzium-${pkgver}.tar.xz;)
+sha1sums=('94f69274e86ffa5159bcb2e670be1d5560068057')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:13
  Author: andrea
Revision: 159568

KDE 4.9

Added:
  kdeedu-kwordquiz/kde-unstable/
Modified:
  kdeedu-kwordquiz/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:13 UTC (rev 159568)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-kwordquiz
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Flash Card Trainer
 url=http://kde.org/applications/education/kwordquiz/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime' 'libkdeedu')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kwordquiz-${pkgver}.tar.xz;)
-sha1sums=('65adea1b68f1f4d7ff36ef70bdd29fafc0e36e9e')
+source=(http://download.kde.org/unstable/${pkgver}/src/kwordquiz-${pkgver}.tar.xz;)
+sha1sums=('3a0e782456430e878118256e8058518d981433d2')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:15
  Author: andrea
Revision: 159569

KDE 4.9

Added:
  kdeedu-parley/kde-unstable/
Modified:
  kdeedu-parley/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:15 UTC (rev 159569)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-parley
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Vocabulary Trainer
 url=http://kde.org/applications/education/parley/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime' 'libkdeedu')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/parley-${pkgver}.tar.xz;)
-sha1sums=('4a524209b19dcb174f4ce4258b4ec85adfa19ccb')
+source=(http://download.kde.org/unstable/${pkgver}/src/parley-${pkgver}.tar.xz;)
+sha1sums=('0ea1f3fbe0ab321d347e0d961c0bc335b8babf63')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:21
  Author: andrea
Revision: 159571

KDE 4.9

Added:
  kdeedu-step/kde-unstable/
Modified:
  kdeedu-step/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:21 UTC (rev 159571)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-step
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Interactive Physical Simulator
 url=http://kde.org/applications/education/step/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime' 'libqalculate' 'gsl')
 makedepends=('cmake' 'automoc4' 'eigen')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/step-${pkgver}.tar.xz;)
-sha1sums=('2356c87aa3faec080a4963fc69a4d07c2d44a67d')
+source=(http://download.kde.org/unstable/${pkgver}/src/step-${pkgver}.tar.xz;)
+sha1sums=('7136e43cb22feb501aee4a3a5efbf96892148198')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:27
  Author: andrea
Revision: 159573

KDE 4.9

Added:
  kdegraphics-gwenview/kde-unstable/
Modified:
  kdegraphics-gwenview/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:27 UTC (rev 159573)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-gwenview
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=A fast and easy to use image viewer for KDE
 url=http://kde.org/applications/graphics/gwenview/;
@@ -13,8 +13,8 @@
 makedepends=('cmake' 'automoc4')
 optdepends=('kipi-plugins: extra plugins to share photos')
 install=$pkgname.install
-source=(http://download.kde.org/stable/${pkgver}/src/gwenview-${pkgver}.tar.xz;)
-sha1sums=('be5fd73872be0e46a99b8d5b1c54e1e0328350c8')
+source=(http://download.kde.org/unstable/${pkgver}/src/gwenview-${pkgver}.tar.xz;)
+sha1sums=('aaebf6f6772cda045b8f322e4bd2fabb8253e3e7')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:18
  Author: andrea
Revision: 159570

KDE 4.9

Added:
  kdeedu-rocs/kde-unstable/
Modified:
  kdeedu-rocs/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:18 UTC (rev 159570)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-rocs
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Rocs Graph Theory
 url=http://kde.org/applications/education/rocs/;
@@ -11,8 +11,8 @@
 groups=('kde' 'kdeedu')
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4' 'boost')
-source=(http://download.kde.org/stable/${pkgver}/src/rocs-${pkgver}.tar.xz;)
-sha1sums=('772a80277edb483d4e189595a1723a2d1877d8d4')
+source=(http://download.kde.org/unstable/${pkgver}/src/rocs-${pkgver}.tar.xz;)
+sha1sums=('58722f1cd841e417ac0b3a3074b03e509f34e8e2')
 options=('!makeflags')
 
 build() {



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:30
  Author: andrea
Revision: 159574

KDE 4.9

Added:
  kdegraphics-kamera/kde-unstable/
Modified:
  kdegraphics-kamera/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:30 UTC (rev 159574)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-kamera
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Configure Kamera
 url=http://kde.org/applications/graphics/kamera/;
@@ -11,8 +11,8 @@
 groups=('kde' 'kdegraphics')
 depends=('kdebase-runtime' 'gphoto2')
 makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/kamera-${pkgver}.tar.xz;)
-sha1sums=('af58ef6b0762bd6e3bd75f7914c6ba575c205ba8')
+source=(http://download.kde.org/unstable/${pkgver}/src/kamera-${pkgver}.tar.xz;)
+sha1sums=('4b9da61bee650aefe85e46183dd720fcf89e5240')
 
 build() {
   cd ${srcdir}



[arch-commits] Commit in kdegraphics-kcolorchooser (2 files)

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:33
  Author: andrea
Revision: 159575

KDE 4.9

Added:
  kdegraphics-kcolorchooser/kde-unstable/
Modified:
  kdegraphics-kcolorchooser/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:33 UTC (rev 159575)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-kcolorchooser
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Color Chooser
 url=http://kde.org/applications/graphics/kcolorchooser/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kcolorchooser-${pkgver}.tar.xz;)
-sha1sums=('08595a7388abc65b96fd91a874d5cedeb889c217')
+source=(http://download.kde.org/unstable/${pkgver}/src/kcolorchooser-${pkgver}.tar.xz;)
+sha1sums=('dd76ff7e8a906dd2010aff6ba674dfe9494ffc21')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:35
  Author: andrea
Revision: 159576

KDE 4.9

Added:
  kdegraphics-kgamma/kde-unstable/
Modified:
  kdegraphics-kgamma/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:35 UTC (rev 159576)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-kgamma
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=A monitor calibration tool
 url=http://kde.org/applications/graphics/kgamma/;
@@ -14,8 +14,8 @@
 #   but nvidia providing libgl does not depend on libxxf86vm
 depends=('kdebase-runtime' 'libxxf86vm')
 makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/kgamma-${pkgver}.tar.xz;)
-sha1sums=('bfb32bbe49cd715390d24e3705d23171fdf0e2c9')
+source=(http://download.kde.org/unstable/${pkgver}/src/kgamma-${pkgver}.tar.xz;)
+sha1sums=('65abd0f994448a9a92048145af3e4b5121be59ed')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:39
  Author: andrea
Revision: 159577

KDE 4.9

Added:
  kdegraphics-kolourpaint/kde-unstable/
Modified:
  kdegraphics-kolourpaint/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:39 UTC (rev 159577)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-kolourpaint
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Paint Program
 url=http://kde.org/applications/graphics/kolourpaint/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime' 'qimageblitz')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kolourpaint-${pkgver}.tar.xz;)
-sha1sums=('2030505b4169448914ef693f88874f3f323fb49c')
+source=(http://download.kde.org/unstable/${pkgver}/src/kolourpaint-${pkgver}.tar.xz;)
+sha1sums=('d755e72558fd333697028fdc14bcb8a1db7f8256')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:54
  Author: andrea
Revision: 159581

KDE 4.9

Added:
  kdegraphics-mobipocket/kde-unstable/
Modified:
  kdegraphics-mobipocket/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:54 UTC (rev 159581)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-mobipocket
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=A collection of plugins to handle mobipocket files
 url=http://kde.org/;
@@ -13,8 +13,8 @@
 replaces=('kdegraphics-libs')
 conflicts=('kdegraphics-libs')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('97a19a437e53f1b0ec538d7d35bbf25605e6845e')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('38772a3e115d27945727c2d5d0c6b0e5ba055ac0')
 
 build() {
   cd ${srcdir}



[arch-commits] Commit in kdegraphics-strigi-analyzer (2 files)

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:57
  Author: andrea
Revision: 159582

KDE 4.9

Added:
  kdegraphics-strigi-analyzer/kde-unstable/
Modified:
  kdegraphics-strigi-analyzer/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:57 UTC (rev 159582)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-strigi-analyzer
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Strigi analyzers for various graphics file formats
 url=http://kde.org/;
@@ -12,8 +12,8 @@
 makedepends=('cmake' 'automoc4')
 replaces=('kdegraphics-libs')
 conflicts=('kdegraphics-libs')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('8e0cbcbd36b1ac5fdfb7665bc456a87dd3ba59ef')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('82afc822ac42d8128f6181c24a84ef8734ec67e8')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:59
  Author: andrea
Revision: 159583

KDE 4.9

Added:
  kdegraphics-svgpart/kde-unstable/
Modified:
  kdegraphics-svgpart/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:59 UTC (rev 159583)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-svgpart
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=A KPart for viewving SVGs
 url=http://kde.org/;
@@ -12,8 +12,8 @@
 makedepends=('cmake' 'automoc4')
 replaces=('kdegraphics-libs')
 conflicts=('kdegraphics-libs')
-source=(http://download.kde.org/stable/${pkgver}/src/svgpart-${pkgver}.tar.xz;)
-sha1sums=('53d69e810acbad5d1cb606a74cf218e3ceccd876')
+source=(http://download.kde.org/unstable/${pkgver}/src/svgpart-${pkgver}.tar.xz;)
+sha1sums=('812a5b8972137d3edb9cd0c922f4e5630374500f')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:02:03
  Author: andrea
Revision: 159584

KDE 4.9

Added:
  kdegraphics-thumbnailers/kde-unstable/
Modified:
  kdegraphics-thumbnailers/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:02:03 UTC (rev 159584)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-thumbnailers
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Thumbnailers for various graphics file formats
 url=http://kde.org/;
@@ -12,8 +12,8 @@
 makedepends=('cmake' 'automoc4')
 replaces=('kdegraphics-libs')
 conflicts=('kdegraphics-libs')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('3a7839030e1e49addfdb275acfa1c0288aa95431')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('fcaa45c94ff6809722548449deb96149b7e35ba1')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:02:06
  Author: andrea
Revision: 159585

KDE 4.9

Added:
  kdemultimedia/kde-unstable/
Modified:
  kdemultimedia/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:02:06 UTC (rev 159585)
@@ -10,18 +10,16 @@
  'kdemultimedia-kmix'
  'kdemultimedia-kscd'
  'kdemultimedia-mplayerthumbs')
-pkgver=4.8.3
-pkgrel=2
+pkgver=4.8.80
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdemultimedia')
 makedepends=('cmake' 'automoc4' 'kdelibs' 'ffmpeg' 'mplayer' 'libpulse'
  'libmusicbrainz3' 'taglib' 'libcanberra')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
 'mplayerthumbs.config')
-sha1sums=('8f2b9181d5ccab5a9efd62f2778cf6c2b88abb3e'
-  'ba016fa2563c14ffcba852c62506b66bfc6ee683')
 
 build() {
 cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:02:08
  Author: andrea
Revision: 159586

KDE 4.9

Added:
  kdenetwork/kde-unstable/
Modified:
  kdenetwork/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:02:08 UTC (rev 159586)
@@ -10,8 +10,8 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.8.3
-pkgrel=3
+pkgver=4.8.80
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
@@ -20,9 +20,9 @@
'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'libmsn'
 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu'
 'libktorrent' 'libmms' 'mediastreamer')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
 'gcc47.patch')
-sha1sums=('9da87317c6a10243d6fff8c121c04146415f65cd'
+sha1sums=('66a50bb88660c85fb6a94c3411b9387f8c885544'
   '0e1325569e296d98e7b1be12305c1c018104685b')
 
 build() {



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:02:11
  Author: andrea
Revision: 159587

KDE 4.9

Added:
  kdepim/kde-unstable/
Modified:
  kdepim/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:02:11 UTC (rev 159587)
@@ -19,7 +19,7 @@
  'kdepim-kresources'
  'kdepim-ktimetracker'
  'kdepim-libkdepim')
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://pim.kde.org'
@@ -27,8 +27,8 @@
 groups=('kde' 'kdepim')
 makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'libxss' 'pilot-link'
  'kde-agent')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('1d40a820fc343bd6c492e937b9da2e7226cd3e78')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('c563279f8ae207ee3a4aa01534f38bfadee92cff')
 
 build() {
 cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:02:14
  Author: andrea
Revision: 159588

KDE 4.9

Added:
  kdeplasma-addons/kde-unstable/
Modified:
  kdeplasma-addons/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:02:14 UTC (rev 159588)
@@ -74,7 +74,7 @@
  'kdeplasma-addons-wallpapers-potd'
  'kdeplasma-addons-wallpapers-virus'
  'kdeplasma-addons-wallpapers-weather')
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -82,8 +82,8 @@
 groups=('kde' 'kdeplasma-addons')
 makedepends=('cmake' 'automoc4' 'kdebase-workspace' 'kdeedu-marble' 'eigen'
  'scim' 'qwt' 'boost' 'libkexiv2' 'ibus')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('64bda8ca1d68ab07596d8eaa6381255d815346bc')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('f29306ffbae3fab7eb4f3bd0a0e9a3cb6be88036')
 
 build() {
 cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:02:17
  Author: andrea
Revision: 159589

KDE 4.9

Added:
  kdesdk/kde-unstable/
Modified:
  kdesdk/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:02:17 UTC (rev 159589)
@@ -22,7 +22,7 @@
  'kdesdk-scripts'
  'kdesdk-strigi-analyzer'
  'kdesdk-umbrello')
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -30,9 +30,9 @@
 groups=('kde' 'kdesdk')
 makedepends=('cmake' 'automoc4' 'boost' 'subversion' 'antlr2' 'kdepimlibs'
  'kdebase-lib')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;
 'fix-python2-path.patch')
-sha1sums=('e7366cd627fd8324d89e7854361be8a141d030c1'
+sha1sums=('1d8787a52aa8ef29ae80ca85683b7d0303277c38'
   '923cabd7a877cf9a68efeb24fbf3d5827e1d949e')
 
 build() {



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:02:20
  Author: andrea
Revision: 159590

KDE 4.9

Added:
  kdetoys/kde-unstable/
Modified:
  kdetoys/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:02:20 UTC (rev 159590)
@@ -6,15 +6,15 @@
 pkgname=('kdetoys-amor'
  'kdetoys-kteatime'
  'kdetoys-ktux')
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdetoys')
 makedepends=('cmake' 'automoc4' 'kdebase-workspace')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('b3050335f3f6b95dfc293cbbd999e21d9ff4f967')
+source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('dab1f82bb98ee92b77be3e600c8e4005a0579b38')
 
 build() {
cd $srcdir



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:02:23
  Author: andrea
Revision: 159591

KDE 4.9

Added:
  kdeutils-ark/kde-unstable/
Modified:
  kdeutils-ark/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:02:23 UTC (rev 159591)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeutils-ark
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc='Archiving Tool'
 url='http://kde.org/applications/utilities/ark/'
@@ -13,8 +13,8 @@
 makedepends=('cmake' 'automoc4')
 optdepends=('p7zip' 'zip' 'unzip' 'unrar')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/ark-${pkgver}.tar.xz;)
-sha1sums=('9ff1fff082f53f31d0d31f2570005ae551fd2164')
+source=(http://download.kde.org/unstable/${pkgver}/src/ark-${pkgver}.tar.xz;)
+sha1sums=('78fd631acfe4f8f8830385233939175d27ab5d67')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:42
  Author: andrea
Revision: 159578

KDE 4.9

Added:
  kdegraphics-kruler/kde-unstable/
Modified:
  kdegraphics-kruler/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:42 UTC (rev 159578)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-kruler
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Screen Ruler
 url=http://kde.org/applications/graphics/kruler/;
@@ -12,8 +12,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kruler-${pkgver}.tar.xz;)
-sha1sums=('baf3015a781e4389e9fa66067906e18765322132')
+source=(http://download.kde.org/unstable/${pkgver}/src/kruler-${pkgver}.tar.xz;)
+sha1sums=('ccaa5c48bd2a64f9d428729edb6b6dbdbbface3a')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:46
  Author: andrea
Revision: 159579

KDE 4.9

Added:
  kdegraphics-ksaneplugin/kde-unstable/
Modified:
  kdegraphics-ksaneplugin/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:46 UTC (rev 159579)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-ksaneplugin
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=A scan plugin that implements the scanning
 url=http://kde.org/;
@@ -12,8 +12,8 @@
 makedepends=('cmake' 'automoc4')
 replaces=('kdegraphics-libs')
 conflicts=('kdegraphics-libs')
-source=(http://download.kde.org/stable/${pkgver}/src/ksaneplugin-${pkgver}.tar.xz;)
-sha1sums=('d6c5588bb2e5b45aecb0de1b37775e22b7cd696c')
+source=(http://download.kde.org/unstable/${pkgver}/src/ksaneplugin-${pkgver}.tar.xz;)
+sha1sums=('9327ce8c88ec2b425717538f9dc3a0ce4fc0c50c')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:01:50
  Author: andrea
Revision: 159580

KDE 4.9

Added:
  kdegraphics-ksnapshot/kde-unstable/
Modified:
  kdegraphics-ksnapshot/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:01:50 UTC (rev 159580)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-ksnapshot
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc=Screen Capture Program
 url=http://kde.org/applications/graphics/ksnapshot/;
@@ -13,8 +13,8 @@
 makedepends=('cmake' 'automoc4')
 optdepends=('kipi-plugins')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/ksnapshot-${pkgver}.tar.xz;)
-sha1sums=('7b90bba6e11aff524ed759e7c7043fc97116b92c')
+source=(http://download.kde.org/unstable/${pkgver}/src/ksnapshot-${pkgver}.tar.xz;)
+sha1sums=('8b19cf73a9a0ad34de612167bf7be6a47babfe8d')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:02:26
  Author: andrea
Revision: 159592

KDE 4.9

Added:
  kdeutils-filelight/kde-unstable/
Modified:
  kdeutils-filelight/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:02:26 UTC (rev 159592)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeutils-filelight
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc='View disk usage information'
 url='http://kde.org/applications/utilities/filelight'
@@ -14,8 +14,8 @@
 replaces=('filelight')
 conflicts=('filelight')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/filelight-${pkgver}.tar.xz;)
-sha1sums=('1d1a8141b50e0eef2f2c8c13c6060ff11aab130e')
+source=(http://download.kde.org/unstable/${pkgver}/src/filelight-${pkgver}.tar.xz;)
+sha1sums=('a21fff43422eba68c687ca41003e29ed7229cffc')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:02:28
  Author: andrea
Revision: 159593

KDE 4.9

Added:
  kdeutils-kcalc/kde-unstable/
Modified:
  kdeutils-kcalc/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:02:28 UTC (rev 159593)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeutils-kcalc
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc='Scientific Calculator'
 url='http://kde.org/applications/utilities/kcalc/'
@@ -12,8 +12,8 @@
 makedepends=('cmake' 'automoc4')
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kcalc-${pkgver}.tar.xz;)
-sha1sums=('36c4c46ba05911dd174c7d1fa8526430d932c84f')
+source=(http://download.kde.org/unstable/${pkgver}/src/kcalc-${pkgver}.tar.xz;)
+sha1sums=('bff210b459668cbb47d22edf66c002dd3d31988c')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:02:31
  Author: andrea
Revision: 159594

KDE 4.9

Added:
  kdeutils-kcharselect/kde-unstable/
Modified:
  kdeutils-kcharselect/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:02:31 UTC (rev 159594)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeutils-kcharselect
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc='Character Selector'
 url=http://kde.org/applications/utilities/kcharselect/;
@@ -11,8 +11,8 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 groups=('kde' 'kdeutils')
-source=(http://download.kde.org/stable/${pkgver}/src/kcharselect-${pkgver}.tar.xz;)
-sha1sums=('a4196b6ef1f665fabd2ba91f040b2f858c58f397')
+source=(http://download.kde.org/unstable/${pkgver}/src/kcharselect-${pkgver}.tar.xz;)
+sha1sums=('1c990336dd9c1af8df12f5a71a59e552b9ac6448')
 
 build() {
   cd ${srcdir}



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

2012-05-25 Thread Andrea Scarpino
Date: Friday, May 25, 2012 @ 16:02:37
  Author: andrea
Revision: 159596

KDE 4.9

Added:
  kdeutils-kfloppy/kde-unstable/
Modified:
  kdeutils-kfloppy/kde-unstable/PKGBUILD

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

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2012-05-25 14:33:21 UTC (rev 159498)
+++ kde-unstable/PKGBUILD   2012-05-25 20:02:37 UTC (rev 159596)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeutils-kfloppy
-pkgver=4.8.3
+pkgver=4.8.80
 pkgrel=1
 pkgdesc='Floppy Formatter'
 url='http://kde.org/applications/utilities/kfloppy/'
@@ -12,8 +12,8 @@
 makedepends=('cmake' 'automoc4')
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kfloppy-${pkgver}.tar.xz;)
-sha1sums=('e507d66f29df3ded849be74c609ce13a38e78b60')
+source=(http://download.kde.org/unstable/${pkgver}/src/kfloppy-${pkgver}.tar.xz;)
+sha1sums=('2c1db0970b2b00c12180a9abfdbef558780d9e64')
 
 build() {
   cd ${srcdir}



  1   2   >