diff options
209 files changed, 1250 insertions, 756 deletions
diff --git a/community/aspell-uk/PKGBUILD b/community/aspell-uk/PKGBUILD index f3252b56a..199ea4d50 100644 --- a/community/aspell-uk/PKGBUILD +++ b/community/aspell-uk/PKGBUILD @@ -1,19 +1,20 @@ -# $Id: PKGBUILD 43281 2011-03-24 13:28:23Z andrea $ -# Maintainer : Roman Kyrylych <roman@archlinux.org> +# $Id: PKGBUILD 60254 2011-12-08 19:13:21Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Roman Kyrylych <roman@archlinux.org> pkgname=aspell-uk -pkgver=1.6.0 +pkgver=1.6.5 _ftpver=1.4.0 -pkgrel=3 +pkgrel=1 pkgdesc="Ukrainian dictionary for aspell" arch=('i686' 'x86_64') url="http://ispell-uk.sourceforge.net/" license=('GPL' 'LGPL' 'MPL') depends=('aspell') source=(ftp://ftp.gnu.org/gnu/aspell/dict/uk/aspell6-uk-${_ftpver}-0.tar.bz2 - http://downloads.sourceforge.net/ispell-uk/spell-uk-$pkgver.tgz) -md5sums=('662f15381d11581758866fd7af43b4d7' - '4177ed3e196e6511513cf358c4a42e1a') + http://downloads.sourceforge.net/project/ispell-uk/spell-uk/$pkgver/spell-uk-$pkgver.tgz) +sha256sums=('35f9a7e840c1272706bc6dd172bc9625cbd843d021094da8598a6abba525f18c' + '90eff3b9e40d04b53717240b725e303f02cec4ee8bef9bded69b7481e41fa422') build() { # needed when using a source package from ispell-uk project diff --git a/community/bibletime/PKGBUILD b/community/bibletime/PKGBUILD new file mode 100644 index 000000000..f5b061581 --- /dev/null +++ b/community/bibletime/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 60250 2011-12-08 17:32:00Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Tobias T. <OldShatterhand at gmx-topmail dot de> +pkgname=bibletime +pkgver=2.9.0 +pkgrel=1 +pkgdesc="Bible software that uses the Sword Engine for KDE4" +arch=('x86_64' 'i686') +url="http://www.bibletime.info/" +license=('GPL2') +depends=('qt' 'sword' 'openssl' 'clucene') +makedepends=('cmake' 'boost-libs') +install=$pkgname.install +source=("http://sourceforge.net/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2") +md5sums=('0190b64de5892fc5f45e9a3d46bb29d6') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + cmake -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release "$srcdir/$pkgname-$pkgver" + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: diff --git a/community/bibletime/bibletime.install b/community/bibletime/bibletime.install new file mode 100644 index 000000000..ad97d7bab --- /dev/null +++ b/community/bibletime/bibletime.install @@ -0,0 +1,13 @@ +post_upgrade() { + update-desktop-database -q +} + +post_install() { + post_upgrade +} + +post_remove() { + post_upgrade +} + +# vim:set ts=2 sw=2 et: diff --git a/community/duplicity/PKGBUILD b/community/duplicity/PKGBUILD index 2c0d8feae..adcaa6edb 100644 --- a/community/duplicity/PKGBUILD +++ b/community/duplicity/PKGBUILD @@ -1,17 +1,19 @@ -# $Id: PKGBUILD 59792 2011-11-30 10:03:59Z lfleischer $ +# $Id: PKGBUILD 60285 2011-12-08 22:52:59Z lfleischer $ # Maintainer: Kaiting Chen <kaitocracy@gmail.com> # Contributor: Aaron Schaefer <aaron@elasticdog.com> pkgname=duplicity pkgver=0.6.17 -pkgrel=2 +pkgrel=3 pkgdesc='A utility for encrypted, bandwidth-efficient backups using the rsync algorithm' arch=('i686' 'x86_64') url='http://www.nongnu.org/duplicity/' license=('GPL') depends=('librsync' 'ncftp' 'python2' 'python-boto' 'python-gnupginterface') -source=("http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('36423ab4e3b9aa90c5c44d9fa93fba0f') +source=("http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz" + 'botobackend.patch') +md5sums=('36423ab4e3b9aa90c5c44d9fa93fba0f' + '49bbdc327230fe5985d18eaae37eec0c') build() { cd "${srcdir}/${pkgname}-${pkgver}" @@ -22,9 +24,13 @@ build() { sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file done + # add hotfix issued by upstream (FS#27390) + patch -p0 -i ../botobackend.patch + python2 setup.py install --root="$pkgdir" --optimize=1 - chmod 644 $pkgdir/usr/share/man/man1/$pkgname.1 - chmod 644 $pkgdir/usr/share/man/man1/rdiffdir.1 - chmod 644 $pkgdir/usr/share/doc/$pkgname-$pkgver/* + # fix broken documentation permissions until upstream does (FS#27301) + chmod 644 "$pkgdir/usr/share/man/man1/$pkgname.1" + chmod 644 "$pkgdir/usr/share/man/man1/rdiffdir.1" + chmod 644 "$pkgdir/usr/share/doc/$pkgname-$pkgver"/* } diff --git a/community/duplicity/botobackend.patch b/community/duplicity/botobackend.patch new file mode 100644 index 000000000..302e1e2b1 --- /dev/null +++ b/community/duplicity/botobackend.patch @@ -0,0 +1,13 @@ +=== modified file duplicity/backends/botobackend.py +--- duplicity/backends/botobackend.py 2011-11-25 17:47:57 +0000 ++++ duplicity/backends/botobackend.py 2011-12-01 16:15:25 +0000 +@@ -26,6 +26,6 @@ + if sys.version_info[:2] < (2,6): + print "Sorry, S3 multiprocessing requires version 2.6 or later of python" + sys.exit(1) +- import _boto_multi.py ++ import _boto_multi + else: +- import _boto_single.py ++ import _boto_single + diff --git a/community/gogglesmm/PKGBUILD b/community/gogglesmm/PKGBUILD index f38a3f005..b90a3f8f8 100644 --- a/community/gogglesmm/PKGBUILD +++ b/community/gogglesmm/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 56576 2011-10-08 22:42:27Z spupykin $ +# $Id: PKGBUILD 60238 2011-12-08 10:43:13Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Sander Jansen <sander@knology.net> pkgname=gogglesmm -pkgver=0.12.4 -pkgrel=2 +pkgver=0.12.5 +pkgrel=1 pkgdesc="Music Manager and Player" arch=('i686' 'x86_64') url="http://code.google.com/p/gogglesmm/" @@ -15,7 +15,7 @@ makedepends=('pkgconfig' 'glproto' 'dri2proto') replaces=('musicmanager') conflicts=('musicmanager') source=(http://gogglesmm.googlecode.com/files/gogglesmm-$pkgver.tar.bz2) -md5sums=('ddbc41ecc6cfcf8958dbe2bca47e79e6') +md5sums=('07e92bcf2daf39d6b380590816edd013') build() { cd $srcdir/gogglesmm-$pkgver diff --git a/community/libvirt/PKGBUILD b/community/libvirt/PKGBUILD index 69316ce92..30758edc2 100644 --- a/community/libvirt/PKGBUILD +++ b/community/libvirt/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 60010 2011-12-03 08:06:57Z spupykin $ +# $Id: PKGBUILD 60240 2011-12-08 11:32:20Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Jonathan Wiersma <archaur at jonw dot org> pkgname=libvirt -pkgver=0.9.7 -pkgrel=2 +pkgver=0.9.8 +pkgrel=1 pkgdesc="API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)" arch=('i686' 'x86_64') url="http://libvirt.org/" @@ -37,7 +37,7 @@ source=("http://libvirt.org/sources/$pkgname-$pkgver.tar.gz" openbsd-netcat-default.patch unixperms.patch yajl-2.x.patch) -md5sums=('4308b3f4d23f5b0c5196260a9a22a38b' +md5sums=('5bb74092e469d773c3d63128a8c57501' 'c43244c40a0437038c82089618e7beaa' '3ed0e24f5b5e25bf553f5427d64915e6' '737ec24aa56871fbabfa892789457db4' diff --git a/community/qlandkartegt/PKGBUILD b/community/qlandkartegt/PKGBUILD index 6211e7f17..e3f05159e 100644 --- a/community/qlandkartegt/PKGBUILD +++ b/community/qlandkartegt/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 58530 2011-11-13 16:03:22Z andrea $ +# $Id: PKGBUILD 60267 2011-12-08 19:52:00Z jlichtblau $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Matthias Maennich <arch@maennich.net> # Contributor: <boenki@gmx.de> pkgname=qlandkartegt -pkgver=1.2.4 +pkgver=1.3.1 pkgrel=1 pkgdesc="Use your GPS with Linux" arch=('i686' 'x86_64') @@ -16,18 +16,14 @@ optdepends=('garmindev: to connect garmin devices') install=$pkgname.install changelog=$pkgname.changelog source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz - $pkgname-mimetypes.xml - 'fix-glu-header.patch') -sha256sums=('3f87667ceffde60a7c533df7e25f375793a093970d89bfa1cd842b3595c58f2c' - 'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0' - '8e8c6440e1674a87d5a221c978f2be832457fb43980894725044837581625618') + $pkgname-mimetypes.xml) +sha256sums=('77a387856e2d41f9ea69f750cbac9bb49fa249d65bdef5e319bfa6f7c9f84121' + 'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0') build() { - cd "${srcdir}/$pkgname-$pkgver" + cd ${srcdir}/$pkgname-$pkgver - patch -R -p2 -i "${srcdir}"/fix-glu-header.patch - - cd "${srcdir}" + cd ${srcdir} mkdir build cd build @@ -38,10 +34,10 @@ build() { } package(){ - cd "${srcdir}/build" + cd ${srcdir}/build - make DESTDIR="${pkgdir}" install + make DESTDIR=${pkgdir} install - install -D -m644 "${srcdir}/$pkgname-mimetypes.xml" \ - "${pkgdir}/usr/share/mime/packages/$pkgname-mimetypes.xml" + install -D -m644 ${srcdir}/$pkgname-mimetypes.xml \ + ${pkgdir}/usr/share/mime/packages/$pkgname-mimetypes.xml } diff --git a/community/qlandkartegt/qlandkartegt.changelog b/community/qlandkartegt/qlandkartegt.changelog index 531d2ebe5..59d0e9a59 100644 --- a/community/qlandkartegt/qlandkartegt.changelog +++ b/community/qlandkartegt/qlandkartegt.changelog @@ -1,3 +1,6 @@ +2011-12-08 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * qlandkartegt 1.3.1-1 + 2011-10-09 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> * qlandkartegt 1.2.4-1 diff --git a/community/qtfm/PKGBUILD b/community/qtfm/PKGBUILD index 555f01db7..5ca145662 100644 --- a/community/qtfm/PKGBUILD +++ b/community/qtfm/PKGBUILD @@ -1,26 +1,29 @@ -# $Id: PKGBUILD 57268 2011-10-25 05:38:14Z ebelanger $ -# Maintainer: Brad Fanella <bradfanella@archlinux.us> +# $Id: PKGBUILD 60270 2011-12-08 20:02:24Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Brad Fanella <bradfanella@archlinux.us> # Contributor: Wittfella <wittfella@wittfella.com> pkgname=qtfm -pkgver=5.1 +pkgver=5.2 pkgrel=1 pkgdesc="A lightweight file manager" arch=('i686' 'x86_64') -url="http://www.qtfm.org" +url="http://www.qtfm.org/" license=('GPL') depends=('qt') -install=qtfm.install +install=$pkgname.install source=(http://www.qtfm.org/$pkgname-$pkgver.tar.gz) -md5sums=('e7e079d2586b46ce80998c52b777cb88') +sha256sums=('289b93956958729ccf02657acf7745d4ba621bfb18e8180988196a0a1310e99b') build() { - cd "$srcdir/$pkgname-$pkgver" + cd ${srcdir}/$pkgname-$pkgver + qmake make } package() { - cd "$srcdir/$pkgname-$pkgver" - make INSTALL_ROOT="$pkgdir" install + cd ${srcdir}/$pkgname-$pkgver + + make INSTALL_ROOT=${pkgdir} install } diff --git a/community/stunnel/PKGBUILD b/community/stunnel/PKGBUILD index cd681ede7..17296a913 100644 --- a/community/stunnel/PKGBUILD +++ b/community/stunnel/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 58274 2011-11-09 16:42:13Z lfleischer $ +# $Id: PKGBUILD 60289 2011-12-08 23:55:42Z lfleischer $ # Maintainer: Kaiting Chen <kaitocracy@gmail.com> # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> # Contributor: Kevin Piche <kevin@archlinux.org> pkgname=stunnel -pkgver=4.46 +pkgver=4.50 pkgrel=1 pkgdesc="A program that allows you to encrypt arbitrary TCP connections inside SSL" arch=('i686' 'x86_64') @@ -16,8 +16,8 @@ options=('!libtool') source=("ftp://ftp.stunnel.org/stunnel/$pkgname-$pkgver.tar.gz"{,.asc} 'Makefile.patch' 'stunnel.rc.d') -md5sums=('978030ff42f087ec26eb8a095ab69994' - 'dcd8d51b8591d4d1df50373646a363b8' +md5sums=('d68b4565294496a8bdf23c728a679f53' + 'ea9e85daef0cc96ce21649901b3514f7' 'f15398497e10e080c2406d2fc541660c' 'cb647c71ff4cb1e035b6e515d5f13ebf') diff --git a/community/unrtf/PKGBUILD b/community/unrtf/PKGBUILD index 9797c8e52..1b3950de9 100644 --- a/community/unrtf/PKGBUILD +++ b/community/unrtf/PKGBUILD @@ -1,26 +1,32 @@ -# $Id: PKGBUILD 8335 2010-01-18 20:36:57Z jlichtblau $ +# $Id: PKGBUILD 60272 2011-12-08 20:04:08Z jlichtblau $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Alexander Fehr <pizzapunk gmail com> # Contributor: froggie <sullivanva@gmail.com> pkgname=unrtf -pkgver=0.21.1 +pkgver=0.21.2 pkgrel=1 pkgdesc="Command-line program which converts RTF documents to other formats" arch=('i686' 'x86_64') url="http://www.gnu.org/software/unrtf/unrtf.html" license=('GPL3') depends=('glibc') +changelog=$pkgname.changelog source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('ce069646837d0a2c15b439a5529afde8') +sha256sums=('acb1b093dd2c7485fc43b128ccaf665d6188f568752cec96d54b693374caddb0') build() { cd ${srcdir}/$pkgname-$pkgver # bugfix FS#14043 - sed -e 's|/usr/local|/usr|' -i src/{main.h,path.h} || return 1 + sed -e 's|/usr/local|/usr|' -i src/{main.h,path.h} ./configure --prefix=/usr - make || return 1 + make +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + make DESTDIR=${pkgdir} install } diff --git a/community/unrtf/unrtf.changelog b/community/unrtf/unrtf.changelog new file mode 100644 index 000000000..04b898b16 --- /dev/null +++ b/community/unrtf/unrtf.changelog @@ -0,0 +1,11 @@ +2011-12-08 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * unrtf 0.21.2 + +2010-01-18 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release 0.21.1 + +2009-05-31 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * FS#14043 fixed + +2009-03-25 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release 0.21.0 diff --git a/core/binutils/PKGBUILD b/core/binutils/PKGBUILD index 6e37940ad..7281e8ce8 100644 --- a/core/binutils/PKGBUILD +++ b/core/binutils/PKGBUILD @@ -1,28 +1,28 @@ -# $Id: PKGBUILD 135920 2011-08-20 07:14:19Z allan $ +# $Id: PKGBUILD 144850 2011-12-08 12:17:07Z allan $ # Maintainer: Allan McRae <allan@archlinux.org> # toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc pkgname=binutils -pkgver=2.21.1 +pkgver=2.22 pkgrel=2 -_date=20110627 +_date=20111201 pkgdesc="A set of programs to assemble and manipulate binary and object files" arch=('i686' 'x86_64') url="http://www.gnu.org/software/binutils/" license=('GPL') -groups=('base') +groups=('base-devel') depends=('glibc>=2.14' 'zlib') checkdepends=('dejagnu') options=('!libtool' '!distcc' '!ccache') install=binutils.install source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}_${_date}.tar.bz2) -md5sums=('2face559e80d649ba148e42bb2d1fb0f') +md5sums=('77c15027ac112c65fd5f73ca91b0651c') mksource() { mkdir ${pkgname}-${_date} cd ${pkgname}-${_date} - export _TAG=binutils-2_21-branch + export _TAG=binutils-2_22-branch export 'CVSROOT=:pserver:anoncvs@sourceware.org:/cvs/src' cvs -z9 co -r $_TAG binutils || return 1 mv src binutils diff --git a/core/fakeroot/PKGBUILD b/core/fakeroot/PKGBUILD index cb27de18c..1fb2370ff 100644 --- a/core/fakeroot/PKGBUILD +++ b/core/fakeroot/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 139748 2011-10-04 21:10:33Z allan $ +# $Id: PKGBUILD 144854 2011-12-08 12:17:14Z allan $ # Maintainer: Allan McRae <allan@archlinux.org> # Contributor: Jochem Kossen <j.kossen@home.nl> pkgname=fakeroot -pkgver=1.18.1 +pkgver=1.18.2 pkgrel=1 pkgdesc="Gives a fake root environment, useful for building packages as a non-privileged user" arch=('i686' 'x86_64') @@ -14,7 +14,7 @@ install=fakeroot.install depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh') options=('!libtool') source=(http://ftp.debian.org/debian/pool/main/f/${pkgname}/${pkgname}_${pkgver}.orig.tar.bz2) -md5sums=('8eedda3dcb71b6ab6f62297b82ae5ac6') +md5sums=('79f32331358ad58499704ea5e19fd0ae') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/core/gcc/PKGBUILD b/core/gcc/PKGBUILD index 9d324aff9..409794f25 100644 --- a/core/gcc/PKGBUILD +++ b/core/gcc/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141368 2011-10-30 06:46:42Z allan $ +# $Id: PKGBUILD 144846 2011-12-08 12:16:58Z allan $ # Maintainer: Allan McRae <allan@archlinux.org> # toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc @@ -6,25 +6,27 @@ pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-ada' 'gcc-go') pkgver=4.6.2 -pkgrel=1 -#_snapshot=4.6-20110819 +pkgrel=3 +_snapshot=4.6-20111125 _libstdcppmanver=20110814 # Note: check source directory name when updating this pkgdesc="The GNU Compiler Collection" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL' 'custom') url="http://gcc.gnu.org" -makedepends=('binutils>=2.21-9' 'libmpc' 'cloog' 'ppl' 'gcc-ada') +makedepends=('binutils>=2.22' 'libmpc' 'cloog' 'ppl' 'gcc-ada') checkdepends=('dejagnu') options=('!libtool' '!emptydirs') -source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2 - #ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2 +source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2 + ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2 ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/libstdc++-api.${_libstdcppmanver}.man.tar.bz2 gcc_pure64.patch - gcc-hash-style-both.patch) -md5sums=('028115c4fbfb6cfd75d6369f4a90d87e' + gcc-hash-style-both.patch + gcc-pr49720.patch) +md5sums=('922b0ee688669c188d237bbd21d42d07' 'ce920d2550ff7e042b9f091d27764d8f' '4030ee1c08dd1e843c0225b772360e76' - '4df25b623799b148a0703eaeec8fdf3f') + '4df25b623799b148a0703eaeec8fdf3f' + 'f9d7e5b792c59175f3da3f8421447512') if [ -n "${_snapshot}" ]; then _basedir="${srcdir}/gcc-${_snapshot}" @@ -46,6 +48,9 @@ build() { fi patch -Np0 -i ${srcdir}/gcc-hash-style-both.patch + # fix compiler segfault in binutils testsuite + patch -Np1 -i ${srcdir}/gcc-pr49720.patch + echo ${pkgver} > gcc/BASE-VER cd ${srcdir} @@ -113,7 +118,7 @@ package_gcc-libs() package_gcc() { pkgdesc="The GNU Compiler Collection - C and C++ frontends" - depends=("gcc-libs=$pkgver-$pkgrel" 'binutils>=2.21.1' 'libmpc' 'cloog' 'ppl') + depends=("gcc-libs=$pkgver-$pkgrel" 'binutils>=2.22' 'libmpc' 'cloog' 'ppl') groups=('base-devel') install=gcc.install diff --git a/core/gcc/gcc-pr49720.patch b/core/gcc/gcc-pr49720.patch new file mode 100644 index 000000000..8f50c4120 --- /dev/null +++ b/core/gcc/gcc-pr49720.patch @@ -0,0 +1,26 @@ +--- trunk/gcc/simplify-rtx.c 2011/10/28 05:55:10 180603 ++++ trunk/gcc/simplify-rtx.c 2011/10/28 06:35:31 180604 +@@ -4352,10 +4352,20 @@ + { + rtx x = XEXP (op0, 0); + rtx c = XEXP (op0, 1); ++ enum rtx_code invcode = op0code == PLUS ? MINUS : PLUS; ++ rtx tem = simplify_gen_binary (invcode, cmp_mode, op1, c); + +- c = simplify_gen_binary (op0code == PLUS ? MINUS : PLUS, +- cmp_mode, op1, c); +- return simplify_gen_relational (code, mode, cmp_mode, x, c); ++ /* Detect an infinite recursive condition, where we oscillate at this ++ simplification case between: ++ A + B == C <---> C - B == A, ++ where A, B, and C are all constants with non-simplifiable expressions, ++ usually SYMBOL_REFs. */ ++ if (GET_CODE (tem) == invcode ++ && CONSTANT_P (x) ++ && rtx_equal_p (c, XEXP (tem, 1))) ++ return NULL_RTX; ++ ++ return simplify_gen_relational (code, mode, cmp_mode, x, tem); + } + + /* (ne:SI (zero_extract:SI FOO (const_int 1) BAR) (const_int 0))) is diff --git a/core/glibc/PKGBUILD b/core/glibc/PKGBUILD index dd77756e3..0be9ebb2f 100644 --- a/core/glibc/PKGBUILD +++ b/core/glibc/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141374 2011-10-30 06:48:27Z allan $ +# $Id: PKGBUILD 144848 2011-12-08 12:17:04Z allan $ # Maintainer: Allan McRae <allan@archlinux.org> # toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc @@ -6,14 +6,14 @@ pkgname=glibc pkgver=2.14.1 -pkgrel=1 +pkgrel=2 _glibcdate=20111025 pkgdesc="GNU C Library" arch=('i686' 'x86_64') url="http://www.gnu.org/software/libc" license=('GPL' 'LGPL') groups=('base') -depends=('linux-api-headers>=3.0' 'tzdata') +depends=('linux-api-headers>=3.1' 'tzdata') makedepends=('gcc>=4.6') backup=(etc/gai.conf etc/locale.gen diff --git a/core/linux-api-headers/PKGBUILD b/core/linux-api-headers/PKGBUILD index cc3c67a28..bb8c88799 100644 --- a/core/linux-api-headers/PKGBUILD +++ b/core/linux-api-headers/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 135918 2011-08-20 07:14:16Z allan $ +# $Id: PKGBUILD 144852 2011-12-08 12:17:11Z allan $ # Maintainer: Allan McRae <allan@archlinux.org> # toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc pkgname=linux-api-headers -pkgver=3.0.1 -_basever=3.0 +pkgver=3.1.4 +_basever=3.1 pkgrel=1 pkgdesc="Kernel headers sanitized for use in userspace" arch=('i686' 'x86_64') @@ -14,10 +14,13 @@ license=('GPL2') provides=("kernel-headers=${pkgver}") conflicts=('kernel-headers') replaces=('kernel-headers') -source=(http://www.kernel.org/pub/linux/kernel/v${_basever}/linux-${_basever}.tar.bz2 - http://www.kernel.org/pub/linux/kernel/v${_basever}/patch-${pkgver}.bz2) -md5sums=('398e95866794def22b12dfbc15ce89c0' - 'ac49f7907f1fc85fbab92d0f1aa1552a') +source=(http://www.kernel.org/pub/linux/kernel/v3.x/linux-${_basever}.tar.xz + http://www.kernel.org/pub/linux/kernel/v3.x/patch-${pkgver}.xz) +# NOTE: signatures are not automatically verified by makepkg + #http://www.kernel.org/pub/linux/kernel/v3.x/linux-${_basever}.tar.sign + #http://www.kernel.org/pub/linux/kernel/v3.x/patch-${pkgver}.sign +md5sums=('edbdc798f23ae0f8045c82f6fa22c536' + 'ffb768bb3c42c94876f3f84aa6f779e5') build() { cd ${srcdir}/linux-${_basever} diff --git a/extra/audacious/PKGBUILD b/extra/audacious/PKGBUILD index efe437ee0..1f8957f6a 100644 --- a/extra/audacious/PKGBUILD +++ b/extra/audacious/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 142549 2011-11-11 23:52:56Z bisson $ +# $Id: PKGBUILD 144890 2011-12-09 03:35:28Z bisson $ # Contributor: Alexander Fehr <pizzapunk gmail com> # Contributor: Giovanni Scafora <giovanni@archlinux.org> # Maintainer: Gaetan Bisson <bisson@archlinux.org> pkgname=audacious -pkgver=3.1 -pkgrel=2 +pkgver=3.1.1 +pkgrel=1 pkgdesc='Lightweight, GTK-based advanced audio player focused on audio quality' url='http://audacious-media-player.org/' license=('GPL3') @@ -13,8 +13,8 @@ arch=('i686' 'x86_64') depends=('gtk3' 'dbus-glib' 'libguess' 'libsm' 'audacious-plugins' 'hicolor-icon-theme' 'gtk-update-icon-cache' 'desktop-file-utils') optdepends=('unzip: zipped skins support') -source=("http://distfiles.atheme.org/${pkgname}-${pkgver}.tar.gz") -sha1sums=('53d89b3e2faf5ca13dca55875dc04efc753328f2') +source=("http://distfiles.atheme.org/${pkgname}-${pkgver}.tar.bz2") +sha1sums=('fa5629d68ac1b12d563e8c0b4be083dea7c7924c') provides=('audacious-player') replaces=('audacious-player') diff --git a/extra/claws-mail/PKGBUILD b/extra/claws-mail/PKGBUILD index 2b68bab55..500ba4c05 100644 --- a/extra/claws-mail/PKGBUILD +++ b/extra/claws-mail/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 136387 2011-08-28 17:30:31Z andyrtr $ +# $Id: PKGBUILD 144878 2011-12-08 21:06:16Z andyrtr $ # Maintainer: Andreas Radke <andyrtr@archlinux.org> pkgname=claws-mail pkgver=3.7.10 -pkgrel=1 +pkgrel=2 pkgdesc="A GTK+ based e-mail client." arch=('i686' 'x86_64') license=('GPL3') @@ -19,12 +19,17 @@ replaces=('sylpheed-claws') provides=('claws') options=(!libtool) install=claws-mail.install -source=(http://downloads.sourceforge.net/sourceforge/sylpheed-claws/${pkgname}-${pkgver}.tar.bz2) -md5sums=('fcf58dcff52f0908ff3bc368d820408b') +source=(http://downloads.sourceforge.net/sourceforge/sylpheed-claws/${pkgname}-${pkgver}.tar.bz2 + gnutls_buildfix.patch) +md5sums=('fcf58dcff52f0908ff3bc368d820408b' + '372bf7a9da58ae49d9da50f79db69fb6') build() { cd ${srcdir}/${pkgname}-${pkgver} + # fix build with latest gnutls + patch -Np1 -i ${srcdir}/gnutls_buildfix.patch + sed -i 's@^#!.*python.*@#!/usr/bin/python2@' tools/*.py ./configure --prefix=/usr --disable-static \ diff --git a/extra/claws-mail/gnutls_buildfix.patch b/extra/claws-mail/gnutls_buildfix.patch new file mode 100644 index 000000000..31de8eb8b --- /dev/null +++ b/extra/claws-mail/gnutls_buildfix.patch @@ -0,0 +1,12 @@ +--- claws-mail-3.7.10/src/common/ssl.c 2011-12-07 14:55:08.682553870 +0100 ++++ claws-mail-3.7.10/src/common/ssl.c 2011-12-07 14:55:43.808349602 +0100 +@@ -270,7 +270,9 @@ gboolean ssl_init_socket_with_method(Soc + if (session == NULL || r != 0) + return FALSE; + ++#if GNUTLS_VERSION_NUMBER < 0x020c00 + gnutls_transport_set_lowat (session, 1); ++#endif + gnutls_set_default_priority(session); + gnutls_protocol_set_priority (session, proto_prio); + gnutls_cipher_set_priority (session, cipher_prio); diff --git a/extra/gettext-mono/PKGBUILD b/extra/gettext-mono/PKGBUILD index 4ecbe0a05..9e89644a8 100644 --- a/extra/gettext-mono/PKGBUILD +++ b/extra/gettext-mono/PKGBUILD @@ -1,16 +1,16 @@ -# $Id: PKGBUILD 69576 2010-02-21 06:28:43Z allan $ +# $Id: PKGBUILD 144881 2011-12-08 21:14:16Z daniel $ # Maintainer: Daniel Isenmann <daniel@archlinux.org> pkgname=gettext-mono -pkgver=0.17 -pkgrel=4 +pkgver=0.18.1.1 +pkgrel=1 pkgdesc="mono assemblies for GNU internationalization library" arch=('i686' 'x86_64') url="http://www.gnu.org/software/gettext" -license=('GPL3') -depends=('mono>=1.9') +license=('GPL') +depends=('mono>=2.10.6') source=(ftp://ftp.gnu.org/pub/gnu/gettext/gettext-$pkgver.tar.gz) -md5sums=('58a2bc6d39c0ba57823034d55d65d606') +md5sums=('3dd55b952826d2b32f51308f2f91aa89') build() { # get rid of that .wapi errors; thanks to brice diff --git a/extra/kdeaccessibility/PKGBUILD b/extra/kdeaccessibility/PKGBUILD index 1825e02dd..ef9e26785 100644 --- a/extra/kdeaccessibility/PKGBUILD +++ b/extra/kdeaccessibility/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141787 2011-11-02 18:13:09Z andrea $ +# $Id: PKGBUILD 144651 2011-12-08 09:19:14Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -8,7 +8,7 @@ pkgname=('kdeaccessibility-jovie' 'kdeaccessibility-kmag' 'kdeaccessibility-kmousetool' 'kdeaccessibility-kmouth') -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 arch=('i686' 'x86_64') url='http://accessibility.kde.org' @@ -16,7 +16,7 @@ license=('GPL' 'FDL') groups=('kde' 'kdeaccessibility') makedepends=('pkgconfig' 'cmake' 'automoc4' 'kdelibs' 'speech-dispatcher') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('9695d2b8b6f55266e3f76ebf05543f23857b9520') +sha1sums=('03f4ac8234dcc49eb93eff3630f76e226e290fff') build() { cd ${srcdir} diff --git a/extra/kdeadmin/PKGBUILD b/extra/kdeadmin/PKGBUILD index 0299a0f71..21db0e72b 100644 --- a/extra/kdeadmin/PKGBUILD +++ b/extra/kdeadmin/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141789 2011-11-02 18:13:14Z andrea $ +# $Id: PKGBUILD 144653 2011-12-08 09:19:17Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -7,7 +7,7 @@ pkgname=('kdeadmin-kcron' 'kdeadmin-ksystemlog' 'kdeadmin-kuser' 'kdeadmin-system-config-printer-kde') -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -17,7 +17,7 @@ makedepends=('pkgconfig' 'cmake' 'automoc4' 'kdebindings-python' 'system-config-printer-common') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2" 'syslog-path.patch') -sha1sums=('b2d6d210bc40e8731a9ae8409673f3d71b57de0a' +sha1sums=('1a294315645adbbff348a380196d4300a408b70d' '20095ce6e0f3e5b6800a7c6e52de6fddba62c031') build() { diff --git a/extra/kdeartwork/PKGBUILD b/extra/kdeartwork/PKGBUILD index 2bc68659c..085a5538d 100644 --- a/extra/kdeartwork/PKGBUILD +++ b/extra/kdeartwork/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141791 2011-11-02 18:13:17Z andrea $ +# $Id: PKGBUILD 144655 2011-12-08 09:19:19Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -13,7 +13,7 @@ pkgname=('kdeartwork-aurorae' 'kdeartwork-styles' 'kdeartwork-wallpapers' 'kdeartwork-weatherwallpapers') -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -22,7 +22,7 @@ groups=('kde' 'kdeartwork') makedepends=('pkgconfig' 'cmake' 'automoc4' 'xscreensaver' 'eigen' 'kdebase-workspace' 'libkexiv2') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('4d3611cbcd6052a7ba7137baa196c654d9d38d4d') +sha1sums=('f397f49a73273baadabcaf45cf18c4d6a3efbe44') build() { cd $srcdir diff --git a/extra/kdebase-konsole/PKGBUILD b/extra/kdebase-konsole/PKGBUILD index dd9747488..e5a13d3b6 100644 --- a/extra/kdebase-konsole/PKGBUILD +++ b/extra/kdebase-konsole/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141793 2011-11-02 18:13:21Z andrea $ +# $Id: PKGBUILD 144657 2011-12-08 09:19:21Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebase-konsole -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 arch=('i686' 'x86_64') url='http://kde.org/applications/system/konsole/' @@ -12,7 +12,7 @@ groups=('kde' 'kdebase') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/konsole-${pkgver}.tar.bz2") -sha1sums=('ecf5d1cc087d78ba049fe65e06ee992a2fadcc19') +sha1sums=('33e1bc6f1043c9bf6186190b66b21483301eac7e') build() { cd "${srcdir}" diff --git a/extra/kdebase-runtime/PKGBUILD b/extra/kdebase-runtime/PKGBUILD index 9229e0feb..c7e92d573 100644 --- a/extra/kdebase-runtime/PKGBUILD +++ b/extra/kdebase-runtime/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 141749 2011-11-02 18:12:12Z andrea $ +# $Id: PKGBUILD 144615 2011-12-08 09:18:15Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdebase-runtime -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="KDE Base Runtime Environment" arch=('i686' 'x86_64') @@ -18,7 +18,7 @@ optdepends=('htdig: to build the search index in khelpcenter' install="${pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.bz2" 'libqzeitgeist08.patch') -sha1sums=('293dec26e0d7278396d2ad0240d14aeea6060970' +sha1sums=('bf5c266b7748cda44cc3a2fb231a2d6dde2b09f6' '164c9e4305029cb68a2101cfeeb76c7066c2fd39') build() { diff --git a/extra/kdebase-workspace/PKGBUILD b/extra/kdebase-workspace/PKGBUILD index 9b4f01a00..04a993706 100644 --- a/extra/kdebase-workspace/PKGBUILD +++ b/extra/kdebase-workspace/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 141771 2011-11-02 18:12:45Z andrea $ +# $Id: PKGBUILD 144857 2011-12-08 16:10:09Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdebase-workspace _pkgname=kde-workspace -pkgver=4.7.3 -pkgrel=3 +pkgver=4.7.4 +pkgrel=2 pkgdesc="KDE Base Workspace" arch=('i686' 'x86_64') url='http://www.kde.org' @@ -32,10 +32,9 @@ backup=('usr/share/config/kdm/kdmrc' 'etc/pam.d/kscreensaver') options=('emptydirs') source=("http://download.kde.org/stable/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2" - 'kdm-zsh-profile.patch' 'kdm' 'kde.pam' 'kde-np.pam' 'kscreensaver.pam' + 'kdm' 'kde.pam' 'kde-np.pam' 'kscreensaver.pam' 'fixpath.patch' 'terminate-server.patch' 'kdm-xinitrd.patch') -sha1sums=('f3ed24e3e70671033718a5139cb61d0d7e2e709e' - '8c2bdefb23a03b753b78d16944d03fa3939d2d99' +sha1sums=('b7810ba13f6f2a1c4783b153ad9349a1dd27b495' '5db3a245201bd4a50e65aa2ef583cf5490e4f646' 'f7b38af38549242a240f1a90ab9964ca8a366129' '603cc79c4d2b4eae62bb5f244aeecb3a778b5516' @@ -46,7 +45,6 @@ sha1sums=('f3ed24e3e70671033718a5139cb61d0d7e2e709e' build() { cd "${srcdir}"/${_pkgname}-${pkgver} - patch -p0 -i "${srcdir}"/kdm-zsh-profile.patch patch -p1 -i "${srcdir}"/kdm-xinitrd.patch patch -p0 -i "${srcdir}"/fixpath.patch patch -p0 -i "${srcdir}"/terminate-server.patch diff --git a/extra/kdebase/PKGBUILD b/extra/kdebase/PKGBUILD index f2d7e1d1c..5511a4524 100644 --- a/extra/kdebase/PKGBUILD +++ b/extra/kdebase/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141773 2011-11-02 18:12:47Z andrea $ +# $Id: PKGBUILD 144637 2011-12-08 09:18:50Z 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.7.3 +pkgver=4.7.4 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -20,7 +20,7 @@ license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdebase') makedepends=('kdelibs' 'pkgconfig' 'cmake' 'automoc4' 'tidyhtml') source=("http://download.kde.org/stable/${pkgver}/src/kde-baseapps-${pkgver}.tar.bz2") -sha1sums=('952dc26d0d908b41973a8d7b4d27765bf5128d58') +sha1sums=('ad4b6d8479bcf8be49b5f53ee8fdcc1b3d1106d6') build() { cd ${srcdir} diff --git a/extra/kdebindings-kimono/PKGBUILD b/extra/kdebindings-kimono/PKGBUILD index cf715cad6..4e80a6b37 100644 --- a/extra/kdebindings-kimono/PKGBUILD +++ b/extra/kdebindings-kimono/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141795 2011-11-02 18:13:24Z andrea $ +# $Id: PKGBUILD 144659 2011-12-08 09:19:23Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-kimono -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc=".NET/Mono bindings for the KDE libraries" url="http://kde.org/" @@ -13,7 +13,7 @@ depends=('kdebindings-qyoto' 'kdebindings-smokekde') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost' 'kdepimlibs') conflicts=('kdebindings-csharp') source=("http://download.kde.org/stable/${pkgver}/src/kimono-${pkgver}.tar.bz2") -sha1sums=('d87622d46bce9a5f8b875393ac2292f5a57d5f78') +sha1sums=('8f260e09bffcf74bad18a5168016d0dad5db3656') build() { cd "${srcdir}" diff --git a/extra/kdebindings-korundum/PKGBUILD b/extra/kdebindings-korundum/PKGBUILD index eb47d0c3e..4f5b5d058 100644 --- a/extra/kdebindings-korundum/PKGBUILD +++ b/extra/kdebindings-korundum/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141797 2011-11-02 18:13:27Z andrea $ +# $Id: PKGBUILD 144855 2011-12-08 14:50:20Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-korundum -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="KDE bindings for ruby" url="http://kde.org/" @@ -14,7 +14,7 @@ makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost' 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate') conflicts=('kdebindings-ruby') source=("http://download.kde.org/stable/${pkgver}/src/korundum-${pkgver}.tar.bz2") -sha1sums=('bf41817298a8b18ba3542e45256c1c6ddb08c900') +sha1sums=('e220dc672461aa1369e58de325f980139fcd52f6') build() { cd "${srcdir}" diff --git a/extra/kdebindings-kross/PKGBUILD b/extra/kdebindings-kross/PKGBUILD index efec3a3de..7a0acda54 100644 --- a/extra/kdebindings-kross/PKGBUILD +++ b/extra/kdebindings-kross/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 141799 2011-11-02 18:13:30Z andrea $ +# $Id: PKGBUILD 144663 2011-12-08 09:19:28Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgbase=kdebindings-kross pkgname=('kdebindings-kross-python' # 'kdebindings-kross-ruby' 'kdebindings-kross-java') -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 url="http://kde.org/" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') makedepends=('kdelibs' 'cmake' 'automoc4' 'python2' 'openjdk6') source=("http://download.kde.org/stable/${pkgver}/src/kross-interpreters-${pkgver}.tar.bz2") -sha1sums=('3e31b85d1a27a273450652d9f5a33f2c3c035329') +sha1sums=('416e9f25ff2050d9c5518254a7cc7d4cad22b648') build() { cd "${srcdir}" diff --git a/extra/kdebindings-perlkde/PKGBUILD b/extra/kdebindings-perlkde/PKGBUILD index a5c0dc4ee..3221d387d 100644 --- a/extra/kdebindings-perlkde/PKGBUILD +++ b/extra/kdebindings-perlkde/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141801 2011-11-02 18:13:33Z andrea $ +# $Id: PKGBUILD 144665 2011-12-08 09:19:30Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-perlkde -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Perl bindings for the KDE libraries" url="http://kde.org/" @@ -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.bz2") -sha1sums=('e0cc0d644084f1c71b6afc30d5467c49ba9a9fab') +sha1sums=('7116668ecd5baf55734a8349a2f0b04d0e701898') build() { cd "${srcdir}" diff --git a/extra/kdebindings-perlqt/PKGBUILD b/extra/kdebindings-perlqt/PKGBUILD index 2b83667eb..8da5065ee 100644 --- a/extra/kdebindings-perlqt/PKGBUILD +++ b/extra/kdebindings-perlqt/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141763 2011-11-02 18:12:32Z andrea $ +# $Id: PKGBUILD 144627 2011-12-08 09:18:32Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-perlqt -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Perl bindings for the Qt libraries" url="http://kde.org/" @@ -12,7 +12,7 @@ groups=('kdebindings') depends=('kdebindings-smokeqt') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') source=("http://download.kde.org/stable/${pkgver}/src/perlqt-${pkgver}.tar.bz2") -sha1sums=('6e69719edccb23e3ced7ba30b72e88d214d6f54e') +sha1sums=('b4b3d8ce2b08af62202f5ae79fe57bde60dd9a85') build() { cd "${srcdir}" diff --git a/extra/kdebindings-python/PKGBUILD b/extra/kdebindings-python/PKGBUILD index d368050aa..42a4f02ea 100644 --- a/extra/kdebindings-python/PKGBUILD +++ b/extra/kdebindings-python/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141765 2011-11-02 18:12:34Z andrea $ +# $Id: PKGBUILD 144629 2011-12-08 09:18:34Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-python -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="KDE bindings for Python" url="http://kde.org/" @@ -12,7 +12,7 @@ groups=('kdebindings') depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs') makedepends=('cmake' 'automoc4' 'boost') source=("http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.bz2") -sha1sums=('16063793d39fdc9f5b9916cab49236103ce79da2') +sha1sums=('cac4b94098dba73d58fb4f7d73d7c65c306517d1') build() { cd "${srcdir}" diff --git a/extra/kdebindings-qtruby/PKGBUILD b/extra/kdebindings-qtruby/PKGBUILD index 36a18928a..94c565d6c 100644 --- a/extra/kdebindings-qtruby/PKGBUILD +++ b/extra/kdebindings-qtruby/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141769 2011-11-02 18:12:40Z andrea $ +# $Id: PKGBUILD 144633 2011-12-08 09:18:43Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-qtruby -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Qt bindings for ruby" url="http://kde.org/" @@ -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.bz2") -sha1sums=('2e3b36ece9039ccd39be76145575015503c6283c') +sha1sums=('e49e38a59238cf6f5ec9c2d9afc06f3330369fc7') build() { cd "${srcdir}" diff --git a/extra/kdebindings-qyoto/PKGBUILD b/extra/kdebindings-qyoto/PKGBUILD index be62acaca..fda759ab3 100644 --- a/extra/kdebindings-qyoto/PKGBUILD +++ b/extra/kdebindings-qyoto/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141767 2011-11-02 18:12:38Z andrea $ +# $Id: PKGBUILD 144631 2011-12-08 09:18:38Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-qyoto -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc=".NET/Mono bindings for the Qt libraries" url="http://kde.org/" @@ -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.bz2") -sha1sums=('676042633b8c426adf1f47ad143f5db20ae257ef') +sha1sums=('8f2412a8bbb343bdb1e14c0fc6ef3681afe9d601') build() { cd "${srcdir}" diff --git a/extra/kdebindings-smokegen/PKGBUILD b/extra/kdebindings-smokegen/PKGBUILD index 42726122b..f347e8860 100644 --- a/extra/kdebindings-smokegen/PKGBUILD +++ b/extra/kdebindings-smokegen/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141753 2011-11-02 18:12:18Z andrea $ +# $Id: PKGBUILD 144619 2011-12-08 09:18:20Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokegen -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="A general purpose C++ parser with a plugin infrastructure" url="http://kde.org/" @@ -11,10 +11,15 @@ license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') conflicts=('kdebindings-smoke') -source=("http://download.kde.org/stable/${pkgver}/src/smokegen-${pkgver}.tar.bz2") -sha1sums=('ede4095fdb190b3bef13b246111e7d79903ad77e') +source=("http://download.kde.org/stable/${pkgver}/src/smokegen-${pkgver}.tar.bz2" + 'fix-crash.patch') +sha1sums=('068d37e2404311b9caa23d78ee7fa262188a8622' + 'b209b2b7017622fea3406c5a9636e2334566af01') build() { + cd "${srcdir}"/smokegen-${pkgver} + patch -p1 -i "${srcdir}"/fix-crash.patch + cd "${srcdir}" mkdir build cd build diff --git a/extra/kdebindings-smokegen/fix-crash.patch b/extra/kdebindings-smokegen/fix-crash.patch new file mode 100644 index 000000000..5864da3f3 --- /dev/null +++ b/extra/kdebindings-smokegen/fix-crash.patch @@ -0,0 +1,13 @@ +diff -up smokegen-4.7.0/parser/type_compiler.cpp.orig smokegen-4.7.0/parser/type_compiler.cpp +diff -up smokegen-4.7.0/type_compiler.cpp.orig smokegen-4.7.0/type_compiler.cpp +--- smokegen-4.7.0/type_compiler.cpp.orig 2011-08-02 14:34:08.000000000 +0200 ++++ smokegen-4.7.0/type_compiler.cpp 2011-08-02 14:34:34.000000000 +0200 +@@ -191,6 +191,8 @@ void TypeCompiler::visitParameterDeclara + + void TypeCompiler::visitPtrOperator(PtrOperatorAST* node) + { ++ if ( ! m_session->token_stream ) return; ++ if ( ! token_text(m_session->token_stream->kind(node->op)) ) return; + if (token_text(m_session->token_stream->kind(node->op))[0] == '*') { + QPair<bool, bool> cv = m_visitor->parseCv(node->cv); + pointerDepth.append(cv.first); diff --git a/extra/kdebindings-smokekde/PKGBUILD b/extra/kdebindings-smokekde/PKGBUILD index d706a6408..bc29119ac 100644 --- a/extra/kdebindings-smokekde/PKGBUILD +++ b/extra/kdebindings-smokekde/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141761 2011-11-02 18:12:30Z andrea $ +# $Id: PKGBUILD 144625 2011-12-08 09:18:30Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokekde -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Language independent library for KDE bindings" url="http://kde.org/" @@ -14,7 +14,7 @@ makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost' 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate') conflicts=('kdebindings-smoke') source=("http://download.kde.org/stable/${pkgver}/src/smokekde-${pkgver}.tar.bz2") -sha1sums=('a25114d92c540f16af9022366ca2b5da447a1531') +sha1sums=('c3e2bd07158c4bc6a19123d5ae8e81529b52e07b') build() { cd "${srcdir}" diff --git a/extra/kdebindings-smokeqt/PKGBUILD b/extra/kdebindings-smokeqt/PKGBUILD index a35dd69a6..df5496acd 100644 --- a/extra/kdebindings-smokeqt/PKGBUILD +++ b/extra/kdebindings-smokeqt/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 142565 2011-11-12 08:14:45Z andrea $ +# $Id: PKGBUILD 144621 2011-12-08 09:18:24Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokeqt -pkgver=4.7.3 -pkgrel=2 +pkgver=4.7.4 +pkgrel=1 pkgdesc="Language independent library for Qt bindings" url="http://kde.org/" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'qimageblitz' 'qscintilla' 'kdebindings-smokegen') makedepends=('cmake' 'automoc4') conflicts=('kdebindings-smoke') source=("http://download.kde.org/stable/${pkgver}/src/smokeqt-${pkgver}.tar.bz2") -sha1sums=('cf1c4b7116695f0842972b2985eca65f6b63702e') +sha1sums=('2b1033732d166946db3096ddbf6eb9a6ddb61877') build() { cd "${srcdir}" diff --git a/extra/kdeedu-blinken/PKGBUILD b/extra/kdeedu-blinken/PKGBUILD index 67ecaf3e0..751311f91 100644 --- a/extra/kdeedu-blinken/PKGBUILD +++ b/extra/kdeedu-blinken/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141803 2011-11-02 18:13:36Z andrea $ +# $Id: PKGBUILD 144667 2011-12-08 09:19:33Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-blinken -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('24f09f604e1687062b3296a30b873d1781379543') +sha1sums=('edeb024db23da00cf896bc41c6e3efa371d9867d') build() { cd "${srcdir}" diff --git a/extra/kdeedu-cantor/PKGBUILD b/extra/kdeedu-cantor/PKGBUILD index cdd3e586b..979f2b369 100644 --- a/extra/kdeedu-cantor/PKGBUILD +++ b/extra/kdeedu-cantor/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141805 2011-11-02 18:13:40Z andrea $ +# $Id: PKGBUILD 144669 2011-12-08 09:19:38Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-cantor -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('ce6240d44cbf47b3dbfd1dbc03196c916e4394e9') +sha1sums=('da39832093c1ea6eb28c6b5b4f67cb24473d8fb5') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kalgebra/PKGBUILD b/extra/kdeedu-kalgebra/PKGBUILD index 7d574b806..3920893f2 100644 --- a/extra/kdeedu-kalgebra/PKGBUILD +++ b/extra/kdeedu-kalgebra/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141807 2011-11-02 18:13:43Z andrea $ +# $Id: PKGBUILD 144671 2011-12-08 09:19:43Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kalgebra -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Graph Calculator" url="http://kde.org/applications/education/kalgebra/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdeedu') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kalgebra-${pkgver}.tar.bz2") -sha1sums=('88cc89a6c942b7cef548532702c5e68bf75f0748') +sha1sums=('8ef005a50316d7d86b7bc1ed306380d69ce946a0') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kalzium/PKGBUILD b/extra/kdeedu-kalzium/PKGBUILD index a0420db8a..3b6bed08b 100644 --- a/extra/kdeedu-kalzium/PKGBUILD +++ b/extra/kdeedu-kalzium/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141809 2011-11-02 18:13:47Z andrea $ +# $Id: PKGBUILD 144673 2011-12-08 09:19:48Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kalzium -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Periodic Table of Elements" url="http://kde.org/applications/education/kalzium/" @@ -13,7 +13,7 @@ depends=('kdelibs' 'avogadro' 'ocaml') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kalzium-${pkgver}.tar.bz2") -sha1sums=('e22b54be4a2e8ce8a22af73fa6155ee012fa6fdf') +sha1sums=('6cb65b2c524f529976e4c63a75a7637a181d08d9') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kanagram/PKGBUILD b/extra/kdeedu-kanagram/PKGBUILD index 2da61d928..9eb18e25f 100644 --- a/extra/kdeedu-kanagram/PKGBUILD +++ b/extra/kdeedu-kanagram/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141811 2011-11-02 18:13:50Z andrea $ +# $Id: PKGBUILD 144675 2011-12-08 09:19:54Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kanagram -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('44a60b76bbc8ae61b8673c37c2b8721f12dc22bb') +sha1sums=('15fda47cd6685a7e19fb4744ec930b9a4dcfbe05') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kbruch/PKGBUILD b/extra/kdeedu-kbruch/PKGBUILD index 0d1445506..6e2641b1e 100644 --- a/extra/kdeedu-kbruch/PKGBUILD +++ b/extra/kdeedu-kbruch/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141813 2011-11-02 18:13:53Z andrea $ +# $Id: PKGBUILD 144677 2011-12-08 09:19:59Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kbruch -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('c90205954d9c153aaa5966b424aa437b07e657f7') +sha1sums=('36165292cb9935343d1aa2572935a130b6619f00') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kgeography/PKGBUILD b/extra/kdeedu-kgeography/PKGBUILD index 7176d96cc..c2acba655 100644 --- a/extra/kdeedu-kgeography/PKGBUILD +++ b/extra/kdeedu-kgeography/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141815 2011-11-02 18:13:57Z andrea $ +# $Id: PKGBUILD 144679 2011-12-08 09:20:02Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kgeography -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('5f9835994ec6ad9454f7ee19bf003c8457e11d9e') +sha1sums=('4a90c59928a4947c5cd970ed72e5e9cea370d8e6') build() { cd "${srcdir}" diff --git a/extra/kdeedu-khangman/PKGBUILD b/extra/kdeedu-khangman/PKGBUILD index 20ec8a77e..6bbce0fdd 100644 --- a/extra/kdeedu-khangman/PKGBUILD +++ b/extra/kdeedu-khangman/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141817 2011-11-02 18:14:01Z andrea $ +# $Id: PKGBUILD 144681 2011-12-08 09:20:04Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-khangman -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('aef288a20209a4c1bf5d6f48be689c433049ea83') +sha1sums=('c5999ba4218cb0331b906fbcaafa7f497762221d') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kig/PKGBUILD b/extra/kdeedu-kig/PKGBUILD index fa002c6b7..b34fd7fd2 100644 --- a/extra/kdeedu-kig/PKGBUILD +++ b/extra/kdeedu-kig/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 144051 2011-12-02 20:54:24Z ibiru $ +# $Id: PKGBUILD 144683 2011-12-08 09:20:07Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kig -pkgver=4.7.3 -pkgrel=2 +pkgver=4.7.4 +pkgrel=1 pkgdesc="Interactive Geometry" url="http://kde.org/applications/education/kig/" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kig-${pkgver}.tar.bz2") -sha1sums=('5a948b641f380e1cc6cf0f91d795a97029464bbb') +sha1sums=('4c76ef89e6210f2f25e719176db4d8a2b31b6222') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kiten/PKGBUILD b/extra/kdeedu-kiten/PKGBUILD index 19ceb744e..4f800258a 100644 --- a/extra/kdeedu-kiten/PKGBUILD +++ b/extra/kdeedu-kiten/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141821 2011-11-02 18:14:07Z andrea $ +# $Id: PKGBUILD 144685 2011-12-08 09:20:10Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kiten -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('5df19802a731b5f7033b43aa9b35e0b20164cd3e') +sha1sums=('8ec806306a7b08cb8ca5e567a48417cd2268e501') build() { cd "${srcdir}" diff --git a/extra/kdeedu-klettres/PKGBUILD b/extra/kdeedu-klettres/PKGBUILD index 999a32b87..059453365 100644 --- a/extra/kdeedu-klettres/PKGBUILD +++ b/extra/kdeedu-klettres/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141823 2011-11-02 18:14:09Z andrea $ +# $Id: PKGBUILD 144687 2011-12-08 09:20:12Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-klettres -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('da01b1c71d74f634ace0b6c2fc6e0186a08f9974') +sha1sums=('d2450f7aa24fc0118dd20d2e11d61fca68ba5461') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kmplot/PKGBUILD b/extra/kdeedu-kmplot/PKGBUILD index 5c08affbb..c9ddb0c5f 100644 --- a/extra/kdeedu-kmplot/PKGBUILD +++ b/extra/kdeedu-kmplot/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141825 2011-11-02 18:14:13Z andrea $ +# $Id: PKGBUILD 144689 2011-12-08 09:20:14Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kmplot -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('e98ba022e987b9601ea1b27e97607ff7885ff788') +sha1sums=('b0b2b748e4ea0f670ffe5c9be01a6997a061a75c') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kstars/PKGBUILD b/extra/kdeedu-kstars/PKGBUILD index 0b5a0cdbf..80f152bb2 100644 --- a/extra/kdeedu-kstars/PKGBUILD +++ b/extra/kdeedu-kstars/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141827 2011-11-02 18:14:15Z andrea $ +# $Id: PKGBUILD 144691 2011-12-08 09:20:17Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kstars -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Desktop Planetarium" url="http://kde.org/applications/education/kstars/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'eigen' 'cfitsio' 'libindi') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kstars-${pkgver}.tar.bz2") -sha1sums=('41d333f726d9752a7ddb48f98817d91744adb7b0') +sha1sums=('d4e489093b440e4246c817821187193e4e53be66') build() { cd "${srcdir}" diff --git a/extra/kdeedu-ktouch/PKGBUILD b/extra/kdeedu-ktouch/PKGBUILD index a8e3c16ab..e2defda91 100644 --- a/extra/kdeedu-ktouch/PKGBUILD +++ b/extra/kdeedu-ktouch/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141829 2011-11-02 18:14:18Z andrea $ +# $Id: PKGBUILD 144693 2011-12-08 09:20:19Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-ktouch -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Touch Typing Tutor" url="http://kde.org/applications/education/ktouch/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/ktouch-${pkgver}.tar.bz2") -sha1sums=('46b865ece6e14d4476297d4a3b400d5fab6564ea') +sha1sums=('92d7e446216bdfdf68e13c9f0ba39d44e02b29c9') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kturtle/PKGBUILD b/extra/kdeedu-kturtle/PKGBUILD index 427524590..bcfb7bd13 100644 --- a/extra/kdeedu-kturtle/PKGBUILD +++ b/extra/kdeedu-kturtle/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141831 2011-11-02 18:14:22Z andrea $ +# $Id: PKGBUILD 144695 2011-12-08 09:20:21Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kturtle -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('07d5ad5c1b8308c2c8c2ff48e2c0c18adfd051ca') +sha1sums=('b3baa81277417f352d4a0bdca61df75515f30c0d') build() { cd "${srcdir}" diff --git a/extra/kdeedu-kwordquiz/PKGBUILD b/extra/kdeedu-kwordquiz/PKGBUILD index 703de3f35..4520a9e90 100644 --- a/extra/kdeedu-kwordquiz/PKGBUILD +++ b/extra/kdeedu-kwordquiz/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141833 2011-11-02 18:14:26Z andrea $ +# $Id: PKGBUILD 144697 2011-12-08 09:20:24Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kwordquiz -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('616c16a94066ec2930bc0795f8053be221c871e5') +sha1sums=('c726b0856234ce78fab0ecd61072cdb035e66513') build() { cd "${srcdir}" diff --git a/extra/kdeedu-marble/PKGBUILD b/extra/kdeedu-marble/PKGBUILD index 8d00d0a10..ab4b93f06 100644 --- a/extra/kdeedu-marble/PKGBUILD +++ b/extra/kdeedu-marble/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141777 2011-11-02 18:12:53Z andrea $ +# $Id: PKGBUILD 144641 2011-12-08 09:18:54Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-marble -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Desktop Globe" url="http://kde.org/applications/education/marble/" @@ -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.bz2") -sha1sums=('980a8dae9c7a0f8483fde5dc839fae834763933a') +sha1sums=('e560c355a8d91bbb61b9f2e6c7cb11bd79eba1ab') build() { cd "${srcdir}" diff --git a/extra/kdeedu-parley/PKGBUILD b/extra/kdeedu-parley/PKGBUILD index a4c875b67..91334e9a8 100644 --- a/extra/kdeedu-parley/PKGBUILD +++ b/extra/kdeedu-parley/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141835 2011-11-02 18:14:29Z andrea $ +# $Id: PKGBUILD 144699 2011-12-08 09:20:26Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-parley -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('a5d06f373976554d58c8aae279e411a6be028826') +sha1sums=('e61d0192dce0e1427ee41ff96f1bcb73c77cbcef') build() { cd "${srcdir}" diff --git a/extra/kdeedu-rocs/PKGBUILD b/extra/kdeedu-rocs/PKGBUILD index 001fef7d2..8d98021db 100644 --- a/extra/kdeedu-rocs/PKGBUILD +++ b/extra/kdeedu-rocs/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141837 2011-11-02 18:14:31Z andrea $ +# $Id: PKGBUILD 144701 2011-12-08 09:20:28Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-rocs -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Rocs Graph Theory" url="http://kde.org/applications/education/rocs/" @@ -12,7 +12,7 @@ groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'boost-libs') makedepends=('cmake' 'automoc4' 'boost') source=("http://download.kde.org/stable/${pkgver}/src/rocs-${pkgver}.tar.bz2") -sha1sums=('5c7d4115f029e09a006912bf816d4ce396a9b49a') +sha1sums=('f808118fcd5df59a9a808747be940a88b30cf6f3') options=('!makeflags') build() { diff --git a/extra/kdeedu-step/PKGBUILD b/extra/kdeedu-step/PKGBUILD index d445363d5..49b41aa66 100644 --- a/extra/kdeedu-step/PKGBUILD +++ b/extra/kdeedu-step/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141839 2011-11-02 18:14:34Z andrea $ +# $Id: PKGBUILD 144703 2011-12-08 09:20:30Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-step -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Interactive Physical Simulator" url="http://kde.org/applications/education/step/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libqalculate' 'gsl' 'eigen') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/step-${pkgver}.tar.bz2") -sha1sums=('411695882916a8a1d0db86426a0d8f935fab21ad') +sha1sums=('30dba80e6f34124fd5a8ebf6688e261ab109d0d4') build() { cd "${srcdir}" diff --git a/extra/kdegames/PKGBUILD b/extra/kdegames/PKGBUILD index e8d511a66..6d117d163 100644 --- a/extra/kdegames/PKGBUILD +++ b/extra/kdegames/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141841 2011-11-02 18:14:43Z andrea $ +# $Id: PKGBUILD 144705 2011-12-08 09:20:36Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -43,7 +43,7 @@ pkgname=('kdegames-bomber' 'kdegames-libkmahjongg' 'kdegames-lskat' 'kdegames-palapeli') -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -52,7 +52,7 @@ groups=('kde' 'kdegames') makedepends=('pkgconfig' 'cmake' 'automoc4' 'ggz-client-libs' 'twisted' 'kdebindings-python' 'openal') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('abd90be42fa67cd6d6be1defe90dcd0408e94445') +sha1sums=('a1f97524f868ab9dae0439abcbf4b41f68715598') build() { cd $srcdir diff --git a/extra/kdegraphics-gwenview/PKGBUILD b/extra/kdegraphics-gwenview/PKGBUILD index 9d3608d98..79bdcde8e 100644 --- a/extra/kdegraphics-gwenview/PKGBUILD +++ b/extra/kdegraphics-gwenview/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141843 2011-11-02 18:14:47Z andrea $ +# $Id: PKGBUILD 144707 2011-12-08 09:20:42Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-gwenview -pkgver=4.7.3 +pkgver=4.7.4 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') optdepends=('kipi-plugins: extra plugins to share photos') install=$pkgname.install source=("http://download.kde.org/stable/${pkgver}/src/gwenview-${pkgver}.tar.bz2") -sha1sums=('7096721285d15311699acc76abd62755d6e93860') +sha1sums=('598714d18cf7adab8afd4f906070f0915e1cdc95') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-kamera/PKGBUILD b/extra/kdegraphics-kamera/PKGBUILD index 1ed2c32a2..3dbb7c305 100644 --- a/extra/kdegraphics-kamera/PKGBUILD +++ b/extra/kdegraphics-kamera/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141845 2011-11-02 18:14:51Z andrea $ +# $Id: PKGBUILD 144709 2011-12-08 09:20:46Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kamera -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Configure Kamera" url="http://kde.org/applications/graphics/kamera/" @@ -12,7 +12,7 @@ groups=('kde' 'kdegraphics') depends=('kdebase-runtime' 'gphoto2') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/kamera-${pkgver}.tar.bz2") -sha1sums=('820f9b6449732f6cab48f5c2d9e7dbcf53eb6437') +sha1sums=('098c71d7588d5163656cb07a476efbfc6755900a') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-kcolorchooser/PKGBUILD b/extra/kdegraphics-kcolorchooser/PKGBUILD index 518dcb92d..be6b6ea2e 100644 --- a/extra/kdegraphics-kcolorchooser/PKGBUILD +++ b/extra/kdegraphics-kcolorchooser/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141847 2011-11-02 18:14:55Z andrea $ +# $Id: PKGBUILD 144711 2011-12-08 09:20:51Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kcolorchooser -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('bdd35e5defbcfc151f4960541c351246cb4dfa9e') +sha1sums=('bbfda234e8aec109c63226499fc72355b1c051ca') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-kgamma/PKGBUILD b/extra/kdegraphics-kgamma/PKGBUILD index e50ca539d..cfe08dea6 100644 --- a/extra/kdegraphics-kgamma/PKGBUILD +++ b/extra/kdegraphics-kgamma/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141849 2011-11-02 18:14:58Z andrea $ +# $Id: PKGBUILD 144713 2011-12-08 09:20:55Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kgamma -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('d97511574120614ffb85308888c23eb2d3ba1b01') +sha1sums=('cd528839b6a9be997ed8d4a2fc87a8b5b8e8de91') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-kolourpaint/PKGBUILD b/extra/kdegraphics-kolourpaint/PKGBUILD index c4c0541ad..2a3240bfe 100644 --- a/extra/kdegraphics-kolourpaint/PKGBUILD +++ b/extra/kdegraphics-kolourpaint/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141851 2011-11-02 18:15:01Z andrea $ +# $Id: PKGBUILD 144715 2011-12-08 09:21:00Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kolourpaint -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('d276d230e76f7fbe91229dd015a6465cb1a6956e') +sha1sums=('31e23ab6735291ec86ebd83e2eee7afa191a4a59') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-kruler/PKGBUILD b/extra/kdegraphics-kruler/PKGBUILD index 4be1d2bd6..4507ae8ac 100644 --- a/extra/kdegraphics-kruler/PKGBUILD +++ b/extra/kdegraphics-kruler/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141853 2011-11-02 18:15:04Z andrea $ +# $Id: PKGBUILD 144717 2011-12-08 09:21:05Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kruler -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('2cc0b9d31248604ab570404a0c67ef325e8ed00e') +sha1sums=('a854213e5342e382d3b9c4a29d1aada654378d0f') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-ksaneplugin/PKGBUILD b/extra/kdegraphics-ksaneplugin/PKGBUILD index 7703a880c..9ea2b4db2 100644 --- a/extra/kdegraphics-ksaneplugin/PKGBUILD +++ b/extra/kdegraphics-ksaneplugin/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141855 2011-11-02 18:15:07Z andrea $ +# $Id: PKGBUILD 144719 2011-12-08 09:21:08Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-ksaneplugin -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="A scan plugin that implements the scanning" url="http://kde.org/" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/ksaneplugin-${pkgver}.tar.bz2") -sha1sums=('547c298e2f3f7b8f651e3402bf18507321d4a7ce') +sha1sums=('15f7ca6fbabb757898cc0f18685f5e204e6b3f56') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-ksnapshot/PKGBUILD b/extra/kdegraphics-ksnapshot/PKGBUILD index 7557a3e90..a04e71180 100644 --- a/extra/kdegraphics-ksnapshot/PKGBUILD +++ b/extra/kdegraphics-ksnapshot/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141857 2011-11-02 18:15:12Z andrea $ +# $Id: PKGBUILD 144721 2011-12-08 09:21:11Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-ksnapshot -pkgver=4.7.3 +pkgver=4.7.4 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.bz2") -sha1sums=('e0dd6e093cd487fa6604077371122d84b3e8efb7') +sha1sums=('bc40ae740e3a684e47ba1b5af01aeb427bb4336e') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-mobipocket/PKGBUILD b/extra/kdegraphics-mobipocket/PKGBUILD index 392980cd3..6a8dc2dce 100644 --- a/extra/kdegraphics-mobipocket/PKGBUILD +++ b/extra/kdegraphics-mobipocket/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141859 2011-11-02 18:15:14Z andrea $ +# $Id: PKGBUILD 144723 2011-12-08 09:21:12Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-mobipocket -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="A collection of plugins to handle mobipocket files" url="http://kde.org/" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/mobipocket-${pkgver}.tar.bz2") -sha1sums=('a55908cbc951c98dd27171909c1ccc5d978eec65') +sha1sums=('db278a2ebe4680a94c4963a53c1501cf1f1d9d2a') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-okular/PKGBUILD b/extra/kdegraphics-okular/PKGBUILD index c255fa71b..0aecf056f 100644 --- a/extra/kdegraphics-okular/PKGBUILD +++ b/extra/kdegraphics-okular/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141757 2011-11-02 18:12:23Z andrea $ +# $Id: PKGBUILD 144623 2011-12-08 09:18:27Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-okular -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc='Document Viewer' arch=('i686' 'x86_64') @@ -15,7 +15,7 @@ makedepends=('pkgconfig' 'cmake' 'automoc4') optdepends=('kdegraphics-mobipocket: mobipocket support') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/okular-${pkgver}.tar.bz2") -sha1sums=('a14700386f386cc50f7dd6785eeb93dae10a0362') +sha1sums=('5f02bbfeff81b55e0fd5d9e973cb927909faccb1') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-okular/staging-i686/PKGBUILD b/extra/kdegraphics-okular/staging-i686/PKGBUILD new file mode 100644 index 000000000..8b08d240f --- /dev/null +++ b/extra/kdegraphics-okular/staging-i686/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 144119 2011-12-04 09:06:00Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegraphics-okular +pkgver=4.7.4 +pkgrel=1 +pkgdesc='Document Viewer' +arch=('i686' 'x86_64') +url="http://kde.org/applications/graphics/okular/" +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegraphics') +depends=('kdebase-runtime' 'qimageblitz' 'poppler-qt' 'chmlib' 'djvulibre' + 'ebook-tools' 'libspectre') +makedepends=('pkgconfig' 'cmake' 'automoc4') +optdepends=('kdegraphics-mobipocket: mobipocket support') +install=${pkgname}.install +source=("http://download.kde.org/stable/${pkgver}/src/okular-${pkgver}.tar.bz2") +sha1sums=('5f02bbfeff81b55e0fd5d9e973cb927909faccb1') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../okular-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_SKIP_RPATH=ON \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} diff --git a/extra/kdegraphics-okular/staging-i686/kdegraphics-okular.install b/extra/kdegraphics-okular/staging-i686/kdegraphics-okular.install new file mode 100644 index 000000000..81ce5c4b0 --- /dev/null +++ b/extra/kdegraphics-okular/staging-i686/kdegraphics-okular.install @@ -0,0 +1,12 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null + update-desktop-database -q +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/extra/kdegraphics-strigi-analyzer/PKGBUILD b/extra/kdegraphics-strigi-analyzer/PKGBUILD index 93bec47c1..a0e74cf03 100644 --- a/extra/kdegraphics-strigi-analyzer/PKGBUILD +++ b/extra/kdegraphics-strigi-analyzer/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141861 2011-11-02 18:15:18Z andrea $ +# $Id: PKGBUILD 144725 2011-12-08 09:21:15Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-strigi-analyzer -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Strigi analyzers for various graphics file formats" url="http://kde.org/" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('827b18fd902a464162db7a3cd98a22fa211bafc9') +sha1sums=('39b3b0312663a3ef7a68c972b39bf12fb4cabe8b') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-svgpart/PKGBUILD b/extra/kdegraphics-svgpart/PKGBUILD index b3fabfef4..9ef85adb9 100644 --- a/extra/kdegraphics-svgpart/PKGBUILD +++ b/extra/kdegraphics-svgpart/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141863 2011-11-02 18:15:21Z andrea $ +# $Id: PKGBUILD 144727 2011-12-08 09:21:17Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-svgpart -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="A KPart for viewving SVGs" url="http://kde.org/" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/svgpart-${pkgver}.tar.bz2") -sha1sums=('fa7f8cac53f6041f18a2bee09c2aa3885e27f7c7') +sha1sums=('38dcb3c468ca359e7b0a0027523b8156de6a06a1') build() { cd "${srcdir}" diff --git a/extra/kdegraphics-thumbnailers/PKGBUILD b/extra/kdegraphics-thumbnailers/PKGBUILD index 4eba9a24a..0389f30ee 100644 --- a/extra/kdegraphics-thumbnailers/PKGBUILD +++ b/extra/kdegraphics-thumbnailers/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141865 2011-11-02 18:15:24Z andrea $ +# $Id: PKGBUILD 144729 2011-12-08 09:21:20Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-thumbnailers -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Thumbnailers for various graphics file formats" url="http://kde.org/" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('219fd55d94d695cee8c7b650dbe8088cc9807e5c') +sha1sums=('0e1636da30c78ad2c186bcd30c0566406b920126') build() { cd "${srcdir}" diff --git a/extra/kdelibs/PKGBUILD b/extra/kdelibs/PKGBUILD index 1d7697710..8dddc4eaa 100644 --- a/extra/kdelibs/PKGBUILD +++ b/extra/kdelibs/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 143000 2011-11-20 11:13:59Z andrea $ +# $Id: PKGBUILD 144610 2011-12-08 09:18:08Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdelibs -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="KDE Core Libraries" arch=('i686' 'x86_64') @@ -19,7 +19,7 @@ replaces=('kdelibs-experimental') install='kdelibs.install' source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2" 'kde-applications-menu.patch' 'archlinux-menu.patch') -sha1sums=('4f1bbd1b4d558f3541057747db9bf7e9dcececb3' +sha1sums=('78b25e93a8c70ccc1e0f117cce960fe4e1deb8d8' '86ee8c8660f19de8141ac99cd6943964d97a1ed7' '63a850ab4196b9d06934f2b4a13acd9f7739bc67') diff --git a/extra/kdemultimedia/PKGBUILD b/extra/kdemultimedia/PKGBUILD index bbb6f4d9f..6ca9a9ea1 100644 --- a/extra/kdemultimedia/PKGBUILD +++ b/extra/kdemultimedia/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 142628 2011-11-12 17:15:23Z ibiru $ +# $Id: PKGBUILD 144731 2011-12-08 09:21:22Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -10,8 +10,8 @@ pkgname=('kdemultimedia-dragonplayer' 'kdemultimedia-kmix' 'kdemultimedia-kscd' 'kdemultimedia-mplayerthumbs') -pkgver=4.7.3 -pkgrel=3 +pkgver=4.7.4 +pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') @@ -20,7 +20,7 @@ makedepends=('pkgconfig' 'cmake' 'automoc4' 'kdelibs' 'tunepimp' 'ffmpeg' 'mplayer' 'pulseaudio' 'libmusicbrainz3') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2" 'mplayerthumbs.config') -sha1sums=('4db44494e6a2ef886e3513b6a2eb4e526741a6ff' +sha1sums=('e0001afac38e35e3ab7b919d79f74cd57e3c18dd' 'ba016fa2563c14ffcba852c62506b66bfc6ee683') build() { diff --git a/extra/kdenetwork/PKGBUILD b/extra/kdenetwork/PKGBUILD index 7afb27545..3d03674e9 100644 --- a/extra/kdenetwork/PKGBUILD +++ b/extra/kdenetwork/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141869 2011-11-02 18:15:31Z andrea $ +# $Id: PKGBUILD 144733 2011-12-08 09:21:25Z 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.7.3 +pkgver=4.7.4 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -21,7 +21,7 @@ makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu' 'telepathy-qt4' 'libktorrent' 'libmms' 'mediastreamer') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('5d8ed6a478d9afdaf19d350f1d2fe7e9dd48b2f7') +sha1sums=('15d5bdcda0e05de6247b22b96c6ca4a98da8a278') build() { cd "${srcdir}" diff --git a/extra/kdepim-runtime/PKGBUILD b/extra/kdepim-runtime/PKGBUILD index 82f672339..894661fc2 100644 --- a/extra/kdepim-runtime/PKGBUILD +++ b/extra/kdepim-runtime/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 141751 2011-11-02 18:12:14Z andrea $ +# $Id: PKGBUILD 144617 2011-12-08 09:18:18Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdepim-runtime -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc='KDE PIM Runtime Environment' arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('kdepimlibs' 'kdebase-runtime') makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('fa0e336e17f7abea1e36d28d941a4ef79b4e4635') +sha1sums=('fb02f53673316aaafb65b7c4dd570f3be3b4e935') build() { cd "${srcdir}" diff --git a/extra/kdepim/PKGBUILD b/extra/kdepim/PKGBUILD index 4e25b0ec7..7854e5dd8 100644 --- a/extra/kdepim/PKGBUILD +++ b/extra/kdepim/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141871 2011-11-02 18:15:37Z andrea $ +# $Id: PKGBUILD 144735 2011-12-08 09:21:28Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -20,7 +20,7 @@ pkgname=('kdepim-akonadiconsole' 'kdepim-ktimetracker' 'kdepim-libkdepim' 'kdepim-wizards') -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 arch=('i686' 'x86_64') url='http://pim.kde.org' @@ -29,7 +29,7 @@ groups=('kde' 'kdepim') makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'kdepim-runtime' 'libxss' 'pilot-link' 'kde-agent') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('b540de51ba5b9995ce3b7c05cfb09112423d8569') +sha1sums=('233f6c413eeedd4af7cf15106a2af7b8f29977bf') build() { cd "${srcdir}" diff --git a/extra/kdepimlibs/PKGBUILD b/extra/kdepimlibs/PKGBUILD index db01bf246..d480ec874 100644 --- a/extra/kdepimlibs/PKGBUILD +++ b/extra/kdepimlibs/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 141746 2011-11-02 18:12:07Z andrea $ +# $Id: PKGBUILD 144612 2011-12-08 09:18:11Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdepimlibs -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="KDE PIM Libraries" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('kdelibs' 'gpgme' 'akonadi' 'libical' 'prison') makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'cyrus-sasl' 'openldap') install='kdepimlibs.install' source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('b95822a3e38587744174308b629336cd3d0444f4') +sha1sums=('a539e29557c0a30779e752b9349b3a0c000ffbba') build() { cd ${srcdir} diff --git a/extra/kdeplasma-addons/PKGBUILD b/extra/kdeplasma-addons/PKGBUILD index 7104b5515..41bb90716 100644 --- a/extra/kdeplasma-addons/PKGBUILD +++ b/extra/kdeplasma-addons/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141873 2011-11-02 18:15:43Z andrea $ +# $Id: PKGBUILD 144737 2011-12-08 09:21:34Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -72,7 +72,7 @@ pkgname=('kdeplasma-addons-applets-bball' 'kdeplasma-addons-wallpapers-pattern' 'kdeplasma-addons-wallpapers-virus' 'kdeplasma-addons-wallpapers-weather') -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -81,7 +81,7 @@ groups=('kde' 'kdeplasma-addons') makedepends=('pkgconfig' 'cmake' 'automoc4' 'kdebase-workspace' 'kdeedu-marble' 'eigen' 'scim' 'qwt' 'boost' 'libkexiv2') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('decdea2d081396c90daabc9af754a233b43a0783') +sha1sums=('2bbf77d77e809733e6a74ff5688e6ff5487bc8bf') build() { cd "${srcdir}" diff --git a/extra/kdesdk-kate/PKGBUILD b/extra/kdesdk-kate/PKGBUILD index 95367bebc..d256b0c31 100644 --- a/extra/kdesdk-kate/PKGBUILD +++ b/extra/kdesdk-kate/PKGBUILD @@ -1,17 +1,17 @@ -# $Id: PKGBUILD 141759 2011-11-02 18:12:27Z andrea $ +# $Id: PKGBUILD 144748 2011-12-08 09:52:57Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgbase=kdesdk-kate pkgname=('kdebase-kwrite' 'kdesdk-kate') -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') makedepends=('kdelibs ''cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/kate-${pkgver}.tar.bz2" 'pkgbuild-syntax-highlight.patch') -sha1sums=('d67e871a49d426246f2e555ace0ad5a303c41045' +sha1sums=('b808f01213e0e44607e8f2577f9d1b4f88e14388' 'ab0c5d2a796b0f283154799add161c99f48ffcd5') build() { diff --git a/extra/kdesdk/PKGBUILD b/extra/kdesdk/PKGBUILD index 0d5e9947a..0608eea90 100644 --- a/extra/kdesdk/PKGBUILD +++ b/extra/kdesdk/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141875 2011-11-02 18:15:48Z andrea $ +# $Id: PKGBUILD 144767 2011-12-08 10:28:41Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -24,7 +24,7 @@ pkgname=('kdesdk-cervisia' 'kdesdk-scripts' 'kdesdk-strigi-analyzer' 'kdesdk-umbrello') -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -34,7 +34,7 @@ makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'subversion' 'antlr2' 'kdepimlibs' 'kdebase-lib') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2" 'fix-python2-path.patch') -sha1sums=('c0afae643345c92bce387ceafbcea59d3fbd812e' +sha1sums=('3a0f61204653dc3f9f975732b6f67659c60ecaf3' 'd05ca0231869c484fd3861955d960a60aff7dcfb') build() { diff --git a/extra/kdetoys/PKGBUILD b/extra/kdetoys/PKGBUILD index 68c477f42..e87eca7b2 100644 --- a/extra/kdetoys/PKGBUILD +++ b/extra/kdetoys/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141877 2011-11-02 18:15:51Z andrea $ +# $Id: PKGBUILD 144739 2011-12-08 09:21:39Z 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.7.3 +pkgver=4.7.4 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -14,7 +14,7 @@ license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdetoys') makedepends=('pkgconfig' 'cmake' 'automoc4' 'kdebase-workspace') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('93d6f0a92c805de51fc68469f940f38858f81fbe') +sha1sums=('f929e598180f420d7fc6e4642ed56af9eee5a22b') build() { cd $srcdir diff --git a/extra/kdeutils/PKGBUILD b/extra/kdeutils/PKGBUILD index 7aca6d6a9..55e7ef87c 100644 --- a/extra/kdeutils/PKGBUILD +++ b/extra/kdeutils/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141879 2011-11-02 18:15:55Z andrea $ +# $Id: PKGBUILD 144741 2011-12-08 09:21:43Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -16,7 +16,7 @@ pkgname=('kdeutils-ark' 'kdeutils-printer-applet' 'kdeutils-superkaramba' 'kdeutils-sweeper') -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -26,7 +26,7 @@ makedepends=('pkgconfig' 'cmake' 'automoc4' 'kdebase-lib' 'kdebase-workspace' 'kdebindings-python' 'system-config-printer-common' 'libarchive' 'qimageblitz' 'qjson') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('23fc9823647152d5d8cc250a55402c8930db4059') +sha1sums=('4630f01f36558eb5494fc562086fbd4e488e411e') build() { cd "${srcdir}"/${pkgbase}-${pkgver} diff --git a/extra/kdewebdev/PKGBUILD b/extra/kdewebdev/PKGBUILD index 5b4d8d43e..df2791948 100644 --- a/extra/kdewebdev/PKGBUILD +++ b/extra/kdewebdev/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141881 2011-11-02 18:15:58Z andrea $ +# $Id: PKGBUILD 144743 2011-12-08 09:21:45Z andrea $ # Maintainer: Pierre Schmitz <pierre@archlinux.de> pkgbase=kdewebdev @@ -6,7 +6,7 @@ pkgname=('kdewebdev-kfilereplace' 'kdewebdev-kimagemapeditor' 'kdewebdev-klinkstatus' 'kdewebdev-kommander') -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -15,7 +15,7 @@ groups=('kde' 'kdewebdev') makedepends=('pkgconfig' 'cmake' 'automoc4' 'ruby' 'tidyhtml' 'kdepim-runtime' 'boost') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('11108698887d376d00f02cbdfa1496aa3cb268c1') +sha1sums=('1e37e877d4f5ec8f6dcd05e828b4a8f0fd743d2c') build() { cd $srcdir diff --git a/extra/libkdcraw/PKGBUILD b/extra/libkdcraw/PKGBUILD index b451d47a1..23dd6b34f 100644 --- a/extra/libkdcraw/PKGBUILD +++ b/extra/libkdcraw/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141779 2011-11-02 18:12:56Z andrea $ +# $Id: PKGBUILD 144643 2011-12-08 09:18:56Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkdcraw -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="A C++ interface used to decode RAW picture" url="http://kde.org/" @@ -14,7 +14,7 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('084f6aff760957d2005dd571dad178ca685abb68') +sha1sums=('f97516a2da26da3c15075a007bec7c8f9860379b') build() { cd "${srcdir}" diff --git a/extra/libkdeedu/PKGBUILD b/extra/libkdeedu/PKGBUILD index ded6d0807..3497133cd 100644 --- a/extra/libkdeedu/PKGBUILD +++ b/extra/libkdeedu/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141775 2011-11-02 18:12:50Z andrea $ +# $Id: PKGBUILD 144639 2011-12-08 09:18:52Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkdeedu -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="Libraries used by KDE Education applications" url="http://kde.org/" @@ -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.bz2") -sha1sums=('d2a1e88c6135fa23cea7670dfbb7c8634dc9c870') +sha1sums=('2f508c6efa9ef9561d25578000c7d5bb5ed1c5ee') build() { cd "${srcdir}" diff --git a/extra/libkexiv2/PKGBUILD b/extra/libkexiv2/PKGBUILD index 9c540ae1f..91ccc2eb6 100644 --- a/extra/libkexiv2/PKGBUILD +++ b/extra/libkexiv2/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141781 2011-11-02 18:12:59Z andrea $ +# $Id: PKGBUILD 144645 2011-12-08 09:19:00Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkexiv2 -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="A library to manipulate pictures metadata" url="http://kde.org/" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('daaf507f75855660ae9f1af00158c2746c574902') +sha1sums=('19031140c87d9d7003fef564b6927c6f69d7e3d3') build() { cd "${srcdir}" diff --git a/extra/libkipi/PKGBUILD b/extra/libkipi/PKGBUILD index 036ac3941..afe38ff96 100644 --- a/extra/libkipi/PKGBUILD +++ b/extra/libkipi/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141783 2011-11-02 18:13:03Z andrea $ +# $Id: PKGBUILD 144647 2011-12-08 09:19:04Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkipi -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="An interface to use kipi-plugins from a KDE application" url="http://kde.org/" @@ -14,7 +14,7 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('9c6d4406a1292cfe81fa27508ffe4d96633417bf') +sha1sums=('3225ac0c55f5e4fef71a8baee8d3c49efff6adbf') build() { cd "${srcdir}" diff --git a/extra/libksane/PKGBUILD b/extra/libksane/PKGBUILD index 818f04c6a..11ec687ab 100644 --- a/extra/libksane/PKGBUILD +++ b/extra/libksane/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 141785 2011-11-02 18:13:06Z andrea $ +# $Id: PKGBUILD 144649 2011-12-08 09:19:09Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libksane -pkgver=4.7.3 +pkgver=4.7.4 pkgrel=1 pkgdesc="An image scanning library" url="http://kde.org/" @@ -14,7 +14,7 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('d1efdd1f5f7f99ba173ddcc88b2ddee343ecf96b') +sha1sums=('3c7a8d5b7fd80175684a0373fae26197e8158565') build() { cd "${srcdir}" diff --git a/extra/libmythes/PKGBUILD b/extra/libmythes/PKGBUILD index 77ed47352..0383c549e 100644 --- a/extra/libmythes/PKGBUILD +++ b/extra/libmythes/PKGBUILD @@ -1,15 +1,17 @@ -# $Id: PKGBUILD 104337 2011-01-01 13:29:40Z andyrtr $ +# $Id: PKGBUILD 144883 2011-12-08 21:25:55Z andyrtr $ # Maintainer: AndyRTR <andyrtr@archlinux.org> pkgname=libmythes pkgver=1.2.1 -pkgrel=1 +pkgrel=2 +epoch=1 pkgdesc="a simple thesaurus" arch=('i686' 'x86_64') url="http://hunspell.sourceforge.net/ " license=('custom') depends=('glibc' 'perl') -options=('force' '!libtool') +makedepends=('hunspell') +options=('!libtool') provides=('mythes') source=(http://downloads.sourceforge.net/hunspell/${pkgname/lib/}-${pkgver}.tar.gz) md5sums=('54b310488dda6929cf31ae859928c945') diff --git a/extra/llvm/PKGBUILD b/extra/llvm/PKGBUILD index 0909289d1..f954897da 100644 --- a/extra/llvm/PKGBUILD +++ b/extra/llvm/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 141372 2011-10-30 06:47:25Z allan $ +# $Id: PKGBUILD 144867 2011-12-08 20:35:39Z foutrelis $ # Maintainer: Evangelos Foutras <evangelos@foutrelis.com> # Contributor: Jan "heftig" Steffens <jan.steffens@gmail.com> # Contributor: Sebastian Nowicki <sebnow@gmail.com> @@ -10,39 +10,34 @@ # Contributor: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> pkgname=('llvm' 'llvm-ocaml' 'clang' 'clang-analyzer') -pkgver=2.9 -_gcc_ver=4.6.2 -pkgrel=7 +pkgver=3.0 +pkgrel=1 arch=('i686' 'x86_64') url="http://llvm.org/" license=('custom:University of Illinois/NCSA Open Source License') -makedepends=('gcc-libs' 'libffi' 'python2' 'ocaml' "gcc=$_gcc_ver") -source=(http://llvm.org/releases/$pkgver/$pkgname-$pkgver.tgz - http://llvm.org/releases/$pkgver/clang-$pkgver.tgz - ftp://ftp.archlinux.org/other/community/clang/gcc-headers-4.5.2.tar.xz +makedepends=('libffi' 'python2' 'ocaml') +source=(http://llvm.org/releases/$pkgver/$pkgname-$pkgver.tar.gz + http://llvm.org/releases/$pkgver/clang-$pkgver.tar.gz clang-plugin-loader-registry.patch cindexer-clang-path.patch - clang-toolchains-gcc-versions.patch clang-pure64.patch enable-lto.patch - bug-9869-operator-h-c++0x.patch) -sha256sums=('661236cfa17428b48cfa9cbb9909f7569c64b8ecd219fd91dbc00e3b557b3779' - '70c41f3f782a71cbaa7bc8d6ea29fce4263ad3e8558dfecc6dc11cdef17909df' - '12cf0bfb128cd8bd2a308c3c03cf0e607aa47bd87d9a58b422b96bd387e476c1' + fix-gold-lto-linking.patch) +sha256sums=('519eb11d3499ce99c6ffdb8718651fc91425ed7690eac91c8d6853474f7c0477' + 'b64e72da356d7c3428cfd7ac620d49ec042c84eaee13c26024879f555f4e126d' 'a0a4494f2a692789670be37fd390906dcaa37b1824f740bdaaea21182f2f3a9c' '3074df5322900e087377a8e03a02115463ccc0011c25917c2f06df11facd9b92' - '7c05788c02697f0cd05f7c74fe65b460530c0748851313eb950c5d4d17a8115a' - '5bba4964d0d832c9e97308beb45244ff6ed4e16ed3f9f771babe571f1b82fa33' - '1a308679edf3078b8f0c33c94d4e6d0c0db6d3baad91babce08bf5370aa052ef' - '1c37346b0f412556dc979fd510585f3e20d2d45319ec095dbdec37a582d590c7') + '288a82fbff17bc554f5863734246500e637882af33ee8511019d5e0d6cd20524' + 'cf8922a932e1859f3783bef2af8ac1e90ce96f8eec79928392327b71b3d7cb89' + '24d275cdf170f53844bc7174b065fb51b6ddbb9642ced34702cde1f0f74d9192') build() { - cd "$srcdir/$pkgname-$pkgver" + cd "$srcdir/$pkgname-$pkgver.src" # At the present, clang must reside inside the LLVM source code tree to build # See http://llvm.org/bugs/show_bug.cgi?id=4840 rm -rf tools/clang - cp -r "$srcdir/clang-$pkgver" tools/clang + cp -r "$srcdir/clang-$pkgver.src" tools/clang # Fix symbolic links from OCaml bindings to LLVM libraries sed -i 's:\$(PROJ_libdir):/usr/lib/llvm:' bindings/ocaml/Makefile.ocaml @@ -63,11 +58,8 @@ build() { # Fix clang path in CIndexer.cpp (https://bugs.archlinux.org/task/22799) patch -d tools/clang -Np0 -i "$srcdir/cindexer-clang-path.patch" - # Add GCC 4.6.1 to GccVersions (FS#23631) - patch -d tools/clang -Np1 -i "$srcdir/clang-toolchains-gcc-versions.patch" - if [[ $CARCH == x86_64 ]]; then - # Adjust lib paths + # Adjust linker path patch -d tools/clang -Np0 -i "$srcdir/clang-pure64.patch" fi @@ -75,9 +67,8 @@ build() { # Use gold instead of default linker, and always use the plugin patch -d tools/clang -Np0 -i "$srcdir/enable-lto.patch" - # Fix upstream bug #9869: - # Operator.h incompatibility with GCC 4.6 in C++0x mode - patch -Np2 -i "$srcdir/bug-9869-operator-h-c++0x.patch" + # Fix libLTO.so location in gold plugin + patch -Np1 -i "$srcdir/fix-gold-lto-linking.patch" # Apply strip option to configure _optimized_switch="enable" @@ -86,20 +77,8 @@ build() { # Include location of libffi headers in CPPFLAGS export CPPFLAGS="$CPPFLAGS $(pkg-config --cflags libffi)" - # TODO: Uncomment when clang works with GCC 4.6+ - #_cxx_headers="/usr/include/c++/$_gcc_ver" - #if [[ ! -d $_cxx_headers ]]; then - # error "Couldn't find the C++ headers, PKGBUILD needs fixing!" - # return 1 - #fi - _cxx_headers="/usr/include/c++/clang-$pkgver" - - _32bit_headers="" - if [[ $CARCH == x86_64 ]]; then - # Important for multilib - _32bit_headers="32" - fi - + # Force the use of GCC instead of clang + CC=gcc CXX=g++ \ ./configure \ --prefix=/usr \ --libdir=/usr/lib/llvm \ @@ -111,9 +90,6 @@ build() { --disable-debug-runtime \ --disable-assertions \ --with-binutils-include=/usr/include \ - --with-cxx-include-root=$_cxx_headers \ - --with-cxx-include-arch=$CHOST \ - --with-cxx-include-32bit-dir=$_32bit_headers \ --$_optimized_switch-optimized make REQUIRES_RTTI=1 @@ -123,11 +99,13 @@ package_llvm() { pkgdesc="Low Level Virtual Machine" depends=('perl' 'libffi') - cd "$srcdir/$pkgname-$pkgver" + cd "$srcdir/$pkgname-$pkgver.src" # We move the clang directory out of the tree so it won't get installed and # then we bring it back in for the clang package mv tools/clang "$srcdir" + # Copy missing file into the expected location + cp bindings/ocaml/llvm/META.llvm bindings/ocaml/llvm/Release/ # -j1 is due to race conditions during the installation of the OCaml bindings make -j1 DESTDIR="$pkgdir" install mv "$srcdir/clang" tools @@ -148,9 +126,6 @@ package_llvm() { # Get rid of example Hello transformation rm "$pkgdir"/usr/lib/llvm/*LLVMHello.* - # Symlink the gold plugin where clang expects it - ln -s llvm/LLVMgold.so "$pkgdir/usr/lib/LLVMgold.so" - # Add ld.so.conf.d entry install -d "$pkgdir/etc/ld.so.conf.d" echo /usr/lib/llvm >"$pkgdir/etc/ld.so.conf.d/llvm.conf" @@ -162,7 +137,7 @@ package_llvm-ocaml() { pkgdesc="OCaml bindings for LLVM" depends=("llvm=$pkgver-$pkgrel" 'ocaml') - cd "$srcdir/llvm-$pkgver" + cd "$srcdir/llvm-$pkgver.src" install -d "$pkgdir"/{usr/lib,usr/share/doc/llvm} cp -r "$srcdir/ocaml" "$pkgdir/usr/lib" @@ -177,15 +152,13 @@ package_llvm-ocaml() { package_clang() { pkgdesc="C language family frontend for LLVM" url="http://clang.llvm.org/" - # It looks like clang still needs GCC to assemble and link object files - # See http://old.nabble.com/%22clang--v%22-shows-a-GCC-call-td28378453.html - depends=("llvm=$pkgver-$pkgrel" "gcc=$_gcc_ver") + depends=("llvm=$pkgver-$pkgrel" 'gcc') # Fix installation path for clang docs sed -i 's:$(PROJ_prefix)/share/doc/llvm:$(PROJ_prefix)/share/doc/clang:' \ - "$srcdir/llvm-$pkgver/Makefile.config" + "$srcdir/llvm-$pkgver.src/Makefile.config" - cd "$srcdir/llvm-$pkgver/tools/clang" + cd "$srcdir/llvm-$pkgver.src/tools/clang" make DESTDIR="$pkgdir" install # Fix permissions of static libs @@ -193,12 +166,7 @@ package_clang() { # Revert the path change in case we want to do a repackage later sed -i 's:$(PROJ_prefix)/share/doc/clang:$(PROJ_prefix)/share/doc/llvm:' \ - "$srcdir/llvm-$pkgver/Makefile.config" - - # Install old libstdc++ headers. Contains combined headers from - # gcc 4.5.2-6-i686 and gcc-multilib-4.5.2-6-x86_64 - install -d "$pkgdir/usr/include/c++" - cp -rd "$srcdir/gcc-headers-4.5.2" "$pkgdir/usr/include/c++/clang-$pkgver" + "$srcdir/llvm-$pkgver.src/Makefile.config" install -Dm644 LICENSE.TXT "$pkgdir/usr/share/licenses/clang/LICENSE" } @@ -208,7 +176,7 @@ package_clang-analyzer() { url="http://clang-analyzer.llvm.org/" depends=("clang=$pkgver-$pkgrel" 'python2') - cd "$srcdir/llvm-$pkgver/tools/clang" + cd "$srcdir/llvm-$pkgver.src/tools/clang" install -d "$pkgdir"/usr/{bin,lib/clang-analyzer} for _tool in scan-{build,view}; do diff --git a/extra/llvm/clang-pure64.patch b/extra/llvm/clang-pure64.patch index da6178519..9bbbfaa8b 100644 --- a/extra/llvm/clang-pure64.patch +++ b/extra/llvm/clang-pure64.patch @@ -3,36 +3,11 @@ Index: lib/Driver/Tools.cpp --- lib/Driver/Tools.cpp (revision 123373) +++ lib/Driver/Tools.cpp (working copy) @@ -3306,7 +3306,7 @@ - else if (ToolChain.getArch() == llvm::Triple::arm) - CmdArgs.push_back("/lib/ld-linux.so.3"); + else if (ToolChain.getArch() == llvm::Triple::ppc64) + CmdArgs.push_back("/lib64/ld64.so.1"); else - CmdArgs.push_back("/lib64/ld-linux-x86-64.so.2"); + CmdArgs.push_back("/lib/ld-linux-x86-64.so.2"); } CmdArgs.push_back("-o"); -Index: lib/Driver/ToolChains.cpp -=================================================================== ---- lib/Driver/ToolChains.cpp (revision 123373) -+++ lib/Driver/ToolChains.cpp (working copy) -@@ -1317,18 +1317,10 @@ - if (Arch == llvm::Triple::x86) - Suffix64 = "/64"; - -- std::string Lib32 = "lib"; -- -- bool Exists; -- if (!llvm::sys::fs::exists("/lib32", Exists) && Exists) -- Lib32 = "lib32"; -- -+ std::string Lib32 = "lib32"; - std::string Lib64 = "lib"; -- bool Symlink; -- if (!llvm::sys::fs::exists("/lib64", Exists) && Exists && -- (llvm::sys::fs::is_symlink("/lib64", Symlink) || !Symlink)) -- Lib64 = "lib64"; - -+ bool Exists; - std::string GccTriple = ""; - if (Arch == llvm::Triple::arm) { - if (!llvm::sys::fs::exists("/usr/lib/gcc/arm-linux-gnueabi", Exists) && diff --git a/extra/llvm/enable-lto.patch b/extra/llvm/enable-lto.patch index 40d93104a..3c8691b17 100644 --- a/extra/llvm/enable-lto.patch +++ b/extra/llvm/enable-lto.patch @@ -2,17 +2,12 @@ Index: lib/Driver/ToolChains.cpp =================================================================== --- lib/Driver/ToolChains.cpp (revision 123373) +++ lib/Driver/ToolChains.cpp (working copy) -@@ -1398,11 +1398,11 @@ - Lib = Lib64; - } +@@ -1398,7 +1398,7 @@ + PPaths.push_back(Twine(GCCInstallation.getParentLibPath() + "/../" + + GCCInstallation.getTriple() + "/bin").str()); -- llvm::sys::Path LinkerPath(Base + "/../../../../" + GccTriple + "/bin/ld"); -+ llvm::sys::Path LinkerPath(Base + "/../../../../" + GccTriple + "/bin/ld.gold"); - if (!llvm::sys::fs::exists(LinkerPath.str(), Exists) && Exists) - Linker = LinkerPath.str(); - else -- Linker = GetProgramPath("ld"); -+ Linker = GetProgramPath("ld.gold"); +- Linker = GetProgramPath("ld"); ++ Linker = GetProgramPath("ld.gold"); LinuxDistro Distro = DetectLinuxDistro(Arch); @@ -27,7 +22,8 @@ Index: lib/Driver/Tools.cpp - if (Args.hasArg(options::OPT_use_gold_plugin)) { + // if (Args.hasArg(options::OPT_use_gold_plugin)) { CmdArgs.push_back("-plugin"); - std::string Plugin = ToolChain.getDriver().Dir + "/../lib/LLVMgold.so"; +- std::string Plugin = ToolChain.getDriver().Dir + "/../lib/LLVMgold.so"; ++ std::string Plugin = ToolChain.getDriver().Dir + "/../lib/llvm/LLVMgold.so"; CmdArgs.push_back(Args.MakeArgString(Plugin)); - } + // } diff --git a/extra/llvm/fix-gold-lto-linking.patch b/extra/llvm/fix-gold-lto-linking.patch new file mode 100644 index 000000000..84d166471 --- /dev/null +++ b/extra/llvm/fix-gold-lto-linking.patch @@ -0,0 +1,11 @@ +diff -upr llvm-3.0.src.orig/tools/gold/Makefile llvm-3.0.src/tools/gold/Makefile +--- llvm-3.0.src.orig/tools/gold/Makefile 2011-05-31 23:00:45.000000000 +0300 ++++ llvm-3.0.src/tools/gold/Makefile 2011-12-04 22:06:59.000000000 +0200 +@@ -26,6 +26,6 @@ LINK_COMPONENTS := support + # Because off_t is used in the public API, the largefile parts are required for + # ABI compatibility. + CXXFLAGS+=-I$(BINUTILS_INCDIR) -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 +-CXXFLAGS+=$(SharedLibDir)/$(SharedPrefix)LTO$(SHLIBEXT) ++CXXFLAGS+=-L $(SharedLibDir) -lLTO + + include $(LEVEL)/Makefile.common diff --git a/extra/maxima/PKGBUILD b/extra/maxima/PKGBUILD index 6d4027b00..af30b54f4 100644 --- a/extra/maxima/PKGBUILD +++ b/extra/maxima/PKGBUILD @@ -1,15 +1,15 @@ -# $Id: PKGBUILD 143491 2011-11-24 21:29:37Z juergen $ +# $Id: PKGBUILD 144879 2011-12-08 21:06:55Z juergen $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor: Damir Perisa <damir@archlinux.org> pkgname=maxima pkgver=5.25.1 -pkgrel=2 +pkgrel=3 pkgdesc="Maxima - a sophisticated computer algebra system" arch=('i686' 'x86_64') license=('GPL') url="http://maxima.sourceforge.net" -depends=('sbcl=1.0.53' 'texinfo' 'sh') +depends=('sbcl=1.0.54' 'texinfo' 'sh') makedepends=('python2') optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via /usr/bin/rmaxima' 'tk: graphical xmaxima interface') # needs rebuild when bash changes version diff --git a/extra/monodevelop-debugger-gdb/PKGBUILD b/extra/monodevelop-debugger-gdb/PKGBUILD index c52a94f0a..a160a6193 100644 --- a/extra/monodevelop-debugger-gdb/PKGBUILD +++ b/extra/monodevelop-debugger-gdb/PKGBUILD @@ -1,16 +1,16 @@ # Maintainer: Daniel Isenmann <daniel@archlinux.org> pkgname=monodevelop-debugger-gdb -pkgver=2.8.2 +pkgver=2.8.4.2 pkgrel=1 pkgdesc="Mono Debugger support" arch=('i686' 'x86_64') url="http://monodevelop.com" license=('GPL') -depends=('monodevelop>=2.8.2' 'gdb') +depends=('monodevelop>=2.8.4.2' 'gdb') makedepends=('mono') source=(http://download.mono-project.com/sources/$pkgname/$pkgname-$pkgver.tar.bz2) -md5sums=('0c1661c05d8a3fbe56cf1122d9730b26') +md5sums=('4c081b6d85ffe36389a3b06da37dcbe4') build() { export MONO_SHARED_DIR="${srcdir}/.wabi" @@ -20,6 +20,10 @@ build() { ./configure --prefix=/usr make || return 1 +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install } diff --git a/extra/monodevelop/PKGBUILD b/extra/monodevelop/PKGBUILD index 742c7fcd5..a14ee1aab 100644 --- a/extra/monodevelop/PKGBUILD +++ b/extra/monodevelop/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Giovanni Scafora <giovanni@archlinux.org> pkgname=monodevelop -pkgver=2.8.2 +pkgver=2.8.4.2 pkgrel=1 pkgdesc="An IDE primarily designed for C# and other .NET languages" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('mono>=2.10.5' 'mono-addins>=0.6.2' 'gnome-sharp' 'gecko-sharp-2.0>=0.1 options=(!makeflags) install=monodevelop.install source=(http://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2) -md5sums=('4a445e251d5e8a12a8aa4ae22f3a6841') +md5sums=('276fb75e2ffa4cf41fd609caa74dc276') build() { export MONO_SHARED_DIR=$srcdir/src/.wabi diff --git a/extra/sbcl/PKGBUILD b/extra/sbcl/PKGBUILD index d34358e1b..f8551dc3f 100644 --- a/extra/sbcl/PKGBUILD +++ b/extra/sbcl/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 143489 2011-11-24 20:44:47Z juergen $ +# $Id: PKGBUILD 144860 2011-12-08 19:58:02Z juergen $ # Contributor: John Proctor <jproctor@prium.net> # Contributor: Daniel White <daniel@whitehouse.id.au> # Maintainer: Juergen Hoetzel <juergen@archlinux.org> # Contributor: Leslie Polzer (skypher) pkgname=sbcl -pkgver=1.0.53 +pkgver=1.0.54 pkgrel=1 pkgdesc="Steel Bank Common Lisp" url="http://www.sbcl.org/" @@ -17,7 +17,7 @@ makedepends=('sbcl' 'texinfo') install=sbcl.install source=("http://downloads.sourceforge.net/project/sbcl/sbcl/$pkgver/$pkgname-$pkgver-source.tar.bz2" "arch-fixes.lisp") -md5sums=('28bdb8d65b240bcc45370f19b781f9b8' +md5sums=('b7e956a71d603bb714f71c2f7ef350f6' '7ac0c1936547f4278198b8bf7725204d') build() { diff --git a/extra/vigra/PKGBUILD b/extra/vigra/PKGBUILD index ded6f2b6e..6bc34f5fe 100644 --- a/extra/vigra/PKGBUILD +++ b/extra/vigra/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 138500 2011-09-25 14:55:34Z andyrtr $ +# $Id: PKGBUILD 144876 2011-12-08 20:54:22Z andyrtr $ # Maintainer: AndyRTR <andyrtr@archlinux.org> # Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com> pkgbase=vigra pkgname=('vigra' 'vigra-doc') pkgver=1.8.0 -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64') url="http://hci.iwr.uni-heidelberg.de/vigra/" license=('custom:MIT') @@ -25,6 +25,7 @@ build() { cd "${srcdir}"/${pkgbase}-${pkgver} patch -Np1 -i ${srcdir}/vigra-1.7.1.gcc460.patch cmake -DCMAKE_INSTALL_PREFIX=/usr \ + -DPYTHON_EXECUTABLE=/usr/bin/python2 \ -DWITH_VIGRANUMPY=1 \ -DDOCINSTALL=share/doc make @@ -48,6 +49,9 @@ package_vigra() { # remove doc rm -rf "${pkgdir}"/usr/share/doc + + #fix shebang for python2 + sed -i 's|python$|python2|' "$pkgdir"/usr/bin/vigra-config } package_vigra-doc() { diff --git a/extra/xalan-java/PKGBUILD b/extra/xalan-java/PKGBUILD new file mode 100644 index 000000000..f7fa0ad7c --- /dev/null +++ b/extra/xalan-java/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Andreas Radke <andyrtr@archlinux.org> +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Contributor: Hussam Al-Tayeb <ht990332@gmail.com> + +pkgname=xalan-java +pkgver=2.7.1 +pkgrel=3 +pkgdesc="XSLT processor for transforming XML documents into HTML, text, or other XML document types" +arch=('any') +license=('APACHE') +url="http://xml.apache.org/xalan-j" +depends=('xerces2-java') +source=(http://mirror.softaculous.com/apache//xml/xalan-j/xalan-j_${pkgver//./_}-bin-2jars.tar.gz) +md5sums=('3ccda39bcd08b780436dfd2f22fb23d5') + +build() { + /bin/true +} + +package() { + cd ${srcdir}/xalan-j_${pkgver//./_} + install -m755 -d ${pkgdir}/usr/share/java + install -m644 xalan.jar ${pkgdir}/usr/share/java/ || return 1 + install -m644 xsltc.jar ${pkgdir}/usr/share/java/ || return 1 +} diff --git a/extra/xerces2-java/PKGBUILD b/extra/xerces2-java/PKGBUILD new file mode 100644 index 000000000..cccb28bed --- /dev/null +++ b/extra/xerces2-java/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 144863 2011-12-08 20:32:13Z andyrtr $ + +# Maintainer: Andreas Radke <andyrtr@archlinux.org> +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=xerces2-java +pkgver=2.11.0 +pkgrel=1 +pkgdesc="High performance fully compliant Java XML parser" +arch=('any') +url="http://xml.apache.org/xerces2-j" +license=('APACHE') +provides=("java-xerces2=${pkgver}") +conflicts=('java-xerces2') +replaces=('java-xerces2') +source=(http://mirror.checkdomain.de/apache//xerces/j/Xerces-J-bin.${pkgver}.tar.gz) +md5sums=('29d731e0ae57eb3f2e09af6594bc2515') + +build() { + /bin/true +} + +package() { + cd ${srcdir}/xerces-${pkgver//./_} + install -m755 -d ${pkgdir}/usr/share/java + rm -f xercesSamples.jar + install -m644 *.jar ${pkgdir}/usr/share/java/ +} diff --git a/kde-unstable/kactivities/PKGBUILD b/kde-unstable/kactivities/PKGBUILD index e60a143e9..cbb4efee4 100644 --- a/kde-unstable/kactivities/PKGBUILD +++ b/kde-unstable/kactivities/PKGBUILD @@ -1,24 +1,19 @@ -# $Id: PKGBUILD 143306 2011-11-24 16:13:52Z andrea $ +# $Id: PKGBUILD 144769 2011-12-08 10:29:26Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kactivities -pkgver=4.7.80 -pkgrel=2 +pkgver=4.7.90 +pkgrel=1 arch=('i686' 'x86_64') pkgdesc='API for using and interacting with Activities' url='http://kde.org/' license=('GPL' 'FDL') depends=('kdelibs') makedepends=('cmake' 'automoc4') -source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2" - 'fix-activities.patch') -sha1sums=('c619c5d6e3e2ef79d0cebf52bf18d1b467dc24f9' - '6eb890958726856cf4ddb172acd46ba08f7a5088') +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +sha1sums=('23ae79b85dd8c754950fcbabbd4cae5c9f139e74') build() { - cd "${srcdir}"/${pkgname}-${pkgver} - patch -p1 -i "${srcdir}"/fix-activities.patch - cd "${srcdir}" mkdir build cd build diff --git a/kde-unstable/kdeaccessibility-jovie/PKGBUILD b/kde-unstable/kdeaccessibility-jovie/PKGBUILD index c57d0deef..7e3f1b849 100644 --- a/kde-unstable/kdeaccessibility-jovie/PKGBUILD +++ b/kde-unstable/kdeaccessibility-jovie/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143326 2011-11-24 16:14:16Z andrea $ +# $Id: PKGBUILD 144780 2011-12-08 10:36:15Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-jovie -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/jovie-${pkgver}.tar.bz2") -sha1sums=('d5ae86d01279fdf7b8102f9d516749b0ddfb531b') +sha1sums=('7c4ce5adcf6c7762c22706c99d467775254aeaa8') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeaccessibility-kaccessible/PKGBUILD b/kde-unstable/kdeaccessibility-kaccessible/PKGBUILD index 0e90b4e79..6d5157bd4 100644 --- a/kde-unstable/kdeaccessibility-kaccessible/PKGBUILD +++ b/kde-unstable/kdeaccessibility-kaccessible/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143328 2011-11-24 16:14:18Z andrea $ +# $Id: PKGBUILD 144781 2011-12-08 10:36:48Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kaccessible -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kaccessible-${pkgver}.tar.bz2") -sha1sums=('6d3235dde870414af9548c6fe1b1d25dd101d436') +sha1sums=('320c7ec5a9cc7d67b768db6efcfff1f18854d045') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeaccessibility-kmag/PKGBUILD b/kde-unstable/kdeaccessibility-kmag/PKGBUILD index 084ce52af..c608359a5 100644 --- a/kde-unstable/kdeaccessibility-kmag/PKGBUILD +++ b/kde-unstable/kdeaccessibility-kmag/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143330 2011-11-24 16:14:20Z andrea $ +# $Id: PKGBUILD 144782 2011-12-08 10:37:16Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kmag -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kmag-${pkgver}.tar.bz2") -sha1sums=('549bd0c71e95f7526bb6766ba4d262ac372b6e1c') +sha1sums=('e0e1f5f7307576f7ba651f0ab3090b169b330648') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeaccessibility-kmousetool/PKGBUILD b/kde-unstable/kdeaccessibility-kmousetool/PKGBUILD index f052a35a8..790170dea 100644 --- a/kde-unstable/kdeaccessibility-kmousetool/PKGBUILD +++ b/kde-unstable/kdeaccessibility-kmousetool/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143332 2011-11-24 16:14:23Z andrea $ +# $Id: PKGBUILD 144783 2011-12-08 10:37:45Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kmousetool -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kmousetool-${pkgver}.tar.bz2") -sha1sums=('a5a3190ba645d1930ca561560f2f37f91dc550c9') +sha1sums=('bca35f26870d3922aa0631212780509f925639a3') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeaccessibility-kmouth/PKGBUILD b/kde-unstable/kdeaccessibility-kmouth/PKGBUILD index 72c7247b4..c912eccf6 100644 --- a/kde-unstable/kdeaccessibility-kmouth/PKGBUILD +++ b/kde-unstable/kdeaccessibility-kmouth/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143334 2011-11-24 16:14:25Z andrea $ +# $Id: PKGBUILD 144784 2011-12-08 10:38:13Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kmouth -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kmouth-${pkgver}.tar.bz2") -sha1sums=('175b2a58241a42689d73396d02f2836d57978e5e') +sha1sums=('b013e3bbeea1ee0ef14b65301db10371ee42dec5') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeadmin/PKGBUILD b/kde-unstable/kdeadmin/PKGBUILD index da2c8b6de..a46225a0a 100644 --- a/kde-unstable/kdeadmin/PKGBUILD +++ b/kde-unstable/kdeadmin/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 143336 2011-11-24 16:14:27Z andrea $ +# $Id: PKGBUILD 144785 2011-12-08 10:38:49Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -7,7 +7,7 @@ pkgname=('kdeadmin-kcron' 'kdeadmin-ksystemlog' 'kdeadmin-kuser' 'kdeadmin-system-config-printer-kde') -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -16,7 +16,7 @@ groups=('kde' 'kdeadmin') makedepends=('cmake' 'automoc4' 'kdebindings-python' 'system-config-printer-common') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2" 'syslog-path.patch') -sha1sums=('3e06dff48271e78eec67bcda644476bcf0efa554' +sha1sums=('188265229fcc401706e760db9b5247f66e6f4931' '20095ce6e0f3e5b6800a7c6e52de6fddba62c031') build() { diff --git a/kde-unstable/kdeartwork/PKGBUILD b/kde-unstable/kdeartwork/PKGBUILD index 4113014a1..1af1a6205 100644 --- a/kde-unstable/kdeartwork/PKGBUILD +++ b/kde-unstable/kdeartwork/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 143338 2011-11-24 16:14:29Z andrea $ +# $Id: PKGBUILD 144786 2011-12-08 10:39:26Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -13,7 +13,7 @@ pkgname=('kdeartwork-aurorae' 'kdeartwork-styles' 'kdeartwork-wallpapers' 'kdeartwork-weatherwallpapers') -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -22,7 +22,7 @@ groups=('kde' 'kdeartwork') makedepends=('cmake' 'automoc4' 'xscreensaver' 'eigen' 'kdebase-workspace' 'libkexiv2') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('1b046764a5ca6481d6ce5648b0e180eec7cd08c0') +sha1sums=('fe7fc5262c677a963fb42784b817b3a2c2659271') build() { cd $srcdir diff --git a/kde-unstable/kdebase-konsole/PKGBUILD b/kde-unstable/kdebase-konsole/PKGBUILD index 9b0e14d2b..020e0639a 100644 --- a/kde-unstable/kdebase-konsole/PKGBUILD +++ b/kde-unstable/kdebase-konsole/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143340 2011-11-24 16:14:32Z andrea $ +# $Id: PKGBUILD 144787 2011-12-08 10:42:27Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebase-konsole -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 arch=('i686' 'x86_64') url='http://kde.org/applications/system/konsole/' @@ -12,7 +12,7 @@ groups=('kde' 'kdebase') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/unstable/${pkgver}/src/konsole-${pkgver}.tar.bz2") -sha1sums=('47305f7eeabeefd71e518314b04d18b7a9724c39') +sha1sums=('c4e99b07fcca2ddef6e155ca03d26a495a9e362b') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebase-runtime/PKGBUILD b/kde-unstable/kdebase-runtime/PKGBUILD index d329f4d40..b8c6543b8 100644 --- a/kde-unstable/kdebase-runtime/PKGBUILD +++ b/kde-unstable/kdebase-runtime/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 143284 2011-11-24 16:13:21Z andrea $ +# $Id: PKGBUILD 144756 2011-12-08 10:22:06Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdebase-runtime -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="KDE Base Runtime Environment" arch=('i686' 'x86_64') @@ -18,7 +18,7 @@ optdepends=('htdig: to build the search index in khelpcenter' 'gdb: drkonq crash handler') install="${pkgname}.install" source=("http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.bz2") -sha1sums=('a9c0be087a2cd96d84c1fec1b4f726e9cbcc3327') +sha1sums=('834f3a0c4743e9d537139a856eb066a2c6251c15') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebase-workspace/PKGBUILD b/kde-unstable/kdebase-workspace/PKGBUILD index 71ce4663c..bbfd10cd9 100644 --- a/kde-unstable/kdebase-workspace/PKGBUILD +++ b/kde-unstable/kdebase-workspace/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 143308 2011-11-24 16:13:56Z andrea $ +# $Id: PKGBUILD 144859 2011-12-08 16:18:07Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdebase-workspace _pkgname=kde-workspace -pkgver=4.7.80 -pkgrel=1 +pkgver=4.7.90 +pkgrel=2 pkgdesc="KDE Base Workspace" arch=('i686' 'x86_64') url='http://www.kde.org' @@ -31,10 +31,9 @@ backup=('usr/share/config/kdm/kdmrc' 'etc/pam.d/kscreensaver') options=('emptydirs') source=("http://download.kde.org/unstable/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2" - 'kdm-zsh-profile.patch' 'kdm' 'kde.pam' 'kde-np.pam' 'kscreensaver.pam' + 'kdm' 'kde.pam' 'kde-np.pam' 'kscreensaver.pam' 'fixpath.patch' 'terminate-server.patch' 'kdm-xinitrd.patch') -sha1sums=('4fa3d9535361b81a0d1418f941c86409dba4dda1' - '8c2bdefb23a03b753b78d16944d03fa3939d2d99' +sha1sums=('7146fbc0bcc9a7cd11e6f266963bd358452eb347' '5db3a245201bd4a50e65aa2ef583cf5490e4f646' 'f7b38af38549242a240f1a90ab9964ca8a366129' '603cc79c4d2b4eae62bb5f244aeecb3a778b5516' @@ -45,8 +44,7 @@ sha1sums=('4fa3d9535361b81a0d1418f941c86409dba4dda1' build() { cd "${srcdir}"/${_pkgname}-${pkgver} - patch -p0 -i "${srcdir}"/kdm-zsh-profile.patch - patch -p1 -i "${srcdir}"/kdm-xinitrd.patch + patch -p1 -i "${srcdir}"/kdm-xinitrd.patch patch -p0 -i "${srcdir}"/fixpath.patch patch -p0 -i "${srcdir}"/terminate-server.patch diff --git a/kde-unstable/kdebase/PKGBUILD b/kde-unstable/kdebase/PKGBUILD index 70263f6aa..5007b40a8 100644 --- a/kde-unstable/kdebase/PKGBUILD +++ b/kde-unstable/kdebase/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 143310 2011-11-24 16:13:59Z andrea $ +# $Id: PKGBUILD 144771 2011-12-08 10:31:45Z 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.7.80 +pkgver=4.7.90 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') source=("http://download.kde.org/unstable/${pkgver}/src/kde-baseapps-${pkgver}.tar.bz2") -sha1sums=('51782a7e569479ea0eff5e2ed93bc9813111a4cc') +sha1sums=('4e1bf22e8b42b84ef4c779dcdd736f376a2c459b') build() { cd ${srcdir} diff --git a/kde-unstable/kdebindings-kimono/PKGBUILD b/kde-unstable/kdebindings-kimono/PKGBUILD index e09b59b09..d8ad9eb77 100644 --- a/kde-unstable/kdebindings-kimono/PKGBUILD +++ b/kde-unstable/kdebindings-kimono/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143342 2011-11-24 16:14:33Z andrea $ +# $Id: PKGBUILD 144788 2011-12-08 10:42:59Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-kimono -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc=".NET/Mono bindings for the KDE libraries" url="http://kde.org/" @@ -13,7 +13,7 @@ depends=('kdebindings-qyoto' 'kdebindings-smokekde') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost' 'kdepimlibs') conflicts=('kdebindings-csharp') source=("http://download.kde.org/unstable/${pkgver}/src/kimono-${pkgver}.tar.bz2") -sha1sums=('a60e0e77618cc29592537e3c1254f1141cfb1bee') +sha1sums=('db61f32a15e37a84ef44746e3e04b33667df71c9') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebindings-korundum/PKGBUILD b/kde-unstable/kdebindings-korundum/PKGBUILD new file mode 100644 index 000000000..f83c1ef3a --- /dev/null +++ b/kde-unstable/kdebindings-korundum/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 144789 2011-12-08 10:43:26Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdebindings-korundum +pkgver=4.7.80 +pkgrel=1 +pkgdesc="KDE bindings for ruby" +url="http://kde.org/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kdebindings') +depends=('kdebindings-qtruby' 'kdebindings-smokekde') +makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost' + 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate') +conflicts=('kdebindings-ruby') +source=("http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.bz2") +sha1sums=('8336a5504f90111772ff4004eff971e779f92327') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../korundum-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdebindings-kross/PKGBUILD b/kde-unstable/kdebindings-kross/PKGBUILD index 3348d88f6..329a3628b 100644 --- a/kde-unstable/kdebindings-kross/PKGBUILD +++ b/kde-unstable/kdebindings-kross/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 143344 2011-11-24 16:14:36Z andrea $ +# $Id: PKGBUILD 144790 2011-12-08 10:43:55Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgbase=kdebindings-kross pkgname=('kdebindings-kross-python' # 'kdebindings-kross-ruby' 'kdebindings-kross-java') -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 url="http://kde.org/" 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/unstable/${pkgver}/src/kross-interpreters-${pkgver}.tar.bz2") -sha1sums=('52adafe42de134c6bc53855dbc464df2a1190efd') +sha1sums=('bf52cd779c91b289b59b627db10112e2fa015547') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebindings-perlkde/PKGBUILD b/kde-unstable/kdebindings-perlkde/PKGBUILD index ff15152b2..8833c0573 100644 --- a/kde-unstable/kdebindings-perlkde/PKGBUILD +++ b/kde-unstable/kdebindings-perlkde/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143346 2011-11-24 16:14:39Z andrea $ +# $Id: PKGBUILD 144791 2011-12-08 10:44:26Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-perlkde -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Perl bindings for the KDE libraries" url="http://kde.org/" @@ -13,7 +13,7 @@ depends=('kdebindings-perlqt' 'kdebindings-smokekde') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate') source=("http://download.kde.org/unstable/${pkgver}/src/perlkde-${pkgver}.tar.bz2") -sha1sums=('2e5c317f26ccbc1e251fb53b30eae364a5153543') +sha1sums=('4bb4cb048ec96fb52a9bb49d2a32938a28f37355') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebindings-perlqt/PKGBUILD b/kde-unstable/kdebindings-perlqt/PKGBUILD index bed48ab40..d186f60bd 100644 --- a/kde-unstable/kdebindings-perlqt/PKGBUILD +++ b/kde-unstable/kdebindings-perlqt/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143298 2011-11-24 16:13:43Z andrea $ +# $Id: PKGBUILD 144764 2011-12-08 10:27:08Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-perlqt -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Perl bindings for the Qt libraries" url="http://kde.org/" @@ -12,7 +12,7 @@ groups=('kdebindings') depends=('kdebindings-smokeqt') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') source=("http://download.kde.org/unstable/${pkgver}/src/perlqt-${pkgver}.tar.bz2") -sha1sums=('1f147d9554999b539b7c81da0fb4522f05f7c7d4') +sha1sums=('0526a7b5b32934e85ff8432a597e3e88c9362ecc') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebindings-python/PKGBUILD b/kde-unstable/kdebindings-python/PKGBUILD index 021c5ee02..d5d38aebe 100644 --- a/kde-unstable/kdebindings-python/PKGBUILD +++ b/kde-unstable/kdebindings-python/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143300 2011-11-24 16:13:45Z andrea $ +# $Id: PKGBUILD 144765 2011-12-08 10:27:40Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-python -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="KDE bindings for Python" url="http://kde.org/" @@ -12,7 +12,7 @@ groups=('kdebindings') depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs') makedepends=('cmake' 'automoc4' 'boost') source=("http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2") -sha1sums=('b67905a73566ad99b3bf1238b87f333c3ebb1fc5') +sha1sums=('ada3862a46add5f0901d03a84c0c04759a944401') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebindings-qtruby/PKGBUILD b/kde-unstable/kdebindings-qtruby/PKGBUILD index b3976602d..cfa6a28c8 100644 --- a/kde-unstable/kdebindings-qtruby/PKGBUILD +++ b/kde-unstable/kdebindings-qtruby/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143304 2011-11-24 16:13:50Z andrea $ +# $Id: PKGBUILD 144768 2011-12-08 10:28:53Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-qtruby -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Qt bindings for ruby" url="http://kde.org/" @@ -13,7 +13,7 @@ depends=('kdebindings-smokeqt' 'ruby') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') conflicts=('kdebindings-ruby') source=("http://download.kde.org/unstable/${pkgver}/src/qtruby-${pkgver}.tar.bz2") -sha1sums=('ca1e73b375449d36ee52ae3012e70f2fa149f751') +sha1sums=('8679b33dff47a6d73616ef75ab5119452e54c246') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebindings-qyoto/PKGBUILD b/kde-unstable/kdebindings-qyoto/PKGBUILD index cfb9d378d..75ebea31f 100644 --- a/kde-unstable/kdebindings-qyoto/PKGBUILD +++ b/kde-unstable/kdebindings-qyoto/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143302 2011-11-24 16:13:48Z andrea $ +# $Id: PKGBUILD 144766 2011-12-08 10:28:20Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-qyoto -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc=".NET/Mono bindings for the Qt libraries" url="http://kde.org/" @@ -13,7 +13,7 @@ depends=('kdebindings-smokeqt' 'mono') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') conflicts=('kdebindings-csharp') source=("http://download.kde.org/unstable/${pkgver}/src/qyoto-${pkgver}.tar.bz2") -sha1sums=('e1e4ab189e16ad33e3d19a457aee8540437c4af9') +sha1sums=('b81fc239f3465daadbda3fa5da8478fd3f26e740') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebindings-smokegen/PKGBUILD b/kde-unstable/kdebindings-smokegen/PKGBUILD index ac12f5f64..ba2b2146f 100644 --- a/kde-unstable/kdebindings-smokegen/PKGBUILD +++ b/kde-unstable/kdebindings-smokegen/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143288 2011-11-24 16:13:26Z andrea $ +# $Id: PKGBUILD 144759 2011-12-08 10:24:16Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokegen -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="A general purpose C++ parser with a plugin infrastructure" url="http://kde.org/" @@ -11,10 +11,15 @@ license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') conflicts=('kdebindings-smoke') -source=("http://download.kde.org/unstable/${pkgver}/src/smokegen-${pkgver}.tar.bz2") -sha1sums=('da6dd73b0650c0f6e749435c3ae822c236224b00') +source=("http://download.kde.org/unstable/${pkgver}/src/smokegen-${pkgver}.tar.bz2" + 'fix-crash.patch') +sha1sums=('c852cf97a7b2d7516a4995d19ad3be6035aa0c17' + 'b209b2b7017622fea3406c5a9636e2334566af01') build() { + cd "${srcdir}"/smokegen-${pkgver} + patch -p1 -i "${srcdir}"/fix-crash.patch + cd "${srcdir}" mkdir build cd build diff --git a/kde-unstable/kdebindings-smokegen/fix-crash.patch b/kde-unstable/kdebindings-smokegen/fix-crash.patch new file mode 100644 index 000000000..5864da3f3 --- /dev/null +++ b/kde-unstable/kdebindings-smokegen/fix-crash.patch @@ -0,0 +1,13 @@ +diff -up smokegen-4.7.0/parser/type_compiler.cpp.orig smokegen-4.7.0/parser/type_compiler.cpp +diff -up smokegen-4.7.0/type_compiler.cpp.orig smokegen-4.7.0/type_compiler.cpp +--- smokegen-4.7.0/type_compiler.cpp.orig 2011-08-02 14:34:08.000000000 +0200 ++++ smokegen-4.7.0/type_compiler.cpp 2011-08-02 14:34:34.000000000 +0200 +@@ -191,6 +191,8 @@ void TypeCompiler::visitParameterDeclara + + void TypeCompiler::visitPtrOperator(PtrOperatorAST* node) + { ++ if ( ! m_session->token_stream ) return; ++ if ( ! token_text(m_session->token_stream->kind(node->op)) ) return; + if (token_text(m_session->token_stream->kind(node->op))[0] == '*') { + QPair<bool, bool> cv = m_visitor->parseCv(node->cv); + pointerDepth.append(cv.first); diff --git a/kde-unstable/kdebindings-smokekde/PKGBUILD b/kde-unstable/kdebindings-smokekde/PKGBUILD index 63ca984c4..ad02576b9 100644 --- a/kde-unstable/kdebindings-smokekde/PKGBUILD +++ b/kde-unstable/kdebindings-smokekde/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143296 2011-11-24 16:13:40Z andrea $ +# $Id: PKGBUILD 144763 2011-12-08 10:26:34Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokekde -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Language independent library for KDE bindings" url="http://kde.org/" @@ -14,7 +14,7 @@ makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost' 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate') conflicts=('kdebindings-smoke') source=("http://download.kde.org/unstable/${pkgver}/src/smokekde-${pkgver}.tar.bz2") -sha1sums=('579e87eaf1067593d27396fe092434f7fc7b4c09') +sha1sums=('22aa60f5ee75d124c64dbff66903a57467f4675e') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebindings-smokeqt/PKGBUILD b/kde-unstable/kdebindings-smokeqt/PKGBUILD index 2490b2493..efd5c4166 100644 --- a/kde-unstable/kdebindings-smokeqt/PKGBUILD +++ b/kde-unstable/kdebindings-smokeqt/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143290 2011-11-24 16:13:28Z andrea $ +# $Id: PKGBUILD 144760 2011-12-08 10:24:48Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokeqt -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Language independent library for Qt bindings" url="http://kde.org/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'qimageblitz' 'qscintilla' 'kdebindings-smokegen') makedepends=('cmake' 'automoc4') conflicts=('kdebindings-smoke') source=("http://download.kde.org/unstable/${pkgver}/src/smokeqt-${pkgver}.tar.bz2") -sha1sums=('cad6c93aef4374012de9958d9ac38e3993a799b2') +sha1sums=('394f5e5d00abfaffffecf46da0a3c274fa5d192b') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-analitza/PKGBUILD b/kde-unstable/kdeedu-analitza/PKGBUILD index 7ddcbb258..a3296b3a9 100644 --- a/kde-unstable/kdeedu-analitza/PKGBUILD +++ b/kde-unstable/kdeedu-analitza/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143324 2011-11-24 16:14:14Z andrea $ +# $Id: PKGBUILD 144779 2011-12-08 10:35:46Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-analitza -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="A library to add mathematical features to your program" url="http://kde.org/" @@ -12,7 +12,7 @@ groups=('kde' 'kdeedu') depends=('kdelibs') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/unstable/${pkgver}/src/analitza-${pkgver}.tar.bz2") -sha1sums=('db2b8fd3f14f03c128255d078670c1273a3b6657') +sha1sums=('f9193fa475d595df0b289dc1f390796dc8a8abcc') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-blinken/PKGBUILD b/kde-unstable/kdeedu-blinken/PKGBUILD index f39a11290..83a338aed 100644 --- a/kde-unstable/kdeedu-blinken/PKGBUILD +++ b/kde-unstable/kdeedu-blinken/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143348 2011-11-24 16:14:42Z andrea $ +# $Id: PKGBUILD 144792 2011-12-08 10:44:54Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-blinken -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/blinken-${pkgver}.tar.bz2") -sha1sums=('9215dc4d2b40b8f9173f95f06cf77c5099a733cb') +sha1sums=('6650df9ded1d935f9e767cdac25f33dcd1cec632') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-cantor/PKGBUILD b/kde-unstable/kdeedu-cantor/PKGBUILD index 2d6dbeb81..a1f8eef3e 100644 --- a/kde-unstable/kdeedu-cantor/PKGBUILD +++ b/kde-unstable/kdeedu-cantor/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143350 2011-11-24 16:14:44Z andrea $ +# $Id: PKGBUILD 144793 2011-12-08 10:45:23Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-cantor -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/cantor-${pkgver}.tar.bz2") -sha1sums=('7ea3094de5323b51f8f8aa1c559b1cbb8c5fbea4') +sha1sums=('a23450b3b0772730adc7c1c00aed4c4bee23a9b6') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kalgebra/PKGBUILD b/kde-unstable/kdeedu-kalgebra/PKGBUILD index fb5280713..7c90967e1 100644 --- a/kde-unstable/kdeedu-kalgebra/PKGBUILD +++ b/kde-unstable/kdeedu-kalgebra/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143352 2011-11-24 16:14:47Z andrea $ +# $Id: PKGBUILD 144794 2011-12-08 10:45:53Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kalgebra -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Graph Calculator" url="http://kde.org/applications/education/kalgebra/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdeedu' 'kdeedu-analitza') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kalgebra-${pkgver}.tar.bz2") -sha1sums=('705bba4e1faf35b4d09d6ac487171cef9f54f642') +sha1sums=('5455555357ef314da3480baabe8c557e9a4b8c60') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kalzium/PKGBUILD b/kde-unstable/kdeedu-kalzium/PKGBUILD index 7604114fd..4608c0945 100644 --- a/kde-unstable/kdeedu-kalzium/PKGBUILD +++ b/kde-unstable/kdeedu-kalzium/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143354 2011-11-24 16:14:49Z andrea $ +# $Id: PKGBUILD 144795 2011-12-08 10:46:23Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kalzium -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Periodic Table of Elements" url="http://kde.org/applications/education/kalzium/" @@ -13,7 +13,7 @@ depends=('kdelibs' 'avogadro' 'ocaml' 'facile') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kalzium-${pkgver}.tar.bz2") -sha1sums=('d6dbca03628ed96a256c3c603fae220a97d6fec3') +sha1sums=('97e9ddf6b7b122cc1c294468de199414e067e261') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kanagram/PKGBUILD b/kde-unstable/kdeedu-kanagram/PKGBUILD index 7924b79b3..c7699f6cb 100644 --- a/kde-unstable/kdeedu-kanagram/PKGBUILD +++ b/kde-unstable/kdeedu-kanagram/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143356 2011-11-24 16:14:52Z andrea $ +# $Id: PKGBUILD 144796 2011-12-08 10:46:57Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kanagram -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kanagram-${pkgver}.tar.bz2") -sha1sums=('eb7d0cf7eeae5ab5520cb67cf52b73f08ec6bd57') +sha1sums=('89de86ddda5d94a56dca341ae67ad5a2337cceec') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kbruch/PKGBUILD b/kde-unstable/kdeedu-kbruch/PKGBUILD index 7ab43f309..e5c7c70ae 100644 --- a/kde-unstable/kdeedu-kbruch/PKGBUILD +++ b/kde-unstable/kdeedu-kbruch/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143358 2011-11-24 16:14:54Z andrea $ +# $Id: PKGBUILD 144797 2011-12-08 10:47:27Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kbruch -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kbruch-${pkgver}.tar.bz2") -sha1sums=('46d735c58ed5bf7a871d92633f1d42b418da7815') +sha1sums=('ab327db23a577ed18eedc06b9e0f1e6ab64961a6') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kgeography/PKGBUILD b/kde-unstable/kdeedu-kgeography/PKGBUILD index 6aca74f87..b1f050fa3 100644 --- a/kde-unstable/kdeedu-kgeography/PKGBUILD +++ b/kde-unstable/kdeedu-kgeography/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143360 2011-11-24 16:14:56Z andrea $ +# $Id: PKGBUILD 144798 2011-12-08 10:47:58Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kgeography -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kgeography-${pkgver}.tar.bz2") -sha1sums=('5b71a2f5a66b996cd6741422045d217e4dc275a1') +sha1sums=('0018ebb2b62ba6f577a3e424500c35797353c222') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-khangman/PKGBUILD b/kde-unstable/kdeedu-khangman/PKGBUILD index 5f450e478..21d10c7eb 100644 --- a/kde-unstable/kdeedu-khangman/PKGBUILD +++ b/kde-unstable/kdeedu-khangman/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143362 2011-11-24 16:15:00Z andrea $ +# $Id: PKGBUILD 144799 2011-12-08 10:48:34Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-khangman -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/khangman-${pkgver}.tar.bz2") -sha1sums=('3e4e14a145e35ec4a433f6db1bbbf4bc3804953c') +sha1sums=('712d4acec177e790b16a99aace00405143da0aa9') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kig/PKGBUILD b/kde-unstable/kdeedu-kig/PKGBUILD index f83a2bf20..5435e00a6 100644 --- a/kde-unstable/kdeedu-kig/PKGBUILD +++ b/kde-unstable/kdeedu-kig/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143364 2011-11-24 16:15:03Z andrea $ +# $Id: PKGBUILD 144800 2011-12-08 10:49:04Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kig -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kig-${pkgver}.tar.bz2") -sha1sums=('9ac87b12dde1108782e5d4c332e550759ffd769d') +sha1sums=('04f0ad06edf4b3c759d2d9b51dadf25846b3a330') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kiten/PKGBUILD b/kde-unstable/kdeedu-kiten/PKGBUILD index 98bb48051..016506080 100644 --- a/kde-unstable/kdeedu-kiten/PKGBUILD +++ b/kde-unstable/kdeedu-kiten/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143366 2011-11-24 16:15:06Z andrea $ +# $Id: PKGBUILD 144801 2011-12-08 10:49:38Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kiten -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kiten-${pkgver}.tar.bz2") -sha1sums=('60fb150e05185990da7fadf2002390938e9fef9e') +sha1sums=('737de5bdb23b84739dad4d791195b697e9f161e3') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-klettres/PKGBUILD b/kde-unstable/kdeedu-klettres/PKGBUILD index 0a13bd752..82c8e5b39 100644 --- a/kde-unstable/kdeedu-klettres/PKGBUILD +++ b/kde-unstable/kdeedu-klettres/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143368 2011-11-24 16:15:10Z andrea $ +# $Id: PKGBUILD 144802 2011-12-08 10:50:21Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-klettres -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/klettres-${pkgver}.tar.bz2") -sha1sums=('ef205da0317630d455d34c6f53f541b2a06038ea') +sha1sums=('1b3a30f69399a6770a8dce86db54f62d2ff9ac7d') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kmplot/PKGBUILD b/kde-unstable/kdeedu-kmplot/PKGBUILD index 75fc53cba..3fa8055d2 100644 --- a/kde-unstable/kdeedu-kmplot/PKGBUILD +++ b/kde-unstable/kdeedu-kmplot/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143370 2011-11-24 16:15:14Z andrea $ +# $Id: PKGBUILD 144803 2011-12-08 10:50:54Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kmplot -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kmplot-${pkgver}.tar.bz2") -sha1sums=('7009619d0d11bd6be7acac095f386ff219ccd506') +sha1sums=('895c2adb0b53bd2800b1eb47d187b8b16ba574f4') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kstars/PKGBUILD b/kde-unstable/kdeedu-kstars/PKGBUILD index 38d5b4939..79b65825b 100644 --- a/kde-unstable/kdeedu-kstars/PKGBUILD +++ b/kde-unstable/kdeedu-kstars/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143372 2011-11-24 16:15:18Z andrea $ +# $Id: PKGBUILD 144804 2011-12-08 10:51:24Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kstars -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Desktop Planetarium" url="http://kde.org/applications/education/kstars/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'eigen' 'cfitsio' 'libindi') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kstars-${pkgver}.tar.bz2") -sha1sums=('ac705e13f83db3017e5ad6a615c264be69259f21') +sha1sums=('7e818cddfb9d52c44a8702edc56321b14924c9a2') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-ktouch/PKGBUILD b/kde-unstable/kdeedu-ktouch/PKGBUILD index 62f000d1e..a12ceb3f3 100644 --- a/kde-unstable/kdeedu-ktouch/PKGBUILD +++ b/kde-unstable/kdeedu-ktouch/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143374 2011-11-24 16:15:21Z andrea $ +# $Id: PKGBUILD 144805 2011-12-08 10:52:10Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-ktouch -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Touch Typing Tutor" url="http://kde.org/applications/education/ktouch/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/ktouch-${pkgver}.tar.bz2") -sha1sums=('ebba0f8d22ca06db2488d1059b41432fce6b7a67') +sha1sums=('faa97d88e132788e21a93e044c1977030f246180') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kturtle/PKGBUILD b/kde-unstable/kdeedu-kturtle/PKGBUILD index 06635be37..3e79f0a48 100644 --- a/kde-unstable/kdeedu-kturtle/PKGBUILD +++ b/kde-unstable/kdeedu-kturtle/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143376 2011-11-24 16:15:26Z andrea $ +# $Id: PKGBUILD 144806 2011-12-08 10:52:40Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kturtle -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kturtle-${pkgver}.tar.bz2") -sha1sums=('85e087446b2e6633658ad71e8d64c446a1029b6b') +sha1sums=('be1250b25efde8d74ca9c64f6f2af1fe7f3ae655') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kwordquiz/PKGBUILD b/kde-unstable/kdeedu-kwordquiz/PKGBUILD index 3e2415ee6..1df9a8d7a 100644 --- a/kde-unstable/kdeedu-kwordquiz/PKGBUILD +++ b/kde-unstable/kdeedu-kwordquiz/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143378 2011-11-24 16:15:29Z andrea $ +# $Id: PKGBUILD 144807 2011-12-08 10:53:08Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kwordquiz -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kwordquiz-${pkgver}.tar.bz2") -sha1sums=('6bca16d9ad9d0df0517bec8b944f8e61c89f16c6') +sha1sums=('6bf02eb04565e9b2b12cd1f1a71b747b5f9a5d09') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-marble/PKGBUILD b/kde-unstable/kdeedu-marble/PKGBUILD index cd5efacfd..5f26bf757 100644 --- a/kde-unstable/kdeedu-marble/PKGBUILD +++ b/kde-unstable/kdeedu-marble/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143314 2011-11-24 16:14:04Z andrea $ +# $Id: PKGBUILD 144774 2011-12-08 10:32:55Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-marble -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Desktop Globe" url="http://kde.org/applications/education/marble/" @@ -14,7 +14,7 @@ makedepends=('cmake' 'automoc4' 'gpsd') optdepends=('gpsd: gps support') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.bz2") -sha1sums=('e525f3bca3bef13a3506f5b295847e62fd69e4b2') +sha1sums=('5b184a51a5e6448657ebc9926ee41c7f894e5898') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-parley/PKGBUILD b/kde-unstable/kdeedu-parley/PKGBUILD index 51199cf74..27ba8fdae 100644 --- a/kde-unstable/kdeedu-parley/PKGBUILD +++ b/kde-unstable/kdeedu-parley/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143380 2011-11-24 16:15:34Z andrea $ +# $Id: PKGBUILD 144808 2011-12-08 10:53:38Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-parley -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/parley-${pkgver}.tar.bz2") -sha1sums=('be0824a60c1c33e19b1399d5995d7f9692a98a3f') +sha1sums=('feb71126d177327df5be96a3f1fdd0e844edd94f') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-rocs/PKGBUILD b/kde-unstable/kdeedu-rocs/PKGBUILD index 33e77fd6a..d088c9b55 100644 --- a/kde-unstable/kdeedu-rocs/PKGBUILD +++ b/kde-unstable/kdeedu-rocs/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143382 2011-11-24 16:15:38Z andrea $ +# $Id: PKGBUILD 144809 2011-12-08 10:54:15Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-rocs -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Rocs Graph Theory" url="http://kde.org/applications/education/rocs/" @@ -12,7 +12,7 @@ groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'boost-libs') makedepends=('cmake' 'automoc4' 'boost') source=("http://download.kde.org/unstable/${pkgver}/src/rocs-${pkgver}.tar.bz2") -sha1sums=('dca8675203a9c9d9d384d0b236507cb3380cf75e') +sha1sums=('308ee10484e60d21476507b400b8bacdec64ba9f') options=('!makeflags') build() { diff --git a/kde-unstable/kdeedu-step/PKGBUILD b/kde-unstable/kdeedu-step/PKGBUILD index df3186e81..de8bd83a3 100644 --- a/kde-unstable/kdeedu-step/PKGBUILD +++ b/kde-unstable/kdeedu-step/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143384 2011-11-24 16:15:43Z andrea $ +# $Id: PKGBUILD 144810 2011-12-08 10:54:46Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-step -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Interactive Physical Simulator" url="http://kde.org/applications/education/step/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libqalculate' 'gsl' 'eigen') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/step-${pkgver}.tar.bz2") -sha1sums=('fd2f8f931d74c050feec57f6cf6a9e484dc59fd9') +sha1sums=('280fb584332f6bb043f40a367b8ba9b0e1a4f783') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegames/PKGBUILD b/kde-unstable/kdegames/PKGBUILD index 5ef47f9ca..aeb8950bb 100644 --- a/kde-unstable/kdegames/PKGBUILD +++ b/kde-unstable/kdegames/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 143386 2011-11-24 16:15:52Z andrea $ +# $Id: PKGBUILD 144811 2011-12-08 10:56:23Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -43,7 +43,7 @@ pkgname=('kdegames-bomber' 'kdegames-libkmahjongg' 'kdegames-lskat' 'kdegames-palapeli') -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -52,7 +52,7 @@ groups=('kde' 'kdegames') makedepends=('cmake' 'automoc4' 'ggz-client-libs' 'twisted' 'kdebindings-python' 'openal') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('11583e33d6a8ad6eb1a5f98d11338940083bfea4') +sha1sums=('bfc61fba50d8674a0f8ba5437d23ff3e7254886b') build() { cd $srcdir @@ -102,6 +102,7 @@ package_kdegames-granatier() { package_kdegames-kajongg() { pkgdesc='The ancient Chinese board game for 4 players' depends=('kdegames-libkdegames' 'kdegames-libkmahjongg' 'kdebindings-python' 'twisted') + url="http://www.kde.org/applications/games/kajongg/" install='kdegames.install' cd $srcdir/build/kajongg make DESTDIR=$pkgdir install diff --git a/kde-unstable/kdegraphics-gwenview/PKGBUILD b/kde-unstable/kdegraphics-gwenview/PKGBUILD index 377064424..33b6d1a62 100644 --- a/kde-unstable/kdegraphics-gwenview/PKGBUILD +++ b/kde-unstable/kdegraphics-gwenview/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143388 2011-11-24 16:15:56Z andrea $ +# $Id: PKGBUILD 144812 2011-12-08 10:58:01Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-gwenview -pkgver=4.7.80 +pkgver=4.7.90 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') optdepends=('kipi-plugins: extra plugins to share photos') install=$pkgname.install source=("http://download.kde.org/unstable/${pkgver}/src/gwenview-${pkgver}.tar.bz2") -sha1sums=('7d8a9a99f28b36e8acbd42815929e91c4b9f94eb') +sha1sums=('4ce42d89a91d1dda669e9ac6630613413a8644d8') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-kamera/PKGBUILD b/kde-unstable/kdegraphics-kamera/PKGBUILD index ab9286568..bc333aafc 100644 --- a/kde-unstable/kdegraphics-kamera/PKGBUILD +++ b/kde-unstable/kdegraphics-kamera/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143390 2011-11-24 16:15:58Z andrea $ +# $Id: PKGBUILD 144813 2011-12-08 10:58:35Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kamera -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Configure Kamera" url="http://kde.org/applications/graphics/kamera/" @@ -12,7 +12,7 @@ groups=('kde' 'kdegraphics') depends=('kdebase-runtime' 'gphoto2') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/unstable/${pkgver}/src/kamera-${pkgver}.tar.bz2") -sha1sums=('10a794c4e8e3d26df808d6ea76c9231574f5635a') +sha1sums=('d431167c4a4c9b5df9105095b41ce9f340851e64') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-kcolorchooser/PKGBUILD b/kde-unstable/kdegraphics-kcolorchooser/PKGBUILD index d907e2a73..b9faa7484 100644 --- a/kde-unstable/kdegraphics-kcolorchooser/PKGBUILD +++ b/kde-unstable/kdegraphics-kcolorchooser/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143392 2011-11-24 16:16:00Z andrea $ +# $Id: PKGBUILD 144814 2011-12-08 10:59:02Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kcolorchooser -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kcolorchooser-${pkgver}.tar.bz2") -sha1sums=('611ed0489f2b913d8bba4938bb250e5c93f7bc10') +sha1sums=('f16bdd87bb6233cbfd2ab647cab7335d3d34d062') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-kgamma/PKGBUILD b/kde-unstable/kdegraphics-kgamma/PKGBUILD index 4bc017e9d..7a569633b 100644 --- a/kde-unstable/kdegraphics-kgamma/PKGBUILD +++ b/kde-unstable/kdegraphics-kgamma/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143394 2011-11-24 16:16:03Z andrea $ +# $Id: PKGBUILD 144815 2011-12-08 10:59:33Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kgamma -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kgamma-${pkgver}.tar.bz2") -sha1sums=('76ed0d777f6cde5c6c2facf39cebba4d3e60b8aa') +sha1sums=('1424d9e79e709550f2093d74abc9b2530b0326b8') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-kolourpaint/PKGBUILD b/kde-unstable/kdegraphics-kolourpaint/PKGBUILD index 4be57e33d..d513500d3 100644 --- a/kde-unstable/kdegraphics-kolourpaint/PKGBUILD +++ b/kde-unstable/kdegraphics-kolourpaint/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143396 2011-11-24 16:16:05Z andrea $ +# $Id: PKGBUILD 144816 2011-12-08 11:00:03Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kolourpaint -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kolourpaint-${pkgver}.tar.bz2") -sha1sums=('7d2e2eee77fe9307eef18cb5accd476fbb55fa57') +sha1sums=('20d46610bfc8943cfe5b83e2e9b0902a6389b973') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-kruler/PKGBUILD b/kde-unstable/kdegraphics-kruler/PKGBUILD index cc36025a5..eb890bc3f 100644 --- a/kde-unstable/kdegraphics-kruler/PKGBUILD +++ b/kde-unstable/kdegraphics-kruler/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143398 2011-11-24 16:16:06Z andrea $ +# $Id: PKGBUILD 144817 2011-12-08 11:00:33Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kruler -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kruler-${pkgver}.tar.bz2") -sha1sums=('efbd6ceef6645ab14eb0a6b4e142a1c6cbfaa47e') +sha1sums=('89ec4ca602371264b0587649b92631bb74093a4a') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-ksaneplugin/PKGBUILD b/kde-unstable/kdegraphics-ksaneplugin/PKGBUILD index d084c5851..81637de54 100644 --- a/kde-unstable/kdegraphics-ksaneplugin/PKGBUILD +++ b/kde-unstable/kdegraphics-ksaneplugin/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143400 2011-11-24 16:16:09Z andrea $ +# $Id: PKGBUILD 144818 2011-12-08 11:01:04Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-ksaneplugin -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="A scan plugin that implements the scanning" url="http://kde.org/" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/unstable/${pkgver}/src/ksaneplugin-${pkgver}.tar.bz2") -sha1sums=('57af20b3a7f6973e3a4e881522443ccf40f39e2e') +sha1sums=('f493dcad48561622baf4e67958faf932f221a032') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-ksnapshot/PKGBUILD b/kde-unstable/kdegraphics-ksnapshot/PKGBUILD index 1efef8d49..585129c84 100644 --- a/kde-unstable/kdegraphics-ksnapshot/PKGBUILD +++ b/kde-unstable/kdegraphics-ksnapshot/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143402 2011-11-24 16:16:11Z andrea $ +# $Id: PKGBUILD 144819 2011-12-08 11:01:32Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-ksnapshot -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/ksnapshot-${pkgver}.tar.bz2") -sha1sums=('5016877111e974fb745e33a36900fa2be4665279') +sha1sums=('d8a7b36516c905c1f69e0d1b50b87c78094f9caf') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-mobipocket/PKGBUILD b/kde-unstable/kdegraphics-mobipocket/PKGBUILD index 77dd2876a..fa8d5066a 100644 --- a/kde-unstable/kdegraphics-mobipocket/PKGBUILD +++ b/kde-unstable/kdegraphics-mobipocket/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143404 2011-11-24 16:16:13Z andrea $ +# $Id: PKGBUILD 144820 2011-12-08 11:02:01Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-mobipocket -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="A collection of plugins to handle mobipocket files" url="http://kde.org/" @@ -14,7 +14,7 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/mobipocket-${pkgver}.tar.bz2") -sha1sums=('1da0a6d283b0ee361afeb27b0e03901581b86e8a') +sha1sums=('82e978474ab0f9a3edbdd74f0ddb9834cd5b1736') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-okular/PKGBUILD b/kde-unstable/kdegraphics-okular/PKGBUILD index 554ca1f62..54928f2b2 100644 --- a/kde-unstable/kdegraphics-okular/PKGBUILD +++ b/kde-unstable/kdegraphics-okular/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143292 2011-11-24 16:13:32Z andrea $ +# $Id: PKGBUILD 144761 2011-12-08 10:25:19Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-okular -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/okular-${pkgver}.tar.bz2") -sha1sums=('971562ce741fc6d4afb6c80dc405984b77ef7bfa') +sha1sums=('ca6208448ccc2e0ce1f0545ab7d76f6e59f767b0') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-strigi-analyzer/PKGBUILD b/kde-unstable/kdegraphics-strigi-analyzer/PKGBUILD index cab45048e..978ed2868 100644 --- a/kde-unstable/kdegraphics-strigi-analyzer/PKGBUILD +++ b/kde-unstable/kdegraphics-strigi-analyzer/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143406 2011-11-24 16:16:15Z andrea $ +# $Id: PKGBUILD 144821 2011-12-08 11:02:32Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-strigi-analyzer -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Strigi analyzers for various graphics file formats" url="http://kde.org/" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('3a7dbc47de312d08d804bbfa394bc9c2a454cd5c') +sha1sums=('6ce63fd58bf35b86e854bd39332ec493de2c3a0d') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-svgpart/PKGBUILD b/kde-unstable/kdegraphics-svgpart/PKGBUILD index 930d12fa0..5f6dbf5c4 100644 --- a/kde-unstable/kdegraphics-svgpart/PKGBUILD +++ b/kde-unstable/kdegraphics-svgpart/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143408 2011-11-24 16:16:17Z andrea $ +# $Id: PKGBUILD 144822 2011-12-08 11:03:04Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-svgpart -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="A KPart for viewving SVGs" url="http://kde.org/" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/unstable/${pkgver}/src/svgpart-${pkgver}.tar.bz2") -sha1sums=('41f05ccdb5a903fc2b91a685477271b3b4c8d72e') +sha1sums=('4280bca62347bc9116a8e499065dcd6c7a4adea3') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-thumbnailers/PKGBUILD b/kde-unstable/kdegraphics-thumbnailers/PKGBUILD index d6a0d8de2..e5322b996 100644 --- a/kde-unstable/kdegraphics-thumbnailers/PKGBUILD +++ b/kde-unstable/kdegraphics-thumbnailers/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143410 2011-11-24 16:16:19Z andrea $ +# $Id: PKGBUILD 144823 2011-12-08 11:03:35Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-thumbnailers -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Thumbnailers for various graphics file formats" url="http://kde.org/" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('b690cdf4175ea0ecefc5ae21c054d460e3ce508e') +sha1sums=('61247ab0fb8b94c9431c5bce4f68c514ad0ec722') build() { cd "${srcdir}" diff --git a/kde-unstable/kdelibs/PKGBUILD b/kde-unstable/kdelibs/PKGBUILD index 86a31d841..b663c6cf2 100644 --- a/kde-unstable/kdelibs/PKGBUILD +++ b/kde-unstable/kdelibs/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 143279 2011-11-24 16:13:15Z andrea $ +# $Id: PKGBUILD 144751 2011-12-08 10:17:18Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdelibs -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="KDE Core Libraries" arch=('i686' 'x86_64') @@ -18,7 +18,7 @@ replaces=('kdelibs-experimental') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2" 'kde-applications-menu.patch' 'archlinux-menu.patch') -sha1sums=('0dac96f3d7445bde8e2e7066986ca5656d441b02' +sha1sums=('888a37f78cd44d16101c244f86576a39adc89bb6' '86ee8c8660f19de8141ac99cd6943964d97a1ed7' '63a850ab4196b9d06934f2b4a13acd9f7739bc67') diff --git a/kde-unstable/kdemultimedia/PKGBUILD b/kde-unstable/kdemultimedia/PKGBUILD index 29264c7ee..dde82bf7f 100644 --- a/kde-unstable/kdemultimedia/PKGBUILD +++ b/kde-unstable/kdemultimedia/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 143412 2011-11-24 16:16:21Z andrea $ +# $Id: PKGBUILD 144824 2011-12-08 11:04:15Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -10,7 +10,7 @@ pkgname=('kdemultimedia-dragonplayer' 'kdemultimedia-kmix' 'kdemultimedia-kscd' 'kdemultimedia-mplayerthumbs') -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -20,7 +20,7 @@ makedepends=('cmake' 'automoc4' 'kdelibs' 'tunepimp' 'ffmpeg' 'mplayer' 'pulseaudio' 'libmusicbrainz3') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2" 'mplayerthumbs.config') -sha1sums=('44b9adf781fcbebe1214fc87b006bf13ddd8b702' +sha1sums=('438e74972985616afbd019d0814863a208abe64b' 'ba016fa2563c14ffcba852c62506b66bfc6ee683') build() { diff --git a/kde-unstable/kdenetwork/PKGBUILD b/kde-unstable/kdenetwork/PKGBUILD index 4b0cc1dc1..27cbb4168 100644 --- a/kde-unstable/kdenetwork/PKGBUILD +++ b/kde-unstable/kdenetwork/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 143414 2011-11-24 16:16:24Z andrea $ +# $Id: PKGBUILD 144825 2011-12-08 11:05:04Z 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.7.80 +pkgver=4.7.90 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -21,7 +21,7 @@ makedepends=('cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr' 'ppp' 'v4l-utils' 'libidn' 'rdesktop' 'qimageblitz' 'libxdamage' 'libgadu' 'telepathy-qt4' 'libktorrent' 'libmms' 'mediastreamer') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('3ea7ab56d36260db9deaef2585feee80311ccfdc') +sha1sums=('7b2389d3c11b928a57677171901598a0007181f0') build() { cd "${srcdir}" diff --git a/kde-unstable/kdepim-runtime/PKGBUILD b/kde-unstable/kdepim-runtime/PKGBUILD index 51dc56b29..6ca841a19 100644 --- a/kde-unstable/kdepim-runtime/PKGBUILD +++ b/kde-unstable/kdepim-runtime/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 143286 2011-11-24 16:13:23Z andrea $ +# $Id: PKGBUILD 144757 2011-12-08 10:22:42Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdepim-runtime -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc='KDE PIM Runtime Environment' arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('kdepimlibs' 'kdebase-runtime') makedepends=('cmake' 'automoc4' 'boost') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('54de62929a8293d7a514e505ce63a46c7514a9e6') +sha1sums=('8833bb270f9dcd3f89abe84c0276a338df553fca') build() { cd "${srcdir}" diff --git a/kde-unstable/kdepim/PKGBUILD b/kde-unstable/kdepim/PKGBUILD index d29e3c7f6..247c1f439 100644 --- a/kde-unstable/kdepim/PKGBUILD +++ b/kde-unstable/kdepim/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 143416 2011-11-24 16:16:27Z andrea $ +# $Id: PKGBUILD 144826 2011-12-08 11:06:05Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -20,7 +20,7 @@ pkgname=('kdepim-akonadiconsole' 'kdepim-ktimetracker' 'kdepim-libkdepim' 'kdepim-wizards') -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 arch=('i686' 'x86_64') url='http://pim.kde.org' @@ -29,7 +29,7 @@ groups=('kde' 'kdepim') makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'libxss' 'pilot-link' 'kde-agent') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('e1b6f42a864a9be2263a9ac2cd21367af39fd532') +sha1sums=('c29ef1490c5dad892072014e2facfafb72dc5fbb') build() { cd "${srcdir}" diff --git a/kde-unstable/kdepimlibs/PKGBUILD b/kde-unstable/kdepimlibs/PKGBUILD index d706eecbb..77a1d2ae0 100644 --- a/kde-unstable/kdepimlibs/PKGBUILD +++ b/kde-unstable/kdepimlibs/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 143281 2011-11-24 16:13:17Z andrea $ +# $Id: PKGBUILD 144753 2011-12-08 10:18:06Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdepimlibs -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="KDE PIM Libraries" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('kdelibs' 'gpgme' 'akonadi' 'libical' 'prison') makedepends=('cmake' 'automoc4' 'boost' 'cyrus-sasl' 'openldap') install='kdepimlibs.install' source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('8c32406b85cf9677b7bebeb61cf50621dd034787') +sha1sums=('6f4b0bbc3e8f88d16d4e3830fe0d50c7f3a65f83') build() { cd ${srcdir} diff --git a/kde-unstable/kdeplasma-addons/PKGBUILD b/kde-unstable/kdeplasma-addons/PKGBUILD index ff363b32a..8f052bc2e 100644 --- a/kde-unstable/kdeplasma-addons/PKGBUILD +++ b/kde-unstable/kdeplasma-addons/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 143608 2011-11-27 12:08:26Z andrea $ +# $Id: PKGBUILD 144827 2011-12-08 11:06:58Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -74,23 +74,18 @@ pkgname=('kdeplasma-addons-applets-bball' 'kdeplasma-addons-wallpapers-potd' 'kdeplasma-addons-wallpapers-virus' 'kdeplasma-addons-wallpapers-weather') -pkgver=4.7.80 -pkgrel=2 +pkgver=4.7.90 +pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' license=('GPL' 'LGPL') groups=('kde' 'kdeplasma-addons') makedepends=('cmake' 'automoc4' 'kdebase-workspace' 'kdeedu-marble' 'eigen' 'scim' 'qwt' 'boost' 'libkexiv2') -source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2" - 'fix-build.patch') -sha1sums=('fd27a14fc2ad676a4d5ddf4cd8658d80fc7aa8e9' - '408f4ba54c2aba93e68f3454be0ef4327e48a51b') +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") +sha1sums=('b32064ec97f089adf7d769b714ee095c78f499cb') build() { - cd "${srcdir}"/${pkgbase}-${pkgver} - patch -p1 -i "${srcdir}"/fix-build.patch - cd "${srcdir}" mkdir build cd build diff --git a/kde-unstable/kdesdk-kate/PKGBUILD b/kde-unstable/kdesdk-kate/PKGBUILD index 84619e271..80490b36c 100644 --- a/kde-unstable/kdesdk-kate/PKGBUILD +++ b/kde-unstable/kdesdk-kate/PKGBUILD @@ -1,17 +1,17 @@ -# $Id: PKGBUILD 143294 2011-11-24 16:13:37Z andrea $ +# $Id: PKGBUILD 144762 2011-12-08 10:25:57Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgbase=kdesdk-kate pkgname=('kdebase-kwrite' 'kdesdk-kate') -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') makedepends=('kdelibs ''cmake' 'automoc4') source=("http://download.kde.org/unstable/${pkgver}/src/kate-${pkgver}.tar.bz2" 'pkgbuild-syntax-highlight.patch') -sha1sums=('6c243a3fc1f114b8c1d9a6d644ec61e3ebf332e8' +sha1sums=('0d6b11fffc02de0ee22e2f866446d5b92b987423' '0a928253bd2077f0264d96a6c8823c69c47b6a8d') build() { @@ -32,6 +32,7 @@ package_kdebase-kwrite() { pkgdesc="Text Editor" depends=('kdebase-runtime') groups=('kde' 'kdebase') + url="http://www.kde.org/applications/utilities/kwrite/" install='kdebase-kwrite.install' cd "${srcdir}"/build/kwrite @@ -48,6 +49,7 @@ package_kdesdk-kate() { pkgdesc="Advanced Text Editor" depends=('kdebase-kwrite') groups=('kde' 'kdesdk') + url="http://www.kde.org/applications/utilities/kate/" install='kdesdk-kate.install' cd "${srcdir}"/build/kate diff --git a/kde-unstable/kdesdk/PKGBUILD b/kde-unstable/kdesdk/PKGBUILD index 87d3ca27d..fb7567423 100644 --- a/kde-unstable/kdesdk/PKGBUILD +++ b/kde-unstable/kdesdk/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 143420 2011-11-24 16:16:37Z andrea $ +# $Id: PKGBUILD 144772 2011-12-08 10:31:54Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -22,7 +22,7 @@ pkgname=('kdesdk-cervisia' 'kdesdk-scripts' 'kdesdk-strigi-analyzer' 'kdesdk-umbrello') -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -32,7 +32,7 @@ makedepends=('cmake' 'automoc4' 'boost' 'subversion' 'antlr2' 'kdepimlibs' 'kdebase-lib') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2" 'fix-python2-path.patch') -sha1sums=('725ca18c5bbf16061911bde15d98cb0e86db4471' +sha1sums=('0a1592c1886bdd3828d2b41f7e78c0662f725014' '923cabd7a877cf9a68efeb24fbf3d5827e1d949e') build() { @@ -198,7 +198,7 @@ package_kdesdk-okteta() { depends=('kdebase-runtime') replaces=('kdeutils-okteta') conflicts=('kdeutils-okteta') - url="http://kde.org/applications/utilities/okteta" + url="http://kde.org/applications/utilities/okteta/" install='kdesdk-okteta.install' cd $srcdir/build/okteta make DESTDIR=$pkgdir install diff --git a/kde-unstable/kdetoys/PKGBUILD b/kde-unstable/kdetoys/PKGBUILD index 7c515243d..e93491d23 100644 --- a/kde-unstable/kdetoys/PKGBUILD +++ b/kde-unstable/kdetoys/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 143422 2011-11-24 16:16:40Z andrea $ +# $Id: PKGBUILD 144828 2011-12-08 11:07:36Z 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.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('5462cdc809f22fcc2837844fb7b5fad0b5f716c5') +sha1sums=('fd49f8bd04572c47eebb8a180c3db833b2e17da8') build() { cd $srcdir diff --git a/kde-unstable/kdeutils-filelight/PKGBUILD b/kde-unstable/kdeutils-filelight/PKGBUILD index 85976db3b..073cfcf92 100644 --- a/kde-unstable/kdeutils-filelight/PKGBUILD +++ b/kde-unstable/kdeutils-filelight/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143426 2011-11-24 16:16:44Z andrea $ +# $Id: PKGBUILD 144830 2011-12-08 11:08:34Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-filelight -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/filelight-${pkgver}.tar.bz2") -sha1sums=('e77283760f0a787e7090dbd121e133036e5e57de') +sha1sums=('fe30a6749254eaec6aff7f62aa569ac7bd807be4') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-kcalc/PKGBUILD b/kde-unstable/kdeutils-kcalc/PKGBUILD index c5ec6c1e4..6d31d0098 100644 --- a/kde-unstable/kdeutils-kcalc/PKGBUILD +++ b/kde-unstable/kdeutils-kcalc/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 143428 2011-11-24 16:16:47Z andrea $ +# $Id: PKGBUILD 144831 2011-12-08 11:09:03Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kcalc -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc='Scientific Calculator' -url='http://kde.org/applications/utilities/kcalc' +url='http://kde.org/applications/utilities/kcalc/' arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kcalc-${pkgver}.tar.bz2") -sha1sums=('0fce57dbbd39028bb3b5749959368c35d8aa0442') +sha1sums=('d7c267f92ea5a15e5a3f9377b17dcad117627ed1') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-kcharselect/PKGBUILD b/kde-unstable/kdeutils-kcharselect/PKGBUILD index 478a59212..66b541aa6 100644 --- a/kde-unstable/kdeutils-kcharselect/PKGBUILD +++ b/kde-unstable/kdeutils-kcharselect/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143430 2011-11-24 16:16:50Z andrea $ +# $Id: PKGBUILD 144832 2011-12-08 11:09:34Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kcharselect -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kcharselect-${pkgver}.tar.bz2") -sha1sums=('d5938cdba2aa32970fa7211827c1ee0e614f4acf') +sha1sums=('b95231c0718c3351c1b8846f083b884502e3c0fe') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-kdf/PKGBUILD b/kde-unstable/kdeutils-kdf/PKGBUILD index 7d27cec82..708ef66dd 100644 --- a/kde-unstable/kdeutils-kdf/PKGBUILD +++ b/kde-unstable/kdeutils-kdf/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143432 2011-11-24 16:16:52Z andrea $ +# $Id: PKGBUILD 144833 2011-12-08 11:10:03Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kdf -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kdf-${pkgver}.tar.bz2") -sha1sums=('22f42048664ab76cb7a5357c4ce18e3ac9321120') +sha1sums=('e93e7e566773e32075a812976d2553a0f63cba5a') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-kfloppy/PKGBUILD b/kde-unstable/kdeutils-kfloppy/PKGBUILD index 213d1a741..5d882035e 100644 --- a/kde-unstable/kdeutils-kfloppy/PKGBUILD +++ b/kde-unstable/kdeutils-kfloppy/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 143434 2011-11-24 16:16:54Z andrea $ +# $Id: PKGBUILD 144834 2011-12-08 11:10:32Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kfloppy -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc='Floppy Formatter' -url='http://kde.org/applications/utilities/kfloppy' +url='http://kde.org/applications/utilities/kfloppy/' arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kfloppy-${pkgver}.tar.bz2") -sha1sums=('c7669a2c35fff0a403ecf8df23e0da03238dc6ae') +sha1sums=('d88adef423e3938a7fe6f07991ad9c9b266896ef') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-kgpg/PKGBUILD b/kde-unstable/kdeutils-kgpg/PKGBUILD index 9c6f639a7..fb7190e3b 100644 --- a/kde-unstable/kdeutils-kgpg/PKGBUILD +++ b/kde-unstable/kdeutils-kgpg/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 143436 2011-11-24 16:16:56Z andrea $ +# $Id: PKGBUILD 144835 2011-12-08 11:11:00Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kgpg -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc='A GnuPG frontend' -url='http://kde.org/applications/utilities/kgpg' +url='http://kde.org/applications/utilities/kgpg/' arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdepim-runtime' 'kde-agent') @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kgpg-${pkgver}.tar.bz2") -sha1sums=('ee2143a2c5ecc04608e7b037a364b2f360d06574') +sha1sums=('77f2bf2eeed2945046a9b563a8d8dc040c5559ab') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-kremotecontrol/PKGBUILD b/kde-unstable/kdeutils-kremotecontrol/PKGBUILD index 51c1c9397..a3621be0c 100644 --- a/kde-unstable/kdeutils-kremotecontrol/PKGBUILD +++ b/kde-unstable/kdeutils-kremotecontrol/PKGBUILD @@ -2,10 +2,10 @@ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kremotecontrol -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc='Configure your remote controls for use with applications' -url='http://kde.org/applications/utilities/kremotecontrol' +url='http://kde.org/applications/utilities/kremotecontrol/' arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-workspace') @@ -15,7 +15,7 @@ replaces=('kdeutils-kdelirc') conflicts=('kdeutils-kdelirc') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kremotecontrol-${pkgver}.tar.bz2") -sha1sums=('fae17c72a67fbcd3333815838ff1d934a3fc7c53') +sha1sums=('deecb178365fb8baf90fe807ddd0b3a63bee0e67') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-ktimer/PKGBUILD b/kde-unstable/kdeutils-ktimer/PKGBUILD index 37886965e..95a4b4515 100644 --- a/kde-unstable/kdeutils-ktimer/PKGBUILD +++ b/kde-unstable/kdeutils-ktimer/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143440 2011-11-24 16:17:00Z andrea $ +# $Id: PKGBUILD 144837 2011-12-08 11:11:59Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-ktimer -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/ktimer-${pkgver}.tar.bz2") -sha1sums=('763c0116dc99f3c428fa1f48721b9dd37a9b53e1') +sha1sums=('b3af39fcb5a0bdc93fea85b4fd2e2af5b7953634') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-kwallet/PKGBUILD b/kde-unstable/kdeutils-kwallet/PKGBUILD index b48789a39..2557fe1c2 100644 --- a/kde-unstable/kdeutils-kwallet/PKGBUILD +++ b/kde-unstable/kdeutils-kwallet/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143442 2011-11-24 16:17:02Z andrea $ +# $Id: PKGBUILD 144838 2011-12-08 11:12:27Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kwallet -pkgver=4.7.80 +pkgver=4.7.90 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/unstable/${pkgver}/src/kwallet-${pkgver}.tar.bz2") -sha1sums=('ba1fc1e070c8d84af6d8a3e58452854f4b504214') +sha1sums=('a2c667f38852c9293866a3cdd71073c3c46079d5') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-printer-applet/PKGBUILD b/kde-unstable/kdeutils-printer-applet/PKGBUILD index 43f4f2a39..48d1a009c 100644 --- a/kde-unstable/kdeutils-printer-applet/PKGBUILD +++ b/kde-unstable/kdeutils-printer-applet/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143444 2011-11-24 16:17:04Z andrea $ +# $Id: PKGBUILD 144839 2011-12-08 11:12:59Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-printer-applet -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc='System tray icon for managing print jobs' url='http://kde.org/applications/system/printerapplet/' @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'kdebindings-python' 'system-config-printer-common') makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') source=("http://download.kde.org/unstable/${pkgver}/src/printer-applet-${pkgver}.tar.bz2") -sha1sums=('d1fc4913baf8ca7a938347f7ce4efcb5b1e2ab85') +sha1sums=('b30e5089389c0147e7256080323f7f6777ef422e') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-superkaramba/PKGBUILD b/kde-unstable/kdeutils-superkaramba/PKGBUILD index e7b4a7039..0fc73c92c 100644 --- a/kde-unstable/kdeutils-superkaramba/PKGBUILD +++ b/kde-unstable/kdeutils-superkaramba/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 143446 2011-11-24 16:17:06Z andrea $ +# $Id: PKGBUILD 144840 2011-12-08 11:13:26Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-superkaramba -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc='An engine for cool desktop eyecandy' -url='http://kde.org/applications/utilities/superkaramba' +url='http://kde.org/applications/utilities/superkaramba/' arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime' 'qimageblitz') @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/superkaramba-${pkgver}.tar.bz2") -sha1sums=('16c505363cf3dac342eb411d8a5ffea80216563d') +sha1sums=('6135759152daa625e1b3de694a75d3b229452e30') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-sweeper/PKGBUILD b/kde-unstable/kdeutils-sweeper/PKGBUILD index 9225f5813..55308a9e9 100644 --- a/kde-unstable/kdeutils-sweeper/PKGBUILD +++ b/kde-unstable/kdeutils-sweeper/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143448 2011-11-24 16:17:08Z andrea $ +# $Id: PKGBUILD 144841 2011-12-08 11:13:59Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-sweeper -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc='System Cleaner' url='http://kde.org/applications/utilities/sweeper' @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') source=("http://download.kde.org/unstable/${pkgver}/src/sweeper-${pkgver}.tar.bz2") -sha1sums=('18c915a8057fd63edcb47c7e7c2a4503e5141856') +sha1sums=('1de3c266d237b4914993a99a5267fe904f66f21b') build() { cd "${srcdir}" diff --git a/kde-unstable/kdewebdev/PKGBUILD b/kde-unstable/kdewebdev/PKGBUILD index a3638ccd0..d0386bf93 100644 --- a/kde-unstable/kdewebdev/PKGBUILD +++ b/kde-unstable/kdewebdev/PKGBUILD @@ -1,12 +1,13 @@ -# $Id: PKGBUILD 143450 2011-11-24 16:17:10Z andrea $ -# Maintainer: Pierre Schmitz <pierre@archlinux.de> +# $Id: PKGBUILD 144842 2011-12-08 11:14:34Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Pierre Schmitz <pierre@archlinux.de> pkgbase=kdewebdev pkgname=('kdewebdev-kfilereplace' 'kdewebdev-kimagemapeditor' 'kdewebdev-klinkstatus' 'kdewebdev-kommander') -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -14,7 +15,7 @@ license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdewebdev') makedepends=('cmake' 'automoc4' 'ruby' 'tidyhtml' 'kdepim-runtime' 'boost') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2") -sha1sums=('505444a089b88b210a34dc31d09ae2926892aee0') +sha1sums=('22a8a85eed8e4d070e2bc4b1bff73610703936ec') build() { cd $srcdir @@ -41,6 +42,7 @@ package_kdewebdev-kfilereplace() { package_kdewebdev-kimagemapeditor() { pkgdesc='HTML Image Map Editor' depends=('kdebase-runtime') + url="http://www.kde.org/applications/development/kimagemapeditor/" install='kdewebdev-kimagemapeditor.install' cd $srcdir/build/kimagemapeditor make DESTDIR=$pkgdir install @@ -51,6 +53,7 @@ package_kdewebdev-kimagemapeditor() { package_kdewebdev-klinkstatus() { pkgdesc='Link Checker' depends=('kdepim-runtime' 'tidyhtml') + url="http://www.kde.org/applications/development/klinkstatus/" install='kdewebdev.install' cd $srcdir/build/klinkstatus make DESTDIR=$pkgdir install @@ -61,6 +64,7 @@ package_kdewebdev-klinkstatus() { package_kdewebdev-kommander() { pkgdesc='Executor for Kommander dialogs' depends=('kdebase-runtime') + url="http://www.kde.org/applications/development/kommander/" cd $srcdir/build/kommander make DESTDIR=$pkgdir install } diff --git a/kde-unstable/libkdcraw/PKGBUILD b/kde-unstable/libkdcraw/PKGBUILD index 5abf08e05..7ea7b684b 100644 --- a/kde-unstable/libkdcraw/PKGBUILD +++ b/kde-unstable/libkdcraw/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143316 2011-11-24 16:14:06Z andrea $ +# $Id: PKGBUILD 144775 2011-12-08 10:33:44Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkdcraw -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="A C++ interface used to decode RAW picture" url="http://kde.org/" @@ -14,7 +14,7 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('67f6b65a98a4ab24e946fdf2c4b3523c803c935a') +sha1sums=('79cd12cf888936ca2b64c5309261f57e540bab4d') build() { cd "${srcdir}" diff --git a/kde-unstable/libkdeedu/PKGBUILD b/kde-unstable/libkdeedu/PKGBUILD index 15624153e..85fde3cd5 100644 --- a/kde-unstable/libkdeedu/PKGBUILD +++ b/kde-unstable/libkdeedu/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143312 2011-11-24 16:14:02Z andrea $ +# $Id: PKGBUILD 144773 2011-12-08 10:32:26Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkdeedu -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="Libraries used by KDE Education applications" url="http://kde.org/" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') install=${pkgname}.install replaces=('kdeedu-libkdeedu' 'kdeedu-data') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('31113d9c884d37d36a6af10d5a3b9ab66dcb7396') +sha1sums=('0fe65883164162d464046da0249a905298597df8') build() { cd "${srcdir}" diff --git a/kde-unstable/libkexiv2/PKGBUILD b/kde-unstable/libkexiv2/PKGBUILD index aaf47b893..96bb47fbd 100644 --- a/kde-unstable/libkexiv2/PKGBUILD +++ b/kde-unstable/libkexiv2/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143318 2011-11-24 16:14:08Z andrea $ +# $Id: PKGBUILD 144776 2011-12-08 10:34:16Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkexiv2 -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="A library to manipulate pictures metadata" url="http://kde.org/" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('50916f1f47653f1a3fb84f07cd8eeed4296bf9b1') +sha1sums=('4d27c1d5e97d719e5cf2c5cada8d030ed3c8a4ea') build() { cd "${srcdir}" diff --git a/kde-unstable/libkipi/PKGBUILD b/kde-unstable/libkipi/PKGBUILD index 0e45757c6..ec2b2d1db 100644 --- a/kde-unstable/libkipi/PKGBUILD +++ b/kde-unstable/libkipi/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143320 2011-11-24 16:14:10Z andrea $ +# $Id: PKGBUILD 144777 2011-12-08 10:34:44Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkipi -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="An interface to use kipi-plugins from a KDE application" url="http://kde.org/" @@ -14,7 +14,7 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('cd223fb1dbdbfbdea39b3abf79291fe81f534906') +sha1sums=('d8051403f165f76ccdffcfb831c247729b70b507') build() { cd "${srcdir}" diff --git a/kde-unstable/libksane/PKGBUILD b/kde-unstable/libksane/PKGBUILD index 58f01f20a..042e8c4cc 100644 --- a/kde-unstable/libksane/PKGBUILD +++ b/kde-unstable/libksane/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 143322 2011-11-24 16:14:12Z andrea $ +# $Id: PKGBUILD 144778 2011-12-08 10:35:12Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libksane -pkgver=4.7.80 +pkgver=4.7.90 pkgrel=1 pkgdesc="An image scanning library" url="http://kde.org/" @@ -14,7 +14,7 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('331914883d031e9e56560d6c6fbef08de304767e') +sha1sums=('ca3166bb334babf232d90d9c82dfe4a1e646d842') build() { cd "${srcdir}" diff --git a/multilib/binutils-multilib/PKGBUILD b/multilib/binutils-multilib/PKGBUILD index 8d1bbadc3..09bb986dc 100644 --- a/multilib/binutils-multilib/PKGBUILD +++ b/multilib/binutils-multilib/PKGBUILD @@ -1,13 +1,13 @@ -# $Id: PKGBUILD 54543 2011-08-20 07:14:17Z allan $ +# $Id: PKGBUILD 60241 2011-12-08 12:19:44Z allan $ # Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> # Contributor: Allan McRae <allan@archlinux.org> # toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc pkgname=binutils-multilib -pkgver=2.21.1 -pkgrel=2 -_date=20110627 +pkgver=2.22 +pkgrel=1 +_date=20111201 pkgdesc="A set of programs to assemble and manipulate binary and object files for multilib" arch=('x86_64') url="http://www.gnu.org/software/binutils/" @@ -20,7 +20,7 @@ makedepends=('dejagnu' 'gcc-multilib') # Make sure we compile this with gcc-mult options=('!libtool' '!distcc' '!ccache') install=binutils.install source=(http://mirrors.kernel.org/archlinux/other/binutils/binutils-${pkgver}_${_date}.tar.bz2) -md5sums=('2face559e80d649ba148e42bb2d1fb0f') +md5sums=('77c15027ac112c65fd5f73ca91b0651c') build() { cd ${srcdir} diff --git a/multilib/gcc-multilib/PKGBUILD b/multilib/gcc-multilib/PKGBUILD index 4b2f0c3b7..27d180609 100644 --- a/multilib/gcc-multilib/PKGBUILD +++ b/multilib/gcc-multilib/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 57525 2011-10-30 06:48:49Z allan $ +# $Id: PKGBUILD 60283 2011-12-08 22:16:27Z heftig $ # Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> # Contributor: Allan McRae <allan@archlinux.org> @@ -8,26 +8,28 @@ pkgbase='gcc-multilib' pkgname=('gcc-multilib' 'gcc-libs-multilib' 'lib32-gcc-libs' 'gcc-fortran-multilib' 'gcc-objc-multilib' 'gcc-ada-multilib' 'gcc-go-multilib') pkgver=4.6.2 -pkgrel=1 -#_snapshot=4.6-20110819 +pkgrel=3 +_snapshot=4.6-20111125 _libstdcppmanver=20110814 # Note: check source directory name when updating this pkgdesc="The GNU Compiler Collection for multilib" arch=('x86_64') license=('GPL' 'LGPL' 'FDL' 'custom') url="http://gcc.gnu.org" -makedepends=('binutils-multilib>=2.21.1' 'libmpc' 'cloog' 'ppl' 'gcc-ada-multilib' +makedepends=('binutils-multilib>=2.22' 'libmpc' 'cloog' 'ppl' 'gcc-ada-multilib' 'lib32-glibc>=2.14') checkdepends=('dejagnu') options=('!libtool' '!emptydirs') -source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2 - #ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2 +source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2 + ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2 ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/libstdc++-api.${_libstdcppmanver}.man.tar.bz2 gcc_pure64.patch - gcc-hash-style-both.patch) -md5sums=('028115c4fbfb6cfd75d6369f4a90d87e' + gcc-hash-style-both.patch + gcc-pr49720.patch) +md5sums=('922b0ee688669c188d237bbd21d42d07' 'ce920d2550ff7e042b9f091d27764d8f' '4030ee1c08dd1e843c0225b772360e76' - '4df25b623799b148a0703eaeec8fdf3f') + '4df25b623799b148a0703eaeec8fdf3f' + 'f9d7e5b792c59175f3da3f8421447512') if [ -n "${_snapshot}" ]; then _basedir="${srcdir}/gcc-${_snapshot}" @@ -47,6 +49,9 @@ build() { patch -Np1 -i ${srcdir}/gcc_pure64.patch patch -Np0 -i ${srcdir}/gcc-hash-style-both.patch + # fix compiler segfault in binutils testsuite + patch -Np1 -i ${srcdir}/gcc-pr49720.patch + echo ${pkgver} > gcc/BASE-VER cd ${srcdir} @@ -65,7 +70,7 @@ build() { --enable-lto --enable-gold --enable-ld=default \ --enable-plugin --with-plugin-ld=ld.gold \ --enable-multilib --disable-libssp --disable-libstdcxx-pch \ - --enable-checking=release + --enable-checking=release --with-fpmath=sse make } @@ -148,7 +153,7 @@ package_lib32-gcc-libs() package_gcc-multilib() { pkgdesc="The GNU Compiler Collection - C and C++ frontends for multilib" - depends=("gcc-libs-multilib=$pkgver-$pkgrel" 'binutils-multilib>=2.21.1' 'libmpc' 'cloog' 'ppl') + depends=("gcc-libs-multilib=$pkgver-$pkgrel" 'binutils-multilib>=2.22' 'libmpc' 'cloog' 'ppl') groups=('multilib-devel') provides=("gcc=$pkgver-$pkgrel") conflicts=('gcc') diff --git a/multilib/gcc-multilib/gcc-pr49720.patch b/multilib/gcc-multilib/gcc-pr49720.patch new file mode 100644 index 000000000..8f50c4120 --- /dev/null +++ b/multilib/gcc-multilib/gcc-pr49720.patch @@ -0,0 +1,26 @@ +--- trunk/gcc/simplify-rtx.c 2011/10/28 05:55:10 180603 ++++ trunk/gcc/simplify-rtx.c 2011/10/28 06:35:31 180604 +@@ -4352,10 +4352,20 @@ + { + rtx x = XEXP (op0, 0); + rtx c = XEXP (op0, 1); ++ enum rtx_code invcode = op0code == PLUS ? MINUS : PLUS; ++ rtx tem = simplify_gen_binary (invcode, cmp_mode, op1, c); + +- c = simplify_gen_binary (op0code == PLUS ? MINUS : PLUS, +- cmp_mode, op1, c); +- return simplify_gen_relational (code, mode, cmp_mode, x, c); ++ /* Detect an infinite recursive condition, where we oscillate at this ++ simplification case between: ++ A + B == C <---> C - B == A, ++ where A, B, and C are all constants with non-simplifiable expressions, ++ usually SYMBOL_REFs. */ ++ if (GET_CODE (tem) == invcode ++ && CONSTANT_P (x) ++ && rtx_equal_p (c, XEXP (tem, 1))) ++ return NULL_RTX; ++ ++ return simplify_gen_relational (code, mode, cmp_mode, x, tem); + } + + /* (ne:SI (zero_extract:SI FOO (const_int 1) BAR) (const_int 0))) is diff --git a/multilib/lib32-curl/PKGBUILD b/multilib/lib32-curl/PKGBUILD index 264a41750..84dedb85f 100755 --- a/multilib/lib32-curl/PKGBUILD +++ b/multilib/lib32-curl/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 60201 2011-12-07 14:41:34Z arodseth $ +# $Id: PKGBUILD 60264 2011-12-08 19:46:45Z bluewind $ # Maintainer: Florian Pritz <flo@xssn.at> _pkgbasename=curl pkgname=lib32-$_pkgbasename -pkgver=7.21.7 +pkgver=7.23.1 pkgrel=1 pkgdesc="An URL retrieval utility and library (32-bit)" arch=('x86_64') @@ -13,7 +13,7 @@ depends=('lib32-zlib' 'lib32-openssl' 'bash' 'ca-certificates' 'lib32-libssh2' $ makedepends=(gcc-multilib) options=('!libtool') source=("http://curl.haxx.se/download/${_pkgbasename}-${pkgver}.tar.bz2") -md5sums=('5f6d50c4d4ee38c57fe37e3cff75adbd') +md5sums=('0296d3196b4bf82c896a869b38dbc5f2') build() { @@ -34,6 +34,7 @@ build() { --disable-manual \ --enable-versioned-symbols \ --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt \ + --with-random=/dev/urandom \ --without-libidn \ --libdir=/usr/lib32 \ --enable-threaded-resolver diff --git a/multilib/lib32-dbus-core/PKGBUILD b/multilib/lib32-dbus-core/PKGBUILD index ac3a2e24a..79ebc590e 100644 --- a/multilib/lib32-dbus-core/PKGBUILD +++ b/multilib/lib32-dbus-core/PKGBUILD @@ -1,19 +1,19 @@ -# $Id: PKGBUILD 26527 2010-09-15 22:30:16Z bluewind $ +# $Id: PKGBUILD 60258 2011-12-08 19:35:30Z bluewind $ # Maintainer : Ionut Biru <ibiru@archlinux.org> pkgname=lib32-dbus-core _pkgbasename=dbus-core -pkgver=1.4.0 -pkgrel=2 +pkgver=1.4.16 +pkgrel=1 pkgdesc="Freedesktop.org message bus system (32-bit)" arch=('x86_64') url="http://www.freedesktop.org/Software/dbus" license=('GPL' 'custom') depends=('lib32-glibc' 'lib32-expat' 'dbus-core') -makedepends=('gcc-multilib') +makedepends=('gcc-multilib' lib32-libx11) options=(!libtool) source=(http://dbus.freedesktop.org/releases/dbus/dbus-${pkgver}.tar.gz) -md5sums=('f59618b18d2fb2bd1fce9e1c5a2a3282') +md5sums=('44a2a10678e7e50460879c3eb4453a65') build() { export CC="gcc -m32" @@ -27,9 +27,10 @@ build() { --with-system-pid-file=/var/run/dbus.pid \ --enable-inotify --disable-dnotify \ --disable-verbose-mode --disable-static \ - --disable-tests --disable-asserts --without-x + --disable-tests --disable-asserts make } + package() { cd "${srcdir}/dbus-${pkgver}" make DESTDIR=${pkgdir} install diff --git a/multilib/lib32-glibc/PKGBUILD b/multilib/lib32-glibc/PKGBUILD index 48057fdec..f552f8fe4 100644 --- a/multilib/lib32-glibc/PKGBUILD +++ b/multilib/lib32-glibc/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 57526 2011-10-30 06:49:02Z allan $ +# $Id: PKGBUILD 60243 2011-12-08 12:20:06Z allan $ # Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> # Contributor: Jan de Groot <jgc@archlinux.org> # Contributor: Allan McRae <allan@archlinux.org> @@ -9,7 +9,7 @@ _pkgbasename=glibc pkgname=lib32-$_pkgbasename pkgver=2.14.1 -pkgrel=1 +pkgrel=2 _glibcdate=20111025 pkgdesc="GNU C Library for multilib" arch=('x86_64') diff --git a/multilib/lib32-libgcrypt/PKGBUILD b/multilib/lib32-libgcrypt/PKGBUILD index e266ea00c..784f095ef 100644 --- a/multilib/lib32-libgcrypt/PKGBUILD +++ b/multilib/lib32-libgcrypt/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 26587 2010-09-15 22:38:34Z bluewind $ +# $Id: PKGBUILD 60260 2011-12-08 19:40:31Z bluewind $ # Maintainer: Andreas Radke <andyrtr@archlinux.org> _pkgbasename=libgcrypt pkgname=lib32-$_pkgbasename -pkgver=1.4.6 -pkgrel=3 +pkgver=1.5.0 +pkgrel=1 pkgdesc="a general purpose crypto library based on the code used (32-bit)" arch=(x86_64) url="http://www.gnupg.org" @@ -15,7 +15,7 @@ options=(!libtool) source=(ftp://ftp.gnupg.org/gcrypt/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.bz2 #ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgcrypt/${_pkgbasename}-${pkgver}.tar.bz2 ) -md5sums=('dbf99425a4fe9217c84ce3a35d938634') +md5sums=('693f9c64d50c908bc4d6e01da3ff76d8') build() { export CC="gcc -m32" diff --git a/multilib/lib32-libgpg-error/PKGBUILD b/multilib/lib32-libgpg-error/PKGBUILD index 6467c668a..b0d16156b 100644 --- a/multilib/lib32-libgpg-error/PKGBUILD +++ b/multilib/lib32-libgpg-error/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 26590 2010-09-15 22:39:01Z bluewind $ +# $Id: PKGBUILD 60262 2011-12-08 19:42:28Z bluewind $ # Maintainer: judd <jvinet@zeroflux.org> _pkgbasename=libgpg-error pkgname=lib32-$_pkgbasename -pkgver=1.9 -pkgrel=4 +pkgver=1.10 +pkgrel=1 pkgdesc="Support library for libgcrypt (32-bit)" arch=(x86_64) url="http://www.gnupg.org" @@ -14,7 +14,7 @@ makedepends=(gcc-multilib) options=(!libtool) source=(ftp://ftp.gnupg.org/gcrypt/libgpg-error/${_pkgbasename}-${pkgver}.tar.bz2) #ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2) -md5sums=('521b98aa9395e7eaf0ef2236233a0796') +md5sums=('736a03daa9dc5873047d4eb4a9c22a16') build() { diff --git a/multilib/lib32-sqlite3/PKGBUILD b/multilib/lib32-sqlite3/PKGBUILD index a1e3d8fec..ea647b6b6 100644 --- a/multilib/lib32-sqlite3/PKGBUILD +++ b/multilib/lib32-sqlite3/PKGBUILD @@ -4,8 +4,8 @@ _pkgbasename=sqlite3 pkgname=lib32-sqlite3 -_amalgamationver=3070400 -pkgver=3.7.4 +_amalgamationver=3070900 +pkgver=3.7.9 pkgrel=1 pkgdesc="A C library that implements an SQL database engine (32-bit)" arch=('x86_64') @@ -15,7 +15,7 @@ depends=(lib32-glibc $_pkgbasename) makedepends=('tcl' 'gcc-multilib' 'lib32-readline') source=(http://www.sqlite.org/sqlite-src-${_amalgamationver}.zip) options=(!libtool) -md5sums=('2b5c53328505893599de6e2055996d7a') +md5sums=('b2646c5a0c0b5bc6b8f0b67fc318bab3') build() { export CC="gcc -m32" diff --git a/multilib/lib32-tdb/PKGBUILD b/multilib/lib32-tdb/PKGBUILD index db639ad6e..0ef20e391 100644 --- a/multilib/lib32-tdb/PKGBUILD +++ b/multilib/lib32-tdb/PKGBUILD @@ -2,17 +2,16 @@ _pkgbasename=tdb pkgname=lib32-$_pkgbasename -pkgver=1.2.1 -pkgrel=3 +pkgver=1.2.9 +pkgrel=1 pkgdesc="A Trivia Database similar to GDBM but allows simultaneous commits (32-bit)" arch=(x86_64) license=('GPL3') url="http://tdb.samba.org/" depends=(lib32-glibc $_pkgbasename) -makedepends=(gcc-multilib libxslt) -options=(force) +makedepends=(gcc-multilib libxslt python2) source=(http://samba.org/ftp/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz) -md5sums=('73ea81282a82e5c959d9c082af2d0215') +md5sums=('4d97d18bbe9040038d4e003495bb8cd1') build() { export CC="gcc -m32" @@ -20,6 +19,9 @@ build() { export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" cd "${srcdir}/${_pkgbasename}-${pkgver}" + + sed -i -e 's#python#python2#g' buildtools/bin/waf + ./configure --prefix=/usr \ --localstatedir=/var \ --sysconfdir=/etc/samba \ diff --git a/multilib/lib32-xcb-util/PKGBUILD b/multilib/lib32-xcb-util/PKGBUILD index 85ea8751c..fe1051772 100644 --- a/multilib/lib32-xcb-util/PKGBUILD +++ b/multilib/lib32-xcb-util/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 26758 2010-09-15 23:05:03Z bluewind $ +# $Id: PKGBUILD 60278 2011-12-08 20:24:48Z bluewind $ # Maintainer : Ionut Biru <ibiru@archlinux.org> _pkgbasename=xcb-util pkgname=lib32-xcb-util -pkgver=0.3.6 -pkgrel=3 +pkgver=0.3.8 +pkgrel=1 pkgdesc="Utility libraries for XC Binding (32-bit)" arch=('x86_64') url="http://xcb.freedesktop.org" @@ -13,7 +13,7 @@ depends=('lib32-glibc' 'lib32-libxcb' $_pkgbasename) makedepends=('gperf' 'gcc-multilib') options=('!libtool') source=(http://xcb.freedesktop.org/dist/${_pkgbasename}-${pkgver}.tar.bz2) -md5sums=('dd8968b8ee613cb027a8ef1fcbdc8fc9') +md5sums=('8ce019c4bbf20dce246b98f177cfccff') build() { export CC="gcc -m32" diff --git a/staging/kadu/PKGBUILD b/staging/kadu/PKGBUILD new file mode 100644 index 000000000..9f3f341ab --- /dev/null +++ b/staging/kadu/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 57137 2011-10-22 11:15:09Z bpiotrowski $ +# Maintainer: Mateusz Herych +# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> + +pkgname=kadu +pkgver=0.10.1 +pkgrel=2 +pkgdesc="A Qt-based Jabber/XMPP and Gadu-Gadu client" +arch=('i686' 'x86_64') +url="http://www.kadu.net/" +license=('GPL') +depends=('libgadu' 'libxss' 'aspell' 'phonon' 'qca-ossl' 'libidn' 'libmpdclient' 'qtwebkit') +makedepends=('cmake' 'libao' 'libsndfile' 'libxtst' 'curl') +source=(http://www.kadu.net/download/stable/$pkgname-$pkgver.tar.bz2) +md5sums=('6211a9a9e02d645268cbf055892601a0') + +build() { + cd $srcdir/kadu-$pkgver + cmake . -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd $srcdir/kadu-$pkgver + make DESTDIR=$pkgdir install + rm -rf $pkgdir/usr/{lib,include}/{libgadu*,pkgconfig} + rm -rf $pkgdir/usr/share/kadu/{HISTORY,README} +} diff --git a/testing/kdevplatform/PKGBUILD b/testing/kdevplatform/PKGBUILD new file mode 100644 index 000000000..75e543a98 --- /dev/null +++ b/testing/kdevplatform/PKGBUILD @@ -0,0 +1,39 @@ +# $Id: PKGBUILD 144746 2011-12-08 09:39:48Z andrea $ +# Maintainer: +# Contributor: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Giovanni Scafora <giovanni@archlinux.org> + +pkgname=kdevplatform +pkgver=1.2.3 +_pkgver=4.2.3 +pkgrel=2 +pkgdesc="A C/C++ development platform for KDE" +arch=('i686' 'x86_64') +url="http://www.kdevelop.org/" +license=('GPL') +depends=('kdelibs''subversion' 'qjson') +optdepends=("kdesdk-kompare: difference checking") +makedepends=('cmake' 'automoc4' 'boost') +install=${pkgname}.install +source=("http://download.kde.org/stable/kdevelop/${_pkgver}/src/${pkgname}-${pkgver}.tar.bz2" + 'subversion17.patch') +sha1sums=('c8badd157c2477b1b299403d01d40f68a1ba14cd' + '08e2ab2005a7a447f1733e8449a9bc926035fb9e') + +build() { + cd "${srcdir}"/${pkgname}-${pkgver} + patch -p1 -i "${srcdir}"/subversion17.patch + + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} diff --git a/testing/kdevplatform/kdevplatform.install b/testing/kdevplatform/kdevplatform.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/testing/kdevplatform/kdevplatform.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/testing/kdevplatform/subversion17.patch b/testing/kdevplatform/subversion17.patch new file mode 100644 index 000000000..782ac38ea --- /dev/null +++ b/testing/kdevplatform/subversion17.patch @@ -0,0 +1,127 @@ +commit 74dec52749e3c3af2ac6492f50e2676128f35b27 +Author: Milian Wolff <mail@milianw.de> +Date: Fri Nov 18 16:26:06 2011 +0100 + + fix svn api usage: use svn_dirent_canonicalize instead of svn_path_internal_style + + this was suggested by Stephan Sperling + + CCBUG: 284061 + +diff --git a/plugins/subversion/kdevsvncpp/path.cpp b/plugins/subversion/kdevsvncpp/path.cpp +index eaa84c1..4dced08 100644 +--- a/plugins/subversion/kdevsvncpp/path.cpp ++++ b/plugins/subversion/kdevsvncpp/path.cpp +@@ -24,6 +24,7 @@ + + // subversion api + #include "svn_path.h" ++#include "svn_dirent_uri.h" + + // apr api + #include "apr_file_io.h" +@@ -63,8 +64,7 @@ namespace svn + m_path = ""; + else + { +- const char * int_path = +- svn_path_internal_style(path, pool.pool()); ++ const char * int_path = svn_dirent_canonicalize(path, pool); + + m_path = int_path; + +commit cc7f0798d314cdac14b90e427abe22e99c6bd591 +Author: Milian Wolff <mail@milianw.de> +Date: Fri Nov 18 16:23:36 2011 +0100 + + properly initialize client context for compatibility with subversion API + + this should hopefully fix the crash with svn 1.7 in kdevelop, please test + + BUG: 284061 + +diff --git a/plugins/subversion/kdevsvncpp/context.cpp b/plugins/subversion/kdevsvncpp/context.cpp +index d277591..ddbb657 100644 +--- a/plugins/subversion/kdevsvncpp/context.cpp ++++ b/plugins/subversion/kdevsvncpp/context.cpp +@@ -65,7 +65,7 @@ public: + bool logIsSet; + int promptCounter; + Pool pool; +- svn_client_ctx_t ctx; ++ svn_client_ctx_t * ctx; + std::string username; + std::string password; + std::string logMessage; +@@ -205,26 +205,26 @@ public: + svn_auth_open(&ab, providers, pool); + + // initialize ctx structure +- memset(&ctx, 0, sizeof(ctx)); ++ svn_client_create_context(&ctx, pool); + + // get the config based on the configDir passed in +- svn_config_get_config(&ctx.config, c_configDir, pool); ++ svn_config_get_config(&ctx->config, c_configDir, pool); + + // tell the auth functions where the config is + svn_auth_set_parameter(ab, SVN_AUTH_PARAM_CONFIG_DIR, + c_configDir); + +- ctx.auth_baton = ab; +- ctx.log_msg_func = onLogMsg; +- ctx.log_msg_baton = this; +- ctx.notify_func = onNotify; +- ctx.notify_baton = this; +- ctx.cancel_func = onCancel; +- ctx.cancel_baton = this; ++ ctx->auth_baton = ab; ++ ctx->log_msg_func = onLogMsg; ++ ctx->log_msg_baton = this; ++ ctx->notify_func = onNotify; ++ ctx->notify_baton = this; ++ ctx->cancel_func = onCancel; ++ ctx->cancel_baton = this; + + #if (SVN_VER_MAJOR >= 1) && (SVN_VER_MINOR >= 2) +- ctx.notify_func2 = onNotify2; +- ctx.notify_baton2 = this; ++ ctx->notify_func2 = onNotify2; ++ ctx->notify_baton2 = this; + #endif + } + +@@ -234,7 +234,7 @@ public: + if (!value) + param = (void *)"1"; + +- svn_auth_set_parameter(ctx.auth_baton, ++ svn_auth_set_parameter(ctx->auth_baton, + SVN_AUTH_PARAM_NO_AUTH_CACHE, + param); + } +@@ -245,7 +245,7 @@ public: + username = usr; + password = pwd; + +- svn_auth_baton_t * ab = ctx.auth_baton; ++ svn_auth_baton_t * ab = ctx->auth_baton; + svn_auth_set_parameter(ab, SVN_AUTH_PARAM_DEFAULT_USERNAME, + username.c_str()); + svn_auth_set_parameter(ab, SVN_AUTH_PARAM_DEFAULT_PASSWORD, +@@ -654,13 +654,13 @@ public: + + Context::operator svn_client_ctx_t * () + { +- return &(m->ctx); ++ return m->ctx; + } + + svn_client_ctx_t * + Context::ctx() + { +- return &(m->ctx); ++ return m->ctx; + } + + void |