diff options
author | root <root@rshg054.dnsready.net> | 2013-03-06 00:03:52 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-03-06 00:03:52 -0800 |
commit | 3af1ee89ded5209697eec4e2ecb77cf1f3f19803 (patch) | |
tree | 57d232dc9df39b389372f4df52f4353f3b368d2e | |
parent | 582035722561a5ecbadc13abc26331353d810567 (diff) |
Wed Mar 6 00:03:52 PST 2013
193 files changed, 1008 insertions, 1154 deletions
diff --git a/community/c++-gtk-utils/PKGBUILD b/community/c++-gtk-utils/PKGBUILD index fb5404502..de311fb37 100644 --- a/community/c++-gtk-utils/PKGBUILD +++ b/community/c++-gtk-utils/PKGBUILD @@ -1,17 +1,17 @@ -# $Id: PKGBUILD 81974 2013-01-05 08:10:13Z giovanni $ +# $Id: PKGBUILD 85715 2013-03-05 15:34:23Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> pkgname=c++-gtk-utils -pkgver=2.0.14 +pkgver=2.0.15 pkgrel=1 pkgdesc="Classes and functions for programming in GTK+" arch=('i686' 'x86_64') url="http://cxx-gtk-utils.sourceforge.net/" license=('LGPL2.1') depends=('gtk3') -options=('!libtool') +options=('!libtool' '!docs' '!emptydirs') source=("http://downloads.sourceforge.net/project/cxx-gtk-utils/cxx-gtk-utils/${pkgver}/${pkgname}-${pkgver}.tar.gz") -md5sums=('84c7da0542bc60c093573c134e053c15') +md5sums=('b9de1eb63916d167effa76b6e7b180f3') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/community/deja-dup/PKGBUILD b/community/deja-dup/PKGBUILD index d33e77dd1..ddaecba9b 100644 --- a/community/deja-dup/PKGBUILD +++ b/community/deja-dup/PKGBUILD @@ -1,25 +1,27 @@ -# $Id: PKGBUILD 79462 2012-11-05 20:10:47Z bgyorgy $ +# $Id: PKGBUILD 85692 2013-03-05 09:07:44Z bgyorgy $ # Maintainer: Balló György <ballogyor+arch at gmail dot com> pkgname=deja-dup pkgver=24.0 -pkgrel=2 +pkgrel=3 pkgdesc="Simple backup tool, that hides the complexity of backing up the Right Way and uses duplicity as the backend" arch=('i686' 'x86_64') url="https://launchpad.net/deja-dup" license=('GPL') -depends=('duplicity' 'libgnome-keyring' 'libpeas' 'libnotify' 'python2-gobject2' 'dconf' 'xdg-utils') +depends=('duplicity' 'libgnome-keyring' 'libpeas' 'libnotify' 'python2-gobject' 'gvfs' 'dconf' 'xdg-utils') makedepends=('vala' 'intltool' 'itstool' 'nautilus') optdepends=('nautilus: backup extension' - 'ubuntuone-client: backup into Ubuntu One storage') + 'python2-boto: Amazon S3 backend' + 'python2-oauthlib: Ubuntu One backend' + 'ubuntuone-client: Ubuntu One backend') options=('!libtool') install=$pkgname.install source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.xz new-u1backend-support.patch - not-check-ubuntuone-couch.patch) + update-u1-pythonchecker.patch) md5sums=('335131d1f3c85615339fa8b212db50ae' '944a4c62f042b240feba98f8d9a893b2' - '8d59798638982c2bdb55b2e415087245') + 'd0893c17e3e61c3ada065a002a9ab419') build() { cd "$srcdir/$pkgname-$pkgver" @@ -28,8 +30,8 @@ build() { # Add support for the new Ubuntu One backend patch -Np0 -i "$srcdir/new-u1backend-support.patch" - # Now we don't need ubuntuone-couch for Ubuntu One support - patch -Np1 -i "$srcdir/not-check-ubuntuone-couch.patch" + # And update the PythonChecker check for the new U1 backend too + patch -Np0 -i "$srcdir/update-u1-pythonchecker.patch" ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \ --disable-static --disable-schemas-compile --without-unity diff --git a/community/deja-dup/not-check-ubuntuone-couch.patch b/community/deja-dup/not-check-ubuntuone-couch.patch deleted file mode 100644 index d7fb903a1..000000000 --- a/community/deja-dup/not-check-ubuntuone-couch.patch +++ /dev/null @@ -1,45 +0,0 @@ -diff -Naur deja-dup-24.0.orig/common/BackendU1.vala deja-dup-24.0/common/BackendU1.vala ---- deja-dup-24.0.orig/common/BackendU1.vala 2012-08-07 00:20:51.000000000 +0200 -+++ deja-dup-24.0/common/BackendU1.vala 2012-11-05 16:39:34.140104977 +0100 -@@ -75,11 +75,14 @@ - - class U1Checker : Checker - { -- PythonChecker pyu1; - construct { - try { - var proxy = BackendU1.get_creds_proxy(); -- if (proxy.get_name_owner() == null) { -+ if (proxy.get_name_owner() != null) { -+ available = true; -+ complete = true; -+ } -+ else { - available = false; - complete = true; - } -@@ -89,24 +92,6 @@ - available = false; - complete = true; - } -- -- if (!complete) { -- // A bit of abstraction leakage here; we have to keep these imports in -- // line with what duplicity uses. Maybe we should add to duplicity a way -- // to ask 'can I use this backend?' -- pyu1 = PythonChecker.get_checker("ubuntuone.platform.credentials, ubuntuone.couch.auth"); -- if (pyu1.complete) { -- available = pyu1.available; -- complete = pyu1.complete; -- } -- else { -- pyu1.notify["complete"].connect(() => { -- available = pyu1.available; -- complete = pyu1.complete; -- pyu1 = null; -- }); -- } -- } - } - } - diff --git a/community/deja-dup/update-u1-pythonchecker.patch b/community/deja-dup/update-u1-pythonchecker.patch new file mode 100644 index 000000000..32d55966c --- /dev/null +++ b/community/deja-dup/update-u1-pythonchecker.patch @@ -0,0 +1,13 @@ +=== modified file 'common/BackendU1.vala' +--- common/BackendU1.vala 2012-11-05 15:10:54 +0000 ++++ common/BackendU1.vala 2012-11-05 15:17:28 +0000 +@@ -94,7 +94,7 @@ + // A bit of abstraction leakage here; we have to keep these imports in + // line with what duplicity uses. Maybe we should add to duplicity a way + // to ask 'can I use this backend?' +- pyu1 = PythonChecker.get_checker("ubuntuone.platform.credentials, ubuntuone.couch.auth"); ++ pyu1 = PythonChecker.get_checker("oauthlib, httplib2"); + if (pyu1.complete) { + available = pyu1.available; + complete = pyu1.complete; + diff --git a/community/lgi/PKGBUILD b/community/lgi/PKGBUILD index a59c2817c..0c03956a1 100644 --- a/community/lgi/PKGBUILD +++ b/community/lgi/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 81847 2013-01-02 00:52:50Z seblu $ +# $Id: PKGBUILD 85686 2013-03-04 23:40:53Z seblu $ # Maintainer: speps <speps at aur dot archlinux dot org> -# Maintainer: Sébastien Luttringer <seblu@archlinux.org> +# Maintainer: Sébastien Luttringer pkgbase=lgi pkgname=(lua-lgi) -pkgver=0.6.2 +pkgver=0.7.1 pkgrel=1 pkgdesc='Lua bindings for gnome/gobject using gobject-introspection library' arch=(i686 x86_64) @@ -13,8 +13,8 @@ license=('custom:MIT') depends=('glibc' 'glib2' 'libffi' 'lua' 'gobject-introspection') replaces=('lgi') conflicts=('lgi') -source=("https://github.com/downloads/pavouk/lgi/$pkgbase-$pkgver.tar.gz") -md5sums=('9ae2c0740e9ea536b6b6afacea5bd21b') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/pavouk/$pkgbase/archive/$pkgver.tar.gz") +md5sums=('de7367aee8e39f7df7c2229675c5ff2d') build() { cd $pkgbase-$pkgver diff --git a/community/libcec/PKGBUILD b/community/libcec/PKGBUILD index e959ef944..8eac02749 100644 --- a/community/libcec/PKGBUILD +++ b/community/libcec/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 83326 2013-01-29 17:19:32Z spupykin $ +# $Id: PKGBUILD 85731 2013-03-05 21:06:38Z idevolder $ # Maintainer: BlackIkeEagle <ike DOT devolder AT gmail DOT com> # Contributor: Philippe Cherel <philippe.cherel@mayenne.org> pkgname=libcec -pkgver=2.0.5 +pkgver=2.1.0 pkgrel=1 pkgdesc="Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter" arch=('i686' 'x86_64') @@ -11,9 +11,9 @@ url="https://github.com/Pulse-Eight/libcec" license=('GPL') depends=('udev' 'lockdev') source=("$pkgname-$pkgver.tar.gz::https://github.com/Pulse-Eight/libcec/tarball/$pkgname-$pkgver") -_srcfolder=Pulse-Eight-libcec-e1599e0 +_srcfolder=Pulse-Eight-libcec-5984da4 options=(!libtool) -sha256sums=('83d99cf759531d8c8a217f360f4748159cb9cedac98d77a4615450bad6d570c4') +sha256sums=('b0589450a25566d34b84aff6bc899fd823dba8ffebcfe11a3f58924c252367fe') build() { mv "$_srcfolder" "$pkgname-$pkgver" diff --git a/community/mp3splt-gtk/PKGBUILD b/community/mp3splt-gtk/PKGBUILD index fccf564df..d4c742a66 100644 --- a/community/mp3splt-gtk/PKGBUILD +++ b/community/mp3splt-gtk/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 76430 2012-09-18 04:50:32Z jlichtblau $ +# $Id: PKGBUILD 85719 2013-03-05 18:41:12Z jlichtblau $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> pkgname=mp3splt-gtk -pkgver=0.7.3 +pkgver=0.8.1 pkgrel=1 pkgdesc="Split mp3 and ogg files without decoding" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ makedepends=('pkgconfig') install=$pkgname.install changelog=$pkgname.changelog source=(http://downloads.sourceforge.net/sourceforge/mp3splt/$pkgname-$pkgver.tar.gz) -sha256sums=('7300383453ca8d3268776163e2afb9b03a0d907d2f29ec6fc1826b41679d4e1c') +sha256sums=('d0bfd6524bd29e061c9d00574c164ed70a112eec11f36ae8a240606c712f1241') build() { cd ${srcdir}/$pkgname-$pkgver diff --git a/community/mp3splt-gtk/mp3splt-gtk.changelog b/community/mp3splt-gtk/mp3splt-gtk.changelog index 939aa6841..0a86bdfc2 100644 --- a/community/mp3splt-gtk/mp3splt-gtk.changelog +++ b/community/mp3splt-gtk/mp3splt-gtk.changelog @@ -1,3 +1,6 @@ +2013-03-05 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * mp3splt-gtk 0.8.1-1 + 2012-09-18 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> * mp3splt-gtk 0.7.3-1 diff --git a/community/opencc/PKGBUILD b/community/opencc/PKGBUILD index ae94dce10..2628cfe76 100644 --- a/community/opencc/PKGBUILD +++ b/community/opencc/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 79884 2012-11-14 13:43:08Z fyan $ +# $Id: PKGBUILD 85687 2013-03-05 05:00:24Z fyan $ # Maintainer: Felix Yan <felixonmars@gmail.com> pkgname=opencc -pkgver=0.3.0 +pkgver=0.4.0 pkgrel=1 pkgdesc="Library for Open Chinese Convert" arch=('i686' 'x86_64') @@ -22,4 +22,4 @@ package() { cd "$srcdir/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install } -md5sums=('84462870e5d491da24bb33a5fb494911') +md5sums=('00a2de2314cd28fc8631c229fb3aa894') diff --git a/community/perl-datetime/PKGBUILD b/community/perl-datetime/PKGBUILD index e96c8ac14..62eed7371 100644 --- a/community/perl-datetime/PKGBUILD +++ b/community/perl-datetime/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 76996 2012-10-03 07:10:45Z spupykin $ +# $Id: PKGBUILD 85696 2013-03-05 09:22:28Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: François Charette <firmicus ατ gmx δοτ net> pkgname=perl-datetime -pkgver=0.77 +pkgver=0.78 pkgrel=1 pkgdesc="A complete, easy to use date and time object" arch=('i686' 'x86_64') @@ -15,7 +15,7 @@ LC_NUMERIC=C provides=("perl-datetime=`printf %.4f $pkgver`") options=('!emptydirs') source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-$pkgver.tar.gz) -md5sums=('1c35bb64f0a261cd3ab4cc161726290a') +md5sums=('9d71a13933e3afc55c2c54202d40ae13') build() { cd $srcdir/DateTime-$pkgver diff --git a/community/qmmp/PKGBUILD b/community/qmmp/PKGBUILD index 808ad62dd..90d5ea67a 100644 --- a/community/qmmp/PKGBUILD +++ b/community/qmmp/PKGBUILD @@ -1,9 +1,9 @@ -#$Id: PKGBUILD 85390 2013-03-01 10:38:00Z andrea $ +#$Id: PKGBUILD 85725 2013-03-05 19:16:19Z jlichtblau $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> pkgname=qmmp -pkgver=0.6.6 -pkgrel=6 +pkgver=0.6.7 +pkgrel=1 pkgdesc="Qt4 based audio-player" arch=('i686' 'x86_64') url="http://qmmp.ylsoftware.com/" @@ -22,16 +22,13 @@ optdepends=('flac: native FLAC support' 'projectm: visual efects' 'ffmpeg' 'libsamplerate' 'wavpack') install=$pkgname.install -source=(http://qmmp.ylsoftware.com/files/$pkgname-$pkgver.tar.bz2 - cdio-includes.patch) -sha256sums=('dfa973cca80c020a85a11bb66701a3804f9fde326440abb179559c98bf3b5b99' - '7b3ff46dd30070cd79c5ca2dd6dfa1b9872bc09041f4bd985edf20a4333db07c') +changelog=$pkgname.changelog +source=(http://qmmp.ylsoftware.com/files/$pkgname-$pkgver.tar.bz2) +sha256sums=('82d8ed7f3678695e213f0989f869095b37bd212d23ad2827981bc65225d59f8c') build() { cd ${srcdir}/$pkgname-$pkgver - patch -Np1 -i ${srcdir}/cdio-includes.patch - cmake . -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=/usr/lib make diff --git a/community/qmmp/cdio-includes.patch b/community/qmmp/cdio-includes.patch deleted file mode 100644 index 4c471291f..000000000 --- a/community/qmmp/cdio-includes.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -upr qmmp-0.6.5.orig/src/plugins/Input/cdaudio/decoder_cdaudio.cpp qmmp-0.6.5/src/plugins/Input/cdaudio/decoder_cdaudio.cpp ---- qmmp-0.6.5.orig/src/plugins/Input/cdaudio/decoder_cdaudio.cpp 2013-01-10 21:55:55.000000000 +0200 -+++ qmmp-0.6.5/src/plugins/Input/cdaudio/decoder_cdaudio.cpp 2013-01-10 21:56:26.000000000 +0200 -@@ -25,7 +25,7 @@ - #include <QFileInfo> - #include <QDir> - #include <cdio/cdio.h> --#include <cdio/cdda.h> -+#include <cdio/paranoia/cdda.h> - #include <cdio/audio.h> - #include <cdio/cd_types.h> - #include <cdio/logging.h> diff --git a/community/qmmp/qmmp.changelog b/community/qmmp/qmmp.changelog index 83a1d07a0..af394d59f 100644 --- a/community/qmmp/qmmp.changelog +++ b/community/qmmp/qmmp.changelog @@ -1,3 +1,6 @@ +2013-03-05 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * qmmp 0.6.7-1 + 2013-01-13 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> * qmmp 0.6.6-2 libcdio/libcdio-paranoia rebuild diff --git a/community/shotwell/0001-Port-to-GStreamer-1.0.patch b/community/shotwell/0001-Port-to-GStreamer-1.0.patch index 7d7ac742d..a7a2cbf4c 100644 --- a/community/shotwell/0001-Port-to-GStreamer-1.0.patch +++ b/community/shotwell/0001-Port-to-GStreamer-1.0.patch @@ -1,17 +1,11 @@ -From 9cb0726dd0873e3664f3589aabadea8bb7c8ff37 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= <olivier.crete@collabora.com> -Date: Tue, 25 Sep 2012 18:15:02 -0400 -Subject: [PATCH] Port to GStreamer 1.0 +From 4db67e385c9c2d89947077f1520aa31af2538d65 Mon Sep 17 00:00:00 2001 +From: Alban Browaeys <prahal@yahoo.com> +Date: Wed, 09 Jan 2013 01:11:27 +0000 +Subject: Ports Shotwell to GStreamer 1.0. Closes #6055. --- - Makefile | 21 +++++++++++---------- - src/VideoSupport.vala | 8 ++++---- - src/libshotwell.deps | 5 +++-- - thumbnailer/shotwell-video-thumbnailer.vala | 18 ++++++++---------- - 4 files changed, 26 insertions(+), 26 deletions(-) - diff --git a/Makefile b/Makefile -index 1bd09e0..06059e3 100644 +index 2488f82..5a7e262 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ EXTRAS_SUPPORTED_LANGUAGES=fr de it es pl et sv sk lv pt bg bn nl da zh_CN el ru @@ -19,7 +13,7 @@ index 1bd09e0..06059e3 100644 SYSTEM_LANG_DIR := $(DESTDIR)$(PREFIX)/share/locale -VALAFLAGS := -g --enable-checking --thread --fatal-warnings --enable-deprecated $(USER_VALAFLAGS) -+VALAFLAGS := -g --enable-checking --thread --enable-deprecated $(USER_VALAFLAGS) ++VALAFLAGS := -g --enable-checking --thread --fatal-warnings --enable-deprecated --enable-experimental $(USER_VALAFLAGS) ifdef UNITY_SUPPORT VALAFLAGS := $(VALAFLAGS) --define UNITY_SUPPORT endif @@ -36,19 +30,18 @@ index 1bd09e0..06059e3 100644 gtk+-3.0 \ gudev-1.0 \ libexif \ -@@ -314,8 +314,9 @@ endif +@@ -314,8 +314,8 @@ endif THUMBNAILER_PKGS = \ gtk+-3.0 \ gee-1.0 \ - gstreamer-0.10 \ - gstreamer-base-0.10 + gstreamer-1.0 \ -+ gstreamer-base-1.0 \ -+ gstreamer-app-1.0 \ ++ gstreamer-base-1.0 DIRECT_LIBS = -@@ -325,10 +326,10 @@ EXT_PKG_VERSIONS = \ +@@ -325,10 +325,10 @@ EXT_PKG_VERSIONS = \ gio-unix-2.0 >= 2.20 \ glib-2.0 >= $(MIN_GLIB_VERSION) \ gmodule-2.0 >= 2.24.0 \ @@ -63,6 +56,15 @@ index 1bd09e0..06059e3 100644 gtk+-3.0 >= 3.0.11 \ gudev-1.0 >= 145 \ libexif >= 0.6.16 \ +@@ -683,7 +683,7 @@ $(VALA_STAMP): $(EXPANDED_SRC_FILES) $(EXPANDED_VAPI_FILES) $(GPHOTO_VAPI_FILE) + $(call check_valac_version) + @echo Compiling Vala code... + @mkdir -p $(BUILD_DIR) +- @$(VALAC) --ccode --directory=$(BUILD_DIR) --basedir=src \ ++ $(VALAC) --ccode --directory=$(BUILD_DIR) --basedir=src \ + $(foreach pkg,$(VALA_PKGS),--pkg=$(pkg)) \ + $(foreach vapidir,$(VAPI_DIRS),--vapidir=$(vapidir)) \ + $(foreach def,$(DEFINES),-X -D$(def)) \ diff --git a/src/VideoSupport.vala b/src/VideoSupport.vala index deb45e2..f679bd0 100644 --- a/src/VideoSupport.vala @@ -97,10 +99,10 @@ index deb45e2..f679bd0 100644 message("interpreter state cookie not found; assuming all video thumbnails are out of date"); interpreter_state_changed = true; diff --git a/thumbnailer/shotwell-video-thumbnailer.vala b/thumbnailer/shotwell-video-thumbnailer.vala -index a4d7dc2..c12784e 100644 +index 79a2d7e..ae1e537 100644 --- a/thumbnailer/shotwell-video-thumbnailer.vala +++ b/thumbnailer/shotwell-video-thumbnailer.vala -@@ -10,11 +10,7 @@ +@@ -10,22 +10,15 @@ // Shotwell Thumbnailer takes in a video file and returns a thumbnail to stdout. This is // a replacement for totem-video-thumbnailer class ShotwellThumbnailer { @@ -109,51 +111,109 @@ index a4d7dc2..c12784e 100644 - red_mask = (int) 0xFF000000, - green_mask = (int) 0x00FF0000, - blue_mask = (int) 0x0000FF00, -+ const string caps_string = """video/x-raw, format=RGBA, - width = (int) [ 1, max ], - height = (int) [ 1, max ], - framerate = (fraction) [ 0, max ]"""; -@@ -36,7 +32,7 @@ class ShotwellThumbnailer { +- width = (int) [ 1, max ], +- height = (int) [ 1, max ], +- framerate = (fraction) [ 0, max ]"""; ++ const string caps_string = """video/x-raw,format=RGB,bpp=32,depth=32,pixel-aspect-ratio=1/1"""; + + public static int main(string[] args) { + Gst.Element pipeline, sink; + int width, height; +- Gst.Buffer buffer; ++ Gst.Sample sample; + string descr; + Gdk.Pixbuf pixbuf; +- int64 position; ++ int64 duration, position; + Gst.StateChangeReturn ret; + bool res; + +@@ -36,7 +29,7 @@ class ShotwellThumbnailer { return 1; } - descr = "filesrc location=\"%s\" ! decodebin2 ! ffmpegcolorspace ! ".printf(args[1]) + -+ descr = "filesrc location=\"%s\" ! decodebin ! videoconvert ! ".printf(args[1]) + ++ descr = "filesrc location=\"%s\" ! decodebin ! videoconvert ! videoscale ! ".printf(args[1]) + "appsink name=sink caps=\"%s\"".printf(caps_string); try { -@@ -69,7 +65,7 @@ class ShotwellThumbnailer { - // by seeking to somewhere else we have a bigger chance of getting something - // more interesting. An optimization would be to detect black images and then - // seek a little more. +@@ -64,29 +57,41 @@ class ShotwellThumbnailer { + stderr.printf("Failed to play the file: couldn't get state.\n"); + return 3; + } +- +- // Seek to the a position in the file. Most files have a black first frame so +- // by seeking to somewhere else we have a bigger chance of getting something +- // more interesting. An optimization would be to detect black images and then +- // seek a little more. - position = (int64) (Gst.Format.PERCENT_MAX * 0.05); -+ position = (int64) (Gst.FORMAT_PERCENT_MAX * 0.05); - pipeline.seek_simple(Gst.Format.PERCENT, Gst.SeekFlags.KEY_UNIT | Gst.SeekFlags.FLUSH , position); - - // Get the preroll buffer from appsink, this block untils appsink really -@@ -86,7 +82,7 @@ class ShotwellThumbnailer { +- pipeline.seek_simple(Gst.Format.PERCENT, Gst.SeekFlags.KEY_UNIT | Gst.SeekFlags.FLUSH , position); +- +- // Get the preroll buffer from appsink, this block untils appsink really +- // prerolls. +- GLib.Signal.emit_by_name(sink, "pull-preroll", out buffer, null); +- ++ ++ /* get the duration */ ++ pipeline.query_duration (Gst.Format.TIME, out duration); ++ ++ if (duration != -1) { ++ /* we have a duration, seek to 5% */ ++ position = duration * 5 / 100; ++ } else { ++ /* no duration, seek to 1 second, this could EOS */ ++ position = 1 * Gst.SECOND; ++ } ++ ++ /* seek to the a position in the file. Most files have a black first frame so ++ * by seeking to somewhere else we have a bigger chance of getting something ++ * more interesting. An optimisation would be to detect black images and then ++ * seek a little more */ ++ pipeline.seek_simple (Gst.Format.TIME, Gst.SeekFlags.KEY_UNIT | Gst.SeekFlags.FLUSH, position); ++ ++ /* get the preroll buffer from appsink, this block untils appsink really ++ * prerolls */ ++ GLib.Signal.emit_by_name (sink, "pull-preroll", out sample, null); ++ + // if we have a buffer now, convert it to a pixbuf. It's possible that we + // don't have a buffer because we went EOS right away or had an error. +- if (buffer != null) { ++ if (sample != null) { ++ Gst.Buffer buffer; + Gst.Caps caps; + Gst.Structure s; ++ Gst.MapInfo mapinfo; + + // Get the snapshot buffer format now. We set the caps on the appsink so // that it can only be an rgb buffer. The only thing we have not specified // on the caps is the height, which is dependant on the pixel-aspect-ratio // of the source material. - caps = buffer.get_caps(); -+ caps = (sink as Gst.App.Sink).caps; ++ caps = sample.get_caps(); if (caps == null) { stderr.printf("could not get snapshot format\n"); return 5; -@@ -104,9 +100,11 @@ class ShotwellThumbnailer { - +@@ -101,14 +106,18 @@ class ShotwellThumbnailer { + stderr.printf("Could not get snapshot dimension\n"); + return 6; + } +- ++ ++ buffer = sample.get_buffer(); ++ buffer.map(out mapinfo, Gst.MapFlags.READ); ++ // Create pixmap from buffer and save, gstreamer video buffers have a stride // that is rounded up to the nearest multiple of 4. - pixbuf = new Gdk.Pixbuf.from_data(buffer.data, Gdk.Colorspace.RGB, true, 8, -+ Gst.MapInfo info; -+ buffer.map(out info, Gst.MapFlags.READ); -+ pixbuf = new Gdk.Pixbuf.from_data(info.data, Gdk.Colorspace.RGB, true, 8, - width, height, width * 4, null); -- -+ buffer.unmap(info); +- width, height, width * 4, null); ++ pixbuf = new Gdk.Pixbuf.from_data(mapinfo.data, Gdk.Colorspace.RGB, false, 8, ++ width, height, (((width * 3)+3)&~3), null); + // Save the pixbuf. pixbuf.save("/dev/stdout", "png"); ++ buffer.unmap(mapinfo); } else { --- -1.7.11.4 - + stderr.printf("Could not make snapshot\n"); + return 10; +-- +cgit v0.9 diff --git a/community/shotwell/PKGBUILD b/community/shotwell/PKGBUILD index 578cc10f5..8ff178ab2 100644 --- a/community/shotwell/PKGBUILD +++ b/community/shotwell/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 81068 2012-12-11 14:37:24Z allan $ +# $Id: PKGBUILD 85690 2013-03-05 07:36:48Z bgyorgy $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Joeny Ang <ang(dot)joeny(at)gmail(dot)com> pkgname=shotwell pkgver=0.13.1 -pkgrel=5 +pkgrel=6 pkgdesc="A digital photo organizer designed for the GNOME desktop environment" arch=('i686' 'x86_64') url="http://yorba.org/shotwell/" @@ -17,19 +17,26 @@ makedepends=('intltool' 'vala>=0.17.2' 'libunique3') install=shotwell.install source=("http://yorba.org/download/shotwell/0.13/shotwell-${pkgver}.tar.xz" "no-libexec.patch" - "0001-Port-to-GStreamer-1.0.patch") + "0001-Port-to-GStreamer-1.0.patch" + "regenerate-video-thumbnails.patch") md5sums=('71eb1346093705ca2b37c12a21994d14' 'b4124e022c98b4382530e6fbcef965e2' - '86e47eade2b5a49bd6503294751d95f0') + '666d28c2a1b78632df8ab5f24c3aa3cd' + '4b70442c6d9c04f3be23426ef92adb43') build() { cd "${srcdir}/${pkgname}-${pkgver}" patch -p1 <$srcdir/no-libexec.patch - # http://redmine.yorba.org/issues/5548 + # Port to GSreamer 1.0 (video thumbnailer) + # http://redmine.yorba.org/issues/6055 patch -p1 <$srcdir/0001-Port-to-GStreamer-1.0.patch + # Regenerate video thumbnails on lost + # http://redmine.yorba.org/issues/6152 + patch -p1 <$srcdir/regenerate-video-thumbnails.patch + ./configure --prefix=/usr \ --disable-schemas-compile \ --disable-desktop-update \ diff --git a/community/shotwell/regenerate-video-thumbnails.patch b/community/shotwell/regenerate-video-thumbnails.patch new file mode 100644 index 000000000..8a399355e --- /dev/null +++ b/community/shotwell/regenerate-video-thumbnails.patch @@ -0,0 +1,154 @@ +From 05c10b9c6107dc785808732216498ef5f3f6b87d Mon Sep 17 00:00:00 2001 +From: Clint Rogers <clinton@yorba.org> +Date: Wed, 16 Jan 2013 00:09:42 +0000 +Subject: Causes video thumbnails to get regenerated if lost; closes #6152. + +Also moves some code around so regeneration for both stills and videos happens in the same spot, improving code navigability. +--- +diff --git a/src/PhotoMonitor.vala b/src/PhotoMonitor.vala +index 40416d1..3dcc481 100644 +--- a/src/PhotoMonitor.vala ++++ b/src/PhotoMonitor.vala +@@ -287,16 +287,7 @@ private class PhotoMonitor : MediaMonitor { + + return MediaMonitor.DiscoveredFile.UNKNOWN; + } +- +- if (!ThumbnailCache.exists(photo)) { +- try { +- ThumbnailCache.import_from_source(photo, true); +- photo.notify_altered(new Alteration("image","thumbnail")); +- } catch (Error e) { +- // thumbnail for this object was already broken, so nothing got worse. +- } +- } +- ++ + switch (state) { + case LibraryPhotoSourceCollection.State.ONLINE: + case LibraryPhotoSourceCollection.State.OFFLINE: +diff --git a/src/ThumbnailCache.vala b/src/ThumbnailCache.vala +index be97183..2a2c716 100644 +--- a/src/ThumbnailCache.vala ++++ b/src/ThumbnailCache.vala +@@ -1,7 +1,7 @@ +-/* Copyright 2009-2012 Yorba Foundation ++/* Copyright 2009-2013 Yorba Foundation + * + * This software is licensed under the GNU LGPL (version 2.1 or later). +- * See the COPYING file in this distribution. ++ * See the COPYING file in this distribution. + */ + + public class Thumbnails { +@@ -74,6 +74,7 @@ public class ThumbnailCache : Object { + private class AsyncFetchJob : BackgroundJob { + public ThumbnailCache cache; + public string thumbnail_name; ++ public ThumbnailSource source; + public PhotoFileFormat source_format; + public Dimensions dim; + public Gdk.InterpType interp; +@@ -84,13 +85,14 @@ public class ThumbnailCache : Object { + public bool fetched = false; + + public AsyncFetchJob(ThumbnailCache cache, string thumbnail_name, +- PhotoFileFormat source_format, Gdk.Pixbuf? prefetched, Dimensions dim, ++ ThumbnailSource source, Gdk.Pixbuf? prefetched, Dimensions dim, + Gdk.InterpType interp, AsyncFetchCallback callback, Cancellable? cancellable) { + base(cache, async_fetch_completion_callback, cancellable); + + this.cache = cache; + this.thumbnail_name = thumbnail_name; +- this.source_format = source_format; ++ this.source = source; ++ this.source_format = source.get_preferred_thumbnail_format(); + this.unscaled = prefetched; + this.dim = dim; + this.interp = interp; +@@ -126,11 +128,42 @@ public class ThumbnailCache : Object { + // scale if specified + scaled = dim.has_area() ? resize_pixbuf(unscaled, dim, interp) : unscaled; + } catch (Error err) { ++ // Is the problem that the thumbnail couldn't be read? If so, it's recoverable; ++ // we'll just create it and leave this.err as null if creation works. ++ if (err is FileError) { ++ try { ++ Photo photo = source as Photo; ++ Video video = source as Video; ++ ++ if (photo != null) { ++ unscaled = photo.get_pixbuf(Scaling.for_best_fit(dim.width, true)); ++ photo.notify_altered(new Alteration("image","thumbnail")); ++ return; ++ } ++ ++ if (video != null) { ++ unscaled = video.create_thumbnail(dim.width); ++ scaled = resize_pixbuf(unscaled, dim, interp); ++ cache.save_thumbnail(cache.get_source_cached_file(source), ++ unscaled, source); ++ replace(source, cache.size, unscaled); ++ return; ++ } ++ ++ } catch (Error e) { ++ // Creating the thumbnail failed; tell the rest of the app. ++ this.err = e; ++ return; ++ } ++ } ++ ++ // ...the original error wasn't from reading the file, but something else; ++ // tell the rest of the app. + this.err = err; + } + } + } +- ++ + private static Workers fetch_workers = null; + + public const ulong MAX_BIG_CACHED_BYTES = 40 * 1024 * 1024; +@@ -230,13 +263,13 @@ public class ThumbnailCache : Object { + + public static void fetch_async(ThumbnailSource source, int scale, AsyncFetchCallback callback, + Cancellable? cancellable = null) { +- get_best_cache(scale)._fetch_async(source.get_source_id(), source.get_preferred_thumbnail_format(), ++ get_best_cache(scale)._fetch_async(source, source.get_preferred_thumbnail_format(), + Dimensions(), DEFAULT_INTERP, callback, cancellable); + } + +- public static void fetch_async_scaled(ThumbnailSource source, int scale, Dimensions dim, ++ public static void fetch_async_scaled(ThumbnailSource source, int scale, Dimensions dim, + Gdk.InterpType interp, AsyncFetchCallback callback, Cancellable? cancellable = null) { +- get_best_cache(scale)._fetch_async(source.get_source_id(), ++ get_best_cache(scale)._fetch_async(source, + source.get_preferred_thumbnail_format(), dim, interp, callback, cancellable); + } + +@@ -343,9 +376,10 @@ public class ThumbnailCache : Object { + return pixbuf; + } + +- private void _fetch_async(string thumbnail_name, PhotoFileFormat format, Dimensions dim, ++ private void _fetch_async(ThumbnailSource source, PhotoFileFormat format, Dimensions dim, + Gdk.InterpType interp, AsyncFetchCallback callback, Cancellable? cancellable) { + // check if the pixbuf is already in memory ++ string thumbnail_name = source.get_source_id(); + Gdk.Pixbuf pixbuf = fetch_from_memory(thumbnail_name); + if (pixbuf != null && (!dim.has_area() || Dimensions.for_pixbuf(pixbuf).equals(dim))) { + // if no scaling operation required, callback in this context and done (otherwise, +@@ -365,8 +399,8 @@ public class ThumbnailCache : Object { + // situation. This may change in the future, and the caching situation will need to be + // handled. + +- fetch_workers.enqueue(new AsyncFetchJob(this, thumbnail_name, format, pixbuf, dim, interp, +- callback, cancellable)); ++ fetch_workers.enqueue(new AsyncFetchJob(this, thumbnail_name, source, pixbuf, dim, ++ interp, callback, cancellable)); + } + + // Called within Gtk.main's thread context +-- +cgit v0.9 diff --git a/community/skrooge/PKGBUILD b/community/skrooge/PKGBUILD index c75667c91..a80ceb641 100644 --- a/community/skrooge/PKGBUILD +++ b/community/skrooge/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 83379 2013-01-30 20:36:03Z jlichtblau $ +# $Id: PKGBUILD 85723 2013-03-05 18:54:32Z jlichtblau $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Ray Rashif <schiv@archlinux.org> # Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: neuromante <lorenzo.nizzi.grifi@gmail.com> pkgname=skrooge -pkgver=1.5.1 +pkgver=1.6.0 pkgrel=1 pkgdesc="A personal finances manager for KDE" arch=('i686' 'x86_64') @@ -17,7 +17,7 @@ optdepends=('kdepim-libkdepim: for KDE PIM integration') install=$pkgname.install changelog=$pkgname.changelog source=(http://skrooge.org/files/$pkgname-$pkgver.tar.bz2) -sha256sums=('9d8332d80faf4c89b02582894588829b3004d6abf79528c4b6e35a791a8adebc') +sha256sums=('7237400f0ae9af317ec9ac45d8d35144f827146b8cb4e37fa092412fec5f0b0e') build() { cd ${srcdir}/$pkgname-$pkgver diff --git a/community/skrooge/skrooge.changelog b/community/skrooge/skrooge.changelog index 229dda2a4..81cf3a3d2 100644 --- a/community/skrooge/skrooge.changelog +++ b/community/skrooge/skrooge.changelog @@ -1,3 +1,6 @@ +2013-03-50 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * skrooge 1.6.0-1 + 2013-01-30 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> * skrooge 1.5.1-1 diff --git a/community/texvc/PKGBUILD b/community/texvc/PKGBUILD index 75f7fe4f2..c428dd131 100644 --- a/community/texvc/PKGBUILD +++ b/community/texvc/PKGBUILD @@ -1,10 +1,9 @@ -# $Id: PKGBUILD 73896 2012-07-16 14:22:08Z spupykin $ +# $Id: PKGBUILD 85705 2013-03-05 09:48:36Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=texvc -pkgver=1.19.1 -_svnrev=110614 +pkgver=1.20 pkgrel=1 pkgdesc="tex to HTML/MathML/png converter used by mediawiki" arch=(i686 x86_64) @@ -12,12 +11,16 @@ url="http://www.mediawiki.org/wiki/Extension:Math" license=("GPL") depends=('imagemagick' 'ghostscript' 'texlive-core' 'texlive-latexextra') makedepends=('ocaml') -source=(http://upload.wikimedia.org/ext-dist/Math-MW1.19-${_svnrev}.tar.gz) -md5sums=('d5217e19c26bc08201f9fe6bec8722ff') +source=(mediawiki-math-1.20.tar.gz::https://nodeload.github.com/wikimedia/mediawiki-extensions-Math/legacy.tar.gz/REL${pkgver/./_}) +md5sums=('ee8fceb0a86f2972409104767406591c') build() { - cd $srcdir/Math/math - make + cd $srcdir/wikimedia-mediawiki-extensions-Math-*/math + make -j1 +} + +package() { + cd $srcdir/wikimedia-mediawiki-extensions-Math-*/math install -d -m 0755 $pkgdir/usr/bin install -m 0755 texvc $pkgdir/usr/bin } diff --git a/community/the_silver_searcher/PKGBUILD b/community/the_silver_searcher/PKGBUILD index df57c5d07..3d6293130 100644 --- a/community/the_silver_searcher/PKGBUILD +++ b/community/the_silver_searcher/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 82290 2013-01-14 11:59:53Z arodseth $ +# $Id: PKGBUILD 85733 2013-03-05 21:38:07Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Jeff Horelick <jdhore1@gmail.com> # Contributor: skydrome <skydrome@i2pmail.org> pkgname=the_silver_searcher -pkgver=0.13.1 +pkgver=0.14 pkgrel=1 pkgdesc='Code searching tool similar to Ack, but faster' -url='http://github.com/ggreer/the_silver_searcher' +url='https://github.com/ggreer/the_silver_searcher' license=('Apache') -depends=('pcre') +depends=('pcre' 'zlib') arch=('x86_64' 'i686') -source=("https://github.com/downloads/ggreer/$pkgname/$pkgname-$pkgver.tar.gz") -sha256sums=('140ded2207259f670e4b866a68cc2577495b63844c7dae101f89078c6b37b6fc') +source=("https://github.com/ggreer/$pkgname/archive/$pkgver.tar.gz") +sha256sums=('9334d6f41685963c41790502fcfd83ed0ac664d94626d9fee44ae5c33c616bb3') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/extra/crypto++/PKGBUILD b/extra/crypto++/PKGBUILD index 8cebe45ec..be0823a13 100644 --- a/extra/crypto++/PKGBUILD +++ b/extra/crypto++/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 155988 2012-04-10 20:46:54Z giovanni $ +# $Id: PKGBUILD 179501 2013-03-05 17:32:57Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Alexander Rødseth <rodseth@gmail.com> # Contributor: Andrea Scarpino <andrea@archlinux.org> @@ -6,9 +6,9 @@ # Contributor: jlvsimoes <jlvsimoes@oninet.pt> pkgname=crypto++ -pkgver=5.6.1 -_srcver=561 -pkgrel=4 +pkgver=5.6.2 +_srcver=562 +pkgrel=1 pkgdesc="A free C++ class library of cryptographic schemes" arch=('i686' 'x86_64') url="http://www.cryptopp.com/" @@ -16,18 +16,13 @@ license=('custom') depends=('gcc-libs') makedepends=('unzip') source=("http://www.cryptopp.com/cryptopp${_srcver}.zip" - 'libcrypto++.pc' - 'gcc4.7.patch') -md5sums=('96cbeba0907562b077e26bcffb483828' - '2337c6edbc552d9142cae8e0854715e7' - 'cf26a783d9432e7f9ab7f14d3db3f196') + 'libcrypto++.pc') +md5sums=('7ed022585698df48e65ce9218f6c6a67' + '46de3847c59ad16456fa863eb33e73b2') build() { cd ${srcdir} - # Fix gcc 4.7 build - patch -Np1 -i "${srcdir}/gcc4.7.patch" - sed -i -e 's/^CXXFLAGS/#CXXFLAGS/' GNUmakefile export CXXFLAGS="${CXXFLAGS} -DNDEBUG -fPIC" make -f GNUmakefile diff --git a/extra/crypto++/gcc4.7.patch b/extra/crypto++/gcc4.7.patch deleted file mode 100644 index 55d5a0a0a..000000000 --- a/extra/crypto++/gcc4.7.patch +++ /dev/null @@ -1,97 +0,0 @@ ---- a/algebra.cpp 2010-08-06 18:44:32.000000000 +0200 -+++ b/algebra.cpp 2012-04-10 13:16:53.000000000 +0200 -@@ -58,7 +58,7 @@ - Element g[3]={b, a}; - unsigned int i0=0, i1=1, i2=2; - -- while (!Equal(g[i1], this->Identity())) -+ while (!this->Equal(g[i1], this->Identity())) - { - g[i2] = Mod(g[i0], g[i1]); - unsigned int t = i0; i0 = i1; i1 = i2; i2 = t; ---- a/eccrypto.cpp 2010-08-06 18:44:28.000000000 +0200 -+++ b/eccrypto.cpp 2012-04-10 13:19:36.000000000 +0200 -@@ -435,7 +435,7 @@ - StringSource ssG(param.g, true, new HexDecoder); - Element G; - bool result = GetCurve().DecodePoint(G, ssG, (size_t)ssG.MaxRetrievable()); -- SetSubgroupGenerator(G); -+ this->SetSubgroupGenerator(G); - assert(result); - - StringSource ssN(param.n, true, new HexDecoder); -@@ -591,7 +591,7 @@ - if (level >= 2 && pass) - { - const Integer &q = GetSubgroupOrder(); -- Element gq = gpc ? gpc->Exponentiate(this->GetGroupPrecomputation(), q) : ExponentiateElement(g, q); -+ Element gq = gpc ? gpc->Exponentiate(this->GetGroupPrecomputation(), q) : this->ExponentiateElement(g, q); - pass = pass && IsIdentity(gq); - } - return pass; -@@ -629,7 +629,7 @@ - typename EC::Point P; - if (!this->GetGroupParameters().GetCurve().DecodePoint(P, bt, size)) - BERDecodeError(); -- SetPublicElement(P); -+ this->SetPublicElement(P); - } - - template <class EC> ---- a/eccrypto.h 2010-08-06 18:46:24.000000000 +0200 -+++ b/eccrypto.h 2012-04-10 13:23:09.000000000 +0200 -@@ -43,7 +43,7 @@ - void Initialize(const EllipticCurve &ec, const Point &G, const Integer &n, const Integer &k = Integer::Zero()) - { - this->m_groupPrecomputation.SetCurve(ec); -- SetSubgroupGenerator(G); -+ this->SetSubgroupGenerator(G); - m_n = n; - m_k = k; - } -@@ -145,9 +145,9 @@ - typedef typename EC::Point Element; - - void Initialize(const DL_GroupParameters_EC<EC> ¶ms, const Element &Q) -- {this->AccessGroupParameters() = params; SetPublicElement(Q);} -+ {this->AccessGroupParameters() = params; this->SetPublicElement(Q);} - void Initialize(const EC &ec, const Element &G, const Integer &n, const Element &Q) -- {this->AccessGroupParameters().Initialize(ec, G, n); SetPublicElement(Q);} -+ {this->AccessGroupParameters().Initialize(ec, G, n); this->SetPublicElement(Q);} - - // X509PublicKey - void BERDecodePublicKey(BufferedTransformation &bt, bool parametersPresent, size_t size); -@@ -166,9 +166,9 @@ - void Initialize(const EC &ec, const Element &G, const Integer &n, const Integer &x) - {this->AccessGroupParameters().Initialize(ec, G, n); this->SetPrivateExponent(x);} - void Initialize(RandomNumberGenerator &rng, const DL_GroupParameters_EC<EC> ¶ms) -- {GenerateRandom(rng, params);} -+ {this->GenerateRandom(rng, params);} - void Initialize(RandomNumberGenerator &rng, const EC &ec, const Element &G, const Integer &n) -- {GenerateRandom(rng, DL_GroupParameters_EC<EC>(ec, G, n));} -+ {this->GenerateRandom(rng, DL_GroupParameters_EC<EC>(ec, G, n));} - - // PKCS8PrivateKey - void BERDecodePrivateKey(BufferedTransformation &bt, bool parametersPresent, size_t size); ---- a/secblock.h 2012-04-10 13:25:40.000000000 +0200 -+++ b/secblock.h 2012-04-10 13:25:52.000000000 +0200 -@@ -88,7 +88,7 @@ - - pointer allocate(size_type n, const void * = NULL) - { -- CheckSize(n); -+ this->CheckSize(n); - if (n == 0) - return NULL; - ---- a/panama.cpp 2010-08-09 14:22:42.000000000 +0200 -+++ b/panama.cpp 2012-04-10 13:50:12.000000000 +0200 -@@ -422,7 +422,7 @@ - { - this->ThrowIfInvalidTruncatedSize(size); - -- PadLastBlock(this->BLOCKSIZE, 0x01); -+ this->PadLastBlock(this->BLOCKSIZE, 0x01); - - HashEndianCorrectedBlock(this->m_data); - diff --git a/extra/crypto++/libcrypto++.pc b/extra/crypto++/libcrypto++.pc index 698d761a7..cba33f5f9 100644 --- a/extra/crypto++/libcrypto++.pc +++ b/extra/crypto++/libcrypto++.pc @@ -4,8 +4,8 @@ prefix=/usr libdir=${prefix}/lib includedir=${prefix}/include -Name: libcrypto++-5.6.1 +Name: libcrypto++-5.6.2 Description: Class library of cryptographic schemes -Version: 5.6.1 +Version: 5.6.2 Libs: -L${libdir} -lcryptopp Cflags: -I${includedir} diff --git a/extra/dosfstools/PKGBUILD b/extra/dosfstools/PKGBUILD index ec818c4fb..4cdbe9f10 100644 --- a/extra/dosfstools/PKGBUILD +++ b/extra/dosfstools/PKGBUILD @@ -1,15 +1,15 @@ -# $Id: PKGBUILD 178443 2013-02-22 11:41:58Z tpowa $ +# $Id: PKGBUILD 179303 2013-03-05 10:42:06Z tpowa $ # Maintainer: dorphell <dorphell@archlinux.org> # Committer: Judd Vinet <jvinet@zeroflux.org> pkgname=dosfstools -pkgver=3.0.15 +pkgver=3.0.16 pkgrel=1 pkgdesc="DOS filesystem utilities" arch=(i686 x86_64) depends=('glibc') #source=(http://www.daniel-baumann.ch/software/dosfstools/$pkgname-$pkgver.tar.xz) # using debian source, main page is down since quite some time -source=(http://www.daniel-baumann.ch/files/software/$pkgname/$pkgname-$pkgver.tar.xz) +source=(http://www.daniel-baumann.ch/files/software/$pkgname/$pkgname-$pkgver.orig.tar.xz{,.sig}) url="http://www.daniel-baumann.ch/software/dosfstools/" license=('GPL2') @@ -22,4 +22,5 @@ package () { cd $srcdir/$pkgname-$pkgver make PREFIX=$pkgdir MANDIR=$pkgdir/usr/share/man DOCDIR=$pkgdir/usr/share/doc install } -md5sums=('64d2020bd8e92105dfad30feee72a3ec') +md5sums=('27aca18aeb8bb0851ccaeb47e7416a6e' + 'e8b460ab9c27279e652ddbd1ce7fa4b2') diff --git a/extra/eclipse/PKGBUILD b/extra/eclipse/PKGBUILD index 013203dff..d3eb3854f 100644 --- a/extra/eclipse/PKGBUILD +++ b/extra/eclipse/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 167250 2012-09-29 11:01:30Z ibiru $ +# $Id: PKGBUILD 179518 2013-03-05 19:33:11Z ioni $ # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Paul Mattal <paul@archlinux.org> # Contributor: Andrew Wright <andreww@photism.org> @@ -6,25 +6,24 @@ # Contributor: Marco Crosio <marco.crosio@gmail.com> pkgname=eclipse -pkgver=4.2.1 +pkgver=4.2.2 pkgrel=1 -_date=201209141800/ +_date=201302041200 pkgdesc="An IDE for Java and other languages" arch=('i686' 'x86_64') url="http://eclipse.org" depends=('java-environment' 'gtk2' 'unzip' 'libwebkit' 'libxtst') install=${pkgname}.install makedepends=('zip') -conflicts=('xulrunner') license=("EPL/1.1") source=("ftp://ftp.osuosl.org/pub/eclipse/eclipse/downloads/drops4/R-$pkgver-${_date}/$pkgname-SDK-$pkgver-linux-gtk.tar.gz" 'eclipse.sh' 'eclipse.desktop' 'eclipse.svg') -md5sums=('b7e954f547f30704a92fd13895de6d6e' +md5sums=('daa539af97a5cf4fb8ae1d7675b9625b' '7ea99a30fbaf06ec29261541b8eb1e23' 'ba2cf02c48e6e35bfe3685401c26bb5b' '77cff7543ccf7e177cb6667f5a20ce19') [ "$CARCH" = "x86_64" ] && source[0]="ftp://ftp.osuosl.org/pub/eclipse/eclipse/downloads/drops4/R-$pkgver-${_date}/$pkgname-SDK-$pkgver-linux-gtk-$CARCH.tar.gz" -[ "$CARCH" = "x86_64" ] && md5sums[0]='256a04925c033602e5dc479542f7a196' +[ "$CARCH" = "x86_64" ] && md5sums[0]='902102ec85539f4c9342b2c1c4c67f64' package() { # install eclipse @@ -48,5 +47,5 @@ package() { # install icon install -Dm644 "$srcdir"/eclipse.svg \ "$pkgdir"/usr/share/icons/hicolor/scalable/apps/eclipse.svg - sed -i "s|#!/usr/bin/python|#!/usr/bin/python2|" "$pkgdir"/usr/share/eclipse/plugins/org.apache.ant_1.8.3.v20120321-1730/bin/runant.py + sed -i "s|#!/usr/bin/python|#!/usr/bin/python2|" "$pkgdir"/usr/share/eclipse/plugins/org.apache.ant_1.8.3.v201301120609/bin/runant.py } diff --git a/extra/ethtool/PKGBUILD b/extra/ethtool/PKGBUILD index f8c797d04..e3b7790da 100644 --- a/extra/ethtool/PKGBUILD +++ b/extra/ethtool/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 175975 2013-01-25 14:44:35Z ioni $ +# $Id: PKGBUILD 179514 2013-03-05 18:49:59Z ioni $ # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Paul Mattal <paul@archlinux.org> # Contributor: Martin Kemp <mdkemp@elys.com> pkgname=ethtool -pkgver=3.7 +pkgver=3.8 pkgrel=1 epoch=1 pkgdesc="Utility for controlling network drivers and hardware" @@ -13,7 +13,7 @@ url="http://www.kernel.org/pub/software/network/ethtool/" license=('GPL') depends=('glibc') source=(http://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz) -md5sums=('f16c8416e6ec917e5753918dc23a60bd') +md5sums=('7ae96870bc4f9b43f666650ae30f2685') build() { cd $pkgname-$pkgver diff --git a/extra/hexedit/PKGBUILD b/extra/hexedit/PKGBUILD index f46418f04..431407a3d 100644 --- a/extra/hexedit/PKGBUILD +++ b/extra/hexedit/PKGBUILD @@ -1,17 +1,17 @@ -# $Id: PKGBUILD 143768 2011-11-29 01:46:32Z giovanni $ +# $Id: PKGBUILD 179485 2013-03-05 16:24:22Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Paul Mattal <pjmattal@elys.com> pkgname=hexedit -pkgver=1.2.12 -pkgrel=5 +pkgver=1.2.13 +pkgrel=1 pkgdesc="Hex Editor for Linux" arch=('i686' 'x86_64') url="http://rigaux.org/hexedit.html" license=('GPL') depends=('ncurses') source=("http://rigaux.org/${pkgname}-${pkgver}.src.tgz") -md5sums=('0d2f48610006278cd93359fea9a06d5c') +md5sums=('a5af1378d028512a9cad27a5ba3e15f9') build() { cd "${srcdir}/${pkgname}" diff --git a/extra/kactivities/PKGBUILD b/extra/kactivities/PKGBUILD index d13640cd8..c648668db 100644 --- a/extra/kactivities/PKGBUILD +++ b/extra/kactivities/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177628 2013-02-08 08:55:48Z andrea $ +# $Id: PKGBUILD 179329 2013-03-05 15:21:29Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kactivities -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='API for using and interacting with the Activity Manager' @@ -11,7 +11,7 @@ license=('GPL' 'FDL') depends=('nepomuk-core') makedepends=('cmake' 'automoc4' 'mesa') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('4d788f21019cbbe0c27ab3eef51a75125d9966b8') +sha1sums=('3cbcc80ec56176c7ef5d5fac04d9a5ca4e8eecca') build() { cd "${srcdir}" diff --git a/extra/kdeaccessibility-jovie/PKGBUILD b/extra/kdeaccessibility-jovie/PKGBUILD index fd0cd4a0e..8014c45e2 100644 --- a/extra/kdeaccessibility-jovie/PKGBUILD +++ b/extra/kdeaccessibility-jovie/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177655 2013-02-08 08:56:13Z andrea $ +# $Id: PKGBUILD 179355 2013-03-05 15:26:53Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-jovie -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='A text to speech application' @@ -14,7 +14,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdeaccessibility-kttsd') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/jovie-${pkgver}.tar.xz") -sha1sums=('2a233f871ef51037d086ace9d9c4beea35aa2d2d') +sha1sums=('e26c225a9e18ec55b6ab3f6dcd7550ffa15c7b8c') build() { cd "${srcdir}" diff --git a/extra/kdeaccessibility-kaccessible/PKGBUILD b/extra/kdeaccessibility-kaccessible/PKGBUILD index 412839bfb..0b6a0d847 100644 --- a/extra/kdeaccessibility-kaccessible/PKGBUILD +++ b/extra/kdeaccessibility-kaccessible/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177656 2013-02-08 08:56:15Z andrea $ +# $Id: PKGBUILD 179356 2013-03-05 15:27:03Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kaccessible -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Provides accessibility services like focus tracking and a screenreader' @@ -12,7 +12,7 @@ groups=('kde' 'kdeaccessibility') depends=('kdelibs' 'speech-dispatcher') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/kaccessible-${pkgver}.tar.xz") -sha1sums=('8c571b52cb2c369511fb1583d7638b7373dee94a') +sha1sums=('ad9140a49c71bb9a132cf6a2421b2f4ef355f3f7') build() { cd "${srcdir}" diff --git a/extra/kdeaccessibility-kmag/PKGBUILD b/extra/kdeaccessibility-kmag/PKGBUILD index 1ff84e363..3072d192b 100644 --- a/extra/kdeaccessibility-kmag/PKGBUILD +++ b/extra/kdeaccessibility-kmag/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177657 2013-02-08 08:56:15Z andrea $ +# $Id: PKGBUILD 179357 2013-03-05 15:27:21Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kmag -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Screen Magnifier' @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kmag-${pkgver}.tar.xz") -sha1sums=('5adef3bdec46245e31093046b3375561cd9abacd') +sha1sums=('3b26b2dc8e974ac64205ed872fce7b8aa7cc871b') build() { cd "${srcdir}" diff --git a/extra/kdeaccessibility-kmousetool/PKGBUILD b/extra/kdeaccessibility-kmousetool/PKGBUILD index 0eedec64c..2cded4e0c 100644 --- a/extra/kdeaccessibility-kmousetool/PKGBUILD +++ b/extra/kdeaccessibility-kmousetool/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177658 2013-02-08 08:56:16Z andrea $ +# $Id: PKGBUILD 179358 2013-03-05 15:27:29Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kmousetool -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Clicks the mouse for you, reducing the effects of RSI' @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kmousetool-${pkgver}.tar.xz") -sha1sums=('562703967fe7c66eeb9545c62d2e997003456287') +sha1sums=('5979498a972dd247d47fc19904d8b32c14bd3d82') build() { cd "${srcdir}" diff --git a/extra/kdeaccessibility-kmouth/PKGBUILD b/extra/kdeaccessibility-kmouth/PKGBUILD index 9f96e620e..93e3c1ea9 100644 --- a/extra/kdeaccessibility-kmouth/PKGBUILD +++ b/extra/kdeaccessibility-kmouth/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177659 2013-02-08 08:56:17Z andrea $ +# $Id: PKGBUILD 179359 2013-03-05 15:27:41Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kmouth -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Speech Synthesizer Frontend' @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kmouth-${pkgver}.tar.xz") -sha1sums=('6c4724df688578169788775d105197c3f7eaf701') +sha1sums=('2faaa9ea436885a667eb9c778fb9648d46103c2e') build() { cd "${srcdir}" diff --git a/extra/kdeadmin/PKGBUILD b/extra/kdeadmin/PKGBUILD index 0c1f4b8b3..f527e8e72 100644 --- a/extra/kdeadmin/PKGBUILD +++ b/extra/kdeadmin/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 177660 2013-02-08 08:56:20Z andrea $ +# $Id: PKGBUILD 179360 2013-03-05 15:27:56Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -6,15 +6,15 @@ pkgbase=kdeadmin pkgname=('kdeadmin-kcron' 'kdeadmin-ksystemlog' 'kdeadmin-kuser') -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeadmin') -makedepends=('cmake' 'automoc4' 'kdebindings-python2' 'system-config-printer-common') +makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz" 'syslog-path.patch') -sha1sums=('d6f66f9a5d6a42b80e130654a62dfe61ce82dd94' +sha1sums=('d3885d70669c2b03612778e0b4f53742ef306f77' '20095ce6e0f3e5b6800a7c6e52de6fddba62c031') build() { diff --git a/extra/kdeartwork/PKGBUILD b/extra/kdeartwork/PKGBUILD index 7692b9b43..ae1d2e242 100644 --- a/extra/kdeartwork/PKGBUILD +++ b/extra/kdeartwork/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 177661 2013-02-08 08:56:20Z andrea $ +# $Id: PKGBUILD 179361 2013-03-05 15:28:18Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -12,16 +12,15 @@ pkgname=('kdeartwork-colorschemes' 'kdeartwork-styles' 'kdeartwork-wallpapers' 'kdeartwork-weatherwallpapers') -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeartwork') -makedepends=('cmake' 'automoc4' 'xscreensaver' 'eigen' 'kdebase-workspace' - 'libkexiv2' 'mesa') +makedepends=('cmake' 'automoc4' 'xscreensaver' 'eigen' 'kdebase-workspace' 'libkexiv2') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('7ec00b2108eb0207653ebe3c95c67503a20b1967') +sha1sums=('4d0e91b2916ee97e356dc064a72a5c2d2d10f4cf') build() { cd $srcdir diff --git a/extra/kdebase-konsole/PKGBUILD b/extra/kdebase-konsole/PKGBUILD index b6403e32a..b7a7d6afc 100644 --- a/extra/kdebase-konsole/PKGBUILD +++ b/extra/kdebase-konsole/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177662 2013-02-08 08:56:21Z andrea $ +# $Id: PKGBUILD 179364 2013-03-05 15:28:53Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebase-konsole -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') url='http://kde.org/applications/system/konsole/' @@ -12,7 +12,7 @@ groups=('kde' 'kdebase') depends=('kdebase-runtime' 'kdebase-lib') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/konsole-${pkgver}.tar.xz") -sha1sums=('9e4fdfe34a896dc80c1c1fd3f1e790e8c435c56f') +sha1sums=('e5277596c67ff651ca9cb510bcdfc6fe423cbd89') build() { cd "${srcdir}" diff --git a/extra/kdebase-workspace/PKGBUILD b/extra/kdebase-workspace/PKGBUILD index 34f581550..b273a3703 100644 --- a/extra/kdebase-workspace/PKGBUILD +++ b/extra/kdebase-workspace/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 177641 2013-02-08 08:55:59Z andrea $ +# $Id: PKGBUILD 179342 2013-03-05 15:24:06Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdebase-workspace _pkgname=kde-workspace -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Provides the interface and basic tools for the KDE workspace" arch=('i686' 'x86_64') @@ -17,10 +17,9 @@ groups=('kde') depends=('kdepim-runtime' 'lm_sensors' 'libraw1394' 'libqalculate' 'qimageblitz' 'polkit-kde' 'xorg-xprop' 'libxdamage' 'libxklavier' 'xorg-xsetroot' 'libxcomposite' 'libxinerama' - 'xorg-xrdb' 'libgles' 'libegl' 'libxres' 'xorg-xrandr' - 'xorg-xmessage' 'libusb-compat' 'kde-base-artwork' - 'xcb-util-renderutil' 'xcb-util-image' 'ttf-font') -makedepends=('cmake' 'automoc4' 'boost' 'kdebindings-python2' 'networkmanager' 'mesa') + 'xorg-xrdb' 'libxres' 'xorg-xrandr' 'xorg-xmessage' 'libusb-compat' + 'kde-base-artwork' 'xcb-util-renderutil' 'xcb-util-image' 'ttf-font') +makedepends=('cmake' 'automoc4' 'boost' 'kdebindings-python2' 'networkmanager') optdepends=('kde-wallpapers: wallpapers for KDE Plasma Workspaces' 'appmenu-qt: menu applications over dbus') install="${pkgname}.install" @@ -28,7 +27,7 @@ backup=('usr/share/config/kdm/kdmrc') source=("http://download.kde.org/stable/${pkgver}/src/${_pkgname}-${pkgver}.tar.xz" 'kde.pam' 'kde-np.pam' 'kscreensaver.pam' 'kdm.service' 'kdm.logrotate' 'etc-scripts.patch' 'terminate-server.patch' 'kdm-xinitrd.patch') -sha1sums=('dca9aae963c2db95ef69c13f751c2cb22dbf2200' +sha1sums=('48ea4564dc1932606a758647fb1cc5a6f824714e' '660eae40a707d2711d8d7f32a93214865506b795' '6aeecc9e0e221f0515c6bf544f9a3c11cb6961fe' '106635aa1aae51d6f0668b1853f6c49a4fe9d3d8' diff --git a/extra/kdebase/PKGBUILD b/extra/kdebase/PKGBUILD index 0f6c47a93..c477763d3 100644 --- a/extra/kdebase/PKGBUILD +++ b/extra/kdebase/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 177643 2013-02-08 08:56:01Z andrea $ +# $Id: PKGBUILD 179344 2013-03-05 15:24:33Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -12,7 +12,7 @@ pkgname=('kdebase-dolphin' 'kdebase-konqueror' 'kdebase-lib' 'kdebase-plasma') -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -20,7 +20,7 @@ license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdebase') makedepends=('kdelibs' 'cmake' 'automoc4' 'tidyhtml' 'nepomuk-widgets') source=("http://download.kde.org/stable/${pkgver}/src/kde-baseapps-${pkgver}.tar.xz") -sha1sums=('5b0127bd946286f52d98a1779eabf65e416a66c3') +sha1sums=('1becdcaf0e41cb7da6c7f66562a0a2aad9fafb5a') build() { cd ${srcdir} diff --git a/extra/kdebindings-kimono/PKGBUILD b/extra/kdebindings-kimono/PKGBUILD index 5fabf21af..7b3056a66 100644 --- a/extra/kdebindings-kimono/PKGBUILD +++ b/extra/kdebindings-kimono/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177663 2013-02-08 08:56:22Z andrea $ +# $Id: PKGBUILD 179365 2013-03-05 15:29:06Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-kimono -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc=".NET/Mono bindings for the KDE libraries" url="https://projects.kde.org/projects/kde/kdebindings/csharp/kimono" @@ -14,7 +14,7 @@ makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost' 'kdepimlibs') optdepends=('kdepimlibs: akonadi bindings') conflicts=('kdebindings-csharp') source=("http://download.kde.org/stable/${pkgver}/src/kimono-${pkgver}.tar.xz") -sha1sums=('1022ce1dad2cc1154a22dc111a687551478c2468') +sha1sums=('8ae0a46efc42300a9d4f190b73ec147cab08230c') build() { cd "${srcdir}" diff --git a/extra/kdebindings-korundum/PKGBUILD b/extra/kdebindings-korundum/PKGBUILD index f91a8f5b2..83721fc34 100644 --- a/extra/kdebindings-korundum/PKGBUILD +++ b/extra/kdebindings-korundum/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177664 2013-02-08 08:56:23Z andrea $ +# $Id: PKGBUILD 179366 2013-03-05 15:29:18Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-korundum -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Ruby bindings for libraries created by the KDE community" url="https://projects.kde.org/projects/kde/kdebindings/ruby/korundum" @@ -17,7 +17,7 @@ optdepends=('kdegraphics-okular: okular bindings' conflicts=('kdebindings-ruby') source=("http://download.kde.org/stable/${pkgver}/src/korundum-${pkgver}.tar.xz" 'ruby19.patch') -sha1sums=('c8257b61c546df77c98d83ce32759359118d7c9d' +sha1sums=('ba0326225e6d040ea215f1991295f7e43d5aaed4' 'c074f027bac3b9bffe70a2c2304a6a7be12be034') build() { diff --git a/extra/kdebindings-kross/PKGBUILD b/extra/kdebindings-kross/PKGBUILD index bdedcf381..375d1a5f5 100644 --- a/extra/kdebindings-kross/PKGBUILD +++ b/extra/kdebindings-kross/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 177665 2013-02-08 08:56:24Z andrea $ +# $Id: PKGBUILD 179367 2013-03-05 15:29:29Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgbase=kdebindings-kross pkgname=('kdebindings-kross-python' # 'kdebindings-kross-ruby' 'kdebindings-kross-java') -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 url="https://projects.kde.org/projects/kde/kdebindings/kross-interpreters" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') makedepends=('kdelibs' 'cmake' 'automoc4' 'python2' 'java-environment') source=("http://download.kde.org/stable/${pkgver}/src/kross-interpreters-${pkgver}.tar.xz") -sha1sums=('4d7a6c7e0716984c230ac684b46629cd299cec53') +sha1sums=('f334ca21b3e2b00518942d991ea68b65219f35ce') build() { cd "${srcdir}" diff --git a/extra/kdebindings-perlkde/PKGBUILD b/extra/kdebindings-perlkde/PKGBUILD index b8d47f892..5c76f213e 100644 --- a/extra/kdebindings-perlkde/PKGBUILD +++ b/extra/kdebindings-perlkde/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177666 2013-02-08 08:56:27Z andrea $ +# $Id: PKGBUILD 179368 2013-03-05 15:29:41Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-perlkde -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Perl bindings for the KDE libraries" url="https://projects.kde.org/projects/kde/kdebindings/perl/perlkde" @@ -13,7 +13,7 @@ depends=('kdebindings-perlqt' 'kdebindings-smokekde') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate') source=("http://download.kde.org/stable/${pkgver}/src/perlkde-${pkgver}.tar.xz") -sha1sums=('83af5b1c34e93a46395d974b82e819f2649ac5ca') +sha1sums=('f5334a040c8191cd0f3158c7b7dc97b6f21bc897') build() { cd "${srcdir}" diff --git a/extra/kdebindings-perlqt/PKGBUILD b/extra/kdebindings-perlqt/PKGBUILD index e748299eb..0b457455e 100644 --- a/extra/kdebindings-perlqt/PKGBUILD +++ b/extra/kdebindings-perlqt/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177637 2013-02-08 08:55:56Z andrea $ +# $Id: PKGBUILD 179338 2013-03-05 15:23:14Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-perlqt -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Perl bindings for the Qt libraries" url="https://projects.kde.org/projects/kde/kdebindings/perl/perlqt" @@ -12,7 +12,7 @@ groups=('kdebindings') depends=('kdebindings-smokeqt' 'perl-list-moreutils') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') source=("http://download.kde.org/stable/${pkgver}/src/perlqt-${pkgver}.tar.xz") -sha1sums=('2e7bba884c5461ae17ecdc46e294d2e00d99a3a5') +sha1sums=('6b6b8b5a9018cec68404a72cff5524c437def6cb') build() { cd "${srcdir}" diff --git a/extra/kdebindings-python/PKGBUILD b/extra/kdebindings-python/PKGBUILD index c32e2d7c4..4d650200f 100644 --- a/extra/kdebindings-python/PKGBUILD +++ b/extra/kdebindings-python/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 177634 2013-02-08 08:55:53Z andrea $ +# $Id: PKGBUILD 179335 2013-03-05 15:22:35Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgbase=kdebindings-python pkgname=('kdebindings-python' 'kdebindings-python2' 'kdebindings-python-common') -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 url='https://projects.kde.org/projects/kde/kdebindings/pykde4' arch=('i686' 'x86_64') @@ -14,7 +14,7 @@ groups=('kdebindings') makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 'pyqt' 'qscintilla' 'python2-sip' 'python-sip' 'mesa') source=("http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz") -sha1sums=('d587d16363d2184320faf3636ac92f9b50ef5720') +sha1sums=('69a0562e3325508631fde4f24e01d2e3f8907b74') build() { export PYTHONDONTWRITEBYTECODE="TRUE" diff --git a/extra/kdebindings-qtruby/PKGBUILD b/extra/kdebindings-qtruby/PKGBUILD index 93a82db3a..1b0c53525 100644 --- a/extra/kdebindings-qtruby/PKGBUILD +++ b/extra/kdebindings-qtruby/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177639 2013-02-08 08:55:57Z andrea $ +# $Id: PKGBUILD 179340 2013-03-05 15:23:35Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-qtruby -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Ruby bindings for the Qt libraries" url="https://projects.kde.org/projects/kde/kdebindings/ruby/qtruby" @@ -13,7 +13,7 @@ depends=('kdebindings-smokeqt' 'ruby') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') conflicts=('kdebindings-ruby') source=("http://download.kde.org/stable/${pkgver}/src/qtruby-${pkgver}.tar.xz") -sha1sums=('0a6a8617d34153d87d59a610e38e870f41e4ea25') +sha1sums=('732a5e127ffec591b99b91ed41d00d739d8c0300') build() { cd "${srcdir}" diff --git a/extra/kdebindings-qyoto/PKGBUILD b/extra/kdebindings-qyoto/PKGBUILD index 1f30d3e4f..7369dc452 100644 --- a/extra/kdebindings-qyoto/PKGBUILD +++ b/extra/kdebindings-qyoto/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177638 2013-02-08 08:55:56Z andrea $ +# $Id: PKGBUILD 179339 2013-03-05 15:23:25Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-qyoto -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc=".NET/Mono bindings for the Qt libraries" url="https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto" @@ -13,7 +13,7 @@ depends=('kdebindings-smokeqt' 'mono') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') conflicts=('kdebindings-csharp') source=("http://download.kde.org/stable/${pkgver}/src/qyoto-${pkgver}.tar.xz") -sha1sums=('cbb36bd0d83fa34c9afe929913738d3acc807ee8') +sha1sums=('ea78bfdebb93e3be19db7e102bf4e8b66b8b5bec') build() { mkdir build diff --git a/extra/kdebindings-smokegen/PKGBUILD b/extra/kdebindings-smokegen/PKGBUILD index e5ba9fa95..4ba72cada 100644 --- a/extra/kdebindings-smokegen/PKGBUILD +++ b/extra/kdebindings-smokegen/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177631 2013-02-08 08:55:50Z andrea $ +# $Id: PKGBUILD 179332 2013-03-05 15:22:01Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokegen -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A general purpose C++ parser with a plugin infrastructure" url="https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen" @@ -12,7 +12,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') conflicts=('kdebindings-smoke') source=("http://download.kde.org/stable/${pkgver}/src/smokegen-${pkgver}.tar.xz") -sha1sums=('435dd2e087ab527d0c81e1eb883f689a457a40c2') +sha1sums=('866b08f274d88c6ff4c57cada4923906b27bdcd0') build() { cd "${srcdir}" diff --git a/extra/kdebindings-smokekde/PKGBUILD b/extra/kdebindings-smokekde/PKGBUILD index d2acd94ed..89cd6fb14 100644 --- a/extra/kdebindings-smokekde/PKGBUILD +++ b/extra/kdebindings-smokekde/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177636 2013-02-08 08:55:55Z andrea $ +# $Id: PKGBUILD 179337 2013-03-05 15:23:03Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokekde -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Language independent library for KDE bindings" url="https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde" @@ -18,7 +18,7 @@ optdepends=('kdesdk-kate: Kate bindings' 'kdepimlibs: akonadi bindings') conflicts=('kdebindings-smoke') source=("http://download.kde.org/stable/${pkgver}/src/smokekde-${pkgver}.tar.xz") -sha1sums=('bcf9bb164a209b1c5f4870440f01809a3486c1e4') +sha1sums=('7bac022a4f2041ce4adec5a67908ef49f4548941') build() { mkdir build diff --git a/extra/kdebindings-smokeqt/PKGBUILD b/extra/kdebindings-smokeqt/PKGBUILD index 4d54aace1..b91f154c2 100644 --- a/extra/kdebindings-smokeqt/PKGBUILD +++ b/extra/kdebindings-smokeqt/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177632 2013-02-08 08:55:51Z andrea $ +# $Id: PKGBUILD 179333 2013-03-05 15:22:12Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokeqt -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Language independent library for Qt bindings" url="https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt" @@ -13,7 +13,7 @@ depends=('kdebindings-smokegen' 'qimageblitz' 'qscintilla') makedepends=('cmake' 'automoc4' 'mesa') conflicts=('kdebindings-smoke') source=("http://download.kde.org/stable/${pkgver}/src/smokeqt-${pkgver}.tar.xz") -sha1sums=('68c3b9bdf1b378014268d60ec657f457d784e3ec') +sha1sums=('a9aa3f48a5704d79686807e1abf06cedc2776c27') build() { cd "${srcdir}" diff --git a/extra/kdeedu-analitza/PKGBUILD b/extra/kdeedu-analitza/PKGBUILD index 99cbbca6b..5b283af07 100644 --- a/extra/kdeedu-analitza/PKGBUILD +++ b/extra/kdeedu-analitza/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177650 2013-02-08 08:56:09Z andrea $ +# $Id: PKGBUILD 179350 2013-03-05 15:25:49Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-analitza -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A library to add mathematical features to your program" url="https://projects.kde.org/projects/kde/kdeedu/analitza" @@ -10,9 +10,9 @@ arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') -makedepends=('cmake' 'automoc4' 'mesa') +makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/analitza-${pkgver}.tar.xz") -sha1sums=('d4b5b1db869594768b1c685e64d9cab5c3229a8e') +sha1sums=('264cef093d0eb48cfd3eb2efa60987e2864668db') build() { cd "${srcdir}" diff --git a/extra/kdeedu-blinken/PKGBUILD b/extra/kdeedu-blinken/PKGBUILD index 2e33026f7..318e655e3 100644 --- a/extra/kdeedu-blinken/PKGBUILD +++ b/extra/kdeedu-blinken/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177667 2013-02-08 08:56:28Z andrea $ +# $Id: PKGBUILD 179369 2013-03-05 15:29:50Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-blinken -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Memory Enhancement Game" url="http://kde.org/applications/education/blinken/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/blinken-${pkgver}.tar.xz") -sha1sums=('acb82e55a84f4205f388f782b4bb7593263ca614') +sha1sums=('63eb844eeadf7851749c5ab7d91ff7199da80292') build() { cd "${srcdir}" diff --git a/extra/kdeedu-cantor/PKGBUILD b/extra/kdeedu-cantor/PKGBUILD index 127feb0e2..6af7a727b 100644 --- a/extra/kdeedu-cantor/PKGBUILD +++ b/extra/kdeedu-cantor/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177668 2013-02-08 08:56:29Z andrea $ +# $Id: PKGBUILD 179370 2013-03-05 15:30:03Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-cantor -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="KDE Frontend to Mathematical Software" url="http://kde.org/applications/education/cantor/" @@ -16,7 +16,7 @@ optdepends=('maxima: Maxima backend' 'r: R backend') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/cantor-${pkgver}.tar.xz") -sha1sums=('6132287443ffc9e99d9ff738582e81ea2fe22b4a') +sha1sums=('d51617499d6737de0ac2226bf357ca065cdb86ce') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kalgebra/PKGBUILD b/extra/kdeedu-kalgebra/PKGBUILD index edcd27b96..0dcf13b46 100644 --- a/extra/kdeedu-kalgebra/PKGBUILD +++ b/extra/kdeedu-kalgebra/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177669 2013-02-08 08:56:30Z andrea $ +# $Id: PKGBUILD 179371 2013-03-05 15:30:16Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kalgebra -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Graph Calculator" url="http://kde.org/applications/education/kalgebra/" @@ -10,10 +10,10 @@ arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'libkdeedu' 'kdeedu-analitza') -makedepends=('cmake' 'automoc4' 'mesa') +makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kalgebra-${pkgver}.tar.xz") -sha1sums=('ce15669276e49c5385f53fae0a4a41bc22b5c1f6') +sha1sums=('f8b5497ad9df2581d5546a277986503735871447') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kalzium/PKGBUILD b/extra/kdeedu-kalzium/PKGBUILD index fe47b0b51..ec7d9d6bd 100644 --- a/extra/kdeedu-kalzium/PKGBUILD +++ b/extra/kdeedu-kalzium/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177670 2013-02-08 08:56:31Z andrea $ +# $Id: PKGBUILD 179372 2013-03-05 15:30:29Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kalzium -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Periodic Table of Elements" url="http://kde.org/applications/education/kalzium/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'avogadro' 'ocaml' 'facile' 'chemical-mime-data') makedepends=('cmake' 'automoc4' 'mesa') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kalzium-${pkgver}.tar.xz") -sha1sums=('5723203d9b8c8369b3e78494bf2cbbaa17faee58') +sha1sums=('f4babef8d52a0ea1bebf400b15651a708395d0b3') build() { mkdir build diff --git a/extra/kdeedu-kanagram/PKGBUILD b/extra/kdeedu-kanagram/PKGBUILD index fb296e668..d54487fc6 100644 --- a/extra/kdeedu-kanagram/PKGBUILD +++ b/extra/kdeedu-kanagram/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177671 2013-02-08 08:56:32Z andrea $ +# $Id: PKGBUILD 179373 2013-03-05 15:30:41Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kanagram -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Letter Order Game" url="http://kde.org/applications/education/kanagram/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdeedu') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kanagram-${pkgver}.tar.xz") -sha1sums=('7794c54b370c605f9a96fb2faea87dc674fc364e') +sha1sums=('e172bd12f08b9cc6b44d0a89eb2fd4ccda1012ea') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kbruch/PKGBUILD b/extra/kdeedu-kbruch/PKGBUILD index 05ff500e1..8604fa893 100644 --- a/extra/kdeedu-kbruch/PKGBUILD +++ b/extra/kdeedu-kbruch/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177672 2013-02-08 08:56:33Z andrea $ +# $Id: PKGBUILD 179374 2013-03-05 15:30:56Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kbruch -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Exercise Fractions" url="http://kde.org/applications/education/kbruch/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kbruch-${pkgver}.tar.xz") -sha1sums=('b8a0d164cdfbf227e164eeaae57bb7adfcc06929') +sha1sums=('3a66965159113a5416433b83c00517e108e98a64') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kgeography/PKGBUILD b/extra/kdeedu-kgeography/PKGBUILD index 5caa8e070..8427dc6a5 100644 --- a/extra/kdeedu-kgeography/PKGBUILD +++ b/extra/kdeedu-kgeography/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177673 2013-02-08 08:56:34Z andrea $ +# $Id: PKGBUILD 179375 2013-03-05 15:31:06Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kgeography -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Geography Trainer" url="http://kde.org/applications/education/kgeography/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kgeography-${pkgver}.tar.xz") -sha1sums=('1674ee6238593ab2a8bdc11e19ebe0e5a007e978') +sha1sums=('d8d54f8050f829bc81d6efcc01bd239920e56b72') build() { cd "${srcdir}" diff --git a/extra/kdeedu-khangman/PKGBUILD b/extra/kdeedu-khangman/PKGBUILD index 9fa726054..64fdcdffc 100644 --- a/extra/kdeedu-khangman/PKGBUILD +++ b/extra/kdeedu-khangman/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177674 2013-02-08 08:56:35Z andrea $ +# $Id: PKGBUILD 179376 2013-03-05 15:31:28Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-khangman -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Hangman Game" url="http://kde.org/applications/education/khangman/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdeedu') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/khangman-${pkgver}.tar.xz") -sha1sums=('fc7286ccc2a70a4c6fb3e28417007ffc966e16a2') +sha1sums=('8c16f60a1ec156f88c8a268b68c668ae93bd6e3b') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kig/PKGBUILD b/extra/kdeedu-kig/PKGBUILD index 8dc690b89..434a5bfbf 100644 --- a/extra/kdeedu-kig/PKGBUILD +++ b/extra/kdeedu-kig/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177675 2013-02-08 08:56:37Z andrea $ +# $Id: PKGBUILD 179377 2013-03-05 15:31:42Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kig -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Interactive Geometry" url="http://kde.org/applications/education/kig/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kig-${pkgver}.tar.xz") -sha1sums=('42504e6358f5d1f7685c8d2663efa5bce5464b93') +sha1sums=('44b6c9d6585d42cb1b5d9970fd6a43c9c0610ca1') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kiten/PKGBUILD b/extra/kdeedu-kiten/PKGBUILD index e1947af8d..9ba2a299a 100644 --- a/extra/kdeedu-kiten/PKGBUILD +++ b/extra/kdeedu-kiten/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177676 2013-02-08 08:56:38Z andrea $ +# $Id: PKGBUILD 179378 2013-03-05 15:31:52Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kiten -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Japanese Reference/Study Tool" url="http://kde.org/applications/education/kiten/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kiten-${pkgver}.tar.xz") -sha1sums=('269d08e841d0697ddda8b310e90c059aa8d85201') +sha1sums=('1955794b6b7eb2a78cd3d6d0fb0accea3bcfd833') build() { cd "${srcdir}" diff --git a/extra/kdeedu-klettres/PKGBUILD b/extra/kdeedu-klettres/PKGBUILD index b8f57dfb2..5c1dc4eac 100644 --- a/extra/kdeedu-klettres/PKGBUILD +++ b/extra/kdeedu-klettres/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177677 2013-02-08 08:56:39Z andrea $ +# $Id: PKGBUILD 179379 2013-03-05 15:32:07Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-klettres -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Learn The Alphabet" url="http://kde.org/applications/education/klettres/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/klettres-${pkgver}.tar.xz") -sha1sums=('22cd76e4808925225855d0f9d1b80e2b60eb02a9') +sha1sums=('96701f24f6d187fdb8b25d4f36b48973f9ac73f5') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kmplot/PKGBUILD b/extra/kdeedu-kmplot/PKGBUILD index afe0359fc..1a35fe947 100644 --- a/extra/kdeedu-kmplot/PKGBUILD +++ b/extra/kdeedu-kmplot/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177678 2013-02-08 08:56:41Z andrea $ +# $Id: PKGBUILD 179380 2013-03-05 15:32:17Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kmplot -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Mathematical Function Plotter" url="http://kde.org/applications/education/kmplot/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kmplot-${pkgver}.tar.xz") -sha1sums=('2e4641e4f368965d3d63b682c237d879609704d6') +sha1sums=('3a25e9a3741687966beb72ed5af9d42a55e3c6b9') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kstars/PKGBUILD b/extra/kdeedu-kstars/PKGBUILD index 8f42453c4..37a52d247 100644 --- a/extra/kdeedu-kstars/PKGBUILD +++ b/extra/kdeedu-kstars/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177679 2013-02-08 08:56:42Z andrea $ +# $Id: PKGBUILD 179381 2013-03-05 15:32:29Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kstars -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Desktop Planetarium" url="http://kde.org/applications/education/kstars/" @@ -10,10 +10,10 @@ arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'wcslib' 'libindi') -makedepends=('cmake' 'automoc4' 'eigen' 'mesa') +makedepends=('cmake' 'automoc4' 'eigen') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kstars-${pkgver}.tar.xz") -sha1sums=('3b5542ddccf7b9a7d96649a26b0dffd1fb029046') +sha1sums=('f440d0f27af3c4a8d7a8a8eea5bd29b450a0dd8a') build() { mkdir build diff --git a/extra/kdeedu-ktouch/PKGBUILD b/extra/kdeedu-ktouch/PKGBUILD index 6f686eb59..ce8250c1d 100644 --- a/extra/kdeedu-ktouch/PKGBUILD +++ b/extra/kdeedu-ktouch/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177680 2013-02-08 08:56:43Z andrea $ +# $Id: PKGBUILD 179382 2013-03-05 15:32:43Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-ktouch -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Touch Typing Tutor" url="http://kde.org/applications/education/ktouch/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4' 'mesa') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/ktouch-${pkgver}.tar.xz") -sha1sums=('3a37cb717e7edc88f73c94ee4e328c79234071bd') +sha1sums=('4ad7bd9a783ec383c83bbc08d8d93737a69f1ce5') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kturtle/PKGBUILD b/extra/kdeedu-kturtle/PKGBUILD index c0d9f49aa..4291d3759 100644 --- a/extra/kdeedu-kturtle/PKGBUILD +++ b/extra/kdeedu-kturtle/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177681 2013-02-08 08:56:45Z andrea $ +# $Id: PKGBUILD 179383 2013-03-05 15:32:56Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kturtle -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Educational Programming Environment" url="http://kde.org/applications/education/kturtle/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kturtle-${pkgver}.tar.xz") -sha1sums=('275d42b8947a038f1f1f1661177ab24ddcf512f1') +sha1sums=('163a70168e9faf8175b1079ce63a7c5e423c67fd') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kwordquiz/PKGBUILD b/extra/kdeedu-kwordquiz/PKGBUILD index e82e4c6be..eda003439 100644 --- a/extra/kdeedu-kwordquiz/PKGBUILD +++ b/extra/kdeedu-kwordquiz/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177682 2013-02-08 08:56:46Z andrea $ +# $Id: PKGBUILD 179384 2013-03-05 15:33:05Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kwordquiz -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Flash Card Trainer" url="http://kde.org/applications/education/kwordquiz/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdeedu') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kwordquiz-${pkgver}.tar.xz") -sha1sums=('3fde5dc7973e1d35b634faa892113d553d342ad0') +sha1sums=('80bff3cb0c4cc612e83062812607bf543e5ade41') build() { cd "${srcdir}" diff --git a/extra/kdeedu-marble/PKGBUILD b/extra/kdeedu-marble/PKGBUILD index e8b667988..66d2ef8be 100644 --- a/extra/kdeedu-marble/PKGBUILD +++ b/extra/kdeedu-marble/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 178961 2013-03-01 10:20:55Z andrea $ +# $Id: PKGBUILD 179472 2013-03-05 16:05:33Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-marble -pkgver=4.10.0 -pkgrel=2 +pkgver=4.10.1 +pkgrel=1 pkgdesc="Desktop Globe" url="http://kde.org/applications/education/marble/" arch=('i686' 'x86_64') @@ -14,7 +14,7 @@ makedepends=('cmake' 'automoc4' 'gpsd') optdepends=('gpsd: gps support') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/marble-${pkgver}.tar.xz") -sha1sums=('c1db6b1785ca1ad230de6da0e67ee84bf7e3a2cd') +sha1sums=('0704e76204eba8b5cf32239f32d3c385063716ff') build() { . /etc/profile.d/qt4.sh diff --git a/extra/kdeedu-pairs/PKGBUILD b/extra/kdeedu-pairs/PKGBUILD index 2e83c895d..e5b74d233 100644 --- a/extra/kdeedu-pairs/PKGBUILD +++ b/extra/kdeedu-pairs/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177683 2013-02-08 08:56:48Z andrea $ +# $Id: PKGBUILD 179385 2013-03-05 15:33:17Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-pairs -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A memory and pairs game for KDE" url="https://projects.kde.org/projects/kde/kdeedu/pairs" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/pairs-${pkgver}.tar.xz") -sha1sums=('d59acdd58dc696938aca225b7ca0fd75294f769d') +sha1sums=('befcc60b502422e359fbc486f23ce2b570349137') build() { cd "${srcdir}" diff --git a/extra/kdeedu-parley/PKGBUILD b/extra/kdeedu-parley/PKGBUILD index 527af3f20..6cb87f200 100644 --- a/extra/kdeedu-parley/PKGBUILD +++ b/extra/kdeedu-parley/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177684 2013-02-08 08:56:49Z andrea $ +# $Id: PKGBUILD 179386 2013-03-05 15:33:26Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-parley -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Vocabulary Trainer" url="http://kde.org/applications/education/parley/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdeedu') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/parley-${pkgver}.tar.xz") -sha1sums=('9de22027fdb57fb516a0ae63d95341361ea939db') +sha1sums=('bea1bebe90e29d674f3a10f5cbfaf0051fb04ee5') build() { cd "${srcdir}" diff --git a/extra/kdeedu-rocs/PKGBUILD b/extra/kdeedu-rocs/PKGBUILD index 8da16bc18..10cc35bfc 100644 --- a/extra/kdeedu-rocs/PKGBUILD +++ b/extra/kdeedu-rocs/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177685 2013-02-08 08:56:51Z andrea $ +# $Id: PKGBUILD 179387 2013-03-05 15:33:39Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-rocs -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Rocs Graph Theory" url="http://kde.org/applications/education/rocs/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4' 'boost') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/rocs-${pkgver}.tar.xz") -sha1sums=('6e1d757518931a0ee41378a04e06cd66d51d6b9e') +sha1sums=('5d3551cf327942da4c94529902436f30940c2537') build() { cd "${srcdir}" diff --git a/extra/kdeedu-step/PKGBUILD b/extra/kdeedu-step/PKGBUILD index 2a703bc2c..6bab8fc8c 100644 --- a/extra/kdeedu-step/PKGBUILD +++ b/extra/kdeedu-step/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177686 2013-02-08 08:56:52Z andrea $ +# $Id: PKGBUILD 179388 2013-03-05 15:33:49Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-step -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Interactive Physical Simulator" url="http://kde.org/applications/education/step/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libqalculate' 'gsl') makedepends=('cmake' 'automoc4' 'eigen' 'mesa') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/step-${pkgver}.tar.xz") -sha1sums=('879c3afe9fe912447ac9c80396d242ac5bad021b') +sha1sums=('2b3f8760abf15bd824a09b580a59a29e26aa4773') build() { cd "${srcdir}" diff --git a/extra/kdegames-bomber/PKGBUILD b/extra/kdegames-bomber/PKGBUILD index fa305cb2d..1c7764b5d 100644 --- a/extra/kdegames-bomber/PKGBUILD +++ b/extra/kdegames-bomber/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177687 2013-02-08 08:56:53Z andrea $ +# $Id: PKGBUILD 179389 2013-03-05 15:33:59Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-bomber -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A single player arcade game" url="http://kde.org/applications/games/bomber/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/bomber-${pkgver}.tar.xz") -sha1sums=('d9aaba9642c7e18977aa02805e9a418d2d806c28') +sha1sums=('065f52b25478bcd5a45b65dc1978a081e2323899') build() { mkdir build diff --git a/extra/kdegames-bovo/PKGBUILD b/extra/kdegames-bovo/PKGBUILD index e0d00c62b..7964f90f9 100644 --- a/extra/kdegames-bovo/PKGBUILD +++ b/extra/kdegames-bovo/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177688 2013-02-08 08:56:55Z andrea $ +# $Id: PKGBUILD 179390 2013-03-05 15:34:08Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-bovo -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A Gomoku like game for two players" url="http://kde.org/applications/games/bovo/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/bovo-${pkgver}.tar.xz") -sha1sums=('34320de58e63537bc021ca1ad5280593f2cd1482') +sha1sums=('bc0404a17116a5c72f983caa0e7570ae5017265f') build() { mkdir build diff --git a/extra/kdegames-granatier/PKGBUILD b/extra/kdegames-granatier/PKGBUILD index 509e684a5..fd9984bfd 100644 --- a/extra/kdegames-granatier/PKGBUILD +++ b/extra/kdegames-granatier/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177689 2013-02-08 08:56:56Z andrea $ +# $Id: PKGBUILD 179391 2013-03-05 15:34:17Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-granatier -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A clone of the classic Bomberman game" url="http://kde.org/applications/games/granatier/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/granatier-${pkgver}.tar.xz") -sha1sums=('38c644961b479e34d837648c3dc6c5f8e890d9b5') +sha1sums=('520df782bfc1815a91fe0a85bbe23493a95b2efa') build() { mkdir build diff --git a/extra/kdegames-kapman/PKGBUILD b/extra/kdegames-kapman/PKGBUILD index 90ee331ed..cf5559375 100644 --- a/extra/kdegames-kapman/PKGBUILD +++ b/extra/kdegames-kapman/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177691 2013-02-08 08:56:58Z andrea $ +# $Id: PKGBUILD 179393 2013-03-05 15:34:38Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kapman -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A clone of the well known game Pac-Man" url="http://kde.org/applications/games/kapman/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kapman-${pkgver}.tar.xz") -sha1sums=('cece24fa54d36497cdd43f627588a0c5110599fc') +sha1sums=('9f755a9da4fe74bb2c838d89d616fb6e87d58d7e') build() { mkdir build diff --git a/extra/kdegames-katomic/PKGBUILD b/extra/kdegames-katomic/PKGBUILD index 09a356160..d12dbcba6 100644 --- a/extra/kdegames-katomic/PKGBUILD +++ b/extra/kdegames-katomic/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177692 2013-02-08 08:56:59Z andrea $ +# $Id: PKGBUILD 179394 2013-03-05 15:34:47Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-katomic -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A fun and educational game built around molecular geometry" url="http://kde.org/applications/games/katomic/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/katomic-${pkgver}.tar.xz") -sha1sums=('4f34335251331f0abcdc801400f4fb821fcb9a63') +sha1sums=('50a9ca7e617a017a6d705de73de2398947789cad') build() { mkdir build diff --git a/extra/kdegames-kblackbox/PKGBUILD b/extra/kdegames-kblackbox/PKGBUILD index 6fff9cf9c..896607c6a 100644 --- a/extra/kdegames-kblackbox/PKGBUILD +++ b/extra/kdegames-kblackbox/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177693 2013-02-08 08:57:00Z andrea $ +# $Id: PKGBUILD 179395 2013-03-05 15:34:56Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kblackbox -pkgver=4.10.0 +pkgver=4.10.1 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 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kblackbox-${pkgver}.tar.xz") -sha1sums=('5babfbd66211655da8a45155fd136451a6d782ca') +sha1sums=('b02474e64c9329b2a3b701abcddbfaf313223161') build() { mkdir build diff --git a/extra/kdegames-kblocks/PKGBUILD b/extra/kdegames-kblocks/PKGBUILD index bb3f5301a..d530d0916 100644 --- a/extra/kdegames-kblocks/PKGBUILD +++ b/extra/kdegames-kblocks/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177694 2013-02-08 08:57:02Z andrea $ +# $Id: PKGBUILD 179396 2013-03-05 15:35:13Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kblocks -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="The classic falling blocks game" url="http://kde.org/applications/games/kblocks/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kblocks-${pkgver}.tar.xz") -sha1sums=('969e5de340ed2052b42bf1e0b8a5da3dce41f3da') +sha1sums=('8aefa68a6b08bacd474d54ebb68fe15d0936198e') build() { mkdir build diff --git a/extra/kdegames-kbounce/PKGBUILD b/extra/kdegames-kbounce/PKGBUILD index db782a5ad..e2d20c480 100644 --- a/extra/kdegames-kbounce/PKGBUILD +++ b/extra/kdegames-kbounce/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177695 2013-02-08 08:57:03Z andrea $ +# $Id: PKGBUILD 179397 2013-03-05 15:35:27Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kbounce -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A single player arcade game with the elements of puzzle" url="http://kde.org/applications/games/kbounce/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kbounce-${pkgver}.tar.xz") -sha1sums=('e59c9386f3a8accf2f58b223ec45fe52e92e2871') +sha1sums=('bcc15ccf2c127529a497b5a121a1e5d2003c3db6') build() { mkdir build diff --git a/extra/kdegames-kbreakout/PKGBUILD b/extra/kdegames-kbreakout/PKGBUILD index a52bf4ed6..3c24abcc0 100644 --- a/extra/kdegames-kbreakout/PKGBUILD +++ b/extra/kdegames-kbreakout/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177696 2013-02-08 08:57:05Z andrea $ +# $Id: PKGBUILD 179398 2013-03-05 15:35:40Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kbreakout -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A Breakout-like game" url="http://kde.org/applications/games/kbreakout/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kbreakout-${pkgver}.tar.xz") -sha1sums=('caea3b85d3583dbebe403d5b5dccd0ad626ff39c') +sha1sums=('77925644161af227cb12cb320f1c493b284eb5a4') build() { mkdir build diff --git a/extra/kdegames-kdiamond/PKGBUILD b/extra/kdegames-kdiamond/PKGBUILD index 2d998c4c0..8c8db3b06 100644 --- a/extra/kdegames-kdiamond/PKGBUILD +++ b/extra/kdegames-kdiamond/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177697 2013-02-08 08:57:06Z andrea $ +# $Id: PKGBUILD 179399 2013-03-05 15:35:52Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kdiamond -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A single player puzzle game" url="http://kde.org/applications/games/kdiamond/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kdiamond-${pkgver}.tar.xz") -sha1sums=('4c587c26e547ad8ace040df5d6f4208aa1116cb2') +sha1sums=('21773703e25e63011b6671c7aabc9291210e61a2') build() { mkdir build diff --git a/extra/kdegames-kfourinline/PKGBUILD b/extra/kdegames-kfourinline/PKGBUILD index d8642e6b5..0f596f120 100644 --- a/extra/kdegames-kfourinline/PKGBUILD +++ b/extra/kdegames-kfourinline/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177698 2013-02-08 08:57:07Z andrea $ +# $Id: PKGBUILD 179400 2013-03-05 15:36:01Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kfourinline -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A four-in-a-row game" url="http://kde.org/applications/games/kfourinline/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kfourinline-${pkgver}.tar.xz") -sha1sums=('147afa6ebe5df5d93d6564aeec0ddfd54d894797') +sha1sums=('e54603f084a253ab29753df37966295dd339a75d') build() { mkdir build diff --git a/extra/kdegames-kgoldrunner/PKGBUILD b/extra/kdegames-kgoldrunner/PKGBUILD index 2709900af..cf37cd7c9 100644 --- a/extra/kdegames-kgoldrunner/PKGBUILD +++ b/extra/kdegames-kgoldrunner/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177699 2013-02-08 08:57:08Z andrea $ +# $Id: PKGBUILD 179401 2013-03-05 15:36:11Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kgoldrunner -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A game of action and puzzle solving" url="http://kde.org/applications/games/kgoldrunner/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kgoldrunner-${pkgver}.tar.xz") -sha1sums=('87ba1974279e7785beeeaeb776e3d12d1ee5abdf') +sha1sums=('7cf89bd3dcb67eb9a5d12060cc174184e154c3e5') build() { mkdir build diff --git a/extra/kdegames-kigo/PKGBUILD b/extra/kdegames-kigo/PKGBUILD index 4fc07063c..3b1ecd872 100644 --- a/extra/kdegames-kigo/PKGBUILD +++ b/extra/kdegames-kigo/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177700 2013-02-08 08:57:09Z andrea $ +# $Id: PKGBUILD 179402 2013-03-05 15:36:21Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kigo -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="An open-source implementation of the popular Go game" url="http://kde.org/applications/games/kigo/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames' 'gnugo') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kigo-${pkgver}.tar.xz") -sha1sums=('0dcee4587b9c57847bf8c2c7e0d2450c386aa969') +sha1sums=('8caa108c1b63127843c60ace2c4889080b4149f2') build() { mkdir build diff --git a/extra/kdegames-killbots/PKGBUILD b/extra/kdegames-killbots/PKGBUILD index 3f741f193..5c135a46b 100644 --- a/extra/kdegames-killbots/PKGBUILD +++ b/extra/kdegames-killbots/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177701 2013-02-08 08:57:12Z andrea $ +# $Id: PKGBUILD 179403 2013-03-05 15:36:31Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-killbots -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A simple game of evading killer robots" url="http://kde.org/applications/games/killbots/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/killbots-${pkgver}.tar.xz") -sha1sums=('0fe272b75230c2a12b05275166fe0d3e50491e9e') +sha1sums=('81a76eb87422e8d42258fba1ac7205636bf93438') build() { mkdir build diff --git a/extra/kdegames-kiriki/PKGBUILD b/extra/kdegames-kiriki/PKGBUILD index ac4671e5c..1edca0ba2 100644 --- a/extra/kdegames-kiriki/PKGBUILD +++ b/extra/kdegames-kiriki/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177702 2013-02-08 08:57:14Z andrea $ +# $Id: PKGBUILD 179404 2013-03-05 15:36:42Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kiriki -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="An addictive and fun dice game" url="http://kde.org/applications/games/kiriki/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kiriki-${pkgver}.tar.xz") -sha1sums=('57b17dccf458a7260732c8d1c3724451a104fdf1') +sha1sums=('ef92049ee0baed9a71c49c80e9b7914d9e9c1f89') build() { mkdir build diff --git a/extra/kdegames-kjumpingcube/PKGBUILD b/extra/kdegames-kjumpingcube/PKGBUILD index 83d78a99f..4939cd0ea 100644 --- a/extra/kdegames-kjumpingcube/PKGBUILD +++ b/extra/kdegames-kjumpingcube/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177703 2013-02-08 08:57:16Z andrea $ +# $Id: PKGBUILD 179405 2013-03-05 15:36:53Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kjumpingcube -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A simple tactical game" url="http://kde.org/applications/games/kjumpingcube/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kjumpingcube-${pkgver}.tar.xz") -sha1sums=('1f42e117175b75ae994ea5141ec52a4f2516bdce') +sha1sums=('989067e555dd2398f15c31ddce299437d951eeff') build() { mkdir build diff --git a/extra/kdegames-klickety/PKGBUILD b/extra/kdegames-klickety/PKGBUILD index f5b6cca32..cee2102fb 100644 --- a/extra/kdegames-klickety/PKGBUILD +++ b/extra/kdegames-klickety/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177704 2013-02-08 08:57:17Z andrea $ +# $Id: PKGBUILD 179406 2013-03-05 15:37:00Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-klickety -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="An adaptation of the Clickomania game" url="http://kde.org/applications/games/klickety/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/klickety-${pkgver}.tar.xz") -sha1sums=('28d7e93f5b93f898f0364b86406adafa52f46891') +sha1sums=('75b05470576884996e677e7f02278a7dc6d0d744') build() { mkdir build diff --git a/extra/kdegames-klines/PKGBUILD b/extra/kdegames-klines/PKGBUILD index 354ce3e22..7669c6143 100644 --- a/extra/kdegames-klines/PKGBUILD +++ b/extra/kdegames-klines/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177705 2013-02-08 08:57:21Z andrea $ +# $Id: PKGBUILD 179407 2013-03-05 15:37:12Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-klines -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A simple but highly addictive, one player game" url="http://kde.org/applications/games/klines/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/klines-${pkgver}.tar.xz") -sha1sums=('0886b2c788725034f4b8367a6f5db16344a87159') +sha1sums=('4e11a5da5938c1b0569db05fe9a0ba5a08b9fb64') build() { mkdir build diff --git a/extra/kdegames-kmahjongg/PKGBUILD b/extra/kdegames-kmahjongg/PKGBUILD index 6b7279012..c01e5fb81 100644 --- a/extra/kdegames-kmahjongg/PKGBUILD +++ b/extra/kdegames-kmahjongg/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177706 2013-02-08 08:57:23Z andrea $ +# $Id: PKGBUILD 179408 2013-03-05 15:37:22Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kmahjongg -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A tile matching game for one or two players" url="http://kde.org/applications/games/kmahjongg/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkmahjongg' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kmahjongg-${pkgver}.tar.xz") -sha1sums=('9a2532fac72ccac404379e02c2a5d0e649fc04fe') +sha1sums=('53640b63fb4194769c3babffe07d7dd4431457f9') build() { mkdir build diff --git a/extra/kdegames-kmines/PKGBUILD b/extra/kdegames-kmines/PKGBUILD index bf790f419..982f46fa3 100644 --- a/extra/kdegames-kmines/PKGBUILD +++ b/extra/kdegames-kmines/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177707 2013-02-08 08:57:24Z andrea $ +# $Id: PKGBUILD 179409 2013-03-05 15:37:35Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kmines -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="The classic Minesweeper game" url="http://kde.org/applications/games/kmines/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kmines-${pkgver}.tar.xz") -sha1sums=('59eeead2673b8ac6dfd0e7aab22bc27206a9d12a') +sha1sums=('dfe6ed7af68f424f40eec9522460a800a4aff38c') build() { mkdir build diff --git a/extra/kdegames-knavalbattle/PKGBUILD b/extra/kdegames-knavalbattle/PKGBUILD index 8a232556a..9afb86478 100644 --- a/extra/kdegames-knavalbattle/PKGBUILD +++ b/extra/kdegames-knavalbattle/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177708 2013-02-08 08:57:26Z andrea $ +# $Id: PKGBUILD 179410 2013-03-05 15:37:56Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-knavalbattle -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A ship sinking game" url="http://kde.org/applications/games/knavalbattle/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/knavalbattle-${pkgver}.tar.xz") -sha1sums=('a52486a7f3109633ce340981c6c1706312b69606') +sha1sums=('2bcf09d185d15fd1177dcb3b45184dc495e73ee7') build() { mkdir build diff --git a/extra/kdegames-knetwalk/PKGBUILD b/extra/kdegames-knetwalk/PKGBUILD index 3921584ad..65bc1a35b 100644 --- a/extra/kdegames-knetwalk/PKGBUILD +++ b/extra/kdegames-knetwalk/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177709 2013-02-08 08:57:27Z andrea $ +# $Id: PKGBUILD 179411 2013-03-05 15:38:09Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-knetwalk -pkgver=4.10.0 +pkgver=4.10.1 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 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/knetwalk-${pkgver}.tar.xz") -sha1sums=('bb6587f4f008c1bfcfed728f7d0e48de031a49e4') +sha1sums=('1f2df9663a1dc08c9f065cf584959cb2e18c0347') build() { mkdir build diff --git a/extra/kdegames-kolf/PKGBUILD b/extra/kdegames-kolf/PKGBUILD index 2791cff1a..590169543 100644 --- a/extra/kdegames-kolf/PKGBUILD +++ b/extra/kdegames-kolf/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177710 2013-02-08 08:57:28Z andrea $ +# $Id: PKGBUILD 179412 2013-03-05 15:38:19Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kolf -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A miniature golf game with 2d top-down view" url="http://kde.org/applications/games/kolf/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kolf-${pkgver}.tar.xz") -sha1sums=('d91e64df3397b76940603963e32ff44357e67d4e') +sha1sums=('8de187b5807217f9e6b0e863ff55d563fb506185') build() { mkdir build diff --git a/extra/kdegames-kollision/PKGBUILD b/extra/kdegames-kollision/PKGBUILD index 8c7cbb0df..0a92acfe5 100644 --- a/extra/kdegames-kollision/PKGBUILD +++ b/extra/kdegames-kollision/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177711 2013-02-08 08:57:29Z andrea $ +# $Id: PKGBUILD 179414 2013-03-05 15:38:32Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kollision -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A simple ball dodging game" url="http://kde.org/applications/games/kollision/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kollision-${pkgver}.tar.xz") -sha1sums=('edaa3f7bc9b15982e2aae6b7e97ce05dcf70fea8') +sha1sums=('d3e83cd99877cb9663fdbff9a6c86837766d45fe') build() { mkdir build diff --git a/extra/kdegames-konquest/PKGBUILD b/extra/kdegames-konquest/PKGBUILD index 8545abd03..bd6d858c7 100644 --- a/extra/kdegames-konquest/PKGBUILD +++ b/extra/kdegames-konquest/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177712 2013-02-08 08:57:31Z andrea $ +# $Id: PKGBUILD 179416 2013-03-05 15:38:46Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-konquest -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="The KDE version of Gnu-Lactic" url="http://kde.org/applications/games/konquest/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/konquest-${pkgver}.tar.xz") -sha1sums=('b09b6cdb70a5a9b423215679c4db044768f4338a') +sha1sums=('6ff522c655e4828914a02e8cb6262b5ed57133c9') build() { mkdir build diff --git a/extra/kdegames-kpatience/PKGBUILD b/extra/kdegames-kpatience/PKGBUILD index b9933c7c3..381882bb1 100644 --- a/extra/kdegames-kpatience/PKGBUILD +++ b/extra/kdegames-kpatience/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177713 2013-02-08 08:57:32Z andrea $ +# $Id: PKGBUILD 179417 2013-03-05 15:39:00Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kpatience -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Offers a selection of solitaire card games" url="http://kde.org/applications/games/kpat/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kpat-${pkgver}.tar.xz") -sha1sums=('a77aed1c84363e76fc8aab49125b62f4b0d657b1') +sha1sums=('a402853ce9dca571734ab62ddc982abf7dc4dd87') build() { mkdir build diff --git a/extra/kdegames-kreversi/PKGBUILD b/extra/kdegames-kreversi/PKGBUILD index 550fffc99..e8414e317 100644 --- a/extra/kdegames-kreversi/PKGBUILD +++ b/extra/kdegames-kreversi/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177714 2013-02-08 08:57:33Z andrea $ +# $Id: PKGBUILD 179418 2013-03-05 15:39:13Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kreversi -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A simple one player strategy game played against the computer" url="http://kde.org/applications/games/kreversi/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kreversi-${pkgver}.tar.xz") -sha1sums=('0bb2b856a1097289a69cd01d33e4208a54c62e1f') +sha1sums=('41ef69c937908be5ef5c9a6fdaf976f00138537d') build() { mkdir build diff --git a/extra/kdegames-kshisen/PKGBUILD b/extra/kdegames-kshisen/PKGBUILD index eb8360898..0ac426444 100644 --- a/extra/kdegames-kshisen/PKGBUILD +++ b/extra/kdegames-kshisen/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177715 2013-02-08 08:57:35Z andrea $ +# $Id: PKGBUILD 179419 2013-03-05 15:39:28Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kshisen -pkgver=4.10.0 +pkgver=4.10.1 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 @@ depends=('kdebase-runtime' 'libkdegames' 'libkmahjongg') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kshisen-${pkgver}.tar.xz") -sha1sums=('19a9ae4b91afb3890a207d3a5c6d139f0b5a9300') +sha1sums=('7f7bcd546ba7e61b61714b49629147366076da70') build() { mkdir build diff --git a/extra/kdegames-ksirk/PKGBUILD b/extra/kdegames-ksirk/PKGBUILD index e89ff9fde..6b16c8aba 100644 --- a/extra/kdegames-ksirk/PKGBUILD +++ b/extra/kdegames-ksirk/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177716 2013-02-08 08:57:36Z andrea $ +# $Id: PKGBUILD 179420 2013-03-05 15:39:42Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-ksirk -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A computerized version of a well known strategy game" url="http://kde.org/applications/games/ksirk/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/ksirk-${pkgver}.tar.xz") -sha1sums=('a40e6d13bbbf396335744e443ef2f6cbfa003b5b') +sha1sums=('88f63a8dc09c29f77495b3af8f9cf53821482111') build() { mkdir build diff --git a/extra/kdegames-ksnakeduel/PKGBUILD b/extra/kdegames-ksnakeduel/PKGBUILD index e0d39c5a2..101231458 100644 --- a/extra/kdegames-ksnakeduel/PKGBUILD +++ b/extra/kdegames-ksnakeduel/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177717 2013-02-08 08:57:37Z andrea $ +# $Id: PKGBUILD 179421 2013-03-05 15:39:54Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-ksnakeduel -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A simple snake duel game" url="http://kde.org/applications/games/ksnakeduel/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/ksnakeduel-${pkgver}.tar.xz") -sha1sums=('36b5dfd4df30c401fd90b174eee1d1f1910b1818') +sha1sums=('5618d33510ecbc60d759a895d540a2994b143ec6') build() { mkdir build diff --git a/extra/kdegames-kspaceduel/PKGBUILD b/extra/kdegames-kspaceduel/PKGBUILD index e7e0a91ab..c14f77cdb 100644 --- a/extra/kdegames-kspaceduel/PKGBUILD +++ b/extra/kdegames-kspaceduel/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177718 2013-02-08 08:57:40Z andrea $ +# $Id: PKGBUILD 179422 2013-03-05 15:40:07Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kspaceduel -pkgver=4.10.0 +pkgver=4.10.1 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 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kspaceduel-${pkgver}.tar.xz") -sha1sums=('6f0c9700aebfb2f309cc3260493db4b26563e21b') +sha1sums=('0e1c15f2abc95b9801c2d3fb4f3fd0bea1ac467b') build() { mkdir build diff --git a/extra/kdegames-ksquares/PKGBUILD b/extra/kdegames-ksquares/PKGBUILD index 87365659f..cce52ba29 100644 --- a/extra/kdegames-ksquares/PKGBUILD +++ b/extra/kdegames-ksquares/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177719 2013-02-08 08:57:41Z andrea $ +# $Id: PKGBUILD 179423 2013-03-05 15:40:26Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-ksquares -pkgver=4.10.0 +pkgver=4.10.1 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 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/ksquares-${pkgver}.tar.xz") -sha1sums=('1a814d64694e4a435d4c08ccf0c0003e199818f2') +sha1sums=('fde1dcea7e8acac6d872a37076d2eeebb4df0fa5') build() { mkdir build diff --git a/extra/kdegames-ksudoku/PKGBUILD b/extra/kdegames-ksudoku/PKGBUILD index ec3bf0e0e..39bffa857 100644 --- a/extra/kdegames-ksudoku/PKGBUILD +++ b/extra/kdegames-ksudoku/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177720 2013-02-08 08:57:42Z andrea $ +# $Id: PKGBUILD 179424 2013-03-05 15:40:35Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-ksudoku -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A logic-based symbol placement puzzle" url="http://kde.org/applications/games/ksudoku/" @@ -10,10 +10,10 @@ arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegames') depends=('kdebase-runtime' 'libkdegames') -makedepends=('cmake' 'automoc4' 'mesa') +makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/ksudoku-${pkgver}.tar.xz") -sha1sums=('07db527cbfdbaf65da1a7f2d63b51aa8055a94c5') +sha1sums=('7243c63fd117708cbcc53fc745f2a270414d4284') build() { mkdir build diff --git a/extra/kdegames-ktuberling/PKGBUILD b/extra/kdegames-ktuberling/PKGBUILD index c5e645310..c58d849e4 100644 --- a/extra/kdegames-ktuberling/PKGBUILD +++ b/extra/kdegames-ktuberling/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177721 2013-02-08 08:57:44Z andrea $ +# $Id: PKGBUILD 179425 2013-03-05 15:40:47Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-ktuberling -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A simple constructor game suitable for children and adults alike" url="http://kde.org/applications/games/ktuberling/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/ktuberling-${pkgver}.tar.xz") -sha1sums=('82a14f5c8b4d95b02a7e430ba5340203feecdef8') +sha1sums=('d064789f60fcf7c9bdaa0378e354df438aa6fae7') build() { mkdir build diff --git a/extra/kdegames-kubrick/PKGBUILD b/extra/kdegames-kubrick/PKGBUILD index 483eb1950..46fcc1fb9 100644 --- a/extra/kdegames-kubrick/PKGBUILD +++ b/extra/kdegames-kubrick/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177722 2013-02-08 08:57:45Z andrea $ +# $Id: PKGBUILD 179426 2013-03-05 15:41:02Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-kubrick -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Based on the famous Rubik's Cube" url="http://kde.org/applications/games/kubrick/" @@ -10,10 +10,10 @@ arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegames') depends=('kdebase-runtime' 'libkdegames') -makedepends=('cmake' 'automoc4' 'mesa') +makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kubrick-${pkgver}.tar.xz") -sha1sums=('a8011960b054f6dbf43906836894b5c4a9bca3b3') +sha1sums=('af7031e077f4d8b03f0d58a5386751eae92f1e13') build() { mkdir build diff --git a/extra/kdegames-lskat/PKGBUILD b/extra/kdegames-lskat/PKGBUILD index 8e4bcef1c..e5ed6dcfe 100644 --- a/extra/kdegames-lskat/PKGBUILD +++ b/extra/kdegames-lskat/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177723 2013-02-08 08:57:47Z andrea $ +# $Id: PKGBUILD 179427 2013-03-05 15:41:14Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-lskat -pkgver=4.10.0 +pkgver=4.10.1 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 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/lskat-${pkgver}.tar.xz") -sha1sums=('0e8a52cd04be1debb31d80b095cb76afcd5ceb78') +sha1sums=('9ce87f66fd64723add9dd7f212f31928b6995f8b') build() { mkdir build diff --git a/extra/kdegames-palapeli/PKGBUILD b/extra/kdegames-palapeli/PKGBUILD index 23381dd90..7e5b2444b 100644 --- a/extra/kdegames-palapeli/PKGBUILD +++ b/extra/kdegames-palapeli/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177724 2013-02-08 08:57:48Z andrea $ +# $Id: PKGBUILD 179428 2013-03-05 15:41:27Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-palapeli -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A single-player jigsaw puzzle game" url="http://kde.org/applications/games/palapeli/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdegames') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/palapeli-${pkgver}.tar.xz") -sha1sums=('da5a7b197e6a641c4882d15e85923303e2646567') +sha1sums=('af3c325b8fbdc1521d1de56a5e2e60b7654e522d') build() { mkdir build diff --git a/extra/kdegames-picmi/PKGBUILD b/extra/kdegames-picmi/PKGBUILD index d7f1cc9e6..601190a1c 100644 --- a/extra/kdegames-picmi/PKGBUILD +++ b/extra/kdegames-picmi/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177725 2013-02-08 08:57:49Z andrea $ +# $Id: PKGBUILD 179429 2013-03-05 15:41:39Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegames-picmi -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A nonogram logic game for KDE" url="http://kde.org/applications/games/picmi/" @@ -15,7 +15,7 @@ replaces=('picmi') conflicts=('picmi') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/picmi-${pkgver}.tar.xz") -sha1sums=('fddda723e0168ec52e05e7e4791164f4c5b7eb6c') +sha1sums=('773d56c754a8e50930392acf65683f22bab31d93') build() { mkdir build diff --git a/extra/kdegraphics-gwenview/PKGBUILD b/extra/kdegraphics-gwenview/PKGBUILD index 56f035f14..42bf1e7da 100644 --- a/extra/kdegraphics-gwenview/PKGBUILD +++ b/extra/kdegraphics-gwenview/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177726 2013-02-08 08:57:51Z andrea $ +# $Id: PKGBUILD 179430 2013-03-05 15:41:50Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-gwenview -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A fast and easy to use image viewer for KDE" url="http://kde.org/applications/graphics/gwenview/" @@ -14,7 +14,7 @@ makedepends=('cmake' 'automoc4' 'mesa') optdepends=('kipi-plugins: extra plugins to share photos') install=$pkgname.install source=("http://download.kde.org/stable/${pkgver}/src/gwenview-${pkgver}.tar.xz") -sha1sums=('bdd429ead26780a27fd4b0b1132ad1f82ffc153e') +sha1sums=('9188b4f0686c27a830d74ab0da4a0834eb6180c5') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-kamera/PKGBUILD b/extra/kdegraphics-kamera/PKGBUILD index f2fa3fbad..f16d8291a 100644 --- a/extra/kdegraphics-kamera/PKGBUILD +++ b/extra/kdegraphics-kamera/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177727 2013-02-08 08:57:52Z andrea $ +# $Id: PKGBUILD 179431 2013-03-05 15:42:00Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kamera -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Configure Kamera" url="http://kde.org/applications/graphics/kamera/" @@ -12,7 +12,7 @@ groups=('kde' 'kdegraphics') depends=('kdebase-runtime' 'libgphoto2') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/kamera-${pkgver}.tar.xz") -sha1sums=('70f1f2d3497ad7f14aff53a26a842e2ce11279de') +sha1sums=('44af42e3a52392ea9ebe38d7401ab0b6fe5d66fd') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-kcolorchooser/PKGBUILD b/extra/kdegraphics-kcolorchooser/PKGBUILD index 6d1b4e65f..3f38e7947 100644 --- a/extra/kdegraphics-kcolorchooser/PKGBUILD +++ b/extra/kdegraphics-kcolorchooser/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177728 2013-02-08 08:57:54Z andrea $ +# $Id: PKGBUILD 179432 2013-03-05 15:42:10Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kcolorchooser -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Color Chooser" url="http://kde.org/applications/graphics/kcolorchooser/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kcolorchooser-${pkgver}.tar.xz") -sha1sums=('ccfdcae91def40db6bd03662dda1cd5e38fcf4f7') +sha1sums=('b56644dcb064acb925c7c920389d4bbd5557092e') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-kgamma/PKGBUILD b/extra/kdegraphics-kgamma/PKGBUILD index 42ce19143..21432d5d6 100644 --- a/extra/kdegraphics-kgamma/PKGBUILD +++ b/extra/kdegraphics-kgamma/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177729 2013-02-08 08:57:56Z andrea $ +# $Id: PKGBUILD 179433 2013-03-05 15:42:24Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kgamma -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A monitor calibration tool" url="http://kde.org/applications/graphics/kgamma/" @@ -15,7 +15,7 @@ groups=('kde' 'kdegraphics') depends=('kdebase-runtime' 'libxxf86vm') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/kgamma-${pkgver}.tar.xz") -sha1sums=('203b06bbbfebfa559808ff7652fa4b0ecd69e914') +sha1sums=('d26b0c7c53073b85922f1c913582487cb6403f70') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-kolourpaint/PKGBUILD b/extra/kdegraphics-kolourpaint/PKGBUILD index 046c0043d..c5c01e49c 100644 --- a/extra/kdegraphics-kolourpaint/PKGBUILD +++ b/extra/kdegraphics-kolourpaint/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177730 2013-02-08 08:57:58Z andrea $ +# $Id: PKGBUILD 179434 2013-03-05 15:42:37Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kolourpaint -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Paint Program" url="http://kde.org/applications/graphics/kolourpaint/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'qimageblitz') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kolourpaint-${pkgver}.tar.xz") -sha1sums=('0204f884a8047eb57cb8dc212438d6faf9e9802b') +sha1sums=('c5ec3acfc640496b3740393029b9f5088c4ba6ac') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-kruler/PKGBUILD b/extra/kdegraphics-kruler/PKGBUILD index 08f84b86f..bb3f0546f 100644 --- a/extra/kdegraphics-kruler/PKGBUILD +++ b/extra/kdegraphics-kruler/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177731 2013-02-08 08:57:59Z andrea $ +# $Id: PKGBUILD 179435 2013-03-05 15:42:48Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kruler -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Screen Ruler" url="http://kde.org/applications/graphics/kruler/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kruler-${pkgver}.tar.xz") -sha1sums=('16e2de9bf6af8c8c43317deec6f35a1e19b0e9ad') +sha1sums=('a459e941ce302bb034df3ac349edfc88ab25ab38') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-ksaneplugin/PKGBUILD b/extra/kdegraphics-ksaneplugin/PKGBUILD index df4fe01b4..84172921c 100644 --- a/extra/kdegraphics-ksaneplugin/PKGBUILD +++ b/extra/kdegraphics-ksaneplugin/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177732 2013-02-08 08:58:00Z andrea $ +# $Id: PKGBUILD 179436 2013-03-05 15:42:56Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-ksaneplugin -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A scan plugin that implements the scanning" url="https://projects.kde.org/projects/kde/kdegraphics/ksaneplugin" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/ksaneplugin-${pkgver}.tar.xz") -sha1sums=('4bed9373e93333365ee250cd3a6553085fb90723') +sha1sums=('a17770a03d7e796060d61d52596c5503eaa3309f') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-ksnapshot/PKGBUILD b/extra/kdegraphics-ksnapshot/PKGBUILD index a8bc5b8dc..59d38db4f 100644 --- a/extra/kdegraphics-ksnapshot/PKGBUILD +++ b/extra/kdegraphics-ksnapshot/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177733 2013-02-08 08:58:02Z andrea $ +# $Id: PKGBUILD 179437 2013-03-05 15:43:07Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-ksnapshot -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Screen Capture Program" url="http://kde.org/applications/graphics/ksnapshot/" @@ -14,7 +14,7 @@ makedepends=('cmake' 'automoc4') optdepends=('kipi-plugins') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/ksnapshot-${pkgver}.tar.xz") -sha1sums=('c2e091d8bfccf2b1594453115e7068b6a3cb6c3e') +sha1sums=('6b4568fa7e40a1131f118544c3d1b0ffbfb78f99') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-mobipocket/PKGBUILD b/extra/kdegraphics-mobipocket/PKGBUILD index 1f62c4ebb..e04154099 100644 --- a/extra/kdegraphics-mobipocket/PKGBUILD +++ b/extra/kdegraphics-mobipocket/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177734 2013-02-08 08:58:03Z andrea $ +# $Id: PKGBUILD 179438 2013-03-05 15:43:20Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-mobipocket -pkgver=4.10.0 +pkgver=4.10.1 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 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('a4e0e9519d0af2a38e96560f7023c36d1a1169ea') +sha1sums=('5a718abd46648b89f66d5d1294ee0aaa4d9380df') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-okular/PKGBUILD b/extra/kdegraphics-okular/PKGBUILD index a7e27b05c..269476e19 100644 --- a/extra/kdegraphics-okular/PKGBUILD +++ b/extra/kdegraphics-okular/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177633 2013-02-08 08:55:52Z andrea $ +# $Id: PKGBUILD 179334 2013-03-05 15:22:22Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-okular -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc='Document Viewer' arch=('i686' 'x86_64') @@ -15,7 +15,7 @@ makedepends=('cmake' 'automoc4') optdepends=('kdegraphics-mobipocket: mobipocket support') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/okular-${pkgver}.tar.xz") -sha1sums=('f91cca852cf8c2cc57b8fe5b2d66653efdb8d079') +sha1sums=('012f549172a319b0492bea12940fe0150abf7770') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-strigi-analyzer/PKGBUILD b/extra/kdegraphics-strigi-analyzer/PKGBUILD index b921fb1b9..a45542d83 100644 --- a/extra/kdegraphics-strigi-analyzer/PKGBUILD +++ b/extra/kdegraphics-strigi-analyzer/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177735 2013-02-08 08:58:05Z andrea $ +# $Id: PKGBUILD 179439 2013-03-05 15:43:34Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-strigi-analyzer -pkgver=4.10.0 +pkgver=4.10.1 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 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('b83e278a1ceae6f75f9be20214c04fb0d3fb2bd0') +sha1sums=('446f45ece21f2d7a419858fad57e2b3c9426c8fa') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-svgpart/PKGBUILD b/extra/kdegraphics-svgpart/PKGBUILD index 3ad387288..ff7919828 100644 --- a/extra/kdegraphics-svgpart/PKGBUILD +++ b/extra/kdegraphics-svgpart/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177736 2013-02-08 08:58:07Z andrea $ +# $Id: PKGBUILD 179440 2013-03-05 15:43:46Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-svgpart -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A KPart for viewing SVGs" url="https://projects.kde.org/projects/kde/kdegraphics/svgpart" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/svgpart-${pkgver}.tar.xz") -sha1sums=('4354f205246a14c457bf4ea11eed8a163da09915') +sha1sums=('0a4758bf8cc717fc21d69a68623bf8360b87d014') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-thumbnailers/PKGBUILD b/extra/kdegraphics-thumbnailers/PKGBUILD index 652159d25..706883b54 100644 --- a/extra/kdegraphics-thumbnailers/PKGBUILD +++ b/extra/kdegraphics-thumbnailers/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177737 2013-02-08 08:58:08Z andrea $ +# $Id: PKGBUILD 179441 2013-03-05 15:43:55Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-thumbnailers -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Thumbnailers for various graphics file formats" url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-thumbnailers" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('6bce25bfdff1376b79c8024ac1ed87acf33235df') +sha1sums=('3c3ac956390d86ad1f4764cc7abea588f2a36268') build() { cd "${srcdir}" diff --git a/extra/kdemultimedia-audiocd-kio/PKGBUILD b/extra/kdemultimedia-audiocd-kio/PKGBUILD index f7ad9b85f..b5e0ce83d 100644 --- a/extra/kdemultimedia-audiocd-kio/PKGBUILD +++ b/extra/kdemultimedia-audiocd-kio/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177738 2013-02-08 08:58:10Z andrea $ +# $Id: PKGBUILD 179442 2013-03-05 15:44:05Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-audiocd-kio -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Kioslave for accessing audio CDs" url='https://projects.kde.org/projects/kde/kdemultimedia/audiocd-kio' @@ -14,7 +14,7 @@ groups=('kde' 'kdemultimedia') replaces=('kdemultimedia-kioslave') conflicts=('kdemultimedia-kioslave') source=("http://download.kde.org/stable/${pkgver}/src/audiocd-kio-${pkgver}.tar.xz") -sha1sums=('eac83c813e4176ee4e7ea967aa640f2f9b727b98') +sha1sums=('ecd53bc04dfd2be4ec0e0751859c57813e374bb8') build() { cd "${srcdir}" diff --git a/extra/kdemultimedia-dragonplayer/PKGBUILD b/extra/kdemultimedia-dragonplayer/PKGBUILD index 438b191b5..6c3f56ea1 100644 --- a/extra/kdemultimedia-dragonplayer/PKGBUILD +++ b/extra/kdemultimedia-dragonplayer/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177739 2013-02-08 08:58:13Z andrea $ +# $Id: PKGBUILD 179443 2013-03-05 15:44:18Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-dragonplayer -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A multimedia player where the focus is on simplicity, instead of features" @@ -14,7 +14,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install="${pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/dragon-${pkgver}.tar.xz") -sha1sums=('15052cadb7614ec6396cbfe36a2cd710f4ac6ace') +sha1sums=('6bc3756bd803a238e4e6bcd6eb74d575230383c0') build() { cd "${srcdir}" diff --git a/extra/kdemultimedia-ffmpegthumbs/PKGBUILD b/extra/kdemultimedia-ffmpegthumbs/PKGBUILD index e3669aecd..accb563cb 100644 --- a/extra/kdemultimedia-ffmpegthumbs/PKGBUILD +++ b/extra/kdemultimedia-ffmpegthumbs/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 178133 2013-02-16 22:48:52Z ioni $ +# $Id: PKGBUILD 179477 2013-03-05 16:09:17Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-ffmpegthumbs -pkgver=4.10.0 -pkgrel=2 +pkgver=4.10.1 +pkgrel=1 pkgdesc='FFmpeg-based thumbnail creator for video files' url='https://projects.kde.org/projects/kde/kdemultimedia/ffmpegthumbs' arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ groups=('kde' 'kdemultimedia') depends=('kdelibs' 'ffmpeg') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/ffmpegthumbs-${pkgver}.tar.xz") -sha1sums=('7ce2edec3efd081bb65f58455c7db476e09d8bd0') +sha1sums=('8848219c9532186e443ea2e9bf4dc92137f2c0a2') build() { cd "${srcdir}" diff --git a/extra/kdemultimedia-juk/PKGBUILD b/extra/kdemultimedia-juk/PKGBUILD index b2e00d59e..f02d104ab 100644 --- a/extra/kdemultimedia-juk/PKGBUILD +++ b/extra/kdemultimedia-juk/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177741 2013-02-08 08:58:16Z andrea $ +# $Id: PKGBUILD 179444 2013-03-05 15:44:43Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-juk -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc='A jukebox, tagger and music collection manager' url='http://kde.org/applications/multimedia/juk/' @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'taglib') makedepends=('cmake' 'automoc4') install="${pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/juk-${pkgver}.tar.xz") -sha1sums=('6282aab725db4165ec93e48db8c1f0efd7df0add') +sha1sums=('891ead850878f1044d351b051af49baa201fb551') build() { cd "${srcdir}" diff --git a/extra/kdemultimedia-kmix/PKGBUILD b/extra/kdemultimedia-kmix/PKGBUILD index 173b7a8b7..a25a05a3d 100644 --- a/extra/kdemultimedia-kmix/PKGBUILD +++ b/extra/kdemultimedia-kmix/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177742 2013-02-08 08:58:18Z andrea $ +# $Id: PKGBUILD 179445 2013-03-05 15:44:51Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-kmix -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="KDE volume control program" url='http://kde.org/applications/multimedia/kmix/' @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install="${pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/kmix-${pkgver}.tar.xz") -sha1sums=('ac67042a7411aea76a35c0ea07603fa1e3242c5a') +sha1sums=('ea3a25df28e86a4f06cf86f1ab2220de8bd0823b') build() { cd "${srcdir}" diff --git a/extra/kdemultimedia-kscd/PKGBUILD b/extra/kdemultimedia-kscd/PKGBUILD index 388344e37..82f4c1f04 100644 --- a/extra/kdemultimedia-kscd/PKGBUILD +++ b/extra/kdemultimedia-kscd/PKGBUILD @@ -1,22 +1,21 @@ -# $Id: PKGBUILD 177743 2013-02-08 08:58:19Z andrea $ +# $Id: PKGBUILD 179520 2013-03-05 19:55:03Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-kscd -pkgver=4.10.0 -pkgrel=1 +pkgver=4.10.1 +pkgrel=2 pkgdesc="KDE CD player" url='http://kde.org/applications/multimedia/kscd/' arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdemultimedia') -depends=('kdebase-runtime' 'libkcddb' 'libkcompactdisc' 'libmusicbrainz3') +depends=('kdebase-runtime' 'libmusicbrainz3') makedepends=('cmake' 'automoc4') install="${pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/kscd-${pkgver}.tar.xz") -sha1sums=('8648888c571382b4473f9fd9f9d376db14c16bc6') +sha1sums=('636a4324c8305a40ebdaf41bcbbc0b2c714951b4') build() { - cd "${srcdir}" mkdir build cd build cmake ../kscd-${pkgver} \ @@ -27,6 +26,6 @@ build() { } package() { - cd "${srcdir}"/build + cd build make DESTDIR="${pkgdir}" install } diff --git a/extra/kdemultimedia-mplayerthumbs/PKGBUILD b/extra/kdemultimedia-mplayerthumbs/PKGBUILD index f19be38cb..3def3b796 100644 --- a/extra/kdemultimedia-mplayerthumbs/PKGBUILD +++ b/extra/kdemultimedia-mplayerthumbs/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177744 2013-02-08 08:58:22Z andrea $ +# $Id: PKGBUILD 179447 2013-03-05 15:45:18Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-mplayerthumbs -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="MPlayer based thumbnail generator for video files" url='https://projects.kde.org/projects/kde/kdemultimedia/mplayerthumbs' @@ -12,7 +12,7 @@ license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime' 'mplayer') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/mplayerthumbs-${pkgver}.tar.xz") -sha1sums=('baf779c57ca342cced59bd88d17d48782ab0f212') +sha1sums=('b4e234425589acd0fed4dbf800f2489de14a3cd6') build() { cd "${srcdir}" diff --git a/extra/kdenetwork/PKGBUILD b/extra/kdenetwork/PKGBUILD index 82612a0e8..1f3b43cb3 100644 --- a/extra/kdenetwork/PKGBUILD +++ b/extra/kdenetwork/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 177745 2013-02-08 08:58:24Z andrea $ +# $Id: PKGBUILD 179448 2013-03-05 15:45:39Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -10,7 +10,7 @@ pkgname=('kdenetwork-filesharing' 'kdenetwork-kppp' 'kdenetwork-krdc' 'kdenetwork-krfb') -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -22,7 +22,7 @@ makedepends=('cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr3' 'ppp' 'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz" 'use-libotr3.patch') -sha1sums=('974bd9aea71a583563667e7cdc4749fe9d5bd82e' +sha1sums=('3d54276d1b3808896640d8a28db2c354ef268953' '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384') build() { diff --git a/extra/kdepim-runtime/PKGBUILD b/extra/kdepim-runtime/PKGBUILD index c29741273..421fa7d8d 100644 --- a/extra/kdepim-runtime/PKGBUILD +++ b/extra/kdepim-runtime/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 177630 2013-02-08 08:55:49Z andrea $ +# $Id: PKGBUILD 179331 2013-03-05 15:21:51Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdepim-runtime -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc='Extends the functionality of kdepim' arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkgapi' 'libkolab') makedepends=('cmake' 'automoc4' 'boost') install="${pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('6cfa320c03dce508d9982767c9718c98606f301f') +sha1sums=('d59c3a61328e4620659886018ba6cffaa3ecf348') build() { mkdir build diff --git a/extra/kdepim/PKGBUILD b/extra/kdepim/PKGBUILD index 949f9fb79..5ddd4f576 100644 --- a/extra/kdepim/PKGBUILD +++ b/extra/kdepim/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 177746 2013-02-08 08:58:25Z andrea $ +# $Id: PKGBUILD 179449 2013-03-05 15:46:04Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -20,7 +20,7 @@ pkgname=('kdepim-akonadiconsole' 'kdepim-ktimetracker' 'kdepim-ktnef' 'kdepim-libkdepim') -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') url='http://pim.kde.org' @@ -28,16 +28,10 @@ license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdepim') makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'libxss' 'pilot-link' 'kde-agent' 'nepomuk-widgets') -source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz" - 'boost152.patch') -sha1sums=('6074fcea53b10c3660c5cc9a00b65e777840fdc4' - '652de82dcc1c45de3123898ba46e1962bb0ed6d4') +source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") +sha1sums=('9d1102ec9ea7ee7b8ddc70011231f173ceb2e5c1') build() { - cd ${pkgbase}-${pkgver} - patch -p1 -i "${srcdir}"/boost152.patch - cd ../ - mkdir build cd build cmake ../${pkgbase}-${pkgver} \ diff --git a/extra/kdepim/boost152.patch b/extra/kdepim/boost152.patch deleted file mode 100644 index c82b092f1..000000000 --- a/extra/kdepim/boost152.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- kdepim-4.10.0/kleopatra/models/keylistmodel.cpp~ 2013-01-31 09:40:34.270651208 +0000 -+++ kdepim-4.10.0/kleopatra/models/keylistmodel.cpp 2013-01-31 09:41:26.570259714 +0000 -@@ -60,9 +60,9 @@ - #ifdef _WIN32_WCE - #define BOOST_ALL_NO_LIB - #endif --#include <boost/graph/adjacency_list.hpp> - - #ifndef Q_MOC_RUN // QTBUG-22829 -+#include <boost/graph/adjacency_list.hpp> - #include <boost/graph/topological_sort.hpp> - #endif - diff --git a/extra/kdepimlibs/PKGBUILD b/extra/kdepimlibs/PKGBUILD index 891c13e04..dbebfc30d 100644 --- a/extra/kdepimlibs/PKGBUILD +++ b/extra/kdepimlibs/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 177626 2013-02-08 08:55:46Z andrea $ +# $Id: PKGBUILD 179327 2013-03-05 15:20:39Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdepimlibs -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="KDE PIM Libraries" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('nepomuk-core' 'gpgme' 'akonadi' 'libical' 'prison' 'qjson') makedepends=('cmake' 'automoc4' 'boost' 'cyrus-sasl') install='kdepimlibs.install' source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('cf51d06ffd49de44312d5fae52b6fb7fb044459f') +sha1sums=('51d51263b0c8cca2043d73bcbb524c21ad224fb0') build() { mkdir build diff --git a/extra/kdeplasma-addons/PKGBUILD b/extra/kdeplasma-addons/PKGBUILD index 3484c8bf6..3f35168eb 100644 --- a/extra/kdeplasma-addons/PKGBUILD +++ b/extra/kdeplasma-addons/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 177747 2013-02-08 08:58:28Z andrea $ +# $Id: PKGBUILD 179450 2013-03-05 15:46:23Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -77,7 +77,7 @@ pkgname=('kdeplasma-addons-applets-bball' 'kdeplasma-addons-wallpapers-qmlwallpapers' 'kdeplasma-addons-wallpapers-virus' 'kdeplasma-addons-wallpapers-weather') -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -86,7 +86,7 @@ groups=('kde' 'kdeplasma-addons') makedepends=('cmake' 'automoc4' 'kdebase-workspace' 'kdeedu-marble' 'eigen' 'scim' 'qwt' 'boost' 'libkexiv2' 'ibus' 'qoauth' 'mesa') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('665e7126813c9a900e6c6d5f379175f98969d7a8') +sha1sums=('2769a75f1551f917f677bef5e1ec2710b934b5ff') build() { mkdir build diff --git a/extra/kdesdk-kate/PKGBUILD b/extra/kdesdk-kate/PKGBUILD index f3c7cc0e0..f839d46b8 100644 --- a/extra/kdesdk-kate/PKGBUILD +++ b/extra/kdesdk-kate/PKGBUILD @@ -1,27 +1,23 @@ -# $Id: PKGBUILD 177932 2013-02-11 17:58:22Z andrea $ +# $Id: PKGBUILD 179336 2013-03-05 15:22:52Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgbase=kdesdk-kate pkgname=('kdebase-katepart' 'kdebase-kwrite' 'kdesdk-kate') -pkgver=4.10.0 -pkgrel=2 +pkgver=4.10.1 +pkgrel=1 arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') makedepends=('kdelibs ''cmake' 'automoc4' 'kdebindings-python') source=("http://download.kde.org/stable/${pkgver}/src/kate-${pkgver}.tar.xz" - 'pkgbuild-syntax-highlight.patch' - 'fix-highlight-selection.patch') -sha1sums=('9754f1acd55278d529c4e7a5a778b5cec51e73b9' - 'dc70306c507083cf9b4bb1c536858742292fa1bf' - '46a09159747a76f348ab66a5c88dfeb596a1cbdd') + 'pkgbuild-syntax-highlight.patch') +sha1sums=('35f93d992cccf8ef7fc1bb59f11cdee6015484ef' + 'dc70306c507083cf9b4bb1c536858742292fa1bf') build() { cd kate-${pkgver} patch -p1 -i "${srcdir}"/pkgbuild-syntax-highlight.patch - # KDEBUG#314530 - patch -p1 -i "${srcdir}"/fix-highlight-selection.patch cd ../ mkdir build diff --git a/extra/kdesdk/PKGBUILD b/extra/kdesdk/PKGBUILD index 262ba43ef..025956b03 100644 --- a/extra/kdesdk/PKGBUILD +++ b/extra/kdesdk/PKGBUILD @@ -1,27 +1,23 @@ -# $Id: PKGBUILD 178963 2013-03-01 10:21:15Z andrea $ +# $Id: PKGBUILD 179478 2013-03-05 16:12:26Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgbase=kdesdk pkgname=('kdesdk-cervisia' 'kdesdk-dolphin-plugins' + 'kdesdk-dev-utils' + 'kdesdk-dev-scripts' 'kdesdk-kapptemplate' 'kdesdk-kcachegrind' - 'kdesdk-kioslave' - 'kdesdk-kmtrace' + 'kdesdk-kioslaves' 'kdesdk-kompare' - 'kdesdk-kpartloader' - 'kdesdk-kprofilemethod' - 'kdesdk-kstartperf' - 'kdesdk-kuiviewer' 'kdesdk-lokalize' 'kdesdk-okteta' 'kdesdk-poxml' - 'kdesdk-scripts' - 'kdesdk-strigi-analyzer' + 'kdesdk-strigi-analyzers' 'kdesdk-umbrello') -pkgver=4.10.0 -pkgrel=2 +pkgver=4.10.1 +pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') @@ -30,8 +26,8 @@ makedepends=('cmake' 'automoc4' 'boost' 'subversion' 'antlr2' 'kdepimlibs' 'kdebase-lib') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz" 'fix-python2-path.patch') -sha1sums=('e4aaaf5357ecb3dfc87014abb01af807731557df' - '923cabd7a877cf9a68efeb24fbf3d5827e1d949e') +sha1sums=('14a4ceb5ce4690230f365fc01159f4f46c73da9a' + '07db42bbcae402c292eebf002e549b04162621c5') build() { cd ${srcdir}/${pkgbase}-${pkgver} @@ -56,22 +52,32 @@ package_kdesdk-cervisia() { install='kdesdk-cervisia.install' cd $srcdir/build/cervisia make DESTDIR=$pkgdir install - cd $srcdir/build/doc/cervisia - make DESTDIR=$pkgdir install +} + +package_kdesdk-dev-utils() { + pkgdesc='Small utilities for developers using KDE/Qt libs/frameworks' + url="https://projects.kde.org/projects/kde/kdesdk/kde-dev-utils" + depends=('kdebase-runtime') + conflicts=('kdesdk-kmtrace' 'kdesdk-kpartloader' 'kdesdk-kprofilemethod' + 'kdesdk-kstartperf' 'kdesdk-kuiviewer') + replaces=('kdesdk-kmtrace' 'kdesdk-kpartloader' 'kdesdk-kprofilemethod' + 'kdesdk-kstartperf' 'kdesdk-kuiviewer') + install='kdesdk-dev-utils.install' + cd $srcdir/build/kde-dev-utils + make DESTDIR=$pkgdir install } package_kdesdk-dolphin-plugins() { pkgdesc='Extra Dolphin plugins' + url="https://projects.kde.org/projects/kde/kdesdk/dolphin-plugins" depends=('kdebase-dolphin') optdepends=('bzr: bazaar support' 'git: git support' 'mercurial: hg support' 'subversion: svn support') install='kdesdk.install' - for i in bazaar git hg svn; do - cd $srcdir/build/dolphin-plugins/$i - make DESTDIR=$pkgdir install - done + cd $srcdir/build/dolphin-plugins + make DESTDIR=$pkgdir install } package_kdesdk-kapptemplate() { @@ -81,8 +87,6 @@ package_kdesdk-kapptemplate() { install='kdesdk.install' cd $srcdir/build/kapptemplate make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kapptemplate - make DESTDIR=$pkgdir install } package_kdesdk-kcachegrind() { @@ -93,28 +97,20 @@ package_kdesdk-kcachegrind() { install='kdesdk-kcachegrind.install' cd $srcdir/build/kcachegrind make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kcachegrind - make DESTDIR=$pkgdir install - # Fix python 2 path - sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \ - "${pkgdir}"/usr/bin/hotshot2calltree + # Fix python 2 path + sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \ + "${pkgdir}"/usr/bin/hotshot2calltree } -package_kdesdk-kioslave() { - pkgdesc='KDED Subversion Module' +package_kdesdk-kioslaves() { + pkgdesc='KIO-Slaves' + url="https://projects.kde.org/projects/kde/kdesdk/kdesdk-kioslaves" depends=('kdebase-runtime' 'subversion') - install='kdesdk.install' - cd $srcdir/build/kioslave - make DESTDIR=$pkgdir install -} - -package_kdesdk-kmtrace() { - pkgdesc='A KDE tool to assist with malloc debugging using glibc´s "mtrace" functionality' - depends=('kdebase-runtime') - cd $srcdir/build/kmtrace - make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kmtrace + install='kdesdk.install' + replaces=('kdesdk-kioslave') + conflicts=('kdesdk-kioslave') + cd $srcdir/build/kdesdk-kioslaves make DESTDIR=$pkgdir install } @@ -125,61 +121,20 @@ package_kdesdk-kompare() { install='kdesdk-kompare.install' cd $srcdir/build/kompare make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kompare - make DESTDIR=$pkgdir install -} - -package_kdesdk-kpartloader() { - pkgdesc='A test application for KParts' - depends=('kdebase-runtime') - install='kdesdk.install' - cd $srcdir/build/kpartloader - make DESTDIR=$pkgdir install -} - -package_kdesdk-kprofilemethod() { - pkgdesc='Macros helping to profile' - cd $srcdir/build/kprofilemethod - make DESTDIR=$pkgdir install -} - -package_kdesdk-kspy() { - pkgdesc='An Object Inspector for Qt/KDE applications' - depends=('kdebase-runtime') - cd $srcdir/build/kspy - make DESTDIR=$pkgdir install -} - -package_kdesdk-kstartperf() { - pkgdesc='Startup time measurement tool for KDE applications' - depends=('kdebase-runtime') - cd $srcdir/build/kstartperf - make DESTDIR=$pkgdir install -} - -package_kdesdk-kuiviewer() { - pkgdesc='Qt Designer UI File Viewer' - depends=('kdebase-runtime') - url="http://kde.org/applications/development/kuiviewer/" - install='kdesdk-kuiviewer.install' - cd $srcdir/build/kuiviewer - make DESTDIR=$pkgdir install } package_kdesdk-lokalize() { pkgdesc='Computer-Aided Translation System' - depends=('kdebase-runtime' 'kdebindings-python2' 'kdesdk-strigi-analyzer') + depends=('kdebase-runtime' 'kdebindings-python2' 'kdesdk-strigi-analyzers') url="http://kde.org/applications/development/lokalize/" optdepends=('translate-toolkit: enable extra python script') install='kdesdk-lokalize.install' cd $srcdir/build/lokalize make DESTDIR=$pkgdir install - cd $srcdir/build/doc/lokalize - make DESTDIR=$pkgdir install - # Fix python 2 path - sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \ - "${pkgdir}"/usr/share/apps/lokalize/scripts/odf/xliffmerge.py + # Fix python 2 path + sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \ + "${pkgdir}"/usr/share/apps/lokalize/scripts/odf/xliffmerge.py } package_kdesdk-okteta() { @@ -191,45 +146,39 @@ package_kdesdk-okteta() { install='kdesdk-okteta.install' cd $srcdir/build/okteta make DESTDIR=$pkgdir install - cd $srcdir/build/doc/okteta - make DESTDIR=$pkgdir install } package_kdesdk-poxml() { pkgdesc='Translates DocBook XML files using gettext po files' + url="https://projects.kde.org/projects/kde/kdesdk/poxml" depends=('qt4' 'antlr2') cd $srcdir/build/poxml make DESTDIR=$pkgdir install - cd $srcdir/build/doc/poxml - make DESTDIR=$pkgdir install -} - -package_kdesdk-scheck() { - pkgdesc='An interface style to highlight accel and style guide conflicts' - depends=('kdebase-runtime') - cd $srcdir/build/scheck - make DESTDIR=$pkgdir install } -package_kdesdk-scripts() { - pkgdesc='KDE SDK scripts' +package_kdesdk-dev-scripts() { + pkgdesc='Scripts and setting files useful during development of KDE software' + url="https://projects.kde.org/projects/kde/kdesdk/kde-dev-scripts" depends=('python2') - cd $srcdir/build/scripts - make DESTDIR=$pkgdir install - cd $srcdir/build/doc/scripts + replaces=('kdesdk-scripts') + conflicts=('kdesdk-scripts') + cd $srcdir/build/kde-dev-scripts make DESTDIR=$pkgdir install - # Fix python 2 path - sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \ - "${pkgdir}"/usr/bin/{zonetab2pot,kde-systemsettings-tree}.py - sed -i 's|#! /usr/bin/env python|#!/usr/bin/env python2|' \ - "${pkgdir}"/usr/bin/{kdelnk2desktop.py,kde_generate_export_header} + # Fix python 2 path + sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \ + "${pkgdir}"/usr/bin/{zonetab2pot,kde-systemsettings-tree}.py + sed -i 's|#! /usr/bin/env python|#!/usr/bin/env python2|' \ + "${pkgdir}"/usr/bin/{kdelnk2desktop.py,kde_generate_export_header} } -package_kdesdk-strigi-analyzer() { - pkgdesc='Strigi-Analyzer for KDE SDK' +package_kdesdk-strigi-analyzers() { + pkgdesc='Analyzer plugins for strigi' + url="https://projects.kde.org/projects/kde/kdesdk/kdesdk-strigi-analyzers" depends=('kdelibs') - cd $srcdir/build/strigi-analyzer + conflicts=('kdesdk-strigi-analyzer') + replaces=('kdesdk-strigi-analyzer') + cd $srcdir/build/kdesdk-strigi-analyzers make DESTDIR=$pkgdir install } @@ -241,10 +190,8 @@ package_kdesdk-umbrello() { install='kdesdk-umbrello.install' cd $srcdir/build/umbrello make DESTDIR=$pkgdir install - cd $srcdir/build/doc/umbrello - make DESTDIR=$pkgdir install - - # Fix python 2 path - sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \ - "${pkgdir}"/usr/share/apps/umbrello/headings/heading.py + + # Fix python 2 path + sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \ + "${pkgdir}"/usr/share/apps/umbrello/headings/heading.py } diff --git a/extra/kdesdk/fix-python2-path.patch b/extra/kdesdk/fix-python2-path.patch index 720487031..9e9a442c0 100644 --- a/extra/kdesdk/fix-python2-path.patch +++ b/extra/kdesdk/fix-python2-path.patch @@ -20,13 +20,3 @@ try: convert() except: print 'error occured' ---- kdesdk-4.5.80/scripts/svn2log.sh~ 2010-11-24 11:46:24.863333337 +0100 -+++ kdesdk-4.5.80/scripts/svn2log.sh 2010-11-24 11:46:24.896666669 +0100 -@@ -17,6 +17,6 @@ - svn cat svn://anonsvn.kde.org/home/kde/trunk/kde-common/accounts > /tmp/accounts.$PPID - - echo "Creating changelog..."; --svn log -v --xml $1 | python $CURRENT/svn2log.py --users=/tmp/accounts.$PPID --users-charset=UTF8 -+svn log -v --xml $1 | python2 $CURRENT/svn2log.py --users=/tmp/accounts.$PPID --users-charset=UTF8 - - rm /tmp/accounts.$PPID
\ No newline at end of file diff --git a/extra/kdesdk/kdesdk-kuiviewer.install b/extra/kdesdk/kdesdk-dev-utils.install index 5495fb1b5..5495fb1b5 100644 --- a/extra/kdesdk/kdesdk-kuiviewer.install +++ b/extra/kdesdk/kdesdk-dev-utils.install diff --git a/extra/kdetoys/PKGBUILD b/extra/kdetoys/PKGBUILD index 29172e92c..f60ed7878 100644 --- a/extra/kdetoys/PKGBUILD +++ b/extra/kdetoys/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 177749 2013-02-08 08:58:31Z andrea $ +# $Id: PKGBUILD 179451 2013-03-05 15:47:15Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -6,7 +6,7 @@ pkgbase=kdetoys pkgname=('kdetoys-amor' 'kdetoys-kteatime' 'kdetoys-ktux') -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -14,7 +14,7 @@ license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdetoys') makedepends=('cmake' 'automoc4' 'kdebase-workspace') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('bc795b4b5bd4ea3ea362f9684f0236bed172abd1') +sha1sums=('415013b8074a357720f86a0e7367f09769be1f7d') build() { cd $srcdir @@ -34,8 +34,6 @@ package_kdetoys-amor() { install='kdetoys.install' cd $srcdir/build/amor make DESTDIR=$pkgdir install - cd $srcdir/build/doc/amor - make DESTDIR=$pkgdir install } package_kdetoys-kteatime() { @@ -44,8 +42,6 @@ package_kdetoys-kteatime() { install='kdetoys.install' cd $srcdir/build/kteatime make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kteatime - make DESTDIR=$pkgdir install } package_kdetoys-ktux() { diff --git a/extra/kdeutils-filelight/PKGBUILD b/extra/kdeutils-filelight/PKGBUILD index 5eab76789..886be7f9b 100644 --- a/extra/kdeutils-filelight/PKGBUILD +++ b/extra/kdeutils-filelight/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177751 2013-02-08 08:58:34Z andrea $ +# $Id: PKGBUILD 179452 2013-03-05 15:47:32Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-filelight -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc='View disk usage information' url='http://kde.org/applications/utilities/filelight' @@ -15,7 +15,7 @@ replaces=('filelight') conflicts=('filelight') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/filelight-${pkgver}.tar.xz") -sha1sums=('c2cec34c1de2dd3aacbbf88a8b04ff4fcca7de5d') +sha1sums=('b63e195e1735013fd6b327ba03b3cfd391c96d01') build() { cd "${srcdir}" diff --git a/extra/kdeutils-kcalc/PKGBUILD b/extra/kdeutils-kcalc/PKGBUILD index f9b63037c..aade0acd9 100644 --- a/extra/kdeutils-kcalc/PKGBUILD +++ b/extra/kdeutils-kcalc/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177752 2013-02-08 08:58:35Z andrea $ +# $Id: PKGBUILD 179453 2013-03-05 15:47:45Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kcalc -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc='Scientific Calculator' url='http://kde.org/applications/utilities/kcalc/' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kcalc-${pkgver}.tar.xz") -sha1sums=('b898128f942c3890e8fb182d0833cd58d5f036da') +sha1sums=('b4260225e5ab5f500824359b2fc13892b4948604') build() { cd "${srcdir}" diff --git a/extra/kdeutils-kcharselect/PKGBUILD b/extra/kdeutils-kcharselect/PKGBUILD index b0cc84ead..8e2f0f3da 100644 --- a/extra/kdeutils-kcharselect/PKGBUILD +++ b/extra/kdeutils-kcharselect/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177753 2013-02-08 08:58:36Z andrea $ +# $Id: PKGBUILD 179454 2013-03-05 15:47:57Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kcharselect -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc='Character Selector' url="http://kde.org/applications/utilities/kcharselect/" @@ -12,7 +12,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') source=("http://download.kde.org/stable/${pkgver}/src/kcharselect-${pkgver}.tar.xz") -sha1sums=('86e5543dcb2f217ce66d5629daf4e91ec134b0e9') +sha1sums=('6df65069682007f8cbc4946ccc5b6af45c8286a5') build() { cd "${srcdir}" diff --git a/extra/kdeutils-kdf/PKGBUILD b/extra/kdeutils-kdf/PKGBUILD index cb3b0163f..6384c9376 100644 --- a/extra/kdeutils-kdf/PKGBUILD +++ b/extra/kdeutils-kdf/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177754 2013-02-08 08:58:38Z andrea $ +# $Id: PKGBUILD 179455 2013-03-05 15:48:10Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kdf -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 url="http://kde.org/applications/system/kdiskfree/" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kdf-${pkgver}.tar.xz") -sha1sums=('b90e73fb7f17797cedd3b7c1915f1c8a1423eeb2') +sha1sums=('bdb720102fc6c4893362f4f7d69e40ba76a1ea98') build() { cd "${srcdir}" diff --git a/extra/kdeutils-kfloppy/PKGBUILD b/extra/kdeutils-kfloppy/PKGBUILD index c1c829f55..9b7ab1d5c 100644 --- a/extra/kdeutils-kfloppy/PKGBUILD +++ b/extra/kdeutils-kfloppy/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177755 2013-02-08 08:58:39Z andrea $ +# $Id: PKGBUILD 179456 2013-03-05 15:48:20Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kfloppy -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc='Floppy Formatter' url='http://kde.org/applications/utilities/kfloppy/' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kfloppy-${pkgver}.tar.xz") -sha1sums=('5aa1d135c53cf8fa5a9498f48c3e426855336af4') +sha1sums=('00f99f3bbcfc19887618711f0495d8d2bf7116f3') build() { cd "${srcdir}" diff --git a/extra/kdeutils-kgpg/PKGBUILD b/extra/kdeutils-kgpg/PKGBUILD index 5bc923dcb..77d1769fc 100644 --- a/extra/kdeutils-kgpg/PKGBUILD +++ b/extra/kdeutils-kgpg/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177756 2013-02-08 08:58:40Z andrea $ +# $Id: PKGBUILD 179457 2013-03-05 15:48:27Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kgpg -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc='A GnuPG frontend' url='http://kde.org/applications/utilities/kgpg/' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kgpg-${pkgver}.tar.xz") -sha1sums=('aee248358d9ba4aa2676dd7ff910205b37ea92b9') +sha1sums=('2cc0720928f8415ac3177706b5aa2dc50ffa8459') build() { cd "${srcdir}" diff --git a/extra/kdeutils-kremotecontrol/PKGBUILD b/extra/kdeutils-kremotecontrol/PKGBUILD index daa9d03ac..f705b8ec9 100644 --- a/extra/kdeutils-kremotecontrol/PKGBUILD +++ b/extra/kdeutils-kremotecontrol/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kremotecontrol -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc='Configure your remote controls for use with applications' url='http://kde.org/applications/utilities/kremotecontrol/' @@ -15,7 +15,7 @@ replaces=('kdeutils-kdelirc') conflicts=('kdeutils-kdelirc') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kremotecontrol-${pkgver}.tar.xz") -sha1sums=('ceb8c1f4d86e705c469aa82b259d961e43cf4fcb') +sha1sums=('957c5b9a430c69e90b6cf96789187e1654b82023') build() { cd "${srcdir}" diff --git a/extra/kdeutils-ktimer/PKGBUILD b/extra/kdeutils-ktimer/PKGBUILD index eb45b047e..1532f5125 100644 --- a/extra/kdeutils-ktimer/PKGBUILD +++ b/extra/kdeutils-ktimer/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177758 2013-02-08 08:58:43Z andrea $ +# $Id: PKGBUILD 179459 2013-03-05 15:48:54Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-ktimer -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc='Countdown Launcher' url='http://kde.org/applications/utilities/ktimer/' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/ktimer-${pkgver}.tar.xz") -sha1sums=('1d7d9299177cc7c6648fc50d6565ee4b7be1e2d5') +sha1sums=('2182b0dd8983ac6f4b85331d50eb99b888082ab4') build() { cd "${srcdir}" diff --git a/extra/kdeutils-kwallet/PKGBUILD b/extra/kdeutils-kwallet/PKGBUILD index b571493d9..16d22bc1f 100644 --- a/extra/kdeutils-kwallet/PKGBUILD +++ b/extra/kdeutils-kwallet/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177759 2013-02-08 08:58:44Z andrea $ +# $Id: PKGBUILD 179460 2013-03-05 15:49:06Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kwallet -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc='Wallet Management Tool' url='http://kde.org/applications/system/kwalletmanager/' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kwallet-${pkgver}.tar.xz") -sha1sums=('6fcebed46c29f6a39b665fa3877e833dc9a58633') +sha1sums=('142f3f5fd1ec4577e113522634a27c6bfeb921b3') build() { cd "${srcdir}" diff --git a/extra/kdeutils-print-manager/PKGBUILD b/extra/kdeutils-print-manager/PKGBUILD index 29b1620de..81062b675 100644 --- a/extra/kdeutils-print-manager/PKGBUILD +++ b/extra/kdeutils-print-manager/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 177779 2013-02-08 12:51:41Z andrea $ +# $Id: PKGBUILD 179461 2013-03-05 15:49:20Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-print-manager -pkgver=4.10.0 -pkgrel=2 +pkgver=4.10.1 +pkgrel=1 pkgdesc="A tool for managing print jobs and printers" arch=('i686' 'x86_64') url='https://projects.kde.org/projects/kde/kdeutils/print-manager' @@ -15,7 +15,7 @@ replaces=('print-manager' 'kdeutils-printer-applet' 'kdeadmin-system-config-prin conflicts=('print-manager') groups=('kde' 'kdeutils') source=("http://download.kde.org/stable/${pkgver}/src/print-manager-${pkgver}.tar.xz") -sha1sums=('182a514ed62baf1892be6c4b1977260ba365c634') +sha1sums=('f5a509f317774aaac84ac0e803d31e7910bd1afe') build() { mkdir build diff --git a/extra/kdeutils-superkaramba/PKGBUILD b/extra/kdeutils-superkaramba/PKGBUILD index 33dec1e33..36b30513c 100644 --- a/extra/kdeutils-superkaramba/PKGBUILD +++ b/extra/kdeutils-superkaramba/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177761 2013-02-08 08:58:48Z andrea $ +# $Id: PKGBUILD 179462 2013-03-05 15:49:27Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-superkaramba -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc='An engine for cool desktop eyecandy' url='http://kde.org/applications/utilities/superkaramba/' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/superkaramba-${pkgver}.tar.xz") -sha1sums=('a4555c43c0fb30ee876ffa19517e0a74ca7b9bc1') +sha1sums=('c36e56cd72be5ffd92ef7004176dc094b25a6310') build() { cd "${srcdir}" diff --git a/extra/kdeutils-sweeper/PKGBUILD b/extra/kdeutils-sweeper/PKGBUILD index 343501286..ca5cb877a 100644 --- a/extra/kdeutils-sweeper/PKGBUILD +++ b/extra/kdeutils-sweeper/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177762 2013-02-08 08:58:49Z andrea $ +# $Id: PKGBUILD 179463 2013-03-05 15:49:38Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-sweeper -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc='System Cleaner' url='http://kde.org/applications/utilities/sweeper' @@ -12,7 +12,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') source=("http://download.kde.org/stable/${pkgver}/src/sweeper-${pkgver}.tar.xz") -sha1sums=('613c3e5f4c8f1e0a64f4a35ffa58f504d1d4c4b7') +sha1sums=('6276ad9daa4c48ba16fc875ef6cf165f32f06b32') build() { cd "${srcdir}" diff --git a/extra/kdewebdev/PKGBUILD b/extra/kdewebdev/PKGBUILD index 419205d8e..211d0e1f8 100644 --- a/extra/kdewebdev/PKGBUILD +++ b/extra/kdewebdev/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 177763 2013-02-08 08:58:51Z andrea $ +# $Id: PKGBUILD 179464 2013-03-05 15:49:56Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -7,7 +7,7 @@ pkgname=('kdewebdev-kfilereplace' 'kdewebdev-kimagemapeditor' 'kdewebdev-klinkstatus' 'kdewebdev-kommander') -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -15,7 +15,7 @@ license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdewebdev') makedepends=('cmake' 'automoc4' 'ruby' 'tidyhtml' 'kdepimlibs' 'boost') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('0dc717ad88762d0cd68a92683d47a6055d5c2538') +sha1sums=('11fad3d678d0a231a8eff0f48e6e1ef4564ca93a') build() { cd $srcdir diff --git a/extra/libkcddb/PKGBUILD b/extra/libkcddb/PKGBUILD index 06a049fa1..405eb7934 100644 --- a/extra/libkcddb/PKGBUILD +++ b/extra/libkcddb/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177651 2013-02-08 08:56:10Z andrea $ +# $Id: PKGBUILD 179351 2013-03-05 15:26:00Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkcddb -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="KDE CDDB library" url='https://projects.kde.org/projects/kde/kdemultimedia/libkcddb' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdemultimedia-kioslave') conflicts=('kdemultimedia-kioslave') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('44bc8f69f7f98be741b0d0bb618ff9cc3601b4e1') +sha1sums=('510c6adfcb558f23fcba6e427b82ce42819edb42') build() { cd "${srcdir}" diff --git a/extra/libkcompactdisc/PKGBUILD b/extra/libkcompactdisc/PKGBUILD index b3fa56a96..23ce614c1 100644 --- a/extra/libkcompactdisc/PKGBUILD +++ b/extra/libkcompactdisc/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177652 2013-02-08 08:56:11Z andrea $ +# $Id: PKGBUILD 179352 2013-03-05 15:26:13Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkcompactdisc -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A library for interfacing with CDs" url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdemultimedia-kioslave') conflicts=('kdemultimedia-kioslave') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('f59941162f95f1a61415491d4382f366a20a3c8a') +sha1sums=('8d8d878144f49a138617575812900527db6f7208') build() { cd "${srcdir}" diff --git a/extra/libkdcraw/PKGBUILD b/extra/libkdcraw/PKGBUILD index f4b5dc248..1593231e8 100644 --- a/extra/libkdcraw/PKGBUILD +++ b/extra/libkdcraw/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177646 2013-02-08 08:56:06Z andrea $ +# $Id: PKGBUILD 179346 2013-03-05 15:25:06Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkdcraw -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A C++ interface used to decode RAW picture" url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkdcraw" @@ -14,7 +14,7 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('c332fcba9a06f6650cb8ce4652e91af9de3b43bc') +sha1sums=('75d1f52d02137b275b545a5390e1857a580a1128') build() { cd "${srcdir}" diff --git a/extra/libkdeedu/PKGBUILD b/extra/libkdeedu/PKGBUILD index 5f673829d..0c505bc54 100644 --- a/extra/libkdeedu/PKGBUILD +++ b/extra/libkdeedu/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177644 2013-02-08 08:56:04Z andrea $ +# $Id: PKGBUILD 179345 2013-03-05 15:24:44Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkdeedu -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Libraries used by KDE Education applications" url="https://projects.kde.org/projects/kde/kdeedu/libkdeedu" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') install=${pkgname}.install replaces=('kdeedu-libkdeedu' 'kdeedu-data') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('ecee7596db004e74c9b59e5a1d31689b839b3791') +sha1sums=('6d7c39d2d2bc27db646ab0c864ecdca3c86e9c7f') build() { cd "${srcdir}" diff --git a/extra/libkdegames/PKGBUILD b/extra/libkdegames/PKGBUILD index 8b51f7436..d56451d2f 100644 --- a/extra/libkdegames/PKGBUILD +++ b/extra/libkdegames/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177653 2013-02-08 08:56:12Z andrea $ +# $Id: PKGBUILD 179353 2013-03-05 15:26:22Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkdegames -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Common code and data for many KDE games" url="https://projects.kde.org/projects/kde/kdegames/libkdegames" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegames-libkdegames') conflicts=('kdegames-libkdegames') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('6488769e87fe357c8b228c7d4e96ed6726955c9d') +sha1sums=('7f9a120db8bf754d977de5fc6a4ceab8993cd1b5') build() { mkdir build diff --git a/extra/libkexiv2/PKGBUILD b/extra/libkexiv2/PKGBUILD index 04373f8b9..c681cb8dc 100644 --- a/extra/libkexiv2/PKGBUILD +++ b/extra/libkexiv2/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177647 2013-02-08 08:56:07Z andrea $ +# $Id: PKGBUILD 179347 2013-03-05 15:25:18Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkexiv2 -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="A library to manipulate pictures metadata" url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('7a9d00c0a25549bfe28453143ec78965a8aa6a4a') +sha1sums=('1e23a014eed00a5914ba8a0754ab026635b2b9d7') build() { cd "${srcdir}" diff --git a/extra/libkipi/PKGBUILD b/extra/libkipi/PKGBUILD index 2fa4a41a1..61e331b8c 100644 --- a/extra/libkipi/PKGBUILD +++ b/extra/libkipi/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkipi -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="An interface to use kipi-plugins from a KDE application" url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkipi" @@ -14,7 +14,7 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('43cb9159d42f34bd0a96de934a78da5a9ce118b7') +sha1sums=('75a37c09ec2219bf013ddd9070c71873878ded45') build() { cd "${srcdir}" diff --git a/extra/libkmahjongg/PKGBUILD b/extra/libkmahjongg/PKGBUILD index b1d04e85c..bd5bd579f 100644 --- a/extra/libkmahjongg/PKGBUILD +++ b/extra/libkmahjongg/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177654 2013-02-08 08:56:12Z andrea $ +# $Id: PKGBUILD 179354 2013-03-05 15:26:38Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkmahjongg -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Common code, backgrounds and tile sets for games using Mahjongg tiles" url="https://projects.kde.org/projects/kde/kdegames/libmahjongg" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegames-libkmahjongg') conflicts=('kdegames-libkmahjongg') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('594edd2bb1a5f3981a6361db94da84da6b35d818') +sha1sums=('ce743c227bc29e150dc2cc23d79d7911c572ec69') build() { mkdir build diff --git a/extra/libksane/PKGBUILD b/extra/libksane/PKGBUILD index afd46fa21..e5dea2fac 100644 --- a/extra/libksane/PKGBUILD +++ b/extra/libksane/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177649 2013-02-08 08:56:09Z andrea $ +# $Id: PKGBUILD 179349 2013-03-05 15:25:37Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libksane -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="An image scanning library" url="https://projects.kde.org/projects/kde/kdegraphics/libs/libksane" @@ -14,7 +14,7 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('c101b028ef540b14a0041b6433f522f52622c783') +sha1sums=('2fc97612c97dd5517ab09916fc2b1a840d7c0b52') build() { cd "${srcdir}" diff --git a/extra/libmp3splt/PKGBUILD b/extra/libmp3splt/PKGBUILD index e57a3086e..c5a01b5e3 100644 --- a/extra/libmp3splt/PKGBUILD +++ b/extra/libmp3splt/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 166724 2012-09-17 05:18:15Z tpowa $ +# $Id: PKGBUILD 179313 2013-03-05 11:12:56Z tpowa $ # Maintainer: Tobias Powalowski <tpowa@archlinux.org> pkgname=libmp3splt -pkgver=0.7.3 +pkgver=0.8.1a pkgrel=1 pkgdesc="Library for splitting mp3 and ogg files without decoding" arch=('i686' 'x86_64') @@ -25,4 +25,4 @@ package() { cd $srcdir/$pkgname-$pkgver make DESTDIR=$pkgdir/ install } -md5sums=('f63e41774514e9e05272e16b92182ce5') +md5sums=('5889dad7fc9443cd61987309622aa382') diff --git a/extra/mercurial/PKGBUILD b/extra/mercurial/PKGBUILD index 3dab51b64..e37bb691a 100644 --- a/extra/mercurial/PKGBUILD +++ b/extra/mercurial/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 177821 2013-02-09 16:46:06Z giovanni $ +# $Id: PKGBUILD 179489 2013-03-05 16:36:25Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Douglas Soares de Andrade <douglas@archlinux.org> pkgname=mercurial -pkgver=2.5.1 +pkgver=2.5.2 pkgrel=1 pkgdesc="A scalable distributed SCM tool" arch=('i686' 'x86_64') @@ -14,7 +14,7 @@ optdepends=('tk: for the hgk GUI') backup=('etc/mercurial/hgrc') source=("http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz" 'mercurial.profile') -md5sums=('18bee60e0cb3aa9c0c59bb11930f5f51' +md5sums=('6b467f41a262e2537cf927ed42d0fdda' '43e1d36564d4c7fbe9a091d3ea370a44') package() { diff --git a/extra/minicom/PKGBUILD b/extra/minicom/PKGBUILD index 37fce6967..948898b1b 100644 --- a/extra/minicom/PKGBUILD +++ b/extra/minicom/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 154279 2012-03-25 09:59:29Z giovanni $ +# $Id: PKGBUILD 179491 2013-03-05 16:42:11Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: dorphell <dorphell@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> # Contributor: Denis Tikhomirov <dvtikhomirov@gmail.com> pkgname=minicom -pkgver=2.6.1 +pkgver=2.6.2 pkgrel=1 pkgdesc="A serial communication program" arch=('i686' 'x86_64') @@ -14,8 +14,8 @@ license=('GPL') depends=('bash') optdepends=('lrzsz: for xmodem, ymodem and zmodem file transfer protocols') backup=('etc/minirc.dfl') -source=("http://alioth.debian.org/frs/download.php/3700/${pkgname}-${pkgver}.tar.gz") -md5sums=('435fb410a5bfa9bb20d4248b3ca53529') +source=("http://alioth.debian.org/frs/download.php/3869/${pkgname}-${pkgver}.tar.gz") +md5sums=('203c56c4b447f45e2301b0cc4e83da3c') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/extra/mp3splt/PKGBUILD b/extra/mp3splt/PKGBUILD index 6419c587d..35e33f49c 100644 --- a/extra/mp3splt/PKGBUILD +++ b/extra/mp3splt/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 166726 2012-09-17 05:19:09Z tpowa $ +# $Id: PKGBUILD 179311 2013-03-05 11:12:31Z tpowa $ # Maintainer: Tobias Powalowski <tpowa@archlinux.org> pkgname=mp3splt -pkgver=2.4.3 +pkgver=2.5.1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc="Commandline tool for splitting mp3 and ogg files without decoding" @@ -22,4 +22,4 @@ package() { cd $srcdir/$pkgname-$pkgver make DESTDIR=$pkgdir/ install } -md5sums=('33559a6f8e6179afd8ca7c9886ffa207') +md5sums=('c0c66be0058cbc26ed52cfd2b50659fd') diff --git a/extra/mpd/PKGBUILD b/extra/mpd/PKGBUILD index 0e63f3824..1762049e5 100644 --- a/extra/mpd/PKGBUILD +++ b/extra/mpd/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 178137 2013-02-16 22:48:55Z ioni $ +# $Id: PKGBUILD 179309 2013-03-05 11:03:53Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Angel Velasquez <angvp@archlinux.org> # Contributor: Andrea Scarpino <andrea@archlinux.org> @@ -7,7 +7,7 @@ pkgname=mpd pkgver=0.17.3 -pkgrel=2 +pkgrel=3 pkgdesc='Flexible, powerful, server-side application for playing music' url='http://mpd.wikia.com/wiki/Music_Player_Daemon_Wiki' license=('GPL') @@ -16,9 +16,11 @@ depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 'f 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl') makedepends=('doxygen') source=("http://downloads.sourceforge.net/musicpd/${pkgname}-${pkgver}.tar.bz2" + 'ffmpeg.patch' 'tmpfiles.d' 'rc.d') sha1sums=('f684d73a7517371a4461afdb2439f9533b51a49d' + '8a06d04bfdf4e0dc43479907dc9b3bd7fba6dd10' 'f4d5922abb69abb739542d8e93f4dfd748acdad7' '3470d489565f0ed479f1665dd2876f66acb5a585') @@ -28,6 +30,8 @@ install=install build() { cd "${srcdir}/${pkgname}-${pkgver}" + patch -p1 -i ../ffmpeg.patch + ./configure \ --prefix=/usr \ --sysconfdir=/etc \ diff --git a/extra/mpd/ffmpeg.patch b/extra/mpd/ffmpeg.patch new file mode 100644 index 000000000..83b13d80f --- /dev/null +++ b/extra/mpd/ffmpeg.patch @@ -0,0 +1,15 @@ +diff -Naur old/src/decoder/ffmpeg_decoder_plugin.c new/src/decoder/ffmpeg_decoder_plugin.c +--- old/src/decoder/ffmpeg_decoder_plugin.c 2013-01-07 11:39:40.000000000 +1100 ++++ new/src/decoder/ffmpeg_decoder_plugin.c 2013-03-05 21:54:27.116585462 +1100 +@@ -395,6 +395,11 @@ + #endif + return SAMPLE_FORMAT_S32; + ++#if LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(51,17,0) ++ case AV_SAMPLE_FMT_FLTP: ++ return SAMPLE_FORMAT_FLOAT; ++#endif ++ + default: + break; + } diff --git a/extra/nepomuk-core/PKGBUILD b/extra/nepomuk-core/PKGBUILD index d77cfbd93..2aa1f8536 100644 --- a/extra/nepomuk-core/PKGBUILD +++ b/extra/nepomuk-core/PKGBUILD @@ -1,28 +1,19 @@ -# $Id: PKGBUILD 178526 2013-02-25 10:11:55Z andrea $ +# $Id: PKGBUILD 179326 2013-03-05 15:20:29Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=nepomuk-core -pkgver=4.10.0 -pkgrel=4 +pkgver=4.10.1 +pkgrel=1 pkgdesc="Contains the central Nepomuk services like file indexing, file system monitoring, query, storage, client libraries" url="https://projects.kde.org/projects/kde/kdelibs/nepomuk-core" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdelibs' 'poppler-qt' 'taglib' 'ffmpeg') makedepends=('cmake' 'automoc4' 'doxygen') -source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz" - 'fix-recursive-indexing.patch' - 'fix-crash-on-new-install.patch') -sha1sums=('affc4d3063db773e5b05ff746a4c64adbec29264' - 'faa0f661fe642af01ac72eda7347dfc659e091e1' - '5e3b84f0d0f8a868d4aafedf0f3c7ab631ee4263') +source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") +sha1sums=('23661174669b32b12e7c930d700b08a4f7efd275') build() { - cd ${pkgname}-${pkgver} - patch -p1 -i "${srcdir}"/fix-recursive-indexing.patch - patch -p1 -i "${srcdir}"/fix-crash-on-new-install.patch - cd ../ - mkdir build cd build cmake ../${pkgname}-${pkgver} \ diff --git a/extra/nepomuk-core/fix-recursive-indexing.patch b/extra/nepomuk-core/fix-recursive-indexing.patch deleted file mode 100644 index c4db4e414..000000000 --- a/extra/nepomuk-core/fix-recursive-indexing.patch +++ /dev/null @@ -1,103 +0,0 @@ -From: Vishesh Handa <me@vhanda.in> -Date: Fri, 08 Feb 2013 20:58:33 +0000 -Subject: Revert "BasicIndexingQueue: Use stacks instead of queues" -X-Git-Url: http://quickgit.kde.org/?p=nepomuk-core.git&a=commitdiff&h=b651f9231ac30072418bb06d602951f0f05da22c ---- -Revert "BasicIndexingQueue: Use stacks instead of queues" - -This reverts commit 2f33141aa6716550e38b11ec9a0b000dd74eea79. - -The commit breaks recursive indexing. Doh! - -BUG: 314559 ---- - - ---- a/services/fileindexer/basicindexingqueue.cpp -+++ b/services/fileindexer/basicindexingqueue.cpp -@@ -54,14 +54,14 @@ - - void BasicIndexingQueue::clear(const QString& path) - { -- QMutableVectorIterator< QPair<QString, UpdateDirFlags> > it( m_paths ); -+ QMutableListIterator< QPair<QString, UpdateDirFlags> > it( m_paths ); - while( it.hasNext() ) { - it.next(); - if( it.value().first.startsWith( path ) ) - it.remove(); - } - -- QMutableVectorIterator< QPair<QDirIterator*, UpdateDirFlags> > iter( m_iterators ); -+ QMutableListIterator< QPair<QDirIterator*, UpdateDirFlags> > iter( m_iterators ); - while( iter.hasNext() ) { - QDirIterator* dirIter = iter.next().first; - -@@ -100,7 +100,7 @@ - { - kDebug() << path; - bool wasEmpty = m_paths.empty(); -- m_paths.push( qMakePair( path, flags ) ); -+ m_paths.enqueue( qMakePair( path, flags ) ); - callForNextIteration(); - - if( wasEmpty ) -@@ -120,12 +120,12 @@ - processingFile = process( dirIt->next(), pair.second ); - } - else { -- delete m_iterators.pop().first; -+ delete m_iterators.dequeue().first; - } - } - - else if( !m_paths.isEmpty() ) { -- QPair< QString, UpdateDirFlags > pair = m_paths.pop(); -+ QPair< QString, UpdateDirFlags > pair = m_paths.dequeue(); - processingFile = process( pair.first, pair.second ); - } - -@@ -161,7 +161,7 @@ - QDir::Filters dirFilter = QDir::NoDotAndDotDot|QDir::Readable|QDir::Files|QDir::Dirs; - - QPair<QDirIterator*, UpdateDirFlags> pair = qMakePair( new QDirIterator( path, dirFilter ), flags ); -- m_iterators.push( pair ); -+ m_iterators.enqueue( pair ); - } - } - else if( info.isFile() && (forced || indexingRequired) ) { -@@ -259,12 +259,6 @@ - - emit endIndexingFile( url ); - -- // Give back the memory -- if( m_paths.isEmpty() ) -- m_paths.clear(); -- if( m_iterators.isEmpty() ) -- m_iterators.clear(); -- - // Continue the queue - finishIteration(); - } - ---- a/services/fileindexer/basicindexingqueue.h -+++ b/services/fileindexer/basicindexingqueue.h -@@ -23,7 +23,6 @@ - - #include "indexingqueue.h" - #include <KJob> --#include <QtCore/QStack> - - namespace Nepomuk2 { - -@@ -106,8 +105,8 @@ - */ - bool process(const QString& path, Nepomuk2::UpdateDirFlags flags); - -- QStack< QPair<QString, UpdateDirFlags> > m_paths; -- QStack< QPair<QDirIterator*, UpdateDirFlags> > m_iterators; -+ QQueue< QPair<QString, UpdateDirFlags> > m_paths; -+ QQueue< QPair<QDirIterator*, UpdateDirFlags> > m_iterators; - - QUrl m_currentUrl; - QString m_currentMimeType; - diff --git a/extra/nepomuk-widgets/PKGBUILD b/extra/nepomuk-widgets/PKGBUILD index 4e132674f..7d938c219 100644 --- a/extra/nepomuk-widgets/PKGBUILD +++ b/extra/nepomuk-widgets/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177642 2013-02-08 08:56:00Z andrea $ +# $Id: PKGBUILD 179343 2013-03-05 15:24:20Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=nepomuk-widgets -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="The Library containing the Nepomuk Widgets" url="https://projects.kde.org/projects/kde/kdelibs/nepomuk-widgets" @@ -11,7 +11,7 @@ license=('GPL' 'LGPL' 'FDL') depends=('nepomuk-core') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('8c6029bb56364c28398c516f4034c484e0ea31e0') +sha1sums=('c7401f43b88edd8a6ca388bea2960036299ac77e') build() { mkdir build diff --git a/extra/qemu-kvm/65-kvm.rules b/extra/qemu-kvm/65-kvm.rules deleted file mode 100644 index c2f7317aa..000000000 --- a/extra/qemu-kvm/65-kvm.rules +++ /dev/null @@ -1 +0,0 @@ -KERNEL=="kvm", GROUP="kvm", MODE="0660" diff --git a/extra/qemu-kvm/PKGBUILD b/extra/qemu-kvm/PKGBUILD deleted file mode 100644 index ce29d86a3..000000000 --- a/extra/qemu-kvm/PKGBUILD +++ /dev/null @@ -1,61 +0,0 @@ -# $Id: PKGBUILD 166722 2012-09-17 05:16:37Z tpowa $ -# Maintainer: Tobias Powalowski <tpowa@archlinux.org> -pkgname=qemu-kvm -pkgver=1.2.0 -pkgrel=1 -pkgdesc="Latest KVM QEMU is a generic and open source processor emulator which achieves a good emulation speed by using dynamic translation." -arch=(i686 x86_64) -license=('GPL2' 'LGPL2.1') -url="http://www.linux-kvm.org" -depends=('libjpeg' 'libpng' 'libsasl' 'curl' 'sdl' 'alsa-lib' 'nss' 'glib2' 'gnutls>=2.4.1' 'bluez' 'vde2' 'util-linux' 'libpulse' 'seabios' 'libcap-ng') -makedepends=('texi2html' 'perl' 'python2') -backup=('etc/qemu/target-x86_64.conf') -install=qemu-kvm.install -conflicts=('qemu') -provides=('qemu') -replaces=('kvm') -source=(http://downloads.sourceforge.net/kvm/${pkgname}-${pkgver}.tar.gz - 65-kvm.rules) -options=(!strip) - -build() -{ - cd "${srcdir}/${pkgname}-${pkgver}" - # fix esound building - ./configure --prefix=/usr \ - --python=/usr/bin/python2 \ - --sysconfdir=/etc \ - --audio-drv-list=alsa,sdl,oss,pa \ - --audio-card-list=ac97,sb16,es1370,hda \ - --enable-docs - make -} - -package() -{ - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" libexecdir=/usr/lib/qemu install - rm "${pkgdir}/usr/share/qemu/bios.bin" - - # symbolic link for backwards compatibility - ln -s qemu-system-x86_64 "${pkgdir}/usr/bin/qemu-kvm" - # symbolic link for to qemu binary for emulator apps - ln -s qemu-system-x86_64 "${pkgdir}/usr/bin/qemu" - # symbolic link for to qemu binary for emulator apps - ln -s qemu-system-x86_64 "${pkgdir}/usr/bin/kvm" - # fix man page - mv "${pkgdir}/usr/share/man/man1/qemu.1" \ - "${pkgdir}/usr/share/man/man1/qemu-kvm.1" - # install udev rules - install -D -m644 "${srcdir}/65-kvm.rules" \ - "${pkgdir}/usr/lib/udev/rules.d/65-kvm.rules" - # strip scripts directory - find "${pkgdir}/usr/bin" -type f -perm -u+w 2>/dev/null | while read binary ; do - case "$(file -bi "$binary")" in - *application/x-executable*) # Binaries - /usr/bin/strip $STRIP_BINARIES "$binary";; - esac - done -} -md5sums=('d7b18b673c48abfee65a9c0245df0415' - 'b316a066d2f1bb57d8f5b7ea1d0d1caf') diff --git a/extra/qemu-kvm/qemu-kvm.install b/extra/qemu-kvm/qemu-kvm.install deleted file mode 100644 index 5161df93a..000000000 --- a/extra/qemu-kvm/qemu-kvm.install +++ /dev/null @@ -1,15 +0,0 @@ -post_install() { - groupadd kvm -f -g 78 - echo ">>> PLEASE READ FOR KVM USAGE!" - echo ">>> Load the correct KVM module, you will need a KVM capable CPU!" - echo ">>> Add yourself to the group 'kvm'." - echo "" -} - -post_upgrade() { - post_install $1 -} - -post_remove() { - groupdel kvm -} diff --git a/extra/qemu/PKGBUILD b/extra/qemu/PKGBUILD index 4f57d8083..510c68258 100644 --- a/extra/qemu/PKGBUILD +++ b/extra/qemu/PKGBUILD @@ -1,28 +1,33 @@ -# $Id: PKGBUILD 172024 2012-11-26 16:12:59Z tpowa $ +# $Id: PKGBUILD 179325 2013-03-05 14:58:22Z tpowa $ # Maintainer: Tobias Powalowski <tpowa@archlinux.org> pkgname=qemu -pkgver=1.2.1 -pkgrel=1 +pkgver=1.4.0 +pkgrel=2 pkgdesc="A generic and open source processor emulator which achieves a good emulation speed by using dynamic translation." arch=('i686' 'x86_64') license=('GPL2' 'LGPL2.1') url="http://wiki.qemu.org/Index.html" makedepends=('texi2html' 'perl' 'python2') -depends=('libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2' 'gnutls>=2.4.1' 'bluez' 'vde2' 'util-linux' 'curl' 'libsasl' 'libgl' 'libpulse' 'seabios' 'libcap-ng') +depends=('pixman' 'libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2' 'gnutls>=2.4.1' 'bluez' 'vde2' 'util-linux' 'curl' 'libsasl' 'libgl' 'libpulse' 'seabios' 'libcap-ng') backup=('etc/qemu/target-x86_64.conf') install=qemu.install source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.bz2 + doc-fix-sheepdog-invalid-texi-table-list-syntax.patch 65-kvm.rules) +replaces=('qemu-kvm') options=(!strip) build() { cd "${srcdir}/${pkgname}-${pkgver}" - sed -i -e 's/lib64/lib/g' x86_64.ld + sed -i -e 's/lib64/lib/g' ldscripts/x86_64.ld + # fix building with tex version 5.0 + # https://bugs.launchpad.net/qemu/+bug/1130533 + patch -Np1 -i ${srcdir}/doc-fix-sheepdog-invalid-texi-table-list-syntax.patch ./configure --prefix=/usr --sysconfdir=/etc --audio-drv-list=oss,alsa,sdl,pa \ --python=/usr/bin/python2 \ --audio-card-list=ac97,sb16,es1370,hda \ - --enable-docs + --enable-docs --enable-mixemu --libexecdir=/usr/lib/qemu make } @@ -33,6 +38,11 @@ package() { install -D -m644 "${srcdir}/65-kvm.rules" \ "${pkgdir}/usr/lib/udev/rules.d/65-kvm.rules" + # bridge_helper needs suid + # https://bugs.archlinux.org/task/32565 + chmod u+s "${pkgdir}/usr/lib/qemu/qemu-bridge-helper" + # add sample config + echo "allow br0" > ${pkgdir}/etc/qemu/bridge.conf.sample # strip scripts directory find "${pkgdir}/usr/src/linux-${_kernver}/scripts" -type f -perm -u+w 2>/dev/null | while read binary ; do case "$(file -bi "$binary")" in @@ -42,5 +52,6 @@ package() { done } -md5sums=('189bc5b87281a72f8c72a0f7ebaa6d00' +md5sums=('78f13b774814b6b7ebcaf4f9b9204318' + 'b431782f310bfc6af4ef21a8068f866b' 'b316a066d2f1bb57d8f5b7ea1d0d1caf') diff --git a/extra/qemu/doc-fix-sheepdog-invalid-texi-table-list-syntax.patch b/extra/qemu/doc-fix-sheepdog-invalid-texi-table-list-syntax.patch new file mode 100644 index 000000000..bacc87e80 --- /dev/null +++ b/extra/qemu/doc-fix-sheepdog-invalid-texi-table-list-syntax.patch @@ -0,0 +1,30 @@ +diff --git a/qemu-options.hx b/qemu-options.hx +index 4bc9c85..3af60bf 100644 +--- a/qemu-options.hx ++++ b/qemu-options.hx +@@ -2095,18 +2095,13 @@ QEMU supports using either local sheepdog devices or remote networked + devices. + + Syntax for specifying a sheepdog device +-@table @list +-``sheepdog:<vdiname>'' +- +-``sheepdog:<vdiname>:<snapid>'' +- +-``sheepdog:<vdiname>:<tag>'' +- +-``sheepdog:<host>:<port>:<vdiname>'' +- +-``sheepdog:<host>:<port>:<vdiname>:<snapid>'' +- +-``sheepdog:<host>:<port>:<vdiname>:<tag>'' ++@table @code ++@item sheepdog:<vdiname> ++@item sheepdog:<vdiname>:<snapid> ++@item sheepdog:<vdiname>:<tag> ++@item sheepdog:<host>:<port>:<vdiname> ++@item sheepdog:<host>:<port>:<vdiname>:<snapid> ++@item sheepdog:<host>:<port>:<vdiname>:<tag> + @end table + + Example diff --git a/extra/qemu/qemu.install b/extra/qemu/qemu.install index fd92c60eb..f4fabcc54 100644 --- a/extra/qemu/qemu.install +++ b/extra/qemu/qemu.install @@ -3,18 +3,20 @@ post_install() { # groupadd kvm -f -g 78 echo ">>> PLEASE READ FOR KVM USAGE!" - echo ">>> Load the correct KVM module, you will need a KVM capable CPU!" echo ">>> Add yourself to the group 'kvm'." - echo "" +} + +post_upgrade() { if [ "$(vercmp $2 0.11)" -lt 0 ]; then echo "With the release of qemu and qemu-kvm 0.12.X, the kqemu kernel module" echo "is no longer supported and will be removed from the repositories. You" echo "can safely uninstall it from your system." fi -} - -post_upgrade() { - post_install $1 + if [ "$(vercmp $2 1.3.1)" -lt 0 ]; then + echo "With the release of qemu 1.3.0, qemu-kvm binary is removed." + echo "You need to change the emulator path, if you use libvirt by using:" + echo "'virsh edit <vm-name>'" + fi } post_remove() { diff --git a/extra/smb4k/PKGBUILD b/extra/smb4k/PKGBUILD index 4f1bcc88c..102fa5129 100644 --- a/extra/smb4k/PKGBUILD +++ b/extra/smb4k/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 173880 2012-12-27 00:40:48Z giovanni $ +# $Id: PKGBUILD 179497 2013-03-05 17:07:36Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Emanuele Rampichini <emanuele.rampichini@gmail.com> pkgname=smb4k -pkgver=1.0.5 +pkgver=1.0.6 pkgrel=1 pkgdesc="A KDE program that browses samba shares" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=smb4k.install source=("http://downloads.sourceforge.net/project/${pkgname}/Smb4K%20%28stable%20releases%29/${pkgver}/${pkgname}-${pkgver}.tar.bz2") -md5sums=('b8472b5baad3616858706a7b4bf0427a') +md5sums=('438ea64ed1296de6618677758257445b') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/extra/telepathy-gabble/PKGBUILD b/extra/telepathy-gabble/PKGBUILD index 06cf218e3..e14839c30 100644 --- a/extra/telepathy-gabble/PKGBUILD +++ b/extra/telepathy-gabble/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 175988 2013-01-25 15:56:11Z ioni $ +# $Id: PKGBUILD 179516 2013-03-05 19:16:44Z ioni $ # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Daniel Balieiro <daniel@balieiro.com> # Contributor: Rodrigo L. M. Flores <mail@rodrigoflores.org> pkgname=telepathy-gabble -pkgver=0.17.2 +pkgver=0.17.3 pkgrel=1 pkgdesc="A Jabber/XMPP connection manager for Telepathy" arch=('i686' 'x86_64') @@ -15,7 +15,7 @@ makedepends=('libxslt' 'python2') options=('!libtool' '!emptydirs') source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz) install=telepathy-gabble.install -md5sums=('18329694ca5dcd35a97a70b9109c0f9a') +md5sums=('f190ac6244440601f616dd61846689ba') build() { cd $pkgname-$pkgver diff --git a/extra/usermin/PKGBUILD b/extra/usermin/PKGBUILD index 6a8640a5f..2585344c5 100644 --- a/extra/usermin/PKGBUILD +++ b/extra/usermin/PKGBUILD @@ -1,7 +1,7 @@ -# $Id: PKGBUILD 177553 2013-02-07 05:50:05Z eric $ +# $Id: PKGBUILD 179315 2013-03-05 11:21:55Z tpowa $ # Maintainer: Tobias Powalowski <tpowa@archlinux.org> pkgname=usermin -pkgver=1.530 +pkgver=1.540 pkgrel=1 pkgdesc="a web interface that can be used to easily perform tasks like reading mail, setting up SSH or configuring mail forwarding" arch=(i686 x86_64) @@ -128,7 +128,7 @@ package() { #install license install -m 644 -D "$srcdir"/$pkgname-$pkgver/LICENCE "$pkgdir"/usr/share/licenses/usermin/LICENCE } -md5sums=('5a00ec2d294935676efc12f607446fb4' +md5sums=('d29c9fdebab14c168c33bde8906efe21' 'cfef4490cd1ef9517c0b39a7bd75c968' 'a5bd5e5ee779f8a3cf3d776ca77ee36e' 'ec37a79f948f778224550930d2a7ca07') diff --git a/extra/webmin/PKGBUILD b/extra/webmin/PKGBUILD index eb7ab19b2..593107acb 100644 --- a/extra/webmin/PKGBUILD +++ b/extra/webmin/PKGBUILD @@ -1,7 +1,7 @@ -# $Id: PKGBUILD 177556 2013-02-07 05:57:24Z eric $ +# $Id: PKGBUILD 179317 2013-03-05 11:25:58Z tpowa $ # Maintainer: Tobias Powalowski <tpowa@archlinux.org> pkgname=webmin -pkgver=1.610 +pkgver=1.620 pkgrel=1 pkgdesc="a web-based interface for system administration" arch=(i686 x86_64) @@ -214,7 +214,7 @@ package() { # install license install -m 644 -D "$srcdir"/$pkgname-$pkgver/LICENCE "$pkgdir"/usr/share/licenses/webmin/LICENCE } -md5sums=('e5f51402c09558ee688efea3d03a3d83' +md5sums=('e93bc5057a5b7d7e31ecb2bb228d7044' 'b0b3e3fb231a12e60165b6b4d604dcfa' 'bfebb75bb94029b48c46b7f1ba1aa811' 'c77dfcd621b417a7826d25f56a1e60ae' diff --git a/extra/xf86-input-wacom/70-wacom.rules b/extra/xf86-input-wacom/70-wacom.rules index f6aa20835..2b32b1234 100644 --- a/extra/xf86-input-wacom/70-wacom.rules +++ b/extra/xf86-input-wacom/70-wacom.rules @@ -8,5 +8,8 @@ ACTION!="add|change", GOTO="wacom_end" SUBSYSTEM=="tty|pnp", SUBSYSTEMS=="pnp", ATTRS{id}=="WACf*", ENV{ID_MODEL}="Serial Wacom Tablet $attr{id}", ENV{ID_INPUT}="1", ENV{ID_INPUT_TABLET}="1", ENV{NAME}="Serial Wacom Tablet $attr{id}" SUBSYSTEM=="tty|pnp", SUBSYSTEMS=="pnp", ATTRS{id}=="FUJ*", ENV{ID_MODEL}="Serial Wacom Tablet $attr{id}", ENV{ID_INPUT}="1", ENV{ID_INPUT_TABLET}="1", ENV{NAME}="Serial Wacom Tablet $attr{id}" +# inputattach +SUBSYSTEM=="tty|pnp", KERNEL=="ttyS[0-9]*", ATTRS{id}=="WACf*", RUN+="/usr/sbin/modprobe wacom_w8001", RUN+="/usr/sbin/inputattach --daemon -w8001 /dev/%k" + LABEL="wacom_end" diff --git a/extra/xf86-input-wacom/PKGBUILD b/extra/xf86-input-wacom/PKGBUILD index ca30281c4..b800cdd1e 100644 --- a/extra/xf86-input-wacom/PKGBUILD +++ b/extra/xf86-input-wacom/PKGBUILD @@ -1,24 +1,25 @@ -# $Id: PKGBUILD 174296 2013-01-04 03:24:43Z heftig $ +# $Id: PKGBUILD 179522 2013-03-05 21:45:35Z heftig $ # Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> # Contributor: Jan de Groot <jgc@archlinux.org> # Contributor: M Rawash <mrawash@gmail.com> pkgname=xf86-input-wacom -pkgver=0.19.0 +pkgver=0.20.0 pkgrel=1 pkgdesc="X.Org Wacom tablet driver" -arch=('i686' 'x86_64') +arch=(i686 x86_64) url="http://linuxwacom.sourceforge.net/" -license=('GPL') +license=(GPL) backup=('etc/X11/xorg.conf.d/50-wacom.conf') -depends=('libxi' 'libxrandr' 'libxinerama') -makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=18' 'resourceproto' 'scrnsaverproto') +depends=(libxi libxinerama libxrandr) +makedepends=('X-ABI-XINPUT_VERSION=18' xorg-server-devel resourceproto scrnsaverproto) conflicts=('xorg-server<1.13.0' 'X-ABI-XINPUT_VERSION<18' 'X-ABI-XINPUT_VERSION>=19') +optdepends=('inputattach: support for serial tablets') options=(!libtool) source=(http://downloads.sourceforge.net/project/linuxwacom/$pkgname/$pkgname-$pkgver.tar.bz2 70-wacom.rules) -md5sums=('bdc66047bb0afb4ac29882cca16cdfaa' - '10db4f8272286690255c1bcc18bfdd92') +md5sums=('a726649cb05c98cb1b18a3b7a4f079ed' + 'cc46dcb399d5ee62c9feb610c60d1270') build() { cd $pkgname-$pkgver diff --git a/libre/calibre-libre/PKGBUILD b/libre/calibre-libre/PKGBUILD index ba4ff1d0c..0c90c3a5c 100644 --- a/libre/calibre-libre/PKGBUILD +++ b/libre/calibre-libre/PKGBUILD @@ -2,12 +2,13 @@ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Petrov Roman <nwhisper@gmail.com> # Contributor: Andrea Fagiani <andfagiani _at_ gmail dot com> +# Contributor: Larry Hajali <larryhaja@gmail.com> # Maintainer (Parabola): André Silva <emulatorman@lavabit.com> _pkgname=calibre pkgname=calibre-libre pkgver=0.9.21 -pkgrel=2 +pkgrel=3 pkgdesc="Ebook management application (unar support included instead of libunrar and without nonfree fonts)" arch=('i686' 'x86_64') url="http://calibre-ebook.com/" @@ -36,6 +37,7 @@ build() { #rm -rf src/{cherrypy,pyPdf} rm -rf src/cherrypy + rm -rf resources/${pkgname}-portable.* sed -i -e "s/ldflags = shlex.split(ldflags)/ldflags = shlex.split(ldflags) + ['-fPIC']/" setup/extensions.py # Fix for calibre-0.8.58 @@ -72,6 +74,7 @@ package() { sed -i -e "s|(prefix=.*)|(prefix='$pkgdir/usr')|g" setup/install.py install -d "${pkgdir}/usr/lib/python2.7/site-packages" + install -d "${pkgdir}/usr/share/zsh/site-functions" LANG='en_US.UTF-8' python2 setup.py install --root="${pkgdir}" --prefix=/usr \ --staging-bindir="${pkgdir}/usr/bin" \ --staging-libdir="${pkgdir}/usr/lib" \ diff --git a/libre/kdebase-konqueror-libre/PKGBUILD b/libre/kdebase-konqueror-libre/PKGBUILD index efff37e2b..09e552a00 100644 --- a/libre/kdebase-konqueror-libre/PKGBUILD +++ b/libre/kdebase-konqueror-libre/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 176530 2013-01-31 14:43:11Z andrea $ +# $Id: PKGBUILD 179154 2013-03-04 11:09:37Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> # Maintainer (Parabola): Michał Masłowski <mtjm@mtjm.eu> @@ -6,7 +6,7 @@ _pkgname='kdebase-konqueror' pkgname='kdebase-konqueror-libre' -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64' 'mips64el') url="http://kde.org/applications/internet/konqueror/" @@ -15,7 +15,7 @@ groups=('kde' 'kdebase') makedepends=('kdelibs' 'cmake' 'automoc4' 'tidyhtml') source=("http://download.kde.org/stable/${pkgver}/src/kde-baseapps-${pkgver}.tar.xz" "konq-about-fsdg.diff") -sha1sums=('5b0127bd946286f52d98a1779eabf65e416a66c3' +sha1sums=('1becdcaf0e41cb7da6c7f66562a0a2aad9fafb5a' 'd6cbb53c04179b8180f9439eca156b7ff2e76b3a') pkgdesc='KDE File Manager & Web Browser (without Google and nonfree software recommendation)' depends=('kdebase-dolphin' 'kdebase-keditbookmarks') diff --git a/libre/kdebase-runtime-libre/PKGBUILD b/libre/kdebase-runtime-libre/PKGBUILD index 8e049cd0c..96f7af2c2 100644 --- a/libre/kdebase-runtime-libre/PKGBUILD +++ b/libre/kdebase-runtime-libre/PKGBUILD @@ -5,7 +5,7 @@ _pkgname=kdebase-runtime pkgname=kdebase-runtime-libre -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 pkgdesc="Plugins and applications necessary for the running of KDE applications (without non-privacy search providers)" arch=('i686' 'x86_64' 'mips64el') @@ -26,7 +26,7 @@ install="${_pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz" 'duckduckgo_html.desktop' 'duckduckgo_lite.desktop') -sha1sums=('eff82d54383ece321dc93bdfb494c0a9abcbb998' +sha1sums=('68d630a5f38a3bb3e629b8cfe4d800e6aef5e327' 'aa6f39f4b0ad3c110fd05cd6c41190afae9773dd' 'ac3bac94a2c4b1444642524bc5fb539c4c5dcc5b') diff --git a/libre/kdelibs-libre/PKGBUILD b/libre/kdelibs-libre/PKGBUILD index 5db404e8a..18947854a 100644 --- a/libre/kdelibs-libre/PKGBUILD +++ b/libre/kdelibs-libre/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 178874 2013-02-27 23:08:32Z andrea $ +# $Id: PKGBUILD 179135 2013-03-04 11:09:00Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org # Contributor: Pierre Schmitz <pierre@archlinux.de> # Maintainer (Parabola): André Silva <emulatorman@lavabit.com> _pkgname=kdelibs pkgname=kdelibs-libre -pkgver=4.10.0 -pkgrel=4 +pkgver=4.10.1 +pkgrel=1 pkgdesc="KDE Core Libraries" arch=('i686' 'x86_64' 'mips64el') url='https://projects.kde.org/projects/kde/kdelibs' @@ -24,7 +24,7 @@ install=${_pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/${_pkgname}-${pkgver}.tar.xz" 'kde-applications-menu.patch' 'khtml-fsdg.diff') -sha1sums=('093bfd214511bae7fda88242413c6ed4ff0b18f0' +sha1sums=('91d1ab65a561decf7506df45bda7a7fec9a524bb' '86ee8c8660f19de8141ac99cd6943964d97a1ed7' 'a1502a964081ad583a00cf90c56e74bf60121830') diff --git a/libre/kdenetwork-kopete-libre/PKGBUILD b/libre/kdenetwork-kopete-libre/PKGBUILD index cbd38ec0f..8fb964334 100644 --- a/libre/kdenetwork-kopete-libre/PKGBUILD +++ b/libre/kdenetwork-kopete-libre/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 176632 2013-01-31 14:46:22Z andrea $ +# $Id: PKGBUILD 179256 2013-03-04 11:13:30Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> # Maintainer (Parabola): André Silva <emulatorman@lavabit.com> pkgbase=kdenetwork pkgname=('kdenetwork-kopete-libre') -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' @@ -17,7 +17,7 @@ makedepends=('cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr3' 'ppp' 'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz" 'use-libotr3.patch') -sha1sums=('974bd9aea71a583563667e7cdc4749fe9d5bd82e' +sha1sums=('3d54276d1b3808896640d8a28db2c354ef268953' '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384') build() { diff --git a/libre/kdepim-libre/PKGBUILD b/libre/kdepim-libre/PKGBUILD index f72efd2cd..53c588336 100644 --- a/libre/kdepim-libre/PKGBUILD +++ b/libre/kdepim-libre/PKGBUILD @@ -22,7 +22,7 @@ pkgname=('kdepim-akonadiconsole-libre' 'kdepim-ktimetracker-libre' 'kdepim-ktnef-libre' 'kdepim-libkdepim-libre') -pkgver=4.10.0 +pkgver=4.10.1 pkgrel=1 arch=('i686' 'x86_64' 'mips64el') url='http://pim.kde.org' @@ -30,16 +30,11 @@ license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdepim-libre') makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'libxss' 'kde-agent' 'nepomuk-widgets') -source=("http://download.kde.org/stable/${pkgver}/src/${_pkgbase}-${pkgver}.tar.xz" - 'boost152.patch') -sha1sums=('6074fcea53b10c3660c5cc9a00b65e777840fdc4' +source=("http://download.kde.org/stable/${pkgver}/src/${_pkgbase}-${pkgver}.tar.xz") +sha1sums=('9d1102ec9ea7ee7b8ddc70011231f173ceb2e5c1' '652de82dcc1c45de3123898ba46e1962bb0ed6d4') build() { - cd ${_pkgbase}-${pkgver} - patch -p1 -i "${srcdir}"/boost152.patch - cd ../ - mkdir build cd build cmake ../${_pkgbase}-${pkgver} \ diff --git a/libre/kdepim-libre/boost152.patch b/libre/kdepim-libre/boost152.patch deleted file mode 100644 index c82b092f1..000000000 --- a/libre/kdepim-libre/boost152.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- kdepim-4.10.0/kleopatra/models/keylistmodel.cpp~ 2013-01-31 09:40:34.270651208 +0000 -+++ kdepim-4.10.0/kleopatra/models/keylistmodel.cpp 2013-01-31 09:41:26.570259714 +0000 -@@ -60,9 +60,9 @@ - #ifdef _WIN32_WCE - #define BOOST_ALL_NO_LIB - #endif --#include <boost/graph/adjacency_list.hpp> - - #ifndef Q_MOC_RUN // QTBUG-22829 -+#include <boost/graph/adjacency_list.hpp> - #include <boost/graph/topological_sort.hpp> - #endif - diff --git a/libre/kdeutils-ark-libre/PKGBUILD b/libre/kdeutils-ark-libre/PKGBUILD index 4b7f1ca34..73acbc578 100644 --- a/libre/kdeutils-ark-libre/PKGBUILD +++ b/libre/kdeutils-ark-libre/PKGBUILD @@ -1,26 +1,26 @@ -# $Id: PKGBUILD 178872 2013-02-27 22:38:42Z andrea $ +# $Id: PKGBUILD 179261 2013-03-04 11:13:48Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Maintainer (Parabola): André Silva <emulatorman@lavabit.com> _pkgname=kdeutils-ark pkgname=kdeutils-ark-libre -pkgver=4.10.0 -pkgrel=2 -pkgdesc='Archiving Tool' +pkgver=4.10.1 +pkgrel=1 +pkgdesc='Archiving Tool (with unar support included instead of unrar)' url='http://kde.org/applications/utilities/ark/' arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeutils') depends=('kdebase-runtime' 'kdebase-lib' 'libarchive' 'qjson') makedepends=('cmake' 'automoc4') -optdepends=('p7zip' 'zip' 'unzip' 'ununrar') +optdepends=('p7zip' 'zip' 'unzip' 'unar') install=${_pkgname}.install provides=("kdeutils-ark=$pkgver") replaces=('kdeutils-ark') conflicts=('kdeutils-ark') source=("http://download.kde.org/stable/${pkgver}/src/ark-${pkgver}.tar.xz" 'ark-unar-06.patch') -sha1sums=('b4f4aaa7dc38ccd515066065ba2b9313d981cfc2' +sha1sums=('cbb1a1fb9364f81d3653bbb570ab8907ba05aa95' 'a0a836950f185d9b2245204579f969203036fdec') build() { diff --git a/pcr/pandoc/PKGBUILD b/pcr/pandoc/PKGBUILD index 47c9788c9..74b1c77d9 100644 --- a/pcr/pandoc/PKGBUILD +++ b/pcr/pandoc/PKGBUILD @@ -4,7 +4,7 @@ # Run `makepkg -sp SRCBUILD` if you want to update the source tarball pkgname=pandoc -pkgver=1.10.0.4 +pkgver=1.10.1 pkgrel=1 pkgdesc='Conversion between markup formats (no Haskell libs)' url='http://johnmacfarlane.net/pandoc/' @@ -13,10 +13,13 @@ arch=('i686' 'x86_64') makedepends=('ghc' 'sh' 'cabal-install') options=(strip !makeflags !distcc !emptydirs) source=(https://repo.parabolagnulinux.org/other/${pkgname}-${pkgver}-$pkgrel-any.src.tar.xz{,.sig} - SRCBUILD - citeproc-hs-pre-0.3.7.patch) + SRCBUILD) +# citeproc-hs-pre-0.3.7.patch) conflicts=('haskell-pandoc') optdepends=('texlive-most: for pdf creation') +md5sums=('bca5fa27ac593f24d18cd434289d4673' + '87a6a5fd1abfbe3199c5ff42742ff5f1' + '0d5b6d7adf6fdcea52dcbb7b62368b19') # PKGBUILD functions build() { @@ -26,9 +29,9 @@ build() { # Patches from the next citeproc-hs release # These are needed because 0.3.6 with embed_data_files is broken # darcs diff --from-tag=0.3.6 - pushd ${srcdir}/${pkgname}-${pkgver}/citeproc-hs-0.3.6 - patch -Np1 -i ${srcdir}/citeproc-hs-pre-0.3.7.patch - popd +# pushd ${srcdir}/${pkgname}-${pkgver}/citeproc-hs-0.3.6 +# patch -Np1 -i ${srcdir}/citeproc-hs-pre-0.3.7.patch +# popd while read _hkpkg; do # Skip already built @@ -41,7 +44,7 @@ build() { case $_hkpkg in $pkgname-$pkgver) HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal configure --flags='-library' \ + cabal configure --flags='-library blaze_html_0_5' \ --prefix=/usr \ --libdir=${srcdir}/build/usr/lib -v @@ -87,7 +90,3 @@ package() { install -d ${pkgdir}/usr/share cp -rv ${srcdir}/build/usr/share/doc ${pkgdir}/usr/share/ } -md5sums=('94c36d52ee6d7e33b16d75048f6617d3' - '2958854a387ea0845720e9456f814845' - 'd159a34656b7a1e13df5e6149b2f898b' - 'd389fc323eeaced767cea53edcfc0127') diff --git a/pcr/pandoc/SRCBUILD b/pcr/pandoc/SRCBUILD index c1cfbfa5c..4c7f5de8d 100644 --- a/pcr/pandoc/SRCBUILD +++ b/pcr/pandoc/SRCBUILD @@ -2,7 +2,7 @@ # Based on haskell-pandoc pkgname=pandoc -pkgver=1.10.0.4 +pkgver=1.10.1 # 0.4 doesn't work with ghc 7.6 # Use blaze_html_0_5 flag in the future _blaze_html=0.5.1.3 @@ -29,7 +29,7 @@ build() { msg2 "Getting the dependency build order" # Ignore the cabal messages HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal install --dry-run file-embed blaze-html-${_blaze_html} ${pkgname}-${pkgver} | grep "\-[0-9]\+" >>BUILDORDER + cabal install --flags="blaze_html_0_5" --dry-run file-embed ${pkgname}-${pkgver} | grep "\-[0-9]\+" >>BUILDORDER } package() { |