From 68cdc08aec92abf91448a542e06fabbedbb583bf Mon Sep 17 00:00:00 2001 From: root Date: Fri, 31 Aug 2012 00:04:43 +0000 Subject: Fri Aug 31 00:04:43 UTC 2012 --- community/cantata/PKGBUILD | 31 ++++++++++++++ community/cantata/cantata.install | 12 ++++++ community/catdoc/PKGBUILD | 31 ++++++++++++++ community/fortune-mod/01_all_fortune_all-fix.patch | 21 ++++++++++ community/fortune-mod/LICENSE | 35 ++++++++++++++++ community/fortune-mod/PKGBUILD | 36 ++++++++++++++++ community/ibus-chewing/PKGBUILD | 9 ++-- community/keepalived/PKGBUILD | 8 ++-- community/keepalived/keepalived.service | 3 +- community/libvirt/PKGBUILD | 23 +++++------ community/libvirt/openbsd-netcat-default.patch | 48 ++++++++++++++++------ community/multitail/PKGBUILD | 28 +++++++++++++ community/python-imaging/PKGBUILD | 48 ++++++++++++++++++++++ community/rekonq/PKGBUILD | 6 +-- community/skrooge/PKGBUILD | 8 ++-- community/skrooge/skrooge.changelog | 3 ++ community/spring/PKGBUILD | 15 +++---- community/tea/PKGBUILD | 6 +-- community/vym/PKGBUILD | 6 +-- community/vym/vym.changelog | 3 ++ community/wesnoth/PKGBUILD | 19 ++++----- 21 files changed, 329 insertions(+), 70 deletions(-) create mode 100644 community/cantata/PKGBUILD create mode 100644 community/cantata/cantata.install create mode 100644 community/catdoc/PKGBUILD create mode 100644 community/fortune-mod/01_all_fortune_all-fix.patch create mode 100644 community/fortune-mod/LICENSE create mode 100644 community/fortune-mod/PKGBUILD create mode 100644 community/multitail/PKGBUILD create mode 100644 community/python-imaging/PKGBUILD (limited to 'community') diff --git a/community/cantata/PKGBUILD b/community/cantata/PKGBUILD new file mode 100644 index 000000000..74532f8f1 --- /dev/null +++ b/community/cantata/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 75701 2012-08-29 08:36:07Z andrea $ +# Maintainer: Andrea Scarpino +# Contributor: Mcder3 +# Contributor: MisterFred + +pkgname=cantata +pkgver=0.8.2 +pkgdesc="A KDE client for the music player daemon (MPD)" +pkgrel=2 +arch=('i686' 'x86_64') +url="http://kde-apps.org/content/show.php/Cantata?content=147733" +license=('GPL') +depends=('kdebase-runtime' 'taglib-extras' 'ffmpeg' 'libmtp' 'mpg123' 'speex') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://cantata.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2") +md5sums=('9bda49f1083820582723353f566268f3') + +build(){ + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} diff --git a/community/cantata/cantata.install b/community/cantata/cantata.install new file mode 100644 index 000000000..5495fb1b5 --- /dev/null +++ b/community/cantata/cantata.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/community/catdoc/PKGBUILD b/community/catdoc/PKGBUILD new file mode 100644 index 000000000..bad621899 --- /dev/null +++ b/community/catdoc/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 75719 2012-08-29 11:08:22Z bisson $ +# Maintainer: Juergen Hoetzel +# Contributor: Paulius Palevicius + +pkgname=catdoc +pkgver=0.94.3 +pkgrel=1 +pkgdesc="A convertor for Microsoft Word, Excel, PowerPoint and RTF Files to text" +arch=('i686' 'x86_64') +url="http://www.wagner.pp.ru/~vitus/software/catdoc/" +license=('GPL') +depends=('glibc') +optdepends=('tk: for using wordview') +options=('!makeflags') +source=(http://ftp.de.debian.org/debian/pool/main/c/catdoc/${pkgname}_$pkgver.orig.tar.gz) +md5sums=('61212b9fd06b0a31aa7bc9a671130f57') + +build() { + cd "$srcdir/$pkgname-$pkgver" + sed -i 's/$(prefix)/$(installroot)$(prefix)/' desktop/Makefile.in + sed -i 's/0.94.2/0.94.3/' configure* doc/*.1 src/makefile.tc + ./configure --prefix=/usr --with-wish=/usr/bin/wish + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make installroot="$pkgdir" mandir=/usr/share/man/man1 install + install -d "$pkgdir"/usr/share/man/man1 + install -m644 doc/*.1 "$pkgdir"/usr/share/man/man1 +} diff --git a/community/fortune-mod/01_all_fortune_all-fix.patch b/community/fortune-mod/01_all_fortune_all-fix.patch new file mode 100644 index 000000000..b4175ac81 --- /dev/null +++ b/community/fortune-mod/01_all_fortune_all-fix.patch @@ -0,0 +1,21 @@ +--- fortune/fortune.c.old 2006-03-11 15:33:14.000000000 +0100 ++++ fortune/fortune.c 2006-03-11 15:43:16.000000000 +0100 +@@ -974,7 +974,7 @@ + if (!ret) + ret=add_file(percent, fullpathname, NULL, &File_list, + &File_tail, NULL); +- if ( (!ret && fullpathname != locpathname) || strcmp(sp, "all") == 0 ) ++ if (!ret && strncmp(fullpathname, locpathname, sizeof(fullpathname))) + ret=add_file(percent, locpathname, NULL, &File_list, + &File_tail, NULL); + +@@ -985,7 +985,8 @@ + } + if (!ret) + return FALSE; +- ++ if (strncmp(fullpathname, locpathname, sizeof(fullpathname)) && strcmp(sp, "all") == 0) ++ add_file(percent, locpathname, NULL, &File_list, &File_tail, NULL); + } + else + if (!add_file(percent, fullpathname, NULL, &File_list, diff --git a/community/fortune-mod/LICENSE b/community/fortune-mod/LICENSE new file mode 100644 index 000000000..d0ad75977 --- /dev/null +++ b/community/fortune-mod/LICENSE @@ -0,0 +1,35 @@ +/*- + * Copyright (c) 1986, 1993 + * The Regents of the University of California. All rights reserved. + * + * This code is derived from software contributed to Berkeley by + * Ken Arnold. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ diff --git a/community/fortune-mod/PKGBUILD b/community/fortune-mod/PKGBUILD new file mode 100644 index 000000000..427bdb8de --- /dev/null +++ b/community/fortune-mod/PKGBUILD @@ -0,0 +1,36 @@ +# $Id: PKGBUILD 75721 2012-08-29 11:10:03Z bisson $ +# Maintainer: Kevin Piche +# Contributor: Dale Blount + +pkgname=fortune-mod +pkgver=1.99.1 +pkgrel=5 +pkgdesc="The Fortune Cookie Program from BSD games" +arch=('i686' 'x86_64') +url="http://www.redellipse.net/code/fortune" +license=('BSD') +depends=('recode') +source=(ftp://ftp.archlinux.org/other/fortune-mod/$pkgname-$pkgver.tar.gz LICENSE 01_all_fortune_all-fix.patch) +md5sums=('f208805b3b712e32997d7667e0ec52d8' + '0217481ae93971296cfb7872157cabb7' + 'e85b073f16dc6f0e8f0ed90044797aa3') + +build() { + cd "$srcdir/$pkgname-$pkgver" + patch -p0 < ../01_all_fortune_all-fix.patch + make REGEXDEFS='-DHAVE_REGEX_H -DPOSIX_REGEX -DHAVE_STDBOOL' \ + COOKIEDIR=/usr/share/fortune \ + LOCALDIR=/usr/local/share/fortune all fortune/fortune.man +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make FORTDIR="$pkgdir"/usr/bin \ + COOKIEDIR="$pkgdir"/usr/share/fortune \ + BINDIR="$pkgdir"/usr/sbin \ + BINMANDIR="$pkgdir"/usr/share/man/man1 \ + FORTMANDIR="$pkgdir"/usr/share/man/man6 install + rm "$pkgdir"/usr/share/fortune/*.u8 + rm "$pkgdir"/usr/share/fortune/off/*.u8 + install -D -m644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} diff --git a/community/ibus-chewing/PKGBUILD b/community/ibus-chewing/PKGBUILD index bc8180647..ce7f6b9ab 100644 --- a/community/ibus-chewing/PKGBUILD +++ b/community/ibus-chewing/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 75463 2012-08-24 22:28:16Z ebelanger $ +# $Id: PKGBUILD 75677 2012-08-29 04:37:22Z ebelanger $ # Maintainer: Thomas Dziedzic < gostrc at gmail > # Contributor: Rainy # Contributor: Lee.MaRS # Contributor: Hiroshi Yui pkgname=ibus-chewing -pkgver=1.4.0 +pkgver=1.4.2 pkgrel=1 pkgdesc='Chinese Chewing Engine for IBus Framework' arch=('i686' 'x86_64') @@ -15,13 +15,10 @@ depends=('ibus' 'libchewing' 'libxtst') makedepends=('swig' 'cmake' 'gob2') install=ibus-chewing.install source=(http://ibus.googlecode.com/files/${pkgname}-${pkgver}-Source.tar.gz) -md5sums=('dcbb3b2b6f4d57f4964c8b5cf3421bd3') +md5sums=('67d944ddfb7dd4eb325967ce43390092') build() { cd "${srcdir}/${pkgname}-${pkgver}-Source" - - sed -i '0,/COMMAND ${CMAKE_COMMAND} -E remove -f ${CMAKE_CACHE_TXT}/! s/COMMAND ${CMAKE_COMMAND} -E remove -f ${CMAKE_CACHE_TXT}//' Modules/ManageVersion.cmake - cmake . -DCMAKE_INSTALL_PREFIX=/usr \ -DSYSCONF_INSTALL_DIR=/usr/share \ -DLIBEXEC_DIR=/usr/lib/ibus diff --git a/community/keepalived/PKGBUILD b/community/keepalived/PKGBUILD index 1d2778c8d..ab1e13a7f 100644 --- a/community/keepalived/PKGBUILD +++ b/community/keepalived/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 75353 2012-08-21 06:05:32Z seblu $ +# $Id: PKGBUILD 75723 2012-08-29 14:02:05Z seblu $ # Maintainer: Sébastien Luttringer # Contributor: Andrea Zucchelli pkgname=keepalived -pkgver=1.2.6 +pkgver=1.2.7 pkgrel=1 pkgdesc='Failover and monitoring daemon for LVS clusters' arch=('i686' 'x86_64') @@ -15,9 +15,9 @@ source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz" 'keepalived.rc' 'keepalived.service' 'keepalived.conf') -md5sums=('299f8c7eae521753c3e1f2689974982a' +md5sums=('8551a34ee048895dbe5350a031ff29c1' '0d7ea6296bce403a5d24be305a0a9d73' - '7a327df915700dcd45a049d099c9c42b' + 'dd0a003a24057eba1e4dc09f372aaa52' '9c8142da8730ad27a345587dea83ced7') build() { diff --git a/community/keepalived/keepalived.service b/community/keepalived/keepalived.service index c20f18695..e29deeebd 100644 --- a/community/keepalived/keepalived.service +++ b/community/keepalived/keepalived.service @@ -2,8 +2,7 @@ Description=Keepalive Daemon [Service] -EnvironmentFile=/etc/conf.d/keepalived -ExecStart=/usr/sbin/keepalived --dont-fork $DAEMON_OPTS +ExecStart=/usr/sbin/keepalived --dont-fork [Install] WantedBy=multi-user.target diff --git a/community/libvirt/PKGBUILD b/community/libvirt/PKGBUILD index 0a06068c9..b62150e24 100644 --- a/community/libvirt/PKGBUILD +++ b/community/libvirt/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 73804 2012-07-15 20:16:33Z spupykin $ +# $Id: PKGBUILD 75710 2012-08-29 09:58:55Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Jonathan Wiersma pkgname=libvirt -pkgver=0.9.13 -pkgrel=2 +pkgver=0.10.0 +pkgrel=1 pkgdesc="API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)" arch=('i686' 'x86_64') url="http://libvirt.org/" @@ -38,13 +38,13 @@ source=("http://libvirt.org/sources/$pkgname-$pkgver.tar.gz" openbsd-netcat-default.patch libvirt-libnl3.patch xdg.patch) -md5sums=('86cbe53ee662e3b9e8bb0c63c737ba27' +md5sums=('63ceb65bba07fc7690499d9eb6d2c844' 'c43244c40a0437038c82089618e7beaa' '3ed0e24f5b5e25bf553f5427d64915e6' '8297b1be794a24cc77f66af9380ace59' 'bc2971dacdbac967fc3474e50affc345' '8d98e62915785686b0b6c8c070628392' - 'b0be50eb9dfe4d133decf23b60880f7d' + '456723b41903d3aaa7ec948c1feea265' 'ba27fbcd989de8d84cfff98326f10c54' '9b9fcdbd64d37d84ae73d9da0a7efed7') @@ -58,13 +58,12 @@ build() { sed -i 's_#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file done - [ $NOEXTRACT -eq 1 ] || patch -Np1 -i "$srcdir"/openbsd-netcat-default.patch - - patch -Np1 -i ${srcdir}/libvirt-libnl3.patch - patch -Np1 -i ${srcdir}/xdg.patch - aclocal - automake --add-missing || true - autoreconf + patch -Np1 -i "$srcdir"/openbsd-netcat-default.patch +# patch -Np1 -i ${srcdir}/libvirt-libnl3.patch +# patch -Np1 -i ${srcdir}/xdg.patch +# aclocal +# automake --add-missing || true +# autoreconf export LDFLAGS=-lX11 export RADVD=/usr/sbin/radvd diff --git a/community/libvirt/openbsd-netcat-default.patch b/community/libvirt/openbsd-netcat-default.patch index a01b4f14e..5538c892d 100644 --- a/community/libvirt/openbsd-netcat-default.patch +++ b/community/libvirt/openbsd-netcat-default.patch @@ -1,7 +1,7 @@ -diff -wbBur libvirt-0.9.7/src/qemu/qemu_migration.c libvirt-0.9.7.my/src/qemu/qemu_migration.c ---- libvirt-0.9.7/src/qemu/qemu_migration.c 2011-10-31 07:46:04.000000000 +0400 -+++ libvirt-0.9.7.my/src/qemu/qemu_migration.c 2011-11-08 15:46:10.000000000 +0400 -@@ -1589,7 +1589,7 @@ +diff -wbBur libvirt-0.10.0.org/src/qemu/qemu_migration.c libvirt-0.10.0/src/qemu/qemu_migration.c +--- libvirt-0.10.0.org/src/qemu/qemu_migration.c 2012-08-27 06:12:21.000000000 +0400 ++++ libvirt-0.10.0/src/qemu/qemu_migration.c 2012-08-29 13:36:23.000000000 +0400 +@@ -1910,7 +1910,7 @@ spec->dest.unix_socket.file); } else { const char *args[] = { @@ -10,10 +10,10 @@ diff -wbBur libvirt-0.9.7/src/qemu/qemu_migration.c libvirt-0.9.7.my/src/qemu/qe }; ret = qemuMonitorMigrateToCommand(priv->mon, migrate_flags, args); } -diff -wbBur libvirt-0.9.7/src/remote/remote_driver.c libvirt-0.9.7.my/src/remote/remote_driver.c ---- libvirt-0.9.7/src/remote/remote_driver.c 2011-11-08 07:53:30.000000000 +0400 -+++ libvirt-0.9.7.my/src/remote/remote_driver.c 2011-11-08 15:46:10.000000000 +0400 -@@ -614,7 +614,7 @@ +diff -wbBur libvirt-0.10.0.org/src/remote/remote_driver.c libvirt-0.10.0/src/remote/remote_driver.c +--- libvirt-0.10.0.org/src/remote/remote_driver.c 2012-08-27 06:12:21.000000000 +0400 ++++ libvirt-0.10.0/src/remote/remote_driver.c 2012-08-29 13:36:32.000000000 +0400 +@@ -693,7 +693,7 @@ username, !tty, !verify, @@ -22,10 +22,22 @@ diff -wbBur libvirt-0.9.7/src/remote/remote_driver.c libvirt-0.9.7.my/src/remote keyfile, sockname))) goto failed; -diff -wbBur libvirt-0.9.7/src/rpc/virnetsocket.c libvirt-0.9.7.my/src/rpc/virnetsocket.c ---- libvirt-0.9.7/src/rpc/virnetsocket.c 2011-11-08 07:53:30.000000000 +0400 -+++ libvirt-0.9.7.my/src/rpc/virnetsocket.c 2011-11-08 15:46:31.000000000 +0400 -@@ -642,7 +642,7 @@ +diff -wbBur libvirt-0.10.0.org/src/rpc/virnetclient.c libvirt-0.10.0/src/rpc/virnetclient.c +--- libvirt-0.10.0.org/src/rpc/virnetclient.c 2012-08-28 07:44:50.000000000 +0400 ++++ libvirt-0.10.0/src/rpc/virnetclient.c 2012-08-29 13:36:38.000000000 +0400 +@@ -469,7 +469,7 @@ + DEFAULT_VALUE(host, "localhost"); + DEFAULT_VALUE(port, "22"); + DEFAULT_VALUE(username, "root"); +- DEFAULT_VALUE(netcatPath, "nc"); ++ DEFAULT_VALUE(netcatPath, "nc.openbsd"); + DEFAULT_VALUE(knownHostsVerify, "normal"); + + virBufferEscapeShell(&buf, netcatPath); +diff -wbBur libvirt-0.10.0.org/src/rpc/virnetsocket.c libvirt-0.10.0/src/rpc/virnetsocket.c +--- libvirt-0.10.0.org/src/rpc/virnetsocket.c 2012-08-22 14:00:59.000000000 +0400 ++++ libvirt-0.10.0/src/rpc/virnetsocket.c 2012-08-29 13:36:44.000000000 +0400 +@@ -698,7 +698,7 @@ virCommandAddArgList(cmd, "-o", "StrictHostKeyChecking=no", NULL); if (!netcat) @@ -34,3 +46,15 @@ diff -wbBur libvirt-0.9.7/src/rpc/virnetsocket.c libvirt-0.9.7.my/src/rpc/virnet virCommandAddArgList(cmd, nodename, "sh", "-c", NULL); +diff -wbBur libvirt-0.10.0.org/tests/virnetsockettest.c libvirt-0.10.0/tests/virnetsockettest.c +--- libvirt-0.10.0.org/tests/virnetsockettest.c 2012-08-10 06:26:04.000000000 +0400 ++++ libvirt-0.10.0/tests/virnetsockettest.c 2012-08-29 13:36:53.000000000 +0400 +@@ -593,7 +593,7 @@ + + struct testSSHData sshData7 = { + .nodename = "somehost", +- .netcat = "nc -4", ++ .netcat = "nc.openbsd -4", + .path = "/tmp/socket", + .expectOut = "somehost sh -c 'if ''nc -4'' -q 2>&1 | grep \"requires an argument\" >/dev/null 2>&1; then " + "ARG=-q0;" diff --git a/community/multitail/PKGBUILD b/community/multitail/PKGBUILD new file mode 100644 index 000000000..9a19820bf --- /dev/null +++ b/community/multitail/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 75717 2012-08-29 11:07:06Z bisson $ +# Maintainer: Kevin Piche +# Contributor: Roberto Carvajal + +pkgname=multitail +pkgver=5.2.9 +pkgrel=1 +pkgdesc="Lets you view one or multiple files like the original tail program" +arch=('i686' 'x86_64') +license=('GPL') +url="http://www.vanheusden.com/multitail" +depends=('ncurses') +backup=('etc/multitail.conf') +source=("${url}/${pkgname}-${pkgver}.tgz") +md5sums=('871cb6a9a0d4f599b9cbd9f603da4c51') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + install -D -m 755 multitail ${pkgdir}/usr/bin/multitail + install -D -m 644 multitail.1 ${pkgdir}/usr/share/man/man1/multitail.1 + install -D -m 644 multitail.conf ${pkgdir}/etc/multitail.conf +} +# vim: ts=2 sw=2 et ft=sh diff --git a/community/python-imaging/PKGBUILD b/community/python-imaging/PKGBUILD new file mode 100644 index 000000000..a664a1a98 --- /dev/null +++ b/community/python-imaging/PKGBUILD @@ -0,0 +1,48 @@ +# $Id: PKGBUILD 75715 2012-08-29 11:05:01Z bisson $ +# Maintainer: Stéphane Gaudreault +# Contributor: Allan McRae +# Contributor: simo + +pkgname=python-imaging +pkgver=1.1.7 +pkgrel=4 +pkgdesc="PIL. Provides image processing capabilities for python" +arch=('i686' 'x86_64') +url="http://www.pythonware.com/products/pil/index.htm" +license=('custom:"pil"') +depends=('python2' 'libjpeg' 'freetype2' 'lcms') +makedepends=('tk' 'sane') +optdepends=('tk' 'sane') +provides=("pil=${pkgver}") +conflicts=('pil') +replaces=('pil') +source=(http://effbot.org/downloads/Imaging-${pkgver}.tar.gz) +md5sums=('fc14a54e1ce02a0225be8854bfba478e') + +build() { + cd "${srcdir}"/Imaging-${pkgver} + python2 setup.py build_ext + cd Sane + python2 setup.py build_ext +} + +package() { + cd "${srcdir}"/Imaging-${pkgver} + python2 setup.py install --root="${pkgdir}" --optimize=1 + + pushd Sane + python2 setup.py install --root="${pkgdir}" --optimize=1 + popd + + install -dm755 "${pkgdir}"/usr/include/python2.7/ + install -m644 -t "${pkgdir}"/usr/include/python2.7/ libImaging/*.h + + # do not have files ending in .py in /usr/bin + for f in pildriver pilprint pilconvert pilfile pilfont; do + mv "${pkgdir}"/usr/bin/${f}{.py,} + done + + # Install license + install -Dm644 "${srcdir}"/Imaging-${pkgver}/README \ + "${pkgdir}"/usr/share/licenses/${pkgname}/README +} diff --git a/community/rekonq/PKGBUILD b/community/rekonq/PKGBUILD index 1c9976037..f64c8482e 100644 --- a/community/rekonq/PKGBUILD +++ b/community/rekonq/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 74109 2012-07-21 11:42:11Z andrea $ +# $Id: PKGBUILD 75695 2012-08-29 08:23:51Z andrea $ # Maintainer: Peter Lewis # Maintainer: Andrea Scarpino # Contributor: Panagiotis Papadopoulos pkgname=rekonq -pkgver=1.0 +pkgver=1.1 pkgrel=1 pkgdesc='A WebKit based web browser for KDE' arch=('i686' 'x86_64') @@ -14,7 +14,7 @@ depends=('kdebase-keditbookmarks' 'qoauth') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2") -md5sums=('ca7b86ad4a778cbba52a14192865c7b0') +md5sums=('3ee3f965b47d790ceacac444fc83f4e4') build(){ cd "${srcdir}" diff --git a/community/skrooge/PKGBUILD b/community/skrooge/PKGBUILD index 8588b9dbc..15c721641 100644 --- a/community/skrooge/PKGBUILD +++ b/community/skrooge/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 75015 2012-08-11 18:51:57Z ebelanger $ +# $Id: PKGBUILD 75731 2012-08-29 20:24:22Z jlichtblau $ # Maintainer: Jaroslav Lichtblau # Contributor: Ray Rashif # Contributor: Andrea Scarpino # Contributor: neuromante pkgname=skrooge -pkgver=1.3.0 -pkgrel=2 +pkgver=1.3.2 +pkgrel=1 pkgdesc="A personal finances manager for KDE" arch=('i686' 'x86_64') url="http://skrooge.org/" @@ -16,7 +16,7 @@ makedepends=('cmake' 'automoc4' 'docbook-xsl') install=$pkgname.install changelog=$pkgname.changelog source=(http://skrooge.org/files/$pkgname-$pkgver.tar.bz2) -sha256sums=('7f8ec247084a005b743bb080ded5724f6c1ee3644c135e12002c80df93fddfe9') +sha256sums=('d96cd0ac7d503e22ae809f4646ad6008818485804c4569adbddcfd5e953743a2') build() { cd "${srcdir}/$pkgname-$pkgver" diff --git a/community/skrooge/skrooge.changelog b/community/skrooge/skrooge.changelog index ffc491ba5..f866264c2 100644 --- a/community/skrooge/skrooge.changelog +++ b/community/skrooge/skrooge.changelog @@ -1,3 +1,6 @@ +2012-08-29 Jaroslav Lichtblau + * skrooge 1.3.2-1 + 2012-08-09 Eric Belanger * skrooge 1.3.0-2 Rebuild against libofx 0.9.5 diff --git a/community/spring/PKGBUILD b/community/spring/PKGBUILD index f9010836e..8954c55c1 100644 --- a/community/spring/PKGBUILD +++ b/community/spring/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 74626 2012-07-31 19:56:56Z ebelanger $ +# $Id: PKGBUILD 75703 2012-08-29 09:21:55Z svenstaro $ # Maintainer: Sven-Hendrik Haase # Contributor: Arkham # Contributor: Christoph Zeiler pkgname=spring -pkgver=0.89.0 -_pkgver=89.0 -pkgrel=2 +pkgver=0.90.0 +_pkgver=90.0 +pkgrel=1 pkgdesc='A free 3D real-time-strategy (RTS) game engine' arch=('i686' 'x86_64') url="http://springrts.com/" @@ -17,10 +17,8 @@ makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'java-environment') optdepends=('python2: python-based bots' 'java-runtime: java-based bots') install=spring.install -source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${_pkgver}_src.tar.lzma - boost-1.50.patch) -md5sums=('36fc266e925bc3790a68bf1bc7ebb315' - 'a3c3b4a53eeb499090b027fd6b3cf848') +source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${_pkgver}_src.tar.lzma) +md5sums=('d09dbffa444385f17cfa6f1729bfd654') build() { bsdtar -xf ${pkgname}_${_pkgver}_src.tar.lzma @@ -28,7 +26,6 @@ build() { cd spring_${_pkgver} sed "s/TIME_UTC/TIME_UTC_/g" -i AI/Skirmish/E323AI/CScopedTimer.h - patch -Np1 < "$srcdir/boost-1.50.patch" cmake . \ -DCMAKE_INSTALL_PREFIX=/usr \ diff --git a/community/tea/PKGBUILD b/community/tea/PKGBUILD index cdc516d7d..74de24601 100644 --- a/community/tea/PKGBUILD +++ b/community/tea/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 74236 2012-07-23 05:26:38Z spupykin $ +# $Id: PKGBUILD 75679 2012-08-29 05:52:39Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Andrea Scarpino # Contributor: Roman Kyrylych @@ -6,7 +6,7 @@ # Contributor: Zsolt Varadi pkgname=tea -pkgver=33.2.0 +pkgver=33.3.0 pkgrel=1 pkgdesc="A QT-based text editor for Linux and *BSD. With an ultimate small size TEA provides you hundreds of functions." arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ depends=('qt' 'aspell' 'hunspell') install=tea.install source=(http://downloads.sourceforge.net/project/tea-editor/tea-editor/$pkgver/tea-$pkgver.tar.bz2 tea.desktop) -md5sums=('2d612e48ef014477f86db4323c513b74' +md5sums=('5830f177056d65f74ac52c97f5637815' '377ace3363124f4c086de0babb820761') build() { diff --git a/community/vym/PKGBUILD b/community/vym/PKGBUILD index 49e690a1a..5be932d1c 100644 --- a/community/vym/PKGBUILD +++ b/community/vym/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 72708 2012-06-20 18:18:28Z jlichtblau $ +# $Id: PKGBUILD 75733 2012-08-29 20:40:57Z jlichtblau $ # Maintainer: Jaroslav Lichtblau # Contributor: Stefan Husmann # Contributor: S�ren Holm pkgname=vym -pkgver=2.2.0 +pkgver=2.2.4 pkgrel=1 pkgdesc="A mindmapping tool" arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ changelog=$pkgname.changelog install=$pkgname.install source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2 \ $pkgname.desktop) -sha256sums=('98ebf4f134a8e3ea0de8ce5853177edcdbef76a11a1156268fc167d2da40c6d1' +sha256sums=('fa6d088327feae80c4c6760454fba64fe253a7de6e7e46f45a4c7f7db9b998f4' 'e299c69c213e7aac3f5b5d0ab088132b4ec7cb63a391f272e75ed64f049d541b') build() { diff --git a/community/vym/vym.changelog b/community/vym/vym.changelog index dcf26d8f4..6344bbecd 100644 --- a/community/vym/vym.changelog +++ b/community/vym/vym.changelog @@ -1,3 +1,6 @@ +2012-08-29 Jaroslav Lichtblau + * vym 2.2.4-1 + 2012-06-20 Jaroslav Lichtblau * vym 2.2.0-1 diff --git a/community/wesnoth/PKGBUILD b/community/wesnoth/PKGBUILD index fa7d64890..cf9a95311 100644 --- a/community/wesnoth/PKGBUILD +++ b/community/wesnoth/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 75447 2012-08-24 12:33:04Z svenstaro $ +# $Id: PKGBUILD 75697 2012-08-29 08:31:11Z svenstaro $ # Maintainer: Sven-Hendrik Haase # Contributor: Jan de Groot # Contributor: Tobias Powalowski @@ -6,8 +6,8 @@ # Contributor: Douglas Soares de Andrade pkgname=wesnoth -pkgver=1.10.3 -pkgrel=3 +pkgver=1.10.4 +pkgrel=1 pkgdesc="A turn-based strategy game on a fantasy world" arch=('i686' 'x86_64') license=('GPL') @@ -19,26 +19,21 @@ options=(!emptydirs) source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2 wesnothd.tmpfiles.conf wesnothd.rc.d - wesnothd.service - boost_foreach.patch) -md5sums=('b25354c71d58f82c2c60cc12c6f09c36' + wesnothd.service) +md5sums=('1a673f12e4521fc66e60ec584fa7c98f' '2d2fea6b3d86dfd589f5ad35a3be1f97' '85659b47d22dfdf4e4d046556973fc3e' - 'd1b6bf1d3dc05086ee6a370adff0ae4a' - '07e78c6ece06ed10119fc57ebc16ea9d') + 'd1b6bf1d3dc05086ee6a370adff0ae4a') build() { cd "$srcdir/$pkgname-$pkgver" - patch -Np0 < $srcdir/boost_foreach.patch - mkdir build && cd build cmake .. \ -DCMAKE_INSTALL_PREFIX=/usr \ -DENABLE_OMP=ON \ -DENABLE_TOOLS=ON \ - -DMANDIR=share/man \ - -DFIFO_DIR=/run/wesnothd + -DMANDIR=share/man make } -- cgit v1.2.3-54-g00ecf