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

2013-01-17 Thread Evangelos Foutras
Date: Thursday, January 17, 2013 @ 23:05:24
  Author: foutrelis
Revision: 175522

Fix pkgdesc.

Modified:
  mousepad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-18 03:47:16 UTC (rev 175521)
+++ PKGBUILD2013-01-18 04:05:24 UTC (rev 175522)
@@ -5,7 +5,7 @@
 pkgname=mousepad
 pkgver=0.3.0
 pkgrel=2
-pkgdesc="Simple Text Editor for Xfce4 (based on Gedit)"
+pkgdesc="Simple text editor for Xfce"
 arch=('i686' 'x86_64')
 url=('http://www.xfce.org/')
 license=('GPL2')



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

2013-01-17 Thread Thomas Dziedzic
Date: Thursday, January 17, 2013 @ 22:47:16
  Author: tdziedzic
Revision: 175521

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

Added:
  ruby/repos/testing-i686/
  ruby/repos/testing-i686/PKGBUILD
(from rev 175520, ruby/trunk/PKGBUILD)
  ruby/repos/testing-i686/gemrc
(from rev 175520, ruby/trunk/gemrc)
  ruby/repos/testing-i686/ruby.install
(from rev 175520, ruby/trunk/ruby.install)
  ruby/repos/testing-x86_64/
  ruby/repos/testing-x86_64/PKGBUILD
(from rev 175520, ruby/trunk/PKGBUILD)
  ruby/repos/testing-x86_64/gemrc
(from rev 175520, ruby/trunk/gemrc)
  ruby/repos/testing-x86_64/ruby.install
(from rev 175520, ruby/trunk/ruby.install)

-+
 testing-i686/PKGBUILD   |   67 ++
 testing-i686/gemrc  |5 +++
 testing-i686/ruby.install   |   22 +
 testing-x86_64/PKGBUILD |   67 ++
 testing-x86_64/gemrc|5 +++
 testing-x86_64/ruby.install |   22 +
 6 files changed, 188 insertions(+)

Copied: ruby/repos/testing-i686/PKGBUILD (from rev 175520, ruby/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-01-18 03:47:16 UTC (rev 175521)
@@ -0,0 +1,67 @@
+# Maintainer: Thomas Dziedzic 
+# Contributor: Allan McRae 
+# Contributor: John Proctor 
+# Contributor: Jeramy Rutley 
+
+pkgname=('ruby' 'ruby-docs')
+pkgver=1.9.3_p374
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.ruby-lang.org/en/'
+license=('BSD' 'custom')
+makedepends=('openssl' 'tk' 'libffi' 'doxygen' 'graphviz' 'libyaml')
+options=('!emptydirs' '!makeflags')
+source=("ftp://ftp.ruby-lang.org/pub/ruby/${pkgver%.*}/ruby-${pkgver//_/-}.tar.bz2";
+'gemrc')
+md5sums=('944e73eba9ee9e1f2647ff32ec0b14b2'
+ '6fb8e7a09955e0f64be3158fb4a27e7a')
+
+build() {
+  cd ruby-${pkgver//_/-}
+
+  PKG_CONFIG=/usr/bin/pkg-config ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-shared \
+--enable-pthread \
+--disable-rpath
+
+  make
+}
+
+check() {
+  cd ruby-${pkgver//_/-}
+
+  make test
+}
+
+package_ruby() {
+  pkgdesc='An object-oriented language for quick and easy programming'
+  depends=('openssl' 'libffi' 'libyaml')
+  optdepends=('tk: for Ruby/TK'
+  'ruby-docs: Ruby documentation')
+  provides=('rubygems' 'rake')
+  conflicts=('rake')
+  backup=('etc/gemrc')
+  install='ruby.install'
+
+  cd ruby-${pkgver//_/-}
+
+  make DESTDIR="${pkgdir}" install-nodoc
+
+  install -D -m644 ${srcdir}/gemrc "${pkgdir}/etc/gemrc"
+
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby/LICENSE"
+  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby/BSDL"
+}
+
+package_ruby-docs() {
+  pkgdesc='Documentation files for ruby'
+
+  cd ruby-${pkgver//_/-}
+
+  make DESTDIR="${pkgdir}" install-doc install-capi
+
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby-docs/LICENSE"
+  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby-docs/BSDL"
+}

Copied: ruby/repos/testing-i686/gemrc (from rev 175520, ruby/trunk/gemrc)
===
--- testing-i686/gemrc  (rev 0)
+++ testing-i686/gemrc  2013-01-18 03:47:16 UTC (rev 175521)
@@ -0,0 +1,5 @@
+# Read about the gemrc format at http://docs.rubygems.org/read/chapter/11
+
+# --user-install is used to install to $HOME/.gem/ by default since we want to 
separate
+#pacman installed gems and gem installed gems
+gem: --user-install

Copied: ruby/repos/testing-i686/ruby.install (from rev 175520, 
ruby/trunk/ruby.install)
===
--- testing-i686/ruby.install   (rev 0)
+++ testing-i686/ruby.install   2013-01-18 03:47:16 UTC (rev 175521)
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+print_gem_default_target() {
+  echo 'The default location of gem installs is $HOME/.gem/ruby'
+  echo 'Add the following line to your PATH if you plan to install using gem'
+  echo '$(ruby -rubygems -e "puts Gem.user_dir")/bin'
+  echo 'If you want to install to the system wide location, you must either:'
+  echo 'edit /etc/gemrc or run gem with the --no-user-install flag.'
+}
+
+# arg 1:  the new package version
+post_install() {
+  print_gem_default_target
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  if [ "$(vercmp $2 1.9.3_p125-4)" -lt 0 ]; then
+print_gem_default_target
+  fi
+}

Copied: ruby/repos/testing-x86_64/PKGBUILD (from rev 175520, 
ruby/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-01-18 03:47:16 UTC (rev 175521)
@@ -0,0 +1,67 @@
+# Maintainer: Thomas Dziedzic 
+# Contributor: Allan McRae 
+# Contribu

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

2013-01-17 Thread Thomas Dziedzic
Date: Thursday, January 17, 2013 @ 22:46:42
  Author: tdziedzic
Revision: 175520

upgpkg: ruby 1.9.3_p374-1

bump

Modified:
  ruby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 21:13:35 UTC (rev 175519)
+++ PKGBUILD2013-01-18 03:46:42 UTC (rev 175520)
@@ -4,7 +4,7 @@
 # Contributor: Jeramy Rutley 
 
 pkgname=('ruby' 'ruby-docs')
-pkgver=1.9.3_p362
+pkgver=1.9.3_p374
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.ruby-lang.org/en/'
@@ -13,7 +13,7 @@
 options=('!emptydirs' '!makeflags')
 
source=("ftp://ftp.ruby-lang.org/pub/ruby/${pkgver%.*}/ruby-${pkgver//_/-}.tar.bz2";
 'gemrc')
-md5sums=('13c26ea368d88a560f07cc8c5eb4fa05'
+md5sums=('944e73eba9ee9e1f2647ff32ec0b14b2'
  '6fb8e7a09955e0f64be3158fb4a27e7a')
 
 build() {



[arch-commits] Commit in php/repos (36 files)

2013-01-17 Thread Pierre Schmitz
Date: Thursday, January 17, 2013 @ 16:13:35
  Author: pierre
Revision: 175519

db-move: moved php from [testing] to [extra] (i686, x86_64)

Added:
  php/repos/extra-i686/PKGBUILD
(from rev 175518, php/repos/testing-i686/PKGBUILD)
  php/repos/extra-i686/apache.conf
(from rev 175518, php/repos/testing-i686/apache.conf)
  php/repos/extra-i686/logrotate.d.php-fpm
(from rev 175518, php/repos/testing-i686/logrotate.d.php-fpm)
  php/repos/extra-i686/php-fpm.conf.in.patch
(from rev 175518, php/repos/testing-i686/php-fpm.conf.in.patch)
  php/repos/extra-i686/php-fpm.install
(from rev 175518, php/repos/testing-i686/php-fpm.install)
  php/repos/extra-i686/php-fpm.service
(from rev 175518, php/repos/testing-i686/php-fpm.service)
  php/repos/extra-i686/php-fpm.tmpfiles
(from rev 175518, php/repos/testing-i686/php-fpm.tmpfiles)
  php/repos/extra-i686/php.ini.patch
(from rev 175518, php/repos/testing-i686/php.ini.patch)
  php/repos/extra-x86_64/PKGBUILD
(from rev 175518, php/repos/testing-x86_64/PKGBUILD)
  php/repos/extra-x86_64/apache.conf
(from rev 175518, php/repos/testing-x86_64/apache.conf)
  php/repos/extra-x86_64/logrotate.d.php-fpm
(from rev 175518, php/repos/testing-x86_64/logrotate.d.php-fpm)
  php/repos/extra-x86_64/php-fpm.conf.in.patch
(from rev 175518, php/repos/testing-x86_64/php-fpm.conf.in.patch)
  php/repos/extra-x86_64/php-fpm.install
(from rev 175518, php/repos/testing-x86_64/php-fpm.install)
  php/repos/extra-x86_64/php-fpm.service
(from rev 175518, php/repos/testing-x86_64/php-fpm.service)
  php/repos/extra-x86_64/php-fpm.tmpfiles
(from rev 175518, php/repos/testing-x86_64/php-fpm.tmpfiles)
  php/repos/extra-x86_64/php.ini.patch
(from rev 175518, php/repos/testing-x86_64/php.ini.patch)
Deleted:
  php/repos/extra-i686/PKGBUILD
  php/repos/extra-i686/apache.conf
  php/repos/extra-i686/logrotate.d.php-fpm
  php/repos/extra-i686/php-fpm.conf.in.patch
  php/repos/extra-i686/php-fpm.install
  php/repos/extra-i686/php-fpm.service
  php/repos/extra-i686/php-fpm.tmpfiles
  php/repos/extra-i686/php.ini.patch
  php/repos/extra-i686/rc.d.php-fpm
  php/repos/extra-x86_64/PKGBUILD
  php/repos/extra-x86_64/apache.conf
  php/repos/extra-x86_64/logrotate.d.php-fpm
  php/repos/extra-x86_64/php-fpm.conf.in.patch
  php/repos/extra-x86_64/php-fpm.install
  php/repos/extra-x86_64/php-fpm.service
  php/repos/extra-x86_64/php-fpm.tmpfiles
  php/repos/extra-x86_64/php.ini.patch
  php/repos/extra-x86_64/rc.d.php-fpm
  php/repos/testing-i686/
  php/repos/testing-x86_64/

+
 extra-i686/PKGBUILD|  692 +--
 extra-i686/apache.conf |   26 -
 extra-i686/logrotate.d.php-fpm |   16 
 extra-i686/php-fpm.conf.in.patch   |  104 ++---
 extra-i686/php-fpm.install |   18 
 extra-i686/php-fpm.service |   26 -
 extra-i686/php-fpm.tmpfiles|2 
 extra-i686/php.ini.patch   |  244 ++--
 extra-i686/rc.d.php-fpm|  144 ---
 extra-x86_64/PKGBUILD  |  692 +--
 extra-x86_64/apache.conf   |   26 -
 extra-x86_64/logrotate.d.php-fpm   |   16 
 extra-x86_64/php-fpm.conf.in.patch |  104 ++---
 extra-x86_64/php-fpm.install   |   18 
 extra-x86_64/php-fpm.service   |   26 -
 extra-x86_64/php-fpm.tmpfiles  |2 
 extra-x86_64/php.ini.patch |  244 ++--
 extra-x86_64/rc.d.php-fpm  |  144 ---
 18 files changed, 1126 insertions(+), 1418 deletions(-)

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


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

2013-01-17 Thread Pierre Schmitz
Date: Thursday, January 17, 2013 @ 15:08:02
  Author: pierre
Revision: 175518

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

Added:
  php/repos/testing-i686/
  php/repos/testing-i686/PKGBUILD
(from rev 175517, php/trunk/PKGBUILD)
  php/repos/testing-i686/apache.conf
(from rev 175517, php/trunk/apache.conf)
  php/repos/testing-i686/logrotate.d.php-fpm
(from rev 175517, php/trunk/logrotate.d.php-fpm)
  php/repos/testing-i686/php-fpm.conf.in.patch
(from rev 175517, php/trunk/php-fpm.conf.in.patch)
  php/repos/testing-i686/php-fpm.install
(from rev 175517, php/trunk/php-fpm.install)
  php/repos/testing-i686/php-fpm.service
(from rev 175517, php/trunk/php-fpm.service)
  php/repos/testing-i686/php-fpm.tmpfiles
(from rev 175517, php/trunk/php-fpm.tmpfiles)
  php/repos/testing-i686/php.ini.patch
(from rev 175517, php/trunk/php.ini.patch)
  php/repos/testing-x86_64/
  php/repos/testing-x86_64/PKGBUILD
(from rev 175517, php/trunk/PKGBUILD)
  php/repos/testing-x86_64/apache.conf
(from rev 175517, php/trunk/apache.conf)
  php/repos/testing-x86_64/logrotate.d.php-fpm
(from rev 175517, php/trunk/logrotate.d.php-fpm)
  php/repos/testing-x86_64/php-fpm.conf.in.patch
(from rev 175517, php/trunk/php-fpm.conf.in.patch)
  php/repos/testing-x86_64/php-fpm.install
(from rev 175517, php/trunk/php-fpm.install)
  php/repos/testing-x86_64/php-fpm.service
(from rev 175517, php/trunk/php-fpm.service)
  php/repos/testing-x86_64/php-fpm.tmpfiles
(from rev 175517, php/trunk/php-fpm.tmpfiles)
  php/repos/testing-x86_64/php.ini.patch
(from rev 175517, php/trunk/php.ini.patch)

--+
 testing-i686/PKGBUILD|  345 +
 testing-i686/apache.conf |   13 +
 testing-i686/logrotate.d.php-fpm |8 
 testing-i686/php-fpm.conf.in.patch   |   52 
 testing-i686/php-fpm.install |9 
 testing-i686/php-fpm.service |   13 +
 testing-i686/php-fpm.tmpfiles|1 
 testing-i686/php.ini.patch   |  122 +++
 testing-x86_64/PKGBUILD  |  345 +
 testing-x86_64/apache.conf   |   13 +
 testing-x86_64/logrotate.d.php-fpm   |8 
 testing-x86_64/php-fpm.conf.in.patch |   52 
 testing-x86_64/php-fpm.install   |9 
 testing-x86_64/php-fpm.service   |   13 +
 testing-x86_64/php-fpm.tmpfiles  |1 
 testing-x86_64/php.ini.patch |  122 +++
 16 files changed, 1126 insertions(+)

Copied: php/repos/testing-i686/PKGBUILD (from rev 175517, php/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-01-17 20:08:02 UTC (rev 175518)
@@ -0,0 +1,345 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.4.11
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix' 'libvpx'
+ 'sqlite' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
+source=("http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.bz2";
+'php.ini.patch' 'apache.conf' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm' 'php-fpm.service' 'php-fpm.tmpfiles')
+md5sums=('9975e68c22b86b013b934743ad2d2276'
+ '0b0bc7a917fc592bdf11dcd3c5c255e9'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ '5c1f4c967b66ce3eaf819b46951dcbf5'
+ 'e036c721e5ad927cd1613c7475a58b3a'
+ 'f8b206cb8fecb05cb1ded8bee45633ff'
+ 'c60343df74f8e1afb13b084d5c0e47ed')
+
+build() {
+   phpconfig="--srcdir=../${pkgbase}-${pkgver} \
+   --config-cache \
+   --prefix=/usr \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --disable-rpath \
+   --mandir=/usr/share/man \
+   --without-pear \
+   "
+
+   phpextensions="--enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   -

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

2013-01-17 Thread Tobias Powalowski
Date: Thursday, January 17, 2013 @ 14:56:50
  Author: tpowa
Revision: 175517

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

Added:
  linux-lts/repos/testing-i686/
  linux-lts/repos/testing-i686/3.0.54-ptrace-i686-build.patch
(from rev 175516, linux-lts/trunk/3.0.54-ptrace-i686-build.patch)
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 175516, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 175516, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 175516, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 175516, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/ext4-options.patch
(from rev 175516, linux-lts/trunk/ext4-options.patch)
  linux-lts/repos/testing-i686/i915-fix-ghost-tv-output.patch
(from rev 175516, linux-lts/trunk/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 175516, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 175516, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-i686/module-init-wait-3.0.patch
(from rev 175516, linux-lts/trunk/module-init-wait-3.0.patch)
  linux-lts/repos/testing-i686/module-symbol-waiting-3.0.patch
(from rev 175516, linux-lts/trunk/module-symbol-waiting-3.0.patch)
  linux-lts/repos/testing-x86_64/
  linux-lts/repos/testing-x86_64/3.0.54-ptrace-i686-build.patch
(from rev 175516, linux-lts/trunk/3.0.54-ptrace-i686-build.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 175516, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 175516, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 175516, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 175516, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/ext4-options.patch
(from rev 175516, linux-lts/trunk/ext4-options.patch)
  linux-lts/repos/testing-x86_64/i915-fix-ghost-tv-output.patch
(from rev 175516, linux-lts/trunk/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 175516, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 175516, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-x86_64/module-init-wait-3.0.patch
(from rev 175516, linux-lts/trunk/module-init-wait-3.0.patch)
  linux-lts/repos/testing-x86_64/module-symbol-waiting-3.0.patch
(from rev 175516, linux-lts/trunk/module-symbol-waiting-3.0.patch)

--+
 testing-i686/3.0.54-ptrace-i686-build.patch  |   41 
 testing-i686/PKGBUILD|  316 
 testing-i686/change-default-console-loglevel.patch   |   12 
 testing-i686/config  | 5575 +
 testing-i686/config.x86_64   | 5330 
 testing-i686/ext4-options.patch  |   49 
 testing-i686/i915-fix-ghost-tv-output.patch  |   26 
 testing-i686/linux-lts.install   |   65 
 testing-i686/linux-lts.preset|   14 
 testing-i686/module-init-wait-3.0.patch  |   77 
 testing-i686/module-symbol-waiting-3.0.patch |   66 
 testing-x86_64/3.0.54-ptrace-i686-build.patch|   41 
 testing-x86_64/PKGBUILD  |  316 
 testing-x86_64/change-default-console-loglevel.patch |   12 
 testing-x86_64/config| 5575 +
 testing-x86_64/config.x86_64 | 5330 
 testing-x86_64/ext4-options.patch|   49 
 testing-x86_64/i915-fix-ghost-tv-output.patch|   26 
 testing-x86_64/linux-lts.install |   65 
 testing-x86_64/linux-lts.preset  |   14 
 testing-x86_64/module-init-wait-3.0.patch|   77 
 testing-x86_64/module-symbol-waiting-3.0.patch   |   66 
 22 files changed, 23142 insertions(+)

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


[arch-commits] Commit in php/trunk (PKGBUILD logrotate.d.php-fpm rc.d.php-fpm)

2013-01-17 Thread Pierre Schmitz
Date: Thursday, January 17, 2013 @ 14:55:19
  Author: pierre
Revision: 175516

upstream update; drop initscripts support

Modified:
  php/trunk/PKGBUILD
  php/trunk/logrotate.d.php-fpm
Deleted:
  php/trunk/rc.d.php-fpm

-+
 PKGBUILD|   10 +--
 logrotate.d.php-fpm |2 
 rc.d.php-fpm|  144 --
 3 files changed, 5 insertions(+), 151 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 19:54:39 UTC (rev 175515)
+++ PKGBUILD2013-01-17 19:55:19 UTC (rev 175516)
@@ -21,7 +21,7 @@
  'php-sqlite'
  'php-tidy'
  'php-xsl')
-pkgver=5.4.10
+pkgver=5.4.11
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('PHP')
@@ -31,14 +31,13 @@
  'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
  'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
 source=("http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.bz2";
-'php.ini.patch' 'apache.conf' 'rc.d.php-fpm' 'php-fpm.conf.in.patch'
+'php.ini.patch' 'apache.conf' 'php-fpm.conf.in.patch'
 'logrotate.d.php-fpm' 'php-fpm.service' 'php-fpm.tmpfiles')
-md5sums=('cb716b657a30570b9b468b9e7bc551a1'
+md5sums=('9975e68c22b86b013b934743ad2d2276'
  '0b0bc7a917fc592bdf11dcd3c5c255e9'
  'dec2cbaad64e3abf4f0ec70e1de4e8e9'
- '3cfde0cc4ed09b55f1ce531437a4eb88'
  '5c1f4c967b66ce3eaf819b46951dcbf5'
- 'f56b5bb7e93c802ae8519182fbea3387'
+ 'e036c721e5ad927cd1613c7475a58b3a'
  'f8b206cb8fecb05cb1ded8bee45633ff'
  'c60343df74f8e1afb13b084d5c0e47ed')
 
@@ -240,7 +239,6 @@
install -D -m755 ${srcdir}/build-fpm/sapi/fpm/php-fpm 
${pkgdir}/usr/sbin/php-fpm
install -D -m644 ${srcdir}/build-fpm/sapi/fpm/php-fpm.8 
${pkgdir}/usr/share/man/man8/php-fpm.8
install -D -m644 ${srcdir}/build-fpm/sapi/fpm/php-fpm.conf 
${pkgdir}/etc/php/php-fpm.conf
-   install -D -m755 ${srcdir}/rc.d.php-fpm ${pkgdir}/etc/rc.d/php-fpm
install -D -m644 ${srcdir}/logrotate.d.php-fpm 
${pkgdir}/etc/logrotate.d/php-fpm
install -d -m755 ${pkgdir}/etc/php/fpm.d
install -D -m644 ${srcdir}/php-fpm.tmpfiles 
${pkgdir}/usr/lib/tmpfiles.d/php-fpm.conf

Modified: logrotate.d.php-fpm
===
--- logrotate.d.php-fpm 2013-01-17 19:54:39 UTC (rev 175515)
+++ logrotate.d.php-fpm 2013-01-17 19:55:19 UTC (rev 175516)
@@ -3,6 +3,6 @@
notifempty
delaycompress
postrotate
-   kill -USR1 `cat /run/php-fpm/php-fpm.pid 2>/dev/null` 
2>/dev/null || true
+   systemctl reload php-fpm.service || true
endscript
 }

Deleted: rc.d.php-fpm
===
--- rc.d.php-fpm2013-01-17 19:54:39 UTC (rev 175515)
+++ rc.d.php-fpm2013-01-17 19:55:19 UTC (rev 175516)
@@ -1,144 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-
-wait_for_pid () {
-   try=0
-   while test $try -lt 35 ; do
-   case "$1" in
-   'created')
-   if [ -f "$2" ] ; then
-   try=''
-   break
-   fi
-   ;;
-   'removed')
-   if [ ! -f "$2" ] ; then
-   try=''
-   break
-   fi
-   ;;
-   esac
-
-   stat_append '.'
-   try=`expr $try + 1`
-   sleep 1
-   done
-}
-
-test_config() {
-   stat_busy 'Checking configuration'
-   if [ $(id -u) -ne 0 ]; then
-   stat_append '(This script must be run as root)'
-   stat_die
-   fi
-
-   if [ ! -r /etc/php/php-fpm.conf ]; then
-   stat_append '(/etc/php/php-fpm.conf not found)'
-   stat_die
-   fi
-
-   local test=$(/usr/sbin/php-fpm -t 2>&1)
-   if [ $? -gt 0 ]; then
-   stat_append '(error in /etc/php/php-fpm.conf)'
-   stat_die
-   elif echo $test | grep -qi 'error'; then
-   stat_append '(error in /etc/php/php.ini)'
-   stat_die
-   fi
-
-   stat_done
-}
-
-case "$1" in
-   start)
-   test_config
-   stat_busy 'Starting php-fpm'
-
-   /usr/sbin/php-fpm --daemonize --pid /run/php-fpm/php-fpm.pid
-
-   if [ "$?" != 0 ] ; then
-   stat_fail
-   exit 1
-   fi
-
-   wait_for_pid created /run/php-fpm/php-fpm.pid
-
-   if [ -n "$try" ] ; then
-   stat_fail
-   exit 1
-   else
-   add_daemon php-fpm
-   stat_done

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

2013-01-17 Thread Tobias Powalowski
Date: Thursday, January 17, 2013 @ 14:54:39
  Author: tpowa
Revision: 175515

upgpkg: linux-lts 3.0.59-1

bump to latest version

Modified:
  linux-lts/trunk/PKGBUILD
  linux-lts/trunk/linux-lts.install

---+
 PKGBUILD  |5 ++---
 linux-lts.install |2 +-
 2 files changed, 3 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 19:32:04 UTC (rev 175514)
+++ PKGBUILD2013-01-17 19:54:39 UTC (rev 175515)
@@ -5,7 +5,7 @@
 pkgbase=linux-lts   # Build stock -lts kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-3.0
-pkgver=3.0.58
+pkgver=3.0.59
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/";
@@ -24,7 +24,7 @@
 'module-symbol-waiting-3.0.patch'
 'module-init-wait-3.0.patch')
 md5sums=('ecf932280e2441bdd992423ef3d55f8f'
- 'ba96bc67a5fcbf866bf01a59907da04d'
+ 'a77456a5b0714202171288109c0b34ed'
  'db663665a42cac29ee1f3323d9f4219e'
  '7a48063a23fc1a0cd30cf79b701dca97'
  '232b52576a62c7a333e9fe7a1e1ca359'
@@ -33,7 +33,6 @@
  'c8299cf750a84e12d60b372c8ca7e1e8'
  '670931649c60fcb3ef2e0119ed532bd4'
  '8a71abc4224f575008f974a099b5cf6f')
-
 _kernelname=${pkgbase#linux}
 
 build() {

Modified: linux-lts.install
===
--- linux-lts.install   2013-01-17 19:32:04 UTC (rev 175514)
+++ linux-lts.install   2013-01-17 19:54:39 UTC (rev 175515)
@@ -2,7 +2,7 @@
 # arg 2:  the old package version
 
 KERNEL_NAME=-lts
-KERNEL_VERSION=3.0.58-1-lts
+KERNEL_VERSION=3.0.59-1-lts
 
 # set a sane PATH to ensure that critical utils like depmod will be found
 export PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'



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

2013-01-17 Thread Tobias Powalowski
Date: Thursday, January 17, 2013 @ 14:32:04
  Author: tpowa
Revision: 175514

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

Added:
  linux/repos/testing-i686/PKGBUILD
(from rev 175513, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 175513, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 175513, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 175513, linux/trunk/config.x86_64)
  linux/repos/testing-i686/drm-fix-track-free-areas-3.7.patch
(from rev 175513, linux/trunk/drm-fix-track-free-areas-3.7.patch)
  linux/repos/testing-i686/fat-3.6.x.patch
(from rev 175513, linux/trunk/fat-3.6.x.patch)
  linux/repos/testing-i686/fix-watchdog-3.7.patch
(from rev 175513, linux/trunk/fix-watchdog-3.7.patch)
  linux/repos/testing-i686/linux.install
(from rev 175513, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 175513, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 175513, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 175513, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 175513, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 175513, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/drm-fix-track-free-areas-3.7.patch
(from rev 175513, linux/trunk/drm-fix-track-free-areas-3.7.patch)
  linux/repos/testing-x86_64/fat-3.6.x.patch
(from rev 175513, linux/trunk/fat-3.6.x.patch)
  linux/repos/testing-x86_64/fix-watchdog-3.7.patch
(from rev 175513, linux/trunk/fix-watchdog-3.7.patch)
  linux/repos/testing-x86_64/linux.install
(from rev 175513, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 175513, linux/trunk/linux.preset)
Deleted:
  linux/repos/testing-i686/PKGBUILD
  linux/repos/testing-i686/change-default-console-loglevel.patch
  linux/repos/testing-i686/config
  linux/repos/testing-i686/config.x86_64
  linux/repos/testing-i686/drm-fix-track-free-areas-3.7.patch
  linux/repos/testing-i686/fat-3.6.x.patch
  linux/repos/testing-i686/fix-watchdog-3.7.patch
  linux/repos/testing-i686/linux.install
  linux/repos/testing-i686/linux.preset
  linux/repos/testing-x86_64/PKGBUILD
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
  linux/repos/testing-x86_64/config
  linux/repos/testing-x86_64/config.x86_64
  linux/repos/testing-x86_64/drm-fix-track-free-areas-3.7.patch
  linux/repos/testing-x86_64/fat-3.6.x.patch
  linux/repos/testing-x86_64/fix-watchdog-3.7.patch
  linux/repos/testing-x86_64/linux.install
  linux/repos/testing-x86_64/linux.preset

--+
 testing-i686/PKGBUILD|  660 
 testing-i686/change-default-console-loglevel.patch   |   24 
 testing-i686/config  |12074 -
 testing-i686/config.x86_64   |11618 
 testing-i686/drm-fix-track-free-areas-3.7.patch  |  306 
 testing-i686/fat-3.6.x.patch |   66 
 testing-i686/fix-watchdog-3.7.patch  |   76 
 testing-i686/linux.install   |  130 
 testing-i686/linux.preset|   28 
 testing-x86_64/PKGBUILD  |  660 
 testing-x86_64/change-default-console-loglevel.patch |   24 
 testing-x86_64/config|12074 -
 testing-x86_64/config.x86_64 |11618 
 testing-x86_64/drm-fix-track-free-areas-3.7.patch|  306 
 testing-x86_64/fat-3.6.x.patch   |   66 
 testing-x86_64/fix-watchdog-3.7.patch|   76 
 testing-x86_64/linux.install |  130 
 testing-x86_64/linux.preset  |   28 
 18 files changed, 24970 insertions(+), 24994 deletions(-)

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


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

2013-01-17 Thread Tobias Powalowski
Date: Thursday, January 17, 2013 @ 14:30:18
  Author: tpowa
Revision: 175513

upgpkg: linux 3.7.3-1

bump to latest version

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/linux.install

---+
 PKGBUILD  |   20 
 linux.install |2 +-
 2 files changed, 5 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 18:26:40 UTC (rev 175512)
+++ PKGBUILD2013-01-17 19:30:18 UTC (rev 175513)
@@ -5,7 +5,7 @@
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-3.7
-pkgver=3.7.2
+pkgver=3.7.3
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/";
@@ -19,18 +19,14 @@
 # standard config files for mkinitcpio ramdisk
 'linux.preset'
 'change-default-console-loglevel.patch'
-'fat-3.6.x.patch'
-'fix-watchdog-3.7.patch'
-'drm-fix-track-free-areas-3.7.patch')
+'fat-3.6.x.patch')
 md5sums=('21223369d682bcf44bcdfe1521095983'
- '132211742278e18b8f4808754d85e66c'
+ 'd4aa39ec9610e9fbd7bb4f5aff2c5db8'
  'ce16969e83a649c3e7d71031b7f752c2'
  '610443591e7d3f619b8250833958eb7e'
  'eb14dcfd80c00852ef81ded6e826826a'
  '9d3c56a4b999c8bfbd4018089a62f662'
- '88d501404f172dac6fcb248978251560'
- '3485d6c7ae3af35d16e09d6d9a7ed32a'
- 'e365972f002482a7b25cd5360467d75f')
+ '88d501404f172dac6fcb248978251560')
 
 _kernelname=${pkgbase#linux}
 
@@ -52,13 +48,6 @@
   # https://bugs.archlinux.org/task/32916
   patch -Np1 -i "${srcdir}/fat-3.6.x.patch"
 
-  # fix watchdog enable/disable regression
-  # https://bugs.archlinux.org/task/33095
-  patch -Np1 -i "${srcdir}/fix-watchdog-3.7.patch"
-  # fix GPU hang
-  # https://bugs.archlinux.org/task/33160
-  patch -Np1 -i "${srcdir}/drm-fix-track-free-areas-3.7.patch"
-
   if [ "${CARCH}" = "x86_64" ]; then
 cat "${srcdir}/config.x86_64" > ./.config
   else
@@ -333,4 +322,3 @@
 done
 
 # vim:set ts=8 sts=2 sw=2 et:
-

Modified: linux.install
===
--- linux.install   2013-01-17 18:26:40 UTC (rev 175512)
+++ linux.install   2013-01-17 19:30:18 UTC (rev 175513)
@@ -2,7 +2,7 @@
 # arg 2:  the old package version
 
 KERNEL_NAME=
-KERNEL_VERSION=3.7.2-1-ARCH
+KERNEL_VERSION=3.7.3-1-ARCH
 
 # set a sane PATH to ensure that critical utils like depmod will be found
 export PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'



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

2013-01-17 Thread andyrtr
Date: Thursday, January 17, 2013 @ 13:26:40
  Author: andyrtr
Revision: 175512

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

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

-+
 extra-i686/PKGBUILD |   71 --
 extra-i686/nettle.install   |   40 +++
 extra-x86_64/PKGBUILD   |   71 --
 extra-x86_64/nettle.install |   40 +++
 4 files changed, 110 insertions(+), 112 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-01-17 18:26:02 UTC (rev 175511)
+++ extra-i686/PKGBUILD 2013-01-17 18:26:40 UTC (rev 175512)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: bender02 at gmx dot com
-
-pkgname=nettle
-pkgver=2.5
-pkgrel=1
-pkgdesc="A low-level cryptographic library"
-arch=('i686' 'x86_64')
-url="http://www.lysator.liu.se/~nisse/nettle/";
-license=('GPL2')
-install=$pkgname.install
-depends=('gmp')
-source=(ftp://ftp.lysator.liu.se/pub/security/lsh/$pkgname-$pkgver.tar.gz)
-md5sums=('d66882e6ad31a9f651b73d7a1a93bd4c')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --libdir=/usr/lib \
-   --enable-shared \
-   --disable-static # <-- seems not working now
-  make
-}
-
-check() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make -k check
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-  
-  # remove static libs
-  rm -f ${pkgdir}/usr/lib/{libhogweed,libnettle}.a
-}

Copied: nettle/repos/extra-i686/PKGBUILD (from rev 175511, 
nettle/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-17 18:26:40 UTC (rev 175512)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: bender02 at gmx dot com
+
+pkgname=nettle
+pkgver=2.6
+pkgrel=1
+pkgdesc="A low-level cryptographic library"
+arch=('i686' 'x86_64')
+url="http://www.lysator.liu.se/~nisse/nettle/";
+license=('GPL2')
+install=$pkgname.install
+depends=('gmp')
+source=(ftp://ftp.lysator.liu.se/pub/security/lsh/$pkgname-$pkgver.tar.gz)
+md5sums=('02f76b668855c4da67186c04cd3a222f')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr --libdir=/usr/lib \
+   --enable-shared
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make -k check
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+  
+  # remove static libs #--disable-static - build would break (since 
nettle 2.6) - and had no effect before
+  rm -f ${pkgdir}/usr/lib/{libhogweed,libnettle}.a
+}

Deleted: extra-i686/nettle.install
===
--- extra-i686/nettle.install   2013-01-17 18:26:02 UTC (rev 175511)
+++ extra-i686/nettle.install   2013-01-17 18:26:40 UTC (rev 175512)
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(nettle.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: nettle/repos/extra-i686/nettle.install (from rev 175511, 
nettle/trunk/nettle.install)
===
--- extra-i686/nettle.install   (rev 0)
+++ extra-i686/nettle.install   2013-01-17 18:26:40 UTC (rev 175512)
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(nettle.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
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-01-17 18:26:02 UTC (rev 175511)
+++ extra-x86_64/PKGBUILD   2013-01-17 18:26:40 UTC (rev 175512)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# 

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

2013-01-17 Thread andyrtr
Date: Thursday, January 17, 2013 @ 13:26:02
  Author: andyrtr
Revision: 175511

upgpkg: nettle 2.6-1

upstream update 2.6

Modified:
  nettle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 17:10:19 UTC (rev 175510)
+++ PKGBUILD2013-01-17 18:26:02 UTC (rev 175511)
@@ -3,7 +3,7 @@
 # Contributor: bender02 at gmx dot com
 
 pkgname=nettle
-pkgver=2.5
+pkgver=2.6
 pkgrel=1
 pkgdesc="A low-level cryptographic library"
 arch=('i686' 'x86_64')
@@ -12,13 +12,12 @@
 install=$pkgname.install
 depends=('gmp')
 source=(ftp://ftp.lysator.liu.se/pub/security/lsh/$pkgname-$pkgver.tar.gz)
-md5sums=('d66882e6ad31a9f651b73d7a1a93bd4c')
+md5sums=('02f76b668855c4da67186c04cd3a222f')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"
   ./configure --prefix=/usr --libdir=/usr/lib \
-   --enable-shared \
-   --disable-static # <-- seems not working now
+   --enable-shared
   make
 }
 
@@ -31,6 +30,6 @@
   cd "$srcdir/$pkgname-$pkgver"
   make DESTDIR="$pkgdir/" install
   
-  # remove static libs
+  # remove static libs #--disable-static - build would break (since 
nettle 2.6) - and had no effect before
   rm -f ${pkgdir}/usr/lib/{libhogweed,libnettle}.a
 }



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

2013-01-17 Thread Tobias Powalowski
Date: Thursday, January 17, 2013 @ 12:10:19
  Author: tpowa
Revision: 175510

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

Added:
  linux-lts/repos/core-i686/3.0.54-ptrace-i686-build.patch
(from rev 175509, 
linux-lts/repos/testing-i686/3.0.54-ptrace-i686-build.patch)
  linux-lts/repos/core-i686/PKGBUILD
(from rev 175509, linux-lts/repos/testing-i686/PKGBUILD)
  linux-lts/repos/core-i686/change-default-console-loglevel.patch
(from rev 175509, 
linux-lts/repos/testing-i686/change-default-console-loglevel.patch)
  linux-lts/repos/core-i686/config
(from rev 175509, linux-lts/repos/testing-i686/config)
  linux-lts/repos/core-i686/config.x86_64
(from rev 175509, linux-lts/repos/testing-i686/config.x86_64)
  linux-lts/repos/core-i686/ext4-options.patch
(from rev 175509, linux-lts/repos/testing-i686/ext4-options.patch)
  linux-lts/repos/core-i686/i915-fix-ghost-tv-output.patch
(from rev 175509, 
linux-lts/repos/testing-i686/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/core-i686/linux-lts.install
(from rev 175509, linux-lts/repos/testing-i686/linux-lts.install)
  linux-lts/repos/core-i686/linux-lts.preset
(from rev 175509, linux-lts/repos/testing-i686/linux-lts.preset)
  linux-lts/repos/core-i686/module-init-wait-3.0.patch
(from rev 175509, linux-lts/repos/testing-i686/module-init-wait-3.0.patch)
  linux-lts/repos/core-i686/module-symbol-waiting-3.0.patch
(from rev 175509, 
linux-lts/repos/testing-i686/module-symbol-waiting-3.0.patch)
  linux-lts/repos/core-x86_64/3.0.54-ptrace-i686-build.patch
(from rev 175509, 
linux-lts/repos/testing-x86_64/3.0.54-ptrace-i686-build.patch)
  linux-lts/repos/core-x86_64/PKGBUILD
(from rev 175509, linux-lts/repos/testing-x86_64/PKGBUILD)
  linux-lts/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 175509, 
linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux-lts/repos/core-x86_64/config
(from rev 175509, linux-lts/repos/testing-x86_64/config)
  linux-lts/repos/core-x86_64/config.x86_64
(from rev 175509, linux-lts/repos/testing-x86_64/config.x86_64)
  linux-lts/repos/core-x86_64/ext4-options.patch
(from rev 175509, linux-lts/repos/testing-x86_64/ext4-options.patch)
  linux-lts/repos/core-x86_64/i915-fix-ghost-tv-output.patch
(from rev 175509, 
linux-lts/repos/testing-x86_64/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/core-x86_64/linux-lts.install
(from rev 175509, linux-lts/repos/testing-x86_64/linux-lts.install)
  linux-lts/repos/core-x86_64/linux-lts.preset
(from rev 175509, linux-lts/repos/testing-x86_64/linux-lts.preset)
  linux-lts/repos/core-x86_64/module-init-wait-3.0.patch
(from rev 175509, linux-lts/repos/testing-x86_64/module-init-wait-3.0.patch)
  linux-lts/repos/core-x86_64/module-symbol-waiting-3.0.patch
(from rev 175509, 
linux-lts/repos/testing-x86_64/module-symbol-waiting-3.0.patch)
Deleted:
  linux-lts/repos/core-i686/3.0.54-ptrace-i686-build.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/core-i686/module-init-wait-3.0.patch
  linux-lts/repos/core-i686/module-symbol-waiting-3.0.patch
  linux-lts/repos/core-x86_64/3.0.54-ptrace-i686-build.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/core-x86_64/module-init-wait-3.0.patch
  linux-lts/repos/core-x86_64/module-symbol-waiting-3.0.patch
  linux-lts/repos/testing-i686/
  linux-lts/repos/testing-x86_64/

---+
 core-i686/3.0.54-ptrace-i686-build.patch  |   82 
 core-i686/PKGBUILD|  634 -
 core-i686/change-default-console-loglevel.patch   |   24 
 core-i686/config  |11150 ++--
 core-i686/config.x86_64   |10660 +--
 core-i686/ext4-options.patch  |   98 
 core-i686/i915-fix-ghost-tv-output.patch  |   52 
 core-i686/linux-lts.install   |  130 
 core-i686/linux-lts.preset|   28 
 core-i686/module-init-wait-3.0.patch  |  154 
 core-i686/module-symbol-waiting-3.0.patch |  132 
 core-x86_64/3.0.54-ptrace-i686-build.patch|   82 
 core-x86_64/PKGBUILD  |  634 -

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

2013-01-17 Thread andyrtr
Date: Thursday, January 17, 2013 @ 10:47:55
  Author: andyrtr
Revision: 175509

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-01-17 15:45:40 UTC (rev 175508)
+++ extra-i686/PKGBUILD 2013-01-17 15:47:55 UTC (rev 175509)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libxi
-pkgver=1.6.1
-pkgrel=1
-pkgdesc="X11 Input extension library"
-arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org";
-depends=('libxext' 'inputproto')
-makedepends=('pkgconfig' 'xorg-util-macros')
-options=(!libtool)
-license=('custom')
-source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2)
-sha1sums=('4b53b41fdaa3acc86606c696c68d5eed11454612')
-
-build() {
-  cd "${srcdir}/libXi-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/libXi-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libxi/repos/extra-i686/PKGBUILD (from rev 175508, libxi/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-17 15:47:55 UTC (rev 175509)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libxi
+pkgver=1.6.2
+pkgrel=1
+pkgdesc="X11 Input extension library"
+arch=('i686' 'x86_64')
+url="http://xorg.freedesktop.org";
+depends=('libxext' 'inputproto')
+makedepends=('pkgconfig' 'xorg-util-macros')
+options=(!libtool)
+license=('custom')
+source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2)
+sha256sums=('3250fd34cdd099a15b78abdb87c7e1a9b7a2188ab893f273e90d831dbc604058')
+
+build() {
+  cd "${srcdir}/libXi-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/libXi-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-01-17 15:45:40 UTC (rev 175508)
+++ extra-x86_64/PKGBUILD   2013-01-17 15:47:55 UTC (rev 175509)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libxi
-pkgver=1.6.1
-pkgrel=1
-pkgdesc="X11 Input extension library"
-arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org";
-depends=('libxext' 'inputproto')
-makedepends=('pkgconfig' 'xorg-util-macros')
-options=(!libtool)
-license=('custom')
-source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2)
-sha1sums=('4b53b41fdaa3acc86606c696c68d5eed11454612')
-
-build() {
-  cd "${srcdir}/libXi-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/libXi-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libxi/repos/extra-x86_64/PKGBUILD (from rev 175508, 
libxi/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-01-17 15:47:55 UTC (rev 175509)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libxi
+pkgver=1.6.2
+pkgrel=1
+pkgdesc="X11 Input extension library"
+arch=('i686' 'x86_64')
+url="http://xorg.freedesktop.org";
+depends=('libxext' 'inputproto')
+makedepends=('pkgconfig' 'xorg-util-macros')
+options=(!libtool)
+license=('custom')
+source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2)
+sha256sums=('3250fd34cdd099a15b78abdb87c7e1a9b7a2188ab893f273e90d831dbc604058')
+
+build() {
+  cd "${srcdir}/libXi-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/libXi-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2013-01-17 Thread andyrtr
Date: Thursday, January 17, 2013 @ 10:45:40
  Author: andyrtr
Revision: 175508

upgpkg: libxi 1.6.2-1

upstream update 1.6.2

Modified:
  libxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 15:31:36 UTC (rev 175507)
+++ PKGBUILD2013-01-17 15:45:40 UTC (rev 175508)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=libxi
-pkgver=1.6.1
+pkgver=1.6.2
 pkgrel=1
 pkgdesc="X11 Input extension library"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 options=(!libtool)
 license=('custom')
 source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2)
-sha1sums=('4b53b41fdaa3acc86606c696c68d5eed11454612')
+sha256sums=('3250fd34cdd099a15b78abdb87c7e1a9b7a2188ab893f273e90d831dbc604058')
 
 build() {
   cd "${srcdir}/libXi-${pkgver}"



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

2013-01-17 Thread andyrtr
Date: Thursday, January 17, 2013 @ 10:31:36
  Author: andyrtr
Revision: 175507

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

Added:
  cairo/repos/testing-i686/
  cairo/repos/testing-i686/PKGBUILD
(from rev 175506, cairo/trunk/PKGBUILD)
  cairo/repos/testing-x86_64/
  cairo/repos/testing-x86_64/PKGBUILD
(from rev 175506, cairo/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   42 ++
 testing-x86_64/PKGBUILD |   42 ++
 2 files changed, 84 insertions(+)

Copied: cairo/repos/testing-i686/PKGBUILD (from rev 175506, 
cairo/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-01-17 15:31:36 UTC (rev 175507)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Brice Carpentier 
+
+pkgname=cairo
+pkgver=1.12.10
+pkgrel=1
+pkgdesc="Cairo vector graphics library"
+arch=(i686 x86_64)
+license=('LGPL' 'MPL')
+url="http://cairographics.org/";
+depends=('libpng' 'libxrender' 'libxext' 'fontconfig' 'pixman>=0.28.0' 'glib2' 
'sh')
+makedepends=('librsvg' 'poppler-glib' 'libspectre' 'gtk-doc' 'valgrind') # 
'libdrm')
+optdepends=('xcb-util: for XCB backend') # really needed?
+provides=('cairo-xcb')
+replaces=('cairo-xcb')
+options=('!libtool')
+source=(http://cairographics.org/releases/$pkgname-$pkgver.tar.xz)
+sha1sums=('be06d5aaa272bbbd08380f71ca710d5612881493')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --disable-static \
+   --enable-tee \
+   --disable-xlib-xcb \
+   # --enable-test-surfaces \ takes ages
+   #--enable-drm # breaks build
+  make
+}
+
+#check() {
+#  cd "$srcdir/$pkgname-$pkgver"
+#  make -k check || /bin/true # 162 Passed, 328 Failed [8 crashed, 10 
expected], 26 Skipped
+#}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Copied: cairo/repos/testing-x86_64/PKGBUILD (from rev 175506, 
cairo/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-01-17 15:31:36 UTC (rev 175507)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Brice Carpentier 
+
+pkgname=cairo
+pkgver=1.12.10
+pkgrel=1
+pkgdesc="Cairo vector graphics library"
+arch=(i686 x86_64)
+license=('LGPL' 'MPL')
+url="http://cairographics.org/";
+depends=('libpng' 'libxrender' 'libxext' 'fontconfig' 'pixman>=0.28.0' 'glib2' 
'sh')
+makedepends=('librsvg' 'poppler-glib' 'libspectre' 'gtk-doc' 'valgrind') # 
'libdrm')
+optdepends=('xcb-util: for XCB backend') # really needed?
+provides=('cairo-xcb')
+replaces=('cairo-xcb')
+options=('!libtool')
+source=(http://cairographics.org/releases/$pkgname-$pkgver.tar.xz)
+sha1sums=('be06d5aaa272bbbd08380f71ca710d5612881493')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --disable-static \
+   --enable-tee \
+   --disable-xlib-xcb \
+   # --enable-test-surfaces \ takes ages
+   #--enable-drm # breaks build
+  make
+}
+
+#check() {
+#  cd "$srcdir/$pkgname-$pkgver"
+#  make -k check || /bin/true # 162 Passed, 328 Failed [8 crashed, 10 
expected], 26 Skipped
+#}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}



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

2013-01-17 Thread andyrtr
Date: Thursday, January 17, 2013 @ 10:31:02
  Author: andyrtr
Revision: 175506

upgpkg: cairo 1.12.10-1

upstream update 1.12.10

Modified:
  cairo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 15:01:31 UTC (rev 175505)
+++ PKGBUILD2013-01-17 15:31:02 UTC (rev 175506)
@@ -3,8 +3,8 @@
 # Contributor: Brice Carpentier 
 
 pkgname=cairo
-pkgver=1.12.8
-pkgrel=2
+pkgver=1.12.10
+pkgrel=1
 pkgdesc="Cairo vector graphics library"
 arch=(i686 x86_64)
 license=('LGPL' 'MPL')
@@ -16,7 +16,7 @@
 replaces=('cairo-xcb')
 options=('!libtool')
 source=(http://cairographics.org/releases/$pkgname-$pkgver.tar.xz)
-sha1sums=('56a10bf3b804367c97734d655c23a9f652d5c297')
+sha1sums=('be06d5aaa272bbbd08380f71ca710d5612881493')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"



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

2013-01-17 Thread Tobias Powalowski
Date: Thursday, January 17, 2013 @ 10:01:31
  Author: tpowa
Revision: 175505

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

Added:
  ocaml/repos/extra-i686/PKGBUILD
(from rev 175504, ocaml/trunk/PKGBUILD)
  ocaml/repos/extra-i686/tk8.6-build.patch
(from rev 175504, ocaml/trunk/tk8.6-build.patch)
  ocaml/repos/extra-x86_64/PKGBUILD
(from rev 175504, ocaml/trunk/PKGBUILD)
  ocaml/repos/extra-x86_64/tk8.6-build.patch
(from rev 175504, ocaml/trunk/tk8.6-build.patch)
Deleted:
  ocaml/repos/extra-i686/PKGBUILD
  ocaml/repos/extra-i686/fix-ocaml-binutils-2.21.patch
  ocaml/repos/extra-x86_64/PKGBUILD
  ocaml/repos/extra-x86_64/fix-ocaml-binutils-2.21.patch

+
 extra-i686/PKGBUILD|  119 ++-
 extra-i686/fix-ocaml-binutils-2.21.patch   |   66 --
 extra-i686/tk8.6-build.patch   |   20 
 extra-x86_64/PKGBUILD  |  119 ++-
 extra-x86_64/fix-ocaml-binutils-2.21.patch |   66 --
 extra-x86_64/tk8.6-build.patch |   20 
 6 files changed, 164 insertions(+), 246 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-01-17 15:01:00 UTC (rev 175504)
+++ extra-i686/PKGBUILD 2013-01-17 15:01:31 UTC (rev 175505)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgbase='ocaml'
-pkgname=('ocaml' 'ocaml-compiler-libs')
-pkgver=4.00.1
-pkgrel=2
-pkgdesc="A functional language with OO extensions"
-arch=('i686' 'x86_64')
-license=('LGPL2' 'custom: QPL-1.0')
-url="http://caml.inria.fr/";
-depends=('gdbm')
-makedepends=('tk>=8.6.0' 'ncurses>=5.6-7' 'libx11')
-optdepends=('ncurses: advanced ncurses features' 'tk: advanced tk features')
-source=(http://caml.inria.fr/distrib/ocaml-4.00/${pkgname}-${pkgver}.tar.gz)
-options=('!makeflags' '!emptydirs')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure -prefix /usr 
-  make world.opt
-}
-
-package_ocaml() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  make PREFIX="${pkgdir}/usr" MANDIR="${pkgdir}/usr/share/man" install
-   
-  # Save >10MB with this one, makepkg only strips debug symbols.
-  #find "${pkgdir}/usr/lib" -type f -name '*.so.*' -exec strip 
--strip-unneeded {} \;
-
-  # install license
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/"
-}
-
-package_ocaml-compiler-libs() {
-pkgdesc="Several modules used internally by the OCaml compiler"
-license=('custom: QPL-1.0')
-depends=('ocaml')
-optdepends=()
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-
-  # Install compiler libraries
-  local compiler_libs="${pkgdir}/usr/lib/ocaml/compiler-libs"
-  mkdir -p "$compiler_libs"/{parsing,typing,utils}
-  cp parsing/*.{cmi,cmo,cmx,ml,mli,mll,o} "$compiler_libs"/parsing
-  cp typing/*.{cmi,cmo,cmx,ml,mli,o} "$compiler_libs"/typing
-  cp utils/*.{cmi,cmo,cmx,ml,mli,o} "$compiler_libs"/utils
-  # duplicated by installation
-  rm -f "$compiler_libs"/typing/outcometree.{cmi,mli}
-
-  # install license
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/"
-}
-md5sums=('91124a8eb12a57f1e56c02fe3db0f9e7')

Copied: ocaml/repos/extra-i686/PKGBUILD (from rev 175504, ocaml/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-17 15:01:31 UTC (rev 175505)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgbase='ocaml'
+pkgname=('ocaml' 'ocaml-compiler-libs')
+pkgver=4.00.1
+pkgrel=3
+pkgdesc="A functional language with OO extensions"
+arch=('i686' 'x86_64')
+license=('LGPL2' 'custom: QPL-1.0')
+url="http://caml.inria.fr/";
+depends=('gdbm')
+makedepends=('tk>=8.6.0' 'ncurses>=5.6-7' 'libx11')
+optdepends=('ncurses: advanced ncurses features' 'tk: advanced tk features')
+source=(http://caml.inria.fr/distrib/ocaml-4.00/${pkgname}-${pkgver}.tar.gz
+tk8.6-build.patch)
+options=('!makeflags' '!emptydirs')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure -prefix /usr 
+  make world.opt
+}
+
+package_ocaml() {
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  # fix https://bugs.archlinux.org/task/33302
+  patch -Np2 -i ../tk8.6-build.patch
+  make PREFIX="${pkgdir}/usr" MANDIR="${pkgdir}/usr/share/man" install
+   
+  # Save >10MB with this one, makepkg only strips debug symbols.
+  #find "${pkgdir}/usr/lib" -type f -name '*.so.*' -exec strip 
--strip-unneeded {} \;
+
+  # install license
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/"
+}
+
+package_ocaml-compiler-libs() {
+pkgdesc="Several modules used internally by the OCaml compiler"
+license=('custom: QPL-1.0')
+depends=('ocaml')
+optdepends=()
+
+  cd "${srcdir}

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

2013-01-17 Thread Tobias Powalowski
Date: Thursday, January 17, 2013 @ 10:01:00
  Author: tpowa
Revision: 175504

upgpkg: ocaml 4.00.1-3

fix missing tk8.6 bindings

Added:
  ocaml/trunk/tk8.6-build.patch
Modified:
  ocaml/trunk/PKGBUILD
Deleted:
  ocaml/trunk/fix-ocaml-binutils-2.21.patch

---+
 PKGBUILD  |9 -
 fix-ocaml-binutils-2.21.patch |   66 
 tk8.6-build.patch |   20 
 3 files changed, 27 insertions(+), 68 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:41:29 UTC (rev 175503)
+++ PKGBUILD2013-01-17 15:01:00 UTC (rev 175504)
@@ -4,7 +4,7 @@
 pkgbase='ocaml'
 pkgname=('ocaml' 'ocaml-compiler-libs')
 pkgver=4.00.1
-pkgrel=2
+pkgrel=3
 pkgdesc="A functional language with OO extensions"
 arch=('i686' 'x86_64')
 license=('LGPL2' 'custom: QPL-1.0')
@@ -12,7 +12,8 @@
 depends=('gdbm')
 makedepends=('tk>=8.6.0' 'ncurses>=5.6-7' 'libx11')
 optdepends=('ncurses: advanced ncurses features' 'tk: advanced tk features')
-source=(http://caml.inria.fr/distrib/ocaml-4.00/${pkgname}-${pkgver}.tar.gz)
+source=(http://caml.inria.fr/distrib/ocaml-4.00/${pkgname}-${pkgver}.tar.gz
+tk8.6-build.patch)
 options=('!makeflags' '!emptydirs')
 
 build() {
@@ -23,6 +24,8 @@
 
 package_ocaml() {
   cd "${srcdir}/${pkgbase}-${pkgver}"
+  # fix https://bugs.archlinux.org/task/33302
+  patch -Np2 -i ../tk8.6-build.patch
   make PREFIX="${pkgdir}/usr" MANDIR="${pkgdir}/usr/share/man" install

   # Save >10MB with this one, makepkg only strips debug symbols.
@@ -55,3 +58,5 @@
   install -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/"
 }
 md5sums=('91124a8eb12a57f1e56c02fe3db0f9e7')
+md5sums=('91124a8eb12a57f1e56c02fe3db0f9e7'
+ '67b0a8a8885fc1221181b171541cb1b0')

Deleted: fix-ocaml-binutils-2.21.patch
===
--- fix-ocaml-binutils-2.21.patch   2013-01-17 14:41:29 UTC (rev 175503)
+++ fix-ocaml-binutils-2.21.patch   2013-01-17 15:01:00 UTC (rev 175504)
@@ -1,66 +0,0 @@
-From: Stephane Glondu 
-Date: Tue, 8 Mar 2011 21:17:40 +0100
-Subject: [PATCH] Fix ocamlopt w.r.t. binutils 2.21
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Bug: http://caml.inria.fr/mantis/view.php?id=5237
-Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=617404
-Authors: Eric Cooper, spiralvoice
-Reviewed-by: Stéphane Glondu 

- asmcomp/amd64/emit.mlp |   13 +++--
- asmcomp/i386/emit.mlp  |6 +++---
- 2 files changed, 10 insertions(+), 9 deletions(-)
-
-diff --git a/asmcomp/amd64/emit.mlp b/asmcomp/amd64/emit.mlp
-index 4a3f844..525c6e6 100644
 a/asmcomp/amd64/emit.mlp
-+++ b/asmcomp/amd64/emit.mlp
-@@ -679,17 +679,18 @@ let fundecl fundecl =
-   emit_all true fundecl.fun_body;
-   List.iter emit_call_gc !call_gc_sites;
-   emit_call_bound_errors ();
-+  begin match Config.system with
-+"linux" | "gnu" ->
-+  `   .type   {emit_symbol fundecl.fun_name},@function\n`;
-+  `   .size   {emit_symbol fundecl.fun_name},.-{emit_symbol 
fundecl.fun_name}\n`
-+| _ -> ()
-+  end;
-   if !float_constants <> [] then begin
- if macosx
- then `.literal8\n`
- else `.section.rodata.cst8,\"a\",@progbits\n`;
- List.iter emit_float_constant !float_constants
--  end;
--  match Config.system with
--"linux" | "gnu" ->
--  `   .type   {emit_symbol fundecl.fun_name},@function\n`;
--  `   .size   {emit_symbol fundecl.fun_name},.-{emit_symbol 
fundecl.fun_name}\n`
--  | _ -> ()
-+  end
- 
- (* Emission of data *)
- 
-diff --git a/asmcomp/i386/emit.mlp b/asmcomp/i386/emit.mlp
-index 2992f29..0b1252c 100644
 a/asmcomp/i386/emit.mlp
-+++ b/asmcomp/i386/emit.mlp
-@@ -905,12 +905,12 @@ let fundecl fundecl =
-   emit_all true fundecl.fun_body;
-   List.iter emit_call_gc !call_gc_sites;
-   emit_call_bound_errors ();
--  List.iter emit_float_constant !float_constants;
--  match Config.system with
-+  begin match Config.system with
- "linux_elf" | "bsd_elf" | "gnu" ->
-   `   .type   {emit_symbol fundecl.fun_name},@function\n`;
-   `   .size   {emit_symbol fundecl.fun_name},.-{emit_symbol 
fundecl.fun_name}\n`
--  | _ -> ()
-+  | _ -> () end;
-+  List.iter emit_float_constant !float_constants
- 
- 
- (* Emission of data *)
--- 

Added: tk8.6-build.patch
===
--- tk8.6-build.patch   (rev 0)
+++ tk8.6-build.patch   2013-01-17 15:01:00 UTC (rev 175504)
@@ -0,0 +1,20 @@
+--- src/ocaml-4.00.1/configure 2012-06-26 08:33:50.0 -0700
 p/src/ocaml-4.00.1/configure   2013-01-05 17:06:54.877900143 -0800
+@@ -804,6 +804,9 @@
+ echo "ARCMD=ar" >> Makefile
+ 
+ 
++bytecccompopts="$bytecccompopts -DUSE_INTERP_RESULT"
++nativecccompopts="$nativecccompopts -DUSE_INTERP_RE

[arch-commits] Commit in xf86-video-intel/repos (10 files)

2013-01-17 Thread andyrtr
Date: Thursday, January 17, 2013 @ 09:41:29
  Author: andyrtr
Revision: 175503

db-move: moved xf86-video-intel from [testing] to [extra] (i686, x86_64)

Added:
  xf86-video-intel/repos/extra-i686/PKGBUILD
(from rev 175501, xf86-video-intel/repos/testing-i686/PKGBUILD)
  xf86-video-intel/repos/extra-i686/xf86-video-intel.install
(from rev 175501, 
xf86-video-intel/repos/testing-i686/xf86-video-intel.install)
  xf86-video-intel/repos/extra-x86_64/PKGBUILD
(from rev 175501, xf86-video-intel/repos/testing-x86_64/PKGBUILD)
  xf86-video-intel/repos/extra-x86_64/xf86-video-intel.install
(from rev 175501, 
xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install)
Deleted:
  xf86-video-intel/repos/extra-i686/PKGBUILD
  xf86-video-intel/repos/extra-i686/xf86-video-intel.install
  xf86-video-intel/repos/extra-x86_64/PKGBUILD
  xf86-video-intel/repos/extra-x86_64/xf86-video-intel.install
  xf86-video-intel/repos/testing-i686/
  xf86-video-intel/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   72 
 extra-i686/xf86-video-intel.install   |   16 +++
 extra-x86_64/PKGBUILD |   72 
 extra-x86_64/xf86-video-intel.install |   16 +++
 4 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-01-17 14:41:27 UTC (rev 175502)
+++ extra-i686/PKGBUILD 2013-01-17 14:41:29 UTC (rev 175503)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-intel
-pkgver=2.20.17
-pkgrel=1
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-install=$pkgname.install
-pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
-depends=('intel-dri' 'libxvmc' 'xcb-util>=0.3.9' 'systemd')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto' 'libx11' 'libxrender')
-replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-conflicts=('xorg-server<1.13.0' 'X-ABI-VIDEODRV_VERSION<13' 
'X-ABI-VIDEODRV_VERSION>=14'
-   'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('0bf5e9bd82b2643e06503665545f5cc8c3e24ab48ca4fe84f4e9e7ebbb9e7dbc')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
---enable-dri
-  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}/"
-}

Copied: xf86-video-intel/repos/extra-i686/PKGBUILD (from rev 175501, 
xf86-video-intel/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-17 14:41:29 UTC (rev 175503)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-intel
+pkgver=2.20.18
+pkgrel=1
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+install=$pkgname.install
+pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
+depends=('intel-dri' 'libxvmc' 'xcb-util>=0.3.9' 'systemd')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto' 'libx11' 'libxrender')
+replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+conflicts=('xorg-server<1.13.0' 'X-ABI-VIDEODRV_VERSION<13' 
'X-ABI-VIDEODRV_VERSION>=14'
+   'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('f3daedf9571b04234053507940ba0a221abfcd294c3c350ff49eaf499b8437b5')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+--enable-dri
+  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}/"
+}

Deleted: extra-i686/xf86-video-intel.install
===
--- extra-i686/xf86-video-intel.install 2013-01-17 14:41:27 UTC (rev 175502)
+++ extra-i686/xf86-video-intel.install 2013-01-17 14:41:29 UTC (rev 175503)
@@ -1,8 +0,0 @@
-post_install() {
-  echo ">>> This driver now allows to switch"
-  echo ">>> between sna/uxa acceleration methods."
-  echo ">>> Add to the device section in /etc/X11/xorg.co

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

2013-01-17 Thread andyrtr
Date: Thursday, January 17, 2013 @ 09:41:27
  Author: andyrtr
Revision: 175502

db-move: moved libdrm from [testing] to [extra] (i686, x86_64)

Added:
  libdrm/repos/extra-i686/COPYING
(from rev 175501, libdrm/repos/testing-i686/COPYING)
  libdrm/repos/extra-i686/PKGBUILD
(from rev 175501, libdrm/repos/testing-i686/PKGBUILD)
  libdrm/repos/extra-i686/buildfix.diff
(from rev 175501, libdrm/repos/testing-i686/buildfix.diff)
  libdrm/repos/extra-i686/no-pthread-stubs.patch
(from rev 175501, libdrm/repos/testing-i686/no-pthread-stubs.patch)
  libdrm/repos/extra-x86_64/COPYING
(from rev 175501, libdrm/repos/testing-x86_64/COPYING)
  libdrm/repos/extra-x86_64/PKGBUILD
(from rev 175501, libdrm/repos/testing-x86_64/PKGBUILD)
  libdrm/repos/extra-x86_64/buildfix.diff
(from rev 175501, libdrm/repos/testing-x86_64/buildfix.diff)
  libdrm/repos/extra-x86_64/no-pthread-stubs.patch
(from rev 175501, libdrm/repos/testing-x86_64/no-pthread-stubs.patch)
Deleted:
  libdrm/repos/extra-i686/COPYING
  libdrm/repos/extra-i686/PKGBUILD
  libdrm/repos/extra-i686/no-pthread-stubs.patch
  libdrm/repos/extra-x86_64/COPYING
  libdrm/repos/extra-x86_64/PKGBUILD
  libdrm/repos/extra-x86_64/no-pthread-stubs.patch
  libdrm/repos/testing-i686/
  libdrm/repos/testing-x86_64/

-+
 extra-i686/COPYING  |   96 +++
 extra-i686/PKGBUILD |   95 ---
 extra-i686/buildfix.diff|   11 +
 extra-i686/no-pthread-stubs.patch   |  208 +-
 extra-x86_64/COPYING|   96 +++
 extra-x86_64/PKGBUILD   |   95 ---
 extra-x86_64/buildfix.diff  |   11 +
 extra-x86_64/no-pthread-stubs.patch |  208 +-
 8 files changed, 426 insertions(+), 394 deletions(-)

Deleted: extra-i686/COPYING
===
--- extra-i686/COPYING  2013-01-17 14:12:39 UTC (rev 175501)
+++ extra-i686/COPYING  2013-01-17 14:41:27 UTC (rev 175502)
@@ -1,48 +0,0 @@
- Copyright 2005 Adam Jackson.
-
- Permission is hereby granted, free of charge, to any person obtaining
- a copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation on the rights to use, copy, modify, merge,
- publish, distribute, sub license, and/or sell copies of the Software,
- and to permit persons to whom the Software is furnished to do so,
- subject to the following conditions:
-
- The above copyright notice and this permission notice (including the
- next paragraph) shall be included in all copies or substantial
- portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NON-INFRINGEMENT.  IN NO EVENT SHALL ADAM JACKSON BE LIABLE FOR ANY
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
-
- Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
- Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
- All Rights Reserved.
-
- Permission is hereby granted, free of charge, to any person obtaining
- a copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions:
-
- The above copyright notice and this permission notice (including the
- next paragraph) shall be included in all copies or substantial
- portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT.  IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS
- SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- DEALINGS IN THE SOFTWARE.

Copied: libdrm/repos/extra-i686/COPYING (from rev 175501, 
libdrm/repos/testing-i686/COPYING)
===
--- extra-i686/COPYING  (rev 0)
+++ extra-i686/COPYING  2013-01-17 14:41:27 UTC (rev 175502)
@@ -0,0 +1,48 @@
+ Copyright 2005 Adam Jackson.
+
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated do

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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:12:36
  Author: andrea
Revision: 175500

KDE 4.10 RC3

Modified:
  kdewebdev/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:12:33 UTC (rev 175499)
+++ PKGBUILD2013-01-17 14:12:36 UTC (rev 175500)
@@ -7,7 +7,7 @@
  'kdewebdev-kimagemapeditor'
  'kdewebdev-klinkstatus'
  'kdewebdev-kommander')
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -15,7 +15,7 @@
 groups=('kde' 'kdewebdev')
 makedepends=('cmake' 'automoc4' 'ruby' 'tidyhtml' 'kdepimlibs' 'boost')
 
source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('7cf7952d1d18801ac565945d5562d1483b0c0a49')
+sha1sums=('26479904724ad94f4315b300b02b66b65761141d')
 
 build() {
cd $srcdir



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:12:39
  Author: andrea
Revision: 175501

KDE 4.10 RC3

Modified:
  kde-wallpapers/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:12:36 UTC (rev 175500)
+++ PKGBUILD2013-01-17 14:12:39 UTC (rev 175501)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kde-wallpapers
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A set of wallpapers for KDE"
 arch=('any')
@@ -11,7 +11,7 @@
 groups=('kde' 'kde-meta' 'kdebase')
 makedepends=('kdelibs' 'cmake' 'automoc4')
 
source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('ccdf41a51bfc2e45f6ddd6cfefb2909d51c1aacb')
+sha1sums=('2f86466c742a1cae0567fae95fd41cd129b8b733')
 
 package() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:12:33
  Author: andrea
Revision: 175499

KDE 4.10 RC3

Modified:
  kdeutils-sweeper/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:12:30 UTC (rev 175498)
+++ PKGBUILD2013-01-17 14:12:33 UTC (rev 175499)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-sweeper
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc='System Cleaner'
 url='http://kde.org/applications/utilities/sweeper'
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'automoc4')
 groups=('kde' 'kdeutils')
 
source=("http://download.kde.org/unstable/${pkgver}/src/sweeper-${pkgver}.tar.xz";)
-sha1sums=('600d02e3e8c5898331fa0ce5d1ed922c83fdc99a')
+sha1sums=('dc85058699042f61e2c95186004b6c474bdaacfd')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:12:30
  Author: andrea
Revision: 175498

KDE 4.10 RC3

Modified:
  kdeutils-superkaramba/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:12:26 UTC (rev 175497)
+++ PKGBUILD2013-01-17 14:12:30 UTC (rev 175498)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-superkaramba
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc='An engine for cool desktop eyecandy'
 url='http://kde.org/applications/utilities/superkaramba/'
@@ -13,7 +13,7 @@
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/superkaramba-${pkgver}.tar.xz";)
-sha1sums=('33091c968fda7e038c210a4b64f2db93db77b80e')
+sha1sums=('943bb9646da9592331b61bf36ea26f40d95f6996')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:12:26
  Author: andrea
Revision: 175497

KDE 4.10 RC3

Modified:
  kdeutils-print-manager/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:12:23 UTC (rev 175496)
+++ PKGBUILD2013-01-17 14:12:26 UTC (rev 175497)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-print-manager
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A tool for managing print jobs and printers"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 conflicts=('print-manager')
 groups=('kde' 'kdeutils')
 
source=("http://download.kde.org/unstable/${pkgver}/src/print-manager-${pkgver}.tar.xz";)
-sha1sums=('92cdbaa5394492e23ac67547eb159124257b1fec')
+sha1sums=('4a3d143b3d192efc747958b5d4fd214937005f4a')
 
 build() {
   mkdir build
@@ -22,7 +22,7 @@
   cmake ../print-manager-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
 -DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_PREFIX=/usr
   make
 }
 



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:12:23
  Author: andrea
Revision: 175496

KDE 4.10 RC3

Modified:
  kdeutils-kwallet/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:12:20 UTC (rev 175495)
+++ PKGBUILD2013-01-17 14:12:23 UTC (rev 175496)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-kwallet
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc='Wallet Management Tool'
 url='http://kde.org/applications/system/kwalletmanager/'
@@ -13,7 +13,7 @@
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kwallet-${pkgver}.tar.xz";)
-sha1sums=('7cfc021d32510285efed347947d51f84e5ca9bb1')
+sha1sums=('26f73f892caabfe0913268109173b25d143c6484')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:12:20
  Author: andrea
Revision: 175495

KDE 4.10 RC3

Modified:
  kdeutils-ktimer/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:12:16 UTC (rev 175494)
+++ PKGBUILD2013-01-17 14:12:20 UTC (rev 175495)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-ktimer
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc='Countdown Launcher'
 url='http://kde.org/applications/utilities/ktimer/'
@@ -13,7 +13,7 @@
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/ktimer-${pkgver}.tar.xz";)
-sha1sums=('71c689bc76d341d7f80be2f9b18be00ac6e3be76')
+sha1sums=('fa2e4054d66327b4609346d204dd9361171e9b17')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:12:16
  Author: andrea
Revision: 175494

KDE 4.10 RC3

Modified:
  kdeutils-kremotecontrol/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:12:13 UTC (rev 175493)
+++ PKGBUILD2013-01-17 14:12:16 UTC (rev 175494)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-kremotecontrol
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc='Configure your remote controls for use with applications'
 url='http://kde.org/applications/utilities/kremotecontrol/'
@@ -15,7 +15,7 @@
 conflicts=('kdeutils-kdelirc')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kremotecontrol-${pkgver}.tar.xz";)
-sha1sums=('864d48b76b73e94d1046e983b759b1e68edc7a8b')
+sha1sums=('aef352c6d2f884ffa0fa3c795020e9d3651e0626')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:12:13
  Author: andrea
Revision: 175493

KDE 4.10 RC3

Modified:
  kdeutils-kgpg/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:12:09 UTC (rev 175492)
+++ PKGBUILD2013-01-17 14:12:13 UTC (rev 175493)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-kgpg
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc='A GnuPG frontend'
 url='http://kde.org/applications/utilities/kgpg/'
@@ -13,7 +13,7 @@
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
 source=("http://download.kde.org/unstable/${pkgver}/src/kgpg-${pkgver}.tar.xz";)
-sha1sums=('97237fc9500f2f04bdb07fcef29f2f1cad19207a')
+sha1sums=('d4b1671127b820178e27b02de8872ee54dd3900c')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:12:09
  Author: andrea
Revision: 175492

KDE 4.10 RC3

Modified:
  kdeutils-kfloppy/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:12:06 UTC (rev 175491)
+++ PKGBUILD2013-01-17 14:12:09 UTC (rev 175492)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-kfloppy
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc='Floppy Formatter'
 url='http://kde.org/applications/utilities/kfloppy/'
@@ -13,7 +13,7 @@
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kfloppy-${pkgver}.tar.xz";)
-sha1sums=('f311f4a8de72007a0a29cd6b5de4954e7da9e559')
+sha1sums=('ed4f93ca0de42453e8c46fa4101d05fe20cc382e')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:12:06
  Author: andrea
Revision: 175491

KDE 4.10 RC3

Modified:
  kdeutils-kdf/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:12:03 UTC (rev 175490)
+++ PKGBUILD2013-01-17 14:12:06 UTC (rev 175491)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-kdf
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 url="http://kde.org/applications/system/kdiskfree/";
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
 source=("http://download.kde.org/unstable/${pkgver}/src/kdf-${pkgver}.tar.xz";)
-sha1sums=('228ad81678206325a85815243deb696b0aae702c')
+sha1sums=('ad16edc546640181bfe13e0d7e246ba7f0566d20')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:12:03
  Author: andrea
Revision: 175490

KDE 4.10 RC3

Modified:
  kdeutils-kcharselect/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:12:00 UTC (rev 175489)
+++ PKGBUILD2013-01-17 14:12:03 UTC (rev 175490)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-kcharselect
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc='Character Selector'
 url="http://kde.org/applications/utilities/kcharselect/";
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'automoc4')
 groups=('kde' 'kdeutils')
 
source=("http://download.kde.org/unstable/${pkgver}/src/kcharselect-${pkgver}.tar.xz";)
-sha1sums=('ebcde5b01bf0c883ddbee233d419c9964f6cc289')
+sha1sums=('c6383073a2e5dfed6aa6c5bafd7e1707f7f701dc')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:12:00
  Author: andrea
Revision: 175489

KDE 4.10 RC3

Modified:
  kdeutils-kcalc/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:57 UTC (rev 175488)
+++ PKGBUILD2013-01-17 14:12:00 UTC (rev 175489)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-kcalc
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc='Scientific Calculator'
 url='http://kde.org/applications/utilities/kcalc/'
@@ -13,7 +13,7 @@
 groups=('kde' 'kdeutils')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kcalc-${pkgver}.tar.xz";)
-sha1sums=('8c788adb809970464f8824865194da4cceea817b')
+sha1sums=('3b3e73c25046db2c899fa0a3fb10293f82ff8af5')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:57
  Author: andrea
Revision: 175488

KDE 4.10 RC3

Modified:
  kdeutils-filelight/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:53 UTC (rev 175487)
+++ PKGBUILD2013-01-17 14:11:57 UTC (rev 175488)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-filelight
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc='View disk usage information'
 url='http://kde.org/applications/utilities/filelight'
@@ -15,7 +15,7 @@
 conflicts=('filelight')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/filelight-${pkgver}.tar.xz";)
-sha1sums=('508ee12c7c774f6b3a34a5fdcd329a89b608b177')
+sha1sums=('84e77ff0320e7062b06a618236688bc8b0eb3510')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:53
  Author: andrea
Revision: 175487

KDE 4.10 RC3

Modified:
  kdeutils-ark/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:50 UTC (rev 175486)
+++ PKGBUILD2013-01-17 14:11:53 UTC (rev 175487)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeutils-ark
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc='Archiving Tool'
 url='http://kde.org/applications/utilities/ark/'
@@ -14,7 +14,7 @@
 optdepends=('p7zip' 'zip' 'unzip' 'unrar')
 install=${pkgname}.install
 source=("http://download.kde.org/unstable/${pkgver}/src/ark-${pkgver}.tar.xz";)
-sha1sums=('dfc1958da94310f0964e48b03d38216b8a5fe821')
+sha1sums=('36d266b03475b5264cd2fed0d45dd037e73316ca')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:50
  Author: andrea
Revision: 175486

KDE 4.10 RC3

Modified:
  kdetoys/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:47 UTC (rev 175485)
+++ PKGBUILD2013-01-17 14:11:50 UTC (rev 175486)
@@ -6,7 +6,7 @@
 pkgname=('kdetoys-amor'
  'kdetoys-kteatime'
  'kdetoys-ktux')
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -14,7 +14,7 @@
 groups=('kde' 'kdetoys')
 makedepends=('cmake' 'automoc4' 'kdebase-workspace')
 
source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('7a5e9acb9462f2236a8ba038364634348aaf1edb')
+sha1sums=('bcb0cfeaf35c2c2c32abb496d29f25ea0049731c')
 
 build() {
cd $srcdir



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:47
  Author: andrea
Revision: 175485

KDE 4.10 RC3

Modified:
  kdesdk/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:43 UTC (rev 175484)
+++ PKGBUILD2013-01-17 14:11:47 UTC (rev 175485)
@@ -20,7 +20,7 @@
  'kdesdk-scripts'
  'kdesdk-strigi-analyzer'
  'kdesdk-umbrello')
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -30,7 +30,7 @@
  'kdebase-lib')
 
source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";
 'fix-python2-path.patch')
-sha1sums=('1c75ae655e7c68ac557be5597f2159f2c4daa51b'
+sha1sums=('c9a8845e3c949896df7ebeccf9bf30ca28fe2d00'
   '923cabd7a877cf9a68efeb24fbf3d5827e1d949e')
 
 build() {



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:43
  Author: andrea
Revision: 175484

KDE 4.10 RC3

Modified:
  kdeplasma-addons/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:40 UTC (rev 175483)
+++ PKGBUILD2013-01-17 14:11:43 UTC (rev 175484)
@@ -77,7 +77,7 @@
  'kdeplasma-addons-wallpapers-qmlwallpapers'
  'kdeplasma-addons-wallpapers-virus'
  'kdeplasma-addons-wallpapers-weather')
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -86,7 +86,7 @@
 makedepends=('cmake' 'automoc4' 'kdebase-workspace' 'kdeedu-marble' 'eigen'
  'scim' 'qwt' 'boost' 'libkexiv2' 'ibus' 'qoauth' 'mesa')
 
source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('191f420981e2f5566d16b146b73bf31d5efd34b4')
+sha1sums=('4ff05e540cda1d74023fc86dc18bbff3c651fa7d')
 
 build() {
mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:40
  Author: andrea
Revision: 175483

KDE 4.10 RC3

Modified:
  kdepim/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:37 UTC (rev 175482)
+++ PKGBUILD2013-01-17 14:11:40 UTC (rev 175483)
@@ -20,7 +20,7 @@
  'kdepim-ktimetracker'
  'kdepim-ktnef'
  'kdepim-libkdepim')
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://pim.kde.org'
@@ -29,7 +29,7 @@
 makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'libxss' 'pilot-link'
  'kde-agent' 'nepomuk-widgets')
 
source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('830065e06b077f7c97d15aad9a2495f4d6cb46a2')
+sha1sums=('06fecc555fee40ccc22fff54400d0b40e248e328')
 
 build() {
mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:37
  Author: andrea
Revision: 175482

KDE 4.10 RC3

Modified:
  kdenetwork/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:33 UTC (rev 175481)
+++ PKGBUILD2013-01-17 14:11:37 UTC (rev 175482)
@@ -10,7 +10,7 @@
  'kdenetwork-kppp'
  'kdenetwork-krdc'
  'kdenetwork-krfb')
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -22,7 +22,7 @@
 'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt')
 
source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";
 'use-libotr3.patch')
-sha1sums=('01fbf3b8403a2dda158afa27dfd086f95a792916'
+sha1sums=('18b5a408998980f27cfe2522ea03afb765230965'
   '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384')
 
 build() {



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:33
  Author: andrea
Revision: 175481

KDE 4.10 RC3

Modified:
  kdemultimedia-mplayerthumbs/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:30 UTC (rev 175480)
+++ PKGBUILD2013-01-17 14:11:33 UTC (rev 175481)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdemultimedia-mplayerthumbs
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="MPlayer based thumbnail generator for video files"
 url='https://projects.kde.org/projects/kde/kdemultimedia/mplayerthumbs'
@@ -12,7 +12,7 @@
 depends=('kdebase-runtime' 'mplayer')
 makedepends=('cmake' 'automoc4')
 
source=("http://download.kde.org/unstable/${pkgver}/src/mplayerthumbs-${pkgver}.tar.xz";)
-sha1sums=('fcd5115ba9aa12cad672efd77f5e1a64369214fc')
+sha1sums=('fe3ba1b8c21e72330acee1dd29899cf677e95dca')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:30
  Author: andrea
Revision: 175480

KDE 4.10 RC3

Modified:
  kdemultimedia-kscd/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:26 UTC (rev 175479)
+++ PKGBUILD2013-01-17 14:11:30 UTC (rev 175480)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdemultimedia-kscd
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="KDE CD player"
 url='http://kde.org/applications/multimedia/kscd/'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install="${pkgname}.install"
 source=("http://download.kde.org/unstable/${pkgver}/src/kscd-${pkgver}.tar.xz";)
-sha1sums=('a18dbe17ddf97902476c45180fd4a106b2ab0a29')
+sha1sums=('c50993d57416d00b54a7a68cc8daf214c0cfbcef')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:26
  Author: andrea
Revision: 175479

KDE 4.10 RC3

Modified:
  kdemultimedia-kmix/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:23 UTC (rev 175478)
+++ PKGBUILD2013-01-17 14:11:26 UTC (rev 175479)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdemultimedia-kmix
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="KDE volume control program"
 url='http://kde.org/applications/multimedia/kmix/'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install="${pkgname}.install"
 source=("http://download.kde.org/unstable/${pkgver}/src/kmix-${pkgver}.tar.xz";)
-sha1sums=('41bb143a3394b6dd4cc259e95f9087b3819769e0')
+sha1sums=('6488e6ac7b2fbd4cad2a5b5efc0bd71a308ca5e8')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:23
  Author: andrea
Revision: 175478

KDE 4.10 RC3

Modified:
  kdemultimedia-juk/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:20 UTC (rev 175477)
+++ PKGBUILD2013-01-17 14:11:23 UTC (rev 175478)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdemultimedia-juk
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc='A jukebox, tagger and music collection manager'
 url='http://kde.org/applications/multimedia/juk/'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install="${pkgname}.install"
 source=("http://download.kde.org/unstable/${pkgver}/src/juk-${pkgver}.tar.xz";)
-sha1sums=('d7c6492508bfc100bf343b830a922b41f7a2dae6')
+sha1sums=('a9532dea761cb85e86aa0345528f474da0d2d99b')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:20
  Author: andrea
Revision: 175477

KDE 4.10 RC3

Modified:
  kdemultimedia-ffmpegthumbs/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:16 UTC (rev 175476)
+++ PKGBUILD2013-01-17 14:11:20 UTC (rev 175477)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdemultimedia-ffmpegthumbs
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc='FFmpeg-based thumbnail creator for video files'
 url='https://projects.kde.org/projects/kde/kdemultimedia/ffmpegthumbs'
@@ -12,7 +12,7 @@
 depends=('kdelibs' 'ffmpeg')
 makedepends=('cmake' 'automoc4')
 
source=("http://download.kde.org/unstable/${pkgver}/src/ffmpegthumbs-${pkgver}.tar.xz";)
-sha1sums=('fdde5060938235983b3e0e7737acd80fa3ea406d')
+sha1sums=('41903821ea8583174a3f35e8d28259bef30e8abd')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:16
  Author: andrea
Revision: 175476

KDE 4.10 RC3

Modified:
  kdemultimedia-dragonplayer/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:13 UTC (rev 175475)
+++ PKGBUILD2013-01-17 14:11:16 UTC (rev 175476)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdemultimedia-dragonplayer
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A multimedia player where the focus is on simplicity, instead of
 features"
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'automoc4')
 install="${pkgname}.install"
 
source=("http://download.kde.org/unstable/${pkgver}/src/dragon-${pkgver}.tar.xz";)
-sha1sums=('3d55ed0cd2a2ddd32a359b570c46f0356d565d68')
+sha1sums=('db6a7ec21f8edf93e27744d8ae0409365cc8bec1')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:13
  Author: andrea
Revision: 175475

KDE 4.10 RC3

Modified:
  kdemultimedia-audiocd-kio/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:09 UTC (rev 175474)
+++ PKGBUILD2013-01-17 14:11:13 UTC (rev 175475)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdemultimedia-audiocd-kio
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="Kioslave for accessing audio CDs"
 url='https://projects.kde.org/projects/kde/kdemultimedia/audiocd-kio'
@@ -14,7 +14,7 @@
 replaces=('kdemultimedia-kioslave')
 conflicts=('kdemultimedia-kioslave')
 
source=("http://download.kde.org/unstable/${pkgver}/src/audiocd-kio-${pkgver}.tar.xz";)
-sha1sums=('b555865e7675c9413bff92dee9c2bd379fbf7b8a')
+sha1sums=('b26636c1b559fef01352a806d6eccb0ab9f301e6')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:09:11
  Author: andrea
Revision: 175443

KDE 4.10 RC3

Modified:
  kdegames-kmahjongg/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:09:07 UTC (rev 175442)
+++ PKGBUILD2013-01-17 14:09:11 UTC (rev 175443)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kmahjongg
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A tile matching game for one or two players"
 url="http://kde.org/applications/games/kmahjongg/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kmahjongg-${pkgver}.tar.xz";)
-sha1sums=('dcc7cd6bf2c5f3ddea9199a874ac5daf4fa29cf0')
+sha1sums=('62099a9039a5652e48bc2b504e29075c61a3be0a')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:09
  Author: andrea
Revision: 175474

KDE 4.10 RC3

Modified:
  kdegraphics-thumbnailers/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:06 UTC (rev 175473)
+++ PKGBUILD2013-01-17 14:11:09 UTC (rev 175474)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegraphics-thumbnailers
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="Thumbnailers for various graphics file formats"
 
url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-thumbnailers";
@@ -13,7 +13,7 @@
 replaces=('kdegraphics-libs')
 conflicts=('kdegraphics-libs')
 
source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('de376cad20b7739cea8ca3a50535f1a92b67a749')
+sha1sums=('aa6dce7656c7e8fd7b9b903615a96ac0b174d71c')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:09:07
  Author: andrea
Revision: 175442

KDE 4.10 RC3

Modified:
  kdegames-klines/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:09:02 UTC (rev 175441)
+++ PKGBUILD2013-01-17 14:09:07 UTC (rev 175442)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-klines
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A simple but highly addictive, one player game"
 url="http://kde.org/applications/games/klines/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/klines-${pkgver}.tar.xz";)
-sha1sums=('4ee4c1a4508e55968e58a6d78d27029de3dcc383')
+sha1sums=('f88798c6a2d64100cfec827648abb7841332024e')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:09:02
  Author: andrea
Revision: 175441

KDE 4.10 RC3

Modified:
  kdegames-klickety/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:58 UTC (rev 175440)
+++ PKGBUILD2013-01-17 14:09:02 UTC (rev 175441)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-klickety
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="An adaptation of the Clickomania game"
 url="http://kde.org/applications/games/klickety/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/klickety-${pkgver}.tar.xz";)
-sha1sums=('8906940c7a22c27cb6270f740f2bdb9395216b79')
+sha1sums=('bf6ce5673274e7364f30fd3ace08f46bced6b4f3')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:58
  Author: andrea
Revision: 175440

KDE 4.10 RC3

Modified:
  kdegames-kjumpingcube/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:53 UTC (rev 175439)
+++ PKGBUILD2013-01-17 14:08:58 UTC (rev 175440)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kjumpingcube
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A simple tactical game"
 url="http://kde.org/applications/games/kjumpingcube/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kjumpingcube-${pkgver}.tar.xz";)
-sha1sums=('6618dd2c9e2dbae4e8657fa0db9d2df7da5e22ae')
+sha1sums=('cd99ee90a21e16ca71481743ad863f88bf80f8f1')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:53
  Author: andrea
Revision: 175439

KDE 4.10 RC3

Modified:
  kdegames-kiriki/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:48 UTC (rev 175438)
+++ PKGBUILD2013-01-17 14:08:53 UTC (rev 175439)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kiriki
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="An addictive and fun dice game"
 url="http://kde.org/applications/games/kiriki/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kiriki-${pkgver}.tar.xz";)
-sha1sums=('64fc668e2f0335f71854c9c3bad2039dfe4f619e')
+sha1sums=('cd3235b14d132798f1dc4989ec3912292cfb3ed0')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:48
  Author: andrea
Revision: 175438

KDE 4.10 RC3

Modified:
  kdegames-killbots/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:44 UTC (rev 175437)
+++ PKGBUILD2013-01-17 14:08:48 UTC (rev 175438)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-killbots
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A simple game of evading killer robots"
 url="http://kde.org/applications/games/killbots/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/killbots-${pkgver}.tar.xz";)
-sha1sums=('526be3e244b78fe638b6ccf9d7031c7763a8ebc7')
+sha1sums=('5a4ee7c1ba3a626078886533b4029568163a9509')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:44
  Author: andrea
Revision: 175437

KDE 4.10 RC3

Modified:
  kdegames-kigo/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:39 UTC (rev 175436)
+++ PKGBUILD2013-01-17 14:08:44 UTC (rev 175437)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kigo
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="An open-source implementation of the popular Go game"
 url="http://kde.org/applications/games/kigo/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 source=("http://download.kde.org/unstable/${pkgver}/src/kigo-${pkgver}.tar.xz";)
-sha1sums=('9246458a78ac1c707badbd8e75a9024968d78dd4')
+sha1sums=('f083b49961f683009e083dd04027c3591292554d')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:39
  Author: andrea
Revision: 175465

KDE 4.10 RC3

Modified:
  kdegraphics-kcolorchooser/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:36 UTC (rev 175464)
+++ PKGBUILD2013-01-17 14:10:39 UTC (rev 175465)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegraphics-kcolorchooser
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="Color Chooser"
 url="http://kde.org/applications/graphics/kcolorchooser/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kcolorchooser-${pkgver}.tar.xz";)
-sha1sums=('07e3145508697c6037a9f48c3db8ef48e160ebc9')
+sha1sums=('2d24b4ac68804524272c00c1e9edcc21135bd7b3')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:22
  Author: andrea
Revision: 175460

KDE 4.10 RC3

Modified:
  kdegames-lskat/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:19 UTC (rev 175459)
+++ PKGBUILD2013-01-17 14:10:22 UTC (rev 175460)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-lskat
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="Lieutenant Skat is a fun and engaging card game for two players"
 url="http://kde.org/applications/games/lskat/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/lskat-${pkgver}.tar.xz";)
-sha1sums=('b16601bc7e338c7e7bf9cff61e9b38a2fabd2dbe')
+sha1sums=('491d056ff8c1cb4dbe787fac5b3bcc4040581ffe')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:36
  Author: andrea
Revision: 175464

KDE 4.10 RC3

Modified:
  kdegraphics-kamera/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:32 UTC (rev 175463)
+++ PKGBUILD2013-01-17 14:10:36 UTC (rev 175464)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegraphics-kamera
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="Configure Kamera"
 url="http://kde.org/applications/graphics/kamera/";
@@ -12,7 +12,7 @@
 depends=('kdebase-runtime' 'libgphoto2')
 makedepends=('cmake' 'automoc4')
 
source=("http://download.kde.org/unstable/${pkgver}/src/kamera-${pkgver}.tar.xz";)
-sha1sums=('f42e3fd0df8f96c030f214ffd7eb9433c91763f0')
+sha1sums=('35aee894c13dd5c764fb8961688b9e798989f088')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:19
  Author: andrea
Revision: 175459

KDE 4.10 RC3

Modified:
  kdegames-kubrick/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:16 UTC (rev 175458)
+++ PKGBUILD2013-01-17 14:10:19 UTC (rev 175459)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kubrick
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="Based on the famous Rubik's Cube"
 url="http://kde.org/applications/games/kubrick/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4' 'mesa')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kubrick-${pkgver}.tar.xz";)
-sha1sums=('156f9e9cfeafca3903a1f62a28d2250a6174eb8d')
+sha1sums=('dc49d03158fe324ea861ef9d60071a516feba2fe')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:16
  Author: andrea
Revision: 175458

KDE 4.10 RC3

Modified:
  kdegames-ktuberling/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:12 UTC (rev 175457)
+++ PKGBUILD2013-01-17 14:10:16 UTC (rev 175458)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-ktuberling
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A simple constructor game suitable for children and adults alike"
 url="http://kde.org/applications/games/ktuberling/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/ktuberling-${pkgver}.tar.xz";)
-sha1sums=('be66854b4d090ca0f958bb1350defdd55e590f02')
+sha1sums=('30ebfd42b4f43cff24401d7f9981645828c39341')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:12
  Author: andrea
Revision: 175457

KDE 4.10 RC3

Modified:
  kdegames-ksudoku/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:08 UTC (rev 175456)
+++ PKGBUILD2013-01-17 14:10:12 UTC (rev 175457)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-ksudoku
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A logic-based symbol placement puzzle"
 url="http://kde.org/applications/games/ksudoku/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4' 'mesa')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/ksudoku-${pkgver}.tar.xz";)
-sha1sums=('2cdd71e3299fac7b7e598fe2ce1aeed9144d2b84')
+sha1sums=('406ba7429974813f26a2c7a2165f622b568c7feb')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:08
  Author: andrea
Revision: 175456

KDE 4.10 RC3

Modified:
  kdegames-ksquares/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:04 UTC (rev 175455)
+++ PKGBUILD2013-01-17 14:10:08 UTC (rev 175456)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-ksquares
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A modeled after the well known pen and paper based game of Dots and 
Boxes"
 url="http://kde.org/applications/games/ksquares/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/ksquares-${pkgver}.tar.xz";)
-sha1sums=('84290308631e7a78b89bdecc8be8524194ee0644')
+sha1sums=('6d3b87d2b3186d35aea2113c77502ae572d85b09')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:04
  Author: andrea
Revision: 175455

KDE 4.10 RC3

Modified:
  kdegames-kspaceduel/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:09:59 UTC (rev 175454)
+++ PKGBUILD2013-01-17 14:10:04 UTC (rev 175455)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kspaceduel
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="Each of two possible players controls a satellite spaceship orbiting 
the sun"
 url="http://kde.org/applications/games/kspaceduel/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kspaceduel-${pkgver}.tar.xz";)
-sha1sums=('ad97df98fdf15a76a64fc4ea51299c7444ea95af')
+sha1sums=('1caaa78826a43fe9c2f8b970c3ae1f4a029eec38')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:09:59
  Author: andrea
Revision: 175454

KDE 4.10 RC3

Modified:
  kdegames-ksnakeduel/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:09:56 UTC (rev 175453)
+++ PKGBUILD2013-01-17 14:09:59 UTC (rev 175454)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-ksnakeduel
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A simple snake duel game"
 url="http://kde.org/applications/games/ksnakeduel/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/ksnakeduel-${pkgver}.tar.xz";)
-sha1sums=('c218e7b01ea21d7b1b5ad3b9cf6319a931a7d157')
+sha1sums=('30b11809f2bd10ac58ae0e2202522dc4c4b0d138')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:09:56
  Author: andrea
Revision: 175453

KDE 4.10 RC3

Modified:
  kdegames-ksirk/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:09:53 UTC (rev 175452)
+++ PKGBUILD2013-01-17 14:09:56 UTC (rev 175453)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-ksirk
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A computerized version of a well known strategy game"
 url="http://kde.org/applications/games/ksirk/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/ksirk-${pkgver}.tar.xz";)
-sha1sums=('f730dadc533875569ae8dbd955298c4c4da2bf05')
+sha1sums=('d60696945aa98689a80af68a0d3a2324a4ce9d89')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:09:53
  Author: andrea
Revision: 175452

KDE 4.10 RC3

Modified:
  kdegames-kshisen/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:09:48 UTC (rev 175451)
+++ PKGBUILD2013-01-17 14:09:53 UTC (rev 175452)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kshisen
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A solitaire-like game played using the standard set of Mahjong tiles"
 url="http://kde.org/applications/games/kshisen/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kshisen-${pkgver}.tar.xz";)
-sha1sums=('8ad75be9d85b668dd4e539828e4b971728bec69e')
+sha1sums=('65cf5ffa2fec26d7610a4101dcd18303bf7b9022')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:09:48
  Author: andrea
Revision: 175451

KDE 4.10 RC3

Modified:
  kdegames-kreversi/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:09:43 UTC (rev 175450)
+++ PKGBUILD2013-01-17 14:09:48 UTC (rev 175451)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kreversi
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A simple one player strategy game played against the computer"
 url="http://kde.org/applications/games/kreversi/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kreversi-${pkgver}.tar.xz";)
-sha1sums=('8d5fdb2acf8fbe328d8fd7e6ad470c56bf1f0c3f')
+sha1sums=('d2a1c94b015f3b341ae68bec3fc93859dc8320e2')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:09:43
  Author: andrea
Revision: 175450

KDE 4.10 RC3

Modified:
  kdegames-kpatience/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:09:39 UTC (rev 175449)
+++ PKGBUILD2013-01-17 14:09:43 UTC (rev 175450)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kpatience
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="Offers a selection of solitaire card games"
 url="http://kde.org/applications/games/kpat/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 source=("http://download.kde.org/unstable/${pkgver}/src/kpat-${pkgver}.tar.xz";)
-sha1sums=('8f8d9e6010cf55b1f8ddf3ddd67dbc084d4ea7b8')
+sha1sums=('9af1d7f791609e11864a996bb2213aed574250c9')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:09:39
  Author: andrea
Revision: 175449

KDE 4.10 RC3

Modified:
  kdegames-konquest/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:09:35 UTC (rev 175448)
+++ PKGBUILD2013-01-17 14:09:39 UTC (rev 175449)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-konquest
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="The KDE version of Gnu-Lactic"
 url="http://kde.org/applications/games/konquest/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/konquest-${pkgver}.tar.xz";)
-sha1sums=('a1a79cb48bcc6a4d620dbb543890e33abb6dc163')
+sha1sums=('aba47427d9f91445aed5ca1855ded1fcb15aa1c9')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:09:35
  Author: andrea
Revision: 175448

KDE 4.10 RC3

Modified:
  kdegames-kollision/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:09:30 UTC (rev 175447)
+++ PKGBUILD2013-01-17 14:09:35 UTC (rev 175448)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kollision
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A simple ball dodging game"
 url="http://kde.org/applications/games/kollision/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kollision-${pkgver}.tar.xz";)
-sha1sums=('5e872740909cec0c7ab39f7c11e84e1db2fae115')
+sha1sums=('52fe88ff682466ae7703d3ffbfd58f9b61925715')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:09:30
  Author: andrea
Revision: 175447

KDE 4.10 RC3

Modified:
  kdegames-kolf/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:09:25 UTC (rev 175446)
+++ PKGBUILD2013-01-17 14:09:30 UTC (rev 175447)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kolf
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A miniature golf game with 2d top-down view"
 url="http://kde.org/applications/games/kolf/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 source=("http://download.kde.org/unstable/${pkgver}/src/kolf-${pkgver}.tar.xz";)
-sha1sums=('4e3cd4b7a5f7887249f82c55c0763d06053600de')
+sha1sums=('4c4b0ee3e33e9e26dbd005680273cf09101b4cd6')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:09:25
  Author: andrea
Revision: 175446

KDE 4.10 RC3

Modified:
  kdegames-knetwalk/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:09:20 UTC (rev 175445)
+++ PKGBUILD2013-01-17 14:09:25 UTC (rev 175446)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-knetwalk
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="Connect all the terminals to the server, in as few turns as possible"
 url="http://kde.org/applications/games/knetwalk/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/knetwalk-${pkgver}.tar.xz";)
-sha1sums=('44a047b80c497bfa454e9677eb38ac48d0baf417')
+sha1sums=('4bff34f2da74b8c5e5d8a275047147d54fb64a61')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:09:20
  Author: andrea
Revision: 175445

KDE 4.10 RC3

Modified:
  kdegames-knavalbattle/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:09:15 UTC (rev 175444)
+++ PKGBUILD2013-01-17 14:09:20 UTC (rev 175445)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-knavalbattle
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A ship sinking game"
 url="http://kde.org/applications/games/knavalbattle/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/knavalbattle-${pkgver}.tar.xz";)
-sha1sums=('63f0107740c76d78b4328e9a86f1065def7e74dc')
+sha1sums=('e30a63065270e241ba4f7732fc5faa1644f83874')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:09:15
  Author: andrea
Revision: 175444

KDE 4.10 RC3

Modified:
  kdegames-kmines/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:09:11 UTC (rev 175443)
+++ PKGBUILD2013-01-17 14:09:15 UTC (rev 175444)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kmines
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="The classic Minesweeper game"
 url="http://kde.org/applications/games/kmines/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kmines-${pkgver}.tar.xz";)
-sha1sums=('59f1adbbe2aef685d3cfdb3bf589b350630d0678')
+sha1sums=('2f3f5f58763d1f9e0c7eecae1e967ca7d2b352e6')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:06
  Author: andrea
Revision: 175473

KDE 4.10 RC3

Modified:
  kdegraphics-svgpart/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:11:02 UTC (rev 175472)
+++ PKGBUILD2013-01-17 14:11:06 UTC (rev 175473)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegraphics-svgpart
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A KPart for viewing SVGs"
 url="https://projects.kde.org/projects/kde/kdegraphics/svgpart";
@@ -13,7 +13,7 @@
 replaces=('kdegraphics-libs')
 conflicts=('kdegraphics-libs')
 
source=("http://download.kde.org/unstable/${pkgver}/src/svgpart-${pkgver}.tar.xz";)
-sha1sums=('0136ea4026c6251fd83dc51cd60c1e56a22889ac')
+sha1sums=('d3d76edd5a77edda0e22a4fa51176f4c64b6d60b')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:11:02
  Author: andrea
Revision: 175472

KDE 4.10 RC3

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

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:59 UTC (rev 175471)
+++ PKGBUILD2013-01-17 14:11:02 UTC (rev 175472)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegraphics-strigi-analyzer
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="Strigi analyzers for various graphics file formats"
 
url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-strigi-analyzer";
@@ -13,7 +13,7 @@
 replaces=('kdegraphics-libs')
 conflicts=('kdegraphics-libs')
 
source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('b8821daa70f4218a27051b9dff6223a0a7e3a659')
+sha1sums=('f57b0edd2f5b52bb8e7d5f55d603d34f06158489')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:59
  Author: andrea
Revision: 175471

KDE 4.10 RC3

Modified:
  kdegraphics-mobipocket/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:56 UTC (rev 175470)
+++ PKGBUILD2013-01-17 14:10:59 UTC (rev 175471)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegraphics-mobipocket
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A collection of plugins to handle mobipocket files"
 url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-mobipocket";
@@ -15,7 +15,7 @@
 conflicts=('kdegraphics-libs')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('f8cc915c3009feaf4ad07387e687878e7e61e6a1')
+sha1sums=('21a80569e5cbc29114665cdd08f71ac8322d2856')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:56
  Author: andrea
Revision: 175470

KDE 4.10 RC3

Modified:
  kdegraphics-ksnapshot/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:52 UTC (rev 175469)
+++ PKGBUILD2013-01-17 14:10:56 UTC (rev 175470)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegraphics-ksnapshot
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="Screen Capture Program"
 url="http://kde.org/applications/graphics/ksnapshot/";
@@ -14,7 +14,7 @@
 optdepends=('kipi-plugins')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/ksnapshot-${pkgver}.tar.xz";)
-sha1sums=('8081da8c2f321841e4dd5390b89cf8933bc2ca89')
+sha1sums=('4fccff95c091bec925fc3429e86f6a0d8ada0127')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:52
  Author: andrea
Revision: 175469

KDE 4.10 RC3

Modified:
  kdegraphics-ksaneplugin/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:49 UTC (rev 175468)
+++ PKGBUILD2013-01-17 14:10:52 UTC (rev 175469)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegraphics-ksaneplugin
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A scan plugin that implements the scanning"
 url="https://projects.kde.org/projects/kde/kdegraphics/ksaneplugin";
@@ -13,7 +13,7 @@
 replaces=('kdegraphics-libs')
 conflicts=('kdegraphics-libs')
 
source=("http://download.kde.org/unstable/${pkgver}/src/ksaneplugin-${pkgver}.tar.xz";)
-sha1sums=('a1f259055a0b504bda90b1764fb260c752fca1af')
+sha1sums=('4914e2bc687424903a283c34a2e6b7387367da3e')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:49
  Author: andrea
Revision: 175468

KDE 4.10 RC3

Modified:
  kdegraphics-kruler/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:46 UTC (rev 175467)
+++ PKGBUILD2013-01-17 14:10:49 UTC (rev 175468)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegraphics-kruler
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="Screen Ruler"
 url="http://kde.org/applications/graphics/kruler/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kruler-${pkgver}.tar.xz";)
-sha1sums=('2dcbdde12f792f2b26d43fadb86045e933c08096')
+sha1sums=('bd09ce4498f9fc1406fe8cdd98d93dac6c77efca')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:46
  Author: andrea
Revision: 175467

KDE 4.10 RC3

Modified:
  kdegraphics-kolourpaint/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:43 UTC (rev 175466)
+++ PKGBUILD2013-01-17 14:10:46 UTC (rev 175467)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegraphics-kolourpaint
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="Paint Program"
 url="http://kde.org/applications/graphics/kolourpaint/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kolourpaint-${pkgver}.tar.xz";)
-sha1sums=('887748ae6be3032cf7476293e0e830765e6dc55c')
+sha1sums=('e7ec2dd65a8f2a2b25b8b331755af2e7a5880972')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:39
  Author: andrea
Revision: 175436

KDE 4.10 RC3

Modified:
  kdegames-kgoldrunner/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:35 UTC (rev 175435)
+++ PKGBUILD2013-01-17 14:08:39 UTC (rev 175436)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kgoldrunner
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A game of action and puzzle solving"
 url="http://kde.org/applications/games/kgoldrunner/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kgoldrunner-${pkgver}.tar.xz";)
-sha1sums=('61ef5d087a2d7af39fab0b9cb2d8ab96fdcb5075')
+sha1sums=('70aea69fd64a8592fcc501aed943e059c3a5eb32')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:35
  Author: andrea
Revision: 175435

KDE 4.10 RC3

Modified:
  kdegames-kfourinline/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:30 UTC (rev 175434)
+++ PKGBUILD2013-01-17 14:08:35 UTC (rev 175435)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kfourinline
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A four-in-a-row game"
 url="http://kde.org/applications/games/kfourinline/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kfourinline-${pkgver}.tar.xz";)
-sha1sums=('8d48ec313d7f6cb8b617991188320e5ba23949e1')
+sha1sums=('573a4bd529941913b9eccc512a8de5d37d832d43')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:43
  Author: andrea
Revision: 175466

KDE 4.10 RC3

Modified:
  kdegraphics-kgamma/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:39 UTC (rev 175465)
+++ PKGBUILD2013-01-17 14:10:43 UTC (rev 175466)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegraphics-kgamma
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A monitor calibration tool"
 url="http://kde.org/applications/graphics/kgamma/";
@@ -15,7 +15,7 @@
 depends=('kdebase-runtime' 'libxxf86vm')
 makedepends=('cmake' 'automoc4')
 
source=("http://download.kde.org/unstable/${pkgver}/src/kgamma-${pkgver}.tar.xz";)
-sha1sums=('67873b61857cde5c3a3613c6a92081a7a0e0be07')
+sha1sums=('fd29b27cb7d93487df63d0a87b967533d8d8ff97')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:32
  Author: andrea
Revision: 175463

KDE 4.10 RC3

Modified:
  kdegraphics-gwenview/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:29 UTC (rev 175462)
+++ PKGBUILD2013-01-17 14:10:32 UTC (rev 175463)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegraphics-gwenview
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A fast and easy to use image viewer for KDE"
 url="http://kde.org/applications/graphics/gwenview/";
@@ -14,7 +14,7 @@
 optdepends=('kipi-plugins: extra plugins to share photos')
 install=$pkgname.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/gwenview-${pkgver}.tar.xz";)
-sha1sums=('8b7f522b707db712c5d57bfce569ddcbba8251a1')
+sha1sums=('4736f36c9ed7665fd18d240384c74d2718757497')
 
 build() {
   cd "${srcdir}"



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:29
  Author: andrea
Revision: 175462

KDE 4.10 RC3

Modified:
  kdegames-picmi/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:25 UTC (rev 175461)
+++ PKGBUILD2013-01-17 14:10:29 UTC (rev 175462)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-picmi
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A nonogram logic game for KDE"
 url="http://kde.org/applications/games/picmi/";
@@ -15,7 +15,7 @@
 conflicts=('picmi')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/picmi-${pkgver}.tar.xz";)
-sha1sums=('26b1e4e592724410537d559aa4b4b35a9a0d27d9')
+sha1sums=('9be041b93ac4474c9ca99c7166f7904b24263dae')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:10:25
  Author: andrea
Revision: 175461

KDE 4.10 RC3

Modified:
  kdegames-palapeli/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:10:22 UTC (rev 175460)
+++ PKGBUILD2013-01-17 14:10:25 UTC (rev 175461)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-palapeli
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A single-player jigsaw puzzle game"
 url="http://kde.org/applications/games/palapeli/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/palapeli-${pkgver}.tar.xz";)
-sha1sums=('0dc5bc32469f9ae93acdcf11bc4a7e84bc43c62f')
+sha1sums=('b5e1dc72b2fbf4913bcafd6332166c0fa1410c4f')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:30
  Author: andrea
Revision: 175434

KDE 4.10 RC3

Modified:
  kdegames-kdiamond/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:26 UTC (rev 175433)
+++ PKGBUILD2013-01-17 14:08:30 UTC (rev 175434)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kdiamond
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A single player puzzle game"
 url="http://kde.org/applications/games/kdiamond/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kdiamond-${pkgver}.tar.xz";)
-sha1sums=('315cdd35d1b92f2534533ed19fc2b2067d82ad56')
+sha1sums=('9fb311a01fceb77c4a021fb4ccff1edb74d0a4c1')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:26
  Author: andrea
Revision: 175433

KDE 4.10 RC3

Modified:
  kdegames-kbreakout/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:22 UTC (rev 175432)
+++ PKGBUILD2013-01-17 14:08:26 UTC (rev 175433)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kbreakout
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A Breakout-like game"
 url="http://kde.org/applications/games/kbreakout/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kbreakout-${pkgver}.tar.xz";)
-sha1sums=('b2925402fb7d53a4f393e4862d9ea932cd2d50a9')
+sha1sums=('33fb8a3c38d61e50af6101802d0cd435b8bcb4c4')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:22
  Author: andrea
Revision: 175432

KDE 4.10 RC3

Modified:
  kdegames-kbounce/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:18 UTC (rev 175431)
+++ PKGBUILD2013-01-17 14:08:22 UTC (rev 175432)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kbounce
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A single player arcade game with the elements of puzzle"
 url="http://kde.org/applications/games/kbounce/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kbounce-${pkgver}.tar.xz";)
-sha1sums=('8053721031bbcdccddb0fcabc1f00a36d6afcbbd')
+sha1sums=('2c0d58cfc7fce3563ca47d33cd0f78b0924b6ab2')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:18
  Author: andrea
Revision: 175431

KDE 4.10 RC3

Modified:
  kdegames-kblocks/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:15 UTC (rev 175430)
+++ PKGBUILD2013-01-17 14:08:18 UTC (rev 175431)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kblocks
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="The classic falling blocks game"
 url="http://kde.org/applications/games/kblocks/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kblocks-${pkgver}.tar.xz";)
-sha1sums=('05b20479867e772c0d2de19a41d6a306b3ee8a3f')
+sha1sums=('60d080ddd51cba45743054434d8c1821d7da238b')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:15
  Author: andrea
Revision: 175430

KDE 4.10 RC3

Modified:
  kdegames-kblackbox/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:11 UTC (rev 175429)
+++ PKGBUILD2013-01-17 14:08:15 UTC (rev 175430)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kblackbox
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A game of hide and seek played on a grid of boxes"
 url="http://kde.org/applications/games/kblackbox/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kblackbox-${pkgver}.tar.xz";)
-sha1sums=('dd6f5a610b069c7da766ef12d9bc9543e5b60ddb')
+sha1sums=('351c6e0041c432a9bb156a6f790200fafa73f000')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:11
  Author: andrea
Revision: 175429

KDE 4.10 RC3

Modified:
  kdegames-katomic/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:07 UTC (rev 175428)
+++ PKGBUILD2013-01-17 14:08:11 UTC (rev 175429)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-katomic
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A fun and educational game built around molecular geometry"
 url="http://kde.org/applications/games/katomic/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/katomic-${pkgver}.tar.xz";)
-sha1sums=('cc271ac2906db1f37cf95420ade5f1eb253fcc86')
+sha1sums=('77a414f2f04ef4f58bc5c5cbea82c3bd9f6db022')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:07
  Author: andrea
Revision: 175428

KDE 4.10 RC3

Modified:
  kdegames-kapman/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:04 UTC (rev 175427)
+++ PKGBUILD2013-01-17 14:08:07 UTC (rev 175428)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kapman
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A clone of the well known game Pac-Man"
 url="http://kde.org/applications/games/kapman/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kapman-${pkgver}.tar.xz";)
-sha1sums=('0f1a73a271c00383a294b4693e4a0dc55c365baa')
+sha1sums=('91cec1a8df11fc0098ebfd28253d4bb4d205e99e')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:04
  Author: andrea
Revision: 175427

KDE 4.10 RC3

Modified:
  kdegames-kajongg/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:08:01 UTC (rev 175426)
+++ PKGBUILD2013-01-17 14:08:04 UTC (rev 175427)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-kajongg
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="The ancient Chinese board game for 4 players"
 url="http://kde.org/applications/games/kajongg/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/kajongg-${pkgver}.tar.xz";)
-sha1sums=('7083f4ef418637cd53ff4b18a368f912d0da3c49')
+sha1sums=('9c278ab73e72626f5e168c6c1e7dc307d0ac804d')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:08:01
  Author: andrea
Revision: 175426

KDE 4.10 RC3

Modified:
  kdegames-granatier/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:07:58 UTC (rev 175425)
+++ PKGBUILD2013-01-17 14:08:01 UTC (rev 175426)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-granatier
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A clone of the classic Bomberman game"
 url="http://kde.org/applications/games/granatier/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/granatier-${pkgver}.tar.xz";)
-sha1sums=('4b1135bc59a06e6ddb763b10cdf94a945189c478')
+sha1sums=('dff5c3552c4e329b6d99b9ec9c1dee5804e9a76d')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:07:58
  Author: andrea
Revision: 175425

KDE 4.10 RC3

Modified:
  kdegames-bovo/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:07:54 UTC (rev 175424)
+++ PKGBUILD2013-01-17 14:07:58 UTC (rev 175425)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-bovo
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A Gomoku like game for two players"
 url="http://kde.org/applications/games/bovo/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 source=("http://download.kde.org/unstable/${pkgver}/src/bovo-${pkgver}.tar.xz";)
-sha1sums=('22f8672c5672a7aaa680e6708f63187f6e3d5c78')
+sha1sums=('43d384092785312db6c40b3d2feb7990eac41220')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:07:54
  Author: andrea
Revision: 175424

KDE 4.10 RC3

Modified:
  kdegames-bomber/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:07:51 UTC (rev 175423)
+++ PKGBUILD2013-01-17 14:07:54 UTC (rev 175424)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdegames-bomber
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="A single player arcade game"
 url="http://kde.org/applications/games/bomber/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=("http://download.kde.org/unstable/${pkgver}/src/bomber-${pkgver}.tar.xz";)
-sha1sums=('30f8d9f1a81c31283379e988c2a7542fa5c68ab9')
+sha1sums=('d5ec6990bf846de37cc7f90ec79df4f0126292a5')
 
 build() {
   mkdir build



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:07:51
  Author: andrea
Revision: 175423

KDE 4.10 RC3

Modified:
  kdeedu-step/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:07:47 UTC (rev 175422)
+++ PKGBUILD2013-01-17 14:07:51 UTC (rev 175423)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdeedu-step
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc="Interactive Physical Simulator"
 url="http://kde.org/applications/education/step/";
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4' 'eigen' 'mesa')
 install=${pkgname}.install
 source=("http://download.kde.org/unstable/${pkgver}/src/step-${pkgver}.tar.xz";)
-sha1sums=('cab73b8b2a41cdde03935554f1bedf7c2a16ccb5')
+sha1sums=('fcb773547bba5fa4938f93baf9778266e5194f82')
 
 build() {
   cd "${srcdir}"



  1   2   >