diff options
author | root <root@rshg054.dnsready.net> | 2012-11-22 02:31:09 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-11-22 02:31:09 -0800 |
commit | 38ea2e71952c00f18230ed0e691532aadff4e2c1 (patch) | |
tree | bc1c7cfd697773062d53a0a23b35afdb0fc775c2 | |
parent | f48f6c82e23a3bacb8a0952c2d2cf9af1e6bf42d (diff) |
Thu Nov 22 02:27:52 PST 2012
239 files changed, 3561 insertions, 715 deletions
diff --git a/community/choqok/PKGBUILD b/community/choqok/PKGBUILD index eae93565d..de58aff83 100644 --- a/community/choqok/PKGBUILD +++ b/community/choqok/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 72717 2012-06-21 07:02:11Z andrea $ +# $Id: PKGBUILD 80455 2012-11-21 23:46:56Z andrea $ # Maintainer: Peter Richard Lewis <plewis@aur.archlinux.org> # Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: Emanuele Rossi <newdna1510@yahoo.it> @@ -6,7 +6,7 @@ pkgname=choqok pkgver=1.3 -pkgrel=2 +pkgrel=3 pkgdesc="A Twitter/identi.ca/laconica client for KDE" url='http://choqok.gnufolks.org/' license=('GPL') @@ -31,4 +31,7 @@ build() { package() { cd "${srcdir}"/build make DESTDIR="${pkgdir}" install + + # This is already installed by kdepimlibs >= 4.9.80 + rm "${pkgdir}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake } diff --git a/community/notmuch/PKGBUILD b/community/notmuch/PKGBUILD new file mode 100644 index 000000000..837d08626 --- /dev/null +++ b/community/notmuch/PKGBUILD @@ -0,0 +1,97 @@ +# $Id: PKGBUILD 80453 2012-11-21 23:29:49Z dwallace $ +# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com> +# Contributor: fauno <fauno at kiwwwi.com.ar> +# Contributor: Olivier Ramonat <olivier at ramonat dot fr> +# Contributor: Richard Murri <admin@richardmurri.com> + +pkgbase=notmuch +pkgname=('notmuch' 'notmuch-mutt' 'notmuch-runtime') +pkgver=0.14 +pkgrel=4 +arch=('i686' 'x86_64') +url="http://notmuchmail.org/" +license=('GPL3') +makedepends=('python2' 'python' 'emacs' 'gnupg' 'ruby' 'pkgconfig' 'xapian-core' 'gmime' 'talloc') +options=(!distcc !makeflags) +source=("http://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.gz") +md5sums=('5eb3f225d3eb37862932f6baa5780d15') + +build() { + cd "$srcdir/${pkgname}-$pkgver" + + ./configure --prefix=/usr --sysconfdir=/etc + make + (cd "${srcdir}/$pkgname-${pkgver}/contrib/${pkgname}-mutt" + make ${pkgname}-mutt.1) + + cp -dpr --no-preserve=ownership "$srcdir/$pkgname-$pkgver" "$srcdir/$pkgname-runtime-$pkgver" + + cd bindings/ruby + ruby extconf.rb + make + + cp -dpr --no-preserve=ownership "$srcdir/${pkgname}-$pkgver"/bindings/python{,2} + + cd "$srcdir/${pkgname}-${pkgver}/bindings/python" + env LD_LIBRARY_PATH="." python setup.py build + + cd "$srcdir/${pkgname}-${pkgver}/bindings/python2" + find "." -name '*.py' -print0 |xargs -0 \ + sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \ + -e 's,^#!/usr/bin/python$,#!/usr/bin/python2,' + env LD_LIBRARY_PATH="." python2 setup.py build + +} + +package_notmuch-runtime(){ + pkgdesc="Runtime for notmuch and notmuch-mutt" + depends=('xapian-core' 'gmime' 'talloc') + cd "$srcdir/${pkgname}-$pkgver" + make DESTDIR="$pkgdir/" LIBDIR_IN_LDCONFIG=0 install + + install -Dm644 notmuch "$pkgdir/usr/sbin/notmuch" + + mkdir -p "$pkgdir"/usr/share/vim/vimfiles/{plugin,syntax} + + make -C vim prefix="$pkgdir/usr/share/vim/vimfiles" install + + # Remove conflicting zsh completion + rm -r ${pkgdir}/usr/share/zsh +} + + +package_notmuch(){ + pkgdesc="Notmuch is not much of an email program" + depends=('notmuch-runtime') + optdepends=('emacs: for using the emacs interface' + 'vim: for using the vim interface' + 'python2: for using the python2 bindings' + 'ruby: for using the ruby bindings' + 'gnupg: for email encryption') + + cd "$srcdir/${pkgname}-$pkgver" + + # Install python bindings + cd "$srcdir/${pkgname}-${pkgver}/bindings/python2" + env LD_LIBRARY_PATH="." python2 setup.py install --prefix=/usr --root="$pkgdir" + + cd "$srcdir/${pkgname}-${pkgver}/bindings/python" + env LD_LIBRARY_PATH="." python setup.py install --prefix=/usr --root="$pkgdir" + + # Install ruby bindings + cd "$srcdir/${pkgname}-${pkgver}/bindings/ruby" + sed -i -e 's,/site_ruby,,g' Makefile + make prefix="${pkgdir}/usr" install + +} + +package_notmuch-mutt(){ + pkgdesc="The mail indexer" + depends=('notmuch-runtime' 'perl-mailtools' 'perl-mail-box' 'perl-term-readline-gnu' 'perl-string-shellquote' 'perl-file-which') + cd "$srcdir/$pkgbase-runtime-$pkgver" + + install -Dm755 "contrib/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname" + install -Dm644 "contrib/$pkgname/${pkgname}.1" "${pkgdir}/usr/share/man/man1/${pkgname}.1.gz" +} + +#vim: set filetype=PKGBUILD sw=4 ts=4 et diff --git a/community/perl-term-readline-gnu/PKGBUILD b/community/perl-term-readline-gnu/PKGBUILD new file mode 100644 index 000000000..4a1ee0bc0 --- /dev/null +++ b/community/perl-term-readline-gnu/PKGBUILD @@ -0,0 +1,49 @@ +# $Id: PKGBUILD 80447 2012-11-21 22:59:31Z dwallace $ +# CPAN Name : Term-ReadLine-Gnu +# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com> +# Contributor: jason ryan <jasonwryan@gmail.com> +# Contributor: AUR Perl <aurperl@juster.info> +# Generator : CPANPLUS::Dist::Arch 1.15 + +pkgname=perl-term-readline-gnu +pkgver=1.20 +pkgrel=4 +pkgdesc="GNU Readline XS library wrapper" +arch=('i686' 'x86_64') +license=('PerlArtistic' 'GPL') +options=('!emptydirs') +depends=('perl>=5.7') +url='http://search.cpan.org/dist/Term-ReadLine-Gnu' +source=('http://search.cpan.org/CPAN/authors/id/H/HA/HAYASHI/Term-ReadLine-Gnu-1.20.tar.gz' + 'termcap-bad-ncurses-good.patch') +md5sums=('fa33510193b89a2ada74fcef00816322' + 'a000706b89792f822b5ec20baa370910') +_distdir="${srcdir}/Term-ReadLine-Gnu-1.20" + +build() { + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \ + PERL_AUTOINSTALL=--skipdeps \ + PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \ + PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \ + MODULEBUILDRC=/dev/null + + cd "$_distdir" + patch --forward -p1 < "${srcdir}/termcap-bad-ncurses-good.patch" + /usr/bin/perl Makefile.PL + make + ) +} + +check() { + cd "$_distdir" + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" + make test + ) +} + +package() { + cd "$_distdir" + make install + find "$pkgdir" -name .packlist -o -name perllocal.pod -delete +} + diff --git a/community/perl-term-readline-gnu/termcap-bad-ncurses-good.patch b/community/perl-term-readline-gnu/termcap-bad-ncurses-good.patch new file mode 100644 index 000000000..7fee6013c --- /dev/null +++ b/community/perl-term-readline-gnu/termcap-bad-ncurses-good.patch @@ -0,0 +1,18 @@ +--- Term-ReadLine-Gnu-1.20/Makefile.PL 2010-05-02 06:37:55.000000000 -0400 ++++ Term-ReadLine-Gnu-1.20-patched/Makefile.PL 2011-07-30 16:16:54.000000000 -0400 +@@ -58,8 +58,13 @@ + # know why AIX prefers curses. + # libtermcap.a on HPUX cannot be used for dynamically linked binary. + # Old Cygwin may require setting false (0). +- my $PREFER_CURSES = $Config{osname} eq 'aix' || $Config{osname} eq 'hpux' +- || $Config{osname} eq 'cygwin'; ++ # my $PREFER_CURSES = $Config{osname} eq 'aix' || $Config{osname} eq 'hpux' ++ # || $Config{osname} eq 'cygwin'; ++ ++ # Hack for ArchLinux by Justin Davis <aurperl@juster.us> ++ # Don't use termcap! readline is linked with ncurses so I know it's ++ # available. termcap causes this module to crash for some people. ++ my $PREFER_CURSES = 1; + my $TERMCAP_LIB = (! $PREFER_CURSES && &search_lib('-ltermcap')) + || &search_lib('-lncurses') + || &search_lib('-lcurses'); diff --git a/community/python-cchardet/PKGBUILD b/community/python-cchardet/PKGBUILD new file mode 100644 index 000000000..ac36b156f --- /dev/null +++ b/community/python-cchardet/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 80436 2012-11-21 15:45:04Z mtorromeo $ +# Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com> + +pkgname=python-cchardet +pkgver=0.3.2 +pkgrel=1 +_libname=${pkgname/python-/} +pkgdesc="Universal encoding detector faster than chardet." +url="http://pypi.python.org/pypi/cchardet/" +depends=('python') +makedepends=('cython' 'python-distribute') +license=('MIT') +arch=('i686' 'x86_64') +source=(http://pypi.python.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz) + +build() { + cd "$srcdir/$_libname-$pkgver" + python setup.py build +} + +package() { + cd "$srcdir/$_libname-$pkgver" + python setup.py install --root="$pkgdir" + install -m0644 -D "README.rst" "$pkgdir/usr/share/licenses/$pkgname/README.rst" +} + +sha256sums=('a3e92811d5a8aacd9ecfdb4ea9637ba801b9b18b7c779dbdf41d07bb48235a23') diff --git a/community/python-openbabel/PKGBUILD b/community/python-openbabel/PKGBUILD index f94a6bac3..a826601e6 100644 --- a/community/python-openbabel/PKGBUILD +++ b/community/python-openbabel/PKGBUILD @@ -1,22 +1,25 @@ -# $Id: PKGBUILD 78233 2012-10-17 10:26:13Z allan $ -# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# $Id: PKGBUILD 80457 2012-11-22 01:42:13Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: Michal Bozon <bozonm@vscht.cz> -pkgname=python-openbabel -pkgver=2.3.1 -pkgrel=3 -pkgdesc="Python bindings of openbabel library" -arch=('i686' 'x86_64') -url="http://openbabel.org/wiki/Python" +pkgname=('python-openbabel' 'python2-openbabel') +pkgver=2.3.2 +pkgrel=1 +pkgdesc='Python bindings for the openbabel library' +arch=('x86_64' 'i686') +url='http://openbabel.org/wiki/Python' license=('GPL') -depends=('python' 'gcc-libs' "openbabel=${pkgver}" 'eigen2') -makedepends=('swig' 'cmake') +depends=('gcc-libs' "openbabel=${pkgver}" 'eigen2') +makedepends=('swig' 'cmake' 'python-distribute' 'python2-distribute') options=('!libtool') -source=(http://downloads.sourceforge.net/openbabel/openbabel-$pkgver.tar.gz) -md5sums=('1f029b0add12a3b55582dc2c832b04f8') +source=("http://downloads.sourceforge.net/openbabel/openbabel-$pkgver.tar.gz") +sha256sums=('4eaca26679aa6cc85ebf96af19191472ac63ca442c36b0427b369c3a25705188') build() { - cd "${srcdir}/openbabel-$pkgver" + cp -r openbabel-$pkgver python2-openbabel-$pkgver + + cd $srcdir/openbabel-$pkgver # Create babelconfig.h cmake . @@ -29,10 +32,27 @@ build() { cd python sed -i '19i os.path.join("/usr/include/openbabel-2.0"),' setup.py - sed -i '20i os.path.join("/usr/include/eigen2"),' setup.py + sed -i '20i os.path.join("/usr/include/eigen2"),' setup.py + + cd $srcdir/python2-openbabel-$pkgver/scripts/python + sed -i '19i os.path.join("/usr/include/openbabel-2.0"),' setup.py + sed -i '20i os.path.join("/usr/include/eigen2"),' setup.py +} + +package_python-openbabel() { + depends+=('python') + + cd "$srcdir/openbabel-$pkgver/scripts/python" + + python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 } -package() { - cd "${srcdir}/openbabel-$pkgver/scripts/python" - python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 +package_python2-openbabel() { + depends+=('python2') + + cd "$srcdir/python2-openbabel-$pkgver/scripts/python" + + python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 } + +# vim:set ts=2 sw=2 et: diff --git a/community/python2-cchardet/PKGBUILD b/community/python2-cchardet/PKGBUILD new file mode 100644 index 000000000..c9c108873 --- /dev/null +++ b/community/python2-cchardet/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 80426 2012-11-21 14:15:53Z mtorromeo $ +# Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com> + +pkgname=python2-cchardet +pkgver=0.3.2 +pkgrel=1 +_libname=${pkgname/python2-/} +pkgdesc="Universal encoding detector faster than chardet." +url="http://pypi.python.org/pypi/cchardet/" +depends=('python2') +makedepends=('cython2' 'python2-distribute') +license=('MIT') +arch=('i686' 'x86_64') +source=(http://pypi.python.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz) + +build() { + cd "$srcdir/$_libname-$pkgver" + find -type f -exec sed -i '1 s|python\s*$|python2|' {} + + python2 setup.py build +} + +package() { + cd "$srcdir/$_libname-$pkgver" + python2 setup.py install --root="$pkgdir" + install -m0644 -D "README.rst" "$pkgdir/usr/share/licenses/$pkgname/README.rst" +} + +sha256sums=('a3e92811d5a8aacd9ecfdb4ea9637ba801b9b18b7c779dbdf41d07bb48235a23') diff --git a/community/radvd/PKGBUILD b/community/radvd/PKGBUILD index e55ac3d49..faf021ec5 100644 --- a/community/radvd/PKGBUILD +++ b/community/radvd/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 73459 2012-07-08 00:19:18Z seblu $ +# $Id: PKGBUILD 80443 2012-11-21 20:47:43Z seblu $ # Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org> # Contributor: Kaiting Chen <kaitocracy@gmail.com> # Contributor: Mark Smith <markzzzsmith@yahoo.com.au> pkgname=radvd -pkgver=1.9.1 +pkgver=1.9.2 pkgrel=1 pkgdesc='IPv6 Router Advertisement Daemon' url='http://www.litech.org/radvd/' @@ -16,7 +16,7 @@ source=("http://www.litech.org/radvd/dist/$pkgname-$pkgver.tar.gz" "$pkgname.rc" "$pkgname.conf" "$pkgname.service") -sha1sums=('8db7d69f5ca4ce3643f06866b4dbf634490f479a' +sha1sums=('5bc39b7bec0d73ffa443634c340e75b54867766c' '08dd01319682f4ef2e847d11aa375e0239c08c7a' '63ce41d790a0472e6b3b15928f6a71d1dbb7700d' '9cb6b2eaaf445fe8d17dfc50fde15709d4de7d1d') diff --git a/community/rsyslog/PKGBUILD b/community/rsyslog/PKGBUILD index 0a40f4aae..1aed04997 100644 --- a/community/rsyslog/PKGBUILD +++ b/community/rsyslog/PKGBUILD @@ -1,14 +1,14 @@ -# $Id: PKGBUILD 77498 2012-10-11 11:39:59Z spupykin $ +# $Id: PKGBUILD 80430 2012-11-21 14:28:23Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=rsyslog -pkgver=6.4.2 -pkgrel=2 +pkgver=7.2.3 +pkgrel=1 pkgdesc="An enhanced multi-threaded syslogd with a focus on security and reliability" url="http://www.rsyslog.com/" arch=('i686' 'x86_64') license=('GPL3') -depends=('zlib' 'libestr' 'libee') +depends=('zlib' 'libestr' 'libee' 'json-c') makedepends=('postgresql-libs>=8.4.1' 'libmysqlclient' 'net-snmp' 'gnutls') optdepends=('postgresql-libs: PostgreSQL Database Support' 'libmysqlclient: MySQL Database Support' @@ -22,7 +22,7 @@ source=("http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz" 'rsyslog' 'rsyslog.logrotate' 'rsyslog.conf.d') -md5sums=('7de0124ec7d67ce2bfda0009ab1263ee' +md5sums=('81fd0f6c38e2005a1d2a9e6afff338c1' 'a18bbcbb6ebdaa13a6ec6d9f3d9eb2da' '8065db4bef3061a4f000ba58779f6829' '18565f38a4445136446a31a3c95ffc3e') diff --git a/core/shadow/PKGBUILD b/core/shadow/PKGBUILD index 971b59a34..0c5b601d2 100644 --- a/core/shadow/PKGBUILD +++ b/core/shadow/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 162993 2012-07-04 21:45:24Z dreisner $ +# $Id: PKGBUILD 171874 2012-11-22 03:45:34Z dreisner $ # Maintainer: Dave Reisner <dreisner@archlinux.org> # Maintainer: Aaron Griffin <aaron@archlinux.org> pkgname=shadow pkgver=4.1.5.1 -pkgrel=1 +pkgrel=2 pkgdesc="Password and account management tool suite with support for shadow files and PAM" arch=('i686' 'x86_64') url='http://pkg-shadow.alioth.debian.org/' @@ -38,7 +38,7 @@ sha1sums=('81f38720b953ef9c2c100c43d02dfe19cafd6c30' '4ad0e059406a305c8640ed30d93c2a1f62c2f4ad' '12427b1ca92a9b85ca8202239f0d9f50198b818f' '0e56fed7fc93572c6bf0d8f3b099166558bb46f1' - 'e5cab2118ecb1e61874cde842d7d04d1003f35cb' + '6fac49a4826e2b821c8d41ed5911bc8d04735986' '12427b1ca92a9b85ca8202239f0d9f50198b818f' '611be25d91c3f8f307c7fe2485d5f781e5dee75f' '5d83ba7e11c765c951867cbe00b0ae7ff57148fa' @@ -106,6 +106,9 @@ package() { install -Dm644 "$srcdir/defaults.pam" "$pkgdir/etc/pam.d/$file" done + # Remove evil/broken tools + rm "$pkgdir"/usr/sbin/logoutd + # Remove utilities provided by util-linux rm \ "$pkgdir"/usr/bin/{chsh,chfn,sg} \ diff --git a/core/shadow/login.defs b/core/shadow/login.defs index 2500ee447..5dabf78df 100644 --- a/core/shadow/login.defs +++ b/core/shadow/login.defs @@ -195,3 +195,9 @@ DEFAULT_HOME yes # USERGROUPS_ENAB yes +# +# Controls display of the motd file. This is better handled by pam_motd.so +# so the declaration here is empty is suppress display by readers of this +# file. +# +MOTD_FILE diff --git a/extra/calligra/PKGBUILD b/extra/calligra/PKGBUILD index 0d4aa9bc0..352da12ac 100644 --- a/extra/calligra/PKGBUILD +++ b/extra/calligra/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 171513 2012-11-18 10:27:43Z andyrtr $ +# $Id: PKGBUILD 171683 2012-11-21 11:19:58Z andrea $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Maintainer: Andrea Scarpino <andrea@archlinux.org> @@ -17,18 +17,18 @@ pkgname=('calligra-filters' 'calligra-handbook' 'calligra-braindump' 'calligra-flow') -pkgver=2.5.3 -pkgrel=7 +pkgver=2.5.4 +pkgrel=1 arch=('i686' 'x86_64') url='http://www.calligra-suite.org/' license=('FDL1.2' 'GPL2' 'LGPL') makedepends=('cmake' 'automoc4' 'boost ' 'kdepimlibs' 'eigen2' 'kdeedu-marble' - 'lcms2' 'libmysqlclient' 'libpqxx' 'freetds' 'xbase' 'libwpg' + 'lcms2' 'libmysqlclient' 'freetds' 'xbase' 'libwpg' 'libwps' 'gsl' 'glew' 'fftw' 'opengtl' 'poppler-qt' 'libkdcraw' 'openjpeg' 'kdegraphics-okular' 'pstoedit' 'mesa') groups=('calligra') source=("http://download.kde.org/stable/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}.tar.bz2") -md5sums=('83e2679b7ecb923b953ace06db7ca4c2') +md5sums=('54f4677a9b00eec5951fa2386ba271a1') build() { mkdir build @@ -107,7 +107,6 @@ package_calligra-kexi() { pkgdesc="Develop desktop database applications" depends=('calligra-libs' 'glew' 'fftw') optdepends=('libmysqlclient: MySQL driver' - 'libpqxx: PostgreSQL driver' 'freetds: Sybase & MS SQL driver' 'xbase: XBase driver' 'calligra-sheets: Spreadsheet-to-Kexi-table import plugin' diff --git a/extra/edje/PKGBUILD b/extra/edje/PKGBUILD index b2020c87d..4d7eade9f 100644 --- a/extra/edje/PKGBUILD +++ b/extra/edje/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 171659 2012-11-20 21:55:08Z ronald $ +# $Id: PKGBUILD 171861 2012-11-21 20:21:48Z ronald $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> pkgname=edje pkgver=1.7.1 -pkgrel=1 +pkgrel=2 pkgdesc="A graphical design and layout library based on Evas" arch=('i686' 'x86_64') url="http://www.enlightenment.org" @@ -13,11 +13,15 @@ depends=('eina' 'ecore' 'evas' 'eio' 'lua' 'shared-mime-info' 'embryo') optdepends=('python2: inkscape2edc') install=edje.install options=('!libtool' '!emptydirs') -source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('65e983041fa4405f14c23239d35dcce65ac1bbe4') +source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz + changeset_76449.diff) +sha1sums=('65e983041fa4405f14c23239d35dcce65ac1bbe4' + '032b96634bdd6bacba0b2cec87d648f54f9ebc05') build() { cd $srcdir/$pkgname-$pkgver + + patch -Np3 -i ${srcdir}/changeset_76449.diff export CFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections ${CFLAGS}" export CXXFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections ${CXXFLAGS}" diff --git a/extra/edje/changeset_76449.diff b/extra/edje/changeset_76449.diff new file mode 100644 index 000000000..1a1406b4e --- /dev/null +++ b/extra/edje/changeset_76449.diff @@ -0,0 +1,46 @@ +Index: /trunk/edje/src/bin/edje_cc_out.c
+===================================================================
+--- /trunk/edje/src/bin/edje_cc_out.c (revision 76448)
++++ /trunk/edje/src/bin/edje_cc_out.c (revision 76449)
+@@ -1882,25 +1882,30 @@
+ for (i = 0 ; i < pc->programs.fnmatch_count ; i++)
+ {
+- if (!strcmp(pl->u.ep->name, pc->programs.fnmatch[i]->name))
++ if (pl->u.ep->name && pc->programs.fnmatch[i]->name &&
++ !strcmp(pl->u.ep->name, pc->programs.fnmatch[i]->name))
+ data_queue_anonymous_lookup(pc, pc->programs.fnmatch[i], dest);
+ }
+ for (i = 0 ; i < pc->programs.strcmp_count ; i++)
+ {
+- if (!strcmp(pl->u.ep->name, pc->programs.strcmp[i]->name))
++ if (pl->u.ep->name && pc->programs.strcmp[i]->name &&
++ !strcmp(pl->u.ep->name, pc->programs.strcmp[i]->name))
+ data_queue_anonymous_lookup(pc, pc->programs.strcmp[i], dest);
+ }
+ for (i = 0 ; i < pc->programs.strncmp_count ; i++)
+ {
+- if (!strcmp(pl->u.ep->name, pc->programs.strncmp[i]->name))
++ if (pl->u.ep->name && pc->programs.strncmp[i]->name &&
++ !strcmp(pl->u.ep->name, pc->programs.strncmp[i]->name))
+ data_queue_anonymous_lookup(pc, pc->programs.strncmp[i], dest);
+ }
+ for (i = 0 ; i < pc->programs.strrncmp_count ; i++)
+ {
+- if (!strcmp(pl->u.ep->name, pc->programs.strrncmp[i]->name))
++ if (pl->u.ep->name && pc->programs.strrncmp[i]->name &&
++ !strcmp(pl->u.ep->name, pc->programs.strrncmp[i]->name))
+ data_queue_anonymous_lookup(pc, pc->programs.strrncmp[i], dest);
+ }
+ for (i = 0 ; i < pc->programs.nocmp_count ; i++)
+ {
+- if (!strcmp(pl->u.ep->name, pc->programs.nocmp[i]->name))
++ if (pl->u.ep->name && pc->programs.nocmp[i]->name &&
++ !strcmp(pl->u.ep->name, pc->programs.nocmp[i]->name))
+ data_queue_anonymous_lookup(pc, pc->programs.nocmp[i], dest);
+ }
+@@ -2450,4 +2455,5 @@
+ {
+ Code_Lookup *cl;
++
+ cl = mem_alloc(SZ(Code_Lookup));
+ cl->ptr = ptr;
diff --git a/extra/enlightenment17/PKGBUILD b/extra/enlightenment17/PKGBUILD index 1be3c2eef..58e174e6a 100644 --- a/extra/enlightenment17/PKGBUILD +++ b/extra/enlightenment17/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 171667 2012-11-20 22:00:14Z ronald $ +# $Id: PKGBUILD 171863 2012-11-21 20:27:16Z ronald $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> pkgname=enlightenment17 _pkgname=enlightenment -pkgver=0.17.0alpha3 -_pkgver=0.17.0-alpha3 +pkgver=0.17.0alpha4 +_pkgver=0.17.0-alpha4 pkgrel=1 pkgdesc="Enlightenment window manager DR17 (aka e17)" arch=('i686' 'x86_64') @@ -20,7 +20,7 @@ options=('!libtool' '!emptydirs') install=enlightenment17.install source=(http://download.enlightenment.org/releases/$_pkgname-$_pkgver.tar.gz 'e-applications.menu' 'quickstart.patch') -sha1sums=('49cd7da3e1c8df96e388e58c654dbe7253b9a487' +sha1sums=('637026cfb0e6bb1e8508fa1693f7e4bbaafae435' 'e08cc63cb8a188a06705b42d03e032b9fcfa7ee5' '3f53931ae86de8fe99e386aeb097521aac0decd8') diff --git a/extra/freenx/PKGBUILD b/extra/freenx/PKGBUILD index f686b0bb1..9a864096a 100644 --- a/extra/freenx/PKGBUILD +++ b/extra/freenx/PKGBUILD @@ -1,15 +1,15 @@ -# $Id: PKGBUILD 167672 2012-10-02 21:03:34Z andyrtr $ +# $Id: PKGBUILD 171732 2012-11-21 18:26:59Z andyrtr $ # Maintainer: Tobias Powalowski <tpowa@archlinux.org> #Contributed: eliott <eliott@solarblue.net>, Andre Naumann <anaumann@SPARCed.org> pkgname=freenx pkgver=0.7.3 -pkgrel=13 +pkgrel=14 pkgdesc="Free Software (GPL) Implementation of the NX Server" arch=(i686 x86_64) url="http://freenx.berlios.de" license=('GPL') -depends=('nx-common' 'nx-x11' 'nxagent' 'nxproxy' 'gnu-netcat' 'inetutils' 'openssh' 'expect' 'python2' 'python2-gobject' +depends=('nx-common' 'nx-x11' 'nxagent' 'nxproxy' 'netcat' 'inetutils' 'openssh' 'expect' 'python2' 'python2-gobject' 'xorg-xauth' 'xorg-fonts-misc' 'coreutils' 'xorg-xmessage' 'xorg-xrdb' 'xorg-xpr' 'xorg-xset' 'xorg-sessreg') optdepends=('cups: adds printing support') makedepends=('imake') diff --git a/extra/gst-libav/PKGBUILD b/extra/gst-libav/PKGBUILD index c5c50b033..9f84a4024 100644 --- a/extra/gst-libav/PKGBUILD +++ b/extra/gst-libav/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 169928 2012-10-30 22:45:23Z heftig $ +# $Id: PKGBUILD 171701 2012-11-21 14:49:21Z heftig $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=gst-libav -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="Gstreamer libav Plugin" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ makedepends=('yasm') options=(!libtool !emptydirs) provides=("gst-ffmpeg=$pkgver-pkgrel") source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz) -sha256sums=('143099eb7b099d52f764b7ce74ad6de2c4261aadd74dd2a315011a568b18a1e9') +sha256sums=('5193f158e2554a9450325dbb0c60e8f4b6b8a9244ae10ea07d0f7418a0e07959') build() { cd $pkgname-$pkgver diff --git a/extra/gst-plugins-base/PKGBUILD b/extra/gst-plugins-base/PKGBUILD index 831d137a3..4c606a0eb 100644 --- a/extra/gst-plugins-base/PKGBUILD +++ b/extra/gst-plugins-base/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 153256 2012-03-12 15:48:30Z jgc $ +# $Id: PKGBUILD 171697 2012-11-21 14:46:10Z heftig $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgbase=gst-plugins-base pkgname=('gst-plugins-base-libs' 'gst-plugins-base') -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="GStreamer Multimedia Framework Base Plugins" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ makedepends=('pkgconfig' 'gstreamer' 'orc' 'libxv' 'alsa-lib' 'cdparanoia' 'libv options=(!libtool !emptydirs) url="http://gstreamer.freedesktop.org/" source=(${url}/src/$pkgbase/$pkgbase-${pkgver}.tar.xz) -sha256sums=('7ce2c4462ff89f62a82b4503a3788ce2e5077f886e535796fecc223397acf78d') +sha256sums=('066ba8a7fa709a25ad291f7b21329b73f513637aafceee00396e588e723d7f9e') build() { cd $pkgbase-$pkgver diff --git a/extra/gst-plugins-good/PKGBUILD b/extra/gst-plugins-good/PKGBUILD index 527c559e4..07bf62acf 100644 --- a/extra/gst-plugins-good/PKGBUILD +++ b/extra/gst-plugins-good/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 153258 2012-03-12 16:05:19Z jgc $ +# $Id: PKGBUILD 171698 2012-11-21 14:46:59Z heftig $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=gst-plugins-good -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="GStreamer Multimedia Framework Good Plugins" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ depends=('libpulse' 'jack' 'libsoup' 'gst-plugins-base-libs' 'wavpack' 'aalib' ' makedepends=('gstreamer' 'speex' 'flac' 'libraw1394') options=(!libtool !emptydirs) source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz) -md5sums=('13e487127d80fe20c868b3bbb2a17d9e') +md5sums=('5cfc3f18dede15d60f0af8666f68193e') build() { cd $pkgname-$pkgver diff --git a/extra/gst-plugins-ugly/PKGBUILD b/extra/gst-plugins-ugly/PKGBUILD index 28f4675b2..c66969356 100644 --- a/extra/gst-plugins-ugly/PKGBUILD +++ b/extra/gst-plugins-ugly/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 171264 2012-11-16 23:35:40Z ibiru $ +# $Id: PKGBUILD 171700 2012-11-21 14:48:27Z heftig $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=gst-plugins-ugly -pkgver=1.0.2 -pkgrel=2 +pkgver=1.0.3 +pkgrel=1 pkgdesc="GStreamer Multimedia Framework Ugly Plugins" arch=('i686' 'x86_64') license=('LGPL') @@ -11,7 +11,7 @@ url="http://gstreamer.freedesktop.org/" depends=('gst-plugins-base-libs' 'libdvdread' 'lame' 'libmpeg2' 'a52dec' 'libmad' 'libsidplay' 'libcdio' 'x264' 'opencore-amr') options=(!libtool !emptydirs) source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz) -sha256sums=('6f74dfbe9a18220a6a5961043676ff639bab7ea376335ea5aa9c95934c535c6d') +sha256sums=('b8f4cfef12201f19c53a4cde7bc4fef995740c566ea45921d4473f3714e4d8c0') build() { cd $pkgname-$pkgver diff --git a/extra/gstreamer/PKGBUILD b/extra/gstreamer/PKGBUILD index 91bbaf8ff..ca99d30c0 100644 --- a/extra/gstreamer/PKGBUILD +++ b/extra/gstreamer/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 153251 2012-03-12 14:53:13Z jgc $ +# $Id: PKGBUILD 171696 2012-11-21 14:45:21Z heftig $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=gstreamer -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="GStreamer Multimedia Framework" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ optdepends=('sh: feedback script') makedepends=('intltool' 'pkgconfig' 'gtk-doc' 'gobject-introspection') options=('!libtool') source=(${url}/src/gstreamer/gstreamer-${pkgver}.tar.xz) -sha256sums=('10c59112bb01a274eb33950300da13d25fd23a7494781bf1b2328372fdb6ee06') +sha256sums=('69ac49e2ae9cd2ea5f789de641aeb338bb8731961acfced08ae1c76a797fe6b1') build() { cd "${srcdir}/gstreamer-${pkgver}" diff --git a/extra/libindi/PKGBUILD b/extra/libindi/PKGBUILD index 7ffe5899d..18a209e47 100644 --- a/extra/libindi/PKGBUILD +++ b/extra/libindi/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Tobias Powalowski <tpowa@archlinux.org> pkgname=libindi -pkgver=0.9.5 +pkgver=0.9.6 pkgrel=1 pkgdesc="A distributed control protocol designed to operate astronomical instrumentation" url="http://www.indilib.org/index.php?title=Main_Page" @@ -13,7 +13,7 @@ depends=('libnova' 'cfitsio' 'boost-libs' 'libusb-compat') makedepends=('pkgconfig' 'cmake' 'boost') options=('!libtool') source=("http://downloads.sourceforge.net/indi/${pkgname}_${pkgver}.tar.gz") -md5sums=('357aed5dd2f2d713bb243120f022763a') +md5sums=('c1456544a36f543e2884f88913cf3eb0') build() { cd "${srcdir}" diff --git a/extra/libsecret/PKGBUILD b/extra/libsecret/PKGBUILD index 22011547e..c7a51e800 100644 --- a/extra/libsecret/PKGBUILD +++ b/extra/libsecret/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=libsecret -pkgver=0.11 +pkgver=0.12 pkgrel=1 pkgdesc='library for storing and retrieving passwords and other secrets.' arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ depends=('glib2' 'libgcrypt') makedepends=('intltool' 'docbook-xsl') options=('!libtool') source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz) -sha256sums=('e5399dfb61376a7500d20cb22715152780aa3a2c8a64281ec6bc8f0ebeb8b689') +sha256sums=('323db75a5e73058d3eb95597d9f798fd715ec7d58f500be84628b8f9a0617c01') build() { cd "$pkgname-$pkgver" diff --git a/extra/lighttpd/PKGBUILD b/extra/lighttpd/PKGBUILD index 8e3616b81..0dddecee1 100644 --- a/extra/lighttpd/PKGBUILD +++ b/extra/lighttpd/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 160457 2012-06-02 08:38:52Z pierre $ +# $Id: PKGBUILD 171703 2012-11-21 16:00:29Z pierre $ # Maintainer: Pierre Schmitz <pierre@archlinux.de> pkgname=lighttpd -pkgver=1.4.31 +pkgver=1.4.32 pkgrel=1 pkgdesc='A secure, fast, compliant and very flexible web-server' license=('custom') @@ -20,8 +20,8 @@ install='lighttpd.install' source=("http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz" "http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz.asc" 'lighttpd.rc.d' 'lighttpd.logrotate.d' 'lighttpd.conf' 'lighttpd.tmpfiles' 'lighttpd.service') -sha256sums=('8a0a4f1ab782c2a3554e031c7d8ad600aac9b4c0466710a6cc9aab10659fe3f2' - '0ba44866f6ebdf6fefc8efba89240eacff075b5d1b80e0d7a9e0479491ff01a7' +sha256sums=('1368f80069ce71f5928cad59c8e60c0b95876942ca9e02c53853e54ae24aedc1' + '5456a90967df6774386010baa3fa67dba1c80c3b7058c70c80931d8dea5093e7' '186f4bb2364f82d4076a2ba7d3e088ffb356550493d92dd9d5eb57cac2839c17' '6df18675691384c48b9137c8f18ca238055001f1077baf05cb8322247b475a77' 'ee56422fe48f2683ccb5ca2e3dc6bad79ea8e1cbd043b21d2ea73b87018e35aa' diff --git a/extra/lv2/PKGBUILD b/extra/lv2/PKGBUILD index a45496af2..e80a4b247 100644 --- a/extra/lv2/PKGBUILD +++ b/extra/lv2/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 157185 2012-04-25 12:13:02Z schiv $ +# $Id: PKGBUILD 171678 2012-11-21 07:36:28Z schiv $ # Maintainer: Ray Rashif <schiv@archlinux.org> pkgname=lv2 -pkgver=1.0.0 -pkgrel=2 +pkgver=1.2.0 +pkgrel=1 pkgdesc="Successor to the LADSPA audio plug-in standard" url="http://lv2plug.in/" license=('LGPL' 'custom') @@ -15,7 +15,7 @@ provides=('lv2core') conflicts=('lv2core') replaces=('lv2core') source=("http://lv2plug.in/spec/$pkgname-$pkgver.tar.bz2") -md5sums=('af98a50d8dfa8318a69800ea48b421f6') +md5sums=('323b851563b4da1ad2c0faf5c76f0e3a') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/extra/mod_fcgid/PKGBUILD b/extra/mod_fcgid/PKGBUILD index 813f69ac5..5d643940c 100644 --- a/extra/mod_fcgid/PKGBUILD +++ b/extra/mod_fcgid/PKGBUILD @@ -1,16 +1,16 @@ -# $Id: PKGBUILD 151282 2012-02-25 12:36:27Z pierre $ +# $Id: PKGBUILD 171689 2012-11-21 14:00:30Z dan $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=mod_fcgid -pkgver=2.3.6 -pkgrel=2 +pkgver=2.3.7 +pkgrel=1 pkgdesc="A FastCGI module for Apache HTTP Server." license=('APACHE') arch=('i686' 'x86_64') url="http://httpd.apache.org/mod_fcgid/" depends=('apache') source=("http://apache.cs.utah.edu/httpd/mod_fcgid/mod_fcgid-$pkgver.tar.gz") -sha256sums=('e831795498d91cf27a519ea1332c2a92a2a9920b0844d817b2ea7f079056d12b') +sha256sums=('b72810cb34942945156f29ce60946da7dc941bb4cfca8b9d224573535bd8ef6d') build() { cd "$srcdir"/$pkgname-$pkgver diff --git a/extra/openbabel/PKGBUILD b/extra/openbabel/PKGBUILD index 95e04efaa..a6e6c769a 100644 --- a/extra/openbabel/PKGBUILD +++ b/extra/openbabel/PKGBUILD @@ -1,21 +1,21 @@ -# $Id: PKGBUILD 140672 2011-10-18 02:34:13Z eric $ +# $Id: PKGBUILD 171707 2012-11-21 16:07:23Z eric $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Damir Perisa <damir.perisa@bluewin.ch> pkgname=openbabel -pkgver=2.3.1 +pkgver=2.3.2 pkgrel=1 pkgdesc="A library designed to interconvert between many file formats used in molecular modeling and computational chemistry" arch=('i686' 'x86_64') url="http://openbabel.org/wiki/Main_Page" license=('GPL') depends=('gcc-libs' 'libxml2') -makedepends=('cmake' 'eigen' 'wxgtk') -optdepends=('eigen: to use bindings' +makedepends=('cmake' 'eigen2' 'wxgtk') +optdepends=('eigen2: to use bindings' 'wxgtk: GUI interface') options=('!libtool') source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz") -md5sums=('1f029b0add12a3b55582dc2c832b04f8') +md5sums=('9b0007560d9d838b40ab4ad06daf5610') build() { cd "${srcdir}" diff --git a/kde-unstable/kactivities/PKGBUILD b/kde-unstable/kactivities/PKGBUILD index b543a3568..5a4806653 100644 --- a/kde-unstable/kactivities/PKGBUILD +++ b/kde-unstable/kactivities/PKGBUILD @@ -1,17 +1,17 @@ -# $Id: PKGBUILD 163353 2012-07-11 21:54:14Z andrea $ +# $Id: PKGBUILD 171714 2012-11-21 18:09:12Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kactivities -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='API for using and interacting with the Activity Manager' url='https://projects.kde.org/projects/kde/kdelibs/kactivities' license=('GPL' 'FDL') -depends=('kdelibs') -makedepends=('cmake' 'automoc4') +depends=('nepomuk-core') +makedepends=('cmake' 'automoc4' 'mesa') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('46ceae20db381c0e4de77f46246ff0db6fdd43a4') +sha1sums=('6dafbee6369e288c055875803f77273d28faddc6') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeaccessibility-jovie/PKGBUILD b/kde-unstable/kdeaccessibility-jovie/PKGBUILD index 5f172c1ab..329fe6221 100644 --- a/kde-unstable/kdeaccessibility-jovie/PKGBUILD +++ b/kde-unstable/kdeaccessibility-jovie/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163377 2012-07-11 22:11:15Z andrea $ +# $Id: PKGBUILD 171743 2012-11-21 18:33:39Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-jovie -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='A text to speech application' @@ -14,7 +14,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdeaccessibility-kttsd') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/jovie-${pkgver}.tar.xz") -sha1sums=('ac2759c78ba1ed0a10bf71e65a3b12fea3fb8cf6') +sha1sums=('e613c5513edb00ff58b1932c61703bd1b27a21ad') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeaccessibility-kaccessible/PKGBUILD b/kde-unstable/kdeaccessibility-kaccessible/PKGBUILD index 16552c3e0..934cc5058 100644 --- a/kde-unstable/kdeaccessibility-kaccessible/PKGBUILD +++ b/kde-unstable/kdeaccessibility-kaccessible/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 163379 2012-07-11 22:11:47Z andrea $ +# $Id: PKGBUILD 171744 2012-11-21 18:34:15Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kaccessible -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/kaccessible-${pkgver}.tar.xz") -sha1sums=('ad70cb9c3d11a4cc3881d689ec7329585a725e60') +sha1sums=('9f3007f9752f56bdf3c524c7fda6544f1c75dece') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeaccessibility-kmag/PKGBUILD b/kde-unstable/kdeaccessibility-kmag/PKGBUILD index f2e3fbbfa..0e1b79703 100644 --- a/kde-unstable/kdeaccessibility-kmag/PKGBUILD +++ b/kde-unstable/kdeaccessibility-kmag/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163380 2012-07-11 22:12:16Z andrea $ +# $Id: PKGBUILD 171745 2012-11-21 18:34:44Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kmag -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Screen Magnifier' @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kmag-${pkgver}.tar.xz") -sha1sums=('fc25e930cdd1c9b03553a2fb6923ead410793c6a') +sha1sums=('876654b279b9c85fa357057fe64665291ba23b6c') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeaccessibility-kmousetool/PKGBUILD b/kde-unstable/kdeaccessibility-kmousetool/PKGBUILD index 440defdc9..dac7ad841 100644 --- a/kde-unstable/kdeaccessibility-kmousetool/PKGBUILD +++ b/kde-unstable/kdeaccessibility-kmousetool/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163381 2012-07-11 22:12:44Z andrea $ +# $Id: PKGBUILD 171746 2012-11-21 18:35:16Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kmousetool -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Clicks the mouse for you, reducing the effects of RSI' @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kmousetool-${pkgver}.tar.xz") -sha1sums=('c5f413aeb0ff01d574e66bc310c8b074dd952cf5') +sha1sums=('522ff8389c49da50175d06eb9fe9e841249daad4') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeaccessibility-kmouth/PKGBUILD b/kde-unstable/kdeaccessibility-kmouth/PKGBUILD index d1cfc7f6a..2f3a0dca5 100644 --- a/kde-unstable/kdeaccessibility-kmouth/PKGBUILD +++ b/kde-unstable/kdeaccessibility-kmouth/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163382 2012-07-11 22:13:13Z andrea $ +# $Id: PKGBUILD 171747 2012-11-21 18:35:47Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeaccessibility-kmouth -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Speech Synthesizer Frontend' @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kmouth-${pkgver}.tar.xz") -sha1sums=('1d553d6c2a0fac255a21616b8b0fe87348862adf') +sha1sums=('72a6bb10b38a2bca50e17921b0ce7561cbe6aaef') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeadmin/PKGBUILD b/kde-unstable/kdeadmin/PKGBUILD index 81b160ffe..f76fb29ff 100644 --- a/kde-unstable/kdeadmin/PKGBUILD +++ b/kde-unstable/kdeadmin/PKGBUILD @@ -1,22 +1,20 @@ -# $Id: PKGBUILD 163383 2012-07-11 22:13:48Z andrea $ +# $Id: PKGBUILD 171748 2012-11-21 18:36:31Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgbase=kdeadmin pkgname=('kdeadmin-kcron' 'kdeadmin-ksystemlog' - 'kdeadmin-kuser' - 'kdeadmin-system-config-printer-kde') -pkgver=4.8.97 + 'kdeadmin-kuser') +pkgver=4.9.80 pkgrel=1 arch=('i686' 'x86_64') -url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeadmin') makedepends=('cmake' 'automoc4' 'kdebindings-python2' 'system-config-printer-common') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz" 'syslog-path.patch') -sha1sums=('f118b707c2f1d0d64ee321992f14da9e3b5518f9' +sha1sums=('385569286ace7061f42c2c0f333366b0e75e8f9e' '20095ce6e0f3e5b6800a7c6e52de6fddba62c031') build() { @@ -28,15 +26,14 @@ build() { cd build cmake ../${pkgbase}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_SKIP_RPATH=ON \ -DCMAKE_INSTALL_PREFIX=/usr \ - -DBUILD_strigi-analyzer=OFF \ - -DPYTHON_EXECUTABLE=/usr/bin/python2 + -DBUILD_strigi-analyzer=OFF make } package_kdeadmin-kcron() { pkgdesc='Configure and schedule tasks' + url='http://userbase.kde.org/KCron' depends=('kdelibs') cd $srcdir/build/kcron make DESTDIR=$pkgdir install @@ -64,17 +61,3 @@ package_kdeadmin-kuser() { cd $srcdir/build/doc/kuser make DESTDIR=$pkgdir install } - -package_kdeadmin-system-config-printer-kde() { - pkgdesc='Configure local and remote Printers' - depends=('kdebindings-python2' 'system-config-printer-common' 'cups' 'python2-gobject2') - url="http://kde.org/applications/system/printerapplet/" - cd $srcdir/build/system-config-printer-kde - make DESTDIR=$pkgdir install - - # Use the python2 executable - sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \ - "${pkgdir}"/usr/share/apps/system-config-printer-kde/{system-config-printer-kde,authconn}.py - sed -i 's|#!/usr/bin/python|#!/usr/bin/python2|' \ - "${pkgdir}"/usr/share/apps/system-config-printer-kde/pysmb.py -} diff --git a/kde-unstable/kdeartwork/PKGBUILD b/kde-unstable/kdeartwork/PKGBUILD index a5879c577..fa43840d7 100644 --- a/kde-unstable/kdeartwork/PKGBUILD +++ b/kde-unstable/kdeartwork/PKGBUILD @@ -1,10 +1,9 @@ -# $Id: PKGBUILD 163384 2012-07-11 22:14:25Z andrea $ +# $Id: PKGBUILD 171749 2012-11-21 18:37:16Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgbase=kdeartwork -pkgname=('kdeartwork-aurorae' - 'kdeartwork-colorschemes' +pkgname=('kdeartwork-colorschemes' 'kdeartwork-desktopthemes' 'kdeartwork-emoticons' 'kdeartwork-iconthemes' @@ -13,16 +12,16 @@ pkgname=('kdeartwork-aurorae' 'kdeartwork-styles' 'kdeartwork-wallpapers' 'kdeartwork-weatherwallpapers') -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeartwork') makedepends=('cmake' 'automoc4' 'xscreensaver' 'eigen' 'kdebase-workspace' - 'libkexiv2') + 'libkexiv2' 'mesa') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('b8f2d992b5aa8b54300df27d180f33db849cf708') +sha1sums=('070e6186d7bfd6cc9422bf1fe33ecb47e96ab8d5') build() { cd $srcdir @@ -35,15 +34,9 @@ build() { make } -package_kdeartwork-aurorae() { - pkgdesc='An Aurorae theme based on the Oxygen plasma theme' - cd $srcdir/build/aurorae - make DESTDIR=$pkgdir install -} - package_kdeartwork-colorschemes() { pkgdesc='KDE color schemes' - replaces=('kdeaccessibility-colorschemes') + replaces=('kdeaccessibility-colorschemes') cd $srcdir/build/ColorSchemes make DESTDIR=$pkgdir install } @@ -62,7 +55,7 @@ package_kdeartwork-emoticons() { package_kdeartwork-iconthemes() { pkgdesc='KDE icon themes' - replaces=('kdeaccessibility-iconthemes') + replaces=('kdeaccessibility-iconthemes') cd $srcdir/build/IconThemes make DESTDIR=$pkgdir install } diff --git a/kde-unstable/kdebase-konsole/PKGBUILD b/kde-unstable/kdebase-konsole/PKGBUILD index a8c8be804..4e72d5cc8 100644 --- a/kde-unstable/kdebase-konsole/PKGBUILD +++ b/kde-unstable/kdebase-konsole/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163385 2012-07-11 22:19:58Z andrea $ +# $Id: PKGBUILD 171750 2012-11-21 18:42:48Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebase-konsole -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/konsole-${pkgver}.tar.xz") -sha1sums=('f644fbe162d1f852396898f11ae52765da356ecb') +sha1sums=('11ee54496d4a9f7d59f40a585710c5d104c5de81') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebase-workspace/PKGBUILD b/kde-unstable/kdebase-workspace/PKGBUILD index b4b4a6f3f..4f9c3c767 100644 --- a/kde-unstable/kdebase-workspace/PKGBUILD +++ b/kde-unstable/kdebase-workspace/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 163366 2012-07-11 22:03:30Z andrea $ +# $Id: PKGBUILD 171727 2012-11-21 18:23:25Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdebase-workspace _pkgname=kde-workspace -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Provides the interface and basic tools for the KDE workspace" arch=('i686' 'x86_64') @@ -15,38 +15,42 @@ groups=('kde') # not detected by namcap because libgl depends on it # but nvidia providing libgl does not depend on libxdamage depends=('kdepim-runtime' 'lm_sensors' 'libraw1394' 'libqalculate' - 'qimageblitz' 'polkit-kde' 'consolekit' 'xorg-xprop' 'libxdamage' + 'qimageblitz' 'polkit-kde' 'xorg-xprop' 'libxdamage' 'libxklavier' 'xorg-xsetroot' 'libxcomposite' 'libxinerama' 'xorg-xrdb' 'libgles' 'libegl' 'libxres' 'xorg-xrandr' - 'xorg-xmessage' 'libusb-compat' 'kde-base-artwork') -makedepends=('cmake' 'automoc4' 'boost' 'kdebindings-python2' 'networkmanager') + 'xorg-xmessage' 'libusb-compat' 'kde-base-artwork' + 'xcb-util-renderutil' 'xcb-util-image') +makedepends=('cmake' 'automoc4' 'boost' 'kdebindings-python2' 'networkmanager' 'mesa') optdepends=('kde-wallpapers: wallpapers for KDE Plasma Workspaces') install="${pkgname}.install" -backup=('usr/share/config/kdm/kdmrc' - 'etc/pam.d/kde' - 'etc/pam.d/kde-np' - 'etc/pam.d/kscreensaver') -options=('emptydirs') +backup=('usr/share/config/kdm/kdmrc') source=("http://download.kde.org/unstable/${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=('c02cab54df42b1452c183a1234405cfd6df18be7' + 'kdm' 'kde.pam' 'kde-np.pam' 'kscreensaver.pam' 'kdm.service' 'kdm.logrotate' + 'etc-scripts.patch' 'terminate-server.patch' 'kdm-xinitrd.patch') +sha1sums=('6144d8d136b481155d9fcbcb831a5a9b9c58d772' '5db3a245201bd4a50e65aa2ef583cf5490e4f646' - '712a90999bd429883dcef5dcaf288aace332ced8' - 'b321b5e613b60231330e606fdf1e124646148388' + '660eae40a707d2711d8d7f32a93214865506b795' + '6aeecc9e0e221f0515c6bf544f9a3c11cb6961fe' '106635aa1aae51d6f0668b1853f6c49a4fe9d3d8' 'b6f8e8692737b11eec1f8022ce74b5b23e247b1b' - 'd7b5883f7e65c6839b1f65f94d58026673dd0226' + 'bbe55f2000217474ce7246f12ee437ceaaf7e9ae' + 'c079ebd157c836ba996190f0d2bcea1a7828d02c' 'ac7bc292c865bc1ab8c02e6341aa7aeaf1a3eeee' 'd509dac592bd8b310df27991b208c95b6d907514') build() { - cd "${srcdir}"/${_pkgname}-${pkgver} + cd ${_pkgname}-${pkgver} + + # reads the shell scripts in /etc/kde/ + patch -p0 -i "${srcdir}"/etc-scripts.patch + # FS#26120 patch -p1 -i "${srcdir}"/kdm-xinitrd.patch - patch -p0 -i "${srcdir}"/fixpath.patch + + # KDEBUG#202629 patch -p0 -i "${srcdir}"/terminate-server.patch - - cd "${srcdir}" + + cd ../ + mkdir build cd build cmake ../${_pkgname}-${pkgver} \ @@ -56,12 +60,13 @@ build() { -DWITH_Xmms=OFF \ -DWITH_Googlegadgets=OFF \ -DWITH_libgps=OFF \ - -DPYTHON_EXECUTABLE=/usr/bin/python2 + -DPYTHON_EXECUTABLE=/usr/bin/python2 \ + -DWITH_CkConnector=OFF make } package() { - cd "${srcdir}"/build + cd build make DESTDIR="${pkgdir}" install install -D -m644 "${srcdir}"/kde.pam "${pkgdir}"/etc/pam.d/kde @@ -77,4 +82,5 @@ package() { install -D -m755 "${srcdir}"/kdm "${pkgdir}"/etc/rc.d/kdm install -D -m644 "${srcdir}"/kdm.service \ "${pkgdir}"/usr/lib/systemd/system/kdm.service + install -Dm644 "${srcdir}"/kdm.logrotate "${pkgdir}"/etc/logrotate.d/kdm } diff --git a/kde-unstable/kdebase-workspace/etc-scripts.patch b/kde-unstable/kdebase-workspace/etc-scripts.patch new file mode 100644 index 000000000..903a90a53 --- /dev/null +++ b/kde-unstable/kdebase-workspace/etc-scripts.patch @@ -0,0 +1,11 @@ +--- startkde.cmake.orig 2009-01-15 14:24:44.000000000 +0100 ++++ startkde.cmake 2009-01-15 14:33:08.000000000 +0100 +@@ -206,7 +190,7 @@ + # For anything else (that doesn't set env vars, or that needs a window manager), + # better use the Autostart folder. + +-libpath=`kde4-config --path lib | tr : '\n'` ++libpath=`kde4-config --path lib | tr : '\n'`$(echo -e '\n/etc/kde/lib/') + + for prefix in `echo "$libpath" | sed -n -e 's,/lib[^/]*/,/env/,p'`; do + for file in "$prefix"*.sh; do diff --git a/kde-unstable/kdebase-workspace/kde-np.pam b/kde-unstable/kdebase-workspace/kde-np.pam index 7d60cc35c..2a4a940c7 100644 --- a/kde-unstable/kdebase-workspace/kde-np.pam +++ b/kde-unstable/kdebase-workspace/kde-np.pam @@ -1,9 +1,12 @@ #%PAM-1.0 -auth required pam_nologin.so -auth required pam_permit.so -auth required pam_env.so -account required pam_unix.so -password required pam_unix.so -session required pam_unix.so -session required pam_limits.so --session optional pam_systemd.so +auth required pam_tally.so onerr=succeed file=/var/log/faillog +auth required pam_shells.so +auth requisite pam_nologin.so +auth required pam_env.so +auth optional pam_permit.so + +account include system-login + +password include system-login + +session include system-login diff --git a/kde-unstable/kdebase-workspace/kde.pam b/kde-unstable/kdebase-workspace/kde.pam index ec1d8277f..a0a29483d 100644 --- a/kde-unstable/kdebase-workspace/kde.pam +++ b/kde-unstable/kdebase-workspace/kde.pam @@ -1,9 +1,8 @@ #%PAM-1.0 -auth required pam_unix.so -auth required pam_nologin.so -auth required pam_env.so -account required pam_unix.so -password required pam_unix.so -session required pam_unix.so -session required pam_limits.so --session optional pam_systemd.so +auth include system-login + +account include system-login + +password include system-login + +session include system-login diff --git a/kde-unstable/kdebase-workspace/kdebase-workspace.install b/kde-unstable/kdebase-workspace/kdebase-workspace.install index f7d6d305b..c52c06417 100644 --- a/kde-unstable/kdebase-workspace/kdebase-workspace.install +++ b/kde-unstable/kdebase-workspace/kdebase-workspace.install @@ -4,6 +4,7 @@ post_install() { chown -R 135:135 var/lib/kdm &>/dev/null xdg-icon-resource forceupdate --theme hicolor &>/dev/null update-desktop-database -q + genkdmconf --no-old --no-backup &>/dev/null } post_upgrade() { @@ -12,6 +13,7 @@ post_upgrade() { chown -R 135:135 var/lib/kdm &>/dev/null xdg-icon-resource forceupdate --theme hicolor &> /dev/null update-desktop-database -q + genkdmconf &>/dev/null } post_remove() { @@ -22,4 +24,8 @@ post_remove() { groupdel kdm fi xdg-icon-resource forceupdate --theme hicolor &> /dev/null + + if [ -d usr/share/apps/kdm/faces ]; then + rm -r usr/share/apps/kdm/faces + fi } diff --git a/kde-unstable/kdebase-workspace/kdm.logrotate b/kde-unstable/kdebase-workspace/kdm.logrotate new file mode 100644 index 000000000..34331feae --- /dev/null +++ b/kde-unstable/kdebase-workspace/kdm.logrotate @@ -0,0 +1,6 @@ +/var/log/kdm.log { + maxage 365 + size=+1024k + notifempty + missingok +} diff --git a/kde-unstable/kdebase/PKGBUILD b/kde-unstable/kdebase/PKGBUILD index 8e937bfab..d0185e74d 100644 --- a/kde-unstable/kdebase/PKGBUILD +++ b/kde-unstable/kdebase/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 163367 2012-07-11 22:05:12Z andrea $ +# $Id: PKGBUILD 171728 2012-11-21 18:25:15Z 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.8.97 +pkgver=4.9.80 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -20,7 +20,7 @@ license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdebase') makedepends=('kdelibs' 'cmake' 'automoc4' 'tidyhtml') source=("http://download.kde.org/unstable/${pkgver}/src/kde-baseapps-${pkgver}.tar.xz") -sha1sums=('acaff6f33648b3c39d9af402d24c9197e8b179e4') +sha1sums=('9cde28381d72f86aa4d975e48e545026bc0c6d0a') build() { cd ${srcdir} diff --git a/kde-unstable/kdebindings-kimono/PKGBUILD b/kde-unstable/kdebindings-kimono/PKGBUILD index 2f27cf6c8..022161204 100644 --- a/kde-unstable/kdebindings-kimono/PKGBUILD +++ b/kde-unstable/kdebindings-kimono/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163386 2012-07-11 22:20:40Z andrea $ +# $Id: PKGBUILD 171751 2012-11-21 18:43:26Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-kimono -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc=".NET/Mono bindings for the KDE libraries" url="https://projects.kde.org/projects/kde/kdebindings/csharp/kimono" @@ -11,9 +11,10 @@ license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') depends=('kdebindings-qyoto' 'kdebindings-smokekde') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost' 'kdepimlibs') +optdepends=('kdepimlibs: akonadi bindings') conflicts=('kdebindings-csharp') source=("http://download.kde.org/unstable/${pkgver}/src/kimono-${pkgver}.tar.xz") -sha1sums=('e2f5d0a97364fc74844bfb5c443008502f82b9d0') +sha1sums=('75263f0b3cba2fe1acc1d668cd7f03a4d4f07dc0') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebindings-korundum/PKGBUILD b/kde-unstable/kdebindings-korundum/PKGBUILD index 20167d978..1872ad76c 100644 --- a/kde-unstable/kdebindings-korundum/PKGBUILD +++ b/kde-unstable/kdebindings-korundum/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163387 2012-07-11 22:21:19Z andrea $ +# $Id: PKGBUILD 171752 2012-11-21 18:44:02Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-korundum -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Ruby bindings for libraries created by the KDE community" url="https://projects.kde.org/projects/kde/kdebindings/ruby/korundum" @@ -12,12 +12,13 @@ groups=('kdebindings') depends=('kdebindings-qtruby' 'kdebindings-smokekde') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost' 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate') +optdepends=('kdegraphics-okular: okular bindings' + 'kdepimlibs: akonadi bindings') conflicts=('kdebindings-ruby') -options=('!makeflags') source=("http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.xz" 'ruby19.patch') -sha1sums=('432655321eefb8b3635c03c55e02175163340131' - '73299f56a891d8a5475ac07dd485619859312f70') +sha1sums=('e16ed8f538fc1208c2b29c1704da186fe3d97e8c' + 'c074f027bac3b9bffe70a2c2304a6a7be12be034') build() { cd "${srcdir}/korundum-${pkgver}" diff --git a/kde-unstable/kdebindings-korundum/ruby19.patch b/kde-unstable/kdebindings-korundum/ruby19.patch index ac4d32ae9..c2468d9ce 100644 --- a/kde-unstable/kdebindings-korundum/ruby19.patch +++ b/kde-unstable/kdebindings-korundum/ruby19.patch @@ -1,30 +1,30 @@ -diff -up korundum-4.8.0/src/krubypluginfactory.cpp.ruby19 korundum-4.8.0/src/krubypluginfactory.cpp ---- korundum-4.8.0/src/krubypluginfactory.cpp.ruby19 2011-07-27 13:37:29.000000000 -0500 -+++ korundum-4.8.0/src/krubypluginfactory.cpp 2012-02-17 08:30:38.785635819 -0600 -@@ -39,7 +39,7 @@ +--- korundum-4.9.0/src/krubypluginfactory.cpp~ 2012-07-27 10:44:19.544464612 +0000 ++++ korundum-4.9.0/src/krubypluginfactory.cpp 2012-07-27 10:53:15.247374749 +0000 +@@ -39,7 +39,6 @@ extern "C" { extern VALUE rb_load_path; extern VALUE qt_internal_module; -void Init_prelude(void); -+// void Init_prelude(void); } // -@@ -165,7 +165,7 @@ QObject *KRubyPluginFactory::create(cons +@@ -165,7 +164,8 @@ #if RUBY_VERSION >= 0x10900 VALUE gem = rb_define_module("Gem"); rb_const_set(gem, rb_intern("Enable"), Qtrue); - Init_prelude(); -+// Init_prelude(); ++ char *opts[] = { "ruby", "-e;" }; ++ ruby_options(2, opts); #endif ruby_incpush(QFile::encodeName(program.path())); -@@ -342,7 +342,7 @@ int kdemain(int argc, char **argv) +@@ -342,7 +342,8 @@ #if RUBY_VERSION >= 0x10900 VALUE gem = rb_define_module("Gem"); rb_const_set(gem, rb_intern("Enable"), Qtrue); - Init_prelude(); -+// Init_prelude(); ++ char *opts[] = { "ruby", "-e;" }; ++ ruby_options(2, opts); #endif ruby_incpush(QFile::encodeName(program.path())); diff --git a/kde-unstable/kdebindings-kross/PKGBUILD b/kde-unstable/kdebindings-kross/PKGBUILD index 534231c19..b784d749b 100644 --- a/kde-unstable/kdebindings-kross/PKGBUILD +++ b/kde-unstable/kdebindings-kross/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 163388 2012-07-11 22:21:58Z andrea $ +# $Id: PKGBUILD 171753 2012-11-21 18:44:36Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgbase=kdebindings-kross pkgname=('kdebindings-kross-python' # 'kdebindings-kross-ruby' 'kdebindings-kross-java') -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/kross-interpreters-${pkgver}.tar.xz") -sha1sums=('ab041689b0e1386997f5dc062eb791c17ed5987b') +sha1sums=('236973dde05ba0ad139b54bcf619f2e99e815dbb') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebindings-perlkde/PKGBUILD b/kde-unstable/kdebindings-perlkde/PKGBUILD index cb985645e..3b9edd6fc 100644 --- a/kde-unstable/kdebindings-perlkde/PKGBUILD +++ b/kde-unstable/kdebindings-perlkde/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163389 2012-07-11 22:22:32Z andrea $ +# $Id: PKGBUILD 171754 2012-11-21 18:45:14Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-perlkde -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/perlkde-${pkgver}.tar.xz") -sha1sums=('e0577df7a98bb4c7e7c3be3cb124ff1553a76f85') +sha1sums=('cfa442fcdce76523d7d978cfe9459c6385ead228') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebindings-perlqt/PKGBUILD b/kde-unstable/kdebindings-perlqt/PKGBUILD index 86d5ca06d..a0a9580aa 100644 --- a/kde-unstable/kdebindings-perlqt/PKGBUILD +++ b/kde-unstable/kdebindings-perlqt/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163361 2012-07-11 21:59:30Z andrea $ +# $Id: PKGBUILD 171723 2012-11-21 18:15:48Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-perlqt -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/perlqt-${pkgver}.tar.xz") -sha1sums=('387afb6746d55fa4d63ee5885e91cd12b6161f5e') +sha1sums=('8e4e5c677a1cbca607681f99bb0433ef92538010') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebindings-python/PKGBUILD b/kde-unstable/kdebindings-python/PKGBUILD index a809c8ea5..ff4ad9597 100644 --- a/kde-unstable/kdebindings-python/PKGBUILD +++ b/kde-unstable/kdebindings-python/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 163362 2012-07-11 22:00:05Z andrea $ +# $Id: PKGBUILD 171720 2012-11-21 18:13:07Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgbase=kdebindings-python pkgname=('kdebindings-python' 'kdebindings-python2') -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 url='https://projects.kde.org/projects/kde/kdebindings/pykde4' arch=('i686' 'x86_64') @@ -13,19 +13,18 @@ groups=('kdebindings') makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 'pyqt' 'qscintilla' 'python2-sip' 'python-sip') source=("http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz") -sha1sums=('734f97218bb867bd36ac9d25bac89c5d8b0b60cd') +sha1sums=('e2b3ac142195a1aa31b6cca5463803665675d97d') build() { export PYTHONDONTWRITEBYTECODE="TRUE" - cd "${srcdir}" mkdir build cd build cmake ../pykde4-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ - -DPYTHON_EXECUTABLE=/usr/bin/python \ - -DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0 + -DPYTHON_EXECUTABLE=/usr/bin/python3 \ + -DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 make cd .. diff --git a/kde-unstable/kdebindings-qtruby/PKGBUILD b/kde-unstable/kdebindings-qtruby/PKGBUILD index c4924890d..67c28abfb 100644 --- a/kde-unstable/kdebindings-qtruby/PKGBUILD +++ b/kde-unstable/kdebindings-qtruby/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163364 2012-07-11 22:01:31Z andrea $ +# $Id: PKGBUILD 171725 2012-11-21 18:17:05Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-qtruby -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/qtruby-${pkgver}.tar.xz") -sha1sums=('9b553519fcc65348d2c2c87bb36fb2c74490f058') +sha1sums=('02f2e194105c5e3fbc4181d0969c0c59a76f241b') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebindings-qyoto/PKGBUILD b/kde-unstable/kdebindings-qyoto/PKGBUILD index 97a252a9d..143c2d50b 100644 --- a/kde-unstable/kdebindings-qyoto/PKGBUILD +++ b/kde-unstable/kdebindings-qyoto/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163363 2012-07-11 22:00:57Z andrea $ +# $Id: PKGBUILD 171724 2012-11-21 18:16:27Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-qyoto -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc=".NET/Mono bindings for the Qt libraries" url="https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto" @@ -13,10 +13,9 @@ depends=('kdebindings-smokeqt' 'mono') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen') conflicts=('kdebindings-csharp') source=("http://download.kde.org/unstable/${pkgver}/src/qyoto-${pkgver}.tar.xz") -sha1sums=('6c5699a81e5ed76a808e4ca08844cfa49e92df7f') +sha1sums=('4b8e3927487c9c67f59e21422274d17e2c2a3dc6') build() { - cd "${srcdir}" mkdir build cd build cmake ../qyoto-${pkgver} \ @@ -26,6 +25,6 @@ build() { } package() { - cd "${srcdir}"/build + cd build make DESTDIR="${pkgdir}" install } diff --git a/kde-unstable/kdebindings-smokegen/PKGBUILD b/kde-unstable/kdebindings-smokegen/PKGBUILD index 7bb8876a2..60a731eb2 100644 --- a/kde-unstable/kdebindings-smokegen/PKGBUILD +++ b/kde-unstable/kdebindings-smokegen/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163356 2012-07-11 21:56:14Z andrea $ +# $Id: PKGBUILD 171717 2012-11-21 18:11:14Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokegen -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/smokegen-${pkgver}.tar.xz") -sha1sums=('8348e0f3b7bb5acbb6646e6c08dbdf5d17fa32dc') +sha1sums=('d02f7496caa82457f4d620939c80979b90f8249f') build() { cd "${srcdir}" diff --git a/kde-unstable/kdebindings-smokekde/PKGBUILD b/kde-unstable/kdebindings-smokekde/PKGBUILD index f371c0128..c65f2d4b7 100644 --- a/kde-unstable/kdebindings-smokekde/PKGBUILD +++ b/kde-unstable/kdebindings-smokekde/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163360 2012-07-11 21:58:54Z andrea $ +# $Id: PKGBUILD 171722 2012-11-21 18:15:05Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokekde -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Language independent library for KDE bindings" url="https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde" @@ -11,15 +11,16 @@ license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') depends=('kdebindings-smokeqt') makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost' - 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate') + 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate' + 'mesa') optdepends=('kdesdk-kate: Kate bindings' - 'kdegraphics-okular: Okular bindings') + 'kdegraphics-okular: Okular bindings' + 'kdepimlibs: akonadi bindings') conflicts=('kdebindings-smoke') source=("http://download.kde.org/unstable/${pkgver}/src/smokekde-${pkgver}.tar.xz") -sha1sums=('04961b5a81728393995bc40e31a777012774078f') +sha1sums=('42138a1b2778f4d34c047883768803824ec62bc4') build() { - cd "${srcdir}" mkdir build cd build cmake ../smokekde-${pkgver} \ diff --git a/kde-unstable/kdebindings-smokeqt/PKGBUILD b/kde-unstable/kdebindings-smokeqt/PKGBUILD index 10493000d..3b281741e 100644 --- a/kde-unstable/kdebindings-smokeqt/PKGBUILD +++ b/kde-unstable/kdebindings-smokeqt/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163357 2012-07-11 21:56:46Z andrea $ +# $Id: PKGBUILD 171718 2012-11-21 18:11:51Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdebindings-smokeqt -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Language independent library for Qt bindings" url="https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt" @@ -10,10 +10,10 @@ arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') depends=('kdebindings-smokegen' 'qimageblitz' 'qscintilla') -makedepends=('cmake' 'automoc4') +makedepends=('cmake' 'automoc4' 'mesa') conflicts=('kdebindings-smoke') source=("http://download.kde.org/unstable/${pkgver}/src/smokeqt-${pkgver}.tar.xz") -sha1sums=('bec234f07c2f2c126bc73b163fc5f4052954d228') +sha1sums=('10311b9dc028aed75d2707a5a5d22f91a14de8c8') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-analitza/PKGBUILD b/kde-unstable/kdeedu-analitza/PKGBUILD index dd3411c3d..bd01ad97b 100644 --- a/kde-unstable/kdeedu-analitza/PKGBUILD +++ b/kde-unstable/kdeedu-analitza/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163374 2012-07-11 22:09:42Z andrea $ +# $Id: PKGBUILD 171737 2012-11-21 18:29:58Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-analitza -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/analitza-${pkgver}.tar.xz") -sha1sums=('8a91b68ed179c0f36c40aaddb54fa5b90bd6684f') +sha1sums=('9b2e7dc9c6eab7b49e28540d63dc3d3531999d2e') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-blinken/PKGBUILD b/kde-unstable/kdeedu-blinken/PKGBUILD index 9b74693f3..afadce2df 100644 --- a/kde-unstable/kdeedu-blinken/PKGBUILD +++ b/kde-unstable/kdeedu-blinken/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163390 2012-07-11 22:23:02Z andrea $ +# $Id: PKGBUILD 171755 2012-11-21 18:45:45Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-blinken -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Memory Enhancement Game" url="http://kde.org/applications/education/blinken/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/blinken-${pkgver}.tar.xz") -sha1sums=('e7af7ad460cf160590c0401b865c49042bfd1bf8') +sha1sums=('c80dcd05980eae7927ceb1d227f2772b0897b40b') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-cantor/PKGBUILD b/kde-unstable/kdeedu-cantor/PKGBUILD index 1765eb4f9..38e013443 100644 --- a/kde-unstable/kdeedu-cantor/PKGBUILD +++ b/kde-unstable/kdeedu-cantor/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163391 2012-07-11 22:23:40Z andrea $ +# $Id: PKGBUILD 171756 2012-11-21 18:46:19Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-cantor -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="KDE Frontend to Mathematical Software" url="http://kde.org/applications/education/cantor/" @@ -16,7 +16,7 @@ optdepends=('maxima: Maxima backend' 'r: R backend') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/cantor-${pkgver}.tar.xz") -sha1sums=('8e5ef8d42a71c3e7f8cbeae69de707e3580cb40c') +sha1sums=('5bd9d025f83baa2425cf8d722edfd18a6630796d') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kalgebra/PKGBUILD b/kde-unstable/kdeedu-kalgebra/PKGBUILD index 747b155fe..2d51e8697 100644 --- a/kde-unstable/kdeedu-kalgebra/PKGBUILD +++ b/kde-unstable/kdeedu-kalgebra/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163392 2012-07-11 22:24:15Z andrea $ +# $Id: PKGBUILD 171757 2012-11-21 18:46:53Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kalgebra -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Graph Calculator" url="http://kde.org/applications/education/kalgebra/" @@ -10,10 +10,10 @@ arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'libkdeedu' 'kdeedu-analitza') -makedepends=('cmake' 'automoc4') +makedepends=('cmake' 'automoc4' 'mesa') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kalgebra-${pkgver}.tar.xz") -sha1sums=('af8f692dcc58992e464acf39882eb069b615f1df') +sha1sums=('96817a31f5af00bebc138f9ad84adbadb3850608') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kalzium/PKGBUILD b/kde-unstable/kdeedu-kalzium/PKGBUILD index f7aae5983..2591f8f50 100644 --- a/kde-unstable/kdeedu-kalzium/PKGBUILD +++ b/kde-unstable/kdeedu-kalzium/PKGBUILD @@ -1,22 +1,21 @@ -# $Id: PKGBUILD 163393 2012-07-11 22:24:51Z andrea $ +# $Id: PKGBUILD 171758 2012-11-21 18:47:29Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kalzium -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Periodic Table of Elements" url="http://kde.org/applications/education/kalzium/" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') -depends=('kdelibs' 'avogadro' 'ocaml' 'facile') +depends=('kdebase-runtime' 'avogadro' 'ocaml' 'facile' 'chemical-mime-data') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kalzium-${pkgver}.tar.xz") -sha1sums=('c8e8989eb4bbf943d1183a55a45df074d5b68f17') +sha1sums=('2902940de1dc5d33b846aeb82064d51adc286da4') build() { - cd "${srcdir}" mkdir build cd build cmake ../kalzium-${pkgver} \ @@ -26,6 +25,6 @@ build() { } package() { - cd "${srcdir}"/build + cd build make DESTDIR="${pkgdir}" install } diff --git a/kde-unstable/kdeedu-kalzium/kdeedu-kalzium.install b/kde-unstable/kdeedu-kalzium/kdeedu-kalzium.install index e70c054ec..81ce5c4b0 100644 --- a/kde-unstable/kdeedu-kalzium/kdeedu-kalzium.install +++ b/kde-unstable/kdeedu-kalzium/kdeedu-kalzium.install @@ -1,5 +1,6 @@ post_install() { xdg-icon-resource forceupdate --theme hicolor &> /dev/null + update-desktop-database -q } post_upgrade() { diff --git a/kde-unstable/kdeedu-kanagram/PKGBUILD b/kde-unstable/kdeedu-kanagram/PKGBUILD index 79f9ab144..a197061b8 100644 --- a/kde-unstable/kdeedu-kanagram/PKGBUILD +++ b/kde-unstable/kdeedu-kanagram/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163394 2012-07-11 22:25:36Z andrea $ +# $Id: PKGBUILD 171759 2012-11-21 18:48:14Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kanagram -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Letter Order Game" url="http://kde.org/applications/education/kanagram/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdeedu') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kanagram-${pkgver}.tar.xz") -sha1sums=('4ae7de38749d23cb8aebbd351d0205ecd0315045') +sha1sums=('1c19a72b7639a36f20ef5c00cc03a35c84f5bb69') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kbruch/PKGBUILD b/kde-unstable/kdeedu-kbruch/PKGBUILD index 0545776cf..03feaba94 100644 --- a/kde-unstable/kdeedu-kbruch/PKGBUILD +++ b/kde-unstable/kdeedu-kbruch/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163395 2012-07-11 22:26:07Z andrea $ +# $Id: PKGBUILD 171760 2012-11-21 18:48:51Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kbruch -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Exercise Fractions" url="http://kde.org/applications/education/kbruch/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kbruch-${pkgver}.tar.xz") -sha1sums=('4970be77ae5a9d059f5bf6aa94dbc120cf2312a5') +sha1sums=('0531fdbf4bb401b7c28593a920a42c32687a3bb9') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kgeography/PKGBUILD b/kde-unstable/kdeedu-kgeography/PKGBUILD index 3439d6ff4..0d6ee2203 100644 --- a/kde-unstable/kdeedu-kgeography/PKGBUILD +++ b/kde-unstable/kdeedu-kgeography/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163396 2012-07-11 22:26:40Z andrea $ +# $Id: PKGBUILD 171761 2012-11-21 18:49:29Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kgeography -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Geography Trainer" url="http://kde.org/applications/education/kgeography/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kgeography-${pkgver}.tar.xz") -sha1sums=('77042de18753c2663de65e224337a91591a4b98e') +sha1sums=('b6f55e05c8ed67631eac9e23d3638f61a2264388') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-khangman/PKGBUILD b/kde-unstable/kdeedu-khangman/PKGBUILD index 677f5660f..7c6360d12 100644 --- a/kde-unstable/kdeedu-khangman/PKGBUILD +++ b/kde-unstable/kdeedu-khangman/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163398 2012-07-11 22:27:25Z andrea $ +# $Id: PKGBUILD 171762 2012-11-21 18:50:19Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-khangman -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Hangman Game" url="http://kde.org/applications/education/khangman/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdeedu') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/khangman-${pkgver}.tar.xz") -sha1sums=('e242517e4f57e24086161cb1d4428b9852cbe8d6') +sha1sums=('fcbed31b1fba92f82f5e1118ff054103c6b76216') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kig/PKGBUILD b/kde-unstable/kdeedu-kig/PKGBUILD index f3ad55517..9bd55fba0 100644 --- a/kde-unstable/kdeedu-kig/PKGBUILD +++ b/kde-unstable/kdeedu-kig/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 163585 2012-07-16 07:13:41Z andrea $ +# $Id: PKGBUILD 171763 2012-11-21 18:50:57Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kig -pkgver=4.8.97 -pkgrel=2 +pkgver=4.9.80 +pkgrel=1 pkgdesc="Interactive Geometry" url="http://kde.org/applications/education/kig/" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kig-${pkgver}.tar.xz") -sha1sums=('c365608497df374d7ea0f31271cead02ffe2de89') +sha1sums=('4bf3c256adab6a6afdc2e10d5fa59df8c745fd7f') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kiten/PKGBUILD b/kde-unstable/kdeedu-kiten/PKGBUILD index 9e253581d..393fdb73e 100644 --- a/kde-unstable/kdeedu-kiten/PKGBUILD +++ b/kde-unstable/kdeedu-kiten/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163400 2012-07-11 22:28:35Z andrea $ +# $Id: PKGBUILD 171764 2012-11-21 18:51:35Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kiten -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Japanese Reference/Study Tool" url="http://kde.org/applications/education/kiten/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kiten-${pkgver}.tar.xz") -sha1sums=('2b7061fd8f8c88acb6c0a9e05a514083165418e1') +sha1sums=('d4a3023afcc44191585d36471d7fed931af6b339') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-klettres/PKGBUILD b/kde-unstable/kdeedu-klettres/PKGBUILD index fd8a23026..45e18c9a8 100644 --- a/kde-unstable/kdeedu-klettres/PKGBUILD +++ b/kde-unstable/kdeedu-klettres/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163401 2012-07-11 22:29:34Z andrea $ +# $Id: PKGBUILD 171765 2012-11-21 18:52:39Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-klettres -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Learn The Alphabet" url="http://kde.org/applications/education/klettres/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/klettres-${pkgver}.tar.xz") -sha1sums=('d2af187dde78d992e55d0bc9bab31e9fee9bc300') +sha1sums=('9d888105518aed6843b2a260b4ae7495ca54471e') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kmplot/PKGBUILD b/kde-unstable/kdeedu-kmplot/PKGBUILD index 3b3af3eee..a993a4a54 100644 --- a/kde-unstable/kdeedu-kmplot/PKGBUILD +++ b/kde-unstable/kdeedu-kmplot/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163402 2012-07-11 22:30:13Z andrea $ +# $Id: PKGBUILD 171767 2012-11-21 18:53:23Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kmplot -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Mathematical Function Plotter" url="http://kde.org/applications/education/kmplot/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kmplot-${pkgver}.tar.xz") -sha1sums=('a13fcad49de1fb6583d86aa4d17d2330112f0c22') +sha1sums=('64af9b098973e1e84e3cff4d31f8e5047039dbd6') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kstars/PKGBUILD b/kde-unstable/kdeedu-kstars/PKGBUILD index 9a6a79619..c9a1dff27 100644 --- a/kde-unstable/kdeedu-kstars/PKGBUILD +++ b/kde-unstable/kdeedu-kstars/PKGBUILD @@ -1,22 +1,21 @@ -# $Id: PKGBUILD 163403 2012-07-11 22:30:45Z andrea $ +# $Id: PKGBUILD 171872 2012-11-21 22:01:52Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kstars -pkgver=4.8.97 -pkgrel=1 +pkgver=4.9.80 +pkgrel=3 pkgdesc="Desktop Planetarium" url="http://kde.org/applications/education/kstars/" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') -depends=('kdebase-runtime' 'libindi') -makedepends=('cmake' 'automoc4' 'eigen') +depends=('kdebase-runtime' 'wcslib' 'libindi') +makedepends=('cmake' 'automoc4' 'eigen' 'mesa') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kstars-${pkgver}.tar.xz") -sha1sums=('faf9b9701dadb2cd2458757c5f03861752eaadb5') +sha1sums=('792b0f991512fd372e9492b008540c6357059bb3') build() { - cd "${srcdir}" mkdir build cd build cmake ../kstars-${pkgver} \ @@ -27,6 +26,6 @@ build() { } package() { - cd "${srcdir}"/build + cd build make DESTDIR="${pkgdir}" install } diff --git a/kde-unstable/kdeedu-ktouch/PKGBUILD b/kde-unstable/kdeedu-ktouch/PKGBUILD index 968a99a6d..5db86131f 100644 --- a/kde-unstable/kdeedu-ktouch/PKGBUILD +++ b/kde-unstable/kdeedu-ktouch/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163404 2012-07-11 22:31:45Z andrea $ +# $Id: PKGBUILD 171770 2012-11-21 19:10:47Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-ktouch -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Touch Typing Tutor" url="http://kde.org/applications/education/ktouch/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/ktouch-${pkgver}.tar.xz") -sha1sums=('fa545d6159f41e699b56f7a75afb980a781f169a') +sha1sums=('9bbf7d9c68ec28e81ed6cde4710be794f1124a1f') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kturtle/PKGBUILD b/kde-unstable/kdeedu-kturtle/PKGBUILD index 00a7ce616..fb4d32ac6 100644 --- a/kde-unstable/kdeedu-kturtle/PKGBUILD +++ b/kde-unstable/kdeedu-kturtle/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163405 2012-07-11 22:32:24Z andrea $ +# $Id: PKGBUILD 171771 2012-11-21 19:11:31Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kturtle -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Educational Programming Environment" url="http://kde.org/applications/education/kturtle/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kturtle-${pkgver}.tar.xz") -sha1sums=('59b192b9fd31568d63d6192c038530fe009f303f') +sha1sums=('87b537edebc1733b994711d263a9f61acabad035') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-kwordquiz/PKGBUILD b/kde-unstable/kdeedu-kwordquiz/PKGBUILD index 3af343adc..b525760d6 100644 --- a/kde-unstable/kdeedu-kwordquiz/PKGBUILD +++ b/kde-unstable/kdeedu-kwordquiz/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163406 2012-07-11 22:32:59Z andrea $ +# $Id: PKGBUILD 171772 2012-11-21 19:12:09Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-kwordquiz -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Flash Card Trainer" url="http://kde.org/applications/education/kwordquiz/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdeedu') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kwordquiz-${pkgver}.tar.xz") -sha1sums=('659448fd9ad9bd22aed74e42a297e62346d94d38') +sha1sums=('9c6638006cf18466ca262c956afd7e36662ddb8b') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-marble/PKGBUILD b/kde-unstable/kdeedu-marble/PKGBUILD index 5309a7f26..f72577df8 100644 --- a/kde-unstable/kdeedu-marble/PKGBUILD +++ b/kde-unstable/kdeedu-marble/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163369 2012-07-11 22:06:26Z andrea $ +# $Id: PKGBUILD 171731 2012-11-21 18:26:40Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-marble -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Desktop Globe" url="http://kde.org/applications/education/marble/" @@ -14,7 +14,7 @@ makedepends=('cmake' 'automoc4' 'gpsd') optdepends=('gpsd: gps support') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz") -sha1sums=('218cb42ccb8946ee1bb8f35b770e0f8b7c9b5ebb') +sha1sums=('449f3e87b5d111e36730ebaf321f5081dded028d') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-marble/kdeedu-marble.install b/kde-unstable/kdeedu-marble/kdeedu-marble.install index 81ce5c4b0..117b47128 100644 --- a/kde-unstable/kdeedu-marble/kdeedu-marble.install +++ b/kde-unstable/kdeedu-marble/kdeedu-marble.install @@ -1,6 +1,7 @@ post_install() { xdg-icon-resource forceupdate --theme hicolor &> /dev/null update-desktop-database -q + update-mime-database usr/share/mime &> /dev/null } post_upgrade() { diff --git a/kde-unstable/kdeedu-pairs/PKGBUILD b/kde-unstable/kdeedu-pairs/PKGBUILD index 3939aa675..837281cd4 100644 --- a/kde-unstable/kdeedu-pairs/PKGBUILD +++ b/kde-unstable/kdeedu-pairs/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163407 2012-07-11 22:33:37Z andrea $ +# $Id: PKGBUILD 171773 2012-11-21 19:12:51Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-pairs -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/pairs-${pkgver}.tar.xz") -sha1sums=('2247f515a1392507d7cf65e2f78ad002972b1e09') +sha1sums=('fae86e3a2e3990d82c59d3d36852d13e2277caea') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-parley/PKGBUILD b/kde-unstable/kdeedu-parley/PKGBUILD index 645948c6c..38a09c291 100644 --- a/kde-unstable/kdeedu-parley/PKGBUILD +++ b/kde-unstable/kdeedu-parley/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163408 2012-07-11 22:34:14Z andrea $ +# $Id: PKGBUILD 171774 2012-11-21 19:13:38Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-parley -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Vocabulary Trainer" url="http://kde.org/applications/education/parley/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'libkdeedu') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/parley-${pkgver}.tar.xz") -sha1sums=('f8486ed259820621926c66b93dfd0d288b0dd05e') +sha1sums=('cc99fe01b84b36452a45c02c86bea6ae99342d43') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-rocs/PKGBUILD b/kde-unstable/kdeedu-rocs/PKGBUILD index 86090e369..0df3d29a6 100644 --- a/kde-unstable/kdeedu-rocs/PKGBUILD +++ b/kde-unstable/kdeedu-rocs/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 163587 2012-07-16 07:16:26Z andrea $ +# $Id: PKGBUILD 171775 2012-11-21 19:14:28Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-rocs -pkgver=4.8.97 -pkgrel=2 +pkgver=4.9.80 +pkgrel=1 pkgdesc="Rocs Graph Theory" url="http://kde.org/applications/education/rocs/" arch=('i686' 'x86_64') @@ -11,9 +11,9 @@ license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4' 'boost') +install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/rocs-${pkgver}.tar.xz") -sha1sums=('15daf5a0becd09f2de96e74753a632de905c09e7') -options=('!makeflags') +sha1sums=('a3feecc05b8408ccfa1d101554a8916b5700649f') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeedu-rocs/kdeedu-rocs.install b/kde-unstable/kdeedu-rocs/kdeedu-rocs.install new file mode 100644 index 000000000..88ac37896 --- /dev/null +++ b/kde-unstable/kdeedu-rocs/kdeedu-rocs.install @@ -0,0 +1,11 @@ +post_install() { + update-desktop-database -q +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdeedu-step/PKGBUILD b/kde-unstable/kdeedu-step/PKGBUILD index 6d5b6157e..8cb730a8b 100644 --- a/kde-unstable/kdeedu-step/PKGBUILD +++ b/kde-unstable/kdeedu-step/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163410 2012-07-11 22:35:31Z andrea $ +# $Id: PKGBUILD 171776 2012-11-21 19:15:08Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeedu-step -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Interactive Physical Simulator" url="http://kde.org/applications/education/step/" @@ -10,10 +10,10 @@ arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'libqalculate' 'gsl') -makedepends=('cmake' 'automoc4' 'eigen') +makedepends=('cmake' 'automoc4' 'eigen' 'mesa') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/step-${pkgver}.tar.xz") -sha1sums=('444eebae0e493fe1bea39530e432365fbd8f231c') +sha1sums=('c331946fc2a459a9f8235cfdb6e3d42b5dcd6920') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegames-bomber/PKGBUILD b/kde-unstable/kdegames-bomber/PKGBUILD new file mode 100644 index 000000000..68832916d --- /dev/null +++ b/kde-unstable/kdegames-bomber/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171777 2012-11-21 19:15:52Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-bomber +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A single player arcade game" +url="http://kde.org/applications/games/bomber/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/bomber-${pkgver}.tar.xz") +sha1sums=('d3e1154bca1246fc91b46f30c3534cfc678a9c28') + +build() { + mkdir build + cd build + cmake ../bomber-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-bomber/kdegames-bomber.install b/kde-unstable/kdegames-bomber/kdegames-bomber.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-bomber/kdegames-bomber.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-bovo/PKGBUILD b/kde-unstable/kdegames-bovo/PKGBUILD new file mode 100644 index 000000000..65c9062e9 --- /dev/null +++ b/kde-unstable/kdegames-bovo/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171779 2012-11-21 19:16:31Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-bovo +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A Gomoku like game for two players" +url="http://kde.org/applications/games/bovo/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/bovo-${pkgver}.tar.xz") +sha1sums=('f9080a1f1e6cd8107379bab9d9130fad83b6fb16') + +build() { + mkdir build + cd build + cmake ../bovo-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-bovo/kdegames-bovo.install b/kde-unstable/kdegames-bovo/kdegames-bovo.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-bovo/kdegames-bovo.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-granatier/PKGBUILD b/kde-unstable/kdegames-granatier/PKGBUILD new file mode 100644 index 000000000..23a62833a --- /dev/null +++ b/kde-unstable/kdegames-granatier/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171781 2012-11-21 19:17:09Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-granatier +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A clone of the classic Bomberman game" +url="http://kde.org/applications/games/granatier/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/granatier-${pkgver}.tar.xz") +sha1sums=('879691fd8c595430362fdce8e76e07cb4f912531') + +build() { + mkdir build + cd build + cmake ../granatier-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-granatier/kdegames-granatier.install b/kde-unstable/kdegames-granatier/kdegames-granatier.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-granatier/kdegames-granatier.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kapman/PKGBUILD b/kde-unstable/kdegames-kapman/PKGBUILD new file mode 100644 index 000000000..d1f0fe5a2 --- /dev/null +++ b/kde-unstable/kdegames-kapman/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171783 2012-11-21 19:18:24Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kapman +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A clone of the well known game Pac-Man" +url="http://kde.org/applications/games/kapman/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kapman-${pkgver}.tar.xz") +sha1sums=('0fb3a2043e5091673d52e8259e38a8412157ccff') + +build() { + mkdir build + cd build + cmake ../kapman-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kapman/kdegames-kapman.install b/kde-unstable/kdegames-kapman/kdegames-kapman.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kapman/kdegames-kapman.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-katomic/PKGBUILD b/kde-unstable/kdegames-katomic/PKGBUILD new file mode 100644 index 000000000..448b80760 --- /dev/null +++ b/kde-unstable/kdegames-katomic/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171784 2012-11-21 19:19:07Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-katomic +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A fun and educational game built around molecular geometry" +url="http://kde.org/applications/games/katomic/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/katomic-${pkgver}.tar.xz") +sha1sums=('f0c9508c32f3d5f8f7adb75c39f11a539e756ef4') + +build() { + mkdir build + cd build + cmake ../katomic-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-katomic/kdegames-katomic.install b/kde-unstable/kdegames-katomic/kdegames-katomic.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-katomic/kdegames-katomic.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kblackbox/PKGBUILD b/kde-unstable/kdegames-kblackbox/PKGBUILD new file mode 100644 index 000000000..367b01a19 --- /dev/null +++ b/kde-unstable/kdegames-kblackbox/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171785 2012-11-21 19:19:47Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kblackbox +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A game of hide and seek played on a grid of boxes" +url="http://kde.org/applications/games/kblackbox/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kblackbox-${pkgver}.tar.xz") +sha1sums=('a9e0cecc512af02c034435f3a3bdee0294e3bd9a') + +build() { + mkdir build + cd build + cmake ../kblackbox-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kblackbox/kdegames-kblackbox.install b/kde-unstable/kdegames-kblackbox/kdegames-kblackbox.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kblackbox/kdegames-kblackbox.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kblocks/PKGBUILD b/kde-unstable/kdegames-kblocks/PKGBUILD new file mode 100644 index 000000000..3df22f8a1 --- /dev/null +++ b/kde-unstable/kdegames-kblocks/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171786 2012-11-21 19:20:24Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kblocks +pkgver=4.9.80 +pkgrel=1 +pkgdesc="The classic falling blocks game" +url="http://kde.org/applications/games/kblocks/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kblocks-${pkgver}.tar.xz") +sha1sums=('21138737da1c5334fded3f0430a5ff1252873238') + +build() { + mkdir build + cd build + cmake ../kblocks-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kblocks/kdegames-kblocks.install b/kde-unstable/kdegames-kblocks/kdegames-kblocks.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kblocks/kdegames-kblocks.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kbounce/PKGBUILD b/kde-unstable/kdegames-kbounce/PKGBUILD new file mode 100644 index 000000000..6c9711f34 --- /dev/null +++ b/kde-unstable/kdegames-kbounce/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171787 2012-11-21 19:21:10Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kbounce +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A single player arcade game with the elements of puzzle" +url="http://kde.org/applications/games/kbounce/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kbounce-${pkgver}.tar.xz") +sha1sums=('037e27c540a879ba58340c20b9d1bfe073fed8df') + +build() { + mkdir build + cd build + cmake ../kbounce-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kbounce/kdegames-kbounce.install b/kde-unstable/kdegames-kbounce/kdegames-kbounce.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kbounce/kdegames-kbounce.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kbreakout/PKGBUILD b/kde-unstable/kdegames-kbreakout/PKGBUILD new file mode 100644 index 000000000..99d891b43 --- /dev/null +++ b/kde-unstable/kdegames-kbreakout/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171788 2012-11-21 19:21:53Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kbreakout +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A Breakout-like game" +url="http://kde.org/applications/games/kbreakout/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kbreakout-${pkgver}.tar.xz") +sha1sums=('5b3dac9a9352e2a246c42e36ee25125ddd195a06') + +build() { + mkdir build + cd build + cmake ../kbreakout-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kbreakout/kdegames-kbreakout.install b/kde-unstable/kdegames-kbreakout/kdegames-kbreakout.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kbreakout/kdegames-kbreakout.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kdiamond/PKGBUILD b/kde-unstable/kdegames-kdiamond/PKGBUILD new file mode 100644 index 000000000..5db398ab4 --- /dev/null +++ b/kde-unstable/kdegames-kdiamond/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171789 2012-11-21 19:22:35Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kdiamond +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A single player puzzle game" +url="http://kde.org/applications/games/kdiamond/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kdiamond-${pkgver}.tar.xz") +sha1sums=('054bdda050ee60bc475a9f95ad92fab8f60d77f7') + +build() { + mkdir build + cd build + cmake ../kdiamond-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kdiamond/kdegames-kdiamond.install b/kde-unstable/kdegames-kdiamond/kdegames-kdiamond.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kdiamond/kdegames-kdiamond.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kfourinline/PKGBUILD b/kde-unstable/kdegames-kfourinline/PKGBUILD new file mode 100644 index 000000000..ca6905de3 --- /dev/null +++ b/kde-unstable/kdegames-kfourinline/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171790 2012-11-21 19:23:27Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kfourinline +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A four-in-a-row game" +url="http://kde.org/applications/games/kfourinline/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kfourinline-${pkgver}.tar.xz") +sha1sums=('6512cbdd437dc498e1de5305ef262ab5d6a10463') + +build() { + mkdir build + cd build + cmake ../kfourinline-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kfourinline/kdegames-kfourinline.install b/kde-unstable/kdegames-kfourinline/kdegames-kfourinline.install new file mode 100644 index 000000000..6c87527e2 --- /dev/null +++ b/kde-unstable/kdegames-kfourinline/kdegames-kfourinline.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/kde-unstable/kdegames-kgoldrunner/PKGBUILD b/kde-unstable/kdegames-kgoldrunner/PKGBUILD new file mode 100644 index 000000000..6b885c7b9 --- /dev/null +++ b/kde-unstable/kdegames-kgoldrunner/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171791 2012-11-21 19:24:06Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kgoldrunner +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A game of action and puzzle solving" +url="http://kde.org/applications/games/kgoldrunner/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kgoldrunner-${pkgver}.tar.xz") +sha1sums=('3b4b78694ab4be2cbc1b7e7da55be0bd0ee0fe03') + +build() { + mkdir build + cd build + cmake ../kgoldrunner-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kgoldrunner/kdegames-kgoldrunner.install b/kde-unstable/kdegames-kgoldrunner/kdegames-kgoldrunner.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kgoldrunner/kdegames-kgoldrunner.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kigo/PKGBUILD b/kde-unstable/kdegames-kigo/PKGBUILD new file mode 100644 index 000000000..009f77d22 --- /dev/null +++ b/kde-unstable/kdegames-kigo/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171792 2012-11-21 19:24:51Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kigo +pkgver=4.9.80 +pkgrel=1 +pkgdesc="An open-source implementation of the popular Go game" +url="http://kde.org/applications/games/kigo/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kigo-${pkgver}.tar.xz") +sha1sums=('b19b2f147bb5bccae5f88f6eba7940fc95e693f8') + +build() { + mkdir build + cd build + cmake ../kigo-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kigo/kdegames-kigo.install b/kde-unstable/kdegames-kigo/kdegames-kigo.install new file mode 100644 index 000000000..81ce5c4b0 --- /dev/null +++ b/kde-unstable/kdegames-kigo/kdegames-kigo.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/kde-unstable/kdegames-killbots/PKGBUILD b/kde-unstable/kdegames-killbots/PKGBUILD new file mode 100644 index 000000000..69bfb423f --- /dev/null +++ b/kde-unstable/kdegames-killbots/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171793 2012-11-21 19:25:33Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-killbots +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A simple game of evading killer robots" +url="http://kde.org/applications/games/killbots/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/killbots-${pkgver}.tar.xz") +sha1sums=('403e36ec16722d985bc5f58ecb2e28dcb83007f3') + +build() { + mkdir build + cd build + cmake ../killbots-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-killbots/kdegames-killbots.install b/kde-unstable/kdegames-killbots/kdegames-killbots.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-killbots/kdegames-killbots.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kiriki/PKGBUILD b/kde-unstable/kdegames-kiriki/PKGBUILD new file mode 100644 index 000000000..ba670d9ee --- /dev/null +++ b/kde-unstable/kdegames-kiriki/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171794 2012-11-21 19:26:18Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kiriki +pkgver=4.9.80 +pkgrel=1 +pkgdesc="An addictive and fun dice game" +url="http://kde.org/applications/games/kiriki/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kiriki-${pkgver}.tar.xz") +sha1sums=('c0502c16e074a1347b6a698d22a51c8a48f93b69') + +build() { + mkdir build + cd build + cmake ../kiriki-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kiriki/kdegames-kiriki.install b/kde-unstable/kdegames-kiriki/kdegames-kiriki.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kiriki/kdegames-kiriki.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kjumpingcube/PKGBUILD b/kde-unstable/kdegames-kjumpingcube/PKGBUILD new file mode 100644 index 000000000..768022474 --- /dev/null +++ b/kde-unstable/kdegames-kjumpingcube/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171795 2012-11-21 19:26:57Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kjumpingcube +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A simple tactical game" +url="http://kde.org/applications/games/kjumpingcube/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kjumpingcube-${pkgver}.tar.xz") +sha1sums=('961bfa473f600230b5318988fc79c954c9d0de22') + +build() { + mkdir build + cd build + cmake ../kjumpingcube-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kjumpingcube/kdegames-kjumpingcube.install b/kde-unstable/kdegames-kjumpingcube/kdegames-kjumpingcube.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kjumpingcube/kdegames-kjumpingcube.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-klickety/PKGBUILD b/kde-unstable/kdegames-klickety/PKGBUILD new file mode 100644 index 000000000..606b7205e --- /dev/null +++ b/kde-unstable/kdegames-klickety/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171796 2012-11-21 19:27:37Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-klickety +pkgver=4.9.80 +pkgrel=1 +pkgdesc="An adaptation of the Clickomania game" +url="http://kde.org/applications/games/klickety/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/klickety-${pkgver}.tar.xz") +sha1sums=('32393e1e3277536a62688c1e960977eb5a33f43d') + +build() { + mkdir build + cd build + cmake ../klickety-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-klickety/kdegames-klickety.install b/kde-unstable/kdegames-klickety/kdegames-klickety.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-klickety/kdegames-klickety.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-klines/PKGBUILD b/kde-unstable/kdegames-klines/PKGBUILD new file mode 100644 index 000000000..28b2b26ee --- /dev/null +++ b/kde-unstable/kdegames-klines/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171797 2012-11-21 19:28:18Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-klines +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A simple but highly addictive, one player game" +url="http://kde.org/applications/games/klines/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/klines-${pkgver}.tar.xz") +sha1sums=('0773efb8ca8cf9fbf6359e09e66bec86fbc29ec8') + +build() { + mkdir build + cd build + cmake ../klines-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-klines/kdegames-klines.install b/kde-unstable/kdegames-klines/kdegames-klines.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-klines/kdegames-klines.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kmahjongg/PKGBUILD b/kde-unstable/kdegames-kmahjongg/PKGBUILD new file mode 100644 index 000000000..92179d5b3 --- /dev/null +++ b/kde-unstable/kdegames-kmahjongg/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171798 2012-11-21 19:28:59Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kmahjongg +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A tile matching game for one or two players" +url="http://kde.org/applications/games/kmahjongg/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkmahjongg' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kmahjongg-${pkgver}.tar.xz") +sha1sums=('ec723bc34ba6f2f6081edfa9ed3cd79266d901cb') + +build() { + mkdir build + cd build + cmake ../kmahjongg-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kmahjongg/kdegames-kmahjongg.install b/kde-unstable/kdegames-kmahjongg/kdegames-kmahjongg.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kmahjongg/kdegames-kmahjongg.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kmines/PKGBUILD b/kde-unstable/kdegames-kmines/PKGBUILD new file mode 100644 index 000000000..3b9e5a8fc --- /dev/null +++ b/kde-unstable/kdegames-kmines/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171799 2012-11-21 19:29:44Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kmines +pkgver=4.9.80 +pkgrel=1 +pkgdesc="The classic Minesweeper game" +url="http://kde.org/applications/games/kmines/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kmines-${pkgver}.tar.xz") +sha1sums=('a433c87f8694b58a98142225b45dafa40ddcb911') + +build() { + mkdir build + cd build + cmake ../kmines-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kmines/kdegames-kmines.install b/kde-unstable/kdegames-kmines/kdegames-kmines.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kmines/kdegames-kmines.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-knavalbattle/PKGBUILD b/kde-unstable/kdegames-knavalbattle/PKGBUILD new file mode 100644 index 000000000..ea75ca11e --- /dev/null +++ b/kde-unstable/kdegames-knavalbattle/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171800 2012-11-21 19:30:25Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-knavalbattle +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A ship sinking game" +url="http://kde.org/applications/games/knavalbattle/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/knavalbattle-${pkgver}.tar.xz") +sha1sums=('cbe7b3cc2599a8078f7c4d241746ded1795f5b91') + +build() { + mkdir build + cd build + cmake ../knavalbattle-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-knavalbattle/kdegames-knavalbattle.install b/kde-unstable/kdegames-knavalbattle/kdegames-knavalbattle.install new file mode 100644 index 000000000..6c87527e2 --- /dev/null +++ b/kde-unstable/kdegames-knavalbattle/kdegames-knavalbattle.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/kde-unstable/kdegames-knetwalk/PKGBUILD b/kde-unstable/kdegames-knetwalk/PKGBUILD new file mode 100644 index 000000000..6a18fd6d6 --- /dev/null +++ b/kde-unstable/kdegames-knetwalk/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171801 2012-11-21 19:31:14Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-knetwalk +pkgver=4.9.80 +pkgrel=1 +pkgdesc="Connect all the terminals to the server, in as few turns as possible" +url="http://kde.org/applications/games/knetwalk/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/knetwalk-${pkgver}.tar.xz") +sha1sums=('54638b39f2f23f231b5a533bbf3deb82b25bc93b') + +build() { + mkdir build + cd build + cmake ../knetwalk-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-knetwalk/kdegames-knetwalk.install b/kde-unstable/kdegames-knetwalk/kdegames-knetwalk.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-knetwalk/kdegames-knetwalk.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kolf/PKGBUILD b/kde-unstable/kdegames-kolf/PKGBUILD new file mode 100644 index 000000000..5449d24a7 --- /dev/null +++ b/kde-unstable/kdegames-kolf/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171802 2012-11-21 19:31:55Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kolf +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A miniature golf game with 2d top-down view" +url="http://kde.org/applications/games/kolf/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kolf-${pkgver}.tar.xz") +sha1sums=('4083457d9d3331e554b3ea391bcd37ce7eea973f') + +build() { + mkdir build + cd build + cmake ../kolf-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kolf/kdegames-kolf.install b/kde-unstable/kdegames-kolf/kdegames-kolf.install new file mode 100644 index 000000000..6c87527e2 --- /dev/null +++ b/kde-unstable/kdegames-kolf/kdegames-kolf.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/kde-unstable/kdegames-kollision/PKGBUILD b/kde-unstable/kdegames-kollision/PKGBUILD new file mode 100644 index 000000000..243e1581b --- /dev/null +++ b/kde-unstable/kdegames-kollision/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171803 2012-11-21 19:32:37Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kollision +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A simple ball dodging game" +url="http://kde.org/applications/games/kollision/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kollision-${pkgver}.tar.xz") +sha1sums=('f07924e70eb07b56d34ecee5061831466bea9618') + +build() { + mkdir build + cd build + cmake ../kollision-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kollision/kdegames-kollision.install b/kde-unstable/kdegames-kollision/kdegames-kollision.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kollision/kdegames-kollision.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-konquest/PKGBUILD b/kde-unstable/kdegames-konquest/PKGBUILD new file mode 100644 index 000000000..405fc8a0e --- /dev/null +++ b/kde-unstable/kdegames-konquest/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171804 2012-11-21 19:33:14Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-konquest +pkgver=4.9.80 +pkgrel=1 +pkgdesc="The KDE version of Gnu-Lactic" +url="http://kde.org/applications/games/konquest/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/konquest-${pkgver}.tar.xz") +sha1sums=('46334547e2dc0606b05930293037ba0006ecc05b') + +build() { + mkdir build + cd build + cmake ../konquest-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-konquest/kdegames-konquest.install b/kde-unstable/kdegames-konquest/kdegames-konquest.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-konquest/kdegames-konquest.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kpatience/PKGBUILD b/kde-unstable/kdegames-kpatience/PKGBUILD new file mode 100644 index 000000000..677d87ee6 --- /dev/null +++ b/kde-unstable/kdegames-kpatience/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171805 2012-11-21 19:33:59Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kpatience +pkgver=4.9.80 +pkgrel=1 +pkgdesc="Offers a selection of solitaire card games" +url="http://kde.org/applications/games/kpat/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kpat-${pkgver}.tar.xz") +sha1sums=('2ee0773fd86fd6321714be1d583e4d25a3589a44') + +build() { + mkdir build + cd build + cmake ../kpat-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kpatience/kdegames-kpatience.install b/kde-unstable/kdegames-kpatience/kdegames-kpatience.install new file mode 100644 index 000000000..279b8f38d --- /dev/null +++ b/kde-unstable/kdegames-kpatience/kdegames-kpatience.install @@ -0,0 +1,13 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null + update-desktop-database -q + update-mime-database usr/share/mime &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kreversi/PKGBUILD b/kde-unstable/kdegames-kreversi/PKGBUILD new file mode 100644 index 000000000..4db0e8ca7 --- /dev/null +++ b/kde-unstable/kdegames-kreversi/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171806 2012-11-21 19:34:54Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kreversi +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A simple one player strategy game played against the computer" +url="http://kde.org/applications/games/kreversi/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kreversi-${pkgver}.tar.xz") +sha1sums=('3c33f7b7d2ddc246d7a304b7a1893bd3a17ace58') + +build() { + mkdir build + cd build + cmake ../kreversi-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kreversi/kdegames-kreversi.install b/kde-unstable/kdegames-kreversi/kdegames-kreversi.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kreversi/kdegames-kreversi.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kshisen/PKGBUILD b/kde-unstable/kdegames-kshisen/PKGBUILD new file mode 100644 index 000000000..718b28e78 --- /dev/null +++ b/kde-unstable/kdegames-kshisen/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171807 2012-11-21 19:35:35Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kshisen +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A solitaire-like game played using the standard set of Mahjong tiles" +url="http://kde.org/applications/games/kshisen/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames' 'libkmahjongg') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kshisen-${pkgver}.tar.xz") +sha1sums=('c29e40eab8424139421560bd4c38c90c2c044eb5') + +build() { + mkdir build + cd build + cmake ../kshisen-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kshisen/kdegames-kshisen.install b/kde-unstable/kdegames-kshisen/kdegames-kshisen.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kshisen/kdegames-kshisen.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-ksirk/PKGBUILD b/kde-unstable/kdegames-ksirk/PKGBUILD new file mode 100644 index 000000000..cb93bdbad --- /dev/null +++ b/kde-unstable/kdegames-ksirk/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171808 2012-11-21 19:36:09Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-ksirk +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A computerized version of a well known strategy game" +url="http://kde.org/applications/games/ksirk/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/ksirk-${pkgver}.tar.xz") +sha1sums=('9689540da05872676f10ba81d06d19149eabb643') + +build() { + mkdir build + cd build + cmake ../ksirk-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-ksirk/kdegames-ksirk.install b/kde-unstable/kdegames-ksirk/kdegames-ksirk.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-ksirk/kdegames-ksirk.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-ksnakeduel/PKGBUILD b/kde-unstable/kdegames-ksnakeduel/PKGBUILD new file mode 100644 index 000000000..15a426d67 --- /dev/null +++ b/kde-unstable/kdegames-ksnakeduel/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171809 2012-11-21 19:36:56Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-ksnakeduel +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A simple snake duel game" +url="http://kde.org/applications/games/ksnakeduel/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/ksnakeduel-${pkgver}.tar.xz") +sha1sums=('46b7e6e3810487d5c7669653e1c9eb5ff372fd19') + +build() { + mkdir build + cd build + cmake ../ksnakeduel-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-ksnakeduel/kdegames-ksnakeduel.install b/kde-unstable/kdegames-ksnakeduel/kdegames-ksnakeduel.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-ksnakeduel/kdegames-ksnakeduel.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-kspaceduel/PKGBUILD b/kde-unstable/kdegames-kspaceduel/PKGBUILD new file mode 100644 index 000000000..b4a7bc671 --- /dev/null +++ b/kde-unstable/kdegames-kspaceduel/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171810 2012-11-21 19:37:29Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kspaceduel +pkgver=4.9.80 +pkgrel=1 +pkgdesc="Each of two possible players controls a satellite spaceship orbiting the sun" +url="http://kde.org/applications/games/kspaceduel/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kspaceduel-${pkgver}.tar.xz") +sha1sums=('44ed8e2d47db3e6eebd3e843a33ef484fe8f69c6') + +build() { + mkdir build + cd build + cmake ../kspaceduel-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kspaceduel/kdegames-kspaceduel.install b/kde-unstable/kdegames-kspaceduel/kdegames-kspaceduel.install new file mode 100644 index 000000000..6c87527e2 --- /dev/null +++ b/kde-unstable/kdegames-kspaceduel/kdegames-kspaceduel.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/kde-unstable/kdegames-ksquares/PKGBUILD b/kde-unstable/kdegames-ksquares/PKGBUILD new file mode 100644 index 000000000..6810f17f3 --- /dev/null +++ b/kde-unstable/kdegames-ksquares/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171811 2012-11-21 19:38:04Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-ksquares +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A modeled after the well known pen and paper based game of Dots and Boxes" +url="http://kde.org/applications/games/ksquares/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/ksquares-${pkgver}.tar.xz") +sha1sums=('2fe82e3abc870eb7a66e62e94b343de1d4a71b84') + +build() { + mkdir build + cd build + cmake ../ksquares-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-ksquares/kdegames-ksquares.install b/kde-unstable/kdegames-ksquares/kdegames-ksquares.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-ksquares/kdegames-ksquares.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-ksudoku/PKGBUILD b/kde-unstable/kdegames-ksudoku/PKGBUILD new file mode 100644 index 000000000..e8d2bd7fd --- /dev/null +++ b/kde-unstable/kdegames-ksudoku/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171812 2012-11-21 19:38:36Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-ksudoku +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A logic-based symbol placement puzzle" +url="http://kde.org/applications/games/ksudoku/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4' 'mesa') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/ksudoku-${pkgver}.tar.xz") +sha1sums=('332821c53f1f08f2dbaf03fdf0588879725d628b') + +build() { + mkdir build + cd build + cmake ../ksudoku-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-ksudoku/kdegames-ksudoku.install b/kde-unstable/kdegames-ksudoku/kdegames-ksudoku.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-ksudoku/kdegames-ksudoku.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-ktuberling/PKGBUILD b/kde-unstable/kdegames-ktuberling/PKGBUILD new file mode 100644 index 000000000..c25e8e3b9 --- /dev/null +++ b/kde-unstable/kdegames-ktuberling/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171813 2012-11-21 19:39:16Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-ktuberling +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A simple constructor game suitable for children and adults alike" +url="http://kde.org/applications/games/ktuberling/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/ktuberling-${pkgver}.tar.xz") +sha1sums=('a3045890cf761f8e9ea6bd22699281f614468d83') + +build() { + mkdir build + cd build + cmake ../ktuberling-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-ktuberling/kdegames-ktuberling.install b/kde-unstable/kdegames-ktuberling/kdegames-ktuberling.install new file mode 100644 index 000000000..6c87527e2 --- /dev/null +++ b/kde-unstable/kdegames-ktuberling/kdegames-ktuberling.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/kde-unstable/kdegames-kubrick/PKGBUILD b/kde-unstable/kdegames-kubrick/PKGBUILD new file mode 100644 index 000000000..895388772 --- /dev/null +++ b/kde-unstable/kdegames-kubrick/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171814 2012-11-21 19:40:03Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-kubrick +pkgver=4.9.80 +pkgrel=1 +pkgdesc="Based on the famous Rubik's Cube" +url="http://kde.org/applications/games/kubrick/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4' 'mesa') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kubrick-${pkgver}.tar.xz") +sha1sums=('c553b86fcb78b1c182945ab75bc85391b4dca593') + +build() { + mkdir build + cd build + cmake ../kubrick-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-kubrick/kdegames-kubrick.install b/kde-unstable/kdegames-kubrick/kdegames-kubrick.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-kubrick/kdegames-kubrick.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-lskat/PKGBUILD b/kde-unstable/kdegames-lskat/PKGBUILD new file mode 100644 index 000000000..e2e543075 --- /dev/null +++ b/kde-unstable/kdegames-lskat/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171815 2012-11-21 19:40:37Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-lskat +pkgver=4.9.80 +pkgrel=1 +pkgdesc="Lieutenant Skat is a fun and engaging card game for two players" +url="http://kde.org/applications/games/lskat/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/lskat-${pkgver}.tar.xz") +sha1sums=('7de09b0e2678f6f5a95e72049d3ba5438e3c6b2d') + +build() { + mkdir build + cd build + cmake ../lskat-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-lskat/kdegames-lskat.install b/kde-unstable/kdegames-lskat/kdegames-lskat.install new file mode 100644 index 000000000..6c87527e2 --- /dev/null +++ b/kde-unstable/kdegames-lskat/kdegames-lskat.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/kde-unstable/kdegames-palapeli/PKGBUILD b/kde-unstable/kdegames-palapeli/PKGBUILD new file mode 100644 index 000000000..f9f8dea45 --- /dev/null +++ b/kde-unstable/kdegames-palapeli/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171816 2012-11-21 19:41:13Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-palapeli +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A single-player jigsaw puzzle game" +url="http://kde.org/applications/games/palapeli/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/palapeli-${pkgver}.tar.xz") +sha1sums=('be62e6e82f7c5b2f3f8c4a6cee895170a4c49bc4') + +build() { + mkdir build + cd build + cmake ../palapeli-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-palapeli/kdegames-palapeli.install b/kde-unstable/kdegames-palapeli/kdegames-palapeli.install new file mode 100644 index 000000000..279b8f38d --- /dev/null +++ b/kde-unstable/kdegames-palapeli/kdegames-palapeli.install @@ -0,0 +1,13 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null + update-desktop-database -q + update-mime-database usr/share/mime &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegames-picmi/PKGBUILD b/kde-unstable/kdegames-picmi/PKGBUILD new file mode 100644 index 000000000..4d3ea8e9e --- /dev/null +++ b/kde-unstable/kdegames-picmi/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 171873 2012-11-21 22:04:46Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdegames-picmi +pkgver=4.9.80 +pkgrel=2 +pkgdesc="A nonogram logic game for KDE" +url="http://kde.org/applications/games/picmi/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdegames') +depends=('kdebase-runtime' 'libkdegames') +makedepends=('cmake' 'automoc4') +replaces=('picmi') +conflicts=('picmi') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/picmi-${pkgver}.tar.xz") +sha1sums=('03b8385e5b1de2c6fb51c9cf40e3a1473eb21db9') + +build() { + mkdir build + cd build + cmake ../picmi-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdegames-picmi/kdegames-picmi.install b/kde-unstable/kdegames-picmi/kdegames-picmi.install new file mode 100644 index 000000000..e70c054ec --- /dev/null +++ b/kde-unstable/kdegames-picmi/kdegames-picmi.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/kde-unstable/kdegraphics-gwenview/PKGBUILD b/kde-unstable/kdegraphics-gwenview/PKGBUILD index 14677cd94..c28f5e477 100644 --- a/kde-unstable/kdegraphics-gwenview/PKGBUILD +++ b/kde-unstable/kdegraphics-gwenview/PKGBUILD @@ -1,20 +1,20 @@ -# $Id: PKGBUILD 163412 2012-07-11 22:39:36Z andrea $ +# $Id: PKGBUILD 171818 2012-11-21 19:42:24Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-gwenview -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="A fast and easy to use image viewer for KDE" url="http://kde.org/applications/graphics/gwenview/" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegraphics') -depends=('kdebase-lib' 'libkipi') -makedepends=('cmake' 'automoc4') +depends=('kdebase-lib' 'kdebase-runtime' 'libkipi' 'lcms2') +makedepends=('cmake' 'automoc4' 'mesa') optdepends=('kipi-plugins: extra plugins to share photos') install=$pkgname.install source=("http://download.kde.org/unstable/${pkgver}/src/gwenview-${pkgver}.tar.xz") -sha1sums=('5368a49cfe73f4f7cd650f6aac838f4640d9a563') +sha1sums=('483eff39d7944d3df38f93f434abe3479c2bcd07') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-kamera/PKGBUILD b/kde-unstable/kdegraphics-kamera/PKGBUILD index f62047080..1aadf2950 100644 --- a/kde-unstable/kdegraphics-kamera/PKGBUILD +++ b/kde-unstable/kdegraphics-kamera/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 163413 2012-07-11 22:40:14Z andrea $ +# $Id: PKGBUILD 171819 2012-11-21 19:43:05Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kamera -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Configure Kamera" url="http://kde.org/applications/graphics/kamera/" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegraphics') -depends=('kdebase-runtime' 'gphoto2') +depends=('kdebase-runtime' 'libgphoto2') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/unstable/${pkgver}/src/kamera-${pkgver}.tar.xz") -sha1sums=('f7896c41672035d4750af6c5fc57a548888b40e1') +sha1sums=('db8cf609357d90eda1c55a02d1d52faa976fd97d') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-kcolorchooser/PKGBUILD b/kde-unstable/kdegraphics-kcolorchooser/PKGBUILD index 63db23105..dc81a4a6c 100644 --- a/kde-unstable/kdegraphics-kcolorchooser/PKGBUILD +++ b/kde-unstable/kdegraphics-kcolorchooser/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163414 2012-07-11 22:40:42Z andrea $ +# $Id: PKGBUILD 171820 2012-11-21 19:43:39Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kcolorchooser -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Color Chooser" url="http://kde.org/applications/graphics/kcolorchooser/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kcolorchooser-${pkgver}.tar.xz") -sha1sums=('7bf1ec5487e79f38a95a5d3752a756360be1cacb') +sha1sums=('b366981076edfcdafdb8e00844a132db26b8393c') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-kgamma/PKGBUILD b/kde-unstable/kdegraphics-kgamma/PKGBUILD index 7cefa36b6..cdbd2db53 100644 --- a/kde-unstable/kdegraphics-kgamma/PKGBUILD +++ b/kde-unstable/kdegraphics-kgamma/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163415 2012-07-11 22:41:14Z andrea $ +# $Id: PKGBUILD 171821 2012-11-21 19:44:16Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kgamma -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="A monitor calibration tool" url="http://kde.org/applications/graphics/kgamma/" @@ -15,7 +15,7 @@ groups=('kde' 'kdegraphics') depends=('kdebase-runtime' 'libxxf86vm') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/unstable/${pkgver}/src/kgamma-${pkgver}.tar.xz") -sha1sums=('baa1b40d4e9c89946879697bd63111e94349295d') +sha1sums=('c61e290893733b5bb80559e0c6b62b04b04a017c') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-kolourpaint/PKGBUILD b/kde-unstable/kdegraphics-kolourpaint/PKGBUILD index 7a9af390b..1fc4783c6 100644 --- a/kde-unstable/kdegraphics-kolourpaint/PKGBUILD +++ b/kde-unstable/kdegraphics-kolourpaint/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163416 2012-07-11 22:41:42Z andrea $ +# $Id: PKGBUILD 171822 2012-11-21 19:44:49Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kolourpaint -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Paint Program" url="http://kde.org/applications/graphics/kolourpaint/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime' 'qimageblitz') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kolourpaint-${pkgver}.tar.xz") -sha1sums=('de14aab1473a886cdd77170e4d8db34413a4be1c') +sha1sums=('147b3e8aa6f7f0ed6370631e3742022e5dfa0b01') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-kruler/PKGBUILD b/kde-unstable/kdegraphics-kruler/PKGBUILD index 5d3238119..ad3058fb1 100644 --- a/kde-unstable/kdegraphics-kruler/PKGBUILD +++ b/kde-unstable/kdegraphics-kruler/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163417 2012-07-11 22:42:14Z andrea $ +# $Id: PKGBUILD 171823 2012-11-21 19:45:27Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-kruler -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Screen Ruler" url="http://kde.org/applications/graphics/kruler/" @@ -13,7 +13,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kruler-${pkgver}.tar.xz") -sha1sums=('88f8b63297466fd719c195df23d55363ba272db5') +sha1sums=('73c97e77b4b89c985c08b9e429f9d17d5d0fe69e') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-ksaneplugin/PKGBUILD b/kde-unstable/kdegraphics-ksaneplugin/PKGBUILD index b8cfcef16..969049c7f 100644 --- a/kde-unstable/kdegraphics-ksaneplugin/PKGBUILD +++ b/kde-unstable/kdegraphics-ksaneplugin/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163418 2012-07-11 22:42:46Z andrea $ +# $Id: PKGBUILD 171824 2012-11-21 19:46:04Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-ksaneplugin -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/ksaneplugin-${pkgver}.tar.xz") -sha1sums=('919e9b34de57c13c67c919efb5b8dd95adf6cbac') +sha1sums=('23a37da7e6417e6e3283fc969a3b2900ca48a709') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-ksnapshot/PKGBUILD b/kde-unstable/kdegraphics-ksnapshot/PKGBUILD index 437d2d039..ed0b89c21 100644 --- a/kde-unstable/kdegraphics-ksnapshot/PKGBUILD +++ b/kde-unstable/kdegraphics-ksnapshot/PKGBUILD @@ -1,20 +1,20 @@ -# $Id: PKGBUILD 163419 2012-07-11 22:43:14Z andrea $ +# $Id: PKGBUILD 171826 2012-11-21 19:46:35Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-ksnapshot -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Screen Capture Program" url="http://kde.org/applications/graphics/ksnapshot/" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegraphics') -depends=('kdelibs' 'libkipi') +depends=('kdebase-runtime' 'libkipi') makedepends=('cmake' 'automoc4') optdepends=('kipi-plugins') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/ksnapshot-${pkgver}.tar.xz") -sha1sums=('5416d6a1415b41cd71c302ace7332ab22a048f1d') +sha1sums=('50b937b84b44e8ff3ea4a1f4659f286677f545a3') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-mobipocket/PKGBUILD b/kde-unstable/kdegraphics-mobipocket/PKGBUILD index 18738698b..1a3b2e533 100644 --- a/kde-unstable/kdegraphics-mobipocket/PKGBUILD +++ b/kde-unstable/kdegraphics-mobipocket/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163420 2012-07-11 22:43:44Z andrea $ +# $Id: PKGBUILD 171828 2012-11-21 19:47:08Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-mobipocket -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('31ecdd38e977fa2b222646ce4fbdf5975eece5f8') +sha1sums=('1c68cfeebe9f7a753e762f2e129867eb3e99a584') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-okular/PKGBUILD b/kde-unstable/kdegraphics-okular/PKGBUILD index e73479add..f2122691d 100644 --- a/kde-unstable/kdegraphics-okular/PKGBUILD +++ b/kde-unstable/kdegraphics-okular/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163358 2012-07-11 21:57:24Z andrea $ +# $Id: PKGBUILD 171719 2012-11-21 18:12:29Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-okular -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc='Document Viewer' arch=('i686' 'x86_64') @@ -15,7 +15,7 @@ makedepends=('cmake' 'automoc4') optdepends=('kdegraphics-mobipocket: mobipocket support') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/okular-${pkgver}.tar.xz") -sha1sums=('a31da767627783ee4d27e4a9bf2bacd893fcb467') +sha1sums=('0eae6e67e5861d4f6771147bcfa50513ae003f23') build() { cd "${srcdir}" @@ -23,7 +23,8 @@ build() { cd build cmake ../okular-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr + -DCMAKE_INSTALL_PREFIX=/usr \ + -DWITH_ActiveApp=OFF make } diff --git a/kde-unstable/kdegraphics-strigi-analyzer/PKGBUILD b/kde-unstable/kdegraphics-strigi-analyzer/PKGBUILD index 08fb84924..844c99454 100644 --- a/kde-unstable/kdegraphics-strigi-analyzer/PKGBUILD +++ b/kde-unstable/kdegraphics-strigi-analyzer/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163421 2012-07-11 22:44:15Z andrea $ +# $Id: PKGBUILD 171829 2012-11-21 19:47:43Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-strigi-analyzer -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('cbd7f9de4b00060af7774f817a5dc0c2312a3953') +sha1sums=('a6586b8043a37ac6dfbdd60f1555d4ae976b9871') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-svgpart/PKGBUILD b/kde-unstable/kdegraphics-svgpart/PKGBUILD index d5e825b67..5d33bf3eb 100644 --- a/kde-unstable/kdegraphics-svgpart/PKGBUILD +++ b/kde-unstable/kdegraphics-svgpart/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 163422 2012-07-11 22:44:48Z andrea $ +# $Id: PKGBUILD 171830 2012-11-21 19:48:19Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-svgpart -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 -pkgdesc="A KPart for viewving SVGs" +pkgdesc="A KPart for viewing SVGs" url="https://projects.kde.org/projects/kde/kdegraphics/svgpart" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/unstable/${pkgver}/src/svgpart-${pkgver}.tar.xz") -sha1sums=('7a3f8d2b63c54487ffb7d47a2b62275a5530d2ae') +sha1sums=('820adf5ca725571a411b33b204ec616d2f266d35') build() { cd "${srcdir}" diff --git a/kde-unstable/kdegraphics-thumbnailers/PKGBUILD b/kde-unstable/kdegraphics-thumbnailers/PKGBUILD index 3243643ea..1833953a6 100644 --- a/kde-unstable/kdegraphics-thumbnailers/PKGBUILD +++ b/kde-unstable/kdegraphics-thumbnailers/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163423 2012-07-11 22:45:19Z andrea $ +# $Id: PKGBUILD 171831 2012-11-21 19:48:54Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdegraphics-thumbnailers -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('c5dc4b4a658fd268f9b0ec0895ccf4b2100cac3e') +sha1sums=('634800a6818305924bca74e8dcaa1731ade554f3') build() { cd "${srcdir}" diff --git a/kde-unstable/kdemultimedia-audiocd-kio/PKGBUILD b/kde-unstable/kdemultimedia-audiocd-kio/PKGBUILD index 3ae3db243..def5eecab 100644 --- a/kde-unstable/kdemultimedia-audiocd-kio/PKGBUILD +++ b/kde-unstable/kdemultimedia-audiocd-kio/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163424 2012-07-11 22:45:50Z andrea $ +# $Id: PKGBUILD 171832 2012-11-21 19:49:28Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-audiocd-kio -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/audiocd-kio-${pkgver}.tar.xz") -sha1sums=('fc4dd691c5f51c79f019ab7f1a0f60aa56da2c6f') +sha1sums=('2ca7092d54467a667049c29d037c6d0a046c4fe1') build() { cd "${srcdir}" diff --git a/kde-unstable/kdemultimedia-dragonplayer/PKGBUILD b/kde-unstable/kdemultimedia-dragonplayer/PKGBUILD index c4d62dfb7..082a1aa19 100644 --- a/kde-unstable/kdemultimedia-dragonplayer/PKGBUILD +++ b/kde-unstable/kdemultimedia-dragonplayer/PKGBUILD @@ -1,19 +1,20 @@ -# $Id: PKGBUILD 163425 2012-07-11 22:46:19Z andrea $ +# $Id: PKGBUILD 171833 2012-11-21 19:50:00Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-dragonplayer -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/dragon-${pkgver}.tar.xz") -sha1sums=('f1d2eab7228e7cd31d9dd5a4f26ff86965bcac86') +sha1sums=('f578c03c050d8ba018931eb458ecea11c3a81f94') build() { cd "${srcdir}" diff --git a/kde-unstable/kdemultimedia-ffmpegthumbs/PKGBUILD b/kde-unstable/kdemultimedia-ffmpegthumbs/PKGBUILD index f331884b4..5c69944c1 100644 --- a/kde-unstable/kdemultimedia-ffmpegthumbs/PKGBUILD +++ b/kde-unstable/kdemultimedia-ffmpegthumbs/PKGBUILD @@ -1,17 +1,18 @@ -# $Id: PKGBUILD 163426 2012-07-11 22:46:52Z andrea $ +# $Id: PKGBUILD 171834 2012-11-21 19:50:46Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-ffmpegthumbs -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/ffmpegthumbs-${pkgver}.tar.xz") -sha1sums=('fbbafd3dd018f13f8cf61466312a4db6a229cf22') +sha1sums=('f4f53267642f8181741a0491e34fb6b85ba0e298') build() { cd "${srcdir}" diff --git a/kde-unstable/kdemultimedia-juk/PKGBUILD b/kde-unstable/kdemultimedia-juk/PKGBUILD index b64752b84..b8e8ae0f6 100644 --- a/kde-unstable/kdemultimedia-juk/PKGBUILD +++ b/kde-unstable/kdemultimedia-juk/PKGBUILD @@ -1,18 +1,19 @@ -# $Id: PKGBUILD 163427 2012-07-11 22:47:20Z andrea $ +# $Id: PKGBUILD 171835 2012-11-21 19:51:18Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-juk -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/juk-${pkgver}.tar.xz") -sha1sums=('71b418afd6d19188d87b8c6d70d3e88cf69dc7c8') +sha1sums=('236f1d9003239a2b8805932af1a019e14b8450b1') build() { cd "${srcdir}" diff --git a/kde-unstable/kdemultimedia-kmix/PKGBUILD b/kde-unstable/kdemultimedia-kmix/PKGBUILD index 4ccf1c243..e9ce4ad64 100644 --- a/kde-unstable/kdemultimedia-kmix/PKGBUILD +++ b/kde-unstable/kdemultimedia-kmix/PKGBUILD @@ -1,18 +1,19 @@ -# $Id: PKGBUILD 163428 2012-07-11 22:47:50Z andrea $ +# $Id: PKGBUILD 171836 2012-11-21 19:51:52Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-kmix -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/kmix-${pkgver}.tar.xz") -sha1sums=('1da4c0ce895ed39dd25e6da1c6c85671536a8391') +sha1sums=('60c5d851ece3fd62db2604d2fcde05639ac49c83') build() { cd "${srcdir}" diff --git a/kde-unstable/kdemultimedia-kscd/PKGBUILD b/kde-unstable/kdemultimedia-kscd/PKGBUILD index 4fe6eb01d..6ac47add5 100644 --- a/kde-unstable/kdemultimedia-kscd/PKGBUILD +++ b/kde-unstable/kdemultimedia-kscd/PKGBUILD @@ -1,18 +1,19 @@ -# $Id: PKGBUILD 163429 2012-07-11 22:48:20Z andrea $ +# $Id: PKGBUILD 171837 2012-11-21 19:52:27Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-kscd -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/kscd-${pkgver}.tar.xz") -sha1sums=('7ce062b170ff3e3e299b24ca618ac11243afd05a') +sha1sums=('b92a7d1f1d35616e0ac3272bf33aa7c0aef116ca') build() { cd "${srcdir}" diff --git a/kde-unstable/kdemultimedia-mplayerthumbs/PKGBUILD b/kde-unstable/kdemultimedia-mplayerthumbs/PKGBUILD index 532230b02..dfd729f3b 100644 --- a/kde-unstable/kdemultimedia-mplayerthumbs/PKGBUILD +++ b/kde-unstable/kdemultimedia-mplayerthumbs/PKGBUILD @@ -1,17 +1,18 @@ -# $Id: PKGBUILD 163430 2012-07-11 22:48:51Z andrea $ +# $Id: PKGBUILD 171838 2012-11-21 19:53:04Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdemultimedia-mplayerthumbs -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/mplayerthumbs-${pkgver}.tar.xz") -sha1sums=('293f54e6edcca03859abfdc717139693455cd16e') +sha1sums=('1da7ccdcdd9980aaa2adf338496de52469582fb4') build() { cd "${srcdir}" diff --git a/kde-unstable/kdenetwork/PKGBUILD b/kde-unstable/kdenetwork/PKGBUILD index 3efbc378f..cbf5ba729 100644 --- a/kde-unstable/kdenetwork/PKGBUILD +++ b/kde-unstable/kdenetwork/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 163431 2012-07-11 22:49:42Z andrea $ +# $Id: PKGBUILD 171839 2012-11-21 19:54:05Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -10,21 +10,26 @@ pkgname=('kdenetwork-filesharing' 'kdenetwork-kppp' 'kdenetwork-krdc' 'kdenetwork-krfb') -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdenetwork') -makedepends=('cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr' 'ppp' +makedepends=('cmake' 'automoc4' 'boost' 'speex' 'ortp' 'libotr3' 'ppp' 'qca-ossl' 'kdebase-workspace' 'kdebase-lib' 'libvncserver' 'v4l-utils' 'libidn' 'qimageblitz' 'libxdamage' 'libgadu' 'libmsn' 'libktorrent' 'libmms' 'mediastreamer' 'telepathy-qt') -source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('e273b9cb322f9f978a48e687637dbc03601ac71e') +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz" + 'use-libotr3.patch') +sha1sums=('98ac23fe593001486f233c9b6f8b98ab76914a14' + '9c3b0ee15538fbfa36aa0a4748b1f6b5a7905384') build() { - cd "${srcdir}" + cd ${pkgbase}-${pkgver} + patch -p1 -i "${srcdir}"/use-libotr3.patch + cd ../ + mkdir build cd build cmake ../${pkgbase}-${pkgver} \ @@ -66,7 +71,7 @@ package_kdenetwork-kget() { package_kdenetwork-kopete() { pkgdesc='Instant Messenger' - depends=('kdebase-runtime' 'kdepimlibs' 'qca-ossl' 'libotr' 'libmsn' + depends=('kdebase-runtime' 'kdepimlibs' 'qca-ossl' 'libotr3' 'libmsn' 'libidn' 'qimageblitz' 'libgadu' 'mediastreamer') url="http://kde.org/applications/internet/kopete/" install='kdenetwork-kopete.install' diff --git a/kde-unstable/kdenetwork/use-libotr3.patch b/kde-unstable/kdenetwork/use-libotr3.patch new file mode 100644 index 000000000..1e96c98d6 --- /dev/null +++ b/kde-unstable/kdenetwork/use-libotr3.patch @@ -0,0 +1,71 @@ +diff -urN a/kopete/cmake/modules/FindLibOTR.cmake b/kopete/cmake/modules/FindLibOTR.cmake +--- a/kopete/cmake/modules/FindLibOTR.cmake 2012-08-12 18:08:59.000000000 -0600 ++++ b/kopete/cmake/modules/FindLibOTR.cmake 2012-11-09 12:14:24.251450904 -0700 +@@ -13,13 +13,13 @@ + SET(LIBOTR_FIND_QUIETLY TRUE) + ENDIF (LIBOTR_INCLUDE_DIR AND LIBOTR_LIBRARY) + +-FIND_PATH(LIBOTR_INCLUDE_DIR libotr/version.h) ++FIND_PATH(LIBOTR_INCLUDE_DIR libotr3/version.h) + +-FIND_LIBRARY(LIBOTR_LIBRARY NAMES otr libotr) ++FIND_LIBRARY(LIBOTR_LIBRARY NAMES otr3 libotr3) + +-# Determine version information from libotr/version.h ++# Determine version information from libotr3/version.h + IF( LIBOTR_INCLUDE_DIR AND LIBOTR_LIBRARY ) +- EXECUTE_PROCESS(COMMAND grep "OTRL_VERSION" "${LIBOTR_INCLUDE_DIR}/libotr/version.h" OUTPUT_VARIABLE output) ++ EXECUTE_PROCESS(COMMAND grep "OTRL_VERSION" "${LIBOTR_INCLUDE_DIR}/libotr3/version.h" OUTPUT_VARIABLE output) + STRING(REGEX MATCH "OTRL_VERSION \"[0-9]+\\.[0-9]+\\.[0-9]+" LIBOTR_VERSION "${output}") + STRING(REGEX REPLACE "^OTRL_VERSION \"" "" LIBOTR_VERSION "${LIBOTR_VERSION}") + # Check if version is at least 3.2.0 +diff -urN a/kopete/plugins/otr/authenticationwizard.h b/kopete/plugins/otr/authenticationwizard.h +--- a/kopete/plugins/otr/authenticationwizard.h 2012-08-12 18:09:00.000000000 -0600 ++++ b/kopete/plugins/otr/authenticationwizard.h 2012-11-09 12:15:11.181265336 -0700 +@@ -26,7 +26,7 @@ + */ + + extern "C"{ +-#include "libotr/proto.h" ++#include "libotr3/proto.h" + } + + #include "kopetechatsession.h" +diff -urN a/kopete/plugins/otr/otrlchatinterface.h b/kopete/plugins/otr/otrlchatinterface.h +--- a/kopete/plugins/otr/otrlchatinterface.h 2012-08-12 18:09:00.000000000 -0600 ++++ b/kopete/plugins/otr/otrlchatinterface.h 2012-11-09 12:16:10.141032744 -0700 +@@ -36,10 +36,10 @@ + #include "authenticationwizard.h" + + extern "C" { +-#include <libotr/privkey.h> +-#include <libotr/proto.h> +-#include <libotr/message.h> +-#include <libotr/userstate.h> ++#include <libotr3/privkey.h> ++#include <libotr3/proto.h> ++#include <libotr3/message.h> ++#include <libotr3/userstate.h> + } + + +diff -urN a/kopete/plugins/otr/otrlconfinterface.h b/kopete/plugins/otr/otrlconfinterface.h +--- a/kopete/plugins/otr/otrlconfinterface.h 2012-08-12 18:09:00.000000000 -0600 ++++ b/kopete/plugins/otr/otrlconfinterface.h 2012-11-09 12:15:56.961084991 -0700 +@@ -32,11 +32,11 @@ + #include <kopetechatsession.h> + + extern "C" { +-#include <libotr/privkey.h> +-#include <libotr/proto.h> +-#include <libotr/message.h> +-#include <libotr/userstate.h> +-#include <libotr/context.h> ++#include <libotr3/privkey.h> ++#include <libotr3/proto.h> ++#include <libotr3/message.h> ++#include <libotr3/userstate.h> ++#include <libotr3/context.h> + } + + class KOPETE_OTR_SHARED_EXPORT OtrlConfInterface : public QObject diff --git a/kde-unstable/kdepim-runtime/PKGBUILD b/kde-unstable/kdepim-runtime/PKGBUILD index e8b07d13c..d6e7c783a 100644 --- a/kde-unstable/kdepim-runtime/PKGBUILD +++ b/kde-unstable/kdepim-runtime/PKGBUILD @@ -1,19 +1,19 @@ -# $Id: PKGBUILD 163355 2012-07-11 21:55:34Z andrea $ +# $Id: PKGBUILD 171716 2012-11-21 18:10:32Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdepim-runtime -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc='Extends the functionality of kdepim' arch=('i686' 'x86_64') url='https://projects.kde.org/projects/kde/kdepim-runtime' license=('GPL' 'LGPL' 'FDL') -depends=('kdebase-runtime' 'libkgapi') +depends=('kdebase-runtime' 'kdepimlibs' 'libkgapi') makedepends=('cmake' 'automoc4' 'boost') install="${pkgname}.install" source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('c31f09b734e558f0c8e279270058ec0cc62fed3c') +sha1sums=('d5d47f830786c627e6fb3a336b5506ba525e7e17') build() { cd "${srcdir}" diff --git a/kde-unstable/kdepim/PKGBUILD b/kde-unstable/kdepim/PKGBUILD index 9fe9c9e66..b3d8d37c8 100644 --- a/kde-unstable/kdepim/PKGBUILD +++ b/kde-unstable/kdepim/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 163528 2012-07-14 14:11:27Z andrea $ +# $Id: PKGBUILD 171840 2012-11-21 19:56:05Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -18,20 +18,26 @@ pkgname=('kdepim-akonadiconsole' 'kdepim-korganizer' 'kdepim-kresources' 'kdepim-ktimetracker' + 'kdepim-ktnef' 'kdepim-libkdepim') -pkgver=4.8.97 -pkgrel=2 +pkgver=4.9.80 +pkgrel=1 arch=('i686' 'x86_64') url='http://pim.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdepim') makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'libxss' 'pilot-link' 'kde-agent') - source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('9bd4594ec3151f3cfb6a45d6163405bde4d8b178') +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz" + 'fix-build.patch') +sha1sums=('c139bfb4fc4a39c270de4fea75790fe12cefc89c' + '974056ad2c3a00b33a8ac9403b369ab636000832') build() { - cd "${srcdir}" + cd ${pkgbase}-${pkgver} + patch -p1 -i "${srcdir}"/fix-build.patch + cd .. + mkdir build cd build cmake ../${pkgbase}-${pkgver} \ @@ -44,7 +50,7 @@ build() { package_kdepim-akonadiconsole() { pkgdesc='Akonadi Management and Debugging Console' - depends=('kdepim-libkdepim') + depends=('kdepim-libkdepim' 'nepomuk-widgets') url='http://pim.kde.org' install='kdepim.install' cd "${srcdir}"/build/akonadiconsole @@ -55,7 +61,7 @@ package_kdepim-akregator() { pkgdesc='A Feed Reader for KDE' depends=('kdepim-libkdepim') url="http://kde.org/applications/internet/akregator/" - install='kdepim.install' + install='kdepim-akregator.install' cd "${srcdir}"/build/akregator make DESTDIR="${pkgdir}" install cd "${srcdir}"/build/doc/akregator @@ -84,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() { @@ -132,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() { @@ -143,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 ksendemail libksieve \ - mailfilteragent mailimporter ontologies kontact/plugins/kmail; do + for i in kmail doc/kmail kmailcvt archivemailagent \ + importwizard ksendemail libksieve messagelist mailfilteragent \ + ontologies kontact/plugins/kmail; do cd "${srcdir}"/build/${i} make DESTDIR="${pkgdir}" install done @@ -159,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 } @@ -183,8 +198,8 @@ package_kdepim-kontact() { install='kdepim.install' conflcits=('kdepim-kontactinterfaces') replaces=('kdepim-kontactinterfaces') - for i in kontact/src doc/kontact \ - kontact/plugins/summary kontact/plugins/specialdates; do + for i in kontact/src doc/kontact kontact/plugins/summary \ + kontact/plugins/specialdates doc/kontact-admin; do cd "${srcdir}"/build/${i} make DESTDIR="${pkgdir}" install done @@ -195,12 +210,11 @@ package_kdepim-korganizer() { depends=('kdepim-libkdepim') url="http://kde.org/applications/office/korganizer" install='kdepim-korganizer.install' - cd "${srcdir}"/build/korganizer - make DESTDIR="${pkgdir}" install - cd "${srcdir}"/build/doc/korganizer - make DESTDIR="${pkgdir}" install - cd "${srcdir}"/build/kontact/plugins/korganizer - make DESTDIR="${pkgdir}" install + for i in korganizer doc/korganizer kontact/plugins/korganizer \ + calendarviews; do + cd "${srcdir}"/build/${i} + make DESTDIR="${pkgdir}" install + done } package_kdepim-kresources() { @@ -224,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=() @@ -233,11 +258,11 @@ package_kdepim-libkdepim() { 'kdepim-strigi-analyzer' 'kdepim-akonadi') replaces=('kdepim-icons' 'kdepim-libkleo' 'kdepim-libkpgp' 'kdepim-strigi-analyzer' 'kdepim-akonadi') - for i in akonadi_next calendarsupport calendarviews incidenceeditor-ng \ - kdgantt2 libkdepim libkdepimdbusinterfaces libkleo libkpgp \ - messagecomposer messagecore messagelist messageviewer icons \ - strigi-analyzer templateparser plugins/messageviewer \ - plugins/ktexteditor mailcommon; do + for i in akonadi_next calendarsupport incidenceeditor-ng \ + kdgantt2 libkdepim libkdepimdbusinterfaces libkleo libkpgp \ + mailcommon mailimporter messagecomposer messagecore messageviewer \ + icons strigi-analyzer templateparser plugins/messageviewer \ + plugins/ktexteditor pimcommon pimsettingexporter; do cd "${srcdir}"/build/${i} make DESTDIR="${pkgdir}" install done diff --git a/kde-unstable/kdepim/fix-build.patch b/kde-unstable/kdepim/fix-build.patch index b42046677..7060e814f 100644 --- a/kde-unstable/kdepim/fix-build.patch +++ b/kde-unstable/kdepim/fix-build.patch @@ -1,32 +1,11 @@ -From: Allen Winter <winter@kde.org> -Date: Thu, 31 May 2012 16:58:07 +0000 -Subject: Revert last: Remove X11 requirement -X-Git-Url: http://quickgit.kde.org/?p=kdepim.git&a=commitdiff&h=26f9d62b9a9b4bfa736b342903d16dc0d8739d98 ---- -Revert last: Remove X11 requirement - -CCMAIL: djarvie@kde.org -David, without explicit linking to X11 libs, I get an unresolved -symbol for XSetWMHints ---- - - ---- a/kalarm/CMakeLists.txt -+++ b/kalarm/CMakeLists.txt -@@ -202,6 +202,7 @@ if(KALARM_USE_AKONADI) - kdepim - ${KDE4_KCMUTILS_LIBS} - ${KDE4_PHONON_LIBS} -+ ${X11_X11_LIB} - ) - else(KALARM_USE_AKONADI) - target_link_libraries(kalarm_bin -@@ -220,6 +221,7 @@ else(KALARM_USE_AKONADI) - kdepim - ${KDE4_KCMUTILS_LIBS} - ${KDE4_PHONON_LIBS} -+ ${X11_X11_LIB} - ) - endif(KALARM_USE_AKONADI) +--- kdepim-4.9.0/kleopatra/CMakeLists.txt~ 2012-07-30 08:06:15.031181647 +0000 ++++ kdepim-4.9.0/kleopatra/CMakeLists.txt 2012-07-30 08:07:13.594082584 +0000 +@@ -365,7 +365,7 @@ + endif(KDEPIM_MOBILE_UI) - + add_definitions ( -DKDE_DEFAULT_DEBUG_AREA=5151 ) +- ++add_definitions ( -DBOOST_TT_HAS_OPERATOR_HPP_INCLUDED ) + + kde4_add_app_icon(_kleopatra_mainwindow_SRCS "hi*-app-kleopatra.png") + kde4_add_executable(kleopatra_bin ${_kleopatra_SRCS} ${_kleopatra_mainwindow_SRCS} ${_kleopatra_uiserver_SRCS} ${_kleopatra_libkdepim_SRCS} ) diff --git a/kde-unstable/kdepim/kdepim-akregator.install b/kde-unstable/kdepim/kdepim-akregator.install new file mode 100644 index 000000000..5787df72f --- /dev/null +++ b/kde-unstable/kdepim/kdepim-akregator.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/kde-unstable/kdepim/kdepim-ktnef.install b/kde-unstable/kdepim/kdepim-ktnef.install new file mode 100644 index 000000000..5787df72f --- /dev/null +++ b/kde-unstable/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/kde-unstable/kdepimlibs/PKGBUILD b/kde-unstable/kdepimlibs/PKGBUILD index 46accd73a..9b77f2dbc 100644 --- a/kde-unstable/kdepimlibs/PKGBUILD +++ b/kde-unstable/kdepimlibs/PKGBUILD @@ -1,31 +1,31 @@ -# $Id: PKGBUILD 163445 2012-07-11 23:00:10Z andrea $ +# $Id: PKGBUILD 171711 2012-11-21 18:02:27Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdepimlibs -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="KDE PIM Libraries" arch=('i686' 'x86_64') url='https://projects.kde.org/projects/kde/kdepimlibs' license=('GPL' 'LGPL') -depends=('kdelibs' 'gpgme' 'akonadi' 'libical' 'prison') +depends=('kdelibs' 'gpgme' 'akonadi' 'libical' 'prison' 'qjson') makedepends=('cmake' 'automoc4' 'boost' 'cyrus-sasl') install='kdepimlibs.install' source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('5d8cfed6f902b101a78372ff1b4220dc21a65ed0') +sha1sums=('f792dbc1d0829925939f4fd61fe88d834baca445') build() { - cd "${srcdir}" mkdir build cd build cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_SKIP_RPATH=ON \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { - cd "${srcdir}"/build + cd build make DESTDIR="${pkgdir}" install } diff --git a/kde-unstable/kdeplasma-addons/PKGBUILD b/kde-unstable/kdeplasma-addons/PKGBUILD index c04acefae..30763577f 100644 --- a/kde-unstable/kdeplasma-addons/PKGBUILD +++ b/kde-unstable/kdeplasma-addons/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 164003 2012-07-23 18:40:35Z andrea $ +# $Id: PKGBUILD 171841 2012-11-21 19:57:32Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -56,13 +56,12 @@ pkgname=('kdeplasma-addons-applets-bball' 'kdeplasma-addons-containments' 'kdeplasma-addons-libs' 'kdeplasma-addons-runners-audioplayercontrol' - 'kdeplasma-addons-runners-bing' 'kdeplasma-addons-runners-browserhistory' 'kdeplasma-addons-runners-characters' 'kdeplasma-addons-runners-contacts' 'kdeplasma-addons-runners-converter' 'kdeplasma-addons-runners-datetime' - 'kdeplasma-addons-runners-duckduckgo' + 'kdeplasma-addons-runners-dictionary' 'kdeplasma-addons-runners-events' 'kdeplasma-addons-runners-katesessions' 'kdeplasma-addons-runners-konquerorsessions' @@ -75,26 +74,21 @@ pkgname=('kdeplasma-addons-applets-bball' 'kdeplasma-addons-wallpapers-marble' 'kdeplasma-addons-wallpapers-pattern' 'kdeplasma-addons-wallpapers-potd' + 'kdeplasma-addons-wallpapers-qmlwallpapers' 'kdeplasma-addons-wallpapers-virus' 'kdeplasma-addons-wallpapers-weather') -pkgver=4.8.97 -pkgrel=2 +pkgver=4.9.80 +pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' license=('GPL' 'LGPL') groups=('kde' 'kdeplasma-addons') makedepends=('cmake' 'automoc4' 'kdebase-workspace' 'kdeedu-marble' 'eigen' - 'scim' 'qwt' 'boost' 'libkexiv2' 'ibus' 'qoauth' 'qjson') -source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz" - 'fix-twitter-auth.patch') -sha1sums=('b56299d2197c3b6007454644361671cd7157ba30' - 'dfe2260861047aba9c53c619bbfc2447490ebcc1') + 'scim' 'qwt' 'boost' 'libkexiv2' 'ibus' 'qoauth' 'mesa') +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") +sha1sums=('24d1ecd77e4acc2effc495e098352fdb480fbbce') build() { - cd ${pkgbase}-${pkgver} - patch -p1 -i "${srcdir}"/fix-twitter-auth.patch - cd .. - mkdir build cd build cmake ../${pkgbase}-${pkgver} \ @@ -325,7 +319,7 @@ package_kdeplasma-addons-applets-mediaplayer() { package_kdeplasma-addons-applets-microblog() { pkgdesc='Update and view your microblog status.' - depends=('kdeplasma-addons-libs' 'qoauth' 'qca-ossl' 'qjson') + depends=('kdeplasma-addons-libs' 'qoauth' 'qca-ossl') cd $srcdir/build/applets/microblog make DESTDIR=$pkgdir install } @@ -501,13 +495,6 @@ package_kdeplasma-addons-runners-audioplayercontrol() { make DESTDIR=$pkgdir install } -package_kdeplasma-addons-runners-bing() { - pkgdesc='Matches Bing queries' - depends=('kdebase-workspace') - cd $srcdir/build/runners/bing - make DESTDIR=$pkgdir install -} - package_kdeplasma-addons-runners-browserhistory() { pkgdesc='Searches in Konqueror´s history' depends=('kdebase-workspace') @@ -543,10 +530,10 @@ package_kdeplasma-addons-runners-datetime() { make DESTDIR=$pkgdir install } -package_kdeplasma-addons-runners-duckduckgo() { - pkgdesc='Matches DuckDuckGo queries' +package_kdeplasma-addons-runners-dictionary() { + pkgdesc='Define words' depends=('kdebase-workspace') - cd $srcdir/build/runners/duckduckgo + cd $srcdir/build/runners/dictionary make DESTDIR=$pkgdir install } @@ -601,7 +588,7 @@ package_kdeplasma-addons-runners-spellchecker() { package_kdeplasma-addons-runners-youtube() { pkgdesc='Matches YouTube queries' - depends=('kdebase-workspace') + depends=('kdebase-workspace' 'qjson') install='kdeplasma-addons.install' cd $srcdir/build/runners/youtube make DESTDIR=$pkgdir install @@ -635,6 +622,13 @@ package_kdeplasma-addons-wallpapers-potd() { make DESTDIR=$pkgdir install } +package_kdeplasma-addons-wallpapers-qmlwallpapers() { + pkgdesc='Animated Wallpapers' + depends=('kdebase-workspace') + cd $srcdir/build/wallpapers/qmlwallpapers + make DESTDIR=$pkgdir install +} + package_kdeplasma-addons-wallpapers-virus() { pkgdesc='Virus' depends=('kdebase-workspace') diff --git a/kde-unstable/kdesdk-kate/PKGBUILD b/kde-unstable/kdesdk-kate/PKGBUILD index 8634e0431..b9116693e 100644 --- a/kde-unstable/kdesdk-kate/PKGBUILD +++ b/kde-unstable/kdesdk-kate/PKGBUILD @@ -1,19 +1,19 @@ -# $Id: PKGBUILD 163359 2012-07-11 21:58:15Z andrea $ +# $Id: PKGBUILD 171721 2012-11-21 18:14:22Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgbase=kdesdk-kate pkgname=('kdebase-katepart' 'kdebase-kwrite' 'kdesdk-kate') -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') -makedepends=('kdelibs ''cmake' 'automoc4') +makedepends=('kdelibs ''cmake' 'automoc4' 'kdebindings-python2') source=("http://download.kde.org/unstable/${pkgver}/src/kate-${pkgver}.tar.xz" 'pkgbuild-syntax-highlight.patch') -sha1sums=('2f5481aff6802057ce2b46c6d421c8f5657926b3' - '0a928253bd2077f0264d96a6c8823c69c47b6a8d') +sha1sums=('8d4091c03312a75052b8a81a3c3676acef109a47' + '5b45d0df8f340105633eba9ef7c58086e6c2e750') build() { cd "${srcdir}"/kate-${pkgver} @@ -24,7 +24,8 @@ build() { cd build cmake ../kate-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr + -DCMAKE_INSTALL_PREFIX=/usr \ + -DPYTHON_EXECUTABLE=/usr/bin/python2 make } @@ -54,11 +55,12 @@ package_kdebase-kwrite() { package_kdesdk-kate() { pkgdesc="Advanced Text Editor" - depends=('kdebase-runtime' 'kdebase-katepart') + depends=('kdebase-runtime' 'kdebase-katepart' 'qjson') groups=('kde' 'kdesdk') url="http://www.kde.org/applications/utilities/kate/" install='kdesdk-kate.install' - optdepends=('kdebase-konsole: open a terminal in Kate') + optdepends=('kdebase-konsole: open a terminal in Kate' + 'kdebindings-python2: python bindings') cd "${srcdir}"/build/kate make DESTDIR="${pkgdir}" install diff --git a/kde-unstable/kdesdk-kate/pkgbuild-syntax-highlight.patch b/kde-unstable/kdesdk-kate/pkgbuild-syntax-highlight.patch index 27729d1ad..60c142391 100644 --- a/kde-unstable/kdesdk-kate/pkgbuild-syntax-highlight.patch +++ b/kde-unstable/kdesdk-kate/pkgbuild-syntax-highlight.patch @@ -1,11 +1,11 @@ ---- kate-4.7.80/part/syntax/data/bash.xml~ 2011-11-20 06:14:30.581097154 +0000 -+++ kate-4.7.80/part/syntax/data/bash.xml 2011-11-20 06:14:45.494553146 +0000 +--- kate-4.9.80/part/syntax/data/bash.xml~ 2012-11-16 16:53:27.599718819 +0000 ++++ kate-4.9.80/part/syntax/data/bash.xml 2012-11-16 16:54:27.549287684 +0000 @@ -8,7 +8,7 @@ <!ENTITY noword "(?![\w$+-])"> <!-- no word, $, + or - following --> <!ENTITY pathpart "([\w_@.%*?+-]|\\ )"> <!-- valid character in a file name --> ]> --<language name="Bash" version="2.14" kateversion="2.4" section="Scripts" extensions="*.sh;*.bash;*.ebuild;*.eclass;.bashrc;.bash_profile;.bash_login;.profile" mimetype="application/x-shellscript" casesensitive="1" author="Wilbert Berendsen (wilbert@kde.nl)" license="LGPL"> -+<language name="Bash" version="2.14" kateversion="2.4" section="Scripts" extensions="*.sh;*.bash;*.ebuild;*.eclass;.bashrc;.bash_profile;.bash_login;.profile;PKGBUILD" mimetype="application/x-shellscript" casesensitive="1" author="Wilbert Berendsen (wilbert@kde.nl)" license="LGPL"> +-<language name="Bash" version="2.15" kateversion="2.4" section="Scripts" extensions="*.sh;*.bash;*.ebuild;*.eclass;.bashrc;.bash_profile;.bash_login;.profile" mimetype="application/x-shellscript" casesensitive="1" author="Wilbert Berendsen (wilbert@kde.nl)" license="LGPL"> ++<language name="Bash" version="2.15" kateversion="2.4" section="Scripts" extensions="*.sh;*.bash;*.ebuild;*.eclass;.bashrc;.bash_profile;.bash_login;.profile;PKGBUILD" mimetype="application/x-shellscript" casesensitive="1" author="Wilbert Berendsen (wilbert@kde.nl)" license="LGPL"> <!-- (c) 2004 by Wilbert Berendsen (wilbert@kde.nl) Changes by Matthew Woehlke (mw_triad@users.sourceforge.net) diff --git a/kde-unstable/kdesdk/PKGBUILD b/kde-unstable/kdesdk/PKGBUILD index 3d53a1b69..fe146fe40 100644 --- a/kde-unstable/kdesdk/PKGBUILD +++ b/kde-unstable/kdesdk/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 163434 2012-07-11 22:53:41Z andrea $ +# $Id: PKGBUILD 171842 2012-11-21 19:59:18Z 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.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz" 'fix-python2-path.patch') -sha1sums=('8711677da32d29a38ed96bd9066d5521ea18c37d' +sha1sums=('c9afd6e11f0d2a54706b5dfb79c47ced93a31e99' '923cabd7a877cf9a68efeb24fbf3d5827e1d949e') build() { @@ -167,7 +167,7 @@ package_kdesdk-kuiviewer() { package_kdesdk-lokalize() { pkgdesc='Computer-Aided Translation System' - depends=('kdebase-runtime' 'kdebindings-python2') + depends=('kdebase-runtime' 'kdebindings-python2' 'kdesdk-strigi-analyzer') url="http://kde.org/applications/development/lokalize/" optdepends=('translate-toolkit: enable extra python script') install='kdesdk-lokalize.install' @@ -220,9 +220,9 @@ package_kdesdk-scripts() { # Fix python 2 path sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \ - "${pkgdir}"/usr/bin/kde-systemsettings-tree.py + "${pkgdir}"/usr/bin/{zonetab2pot,kde-systemsettings-tree}.py sed -i 's|#! /usr/bin/env python|#!/usr/bin/env python2|' \ - "${pkgdir}"/usr/bin/{{kdelnk2desktop,zonetab2pot}.py,kde_generate_export_header} + "${pkgdir}"/usr/bin/{kdelnk2desktop.py,kde_generate_export_header} } package_kdesdk-strigi-analyzer() { @@ -235,6 +235,7 @@ package_kdesdk-strigi-analyzer() { package_kdesdk-umbrello() { pkgdesc='UML Modeller' depends=('kdebase-runtime') + optdepends=('ruby') url="http://kde.org/applications/development/umbrello/" install='kdesdk-umbrello.install' cd $srcdir/build/umbrello diff --git a/kde-unstable/kdetoys/PKGBUILD b/kde-unstable/kdetoys/PKGBUILD index 4acc20375..bd496be55 100644 --- a/kde-unstable/kdetoys/PKGBUILD +++ b/kde-unstable/kdetoys/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 163435 2012-07-11 22:54:28Z andrea $ +# $Id: PKGBUILD 171843 2012-11-21 20:00:04Z 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.8.97 +pkgver=4.9.80 pkgrel=1 arch=('i686' 'x86_64') url='http://www.kde.org' @@ -14,7 +14,7 @@ license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdetoys') makedepends=('cmake' 'automoc4' 'kdebase-workspace') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('2ca542d74ff1ef7317a2bc43712fd323efc7fc37') +sha1sums=('0886cff4963f23330dbdc65568b8897f28b12401') build() { cd $srcdir diff --git a/kde-unstable/kdeutils-filelight/PKGBUILD b/kde-unstable/kdeutils-filelight/PKGBUILD index 43adbc851..2c41d5b87 100644 --- a/kde-unstable/kdeutils-filelight/PKGBUILD +++ b/kde-unstable/kdeutils-filelight/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163437 2012-07-11 22:55:34Z andrea $ +# $Id: PKGBUILD 171845 2012-11-21 20:01:09Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-filelight -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc='View disk usage information' url='http://kde.org/applications/utilities/filelight' @@ -15,7 +15,7 @@ replaces=('filelight') conflicts=('filelight') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/filelight-${pkgver}.tar.xz") -sha1sums=('750f96517538f7d299b4dc0dea903e63742e7c49') +sha1sums=('29decc10b702f0e2e0ef75da0e1905db71388cda') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-kcalc/PKGBUILD b/kde-unstable/kdeutils-kcalc/PKGBUILD index f30501f66..cca9a5f86 100644 --- a/kde-unstable/kdeutils-kcalc/PKGBUILD +++ b/kde-unstable/kdeutils-kcalc/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163438 2012-07-11 22:56:09Z andrea $ +# $Id: PKGBUILD 171846 2012-11-21 20:01:41Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kcalc -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/kcalc-${pkgver}.tar.xz") -sha1sums=('d9d83233755e705aa385ec5a39abfafb80922001') +sha1sums=('7ec4953e9f0b9ac26d7cbe10765c2ccd9e0a8a36') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-kcharselect/PKGBUILD b/kde-unstable/kdeutils-kcharselect/PKGBUILD index c86c084ce..21c1db389 100644 --- a/kde-unstable/kdeutils-kcharselect/PKGBUILD +++ b/kde-unstable/kdeutils-kcharselect/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163439 2012-07-11 22:56:50Z andrea $ +# $Id: PKGBUILD 171847 2012-11-21 20:02:17Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kcharselect -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc='Character Selector' url="http://kde.org/applications/utilities/kcharselect/" @@ -12,7 +12,7 @@ depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') source=("http://download.kde.org/unstable/${pkgver}/src/kcharselect-${pkgver}.tar.xz") -sha1sums=('58c4877499e1233076cbca884fdfdd8a04d37ca2') +sha1sums=('33ebdb9ee73c7b4d0130bd230e0a7938f3f06abe') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-kdf/PKGBUILD b/kde-unstable/kdeutils-kdf/PKGBUILD index 696ad7817..a091ccebc 100644 --- a/kde-unstable/kdeutils-kdf/PKGBUILD +++ b/kde-unstable/kdeutils-kdf/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163440 2012-07-11 22:57:22Z andrea $ +# $Id: PKGBUILD 171848 2012-11-21 20:02:47Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kdf -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 url="http://kde.org/applications/system/kdiskfree/" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kdf-${pkgver}.tar.xz") -sha1sums=('f84341b0a6400570802960fffd7bf618282e2604') +sha1sums=('0dede2c0adb2c9e013282253cd86dcd611457989') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-kfloppy/PKGBUILD b/kde-unstable/kdeutils-kfloppy/PKGBUILD index 5b16954f2..a7b8b009a 100644 --- a/kde-unstable/kdeutils-kfloppy/PKGBUILD +++ b/kde-unstable/kdeutils-kfloppy/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163441 2012-07-11 22:57:51Z andrea $ +# $Id: PKGBUILD 171849 2012-11-21 20:03:18Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kfloppy -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/kfloppy-${pkgver}.tar.xz") -sha1sums=('a21e3fc298d7015be965208bec5667ad17a54667') +sha1sums=('de19d2d304323b46e91fae742b2c353583290572') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-kgpg/PKGBUILD b/kde-unstable/kdeutils-kgpg/PKGBUILD index 2eea9e911..9c529889d 100644 --- a/kde-unstable/kdeutils-kgpg/PKGBUILD +++ b/kde-unstable/kdeutils-kgpg/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163442 2012-07-11 22:58:19Z andrea $ +# $Id: PKGBUILD 171850 2012-11-21 20:03:47Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kgpg -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/kgpg-${pkgver}.tar.xz") -sha1sums=('871381198bdf229ce4e2c4f619ba81babc97a415') +sha1sums=('32f2d281433c5b9be712d49c9e5f9e4587345d83') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-kremotecontrol/PKGBUILD b/kde-unstable/kdeutils-kremotecontrol/PKGBUILD index 43f2853ee..0ba2d4c1d 100644 --- a/kde-unstable/kdeutils-kremotecontrol/PKGBUILD +++ b/kde-unstable/kdeutils-kremotecontrol/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kremotecontrol -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/kremotecontrol-${pkgver}.tar.xz") -sha1sums=('5892208920d3466eb29b7b91db768729dca45db2') +sha1sums=('3f421acef70929146354211cdc79c0c58700cc57') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-ktimer/PKGBUILD b/kde-unstable/kdeutils-ktimer/PKGBUILD index 7aeff44fb..4664f6487 100644 --- a/kde-unstable/kdeutils-ktimer/PKGBUILD +++ b/kde-unstable/kdeutils-ktimer/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163450 2012-07-11 23:03:35Z andrea $ +# $Id: PKGBUILD 171852 2012-11-21 20:04:55Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-ktimer -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc='Countdown Launcher' url='http://kde.org/applications/utilities/ktimer/' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/ktimer-${pkgver}.tar.xz") -sha1sums=('a4e2a19f5dcd342d039b8a5c95372f13a668640f') +sha1sums=('4916ddc92dcc5d9ddca459e9fef4c51b44865956') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-kwallet/PKGBUILD b/kde-unstable/kdeutils-kwallet/PKGBUILD index 5e1b6577d..5bc7ff27d 100644 --- a/kde-unstable/kdeutils-kwallet/PKGBUILD +++ b/kde-unstable/kdeutils-kwallet/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163451 2012-07-11 23:04:04Z andrea $ +# $Id: PKGBUILD 171853 2012-11-21 20:05:24Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-kwallet -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc='Wallet Management Tool' url='http://kde.org/applications/system/kwalletmanager/' @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') install=${pkgname}.install source=("http://download.kde.org/unstable/${pkgver}/src/kwallet-${pkgver}.tar.xz") -sha1sums=('601d3fee7551767329aa65a833c22253b49c57f1') +sha1sums=('930bff03f1338c6b4357b42c8a9ce1f2c91db48e') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-print-manager/PKGBUILD b/kde-unstable/kdeutils-print-manager/PKGBUILD new file mode 100644 index 000000000..e88be3aff --- /dev/null +++ b/kde-unstable/kdeutils-print-manager/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 171854 2012-11-21 20:05:56Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdeutils-print-manager +pkgver=4.9.80 +pkgrel=1 +pkgdesc="A tool for managing print jobs and printers" +arch=('i686' 'x86_64') +url='https://projects.kde.org/projects/kde/kdeutils/print-manager' +license=('GPL' 'LGPL' 'FDL') +depends=('kdebase-workspace' 'libcups' 'system-config-printer') +makedepends=('cmake' 'automoc4') +replaces=('print-manager' 'kdeutils-printer-applet') +conflicts=('print-manager') +groups=('kde' 'kdeutils') +source=("http://download.kde.org/unstable/${pkgver}/src/print-manager-${pkgver}.tar.xz") +md5sums=('98678a81d89f7d1671136e81f5e8e01e') + +build() { + mkdir build + cd build + cmake ../print-manager-${pkgver} \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/kdeutils-superkaramba/PKGBUILD b/kde-unstable/kdeutils-superkaramba/PKGBUILD index c123c1bd4..78b7934d2 100644 --- a/kde-unstable/kdeutils-superkaramba/PKGBUILD +++ b/kde-unstable/kdeutils-superkaramba/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163453 2012-07-11 23:04:54Z andrea $ +# $Id: PKGBUILD 171855 2012-11-21 20:06:23Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-superkaramba -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/superkaramba-${pkgver}.tar.xz") -sha1sums=('dd5d13f9ee4708afd1202a0f24e0dd2d6d4161a7') +sha1sums=('7ac9b8150e4469d9a72aa2973a4a6eb3380bc60f') build() { cd "${srcdir}" diff --git a/kde-unstable/kdeutils-sweeper/PKGBUILD b/kde-unstable/kdeutils-sweeper/PKGBUILD index c1009b65c..71f193c29 100644 --- a/kde-unstable/kdeutils-sweeper/PKGBUILD +++ b/kde-unstable/kdeutils-sweeper/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163454 2012-07-11 23:05:27Z andrea $ +# $Id: PKGBUILD 171856 2012-11-21 20:06:54Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=kdeutils-sweeper -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/sweeper-${pkgver}.tar.xz") -sha1sums=('2a6a8dd0301e6a95d02091a3021906af031630bd') +sha1sums=('1df2ef712bddb9d55a440c614c473858ec24d9fe') build() { cd "${srcdir}" diff --git a/kde-unstable/kdewebdev/PKGBUILD b/kde-unstable/kdewebdev/PKGBUILD index 7584025fe..7e5382a78 100644 --- a/kde-unstable/kdewebdev/PKGBUILD +++ b/kde-unstable/kdewebdev/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 163455 2012-07-11 23:06:02Z andrea $ +# $Id: PKGBUILD 171857 2012-11-21 20:07:29Z 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.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz") -sha1sums=('9c1f13cc5dd0c089509e04756bc72eb5aed437fe') +sha1sums=('9fceae50b807b862d80b695bebf6348fdf4cff66') build() { cd $srcdir diff --git a/kde-unstable/libkcddb/PKGBUILD b/kde-unstable/libkcddb/PKGBUILD index 334a772ac..961c7c7d1 100644 --- a/kde-unstable/libkcddb/PKGBUILD +++ b/kde-unstable/libkcddb/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163375 2012-07-11 22:10:14Z andrea $ +# $Id: PKGBUILD 171738 2012-11-21 18:30:35Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkcddb -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('5ca224e3debf8d48358d32c69bce488753ba47c2') +sha1sums=('b7bfdec3f562deed9e2537051d497a72b1ec26a4') build() { cd "${srcdir}" diff --git a/kde-unstable/libkcompactdisc/PKGBUILD b/kde-unstable/libkcompactdisc/PKGBUILD index 937f8cd18..19393560e 100644 --- a/kde-unstable/libkcompactdisc/PKGBUILD +++ b/kde-unstable/libkcompactdisc/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163376 2012-07-11 22:10:46Z andrea $ +# $Id: PKGBUILD 171739 2012-11-21 18:31:12Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkcompactdisc -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('9e5acb7c8017f3ed0698a633683ef0c30d258312') +sha1sums=('2b2bf035690da07c12217e06858e0b342505dad7') build() { cd "${srcdir}" diff --git a/kde-unstable/libkdcraw/PKGBUILD b/kde-unstable/libkdcraw/PKGBUILD index c809bec6a..872bfa442 100644 --- a/kde-unstable/libkdcraw/PKGBUILD +++ b/kde-unstable/libkdcraw/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163370 2012-07-11 22:07:38Z andrea $ +# $Id: PKGBUILD 171733 2012-11-21 18:27:47Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkdcraw -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('2e64db1b96b48e2f52baa1e66d8914b75640602c') +sha1sums=('d49164f9524345e7485242aacda20ca9c7c04722') build() { cd "${srcdir}" diff --git a/kde-unstable/libkdeedu/PKGBUILD b/kde-unstable/libkdeedu/PKGBUILD index 9e720d5d0..c3575de22 100644 --- a/kde-unstable/libkdeedu/PKGBUILD +++ b/kde-unstable/libkdeedu/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163368 2012-07-11 22:05:50Z andrea $ +# $Id: PKGBUILD 171730 2012-11-21 18:26:06Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkdeedu -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('65e9a0054eac02b0232b647a82d9a4f72a0644a2') +sha1sums=('d76f9cc99b98ce7368d2b72737b949777d758705') build() { cd "${srcdir}" diff --git a/kde-unstable/libkdegames/PKGBUILD b/kde-unstable/libkdegames/PKGBUILD new file mode 100644 index 000000000..893d769c2 --- /dev/null +++ b/kde-unstable/libkdegames/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171740 2012-11-21 18:31:46Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=libkdegames +pkgver=4.9.80 +pkgrel=1 +pkgdesc="Common code and data for many KDE games" +url="https://projects.kde.org/projects/kde/kdegames/libkdegames" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdelibs' 'openal') +makedepends=('cmake' 'automoc4') +replaces=('kdegames-libkdegames') +conflicts=('kdegames-libkdegames') +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") +sha1sums=('ddeae85ab3a6ec74588471897acd7f017c2df823') + +build() { + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/libkexiv2/PKGBUILD b/kde-unstable/libkexiv2/PKGBUILD index 3f0bafca5..efe2ea679 100644 --- a/kde-unstable/libkexiv2/PKGBUILD +++ b/kde-unstable/libkexiv2/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163371 2012-07-11 22:08:13Z andrea $ +# $Id: PKGBUILD 171734 2012-11-21 18:28:23Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkexiv2 -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="A library to manipulate pictures metadata" url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2" @@ -13,7 +13,7 @@ makedepends=('cmake' 'automoc4') replaces=('kdegraphics-libs') conflicts=('kdegraphics-libs') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('6d93848eae11495ced6a93891b8f1e09310237ce') +sha1sums=('c6b1088ee658e0cbdd76a5b67561d4f77090a936') build() { cd "${srcdir}" diff --git a/kde-unstable/libkipi/PKGBUILD b/kde-unstable/libkipi/PKGBUILD index 018c37b20..97bb0a662 100644 --- a/kde-unstable/libkipi/PKGBUILD +++ b/kde-unstable/libkipi/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkipi -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('bce6a8783f36db958890f5b162441a7f550e1a6a') +sha1sums=('97ac7e6df6aac11f48ccc146ef4473f9162644b1') build() { cd "${srcdir}" diff --git a/kde-unstable/libkmahjongg/PKGBUILD b/kde-unstable/libkmahjongg/PKGBUILD new file mode 100644 index 000000000..17cb7af63 --- /dev/null +++ b/kde-unstable/libkmahjongg/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 171741 2012-11-21 18:32:34Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=libkmahjongg +pkgver=4.9.80 +pkgrel=1 +pkgdesc="Common code, backgrounds and tile sets for games using Mahjongg tiles" +url="https://projects.kde.org/projects/kde/kdegames/libmahjongg" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdelibs') +makedepends=('cmake' 'automoc4') +replaces=('kdegames-libkmahjongg') +conflicts=('kdegames-libkmahjongg') +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") +sha1sums=('13fda308bc5371eb48f5535a34f0f6edb9319659') + +build() { + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/kde-unstable/libksane/PKGBUILD b/kde-unstable/libksane/PKGBUILD index d38bcbf41..e0ba0e082 100644 --- a/kde-unstable/libksane/PKGBUILD +++ b/kde-unstable/libksane/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 163373 2012-07-11 22:09:10Z andrea $ +# $Id: PKGBUILD 171736 2012-11-21 18:29:25Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libksane -pkgver=4.8.97 +pkgver=4.9.80 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/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('221dd7e63335f23682e61ab6c3cde471ad06282d') +sha1sums=('b1e33f62cc3bfbb99deceab63ead8c4d9fca825f') build() { cd "${srcdir}" diff --git a/kde-unstable/nepomuk-core/PKGBUILD b/kde-unstable/nepomuk-core/PKGBUILD index 044556063..cba123fab 100644 --- a/kde-unstable/nepomuk-core/PKGBUILD +++ b/kde-unstable/nepomuk-core/PKGBUILD @@ -1,20 +1,19 @@ -# $Id: PKGBUILD 163352 2012-07-11 21:53:39Z andrea $ +# $Id: PKGBUILD 171713 2012-11-21 18:08:37Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=nepomuk-core -pkgver=4.8.97 +pkgver=4.9.80 pkgrel=1 pkgdesc="Contains the central Nepomuk services like file indexing, file system monitoring, query, storage, client libraries" url="https://projects.kde.org/projects/kde/kdelibs/nepomuk-core" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') -depends=('kdelibs') +depends=('kdelibs' 'poppler-qt' 'taglib' 'ffmpeg') makedepends=('cmake' 'automoc4' 'doxygen') source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('6d456fd2de9daa8b97c730346b7377b8df265e56') +sha1sums=('c296a0e4a601d7f0afece4a27cdbcc220692c4f7') build() { - cd "${srcdir}" mkdir build cd build cmake ../${pkgname}-${pkgver} \ diff --git a/kde-unstable/nepomuk-widgets/PKGBUILD b/kde-unstable/nepomuk-widgets/PKGBUILD new file mode 100644 index 000000000..228a2f301 --- /dev/null +++ b/kde-unstable/nepomuk-widgets/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 171742 2012-11-21 18:33:10Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=nepomuk-widgets +pkgver=4.9.80 +pkgrel=1 +pkgdesc="The Library containing the Nepomuk Widgets" +url="https://projects.kde.org/projects/kde/kdelibs/nepomuk-widgets" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('nepomuk-core') +makedepends=('cmake' 'automoc4') +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") +sha1sums=('ed84cb208430afcb30d41ee5ab456ed3edd211f4') + +build() { + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/libre/gst-plugins-bad-libre/PKGBUILD b/libre/gst-plugins-bad-libre/PKGBUILD index 2e0658cfb..e96c047a8 100644 --- a/libre/gst-plugins-bad-libre/PKGBUILD +++ b/libre/gst-plugins-bad-libre/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 153258 2012-03-12 16:05:19Z jgc $ +# $Id: PKGBUILD 171693 2012-11-21 14:33:55Z heftig $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Maintainer (Parabola): Márcio Silva <coadde@lavabit.com> pkgbase=gst-plugins-bad pkgname=gst-plugins-bad-libre -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc='GStreamer Multimedia Framework Bad Plugins, without nonfree faac support' arch=( @@ -57,7 +57,7 @@ source=( "$url/src/$pkgbase/$pkgbase-$pkgver.tar.xz" ) sha256sums=( - 9e503305799a2b6eb9d0b77c59b8aa8bbe9e6eb815a0635bd013560c73996579 + 2eae746be0b4c7fa2f1e057c91bd36940d7c25593ab612b707904461360031f0 ) build() { diff --git a/libre/iceweasel-i18n/PKGBUILD b/libre/iceweasel-i18n/PKGBUILD index 6fd6aaf03..406cb3c32 100644 --- a/libre/iceweasel-i18n/PKGBUILD +++ b/libre/iceweasel-i18n/PKGBUILD @@ -9,18 +9,18 @@ # - Run 'make'. It will take care of everything else for you. _debname=iceweasel -_debver=16.0.2 +_debver=17.0 _debrel=1 _debrepo=http://ftp.debian.org/debian/pool/main/ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } -_langpacks=(ach af ak ar as ast be bg bn-BD bn-IN br bs ca cs csb cy da de el en-GB en-ZA eo es-AR es-CL es-ES es-MX et eu fa ff fi fr fy-NL ga-IE gd gl gu-IN he hi-IN hr hu hy-AM id is it ja kk km kn ko ku lg lij lt lv mai mk ml mr nb-NO nl nn-NO nso or pa-IN pl pt-BR pt-PT rm ro ru si sk sl son sq sr sv-SE ta-LK ta te th tr uk vi zh-CN zh-TW zu) +_langpacks=(ach af ak ar as ast be bg bn-BD bn-IN br bs ca cs csb cy da de el en-GB en-ZA eo es-AR es-CL es-ES es-MX et eu fa ff fi fr fy-NL ga-IE gd gl gu-IN he hi-IN hr hu hy-AM id is it ja kk km kn ko ku lg lij lt lv mai mk ml mr nb-NO nl nn-NO nso or pa-IN pl pt-BR pt-PT rm ro ru si sk sl son sq sr sv-SE ta ta-LK te th tr uk vi zh-CN zh-TW zu) pkgbase=iceweasel-i18n pkgname=($(for lang in ${_langpacks[@]} do echo $pkgbase-$lang | tr A-Z a-z done)) -_pkgver=16.0.2 +_pkgver=17.0 pkgver=${_debver}.${_debrel} pkgrel=1 @@ -56,91 +56,91 @@ package_iceweasel-i18n-$(echo $lang | tr A-Z a-z)() { " done -md5sums=('7917e479db04573f738d25d9a57cb049' - 'ec1fadd5879ebbd7884b00c15e8148a8' - 'fc281450b90d5e7861ac4f555d5ea871' - '1fe8f0d56b76f2bd627627098813ace2' - 'fb3a5c73b806bbd7bd50a64a5894c831' - '84e222c9a5caa3cfd30b8c79cf49ae20' - '7a8b1160c2ac40dac7bb3ef788d7e2d0' - '3b974c5d14de638a36ee6b6e3a1fab94' - '6b40f968cd7c4a19ddc252fedf88dcbc' - 'd6f533690c8570150ea193e4784fa37e' - '75bcfbbacde730ec498345994d5da699' - '322971c545da5815bfaf9c9f5b380ea4' - '7da8514ff56ad89db85cf160bc02d8cc' - '8b748543ca637db910531f35fcc7eb1e' - '3a5188077b07d50a60c19a9be34fef2e' - 'c2f01b10da3a49049dadf13e7d62194b' - '97045cfea1caf0730557171a2dbc1384' - '969c813859367a254d7edbb16e323d62' - '479b9f915480af5c4cda1477bcc745f6' - '081f3d13f05b9d44d5bb2d7842998d68' - 'c527200432799e3a37180439074f7616' - '6b688e726d273c21bb08f9e09a3dae48' - 'b912eedaed384be13d99cbe769bb3683' - '9d828a0459fbb3997ade5a2c4bcfff35' - '67b79482d42d8057d0e66a8d00314efb' - 'da9661e6211765ca9d503d1ff0aaeec1' - 'e31f997e78fc2069b91a25cf71ee4a43' - '5207746c0154fc737d3bbeb5d468651b' - '191e284c168827fd4344f25c287f21d1' - 'ebcb9f2fb2571d045d3e19ee9d8cbb9f' - '81c5e660d89148f0ca7da1186f1cda3a' - 'ca8a2f10358da70d30c8a6af7bc44d54' - '8581d1f7e7e3a850d360e4da7506d166' - 'd4811aef8cdc90b6661a669ffad2ead8' - '41a9cd0e8ea9d71f4d82ac0f4e4911c0' - 'e00759dd17ea1647afe40c1b9f676187' - 'b145a19de88d7c62e319e5719cc079d5' - '817beaa2dab8f01cfcc5f034d537f97b' - '48257dba1a8ca1ccd9e75cf5d00819df' - '2036c221e16ea942795eae837a690615' - 'fc879e816fd4e831f47d14a3ed2442d7' - '1851131108d0f9665cddaf636c5de826' - '557c1a2d9176bde516c45112ae4632e8' - '9142dcd98b5ec1783d72ffcb1326aae7' - 'f4c0f20255fd7f715a923cd6f81301ca' - '1f65f925300b5e4317018d80d147fb46' - '955cba749d29a3608fb70e5914835f2b' - '7ad38d60e90f96404860ef281bddfe17' - 'd14126daf1067c19297ff1a94dc91e27' - 'a1e55184abcd990206c5c82d7445b53e' - '9e1eeb91fb680c4b09ed1439c8af4265' - 'b313eb3158561713f00eec0b3ff82739' - 'e42c798d9371109be8595653c87a96e6' - '499cb790565eb93e4387120815bc0d3f' - 'efed1f452372a569002282819f2828e8' - '6e6e1215ffcc77fbd5deac9b3856ecff' - '5905c1911035d9576e84791ac4416f23' - 'd7a49fa9daec5c4c403633e04ec03b49' - '58d91d27d4e9bb8106534bac2562c566' - '73fe09d52c99ede62bd8fd07c4780ee4' - '19eb3d4c88d80035645bbd6a992bf938' - '51a35fae949c997b5a300211a967d36d' - '579a02556b1200fc749600390dfb9d97' - '2d7f14c47a9b974a69bfb5f821c6f04b' - '8622ac1bb52fb56af89e26f2d2a98ffd' - 'f5073a3e7bbbc71184a29d567c3d0914' - '8979aaa64b9300ef245cb6368f1e3275' - '1444fd6ec5639b51fc4c15c3fc7d41ec' - '0eb171065c77b27c5aed4aa11fa2a6f4' - '4b2a490537405ceb2935225807d4bde9' - '69db8437023d658c5da0cf7388b1f579' - '8d6bf855d5070624268cc175f3e86a14' - '3edd9eea3d25fecb21787ce83499c994' - '3ab336a082a86f9c7df7a7873f40a6e9' - 'b798317e831b5b9a06161bdaf119ad4d' - 'e86a78e5bfcba6f45b9f0bbf42c5ad89' - '8f0a46cdd135c0d8858c409cbca4e9cd' - '0a78294d15ef47fb1916ca129c5348c0' - '625fb622c634c035f4b326928c776392' - '6b528ef1c3427e799d924b12a5e1fb39' - 'c790339622a85b5b307fb4a8fa496fe7' - '56021c871cce43c64bc6ddff5f794f31' - 'babbd7cde37d24463ea5d8a389abd512' - '6eb58fc54626a3b8d58c03f37dfc2ec1' - '782d556e773cb97298592fedabdc9a7f' - 'f2cf5e5a2b244d0afab2edd193209039' - '973c9e08c3329ba51625272db30d9d6c' - '28055c70eda06dcf371f0399dce94e8b') +md5sums=('aca195b6aa9da7fbf568c08f66f966f2' + 'e026ffecfd999b9ec8a38f3f2f29f4b5' + '4e1e3a700a7c64556fe7281447b2ee08' + '68586be8b467b4faf8e0822817a8a844' + '0855365b830c4558ec23b0976d258356' + '0e4857a39eab45b03607f0a18d469be6' + '3d47320eb012880e38344237cd2ee1ff' + 'd37290ecae4792f97302347c2d9b72fa' + 'ff8b22a9853a0876b42254dc856f8222' + '1d57aefb5d8200756e5751b6b660ba69' + 'b527326e74cb330a0e2ec36f47930e90' + '8a4ad51e5a9328b3437a5b1dc0ecf613' + 'c58a6d0ae9bc48d01775f91d84c8afda' + '01ffe65230eaf9551ea45d6d2d607cdc' + '735c3e03920964711b9914710fe37b56' + 'e25a3627c72b4e7a52bf00ccc087aa69' + 'f576d51ac7fa505133f75634af3a14dc' + 'd82798c091826fcff1552240669bf72d' + 'cdd5ec962ed5507eb63ff3cb42f77e19' + '8ff7b9281ffecc76831315ce3423db93' + 'e53f4816e34487e6c659dff373aae482' + 'cf7793dfcbf18d97ffd7168228767da8' + '20ca3aee8bf43c675f7fb160f5f3359e' + '228e40322a1fcf6fed867fec81b7c702' + 'a17b3619eeb977c11e5f99b527c26c12' + '180b5a570d1117d0f08c7ca9f43e9796' + 'c1a2dc0954ec3d58de0b46f9efb56c86' + 'df546f876542bd474656fc27bfea8afe' + 'fdb7d6212ed888759422222018289c27' + 'af55d3b4ab09fefde72a14f2d869bedb' + 'a0235aace986ccf2f66b8f7e3b7878af' + '4550a84b0884a7eb2530031b8cf7bd13' + '1a81ba0771c82680cb10182247503703' + '99950e68df786e47b896e784bd749d53' + '81f8ff7132d27e04ef18e743aeb7e6b5' + 'bffdcadd6c0e44013eca8d3cb3ff4e91' + '44726dde95fb92a9c96de3424784b420' + 'e70e64366cb381b583e19945ec78f465' + '38fcd722bc60540ecb347b52237595d2' + 'dfcc1dad5e95a1460737c70ccd4b5735' + '941183e99dc85e6b8a834a52f101784a' + 'eb2e91b9991161891d039eb4c40a25a3' + '7c509a226c72005e5c9bf4e83bb80abf' + 'cf7ce1659ee0af3fd6e9fccf6b0b7d62' + 'ab47d4c2d8ecf8c9a093529edc4cdd17' + '236cfdaa476eabe1d89e5d03ae83c5f0' + 'ab572cadb8b952aa0d165ff796f92084' + '8c7396b7010b6afe8b1cc5625405762c' + '2adac2f2c2bfc1216b3d7e3944e5a6c5' + 'fc544cdd63ce46d72694f296b90e807d' + '46ebea9850dd4f8b5bc8134b0e00fa88' + '8459c0e2ee2ad97b8828b3ae458c7a30' + '212ad5e037ae26e06a29e96076a46d88' + '483f0bc2b12782d93aff4ebd6c9d72bc' + '69331b072dc1978c7aedc05105b3dab7' + '9c325dc249e935e32c1bf573a8bf8a03' + 'dc065160d7d7109aca5e5abee88a38dd' + '63e0f6e5123b976ba91679e4b0668117' + '670301325560f01a65a1516c063ba0ab' + 'bf5754aa9937ca01796724bad4128348' + 'd37a9af438ede3c95c4147776c1881c7' + '00b6aa1338665c1ddd830332eba3e869' + 'fd6df56ae64208669b771cd44edbdf22' + 'd28ba0c094d0ac6ca8839b6f24b8e36d' + 'ddb04a9c43a0a7e3a410a56292abeab0' + '195d2b735f34c04505ca68c0f614805a' + '6fc7618c6bd4143a8f1e58a560b7a9b2' + 'aa1558345b96e6cc3b0c9c22fe3540a8' + '37a43a703b46f3275f960abd9852bae3' + '523d2d66af36dbd862156fefd183169a' + 'af4e4651a8e379d9ca151ae3180d4090' + '79240b7df3c53d122ddf7c734e83fdfa' + '4bc316dfd0cbb235e787f031155a70f4' + 'e04f0b6cb1c79345a989feeaba6adba0' + '4d294d9984a14c7f703a9e92a5144de9' + 'b1d70ed8d43a3655c2134c7ee32552b3' + '4b0decc563ef2f308cb76691e7a20ef6' + 'eec9a1717554a85671d4971757cb302d' + '588bb4c21d74f3db326ca527dc9fe593' + '704173008a109a4ca888bce6abdd1ea0' + '8c230dd567c576ca9e2d7cd40923623c' + '6dd510df2583839646268121db4ee517' + '2b915a4d899364934bc04e3ffe693279' + '3ac196603d06fa52746c56b431f0778d' + '90ff7e2af56d59cefb941043e6bcd5d5' + '77a39f2723940c6312798c65dbb602dc' + 'd7fe6dded2ac3aa1dc697e3b46c8d4d5' + 'feff9895b8d7678e208947c40c7f53e0')
\ No newline at end of file diff --git a/libre/iceweasel-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch b/libre/iceweasel-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch index a5fe02165..69fe5c072 100644 --- a/libre/iceweasel-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch +++ b/libre/iceweasel-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch @@ -267,10 +267,10 @@ index f35c227..7062886 100644 %{C++
diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
-index 60348b5..c240c4f 100644
+index 68a52e6..02bb30e 100644
--- a/toolkit/xre/nsAppRunner.cpp
+++ b/toolkit/xre/nsAppRunner.cpp
-@@ -3651,7 +3651,7 @@ XREMain::XRE_mainRun()
+@@ -3669,7 +3669,7 @@ XREMain::XRE_mainRun()
if (gDoProfileReset) {
// Automatically migrate from the current application if we just
// reset the profile.
diff --git a/libre/iceweasel-libre/PKGBUILD b/libre/iceweasel-libre/PKGBUILD index 7532436d7..185f1c039 100644 --- a/libre/iceweasel-libre/PKGBUILD +++ b/libre/iceweasel-libre/PKGBUILD @@ -14,7 +14,7 @@ _pgo=false # We're getting this from Debian Experimental _debname=iceweasel -_debver=16.0.2 +_debver=17.0 _debrel=1 _debrepo=http://ftp.debian.org/debian/pool/main/ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } @@ -52,8 +52,8 @@ source=("${_debrepo}/`debfile ${_debname}`_${_debver}.orig.tar.bz2" vendor.js shared-libs.patch Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch) -md5sums=('4a4f19048e34f7f0a2d28adc351df1ed' - 'ee38477dd7ede1c32e559ee74139b5c9' +md5sums=('3e555026478026987753b4859ec91d3b' + '9b07815d94b8190c780fac10009025b9' 'eab149c1994ab14392e55af3abb08e80' 'ac29b01c189f20abae2f3eef1618ffc0' 'a485a2b5dc544a8a2bd40c985d2e5813' @@ -61,7 +61,7 @@ md5sums=('4a4f19048e34f7f0a2d28adc351df1ed' 'abf5ecb74caa857abb42bcfbb3442d9c' '0d053487907de4376d67d8f499c5502b' '52e52f840a49eb1d14be1c0065b03a93' - '0a31239f1008038df5057982fe745dec') + '65f68090d2a69b467bd2707d0c4ea3bd') if [ "$_pkgname" != "$pkgname" ]; then provides+=("$_pkgname=$pkgver") diff --git a/libre/linux-libre-kmod-alx/PKGBUILD b/libre/linux-libre-kmod-alx/PKGBUILD index 68dfccc79..f7bf76187 100644 --- a/libre/linux-libre-kmod-alx/PKGBUILD +++ b/libre/linux-libre-kmod-alx/PKGBUILD @@ -1,11 +1,11 @@ # Maintainer: André Silva <emulatorman@lavabit.com> -_kernver=3.6.6 +_kernver=3.6.7 _kernrel=1 pkgname=('linux-libre-kmod-alx') _pkgver=2012-10-03 pkgver=20121003 -pkgrel=5 +pkgrel=6 pkgdesc='Atheros alx ethernet device driver for linux-libre kernel' arch=('i686' 'x86_64') url='http://linuxwireless.org/' diff --git a/libre/linux-libre-lts-kmod-alx/PKGBUILD b/libre/linux-libre-lts-kmod-alx/PKGBUILD index 65bae7c0b..5892fa794 100644 --- a/libre/linux-libre-lts-kmod-alx/PKGBUILD +++ b/libre/linux-libre-lts-kmod-alx/PKGBUILD @@ -1,11 +1,11 @@ # Maintainer: André Silva <emulatorman@lavabit.com> -_kernver=3.0.51 +_kernver=3.0.52 _kernrel=1 pkgname=('linux-libre-lts-kmod-alx') _pkgver=2012-10-03 pkgver=20121003 -pkgrel=6 +pkgrel=7 pkgdesc='Atheros alx ethernet device driver for linux-libre-lts kernel' arch=('i686' 'x86_64') url='http://linuxwireless.org/' diff --git a/libre/unar/PKGBUILD b/libre/unar/PKGBUILD new file mode 100755 index 000000000..e1664e809 --- /dev/null +++ b/libre/unar/PKGBUILD @@ -0,0 +1,42 @@ +# Maintainer: Cedric Girard <girard.cedric@gmail.com> +# Contributor: N30N <archlinux@alunamation.com> + +pkgname=unar +pkgver=1.4 +pkgrel=1 +pkgdesc="An Objective-C application for uncompressing archive files" +arch=('x86_64' 'i686' 'mips64el') +url="http://unarchiver.c3.cx/" +license=('LGPL2.1') +depends=('gnustep-base' 'openssl' 'bzip2' 'icu' 'gcc-libs' 'zlib') +makedepends=('gcc-objc') +replaces=("unarchiver") +conflicts=("unarchiver") +provides=("unarchiver") +source=("http://theunarchiver.googlecode.com/files/${pkgname}${pkgver}_src.zip" + "native_obj_exceptions.patch") + +build() { + cd "$srcdir/The Unarchiver" + + patch -p1 < ../native_obj_exceptions.patch + + cd XADMaster + . /usr/share/GNUstep/Makefiles/GNUstep.sh + make -f Makefile.linux +} + +package() { + cd "$srcdir/The Unarchiver/XADMaster" + install -d "$pkgdir/usr/bin/" + install -m755 unar lsar "$pkgdir/usr/bin/" + + cd "$srcdir/The Unarchiver/Extra" + install -d "$pkgdir/usr/share/man/man1" + gzip -c lsar.1 > "$pkgdir/usr/share/man/man1"/lsar.1.gz + gzip -c unar.1 > "$pkgdir/usr/share/man/man1"/unar.1.gz +} + +# vim:set ts=2 sw=2 et: +md5sums=('ae5233dd835229f867f0948d28dde0d6' + '4fa4ecc6e4ba14d3b6952d064e728511') diff --git a/libre/unar/libz.patch b/libre/unar/libz.patch new file mode 100755 index 000000000..acba51463 --- /dev/null +++ b/libre/unar/libz.patch @@ -0,0 +1,13 @@ +diff -Naur The Unarchiver/XADMaster/Makefile.linux The Unarchiver_patched/XADMaster/Makefile.linux +--- The Unarchiver/XADMaster/Makefile.linux 2011-04-27 03:32:21.000000000 +0200 ++++ The Unarchiver_patched/XADMaster/Makefile.linux 2011-12-22 10:56:13.749166606 +0100 +@@ -51,7 +51,8 @@ + -licuuc \ + -lobjc \ + -lstdc++ \ +- -lm ++ -lm \ ++ -lz + + LDFLAGS = -Wl,--whole-archive \ + -fexceptions \ diff --git a/libre/unar/native_obj_exceptions.patch b/libre/unar/native_obj_exceptions.patch new file mode 100755 index 000000000..9c84918b2 --- /dev/null +++ b/libre/unar/native_obj_exceptions.patch @@ -0,0 +1,22 @@ +diff -Naur The Unarchiver/UniversalDetector/Makefile.linux The Unarchiver_patched/UniversalDetector/Makefile.linux +--- The Unarchiver/UniversalDetector/Makefile.linux 2011-04-27 03:32:21.000000000 +0200 ++++ The Unarchiver_patched/UniversalDetector/Makefile.linux 2011-12-22 10:48:32.138621163 +0100 +@@ -16,7 +16,6 @@ + + GNUSTEP_OPTS = -DGNUSTEP \ + -DGNU_RUNTIME=1 \ +- -D_NATIVE_OBJC_EXCEPTIONS \ + -fgnu-runtime \ + -fexceptions \ + -fobjc-exceptions \ +diff -Naur The Unarchiver/XADMaster/Makefile.linux The Unarchiver_patched/XADMaster/Makefile.linux +--- The Unarchiver/XADMaster/Makefile.linux 2011-04-27 03:32:21.000000000 +0200 ++++ The Unarchiver_patched/XADMaster/Makefile.linux 2011-12-22 10:48:15.488721721 +0100 +@@ -16,7 +16,6 @@ + + GNUSTEP_OPTS = -DGNUSTEP \ + -DGNU_RUNTIME=1 \ +- -D_NATIVE_OBJC_EXCEPTIONS \ + -fgnu-runtime \ + -fexceptions \ + -fobjc-exceptions \ diff --git a/libre/xulrunner-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch b/libre/xulrunner-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch index a5fe02165..69fe5c072 100644 --- a/libre/xulrunner-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch +++ b/libre/xulrunner-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch @@ -267,10 +267,10 @@ index f35c227..7062886 100644 %{C++
diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
-index 60348b5..c240c4f 100644
+index 68a52e6..02bb30e 100644
--- a/toolkit/xre/nsAppRunner.cpp
+++ b/toolkit/xre/nsAppRunner.cpp
-@@ -3651,7 +3651,7 @@ XREMain::XRE_mainRun()
+@@ -3669,7 +3669,7 @@ XREMain::XRE_mainRun()
if (gDoProfileReset) {
// Automatically migrate from the current application if we just
// reset the profile.
diff --git a/libre/xulrunner-libre/PKGBUILD b/libre/xulrunner-libre/PKGBUILD index 745723604..e9cd2a447 100644 --- a/libre/xulrunner-libre/PKGBUILD +++ b/libre/xulrunner-libre/PKGBUILD @@ -6,7 +6,7 @@ # We're getting this from Debian Experimental _debname=iceweasel -_debver=16.0.2 +_debver=17.0 _debrel=1 _debrepo=http://ftp.debian.org/debian/pool/main/ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } @@ -18,7 +18,7 @@ pkgrel=1 pkgdesc="Mozilla Runtime Environment" arch=('i686' 'x86_64' 'mips64el') license=('MPL' 'GPL' 'LGPL') -depends=('gtk2' 'mozilla-common' 'nss>=3.13.1' 'libxt' 'libxrender' 'hunspell' 'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 'sqlite3>=3.7.4' 'libnotify' 'libvpx' 'python2') +depends=('gtk2' 'mozilla-common' 'nss>=3.13.1' 'libxt' 'libxrender' 'hunspell' 'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 'sqlite3>=3.7.4' 'libvpx' 'python2') makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'wireless_tools' 'yasm' 'mesa' 'autoconf2.13' 'quilt') url="http://wiki.mozilla.org/XUL:Xul_Runner" source=("${_debrepo}/`debfile ${_debname}`_${_debver}.orig.tar.bz2" @@ -30,11 +30,11 @@ options=('!emptydirs') conflicts=('xulrunner') provides=("xulrunner=${_debver}") replaces=('xulrunner-oss' 'xulrunner') -md5sums=('4a4f19048e34f7f0a2d28adc351df1ed' - 'ee38477dd7ede1c32e559ee74139b5c9' +md5sums=('3e555026478026987753b4859ec91d3b' + '9b07815d94b8190c780fac10009025b9' 'f2f4f4a573f549e8b494e33b3ad226bc' '27271ce647a83906ef7a24605e840d61' - '0a31239f1008038df5057982fe745dec') + '65f68090d2a69b467bd2707d0c4ea3bd') build() { export QUILT_PATCHES=debian/patches diff --git a/pcr/gtkmm-utils/PKGBUILD b/pcr/gtkmm-utils/PKGBUILD new file mode 100644 index 000000000..e3fdfd4a0 --- /dev/null +++ b/pcr/gtkmm-utils/PKGBUILD @@ -0,0 +1,27 @@ +# Contributor: TDY <tdy@gmx.com> +# Contributor: Michele Vascellari <michele.vascellari@gmail.com> +# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io> + +pkgname=gtkmm-utils +pkgver=0.4.1 +pkgrel=2 +pkgdesc="High level utility functions/classes/widgets for gtkmm and glibmm" +arch=('i686' 'x86_64') +url="http://gtkmm-utils.googlecode.com/" +license=('GPL') +depends=('gtkmm') +makedepends=('pkgconfig>=0.9.0') +source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz + $pkgname-glib.diff) + +build() { + cd "$srcdir/$pkgname-$pkgver" + patch -Np1 -i "$srcdir/$pkgname-glib.diff" + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} diff --git a/pcr/gtkmm-utils/gtkmm-utils-glib.diff b/pcr/gtkmm-utils/gtkmm-utils-glib.diff new file mode 100644 index 000000000..fbe21bb3f --- /dev/null +++ b/pcr/gtkmm-utils/gtkmm-utils-glib.diff @@ -0,0 +1,25 @@ +diff -Naur gtkmm-utils-0.4.1~/glibmm-utils/date.cc gtkmm-utils-0.4.1/glibmm-utils/date.cc +--- gtkmm-utils-0.4.1~/glibmm-utils/date.cc 2012-11-21 11:43:42.726346909 -0600 ++++ gtkmm-utils-0.4.1/glibmm-utils/date.cc 2012-11-21 11:44:27.172760954 -0600 +@@ -25,7 +25,7 @@ + + #include <sys/time.h> + +-#include <glib/gmessages.h> ++#include <glib.h> + + #include <glibmm/convert.h> + #include <glibmm/date.h> +diff -Naur gtkmm-utils-0.4.1~/glibmm-utils/ustring.cc gtkmm-utils-0.4.1/glibmm-utils/ustring.cc +--- gtkmm-utils-0.4.1~/glibmm-utils/ustring.cc 2012-11-21 11:43:42.726346909 -0600 ++++ gtkmm-utils-0.4.1/glibmm-utils/ustring.cc 2012-11-21 11:44:55.645930936 -0600 +@@ -20,8 +20,7 @@ + */ + + #include <cstring> // for g++ 4.3 +-#include <glib/gmem.h> +-#include <glib/gmessages.h> ++#include <glib.h> + #include "ustring.h" + + namespace Glib { diff --git a/pcr/pactools/PKGBUILD b/pcr/pactools/PKGBUILD new file mode 100644 index 000000000..d05953b99 --- /dev/null +++ b/pcr/pactools/PKGBUILD @@ -0,0 +1,18 @@ +# Contributor: Pierluigi <pierluigi88@gmail.com> +# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io> + +pkgname=pactools +pkgver=0.8.2 +pkgrel=1 +pkgdesc="A collection of the best tools for pacman" +arch=('i686' 'x86_64') +url="http://pierloz.com/pactools" +license=("GPL") +depends=('perl' 'bash' 'python') +source=(pactools pt-pacman-cage pt-pacman-uncage pt-pacsize \ +pt-deptree pt-pacman-info pt-repolist pt-pacfix) + +build() { + install -d $pkgdir/usr/bin + install -m 755 $srcdir/* $pkgdir/usr/bin +} diff --git a/pcr/pactools/pactools b/pcr/pactools/pactools new file mode 100755 index 000000000..1fe3ddbe8 --- /dev/null +++ b/pcr/pactools/pactools @@ -0,0 +1,63 @@ +#!/bin/sh + +green() { + echo -e "\033[1;32m${1}\033[1;0m" + } + +red() { + echo -e "\033[1;31m${1}\033[1;0m" + } + + +echo 'pactools is a set of useful tools for pacman' +echo +echo 'Tools installed:' +echo +green ' * pt-pacman-cage' +echo ' by: ody' +echo ' A script to keep the pacman db in a contiguous as possible' +echo ' place on your hd to make reading it quicker.' +echo ' Attention: be sure to have the module loop loaded in rc.conf' +echo ' WEB: http://bbs.archlinux.org/viewtopic.php?id=20385' +echo +green ' * pt-pacman-uncage' +echo ' by: ody' +echo ' To uncage your pacman db, after pt-pacman-cage.' +echo ' Use only if you have problem with pt-pacman-cage and you' +echo ' want to come back to standard db system' +echo ' WEB: http://bbs.archlinux.org/viewtopic.php?id=20385' +echo +green ' * pt-pacsize' +echo ' by: hads' +echo ' How much disk space do my installed packages use?' +echo ' This script answers to the question.' +echo ' WEB: http://bbs.archlinux.org/viewtopic.php?id=20971' +echo +green ' * pt-deptree' +echo ' by: skoal' +echo ' A visual representation of packages dependencies' +echo ' WEB: http://bbs.archlinux.org/viewtopic.php?id=10283' +echo +green ' * pt-pacman-info' +echo ' by: Pável Varela Rodríguez [aka NeOnsKuLL]' +echo ' List the names of configured repos in your pacman.conf' +echo ' Calculates the total number of available packages' +echo ' in each repo;' +echo ' calculates the number of installed packages.' +echo ' WEB: http://bbs.archlinux.org/viewtopic.php?id=23124' +echo +green ' * pt-repolist' +echo ' by: dtw' +echo ' Shows installed packages from a certain repo.' +echo ' USAGE: pt-repolist <reponame> [all]' +echo ' <reponame> is the repository name' +echo ' [all] to include also NOT installed packages.' +echo ' WEB: http://bbs.archlinux.org/viewtopic.php?id=12369' +echo +green ' * pt-pacfix' +echo ' by: pierluigi and fixed by Chris.Giles' +echo ' A script to list all the packages currently installed,' +echo ' according to /var/log/pacman.log' +echo ' WEB: http://bbs.archlinux.org/viewtopic.php?pid=227510' +echo +red 'Please remember: pactools comes with NO WARRANTY, use at your own risk' diff --git a/pcr/pactools/pt-deptree b/pcr/pactools/pt-deptree new file mode 100755 index 000000000..edb6f538b --- /dev/null +++ b/pcr/pactools/pt-deptree @@ -0,0 +1,54 @@ +#!/bin/sh +# Pacman Dependency Tree +# does NOT handle group names -> unexpected results. +# Package names using aliases, like x-server, should work. +# Breaks on circular dependencies -> you better hit ctrl-c. + +export LC_ALL=en_US + +progname=`basename $0` +pacexec='pacman' +leafnull='None' +branch="" +vbranch="| " +vprune=" " +hbranch="+---" + +_showdep () { + + # Try to use specific pkg req + if $pacexec -Qi $1 &> /dev/null ; then + # Grab deps list|from "Depends"|Remove Tag \| specific version req's. + deplist=`$pacexec -Qi $1|grep Depends|sed 's/^.*: \|>[^ ]*//g;s/ $//'` + else # Oops! Failed on alias, try this... + deplist=`$pacexec -Qs $1 | sed '1!d;s/\(^.*\/\)\(.*\)\( .*$\)/\2/'` + fi + + [ "x$deplist" = "x$leafnull" ] && return + + while [ -n "$deplist" ] + do + set -- $deplist && echo "$branch$hbranch$1" + if [ $# -gt 1 ] ; then + branch=${branch}$vbranch + else + branch=${branch}$vprune + fi + + _showdep $1 + + deplist=${*:2} + branch=${branch:0:${#branch}-${#vprune}} + done +} + +branch=$vprune + +for pkg in `$pacexec -Q $1 | sed 's/ .*//'` +do + echo $pkg + _showdep $pkg +done + +unset _showdep && set -- +exit 0 diff --git a/pcr/pactools/pt-pacfix b/pcr/pactools/pt-pacfix new file mode 100755 index 000000000..cd128331e --- /dev/null +++ b/pcr/pactools/pt-pacfix @@ -0,0 +1,22 @@ +#!/usr/bin/env python +# +# pacfix.py: a script by pierluigi to list all the packages currently installed according to /var/log/pacman.log +# 2008-07-04: Modified by Chris Giles to prevent failure when "pacman.log" has lines with only two words + + +pkg=[] + +logfile = open("/var/log/pacman.log","r") +log=logfile.readlines() +for myline in log: + myarray = myline.strip("\n").split(" ") + if len(myarray) >= 3 : + if (myarray[2]=="installed" or myarray[2]=="upgraded"): + if (pkg.count(myarray[3])==0): + pkg.append(myarray[3]) + if (myarray[2]=="removed"): + if (pkg.count(myarray[3])!=0): + pkg.remove(myarray[3]) +pkg.sort() +for p in pkg: + print(p) diff --git a/pcr/pactools/pt-pacman-cage b/pcr/pactools/pt-pacman-cage new file mode 100755 index 000000000..f9248e496 --- /dev/null +++ b/pcr/pactools/pt-pacman-cage @@ -0,0 +1,152 @@ +#!/bin/bash +# +# pacman-cage +# +# Copyright (c) 2002-2006 by Andrew Rose <rose.andrew@gmail.com> +# I used Judds pacman-optimise as a framework. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, +# USA. +# + +myver='2.9.8.1' +dbroot="/var/lib/pacman" +pacmandb="/var/lib/pacman.db" + +usage() { + echo "pacman-cage $myver" + echo "usage: $0 pacman_db_size(MB)" + echo + echo "pacman-cage creates a loopbacked filesystem in a contigious file." + echo "This will give better response times when using pacman" + echo "A safe value for pacman_db_size should be > 40" + echo + echo "If you are unsure, use this:" + echo " $0 60" + echo +} + +die() { + echo "pacman-cage: $*" >&2 + exit 1 +} + +die_r() { + rm -f /tmp/pacman.lck + die $* +} + +loop_check=`zcat /proc/config.gz | grep CONFIG_BLK_DEV_LOOP | cut -d\= -f2` + +if [ "$loop_check" == "m" ]; then + if [ `lsmod | grep loop | cut -d\ -f1` != "loop" ]; then + echo "Error. You have to load the module 'loop' in rc.conf." + exit 1 + fi +fi + +if [ "$loop_check" == "CONFIG_BLK_DEV_LOOP" ]; then + echo "Error. Your kernel config doesn't include CONFIG_BLK_DEV_LOOP." + exit 1 +fi + + +if [ "$#" != "1" ]; then echo "wrong number of parameters" 1>&2 ; usage; exit 0; fi + +if [ "$1" != "" ]; then + if [ "$1" = "-h" -o "$1" = "--help" ]; then + usage + exit 0 + fi + dbsize=$1 +fi + +if [ "`id -u`" != 0 ]; then + die "You must be root to cage the database" +fi + +# make sure pacman isn't running +if [ -f /tmp/pacman.lck ]; then + die "Pacman lockfile was found. Cannot run while pacman is running." +fi +# make sure pacman.db hasnt already been made +if [ -f $pacmandb ]; then + die "$pacmandb already exists!." +fi + +if [ ! -d $dbroot ]; then + die "$dbroot does not exist or is not a directory" +fi + +# don't let pacman run while we do this +touch /tmp/pacman.lck + +# step 1: sum the old db +echo "==> md5sum'ing the old database..." +find $dbroot -type f | sort | xargs md5sum >/tmp/pacsums.old + +echo "==> creating pacman.db loopback file..." +dd if=/dev/zero of=$pacmandb bs=1M count=$dbsize > /dev/null 2>&1 + +echo "==> creating ext2 -O dir_index -b 1024 -m 0 on $pacmandb..." +yes | mkfs.ext2 -O dir_index -b 1024 -i 1024 -m 0 -F $pacmandb > /dev/null 2>&1 + +echo "==> creating temporary mount point /mnt/tmp-pacman.." +mkdir /mnt/tmp-pacman + +echo "==> mounting pacman.db to temporary mount point..." +mount -o loop $pacmandb /mnt/tmp-pacman + +echo "==> copying pacman database to temporary mount point..." +cp -a /var/lib/pacman/. /mnt/tmp-pacman + +echo "==> unmounting temporary mount point..." +umount /mnt/tmp-pacman + +echo "==> removing temporary mount point..." +rmdir /mnt/tmp-pacman + +echo "==> moving old /var/lib/pacman to /var/lib/pacman.bak..." +mv /var/lib/pacman /var/lib/pacman.bak + +echo "==> createing new pacman db mount point @ $dbroot..." +mkdir $dbroot + +echo "==> Mounting new pacman db..." +mount -o loop $pacmandb $dbroot + +echo "==> md5sum'ing the new database..." +find $dbroot -type f | sort | xargs md5sum >/tmp/pacsums.new + +echo "==> checking integrity..." +diff /tmp/pacsums.old /tmp/pacsums.new >/dev/null 2>&1 +if [ $? -ne 0 ]; then + # failed, move the old one back into place + umount $dbroot + rm $pacmandb + mv $dbroot.bak $dbroot + die_r "integrity check FAILED, reverting to old database" +fi + +echo "==> Updating /etc/fstab to reflect changes..." +echo "$pacmandb $dbroot ext2 loop,defaults 0 0" >> /etc/fstab + +rm -f /tmp/pacman.lck /tmp/pacsums.old /tmp/pacsums.new + +echo +echo "Finished. Your pacman database has been caged!. May the speedy pacman be with you." +echo + +exit 0 diff --git a/pcr/pactools/pt-pacman-info b/pcr/pactools/pt-pacman-info new file mode 100755 index 000000000..c2c82f219 --- /dev/null +++ b/pcr/pactools/pt-pacman-info @@ -0,0 +1,77 @@ +#!/bin/sh +# pacman-info +# /usr/bin/pacman-info +# GPL v2 +# neonskull [at] gmail.com + +VERSION="0.1" +AUTHOR="Pável Varela Rodríguez [aka NeOnsKuLL]" + +usage() +{ +echo "pacman-info v$VERSION" +echo "usage: `basename $0` [OPTION] + +OPTIONS: + -cr|--configured-repos List the names of configured repos in your + pacman.conf + + -a|--all Calculates the total number of available + packages in your repos + + -br|--by-repo Calculates the total number of available + packages in each repo + + -i|--installed Calculates the number of installed packages + + -f|--full Generates a full Report + + -h|--help Show this message + + -v|--version Show version +" +} + +[ "$#" -lt 1 ] && PARAM="-h"; +[ "$#" -gt 1 ] && PARAM="*"; +[ "$#" -eq 1 ] && PARAM="$1"; + +case $PARAM in + "-a"|"--all") + echo -e "Repositories information (total of packages in repos): `pacman -Sl|wc -l`" + ;; + "-cr"|"--configured-repos") + echo "Repositories information (name of configured repos):" + pacman -Sl|awk '{print $1}'|cut -d"/" -f 2|uniq -c|awk '{print "* " $2}' + ;; + "-br"|"--by-repo") + echo "Repositories information (number of packages by repo):" + pacman -Sl|awk '{print $1}'|cut -d"/" -f 2|uniq -c|awk '{print ":: "$2 "\t-> " $1 "\tpkgs"}' + ;; + "-i"|"--installed") + echo -e "System information (total of installed packages): `pacman -Q|wc -l`" + ;; + "-f"|"--full") + echo -e "Full Report about Repositories and Packages for Archlinux" + echo -e "Node name: `uname -n`\n" + $0 -cr + echo + $0 -a + echo + $0 -br + echo + $0 -i + echo + echo -e "Generated using `$0 -v` by $AUTHOR" + ;; + "-h"|"--help") + usage + ;; + "-v"|"--version") + echo "`basename $0` v$VERSION" + ;; + *) + echo "Error! Unknown parameter." + usage + ;; +esac diff --git a/pcr/pactools/pt-pacman-uncage b/pcr/pactools/pt-pacman-uncage new file mode 100755 index 000000000..12b7e41d3 --- /dev/null +++ b/pcr/pactools/pt-pacman-uncage @@ -0,0 +1,108 @@ + +#!/bin/bash +# +# pacman-uncage +# +# Copyright (c) 2002-2006 by Andrew Rose <rose.andrew@gmail.com> +# I used Judds pacman-optimise as a framework. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, +# USA. +# + +myver='2.9.8' +dbroot="/var/lib/pacman" +tmproot="/var/lib/pacman.new" +pacmandb="/var/lib/pacman.db" + +usage() { + echo "pacman-uncage $myver" + echo "usage: $0 [pacman_db_root]" + echo + echo "pacman-uncage returns your pacman db to the generic style." + echo +} + +die() { + echo "pacman-uncage: $*" >&2 + exit 1 +} + +die_r() { + rm -f /tmp/pacman.lck + die $* +} + +if [ "$1" != "" ]; then + if [ "$1" = "-h" -o "$1" = "--help" ]; then + usage + exit 0 + fi + dbroot=$1 +fi + +if [ "`id -u`" != 0 ]; then + die "You must be root to uncage the database" +fi + +# make sure pacman isn't running +if [ -f /tmp/pacman.lck ]; then + die "Pacman lockfile was found. Cannot run while pacman is running." +fi + +if [ ! -d $dbroot ]; then + die "$dbroot does not exist or is not a directory" +fi + +# don't let pacman run while we do this +touch /tmp/pacman.lck + +# step 1: sum the old db +echo "==> md5sum'ing the old database..." +find $dbroot -type f | sort | xargs md5sum >/tmp/pacsums.old + +echo "==> copying pacman.db contents back, note: the time needed to get a brew is now." +mkdir $tmproot +cp -a $dbroot/. $tmproot + +echo "==> unmounting old dbroot and moving new one in" +umount $dbroot +rmdir $dbroot +mv $tmproot $dbroot + +echo "==> md5sum'ing the new database..." +find $dbroot -type f | sort | xargs md5sum >/tmp/pacsums.new + +echo "==> checking integrity..." +diff /tmp/pacsums.old /tmp/pacsums.new >/dev/null 2>&1 +if [ $? -ne 0 ]; then + # failed, move the old one back into place + rm -rf $dbroot + mkdir $dbroot + mount -a + die_r "integrity check FAILED, reverting to old database" +fi + +echo "==> Removing old pacman.db" +rm $pacmandb + +rm -f /tmp/pacman.lck /tmp/pacsums.old /tmp/pacsums.new + +echo +echo "Finished. Your pacman database has been uncaged!. Welcome home." +echo "You will need to remove the old mount line from your /etc/fstab" +echo + +exit 0 diff --git a/pcr/pactools/pt-pacsize b/pcr/pactools/pt-pacsize new file mode 100755 index 000000000..e70a34597 --- /dev/null +++ b/pcr/pactools/pt-pacsize @@ -0,0 +1,21 @@ +#!/bin/bash + +##AUTHOR: hads +##See: http://bbs.archlinux.org/viewtopic.php?t=20971 + +for i in /var/lib/pacman/local/*; do + PKG=`echo $i | cut -d '/' -f 6` + SIZE=`grep -A 1 SIZE $i/desc | tail -1` + if [ -x /usr/bin/bc ]; then + if [ $SIZE -gt 1024 ]; then + if [ $SIZE -gt 1048576 ]; then + SIZE=`echo "scale=1;$SIZE/1048576" | bc`M + else + SIZE=`echo "scale=1;$SIZE/1024" | bc`K + fi + else + SIZE={$SIZE}B + fi + fi + echo "$PKG | $SIZE" +done diff --git a/pcr/pactools/pt-repolist b/pcr/pactools/pt-repolist new file mode 100755 index 000000000..5f15fe462 --- /dev/null +++ b/pcr/pactools/pt-repolist @@ -0,0 +1,42 @@ +#!/bin/sh + +pacman -Qi >./all_files + +if [ -z "$1" ] ; then + echo -e "\033[0;37mNo repo given!" + echo " usage: scriptname reponame" +fi + +reponame=$1 +list=$1_list +pacman -Sl $reponame >./$list +sed -i "s|\$reponame |g|" ./$list +repo=`cat ./$list | cut --fields 2 --delim " "` + +for pkg in $repo ; do + if [[ $(cat ./all_files | grep -w "$pkg") ]] ; then + echo -e "\033[0;34m$pkg\033[0;37m is installed" + echo "$pkg" >>./installed_files + elif [ "$2" == "all" ] ; then + echo -e "\033[0;31m$pkg\033[0;37m is NOT installed" + fi +done + +echo +echo -n "Would you like to save the names of these pkgs to a file? (Y/n) " +read choice +if [ "$choice" == "Y" -o "$choice" == "y" ] ; then + echo "Currently in `pwd`" + echo -n " Save as: " + read filename + if [ -z $filename ] ; then + echo "No name given saved as ./installed_files_$reponame" + cp -u ./installed_files ./installed_files_$reponame + else + cp -u ./installed_files $filename + fi + rm ./installed_files +else + rm ./installed_files +fi +rm ./$list ./all_files diff --git a/pcr/ttf-roboto/PKGBUILD b/pcr/ttf-roboto/PKGBUILD new file mode 100644 index 000000000..9085985d7 --- /dev/null +++ b/pcr/ttf-roboto/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Michael Düll <mail@akurei.me> PGP-Key: D6777412 - Fingerprint: C972 8B50 9411 BBE1 5CA5 9906 5103 71F3 D677 7412 +# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io> + +pkgname=ttf-roboto +pkgver=20121102 +pkgrel=1 +pkgdesc='The new system font of Android 4, Codename "Ice Cream Sandwich".' +arch=('any') +license=('APACHE') +url="https://developer.android.com/design/style/typography.html" +depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils') +install=$pkgname.install +source=( + "https://developer.android.com/downloads/design/Roboto_Hinted_20120823.zip" +) + +package() +{ + install -d $pkgdir/usr/share/fonts/TTF/ + install -m644 *.ttf $pkgdir/usr/share/fonts/TTF/ + install -d $pkgdir/usr/share/licenses/$pkgname/ + install -m644 $srcdir/COPYING.txt $pkgdir/usr/share/licenses/$pkgname/ +} + +sha512sums=('ce4af34d0a23dd4076d033dcb03f17335eb83317da72b45257291be3aa34ff589405bfdfb768faca769d401a9091b63e5f195704ed69874d7d17289ca436a785') diff --git a/pcr/ttf-roboto/ttf-roboto.install b/pcr/ttf-roboto/ttf-roboto.install new file mode 100644 index 000000000..7dde94b45 --- /dev/null +++ b/pcr/ttf-roboto/ttf-roboto.install @@ -0,0 +1,15 @@ +post_install() { + echo -n "Updating font cache... " + fc-cache -f > /dev/null + mkfontscale /usr/share/fonts/TTF + mkfontdir /usr/share/fonts/TTF + echo "done." +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +} diff --git a/~fauno/pandoc/PKGBUILD b/~fauno/pandoc/PKGBUILD index 3d7d1fa9f..d3b88d3a0 100644 --- a/~fauno/pandoc/PKGBUILD +++ b/~fauno/pandoc/PKGBUILD @@ -4,8 +4,8 @@ # Run `makepkg -srp SRCBUILD` if you want to update the source tarball pkgname=pandoc -pkgver=1.9.4.2 -pkgrel=2 +pkgver=1.9.4.5 +pkgrel=3 pkgdesc='Conversion between markup formats (no Haskell libs)' url='http://johnmacfarlane.net/pandoc/' license=('GPL') @@ -15,53 +15,54 @@ options=(strip !makeflags !distcc) source=(https://repo.parabolagnulinux.org/other/${pkgname}-${pkgver}-$pkgrel-any.src.tar.xz{,.sig} SRCBUILD) conflicts=('haskell-pandoc') optdepends=('texlive-most: for pdf creation') -md5sums=('15f522c6bd0e26c709579b0a0fcfdcea' - 'e86da5aad2a7dfc6d53d2a2a0c562baa' - '415bbf263863c5cbc7c672ec1f497893') # PKGBUILD functions build() { mkdir -p ${srcdir}/{build,${pkgname}-${pkgver}} cd ${srcdir}/${pkgname}-${pkgver} - for _hkpkg in $(grep -v ${pkgname}-${pkgver} BUILDORDER); do - pushd ${srcdir}/${pkgname}-${pkgver}/${_hkpkg} - - HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal install --flags="embed_data_files" --prefix=${srcdir}/build/usr - - popd - done - - cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}-${pkgver} - - HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal configure --prefix=/usr --libdir=${srcdir}/build/usr/lib --flags="-library embed_data_files" - HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal build + while read _hkpkg; do + pushd ${srcdir}/${pkgname}-${pkgver}/${_hkpkg} >/dev/null + + extra="--prefix=${srcdir}/build/usr" + case $_hkpkg in + $pkgname-$pkgver) + extra="--flags=\"executable -library\" --prefix=/usr --libdir=${srcdir}/build/usr/lib -v" ;; + citeproc-hs-*) + extra="--flags=\"embed_data_files\" --prefix=${srcdir}/build/usr -v" ;; + esac + + msg2 "Configuring $_hkpkg with $extra" + if [ "$_hkpkg" != "$pkgname-$pkgver" ]; then + HOME=${srcdir}/${pkgname}-${pkgver} \ + cabal install $extra + else + HOME=${srcdir}/${pkgname}-${pkgver} \ + cabal configure $extra + HOME=${srcdir}/${pkgname}-${pkgver} \ + cabal build + fi + + popd >/dev/null + done <BUILDORDER } package() { + cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}-${pkgver} - cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}-${pkgver} + runghc Setup.hs copy --destdir=${pkgdir}/ - runghc Setup.hs copy --destdir=${pkgdir}/ + msg2 "Removing lib files..." + rm -rfv ${pkgdir}/build # EC is unfree and makes Parabola TeXLive cry # besides, it's unneeded - sed "/fontenc/d" -i ${pkgdir}/usr/share/${pkgname}-${pkgver}/templates/default.latex - -# runghc Setup.hs configure --prefix=DIR --bindir=DIR --libdir=DIR \ -# --datadir=DIR --libsubdir=DIR --datasubdir=DIR --docdir=DIR \ -# --htmldir=DIR --program-prefix=PREFIX --program-suffix=SUFFIX \ -# --mandir=DIR --flags=FLAGSPEC - -# Copy everything, but remove docs and haskell-libs -# rm -r ${pkgdir}/usr/{lib,share/*} + sed "/fontenc/d" -i ${pkgdir}/usr/share/${pkgname}-${pkgver}/templates/default.latex -# cp -a ${srcdir}/build/usr/share/man ${pkgdir}/usr/share/ -# cp -a ${srcdir}/build/usr/share/doc ${pkgdir}/usr/share/ - find ${pkgdir}/usr/share -type f -exec chmod 644 {} \; - find ${pkgdir}/usr/share -type d -exec chmod 755 {} \; + find ${pkgdir}/usr/share -type f -exec chmod 644 {} \; + find ${pkgdir}/usr/share -type d -exec chmod 755 {} \; } +md5sums=('912abc4574aea3c5203eff1b02ceafa9' + '7ac798d62f253535a2e194af5aa1c3c3' + 'e632f8c06be8284e17329a5d1c459e3b') diff --git a/~fauno/pandoc/SRCBUILD b/~fauno/pandoc/SRCBUILD index 29c5f25ae..ebe1a0552 100644 --- a/~fauno/pandoc/SRCBUILD +++ b/~fauno/pandoc/SRCBUILD @@ -2,14 +2,17 @@ # Based on haskell-pandoc pkgname=pandoc -pkgver=1.9.4.2 -pkgrel=2 +pkgver=1.9.4.5 +# 0.3.6 fails with embed_data_files +_citeproc=0.3.5 +pkgrel=3 pkgdesc='Conversion between markup formats (no Haskell libs)' url='http://johnmacfarlane.net/pandoc/' license=('GPL') arch=('any') makedepends=('ghc' 'sh' 'cabal-install') source=() +options=(!strip) # PKGBUILD functions build() { @@ -20,22 +23,22 @@ build() { cabal --verbose=3 update HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal --verbose=3 fetch file-embed ${pkgname}-${pkgver} + cabal --verbose=3 fetch file-embed citeproc-hs-${_citeproc} ${pkgname}-${pkgver} msg2 "Getting the dependency build order" # Ignore the cabal messages HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal install --dry-run file-embed ${pkgname}-${pkgver} | tail -n+3 >> BUILDORDER + cabal install --dry-run file-embed citeproc-hs-${_citeproc} ${pkgname}-${pkgver} | grep "\-[0-9]\+" >>BUILDORDER } package() { export PKGEXT=.src.tar.xz - export PKGDEST=${startdir} + export PKGDEST=${SRCDEST} mkdir -p ${pkgdir}/${pkgname}-${pkgver} cd ${pkgdir}/${pkgname}-${pkgver} - find ${srcdir} -iname '*.tar.?z' -a \! -iname '00-index.tar.gz' -exec \ + find ${srcdir}/${pkgname}-${pkgver} -iname '*.tar.?z' -a \! -iname '00-index.tar.gz' -exec \ bsdtar xvf '{}' \; cp ${srcdir}/${pkgname}-${pkgver}/BUILDORDER . |