diff options
author | root <root@rshg054.dnsready.net> | 2012-09-06 00:03:30 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-09-06 00:03:30 +0000 |
commit | af549d0243764531309fa94b1f5cee58982c496a (patch) | |
tree | afb2851caf91700e83c4062a9e77c6a92fe0326b /testing | |
parent | 58f5e0b164b5f4c9af61b2e42bd10c85f28b9bed (diff) |
Thu Sep 6 00:03:29 UTC 2012
Diffstat (limited to 'testing')
102 files changed, 617 insertions, 436 deletions
diff --git a/testing/coreutils/PKGBUILD b/testing/coreutils/PKGBUILD index eb27e218c..eb99af572 100644 --- a/testing/coreutils/PKGBUILD +++ b/testing/coreutils/PKGBUILD @@ -1,43 +1,25 @@ -# $Id: PKGBUILD 163567 2012-07-16 02:32:53Z dreisner $ +# $Id: PKGBUILD 166163 2012-09-05 01:16:34Z dreisner $ # Maintainer: Allan McRae <allan@archlinux.org> # Contributor: judd <jvinet@zeroflux.org> pkgname=coreutils -pkgver=8.17 -pkgrel=3 +pkgver=8.19 +pkgrel=1 pkgdesc="The basic file, shell and text manipulation utilities of the GNU operating system" arch=('i686' 'x86_64') license=('GPL3') url="http://www.gnu.org/software/coreutils" groups=('base') depends=('glibc' 'pam' 'acl' 'gmp' 'libcap') -replaces=('mktemp') -backup=('etc/pam.d/su') install=${pkgname}.install -options=('!emptydirs') -source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig} - coreutils-pam.patch - 0001-ls-color-each-symlink-to-relative-name-in-properly.patch - su.pam) -md5sums=('bbda656ce8ca2c6903948f9faa204ba3' - 'ebecd29b095aa21b0b2f833f1ec20d70' - 'aad79a2aa6d566c375d7bdd1b0767278' - 'd7c691898a695a6284a927e6a9426fe4' - 'fa85e5cce5d723275b14365ba71a8aad') +source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}) +md5sums=('1a01231a2f3ed37c0efc073ccdda9375' + '7f564749d834397aa67f0f05bacb62d5') build() { cd ${srcdir}/${pkgname}-${pkgver} - # added su wheel group pam patch (from fedora git) - patch -Np1 -i ${srcdir}/coreutils-pam.patch - - # fix coloring for symlinks in / - # upstream commit 6124a3842dfa8484b52e067a8ab8105c3875a4f7 - patch -Np1 -i $srcdir/0001-ls-color-each-symlink-to-relative-name-in-properly.patch - - autoreconf -v - ./configure --prefix=/usr --libexecdir=/usr/lib/coreutils \ - --enable-install-program=su \ + ./configure --prefix=/usr --libexecdir=/usr/lib \ --enable-no-install-program=groups,hostname,kill,uptime \ --enable-pam make @@ -53,14 +35,13 @@ package() { make DESTDIR=${pkgdir} install cd ${pkgdir}/usr/bin - install -dm755 ${pkgdir}/{bin,usr/sbin} + install -dm755 ${pkgdir}/bin # binaries required by FHS _fhs=('cat' 'chgrp' 'chmod' 'chown' 'cp' 'date' 'dd' 'df' 'echo' 'false' - 'ln' 'ls' 'mkdir' 'mknod' 'mv' 'pwd' 'rm' 'rmdir' 'stty' 'su' 'sync' + 'ln' 'ls' 'mkdir' 'mknod' 'mv' 'pwd' 'rm' 'rmdir' 'stty' 'sync' 'true' 'uname') - mv ${_fhs[@]} ${pkgdir}/bin - - mv chroot ${pkgdir}/usr/sbin - install -Dm644 ${srcdir}/su.pam ${pkgdir}/etc/pam.d/su + for i in ${_fhs[@]}; do + ln -s ../usr/bin/$i ${pkgdir}/bin/$i + done } diff --git a/testing/coreutils/coreutils.install b/testing/coreutils/coreutils.install index 8caae6686..22cfcb2a1 100644 --- a/testing/coreutils/coreutils.install +++ b/testing/coreutils/coreutils.install @@ -1,11 +1,9 @@ infodir=usr/share/info -filelist=(coreutils.info) +file=coreutils.info post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - usr/bin/install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done + [[ -x usr/bin/install-info ]] || return 0 + install-info $infodir/$file.gz $infodir/dir 2> /dev/null } post_upgrade() { @@ -13,9 +11,7 @@ post_upgrade() { } pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - usr/bin/install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done + [[ -x usr/bin/install-info ]] || return 0 + install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null } diff --git a/testing/dhcpcd/PKGBUILD b/testing/dhcpcd/PKGBUILD index 4b96ec8f3..bbd406199 100644 --- a/testing/dhcpcd/PKGBUILD +++ b/testing/dhcpcd/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 164380 2012-07-31 20:34:32Z ronald $ +# $Id: PKGBUILD 166018 2012-09-04 06:17:52Z ronald $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor: Tom Killian <tom.archlinux.org> # Contributor: Judd Vinet <jvinet.zeroflux.org> pkgname=dhcpcd -pkgver=5.6.0 +pkgver=5.6.2 pkgrel=1 pkgdesc="RFC2131 compliant DHCP client daemon" url="http://roy.marples.name/projects/dhcpcd/" @@ -16,7 +16,7 @@ backup=('etc/conf.d/dhcpcd' 'etc/dhcpcd.conf') options=('emptydirs') # We Need the Empty /var/lib/dhcpcd Directory source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2" \ 'dhcpcd.conf.d' 'dhcpcd.service') -sha1sums=('28ad6931393420a72da307ee173466a9e00cd952' +sha1sums=('7127237b5594ba50642829e76033a04d1c6fd42e' 'b67b9ce6a2faaca75fea356966a16be2283b7db0' '3d0542eab1b89a88d56ca427128228ac72c40d1f') diff --git a/testing/kactivities/PKGBUILD b/testing/kactivities/PKGBUILD index 380e1efab..3e9ab01bd 100644 --- a/testing/kactivities/PKGBUILD +++ b/testing/kactivities/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164526 2012-08-01 14:34:56Z andrea $ +# $Id: PKGBUILD 166035 2012-09-04 15:38:00Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kactivities -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='API for using and interacting with the Activity Manager' @@ -11,7 +11,7 @@ license=('GPL' 'FDL') depends=('kdelibs') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('d7c3b9bd2d4ec4b64e208d02571eb62f9ac4ee90') +sha1sums=('f216d37e961f46f5830fb15d65c71a9c322cebfa') build() { cd "${srcdir}" diff --git a/testing/kdeaccessibility-jovie/PKGBUILD b/testing/kdeaccessibility-jovie/PKGBUILD index 03ff86c31..15895d642 100644 --- a/testing/kdeaccessibility-jovie/PKGBUILD +++ b/testing/kdeaccessibility-jovie/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164550 2012-08-01 14:37:03Z andrea $ +# $Id: PKGBUILD 166059 2012-09-04 15:52:45Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-jovie -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='A text to speech application' @@ -14,7 +14,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdeaccessibility-kttsd') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/jovie-${pkgver}.tar.xz") -sha1sums=('2e5218951425e32d725001f4836283a2d2ac412f') +sha1sums=('f9edb471a3245f3d2e429d5d2140954673f97a9c') build() { cd "${srcdir}" diff --git a/testing/kdeaccessibility-kaccessible/PKGBUILD b/testing/kdeaccessibility-kaccessible/PKGBUILD index 072e76414..91ffcdc72 100644 --- a/testing/kdeaccessibility-kaccessible/PKGBUILD +++ b/testing/kdeaccessibility-kaccessible/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 164551 2012-08-01 14:37:06Z andrea $ +# $Id: PKGBUILD 166060 2012-09-04 15:53:12Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kaccessible -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Provides accessibility services like focus tracking and a screenreader' -url='http://accessibility.kde.org/' +url='https://projects.kde.org/projects/kde/kdeaccessibility/kaccessible' license=('GPL' 'FDL') groups=('kde' 'kdeaccessibility') depends=('kdelibs' 'speech-dispatcher') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/kaccessible-${pkgver}.tar.xz") -sha1sums=('a13180088fae411aa03ec3f2125ed766cd807160') +sha1sums=('8715188d1e3c01f204409bad2bad6d0f30a3f39a') build() { cd "${srcdir}" diff --git a/testing/kdeaccessibility-kmag/PKGBUILD b/testing/kdeaccessibility-kmag/PKGBUILD index 5e4bfe9ba..d7c381b47 100644 --- a/testing/kdeaccessibility-kmag/PKGBUILD +++ b/testing/kdeaccessibility-kmag/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164552 2012-08-01 14:37:11Z andrea $ +# $Id: PKGBUILD 166061 2012-09-04 15:53:36Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kmag -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Screen Magnifier' @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kmag-${pkgver}.tar.xz") -sha1sums=('32a2b02c78f3f3dac33df72dbeaf0c18ddf91269') +sha1sums=('9205eba59c39f9d9e0a38c8424bdde73cb43a174') build() { cd "${srcdir}" diff --git a/testing/kdeaccessibility-kmousetool/PKGBUILD b/testing/kdeaccessibility-kmousetool/PKGBUILD index 65281ed11..579d88a62 100644 --- a/testing/kdeaccessibility-kmousetool/PKGBUILD +++ b/testing/kdeaccessibility-kmousetool/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164553 2012-08-01 14:37:16Z andrea $ +# $Id: PKGBUILD 166062 2012-09-04 15:53:59Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kmousetool -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Clicks the mouse for you, reducing the effects of RSI' @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kmousetool-${pkgver}.tar.xz") -sha1sums=('ea14b338f3f078fdffb3f7b0f69ebbddcc4b016d') +sha1sums=('ca977db4f5cbaa6ca99adb21ce6b16306f94de6b') build() { cd "${srcdir}" diff --git a/testing/kdeaccessibility-kmouth/PKGBUILD b/testing/kdeaccessibility-kmouth/PKGBUILD index 97cd81554..86dad04b5 100644 --- a/testing/kdeaccessibility-kmouth/PKGBUILD +++ b/testing/kdeaccessibility-kmouth/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164554 2012-08-01 14:37:21Z andrea $ +# $Id: PKGBUILD 166063 2012-09-04 15:54:25Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kmouth -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Speech Synthesizer Frontend' @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kmouth-${pkgver}.tar.xz") -sha1sums=('cfd00c317c5928b355ef095c3d46ed7ed581afeb') +sha1sums=('fae5e95a1d65a2e4b0a695969c159d6bb75283ef') build() { cd "${srcdir}" diff --git a/testing/kdeadmin/PKGBUILD b/testing/kdeadmin/PKGBUILD index b34685403..4fd276ba3 100644 --- a/testing/kdeadmin/PKGBUILD +++ b/testing/kdeadmin/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 164555 2012-08-01 14:37:28Z andrea $ +# $Id: PKGBUILD 166064 2012-09-04 15:55:00Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -7,16 +7,15 @@ pkgname=('kdeadmin-kcron' 'kdeadmin-ksystemlog' 'kdeadmin-kuser' 'kdeadmin-system-config-printer-kde') -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') -url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeadmin') makedepends=('cmake' 'automoc4' 'kdebindings-python2' 'system-config-printer-common') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz" 'syslog-path.patch') -sha1sums=('d584265701d1fd17e98f756a21dd5a21a02df4a3' +sha1sums=('9c544f883c5116a928027944fce7a21715c421f3' '20095ce6e0f3e5b6800a7c6e52de6fddba62c031') build() { @@ -37,6 +36,7 @@ build() { package_kdeadmin-kcron() { pkgdesc='Configure and schedule tasks' + url='http://userbase.kde.org/KCron' depends=('kdelibs') cd $srcdir/build/kcron make DESTDIR=$pkgdir install @@ -71,6 +71,8 @@ package_kdeadmin-system-config-printer-kde() { url="http://kde.org/applications/system/printerapplet/" cd $srcdir/build/system-config-printer-kde make DESTDIR=$pkgdir install + cd $srcdir/build/doc/system-config-printer-kde + make DESTDIR=$pkgdir install # Use the python2 executable sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \ diff --git a/testing/kdeartwork/PKGBUILD b/testing/kdeartwork/PKGBUILD index 4716cce86..9cd638c64 100644 --- a/testing/kdeartwork/PKGBUILD +++ b/testing/kdeartwork/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 164556 2012-08-01 14:37:31Z andrea $ +# $Id: PKGBUILD 166065 2012-09-04 15:55:36Z 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.9.0 +pkgver=4.9.1 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/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('d4531e0ba2fff19d74b1486390843da5d470117f') +sha1sums=('95a6aac7e6e39a1618de1452ef5d0bb1cb8c9956') build() { cd $srcdir diff --git a/testing/kdebase-konsole/PKGBUILD b/testing/kdebase-konsole/PKGBUILD index e82ba16dc..08c32cd4f 100644 --- a/testing/kdebase-konsole/PKGBUILD +++ b/testing/kdebase-konsole/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164557 2012-08-01 14:37:35Z andrea $ +# $Id: PKGBUILD 166066 2012-09-04 16:00:36Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebase-konsole -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') url='http://kde.org/applications/system/konsole/' @@ -12,7 +12,7 @@ groups=('kde' 'kdebase') depends=('kdebase-runtime' 'kdebase-lib') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/konsole-${pkgver}.tar.xz") -sha1sums=('4ee3d7da93512788959f4d52e58d7a98c646e854') +sha1sums=('57af84c4fc441dfc3bcea9eef96b6283a3a8322e') build() { cd "${srcdir}" diff --git a/testing/kdebase-workspace/PKGBUILD b/testing/kdebase-workspace/PKGBUILD index 74946e73b..7d09870e7 100644 --- a/testing/kdebase-workspace/PKGBUILD +++ b/testing/kdebase-workspace/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 164539 2012-08-01 14:36:09Z andrea $ +# $Id: PKGBUILD 166048 2012-09-04 15:45:58Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdebase-workspace _pkgname=kde-workspace -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Provides the interface and basic tools for the KDE workspace" arch=('i686' 'x86_64') @@ -30,7 +30,7 @@ options=('emptydirs') source=("http://download.kde.org/stable/${pkgver}/src/${_pkgname}-${pkgver}.tar.xz" 'kdm' 'kde.pam' 'kde-np.pam' 'kscreensaver.pam' 'kdm.service' 'fixpath.patch' 'terminate-server.patch' 'kdm-xinitrd.patch') -sha1sums=('fa614c7f59a43e24e09229374c4193eea86f6865' +sha1sums=('ac1753e2264246ec6347961f44b0aae07072dbb4' '5db3a245201bd4a50e65aa2ef583cf5490e4f646' '712a90999bd429883dcef5dcaf288aace332ced8' 'b321b5e613b60231330e606fdf1e124646148388' diff --git a/testing/kdebase/PKGBUILD b/testing/kdebase/PKGBUILD index 94044a5ac..e995b29b4 100644 --- a/testing/kdebase/PKGBUILD +++ b/testing/kdebase/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 164540 2012-08-01 14:36:18Z andrea $ +# $Id: PKGBUILD 166049 2012-09-04 15:47:34Z 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.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -20,7 +20,7 @@ license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdebase') makedepends=('kdelibs' 'cmake' 'automoc4' 'tidyhtml') source=("http://download.kde.org/stable/${pkgver}/src/kde-baseapps-${pkgver}.tar.xz") -sha1sums=('f5c358e3c7902b15328908a9966f98774827988e') +sha1sums=('9014332fd6fb18999c8290a3cbb498793d8caa2f') build() { cd ${srcdir} diff --git a/testing/kdebindings-kimono/PKGBUILD b/testing/kdebindings-kimono/PKGBUILD index ed6dbae95..d326ccdb2 100644 --- a/testing/kdebindings-kimono/PKGBUILD +++ b/testing/kdebindings-kimono/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164558 2012-08-01 14:37:38Z andrea $ +# $Id: PKGBUILD 166067 2012-09-04 16:01:09Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-kimono -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc=".NET/Mono bindings for the KDE libraries" url="https://projects.kde.org/projects/kde/kdebindings/csharp/kimono" @@ -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.xz") -sha1sums=('5c196ced2b07e58ecdc66e779f21e4c412da8b4b') +sha1sums=('08b1a43eb800de1ad1ed7a0a147e6c73b3928bd8') build() { cd "${srcdir}" diff --git a/testing/kdebindings-korundum/PKGBUILD b/testing/kdebindings-korundum/PKGBUILD index ac3874fa3..891c450df 100644 --- a/testing/kdebindings-korundum/PKGBUILD +++ b/testing/kdebindings-korundum/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164559 2012-08-01 14:37:43Z andrea $ +# $Id: PKGBUILD 166068 2012-09-04 16:01:35Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-korundum -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Ruby bindings for libraries created by the KDE community" url="https://projects.kde.org/projects/kde/kdebindings/ruby/korundum" @@ -15,7 +15,7 @@ makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost' conflicts=('kdebindings-ruby') source=("http://download.kde.org/stable/${pkgver}/src/korundum-${pkgver}.tar.xz" 'ruby19.patch') -sha1sums=('7c97b549bb6958223fc0b28f657fec09bb95b7e5' +sha1sums=('ea22f9bddd7450e15f6dcf3d7f243874f664bc71' 'c074f027bac3b9bffe70a2c2304a6a7be12be034') build() { diff --git a/testing/kdebindings-kross/PKGBUILD b/testing/kdebindings-kross/PKGBUILD index bdc2aac30..747d72be4 100644 --- a/testing/kdebindings-kross/PKGBUILD +++ b/testing/kdebindings-kross/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 164560 2012-08-01 14:37:46Z andrea $ +# $Id: PKGBUILD 166069 2012-09-04 16:02:03Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgbase=kdebindings-kross pkgname=('kdebindings-kross-python' # 'kdebindings-kross-ruby' 'kdebindings-kross-java') -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 url="https://projects.kde.org/projects/kde/kdebindings/kross-interpreters" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') makedepends=('kdelibs' 'cmake' 'automoc4' 'python2' 'java-environment') source=("http://download.kde.org/stable/${pkgver}/src/kross-interpreters-${pkgver}.tar.xz") -sha1sums=('fb6bb9e50d9ec03a86f29f44e9433c521d29761c') +sha1sums=('d97c6ab445ab209d41a817eeebbfa42461c2511a') build() { cd "${srcdir}" diff --git a/testing/kdebindings-perlkde/PKGBUILD b/testing/kdebindings-perlkde/PKGBUILD index 86ae7e5f9..78ce9af23 100644 --- a/testing/kdebindings-perlkde/PKGBUILD +++ b/testing/kdebindings-perlkde/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164561 2012-08-01 14:37:50Z andrea $ +# $Id: PKGBUILD 166070 2012-09-04 16:02:30Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-perlkde -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Perl bindings for the KDE libraries" url="https://projects.kde.org/projects/kde/kdebindings/perl/perlkde" @@ -13,7 +13,7 @@ depends=('kdebindings-perlqt' 'kdebindings-smokekde') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate') source=("http://download.kde.org/stable/${pkgver}/src/perlkde-${pkgver}.tar.xz") -sha1sums=('cc716e7b285efc8c90a086d8881a7e9ff0d49263') +sha1sums=('9a4e298770152a9ed903eff22048021e19e5f257') build() { cd "${srcdir}" diff --git a/testing/kdebindings-perlqt/PKGBUILD b/testing/kdebindings-perlqt/PKGBUILD index 3a2fc25bb..ca28a175c 100644 --- a/testing/kdebindings-perlqt/PKGBUILD +++ b/testing/kdebindings-perlqt/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164534 2012-08-01 14:35:36Z andrea $ +# $Id: PKGBUILD 166043 2012-09-04 15:42:24Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-perlqt -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Perl bindings for the Qt libraries" url="https://projects.kde.org/projects/kde/kdebindings/perl/perlqt" @@ -12,7 +12,7 @@ groups=('kdebindings') depends=('kdebindings-smokeqt' 'perl-list-moreutils') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') source=("http://download.kde.org/stable/${pkgver}/src/perlqt-${pkgver}.tar.xz") -sha1sums=('c51a788cee16f6222e70c96361083581fad1fb51') +sha1sums=('9800056ce7e2ced8d8487776e7ecb58d3bf87370') build() { cd "${srcdir}" diff --git a/testing/kdebindings-python/PKGBUILD b/testing/kdebindings-python/PKGBUILD index c1cce4b40..39f12409c 100644 --- a/testing/kdebindings-python/PKGBUILD +++ b/testing/kdebindings-python/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 164535 2012-08-01 14:35:40Z andrea $ +# $Id: PKGBUILD 166044 2012-09-04 15:42:53Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgbase=kdebindings-python pkgname=('kdebindings-python' 'kdebindings-python2') -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 url='https://projects.kde.org/projects/kde/kdebindings/pykde4' arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ groups=('kdebindings') makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 'pyqt' 'qscintilla' 'python2-sip' 'python-sip') source=("http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz") -sha1sums=('eb51fcadd14a184895195be822e4ed704e74d3ed') +sha1sums=('b1066dc30d59ddfb16db3f7e1ee11a2f9895dfca') build() { export PYTHONDONTWRITEBYTECODE="TRUE" diff --git a/testing/kdebindings-qtruby/PKGBUILD b/testing/kdebindings-qtruby/PKGBUILD index 3a18be32f..9a225f95e 100644 --- a/testing/kdebindings-qtruby/PKGBUILD +++ b/testing/kdebindings-qtruby/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164537 2012-08-01 14:35:46Z andrea $ +# $Id: PKGBUILD 166046 2012-09-04 15:44:07Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-qtruby -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Ruby bindings for the Qt libraries" url="https://projects.kde.org/projects/kde/kdebindings/ruby/qtruby" @@ -13,7 +13,7 @@ depends=('kdebindings-smokeqt' 'ruby') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') conflicts=('kdebindings-ruby') source=("http://download.kde.org/stable/${pkgver}/src/qtruby-${pkgver}.tar.xz") -sha1sums=('04146719f7e6e2001a1f2318b5a45d47f58ac0b3') +sha1sums=('6362e3e1e65085cda1c8b2793ba7105150ec989d') build() { cd "${srcdir}" diff --git a/testing/kdebindings-qyoto/PKGBUILD b/testing/kdebindings-qyoto/PKGBUILD index 3867bb77e..31b667877 100644 --- a/testing/kdebindings-qyoto/PKGBUILD +++ b/testing/kdebindings-qyoto/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164536 2012-08-01 14:35:43Z andrea $ +# $Id: PKGBUILD 166045 2012-09-04 15:43:37Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-qyoto -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc=".NET/Mono bindings for the Qt libraries" url="https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto" @@ -13,7 +13,7 @@ depends=('kdebindings-smokeqt' 'mono') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') conflicts=('kdebindings-csharp') source=("http://download.kde.org/stable/${pkgver}/src/qyoto-${pkgver}.tar.xz") -sha1sums=('91e43ce4a1860e186fd93fdfec0bbe2da10133ac') +sha1sums=('a5a6b42a7c37c554fa67dcd9a9439c4d32a6c59a') build() { cd "${srcdir}" diff --git a/testing/kdebindings-smokegen/PKGBUILD b/testing/kdebindings-smokegen/PKGBUILD index 5dfdeb9b8..b52546df0 100644 --- a/testing/kdebindings-smokegen/PKGBUILD +++ b/testing/kdebindings-smokegen/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164529 2012-08-01 14:35:09Z andrea $ +# $Id: PKGBUILD 166038 2012-09-04 15:39:36Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokegen -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="A general purpose C++ parser with a plugin infrastructure" url="https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen" @@ -12,7 +12,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') conflicts=('kdebindings-smoke') source=("http://download.kde.org/stable/${pkgver}/src/smokegen-${pkgver}.tar.xz") -sha1sums=('7470301b856703a365cf8bbd43d0f297ef4fff08') +sha1sums=('d73bd72550a644f073b94258591fe2c7c742360b') build() { cd "${srcdir}" diff --git a/testing/kdebindings-smokekde/PKGBUILD b/testing/kdebindings-smokekde/PKGBUILD index 1dd02e17a..1450dc7aa 100644 --- a/testing/kdebindings-smokekde/PKGBUILD +++ b/testing/kdebindings-smokekde/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164533 2012-08-01 14:35:33Z andrea $ +# $Id: PKGBUILD 166042 2012-09-04 15:41:53Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokekde -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Language independent library for KDE bindings" url="https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde" @@ -16,7 +16,7 @@ optdepends=('kdesdk-kate: Kate bindings' 'kdegraphics-okular: Okular bindings') conflicts=('kdebindings-smoke') source=("http://download.kde.org/stable/${pkgver}/src/smokekde-${pkgver}.tar.xz") -sha1sums=('ab796e48995560a59d1f741e9e2125eaa4263aa5') +sha1sums=('ae611a3571306fe77fba5799ac8da4017633c84e') build() { cd "${srcdir}" diff --git a/testing/kdebindings-smokeqt/PKGBUILD b/testing/kdebindings-smokeqt/PKGBUILD index 7494f4046..40b1b461c 100644 --- a/testing/kdebindings-smokeqt/PKGBUILD +++ b/testing/kdebindings-smokeqt/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164530 2012-08-01 14:35:13Z andrea $ +# $Id: PKGBUILD 166039 2012-09-04 15:40:04Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokeqt -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Language independent library for Qt bindings" url="https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt" @@ -13,7 +13,7 @@ depends=('kdebindings-smokegen' 'qimageblitz' 'qscintilla') makedepends=('cmake' 'automoc4') conflicts=('kdebindings-smoke') source=("http://download.kde.org/stable/${pkgver}/src/smokeqt-${pkgver}.tar.xz") -sha1sums=('d9c0b21882263e038cdb3de9d0e99ecbf2df7986') +sha1sums=('db56b4a6b4380a61735a4dd5366af75ad4901475') build() { cd "${srcdir}" diff --git a/testing/kdeedu-analitza/PKGBUILD b/testing/kdeedu-analitza/PKGBUILD index 4b3ce64a4..f9b425362 100644 --- a/testing/kdeedu-analitza/PKGBUILD +++ b/testing/kdeedu-analitza/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164547 2012-08-01 14:36:52Z andrea $ +# $Id: PKGBUILD 166056 2012-09-04 15:51:26Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-analitza -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="A library to add mathematical features to your program" url="https://projects.kde.org/projects/kde/kdeedu/analitza" @@ -12,7 +12,7 @@ groups=('kde' 'kdeedu') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/analitza-${pkgver}.tar.xz") -sha1sums=('942057e56709288ade435f37f9cd2d63a1496e06') +sha1sums=('b69134548d366f705b8854f8da222758f2d6a0ef') build() { cd "${srcdir}" diff --git a/testing/kdeedu-blinken/PKGBUILD b/testing/kdeedu-blinken/PKGBUILD index 65d79091e..3afaa0287 100644 --- a/testing/kdeedu-blinken/PKGBUILD +++ b/testing/kdeedu-blinken/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164562 2012-08-01 14:37:55Z andrea $ +# $Id: PKGBUILD 166071 2012-09-04 16:02:53Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-blinken -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Memory Enhancement Game" url="http://kde.org/applications/education/blinken/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/blinken-${pkgver}.tar.xz") -sha1sums=('5debedb870be8d4f2ee7a129c104c193864e907e') +sha1sums=('874596bfccf8e675667c8a5ffe4d104850752c13') build() { cd "${srcdir}" diff --git a/testing/kdeedu-cantor/PKGBUILD b/testing/kdeedu-cantor/PKGBUILD index 8d113bd4e..0a3d73d01 100644 --- a/testing/kdeedu-cantor/PKGBUILD +++ b/testing/kdeedu-cantor/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164563 2012-08-01 14:38:00Z andrea $ +# $Id: PKGBUILD 166072 2012-09-04 16:03:18Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-cantor -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="KDE Frontend to Mathematical Software" url="http://kde.org/applications/education/cantor/" @@ -16,7 +16,7 @@ optdepends=('maxima: Maxima backend' 'r: R backend') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/cantor-${pkgver}.tar.xz") -sha1sums=('2d97209780542b6d2081d2c6f855c3a3751dd0e1') +sha1sums=('03e8344bdc258412550d5617424a1fcd8a762e16') build() { cd "${srcdir}" diff --git a/testing/kdeedu-kalgebra/PKGBUILD b/testing/kdeedu-kalgebra/PKGBUILD index a2704e7d9..d1c28a205 100644 --- a/testing/kdeedu-kalgebra/PKGBUILD +++ b/testing/kdeedu-kalgebra/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164564 2012-08-01 14:38:05Z andrea $ +# $Id: PKGBUILD 166073 2012-09-04 16:03:44Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kalgebra -pkgver=4.9.0 +pkgver=4.9.1 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/stable/${pkgver}/src/kalgebra-${pkgver}.tar.xz") -sha1sums=('38a49f91dc4391868053efd1735582e86c879d01') +sha1sums=('15727b87d3951b95ef839dd6bb58dcf193f8fb5c') build() { cd "${srcdir}" diff --git a/testing/kdeedu-kalzium/PKGBUILD b/testing/kdeedu-kalzium/PKGBUILD index ecc188f18..6fabd1ca0 100644 --- a/testing/kdeedu-kalzium/PKGBUILD +++ b/testing/kdeedu-kalzium/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164565 2012-08-01 14:38:11Z andrea $ +# $Id: PKGBUILD 166074 2012-09-04 16:04:09Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kalzium -pkgver=4.9.0 +pkgver=4.9.1 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/stable/${pkgver}/src/kalzium-${pkgver}.tar.xz") -sha1sums=('da8c782a9e758a860a76204435aaeab15f5edd64') +sha1sums=('7a043108edb23a2d857622e44ffb51cf3e870530') build() { cd "${srcdir}" diff --git a/testing/kdeedu-kanagram/PKGBUILD b/testing/kdeedu-kanagram/PKGBUILD index 939f683ac..7676d54f6 100644 --- a/testing/kdeedu-kanagram/PKGBUILD +++ b/testing/kdeedu-kanagram/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164566 2012-08-01 14:38:16Z andrea $ +# $Id: PKGBUILD 166075 2012-09-04 16:04:43Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kanagram -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Letter Order Game" url="http://kde.org/applications/education/kanagram/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdeedu') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kanagram-${pkgver}.tar.xz") -sha1sums=('b7dba4d67a119039bf7eea1abfbcca079ff9c04c') +sha1sums=('78961fcd7ee14991be5d3e79068bf0651b86ba3d') build() { cd "${srcdir}" diff --git a/testing/kdeedu-kbruch/PKGBUILD b/testing/kdeedu-kbruch/PKGBUILD index 95ec26cb2..6f49632ab 100644 --- a/testing/kdeedu-kbruch/PKGBUILD +++ b/testing/kdeedu-kbruch/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164567 2012-08-01 14:38:21Z andrea $ +# $Id: PKGBUILD 166076 2012-09-04 16:05:09Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kbruch -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Exercise Fractions" url="http://kde.org/applications/education/kbruch/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kbruch-${pkgver}.tar.xz") -sha1sums=('177d4410ab596baf80c046caf1207b65a82944c8') +sha1sums=('a4e4ede1732838e596d1a4f2db054b21ce3bc799') build() { cd "${srcdir}" diff --git a/testing/kdeedu-kgeography/PKGBUILD b/testing/kdeedu-kgeography/PKGBUILD index fc467c3bb..d142f3ed6 100644 --- a/testing/kdeedu-kgeography/PKGBUILD +++ b/testing/kdeedu-kgeography/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164568 2012-08-01 14:38:26Z andrea $ +# $Id: PKGBUILD 166077 2012-09-04 16:05:36Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kgeography -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Geography Trainer" url="http://kde.org/applications/education/kgeography/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kgeography-${pkgver}.tar.xz") -sha1sums=('5cedfb17606878dbc8900a11f846f6baa558bb66') +sha1sums=('a5c817949b35f8001a2489d0fabadddcbc7646df') build() { cd "${srcdir}" diff --git a/testing/kdeedu-khangman/PKGBUILD b/testing/kdeedu-khangman/PKGBUILD index 730fdadee..e6d8b5824 100644 --- a/testing/kdeedu-khangman/PKGBUILD +++ b/testing/kdeedu-khangman/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164569 2012-08-01 14:38:31Z andrea $ +# $Id: PKGBUILD 166078 2012-09-04 16:06:15Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-khangman -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Hangman Game" url="http://kde.org/applications/education/khangman/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdeedu') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/khangman-${pkgver}.tar.xz") -sha1sums=('a8a5f3250bcb73def0ddd670f27b30f2a4621b19') +sha1sums=('3b07235ff8aa419cc6971c14791e56a15c10d39a') build() { cd "${srcdir}" diff --git a/testing/kdeedu-kig/PKGBUILD b/testing/kdeedu-kig/PKGBUILD index e1b2e5352..e1916a264 100644 --- a/testing/kdeedu-kig/PKGBUILD +++ b/testing/kdeedu-kig/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164570 2012-08-01 14:38:36Z andrea $ +# $Id: PKGBUILD 166079 2012-09-04 16:06:41Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kig -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Interactive Geometry" url="http://kde.org/applications/education/kig/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kig-${pkgver}.tar.xz") -sha1sums=('170616856665f4a0ca8413f6bb9185ca54ee98d4') +sha1sums=('ab4382d1b463569eba87efc7fbf9b12d08b236a7') build() { cd "${srcdir}" diff --git a/testing/kdeedu-kiten/PKGBUILD b/testing/kdeedu-kiten/PKGBUILD index 1c3a10046..cae1dd4d5 100644 --- a/testing/kdeedu-kiten/PKGBUILD +++ b/testing/kdeedu-kiten/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164571 2012-08-01 14:38:41Z andrea $ +# $Id: PKGBUILD 166080 2012-09-04 16:07:09Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kiten -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Japanese Reference/Study Tool" url="http://kde.org/applications/education/kiten/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kiten-${pkgver}.tar.xz") -sha1sums=('60729b6df981d6102266eb159359827a58d34c7f') +sha1sums=('0a1b4228cc05d8bf185af5a929e864c541f6e0bf') build() { cd "${srcdir}" diff --git a/testing/kdeedu-klettres/PKGBUILD b/testing/kdeedu-klettres/PKGBUILD index 6bc36f280..ff76733e0 100644 --- a/testing/kdeedu-klettres/PKGBUILD +++ b/testing/kdeedu-klettres/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164572 2012-08-01 14:38:46Z andrea $ +# $Id: PKGBUILD 166081 2012-09-04 16:08:01Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-klettres -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Learn The Alphabet" url="http://kde.org/applications/education/klettres/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/klettres-${pkgver}.tar.xz") -sha1sums=('fef07c9bd7f0f0a7ffe96274e8d09fcddd06e691') +sha1sums=('f52621b525ba2d2598fc119cb121e96780c87f60') build() { cd "${srcdir}" diff --git a/testing/kdeedu-kmplot/PKGBUILD b/testing/kdeedu-kmplot/PKGBUILD index cb13e4b4e..03aa77a4a 100644 --- a/testing/kdeedu-kmplot/PKGBUILD +++ b/testing/kdeedu-kmplot/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164573 2012-08-01 14:38:51Z andrea $ +# $Id: PKGBUILD 166082 2012-09-04 16:08:32Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kmplot -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Mathematical Function Plotter" url="http://kde.org/applications/education/kmplot/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kmplot-${pkgver}.tar.xz") -sha1sums=('fcae6ed767ea6effac98cda2f3be79c41a538ce8') +sha1sums=('7118af5ce1a66c79fd0439b9aa249169ef63b2cd') build() { cd "${srcdir}" diff --git a/testing/kdeedu-kstars/PKGBUILD b/testing/kdeedu-kstars/PKGBUILD index 2660e04ef..4fc8cc3ca 100644 --- a/testing/kdeedu-kstars/PKGBUILD +++ b/testing/kdeedu-kstars/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164574 2012-08-01 14:38:56Z andrea $ +# $Id: PKGBUILD 166083 2012-09-04 16:08:58Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kstars -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Desktop Planetarium" url="http://kde.org/applications/education/kstars/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libindi') makedepends=('cmake' 'automoc4' 'eigen') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kstars-${pkgver}.tar.xz") -sha1sums=('ecb774bc2b946afd2fd3c4db48ae7109239272a0') +sha1sums=('ee07f3cd1141990a1c6bd9ad655413a8d74d8df9') build() { cd "${srcdir}" diff --git a/testing/kdeedu-ktouch/PKGBUILD b/testing/kdeedu-ktouch/PKGBUILD index 533ea8b5e..45a0da9f3 100644 --- a/testing/kdeedu-ktouch/PKGBUILD +++ b/testing/kdeedu-ktouch/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164575 2012-08-01 14:39:01Z andrea $ +# $Id: PKGBUILD 166084 2012-09-04 16:09:47Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-ktouch -pkgver=4.9.0 +pkgver=4.9.1 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.xz") -sha1sums=('8a9d25044d9a33281bd982e32a3c6fd72f5d22fb') +sha1sums=('a4203a226d3b02b5619efd01291816f1b4de2b50') build() { cd "${srcdir}" diff --git a/testing/kdeedu-kturtle/PKGBUILD b/testing/kdeedu-kturtle/PKGBUILD index 3c388a23e..df11873af 100644 --- a/testing/kdeedu-kturtle/PKGBUILD +++ b/testing/kdeedu-kturtle/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164576 2012-08-01 14:39:06Z andrea $ +# $Id: PKGBUILD 166085 2012-09-04 16:10:15Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kturtle -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Educational Programming Environment" url="http://kde.org/applications/education/kturtle/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kturtle-${pkgver}.tar.xz") -sha1sums=('013d88bfd86183138eacf3129722efdfa0742064') +sha1sums=('c3ee656a8ca0fb4b75e810453e88f5fe30466de3') build() { cd "${srcdir}" diff --git a/testing/kdeedu-kwordquiz/PKGBUILD b/testing/kdeedu-kwordquiz/PKGBUILD index f9f3bbd41..86b12bfb2 100644 --- a/testing/kdeedu-kwordquiz/PKGBUILD +++ b/testing/kdeedu-kwordquiz/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164577 2012-08-01 14:39:11Z andrea $ +# $Id: PKGBUILD 166086 2012-09-04 16:10:39Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kwordquiz -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Flash Card Trainer" url="http://kde.org/applications/education/kwordquiz/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdeedu') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kwordquiz-${pkgver}.tar.xz") -sha1sums=('026fedf11d7392d30703b127325671978d03c1d7') +sha1sums=('66d66016c7cb708aeb436861a647716fcde39028') build() { cd "${srcdir}" diff --git a/testing/kdeedu-marble/PKGBUILD b/testing/kdeedu-marble/PKGBUILD index 6cf5831be..5552c7b7e 100644 --- a/testing/kdeedu-marble/PKGBUILD +++ b/testing/kdeedu-marble/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164542 2012-08-01 14:36:30Z andrea $ +# $Id: PKGBUILD 166051 2012-09-04 15:48:41Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-marble -pkgver=4.9.0 +pkgver=4.9.1 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.xz") -sha1sums=('2eb264123f487629399d807151e1ae6ea1c6c8bb') +sha1sums=('5975a99ef55b418b709279c95ff9afe01cf64264') build() { cd "${srcdir}" diff --git a/testing/kdeedu-pairs/PKGBUILD b/testing/kdeedu-pairs/PKGBUILD index df0fcc21b..fff93f79f 100644 --- a/testing/kdeedu-pairs/PKGBUILD +++ b/testing/kdeedu-pairs/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164578 2012-08-01 14:39:16Z andrea $ +# $Id: PKGBUILD 166087 2012-09-04 16:11:06Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-pairs -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="A memory and pairs game for KDE" url="https://projects.kde.org/projects/kde/kdeedu/pairs" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/pairs-${pkgver}.tar.xz") -sha1sums=('d040039b3cffc4b3375b6d5eca2e0a026187f359') +sha1sums=('f109037b7960d0e14e23726e7edbbf0bf430b764') build() { cd "${srcdir}" diff --git a/testing/kdeedu-parley/PKGBUILD b/testing/kdeedu-parley/PKGBUILD index 3c3fe366e..dc6536c99 100644 --- a/testing/kdeedu-parley/PKGBUILD +++ b/testing/kdeedu-parley/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164579 2012-08-01 14:39:21Z andrea $ +# $Id: PKGBUILD 166088 2012-09-04 16:11:36Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-parley -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Vocabulary Trainer" url="http://kde.org/applications/education/parley/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdeedu') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/parley-${pkgver}.tar.xz") -sha1sums=('5f4b600939ec81557f38eb39eca07f6abee30d87') +sha1sums=('8ca16eed35b87ce2416bb715dc392207198f802c') build() { cd "${srcdir}" diff --git a/testing/kdeedu-rocs/PKGBUILD b/testing/kdeedu-rocs/PKGBUILD index 25a1c255f..3aa480d97 100644 --- a/testing/kdeedu-rocs/PKGBUILD +++ b/testing/kdeedu-rocs/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164580 2012-08-01 14:39:24Z andrea $ +# $Id: PKGBUILD 166089 2012-09-04 16:12:15Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-rocs -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Rocs Graph Theory" url="http://kde.org/applications/education/rocs/" @@ -12,7 +12,7 @@ groups=('kde' 'kdeedu') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4' 'boost') source=("http://download.kde.org/stable/${pkgver}/src/rocs-${pkgver}.tar.xz") -sha1sums=('e84667bf68c3f5d48b8153d0f15b033cac5267bc') +sha1sums=('92547f7b3402763395bef93ce43411a381694ffb') options=('!makeflags') build() { diff --git a/testing/kdeedu-step/PKGBUILD b/testing/kdeedu-step/PKGBUILD index 4b0bae132..0ba121e3d 100644 --- a/testing/kdeedu-step/PKGBUILD +++ b/testing/kdeedu-step/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164581 2012-08-01 14:39:29Z andrea $ +# $Id: PKGBUILD 166090 2012-09-04 16:12:42Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-step -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Interactive Physical Simulator" url="http://kde.org/applications/education/step/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libqalculate' 'gsl') makedepends=('cmake' 'automoc4' 'eigen') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/step-${pkgver}.tar.xz") -sha1sums=('6d8c2e7e2d295418515f3e3787a4649226716cc4') +sha1sums=('87667ac074e6ac924e8b7123969796f5e61ec2d3') build() { cd "${srcdir}" diff --git a/testing/kdegames/PKGBUILD b/testing/kdegames/PKGBUILD index e0051b222..c3189dbd6 100644 --- a/testing/kdegames/PKGBUILD +++ b/testing/kdegames/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 164582 2012-08-01 14:39:55Z andrea $ +# $Id: PKGBUILD 166091 2012-09-04 16:14:10Z 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.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -52,7 +52,7 @@ groups=('kde' 'kdegames') makedepends=('cmake' 'automoc4' 'twisted' 'kdebindings-python2' 'openal') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('993c00841d9ab322e1bc1bd39b368579c62f4c45') +sha1sums=('5fc77f230cff0a9b243403affc176e4e4757a1e7') build() { cd $srcdir @@ -73,8 +73,6 @@ package_kdegames-bomber() { install='kdegames.install' cd $srcdir/build/bomber make DESTDIR=$pkgdir install - cd $srcdir/build/doc/bomber - make DESTDIR=$pkgdir install } package_kdegames-bovo() { @@ -84,8 +82,6 @@ package_kdegames-bovo() { install='kdegames.install' cd $srcdir/build/bovo make DESTDIR=$pkgdir install - cd $srcdir/build/doc/bovo - make DESTDIR=$pkgdir install } package_kdegames-granatier() { @@ -95,8 +91,6 @@ package_kdegames-granatier() { install='kdegames.install' cd $srcdir/build/granatier make DESTDIR=$pkgdir install - cd $srcdir/build/doc/granatier - make DESTDIR=$pkgdir install } package_kdegames-kajongg() { @@ -106,8 +100,6 @@ package_kdegames-kajongg() { install='kdegames.install' cd $srcdir/build/kajongg make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kajongg - make DESTDIR=$pkgdir install # Use the python2 executable find "${pkgdir}" -name '*.py' | xargs sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' @@ -120,8 +112,6 @@ package_kdegames-kapman() { install='kdegames.install' cd $srcdir/build/kapman make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kapman - make DESTDIR=$pkgdir install } package_kdegames-katomic() { @@ -131,8 +121,6 @@ package_kdegames-katomic() { install='kdegames.install' cd $srcdir/build/katomic make DESTDIR=$pkgdir install - cd $srcdir/build/doc/katomic - make DESTDIR=$pkgdir install } package_kdegames-kbattleship() { @@ -142,8 +130,6 @@ package_kdegames-kbattleship() { install='kdegames-kbattleship.install' cd $srcdir/build/kbattleship make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kbattleship - make DESTDIR=$pkgdir install } package_kdegames-kblackbox() { @@ -153,8 +139,6 @@ package_kdegames-kblackbox() { install='kdegames.install' cd $srcdir/build/kblackbox make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kblackbox - make DESTDIR=$pkgdir install } package_kdegames-kblocks() { @@ -164,8 +148,6 @@ package_kdegames-kblocks() { install='kdegames.install' cd $srcdir/build/kblocks make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kblocks - make DESTDIR=$pkgdir install } package_kdegames-kbounce() { @@ -175,8 +157,6 @@ package_kdegames-kbounce() { install='kdegames.install' cd $srcdir/build/kbounce make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kbounce - make DESTDIR=$pkgdir install } package_kdegames-kbreakout() { @@ -186,8 +166,6 @@ package_kdegames-kbreakout() { install='kdegames.install' cd $srcdir/build/kbreakout make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kbreakout - make DESTDIR=$pkgdir install } package_kdegames-kdiamond() { @@ -197,8 +175,6 @@ package_kdegames-kdiamond() { install='kdegames.install' cd $srcdir/build/kdiamond make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kdiamond - make DESTDIR=$pkgdir install } package_kdegames-kfourinline() { @@ -208,8 +184,6 @@ package_kdegames-kfourinline() { install='kdegames-kfourinline.install' cd $srcdir/build/kfourinline make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kfourinline - make DESTDIR=$pkgdir install } package_kdegames-kgoldrunner() { @@ -219,8 +193,6 @@ package_kdegames-kgoldrunner() { install='kdegames.install' cd $srcdir/build/kgoldrunner make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kgoldrunner - make DESTDIR=$pkgdir install } package_kdegames-kigo() { @@ -230,8 +202,6 @@ package_kdegames-kigo() { install='kdegames-kigo.install' cd $srcdir/build/kigo make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kigo - make DESTDIR=$pkgdir install } package_kdegames-killbots() { @@ -241,8 +211,6 @@ package_kdegames-killbots() { install='kdegames.install' cd $srcdir/build/killbots make DESTDIR=$pkgdir install - cd $srcdir/build/doc/killbots - make DESTDIR=$pkgdir install } package_kdegames-kiriki() { @@ -252,8 +220,6 @@ package_kdegames-kiriki() { install='kdegames.install' cd $srcdir/build/kiriki make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kiriki - make DESTDIR=$pkgdir install } package_kdegames-kjumpingcube() { @@ -263,8 +229,6 @@ package_kdegames-kjumpingcube() { install='kdegames.install' cd $srcdir/build/kjumpingcube make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kjumpingcube - make DESTDIR=$pkgdir install } package_kdegames-klickety() { @@ -276,8 +240,6 @@ package_kdegames-klickety() { install='kdegames.install' cd $srcdir/build/klickety make DESTDIR=$pkgdir install - cd $srcdir/build/doc/klickety - make DESTDIR=$pkgdir install } package_kdegames-klines() { @@ -287,8 +249,6 @@ package_kdegames-klines() { install='kdegames.install' cd $srcdir/build/klines make DESTDIR=$pkgdir install - cd $srcdir/build/doc/klines - make DESTDIR=$pkgdir install } package_kdegames-kmahjongg() { @@ -298,8 +258,6 @@ package_kdegames-kmahjongg() { install='kdegames.install' cd $srcdir/build/kmahjongg make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kmahjongg - make DESTDIR=$pkgdir install } package_kdegames-kmines() { @@ -309,8 +267,6 @@ package_kdegames-kmines() { install='kdegames.install' cd $srcdir/build/kmines make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kmines - make DESTDIR=$pkgdir install } package_kdegames-knetwalk() { @@ -320,8 +276,6 @@ package_kdegames-knetwalk() { install='kdegames.install' cd $srcdir/build/knetwalk make DESTDIR=$pkgdir install - cd $srcdir/build/doc/knetwalk - make DESTDIR=$pkgdir install } package_kdegames-kolf() { @@ -331,8 +285,6 @@ package_kdegames-kolf() { install='kdegames-kolf.install' cd $srcdir/build/kolf make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kolf - make DESTDIR=$pkgdir install } package_kdegames-kollision() { @@ -342,8 +294,6 @@ package_kdegames-kollision() { install='kdegames.install' cd $srcdir/build/kollision make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kollision - make DESTDIR=$pkgdir install } package_kdegames-konquest() { @@ -353,8 +303,6 @@ package_kdegames-konquest() { install='kdegames.install' cd $srcdir/build/konquest make DESTDIR=$pkgdir install - cd $srcdir/build/doc/konquest - make DESTDIR=$pkgdir install } package_kdegames-kpatience() { @@ -365,8 +313,6 @@ package_kdegames-kpatience() { replaces=('kdegames-kpat') cd $srcdir/build/kpat make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kpat - make DESTDIR=$pkgdir install } package_kdegames-kreversi() { @@ -376,8 +322,6 @@ package_kdegames-kreversi() { install='kdegames.install' cd $srcdir/build/kreversi make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kreversi - make DESTDIR=$pkgdir install } package_kdegames-kshisen() { @@ -387,8 +331,6 @@ package_kdegames-kshisen() { install='kdegames.install' cd $srcdir/build/kshisen make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kshisen - make DESTDIR=$pkgdir install } package_kdegames-ksirk() { @@ -398,8 +340,6 @@ package_kdegames-ksirk() { install='kdegames.install' cd $srcdir/build/ksirk make DESTDIR=$pkgdir install - cd $srcdir/build/doc/ksirk - make DESTDIR=$pkgdir install } package_kdegames-kspaceduel() { @@ -409,8 +349,6 @@ package_kdegames-kspaceduel() { install='kdegames-kspaceduel.install' cd $srcdir/build/kspaceduel make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kspaceduel - make DESTDIR=$pkgdir install } package_kdegames-ksquares() { @@ -420,8 +358,6 @@ package_kdegames-ksquares() { install='kdegames.install' cd $srcdir/build/ksquares make DESTDIR=$pkgdir install - cd $srcdir/build/doc/ksquares - make DESTDIR=$pkgdir install } package_kdegames-ksudoku() { @@ -431,8 +367,6 @@ package_kdegames-ksudoku() { install='kdegames.install' cd $srcdir/build/ksudoku make DESTDIR=$pkgdir install - cd $srcdir/build/doc/ksudoku - make DESTDIR=$pkgdir install } package_kdegames-ktron() { @@ -442,8 +376,6 @@ package_kdegames-ktron() { install='kdegames.install' cd $srcdir/build/ktron make DESTDIR=$pkgdir install - cd $srcdir/build/doc/ktron - make DESTDIR=$pkgdir install } package_kdegames-ktuberling() { @@ -453,8 +385,6 @@ package_kdegames-ktuberling() { install='kdegames-ktuberling.install' cd $srcdir/build/ktuberling make DESTDIR=$pkgdir install - cd $srcdir/build/doc/ktuberling - make DESTDIR=$pkgdir install } package_kdegames-kubrick() { @@ -464,8 +394,6 @@ package_kdegames-kubrick() { install='kdegames.install' cd $srcdir/build/kubrick make DESTDIR=$pkgdir install - cd $srcdir/build/doc/kubrick - make DESTDIR=$pkgdir install } package_kdegames-libkdegames() { @@ -474,9 +402,6 @@ package_kdegames-libkdegames() { depends=('kdelibs' 'openal') cd $srcdir/build/libkdegames make DESTDIR=$pkgdir install - for i in $srcdir/${pkgbase}-${pkgver}/cmake/modules/*.cmake; do - install -D -m644 $i $pkgdir/usr/share/apps/cmake/modules/$(basename $i) - done } package_kdegames-libkmahjongg() { @@ -494,8 +419,6 @@ package_kdegames-lskat() { install='kdegames-lskat.install' cd $srcdir/build/lskat make DESTDIR=$pkgdir install - cd $srcdir/build/doc/lskat - make DESTDIR=$pkgdir install } package_kdegames-palapeli() { @@ -505,6 +428,4 @@ package_kdegames-palapeli() { install='kdegames-palapeli.install' cd $srcdir/build/palapeli make DESTDIR=$pkgdir install - cd $srcdir/build/doc/palapeli - make DESTDIR=$pkgdir install } diff --git a/testing/kdegraphics-gwenview/PKGBUILD b/testing/kdegraphics-gwenview/PKGBUILD index 474d3f4ef..548fe7b30 100644 --- a/testing/kdegraphics-gwenview/PKGBUILD +++ b/testing/kdegraphics-gwenview/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 164681 2012-08-02 15:21:50Z andrea $ +# $Id: PKGBUILD 166092 2012-09-04 16:16:29Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-gwenview -pkgver=4.9.0 -pkgrel=2 +pkgver=4.9.1 +pkgrel=1 pkgdesc="A fast and easy to use image viewer for KDE" url="http://kde.org/applications/graphics/gwenview/" arch=('i686' 'x86_64') @@ -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.xz") -sha1sums=('df2f8cba8de3f5afbbe65ba70faee46a30945283') +sha1sums=('5bc7a7da59e17e19f7f5e52648635b5b3bf77a22') build() { cd "${srcdir}" diff --git a/testing/kdegraphics-kamera/PKGBUILD b/testing/kdegraphics-kamera/PKGBUILD index a6b697eee..64b594201 100644 --- a/testing/kdegraphics-kamera/PKGBUILD +++ b/testing/kdegraphics-kamera/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164584 2012-08-01 14:40:03Z andrea $ +# $Id: PKGBUILD 166093 2012-09-04 16:17:04Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kamera -pkgver=4.9.0 +pkgver=4.9.1 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.xz") -sha1sums=('8f9bd832d7cb88dd6345b4c4da8e00133544c5eb') +sha1sums=('6f032fd551d68b406749e1890d8ee15993a240ac') build() { cd "${srcdir}" diff --git a/testing/kdegraphics-kcolorchooser/PKGBUILD b/testing/kdegraphics-kcolorchooser/PKGBUILD index ac9d7aadf..cf2d61e05 100644 --- a/testing/kdegraphics-kcolorchooser/PKGBUILD +++ b/testing/kdegraphics-kcolorchooser/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164585 2012-08-01 14:40:08Z andrea $ +# $Id: PKGBUILD 166094 2012-09-04 16:17:27Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kcolorchooser -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Color Chooser" url="http://kde.org/applications/graphics/kcolorchooser/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kcolorchooser-${pkgver}.tar.xz") -sha1sums=('3b1069b69d6718f974708f59ff1295a57aa21317') +sha1sums=('ec7dd7928b72dee38455315fd15e569d11f3cf1c') build() { cd "${srcdir}" diff --git a/testing/kdegraphics-kgamma/PKGBUILD b/testing/kdegraphics-kgamma/PKGBUILD index 50651b4dd..16439d626 100644 --- a/testing/kdegraphics-kgamma/PKGBUILD +++ b/testing/kdegraphics-kgamma/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164586 2012-08-01 14:40:11Z andrea $ +# $Id: PKGBUILD 166095 2012-09-04 16:17:55Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kgamma -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="A monitor calibration tool" url="http://kde.org/applications/graphics/kgamma/" @@ -15,7 +15,7 @@ groups=('kde' 'kdegraphics') depends=('kdebase-runtime' 'libxxf86vm') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/kgamma-${pkgver}.tar.xz") -sha1sums=('51e519a3337188313f81bd79eb7e73ed0f4f9437') +sha1sums=('b38bfb571e13dc5a6db389b2980e130b85a874c6') build() { cd "${srcdir}" diff --git a/testing/kdegraphics-kolourpaint/PKGBUILD b/testing/kdegraphics-kolourpaint/PKGBUILD index 584e5f358..aeb64f778 100644 --- a/testing/kdegraphics-kolourpaint/PKGBUILD +++ b/testing/kdegraphics-kolourpaint/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164587 2012-08-01 14:40:16Z andrea $ +# $Id: PKGBUILD 166096 2012-09-04 16:18:19Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kolourpaint -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Paint Program" url="http://kde.org/applications/graphics/kolourpaint/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'qimageblitz') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kolourpaint-${pkgver}.tar.xz") -sha1sums=('0110bc9c818995592589f52715eecf727979fdb0') +sha1sums=('80d14586a889bd57e522321a863ac11b990b8982') build() { cd "${srcdir}" diff --git a/testing/kdegraphics-kruler/PKGBUILD b/testing/kdegraphics-kruler/PKGBUILD index 3a4e1648a..edb46ca36 100644 --- a/testing/kdegraphics-kruler/PKGBUILD +++ b/testing/kdegraphics-kruler/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164588 2012-08-01 14:40:22Z andrea $ +# $Id: PKGBUILD 166097 2012-09-04 16:18:46Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kruler -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Screen Ruler" url="http://kde.org/applications/graphics/kruler/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kruler-${pkgver}.tar.xz") -sha1sums=('981d221c7cdbbf6e0d716bc6a01ee4b891bff484') +sha1sums=('37855f2bae3ac92c15c4563c85e4e70a129aeb76') build() { cd "${srcdir}" diff --git a/testing/kdegraphics-ksaneplugin/PKGBUILD b/testing/kdegraphics-ksaneplugin/PKGBUILD index 5ecd8b438..6c8251e03 100644 --- a/testing/kdegraphics-ksaneplugin/PKGBUILD +++ b/testing/kdegraphics-ksaneplugin/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164589 2012-08-01 14:40:25Z andrea $ +# $Id: PKGBUILD 166098 2012-09-04 16:19:13Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-ksaneplugin -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="A scan plugin that implements the scanning" url="https://projects.kde.org/projects/kde/kdegraphics/ksaneplugin" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/ksaneplugin-${pkgver}.tar.xz") -sha1sums=('ebd38d9b089d1e3f95733c9d53f3c3973e6be6fd') +sha1sums=('832ed50f5f858cea1984050a297fd3a9da3691aa') build() { cd "${srcdir}" diff --git a/testing/kdegraphics-ksnapshot/PKGBUILD b/testing/kdegraphics-ksnapshot/PKGBUILD index 278c4f0ca..17d6025a9 100644 --- a/testing/kdegraphics-ksnapshot/PKGBUILD +++ b/testing/kdegraphics-ksnapshot/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164590 2012-08-01 14:40:30Z andrea $ +# $Id: PKGBUILD 166099 2012-09-04 16:19:37Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-ksnapshot -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Screen Capture Program" url="http://kde.org/applications/graphics/ksnapshot/" @@ -14,7 +14,7 @@ makedepends=('cmake' 'automoc4') optdepends=('kipi-plugins') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/ksnapshot-${pkgver}.tar.xz") -sha1sums=('5c3e26a08a43f2221ef66458b01c88ae191c0db2') +sha1sums=('e3941822f70df00aeede53481db4123aeb27e7a9') build() { cd "${srcdir}" diff --git a/testing/kdegraphics-mobipocket/PKGBUILD b/testing/kdegraphics-mobipocket/PKGBUILD index dbde9de61..eabd01ba9 100644 --- a/testing/kdegraphics-mobipocket/PKGBUILD +++ b/testing/kdegraphics-mobipocket/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164591 2012-08-01 14:40:36Z andrea $ +# $Id: PKGBUILD 166100 2012-09-04 16:20:02Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-mobipocket -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="A collection of plugins to handle mobipocket files" url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-mobipocket" @@ -15,7 +15,7 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('5d3b549ca12914b649096da61b96fa8568976674') +sha1sums=('7361731d3d69acba9aeab3b9d16bb2a2e4c3a547') build() { cd "${srcdir}" diff --git a/testing/kdegraphics-okular/PKGBUILD b/testing/kdegraphics-okular/PKGBUILD index 01fdec2b0..b8fae0a5d 100644 --- a/testing/kdegraphics-okular/PKGBUILD +++ b/testing/kdegraphics-okular/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164531 2012-08-01 14:35:19Z andrea $ +# $Id: PKGBUILD 166040 2012-09-04 15:40:35Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-okular -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc='Document Viewer' arch=('i686' 'x86_64') @@ -15,7 +15,7 @@ makedepends=('cmake' 'automoc4') optdepends=('kdegraphics-mobipocket: mobipocket support') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/okular-${pkgver}.tar.xz") -sha1sums=('c2e70c106de3af3a7e2e4cc77e80da736d9abe39') +sha1sums=('d192961e5990f3bab323df77c9fed92262936279') build() { cd "${srcdir}" diff --git a/testing/kdegraphics-strigi-analyzer/PKGBUILD b/testing/kdegraphics-strigi-analyzer/PKGBUILD index 9723c8851..478f7fe61 100644 --- a/testing/kdegraphics-strigi-analyzer/PKGBUILD +++ b/testing/kdegraphics-strigi-analyzer/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164592 2012-08-01 14:40:40Z andrea $ +# $Id: PKGBUILD 166101 2012-09-04 16:20:28Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-strigi-analyzer -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Strigi analyzers for various graphics file formats" url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-strigi-analyzer" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('ec0f4aa6600aafeb8e616765645b4bc99c8dcca8') +sha1sums=('254c64c37cc672934024475918d86184e0357895') build() { cd "${srcdir}" diff --git a/testing/kdegraphics-svgpart/PKGBUILD b/testing/kdegraphics-svgpart/PKGBUILD index ee0c79754..a1636ba66 100644 --- a/testing/kdegraphics-svgpart/PKGBUILD +++ b/testing/kdegraphics-svgpart/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164593 2012-08-01 14:40:43Z andrea $ +# $Id: PKGBUILD 166102 2012-09-04 16:20:54Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-svgpart -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="A KPart for viewving SVGs" url="https://projects.kde.org/projects/kde/kdegraphics/svgpart" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/svgpart-${pkgver}.tar.xz") -sha1sums=('e66323aef77e08d3d7faee0fab8a7a69a1708489') +sha1sums=('92eecdc27174f4e9032f62ef166e09f54a81fb4c') build() { cd "${srcdir}" diff --git a/testing/kdegraphics-thumbnailers/PKGBUILD b/testing/kdegraphics-thumbnailers/PKGBUILD index 47c47db7e..7a1b76259 100644 --- a/testing/kdegraphics-thumbnailers/PKGBUILD +++ b/testing/kdegraphics-thumbnailers/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164594 2012-08-01 14:40:47Z andrea $ +# $Id: PKGBUILD 166103 2012-09-04 16:21:20Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-thumbnailers -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Thumbnailers for various graphics file formats" url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-thumbnailers" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('8d6a7da3e34c8d9dc88465e65a5b31ecb1fd10f8') +sha1sums=('b58497a68c5524c04a25fcde2e6d3617bc50a2aa') build() { cd "${srcdir}" diff --git a/testing/kdemultimedia-audiocd-kio/PKGBUILD b/testing/kdemultimedia-audiocd-kio/PKGBUILD index 04b8a2090..e6e580000 100644 --- a/testing/kdemultimedia-audiocd-kio/PKGBUILD +++ b/testing/kdemultimedia-audiocd-kio/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164595 2012-08-01 14:40:51Z andrea $ +# $Id: PKGBUILD 166104 2012-09-04 16:21:47Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-audiocd-kio -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Kioslave for accessing audio CDs" url='https://projects.kde.org/projects/kde/kdemultimedia/audiocd-kio' @@ -10,11 +10,11 @@ arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('libkcddb' 'libkcompactdisc' 'lame') makedepends=('cmake' 'automoc4') -groups=('kdemultimedia') +groups=('kde' 'kdemultimedia') replaces=('kdemultimedia-kioslave') conflicts=('kdemultimedia-kioslave') source=("http://download.kde.org/stable/${pkgver}/src/audiocd-kio-${pkgver}.tar.xz") -sha1sums=('d6e53caf098b48f173641e64e96e035a3d83e37e') +sha1sums=('62049d902cc3b454ba4096e889482f341841240f') build() { cd "${srcdir}" diff --git a/testing/kdemultimedia-dragonplayer/PKGBUILD b/testing/kdemultimedia-dragonplayer/PKGBUILD index 06dad9bf1..81c33b791 100644 --- a/testing/kdemultimedia-dragonplayer/PKGBUILD +++ b/testing/kdemultimedia-dragonplayer/PKGBUILD @@ -1,19 +1,20 @@ -# $Id: PKGBUILD 164596 2012-08-01 14:40:56Z andrea $ +# $Id: PKGBUILD 166105 2012-09-04 16:22:11Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-dragonplayer -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="A multimedia player where the focus is on simplicity, instead of features" url='http://kde.org/applications/multimedia/dragonplayer/' arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdemultimedia') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install="${pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/dragon-${pkgver}.tar.xz") -sha1sums=('ea0b6f6c18daac3af2ab146c3654f500c9c4d6de') +sha1sums=('4e228d66185fbbcc8846f0d69074e9509909287e') build() { cd "${srcdir}" diff --git a/testing/kdemultimedia-ffmpegthumbs/PKGBUILD b/testing/kdemultimedia-ffmpegthumbs/PKGBUILD index f0b832f54..dad036094 100644 --- a/testing/kdemultimedia-ffmpegthumbs/PKGBUILD +++ b/testing/kdemultimedia-ffmpegthumbs/PKGBUILD @@ -1,17 +1,18 @@ -# $Id: PKGBUILD 164597 2012-08-01 14:40:59Z andrea $ +# $Id: PKGBUILD 166106 2012-09-04 16:22:39Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-ffmpegthumbs -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc='FFmpeg-based thumbnail creator for video files' url='https://projects.kde.org/projects/kde/kdemultimedia/ffmpegthumbs' arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdemultimedia') depends=('kdelibs' 'ffmpeg') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/ffmpegthumbs-${pkgver}.tar.xz") -sha1sums=('c5259a80fa80a476f2cb3964401de820db067bd9') +sha1sums=('dea7f81eba98e98d040062945a25c5f6c3651c65') build() { cd "${srcdir}" diff --git a/testing/kdemultimedia-juk/PKGBUILD b/testing/kdemultimedia-juk/PKGBUILD index e1f6870dd..238c2a360 100644 --- a/testing/kdemultimedia-juk/PKGBUILD +++ b/testing/kdemultimedia-juk/PKGBUILD @@ -1,18 +1,19 @@ -# $Id: PKGBUILD 164598 2012-08-01 14:41:04Z andrea $ +# $Id: PKGBUILD 166107 2012-09-04 16:23:02Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-juk -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc='A jukebox, tagger and music collection manager' url='http://kde.org/applications/multimedia/juk/' arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdemultimedia') depends=('kdebase-runtime' 'taglib') makedepends=('cmake' 'automoc4') install="${pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/juk-${pkgver}.tar.xz") -sha1sums=('fdd079faeb1572ed286bd2c1cfdd0de15d632c7a') +sha1sums=('9fa4ac409da7d2386c51e3d92a63ef1996562259') build() { cd "${srcdir}" diff --git a/testing/kdemultimedia-kmix/PKGBUILD b/testing/kdemultimedia-kmix/PKGBUILD index c8162262b..6ab52cc1a 100644 --- a/testing/kdemultimedia-kmix/PKGBUILD +++ b/testing/kdemultimedia-kmix/PKGBUILD @@ -1,18 +1,19 @@ -# $Id: PKGBUILD 164599 2012-08-01 14:41:09Z andrea $ +# $Id: PKGBUILD 166108 2012-09-04 16:23:27Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-kmix -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="KDE volume control program" url='http://kde.org/applications/multimedia/kmix/' arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdemultimedia') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install="${pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/kmix-${pkgver}.tar.xz") -sha1sums=('b112295964112c4fb0afa2971926939328cbc569') +sha1sums=('43f6e8b635c9662bc930f31680d84ad0e5c0dd6a') build() { cd "${srcdir}" diff --git a/testing/kdemultimedia-kscd/PKGBUILD b/testing/kdemultimedia-kscd/PKGBUILD index eaeae57af..2d50b7067 100644 --- a/testing/kdemultimedia-kscd/PKGBUILD +++ b/testing/kdemultimedia-kscd/PKGBUILD @@ -1,18 +1,19 @@ -# $Id: PKGBUILD 164600 2012-08-01 14:41:14Z andrea $ +# $Id: PKGBUILD 166109 2012-09-04 16:23:52Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-kscd -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="KDE CD player" url='http://kde.org/applications/multimedia/kscd/' arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdemultimedia') depends=('kdebase-runtime' 'libkcddb' 'libkcompactdisc' 'libmusicbrainz3') makedepends=('cmake' 'automoc4') install="${pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/kscd-${pkgver}.tar.xz") -sha1sums=('f2559914081ba7b2ad9da1a4772d6e8462a21cef') +sha1sums=('9cd9feef981bcbbb6f55d606a80abd2ef5635294') build() { cd "${srcdir}" diff --git a/testing/kdemultimedia-mplayerthumbs/PKGBUILD b/testing/kdemultimedia-mplayerthumbs/PKGBUILD index dff6cfea6..f5d5c61fe 100644 --- a/testing/kdemultimedia-mplayerthumbs/PKGBUILD +++ b/testing/kdemultimedia-mplayerthumbs/PKGBUILD @@ -1,17 +1,18 @@ -# $Id: PKGBUILD 164601 2012-08-01 14:41:17Z andrea $ +# $Id: PKGBUILD 166110 2012-09-04 16:24:20Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-mplayerthumbs -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="MPlayer based thumbnail generator for video files" url='https://projects.kde.org/projects/kde/kdemultimedia/mplayerthumbs' arch=('i686' 'x86_64') +groups=('kde' 'kdemultimedia') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime' 'mplayer') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/mplayerthumbs-${pkgver}.tar.xz") -sha1sums=('7965c695a0e11ab03e8fb6ba447616d2efe18e9c') +sha1sums=('f3f8b48b5c98e47bba0ed5df26f2543dacb07b4c') build() { cd "${srcdir}" diff --git a/testing/kdenetwork/PKGBUILD b/testing/kdenetwork/PKGBUILD index 554bbc8ae..3eee73c23 100644 --- a/testing/kdenetwork/PKGBUILD +++ b/testing/kdenetwork/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 164602 2012-08-01 14:41:28Z andrea $ +# $Id: PKGBUILD 166111 2012-09-04 16:25:03Z 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.9.0 +pkgver=4.9.1 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' 'qimageblitz' 'libxdamage' 'libgadu' 'libmsn' 'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('f5963684301d6569af4cfce2a39dbef140c1dc4d') +sha1sums=('22f8cde8b5617ba7e401d82b0669a06899b17320') build() { cd "${srcdir}" diff --git a/testing/kdepim-runtime/PKGBUILD b/testing/kdepim-runtime/PKGBUILD index 0892627cf..dd1a636d9 100644 --- a/testing/kdepim-runtime/PKGBUILD +++ b/testing/kdepim-runtime/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 164685 2012-08-02 15:42:06Z andrea $ +# $Id: PKGBUILD 166037 2012-09-04 15:39:03Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdepim-runtime -pkgver=4.9.0 -pkgrel=2 +pkgver=4.9.1 +pkgrel=1 pkgdesc='Extends the functionality of kdepim' arch=('i686' 'x86_64') url='https://projects.kde.org/projects/kde/kdepim-runtime' @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'kdepimlibs' 'libkgapi') makedepends=('cmake' 'automoc4' 'boost') install="${pkgname}.install" source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('4358e9f39e22040d617a112c8a66a7fee93a62db') +sha1sums=('bb39a81f9cf909c84807a003c77b1db9d3a1730b') build() { cd "${srcdir}" diff --git a/testing/kdepim/PKGBUILD b/testing/kdepim/PKGBUILD index e94e4507e..049a063c4 100644 --- a/testing/kdepim/PKGBUILD +++ b/testing/kdepim/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 164653 2012-08-01 19:00:40Z andrea $ +# $Id: PKGBUILD 166112 2012-09-04 16:26:37Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -18,9 +18,10 @@ pkgname=('kdepim-akonadiconsole' 'kdepim-korganizer' 'kdepim-kresources' 'kdepim-ktimetracker' + 'kdepim-ktnef' 'kdepim-libkdepim') -pkgver=4.9.0 -pkgrel=2 +pkgver=4.9.1 +pkgrel=1 arch=('i686' 'x86_64') url='http://pim.kde.org' license=('GPL' 'LGPL' 'FDL') @@ -29,7 +30,7 @@ makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'libxss' 'pilot-link' 'kde-agent') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz" 'fix-build.patch') -sha1sums=('5c2f2ef3a3be118ad673ebe8b307bf7fe15bffbf' +sha1sums=('0fe7ade5d525ed60310f228570de75cbbceac46b' '974056ad2c3a00b33a8ac9403b369ab636000832') build() { @@ -89,6 +90,10 @@ package_kdepim-console() { install='kdepim.install' cd "${srcdir}"/build/console make DESTDIR="${pkgdir}" install + cd "${srcdir}"/build/doc/kabcclient + make DESTDIR="${pkgdir}" install + cd "${srcdir}"/build/doc/konsolekalendar + make DESTDIR="${pkgdir}" install } package_kdepim-kaddressbook() { @@ -137,6 +142,8 @@ package_kdepim-kleopatra() { make DESTDIR="${pkgdir}" install cd "${srcdir}"/build/doc/kleopatra make DESTDIR="${pkgdir}" install + cd "${srcdir}"/build/doc/kwatchgnupg + make DESTDIR="${pkgdir}" install } package_kdepim-kmail() { @@ -148,8 +155,9 @@ package_kdepim-kmail() { 'kdepim-mimelib' 'kdepim-plugins') replaces=('kdepim-kmailcvt' 'kdepim-ksendemail' 'kdepim-libksieve' 'kdepim-mimelib' 'kdepim-plugins') - for i in kmail doc/kmail kmailcvt importwizard ksendemail libksieve \ - messagelist mailfilteragent mailimporter ontologies kontact/plugins/kmail; do + for i in kmail doc/kmail kmailcvt archivemailagent backupmail \ + importwizard ksendemail libksieve messagelist mailfilteragent \ + mailimporter ontologies kontact/plugins/kmail; do cd "${srcdir}"/build/${i} make DESTDIR="${pkgdir}" install done @@ -164,6 +172,8 @@ package_kdepim-knode() { make DESTDIR="${pkgdir}" install cd "${srcdir}"/build/doc/knode make DESTDIR="${pkgdir}" install + cd "${srcdir}"/build/doc/kioslave/news + make DESTDIR="${pkgdir}" install cd "${srcdir}"/build/kontact/plugins/knode make DESTDIR="${pkgdir}" install } @@ -189,7 +199,7 @@ package_kdepim-kontact() { conflcits=('kdepim-kontactinterfaces') replaces=('kdepim-kontactinterfaces') for i in kontact/src doc/kontact kontact/plugins/summary \ - kontact/plugins/specialdates; do + kontact/plugins/specialdates doc/kontact-admin; do cd "${srcdir}"/build/${i} make DESTDIR="${pkgdir}" install done @@ -228,6 +238,17 @@ package_kdepim-ktimetracker() { make DESTDIR="${pkgdir}" install } +package_kdepim-ktnef() { + pkgdesc='A viewer/extractor for TNEF files' + depends=('kdebase-runtime' 'kdepimlibs') + url="https://projects.kde.org/projects/kde/kdepim/ktnef" + install=kdepim-ktnef.install + cd "${srcdir}"/build/ktnef + make DESTDIR="${pkgdir}" install + cd "${srcdir}"/build/doc/ktnef + make DESTDIR="${pkgdir}" install +} + package_kdepim-libkdepim() { pkgdesc='Library for KDE PIM' groups=() @@ -238,10 +259,10 @@ package_kdepim-libkdepim() { replaces=('kdepim-icons' 'kdepim-libkleo' 'kdepim-libkpgp' 'kdepim-strigi-analyzer' 'kdepim-akonadi') for i in akonadi_next calendarsupport incidenceeditor-ng \ - kdgantt2 libkdepim libkdepimdbusinterfaces libkleo libkpgp \ - mailcommon messagecomposer messagecore messageviewer icons \ - strigi-analyzer templateparser plugins/messageviewer \ - plugins/ktexteditor; do + kdgantt2 libkdepim libkdepimdbusinterfaces libkleo libkpgp \ + mailcommon messagecomposer messagecore messageviewer icons \ + strigi-analyzer templateparser plugins/messageviewer \ + plugins/ktexteditor; do cd "${srcdir}"/build/${i} make DESTDIR="${pkgdir}" install done diff --git a/testing/kdepim/kdepim-ktnef.install b/testing/kdepim/kdepim-ktnef.install new file mode 100644 index 000000000..5787df72f --- /dev/null +++ b/testing/kdepim/kdepim-ktnef.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/testing/kdepimlibs/PKGBUILD b/testing/kdepimlibs/PKGBUILD index 4e3fd1e34..3f69c8e1b 100644 --- a/testing/kdepimlibs/PKGBUILD +++ b/testing/kdepimlibs/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 164522 2012-08-01 14:34:46Z andrea $ +# $Id: PKGBUILD 166031 2012-09-04 15:32:14Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdepimlibs -pkgver=4.9.0 +pkgver=4.9.1 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') install='kdepimlibs.install' source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('a5c3d362561320832f2e796e0f167f047bab4a98') +sha1sums=('28d1fdbba5136a09445cad2b83d3a31c4e05e284') build() { cd "${srcdir}" diff --git a/testing/kdeplasma-addons/PKGBUILD b/testing/kdeplasma-addons/PKGBUILD index f63106bdf..b3b33fa6e 100644 --- a/testing/kdeplasma-addons/PKGBUILD +++ b/testing/kdeplasma-addons/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 164604 2012-08-01 14:41:53Z andrea $ +# $Id: PKGBUILD 166113 2012-09-04 16:27:49Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -75,7 +75,7 @@ pkgname=('kdeplasma-addons-applets-bball' 'kdeplasma-addons-wallpapers-potd' 'kdeplasma-addons-wallpapers-virus' 'kdeplasma-addons-wallpapers-weather') -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -84,7 +84,7 @@ groups=('kde' 'kdeplasma-addons') makedepends=('cmake' 'automoc4' 'kdebase-workspace' 'kdeedu-marble' 'eigen' 'scim' 'qwt' 'boost' 'libkexiv2' 'ibus' 'qoauth' 'qjson') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('bf3f548c1a86b9aedee0ee2962b0b10aa27c9c05') +sha1sums=('2be00830e0e7e030240ca897ec1d9f9978fd8682') build() { mkdir build diff --git a/testing/kdesdk-kate/PKGBUILD b/testing/kdesdk-kate/PKGBUILD index a3b8f6dd2..24b72f6aa 100644 --- a/testing/kdesdk-kate/PKGBUILD +++ b/testing/kdesdk-kate/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 164532 2012-08-01 14:35:30Z andrea $ +# $Id: PKGBUILD 166041 2012-09-04 15:41:20Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgbase=kdesdk-kate pkgname=('kdebase-katepart' 'kdebase-kwrite' 'kdesdk-kate') -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') makedepends=('kdelibs ''cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/kate-${pkgver}.tar.xz" 'pkgbuild-syntax-highlight.patch') -sha1sums=('0d093dc9e66a8b2740e2b19069ca9b763bc1eefa' +sha1sums=('a3a1e0f56e22ca87d5b65768ef4874a43ce3ae71' '0a928253bd2077f0264d96a6c8823c69c47b6a8d') build() { diff --git a/testing/kdesdk/PKGBUILD b/testing/kdesdk/PKGBUILD index 7870a9cf8..b6f3cf018 100644 --- a/testing/kdesdk/PKGBUILD +++ b/testing/kdesdk/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 164605 2012-08-01 14:42:15Z andrea $ +# $Id: PKGBUILD 166114 2012-09-04 16:29:15Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -20,7 +20,7 @@ pkgname=('kdesdk-cervisia' 'kdesdk-scripts' 'kdesdk-strigi-analyzer' 'kdesdk-umbrello') -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -30,7 +30,7 @@ makedepends=('cmake' 'automoc4' 'boost' 'subversion' 'antlr2' 'kdepimlibs' 'kdebase-lib') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz" 'fix-python2-path.patch') -sha1sums=('0e396586d49f74c5677749a762ceffbde1db4b08' +sha1sums=('319ebe0f912626b8d3539bc22d706cc2548723af' '923cabd7a877cf9a68efeb24fbf3d5827e1d949e') build() { diff --git a/testing/kdetoys/PKGBUILD b/testing/kdetoys/PKGBUILD index 258abb1f4..ec07c1f5f 100644 --- a/testing/kdetoys/PKGBUILD +++ b/testing/kdetoys/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 164606 2012-08-01 14:42:21Z andrea $ +# $Id: PKGBUILD 166115 2012-09-04 16:29:58Z 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.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -14,7 +14,7 @@ license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdetoys') makedepends=('cmake' 'automoc4' 'kdebase-workspace') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('d08249578b5f94c732156231f69b99070628ebae') +sha1sums=('caa6a3222dccfb1b12513135e2f859904e385d7f') build() { cd $srcdir diff --git a/testing/kdeutils-filelight/PKGBUILD b/testing/kdeutils-filelight/PKGBUILD index 0f4b9a264..5c6538077 100644 --- a/testing/kdeutils-filelight/PKGBUILD +++ b/testing/kdeutils-filelight/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164608 2012-08-01 14:42:31Z andrea $ +# $Id: PKGBUILD 166117 2012-09-04 16:30:48Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-filelight -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc='View disk usage information' url='http://kde.org/applications/utilities/filelight' @@ -15,7 +15,7 @@ replaces=('filelight') conflicts=('filelight') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/filelight-${pkgver}.tar.xz") -sha1sums=('1bb66e0d375d7c71abe638e3d42d14e1bd969587') +sha1sums=('498a43e08a02e41dc36f0032c8a18f7e054c6cc6') build() { cd "${srcdir}" diff --git a/testing/kdeutils-kcalc/PKGBUILD b/testing/kdeutils-kcalc/PKGBUILD index 76aa4903c..78865f5bc 100644 --- a/testing/kdeutils-kcalc/PKGBUILD +++ b/testing/kdeutils-kcalc/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164609 2012-08-01 14:42:36Z andrea $ +# $Id: PKGBUILD 166118 2012-09-04 16:31:15Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kcalc -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc='Scientific Calculator' url='http://kde.org/applications/utilities/kcalc/' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kcalc-${pkgver}.tar.xz") -sha1sums=('b21a8eae3eda400137397b0048b0c96c502bd077') +sha1sums=('40eacf20d6c0ba278670a6383e42ab94e78530d1') build() { cd "${srcdir}" diff --git a/testing/kdeutils-kcharselect/PKGBUILD b/testing/kdeutils-kcharselect/PKGBUILD index 01bcec850..2d4297fcd 100644 --- a/testing/kdeutils-kcharselect/PKGBUILD +++ b/testing/kdeutils-kcharselect/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164610 2012-08-01 14:42:40Z andrea $ +# $Id: PKGBUILD 166119 2012-09-04 16:31:42Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kcharselect -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc='Character Selector' url="http://kde.org/applications/utilities/kcharselect/" @@ -12,7 +12,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') source=("http://download.kde.org/stable/${pkgver}/src/kcharselect-${pkgver}.tar.xz") -sha1sums=('b14f0f6ec1fb469c9f6ecb8035ce1c25b7c32a06') +sha1sums=('1f8e70c69e63cdc9bd55b63eab5a90dcd81826ba') build() { cd "${srcdir}" diff --git a/testing/kdeutils-kdf/PKGBUILD b/testing/kdeutils-kdf/PKGBUILD index 149e362b7..89bb2d7b4 100644 --- a/testing/kdeutils-kdf/PKGBUILD +++ b/testing/kdeutils-kdf/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164611 2012-08-01 14:42:45Z andrea $ +# $Id: PKGBUILD 166120 2012-09-04 16:32:07Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kdf -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 url="http://kde.org/applications/system/kdiskfree/" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kdf-${pkgver}.tar.xz") -sha1sums=('691aae64d68c5f998f2bc6aad5f4ed182580ccd7') +sha1sums=('1466bbfe715ff6e7a2129fbb5c6a42affbc48b16') build() { cd "${srcdir}" diff --git a/testing/kdeutils-kfloppy/PKGBUILD b/testing/kdeutils-kfloppy/PKGBUILD index 1e917b9a4..d4a03f4fb 100644 --- a/testing/kdeutils-kfloppy/PKGBUILD +++ b/testing/kdeutils-kfloppy/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164612 2012-08-01 14:42:50Z andrea $ +# $Id: PKGBUILD 166121 2012-09-04 16:32:32Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kfloppy -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc='Floppy Formatter' url='http://kde.org/applications/utilities/kfloppy/' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kfloppy-${pkgver}.tar.xz") -sha1sums=('d066f74e7513aad2121fa0222fc50eceb61bcc9d') +sha1sums=('9559d03483aaab1774dbf26fa7171f6b697774b0') build() { cd "${srcdir}" diff --git a/testing/kdeutils-kgpg/PKGBUILD b/testing/kdeutils-kgpg/PKGBUILD index c739875b0..96bab10e8 100644 --- a/testing/kdeutils-kgpg/PKGBUILD +++ b/testing/kdeutils-kgpg/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164613 2012-08-01 14:42:55Z andrea $ +# $Id: PKGBUILD 166122 2012-09-04 16:32:56Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kgpg -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc='A GnuPG frontend' url='http://kde.org/applications/utilities/kgpg/' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kgpg-${pkgver}.tar.xz") -sha1sums=('24caeaf1837ace0b164d8ba0f0b6a3f630dd2bb1') +sha1sums=('9f1e181839c88485912beb013e0908b0e59877a3') build() { cd "${srcdir}" diff --git a/testing/kdeutils-kremotecontrol/PKGBUILD b/testing/kdeutils-kremotecontrol/PKGBUILD index a8f29d1ac..5b702f0b8 100644 --- a/testing/kdeutils-kremotecontrol/PKGBUILD +++ b/testing/kdeutils-kremotecontrol/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kremotecontrol -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc='Configure your remote controls for use with applications' url='http://kde.org/applications/utilities/kremotecontrol/' @@ -15,7 +15,7 @@ replaces=('kdeutils-kdelirc') conflicts=('kdeutils-kdelirc') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kremotecontrol-${pkgver}.tar.xz") -sha1sums=('d21512621bbdeb0bc520261b4e639cd79f74a20f') +sha1sums=('046345fe3fb01c264ac3161a376f79f851cd51f5') build() { cd "${srcdir}" diff --git a/testing/kdeutils-ktimer/PKGBUILD b/testing/kdeutils-ktimer/PKGBUILD index 23fb85170..a5299af3b 100644 --- a/testing/kdeutils-ktimer/PKGBUILD +++ b/testing/kdeutils-ktimer/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164615 2012-08-01 14:43:05Z andrea $ +# $Id: PKGBUILD 166124 2012-09-04 16:33:54Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-ktimer -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc='Countdown Launcher' url='http://kde.org/applications/utilities/ktimer/' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/ktimer-${pkgver}.tar.xz") -sha1sums=('fd0961124cd8a0b8bf23eef08dd72885d78be66c') +sha1sums=('6fdcea3ce24b41d04baf9ca4a244035488b01197') build() { cd "${srcdir}" diff --git a/testing/kdeutils-kwallet/PKGBUILD b/testing/kdeutils-kwallet/PKGBUILD index 21b199f95..08b139088 100644 --- a/testing/kdeutils-kwallet/PKGBUILD +++ b/testing/kdeutils-kwallet/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164616 2012-08-01 14:43:10Z andrea $ +# $Id: PKGBUILD 166125 2012-09-04 16:34:18Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kwallet -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc='Wallet Management Tool' url='http://kde.org/applications/system/kwalletmanager/' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/kwallet-${pkgver}.tar.xz") -sha1sums=('d9c48dcc35a6eae6d3c4680d1f12bc745773d6ef') +sha1sums=('da1eef2fcb729fbcd28adeac486fedfc16175be2') build() { cd "${srcdir}" diff --git a/testing/kdeutils-superkaramba/PKGBUILD b/testing/kdeutils-superkaramba/PKGBUILD index a4474a76e..3058509ba 100644 --- a/testing/kdeutils-superkaramba/PKGBUILD +++ b/testing/kdeutils-superkaramba/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164618 2012-08-01 14:43:18Z andrea $ +# $Id: PKGBUILD 166127 2012-09-04 16:35:00Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-superkaramba -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc='An engine for cool desktop eyecandy' url='http://kde.org/applications/utilities/superkaramba/' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/superkaramba-${pkgver}.tar.xz") -sha1sums=('3f0d2f3134cf240a588f1490e5f0c2d4b02b6aa8') +sha1sums=('0a1f43ab28cc351ab99f2aaf6cb5061c4136daa7') build() { cd "${srcdir}" diff --git a/testing/kdeutils-sweeper/PKGBUILD b/testing/kdeutils-sweeper/PKGBUILD index 7a012a428..e2cbeee8a 100644 --- a/testing/kdeutils-sweeper/PKGBUILD +++ b/testing/kdeutils-sweeper/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164619 2012-08-01 14:43:21Z andrea $ +# $Id: PKGBUILD 166128 2012-09-04 16:35:28Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-sweeper -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc='System Cleaner' url='http://kde.org/applications/utilities/sweeper' @@ -12,7 +12,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') source=("http://download.kde.org/stable/${pkgver}/src/sweeper-${pkgver}.tar.xz") -sha1sums=('39a2ddd22ef2afb32062f4e3bacd4ad28b86bfa5') +sha1sums=('e64550d8fc5d5b5615eb464d9542167f0b5e17f3') build() { cd "${srcdir}" diff --git a/testing/kdewebdev/PKGBUILD b/testing/kdewebdev/PKGBUILD index 8e1db90cf..9bdee3ae3 100644 --- a/testing/kdewebdev/PKGBUILD +++ b/testing/kdewebdev/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 164620 2012-08-01 14:43:28Z andrea $ +# $Id: PKGBUILD 166129 2012-09-04 16:35:59Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -7,7 +7,7 @@ pkgname=('kdewebdev-kfilereplace' 'kdewebdev-kimagemapeditor' 'kdewebdev-klinkstatus' 'kdewebdev-kommander') -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -15,7 +15,7 @@ license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdewebdev') makedepends=('cmake' 'automoc4' 'ruby' 'tidyhtml' 'kdepimlibs' 'boost') source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('5bc5318ce7b2ef04b1c57b8f8a25bb4b8a561075') +sha1sums=('0a64286114c10c3b09c64d1829058b9ab667986b') build() { cd $srcdir diff --git a/testing/libkcddb/PKGBUILD b/testing/libkcddb/PKGBUILD index 888e63cb7..c31949ba8 100644 --- a/testing/libkcddb/PKGBUILD +++ b/testing/libkcddb/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164548 2012-08-01 14:36:55Z andrea $ +# $Id: PKGBUILD 166057 2012-09-04 15:51:53Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkcddb -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="KDE CDDB library" url='https://projects.kde.org/projects/kde/kdemultimedia/libkcddb' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdemultimedia-kioslave') conflicts=('kdemultimedia-kioslave') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('4a2639ca08cdbaf6eee28b7145c46718f685a651') +sha1sums=('7c2009bfb19a36cc5084ac450f5a2155a193da55') build() { cd "${srcdir}" diff --git a/testing/libkcompactdisc/PKGBUILD b/testing/libkcompactdisc/PKGBUILD index 1edeaa6d4..9b1223b77 100644 --- a/testing/libkcompactdisc/PKGBUILD +++ b/testing/libkcompactdisc/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164549 2012-08-01 14:36:58Z andrea $ +# $Id: PKGBUILD 166058 2012-09-04 15:52:21Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkcompactdisc -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="A library for interfacing with CDs" url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdemultimedia-kioslave') conflicts=('kdemultimedia-kioslave') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('70c10ce02960c8eb00cb126471831a50b7d6262e') +sha1sums=('5e35ecf40225c79e023c0a4eb28f94043e9a2a61') build() { cd "${srcdir}" diff --git a/testing/libkdcraw/PKGBUILD b/testing/libkdcraw/PKGBUILD index a2888cd04..e0169e412 100644 --- a/testing/libkdcraw/PKGBUILD +++ b/testing/libkdcraw/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164543 2012-08-01 14:36:36Z andrea $ +# $Id: PKGBUILD 166052 2012-09-04 15:49:43Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkdcraw -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="A C++ interface used to decode RAW picture" url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkdcraw" @@ -14,7 +14,7 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('4f23263c1f38374fcfa482de8a79b0c85e2fb250') +sha1sums=('82911b0bf93a7762130e4a1aff4dc72ec48940c1') build() { cd "${srcdir}" diff --git a/testing/libkdeedu/PKGBUILD b/testing/libkdeedu/PKGBUILD index 9efee4743..ad1df6fd9 100644 --- a/testing/libkdeedu/PKGBUILD +++ b/testing/libkdeedu/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164541 2012-08-01 14:36:24Z andrea $ +# $Id: PKGBUILD 166050 2012-09-04 15:48:16Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkdeedu -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Libraries used by KDE Education applications" url="https://projects.kde.org/projects/kde/kdeedu/libkdeedu" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') install=${pkgname}.install replaces=('kdeedu-libkdeedu' 'kdeedu-data') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('cf98e194c8d7230120e15c27f72efeec392ff4f9') +sha1sums=('d472434ac86c2ca92318c9d5e24625d2a72fe654') build() { cd "${srcdir}" diff --git a/testing/libkexiv2/PKGBUILD b/testing/libkexiv2/PKGBUILD index 0676c0e51..46e8966c1 100644 --- a/testing/libkexiv2/PKGBUILD +++ b/testing/libkexiv2/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 164682 2012-08-02 15:21:53Z andrea $ +# $Id: PKGBUILD 166053 2012-09-04 15:50:11Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkexiv2 -pkgver=4.9.0 -pkgrel=3 +pkgver=4.9.1 +pkgrel=1 pkgdesc="A library to manipulate pictures metadata" url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('121c63ebf328ca87e67b7cf0cf72d0f276e4ae2c') +sha1sums=('fec413daf7ad814299fb53db695c273b1c26bc3b') build() { cd "${srcdir}" diff --git a/testing/libkipi/PKGBUILD b/testing/libkipi/PKGBUILD index 432fbf69a..93b90ea44 100644 --- a/testing/libkipi/PKGBUILD +++ b/testing/libkipi/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkipi -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="An interface to use kipi-plugins from a KDE application" url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkipi" @@ -14,7 +14,7 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('a50fe30343f720f7402b42edbe7f6b59b2add19a') +sha1sums=('8fb561ef477b6a35c264ada783f65efa2ae1d3b9') build() { cd "${srcdir}" diff --git a/testing/libksane/PKGBUILD b/testing/libksane/PKGBUILD index 4db524ed5..3fbac1549 100644 --- a/testing/libksane/PKGBUILD +++ b/testing/libksane/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164546 2012-08-01 14:36:49Z andrea $ +# $Id: PKGBUILD 166055 2012-09-04 15:50:59Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libksane -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="An image scanning library" url="https://projects.kde.org/projects/kde/kdegraphics/libs/libksane" @@ -14,7 +14,7 @@ replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('0a7a18454d78a5c3c4cf22696163c2383bf6e333') +sha1sums=('c44eed9ec5f998d0449369f3c1b1abfc4ad2fcfd') build() { cd "${srcdir}" diff --git a/testing/nepomuk-core/PKGBUILD b/testing/nepomuk-core/PKGBUILD index 3ea876e1a..657e60be6 100644 --- a/testing/nepomuk-core/PKGBUILD +++ b/testing/nepomuk-core/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164525 2012-08-01 14:34:52Z andrea $ +# $Id: PKGBUILD 166034 2012-09-04 15:37:30Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=nepomuk-core -pkgver=4.9.0 +pkgver=4.9.1 pkgrel=1 pkgdesc="Contains the central Nepomuk services like file indexing, file system monitoring, query, storage, client libraries" url="https://projects.kde.org/projects/kde/kdelibs/nepomuk-core" @@ -11,7 +11,7 @@ license=('GPL' 'LGPL' 'FDL') depends=('kdelibs') makedepends=('cmake' 'automoc4' 'doxygen') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('55dc228d5155220052c4a5d38984092a90a9cae7') +sha1sums=('1dbb4467b7d4ec50133e5ce86c3837b57b95794d') build() { cd "${srcdir}" diff --git a/testing/procps-ng/PKGBUILD b/testing/procps-ng/PKGBUILD index 9f3395472..72b8d73c7 100644 --- a/testing/procps-ng/PKGBUILD +++ b/testing/procps-ng/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 163236 2012-07-11 17:53:04Z eric $ +# $Id: PKGBUILD 166144 2012-09-04 17:22:05Z tomegun $ # Maintainer: Eric BĂ©langer <eric@archlinux.org> pkgname=procps-ng pkgver=3.3.3 -pkgrel=3 +pkgrel=5 pkgdesc="Utilities for monitoring your system and processes on your system" arch=('i686' 'x86_64') url="http://gitorious.org/procps" @@ -32,4 +32,8 @@ package() { cd "${srcdir}/procps-procps" make DESTDIR="${pkgdir}" install install -D -m644 "${srcdir}/sysctl.conf" "${pkgdir}/etc/sysctl.conf" + + # moved to util-linux + rm "${pkgdir}/bin/kill" + rm "${pkgdir}/usr/share/man/man1/kill.1" } diff --git a/testing/sudo/PKGBUILD b/testing/sudo/PKGBUILD index cc41c6564..27774513f 100644 --- a/testing/sudo/PKGBUILD +++ b/testing/sudo/PKGBUILD @@ -1,10 +1,11 @@ -# $Id: PKGBUILD 165301 2012-08-15 06:24:22Z allan $ -# Maintainer: Allan McRae <allan@archlinux.org> +# $Id: PKGBUILD 166016 2012-09-04 05:55:15Z foutrelis $ +# Maintainer: Evangelos Foutras <evangelos@foutrelis.com> +# Contributor: Allan McRae <allan@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> pkgname=sudo -_ver=1.8.5p3 -pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}} +_sudover=1.8.6 +pkgver=${_sudover/p/.p} pkgrel=1 pkgdesc="Give certain users the ability to run some commands as root" arch=('i686' 'x86_64') @@ -12,31 +13,38 @@ url="http://www.sudo.ws/sudo/" license=('custom') depends=('glibc' 'pam') backup=('etc/sudoers' 'etc/pam.d/sudo') -options=('!libtool' '!makeflags') -source=(ftp://ftp.sudo.ws/pub/sudo/$pkgname-$_ver.tar.gz{,.sig} +options=('!libtool') +source=(http://www.sudo.ws/sudo/dist/$pkgname-$_sudover.tar.gz sudo.pam) -md5sums=('aa50e0a9ca02ac35d1020881bd3a221f' - 'aceea97d5f4fe063d6803bead339364d' - '4e7ad4ec8f2fe6a40e12bcb2c0b256e3') +sha256sums=('93c4481ae5261ca0e988d069179fef40032729b94a110ceb2a3e92ca7842d2d3' + 'e7de79d2c73f2b32b20a8e797e54777a2bf19788ec03e48decd6c15cd93718ae') build() { - cd "$srcdir/$pkgname-$_ver" + cd "$srcdir/$pkgname-$_sudover" - ./configure --prefix=/usr --with-pam --libexecdir=/usr/lib \ - --with-env-editor --with-all-insults --with-logfac=auth + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib \ + --with-logfac=auth \ + --with-pam \ + --with-env-editor \ + --with-passprompt="[sudo] password for %p: " \ + --with-all-insults make } check() { - cd "$srcdir/$pkgname-$_ver" + cd "$srcdir/$pkgname-$_sudover" make check } package() { - cd "$srcdir/$pkgname-$_ver" + cd "$srcdir/$pkgname-$_sudover" make DESTDIR="$pkgdir" install install -Dm644 "$srcdir/sudo.pam" "$pkgdir/etc/pam.d/sudo" install -Dm644 doc/LICENSE "$pkgdir/usr/share/licenses/sudo/LICENSE" } + +# vim:set ts=2 sw=2 et: diff --git a/testing/sysvinit/PKGBUILD b/testing/sysvinit/PKGBUILD index 254c7cae0..b7499bd73 100644 --- a/testing/sysvinit/PKGBUILD +++ b/testing/sysvinit/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 165813 2012-08-30 20:27:27Z tomegun $ +# $Id: PKGBUILD 166146 2012-09-04 17:22:19Z tomegun $ # Maintainer: Eric Belanger <eric@archlinux.org> pkgbase=sysvinit pkgname=('sysvinit-tools' 'sysvinit') pkgver=2.88 -pkgrel=7 +pkgrel=8 arch=('i686' 'x86_64') url="http://savannah.nongnu.org/projects/sysvinit" license=('GPL') @@ -37,11 +37,10 @@ package_sysvinit-tools() { cd "${pkgdir}" rm bin/mountpoint rm usr/share/man/man1/mountpoint.1 -# once u-l-2.22 is out -# rm usr/bin/{mesg,utmpdump,wall} -# rm usr/share/man/man1/{mesg,utmpdump,wall}.1 -# rm sbin/sulogin -# rm usr/share/man/man8/sulogin.8 + rm usr/bin/{mesg,utmpdump,wall} + rm usr/share/man/man1/{mesg,utmpdump,wall}.1 + rm sbin/sulogin + rm usr/share/man/man8/sulogin.8 ### split out sysvinit rm -rf ${srcdir}/_sysvinit diff --git a/testing/util-linux/su.1 b/testing/util-linux/su.1 new file mode 100644 index 000000000..59e17314d --- /dev/null +++ b/testing/util-linux/su.1 @@ -0,0 +1,230 @@ +.TH SU "1" "June 2012" "util-linux" "User Commands" +.SH NAME +su \- run a command with substitute user and group ID +.SH SYNOPSIS +.B su +[options...] [\-] [user [args...]] +.SH DESCRIPTION +.B su +allows to run commands with substitute user and group ID. +.PP +When called without arguments +.B su +defaults to running an interactive shell as +.IR root . +.PP +For backward compatibility +.B su +defaults to not change the current directory and to only set the +environment variables +.B HOME +and +.B SHELL +(plus +.B USER +and +.B LOGNAME +if the target +.I user +is not root). It is recommended to always use the +.B \-\-login +option (instead it's shortcut +.BR \- ) +to avoid side effects caused by mixing environments. +.PP +This version of +.B su +uses PAM for authentication, account and session management. Some +configuration options found in other +.B su +implementations such as e.g. support of a wheel group have to be +configured via PAM. +.SH OPTIONS +.TP +\fB\-c\fR \fIcommand\fR, \fB\-\-command\fR=\fIcommand\fR +Pass +.I command +to the shell with the +.B \-c +option. +.TP +\fB\-\-session\-command\fR=\fIcommand\fR +Same as +.B \-c +but do not create a new session (discouraged). +.TP +\fB\-f\fR, \fB\-\-fast\fR +Pass +.B \-f +to the shell which may or may not be useful depending on the +shell. +.TP +\fB\-g\fR, \fB\-\-group\fR=\fIgroup\fR\fR +specify the primary group, this option is allowed for root user only +.TP +\fB\-G\fR, \fB\-\-supp-group\fR=\fIgroup\fR\fR +specify a supplemental group, this option is allowed for root user only +.TP +\fB\-\fR, \fB\-l\fR, \fB\-\-login\fR +Starts the shell as login shell with an environment similar to a real +login: +.RS 10 +.TP +o +clears all environment variables except for +.B TERM +.TP +o +initializes the environment variables +.BR HOME , +.BR SHELL , +.BR USER , +.BR LOGNAME , +.B PATH +.TP +o +changes to the target user's home directory +.TP +o +sets argv[0] of the shell to +.RB ' \- ' +in order to make the shell a login shell +.RE +.TP +\fB\-m\fR, \fB\-p\fR, \fB\-\-preserve-environment\fR +Preserves the whole environment, ie does not set +.BR HOME , +.BR SHELL , +.B USER +nor +.BR LOGNAME . +.TP +\fB\-s\fR \fISHELL\fR, \fB\-\-shell\fR=\fISHELL\fR +Runs the specified shell instead of the default. The shell to run is +selected according to the following rules in order: +.RS 10 +.TP +o +the shell specified with +.B \-\-shell +.TP +o +The shell specified in the environment variable +.B SHELL +if the +.B \-\-preserve-environment +option is used. +.TP +o +the shell listed in the passwd entry of the target user +.TP +o +/bin/sh +.RE +.IP +If the target user has a restricted shell (i.e. not listed in +/etc/shells) the +.B \-\-shell +option and the +.B SHELL +environment variables are ignored unless the calling user is root. +.TP +\fB\-\-help\fR +Display help text and exit. +.TP +\fB\-\-version\fR +Display version information and exit. +.SH CONFIG FILES +.B su +reads the +.I /etc/default/su +and +.I /etc/login.defs +configuration files. The following configuration items are relevant +for +.BR su (1): +.PP +.B FAIL_DELAY +(number) +.RS 4 +Delay in seconds in case of authentication failure. Number must be +a non-negative integer. +.RE +.PP +.B ENV_PATH +(string) +.RS 4 +Defines the PATH environment variable for a regular user. The +default value is +.IR /usr/local/bin:\:/bin:\:/usr/bin . +.RE +.PP +.B ENV_ROOTPATH +(string) +.br +.B ENV_SUPATH +(string) +.RS 4 +Defines the PATH environment variable for root. The default value is +.IR /usr/local/sbin:\:/usr/local/bin:\:/sbin:\:/bin:\:/usr/sbin:\:/usr/bin . +.RE +.PP +.B ALWAYS_SET_PATH +(boolean) +.RS 4 +If set to +.I yes +and \-\-login and \-\-preserve\-environment were not specified +.B su +initializes +.BR PATH . +.RE +.SH EXIT STATUS +.B su +normally returns the exit status of the command it executed. If the +command was killed by a signal, +.B su +returns the number of the signal plus 128. +.PP +Exit status generated by +.B su +itself: +.RS 10 +.TP +1 +Generic error before executing the requested command +.TP +126 +The requested command could not be executed +.TP +127 +The requested command could was not found +.RE +.SH FILES +.PD 0 +.TP 17 +/etc/pam.d/su +default PAM configuration file +.TP +/etc/pam.d/su-l +PAM configuration file if \-\-login is specified +.TP +/etc/default/su +command specific logindef config file +.TP +/etc/login.defs +global logindef config file +.PD 1 +.SH "SEE ALSO" +.BR pam (8), +.BR shells (5), +.BR login.defs (5) +.SH AUTHOR +Derived from coreutils' su which was based on an implementation from +David MacKenzie. +.SH AVAILABILITY +The su command is part of the util-linux package and is +available from +.UR ftp://\:ftp.kernel.org\:/pub\:/linux\:/utils\:/util-linux/ +Linux Kernel Archive +.UE . diff --git a/testing/util-linux/uuidd.tmpfiles b/testing/util-linux/uuidd.tmpfiles new file mode 100644 index 000000000..b059cfe65 --- /dev/null +++ b/testing/util-linux/uuidd.tmpfiles @@ -0,0 +1 @@ +d /run/uuidd 0755 uuidd uuidd |