From d22b68a6758c4f29a8e50a7be467374a53c68415 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 9 Dec 2011 23:14:52 +0000 Subject: Fri Dec 9 23:14:52 UTC 2011 --- community/aspell-uk/PKGBUILD | 15 +++++++------ community/bibletime/PKGBUILD | 31 +++++++++++++++++++++++++++ community/bibletime/bibletime.install | 13 +++++++++++ community/duplicity/PKGBUILD | 20 +++++++++++------ community/duplicity/botobackend.patch | 13 +++++++++++ community/gogglesmm/PKGBUILD | 8 +++---- community/libvirt/PKGBUILD | 8 +++---- community/qlandkartegt/PKGBUILD | 26 ++++++++++------------ community/qlandkartegt/qlandkartegt.changelog | 3 +++ community/qtfm/PKGBUILD | 21 ++++++++++-------- community/stunnel/PKGBUILD | 8 +++---- community/unrtf/PKGBUILD | 16 +++++++++----- community/unrtf/unrtf.changelog | 11 ++++++++++ 13 files changed, 138 insertions(+), 55 deletions(-) create mode 100644 community/bibletime/PKGBUILD create mode 100644 community/bibletime/bibletime.install create mode 100644 community/duplicity/botobackend.patch create mode 100644 community/unrtf/unrtf.changelog (limited to 'community') diff --git a/community/aspell-uk/PKGBUILD b/community/aspell-uk/PKGBUILD index f3252b56a..199ea4d50 100644 --- a/community/aspell-uk/PKGBUILD +++ b/community/aspell-uk/PKGBUILD @@ -1,19 +1,20 @@ -# $Id: PKGBUILD 43281 2011-03-24 13:28:23Z andrea $ -# Maintainer : Roman Kyrylych +# $Id: PKGBUILD 60254 2011-12-08 19:13:21Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau +# Contributor: Roman Kyrylych pkgname=aspell-uk -pkgver=1.6.0 +pkgver=1.6.5 _ftpver=1.4.0 -pkgrel=3 +pkgrel=1 pkgdesc="Ukrainian dictionary for aspell" arch=('i686' 'x86_64') url="http://ispell-uk.sourceforge.net/" license=('GPL' 'LGPL' 'MPL') depends=('aspell') source=(ftp://ftp.gnu.org/gnu/aspell/dict/uk/aspell6-uk-${_ftpver}-0.tar.bz2 - http://downloads.sourceforge.net/ispell-uk/spell-uk-$pkgver.tgz) -md5sums=('662f15381d11581758866fd7af43b4d7' - '4177ed3e196e6511513cf358c4a42e1a') + http://downloads.sourceforge.net/project/ispell-uk/spell-uk/$pkgver/spell-uk-$pkgver.tgz) +sha256sums=('35f9a7e840c1272706bc6dd172bc9625cbd843d021094da8598a6abba525f18c' + '90eff3b9e40d04b53717240b725e303f02cec4ee8bef9bded69b7481e41fa422') build() { # needed when using a source package from ispell-uk project diff --git a/community/bibletime/PKGBUILD b/community/bibletime/PKGBUILD new file mode 100644 index 000000000..f5b061581 --- /dev/null +++ b/community/bibletime/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 60250 2011-12-08 17:32:00Z arodseth $ +# Maintainer: Alexander Rødseth +# Contributor: Tobias T. +pkgname=bibletime +pkgver=2.9.0 +pkgrel=1 +pkgdesc="Bible software that uses the Sword Engine for KDE4" +arch=('x86_64' 'i686') +url="http://www.bibletime.info/" +license=('GPL2') +depends=('qt' 'sword' 'openssl' 'clucene') +makedepends=('cmake' 'boost-libs') +install=$pkgname.install +source=("http://sourceforge.net/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2") +md5sums=('0190b64de5892fc5f45e9a3d46bb29d6') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + cmake -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release "$srcdir/$pkgname-$pkgver" + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: diff --git a/community/bibletime/bibletime.install b/community/bibletime/bibletime.install new file mode 100644 index 000000000..ad97d7bab --- /dev/null +++ b/community/bibletime/bibletime.install @@ -0,0 +1,13 @@ +post_upgrade() { + update-desktop-database -q +} + +post_install() { + post_upgrade +} + +post_remove() { + post_upgrade +} + +# vim:set ts=2 sw=2 et: diff --git a/community/duplicity/PKGBUILD b/community/duplicity/PKGBUILD index 2c0d8feae..adcaa6edb 100644 --- a/community/duplicity/PKGBUILD +++ b/community/duplicity/PKGBUILD @@ -1,17 +1,19 @@ -# $Id: PKGBUILD 59792 2011-11-30 10:03:59Z lfleischer $ +# $Id: PKGBUILD 60285 2011-12-08 22:52:59Z lfleischer $ # Maintainer: Kaiting Chen # Contributor: Aaron Schaefer pkgname=duplicity pkgver=0.6.17 -pkgrel=2 +pkgrel=3 pkgdesc='A utility for encrypted, bandwidth-efficient backups using the rsync algorithm' arch=('i686' 'x86_64') url='http://www.nongnu.org/duplicity/' license=('GPL') depends=('librsync' 'ncftp' 'python2' 'python-boto' 'python-gnupginterface') -source=("http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('36423ab4e3b9aa90c5c44d9fa93fba0f') +source=("http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz" + 'botobackend.patch') +md5sums=('36423ab4e3b9aa90c5c44d9fa93fba0f' + '49bbdc327230fe5985d18eaae37eec0c') build() { cd "${srcdir}/${pkgname}-${pkgver}" @@ -22,9 +24,13 @@ build() { sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file done + # add hotfix issued by upstream (FS#27390) + patch -p0 -i ../botobackend.patch + python2 setup.py install --root="$pkgdir" --optimize=1 - chmod 644 $pkgdir/usr/share/man/man1/$pkgname.1 - chmod 644 $pkgdir/usr/share/man/man1/rdiffdir.1 - chmod 644 $pkgdir/usr/share/doc/$pkgname-$pkgver/* + # fix broken documentation permissions until upstream does (FS#27301) + chmod 644 "$pkgdir/usr/share/man/man1/$pkgname.1" + chmod 644 "$pkgdir/usr/share/man/man1/rdiffdir.1" + chmod 644 "$pkgdir/usr/share/doc/$pkgname-$pkgver"/* } diff --git a/community/duplicity/botobackend.patch b/community/duplicity/botobackend.patch new file mode 100644 index 000000000..302e1e2b1 --- /dev/null +++ b/community/duplicity/botobackend.patch @@ -0,0 +1,13 @@ +=== modified file duplicity/backends/botobackend.py +--- duplicity/backends/botobackend.py 2011-11-25 17:47:57 +0000 ++++ duplicity/backends/botobackend.py 2011-12-01 16:15:25 +0000 +@@ -26,6 +26,6 @@ + if sys.version_info[:2] < (2,6): + print "Sorry, S3 multiprocessing requires version 2.6 or later of python" + sys.exit(1) +- import _boto_multi.py ++ import _boto_multi + else: +- import _boto_single.py ++ import _boto_single + diff --git a/community/gogglesmm/PKGBUILD b/community/gogglesmm/PKGBUILD index f38a3f005..b90a3f8f8 100644 --- a/community/gogglesmm/PKGBUILD +++ b/community/gogglesmm/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 56576 2011-10-08 22:42:27Z spupykin $ +# $Id: PKGBUILD 60238 2011-12-08 10:43:13Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Sander Jansen pkgname=gogglesmm -pkgver=0.12.4 -pkgrel=2 +pkgver=0.12.5 +pkgrel=1 pkgdesc="Music Manager and Player" arch=('i686' 'x86_64') url="http://code.google.com/p/gogglesmm/" @@ -15,7 +15,7 @@ makedepends=('pkgconfig' 'glproto' 'dri2proto') replaces=('musicmanager') conflicts=('musicmanager') source=(http://gogglesmm.googlecode.com/files/gogglesmm-$pkgver.tar.bz2) -md5sums=('ddbc41ecc6cfcf8958dbe2bca47e79e6') +md5sums=('07e92bcf2daf39d6b380590816edd013') build() { cd $srcdir/gogglesmm-$pkgver diff --git a/community/libvirt/PKGBUILD b/community/libvirt/PKGBUILD index 69316ce92..30758edc2 100644 --- a/community/libvirt/PKGBUILD +++ b/community/libvirt/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 60010 2011-12-03 08:06:57Z spupykin $ +# $Id: PKGBUILD 60240 2011-12-08 11:32:20Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Jonathan Wiersma pkgname=libvirt -pkgver=0.9.7 -pkgrel=2 +pkgver=0.9.8 +pkgrel=1 pkgdesc="API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)" arch=('i686' 'x86_64') url="http://libvirt.org/" @@ -37,7 +37,7 @@ source=("http://libvirt.org/sources/$pkgname-$pkgver.tar.gz" openbsd-netcat-default.patch unixperms.patch yajl-2.x.patch) -md5sums=('4308b3f4d23f5b0c5196260a9a22a38b' +md5sums=('5bb74092e469d773c3d63128a8c57501' 'c43244c40a0437038c82089618e7beaa' '3ed0e24f5b5e25bf553f5427d64915e6' '737ec24aa56871fbabfa892789457db4' diff --git a/community/qlandkartegt/PKGBUILD b/community/qlandkartegt/PKGBUILD index 6211e7f17..e3f05159e 100644 --- a/community/qlandkartegt/PKGBUILD +++ b/community/qlandkartegt/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 58530 2011-11-13 16:03:22Z andrea $ +# $Id: PKGBUILD 60267 2011-12-08 19:52:00Z jlichtblau $ # Maintainer: Jaroslav Lichtblau # Contributor: Matthias Maennich # Contributor: pkgname=qlandkartegt -pkgver=1.2.4 +pkgver=1.3.1 pkgrel=1 pkgdesc="Use your GPS with Linux" arch=('i686' 'x86_64') @@ -16,18 +16,14 @@ optdepends=('garmindev: to connect garmin devices') install=$pkgname.install changelog=$pkgname.changelog source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz - $pkgname-mimetypes.xml - 'fix-glu-header.patch') -sha256sums=('3f87667ceffde60a7c533df7e25f375793a093970d89bfa1cd842b3595c58f2c' - 'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0' - '8e8c6440e1674a87d5a221c978f2be832457fb43980894725044837581625618') + $pkgname-mimetypes.xml) +sha256sums=('77a387856e2d41f9ea69f750cbac9bb49fa249d65bdef5e319bfa6f7c9f84121' + 'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0') build() { - cd "${srcdir}/$pkgname-$pkgver" + cd ${srcdir}/$pkgname-$pkgver - patch -R -p2 -i "${srcdir}"/fix-glu-header.patch - - cd "${srcdir}" + cd ${srcdir} mkdir build cd build @@ -38,10 +34,10 @@ build() { } package(){ - cd "${srcdir}/build" + cd ${srcdir}/build - make DESTDIR="${pkgdir}" install + make DESTDIR=${pkgdir} install - install -D -m644 "${srcdir}/$pkgname-mimetypes.xml" \ - "${pkgdir}/usr/share/mime/packages/$pkgname-mimetypes.xml" + install -D -m644 ${srcdir}/$pkgname-mimetypes.xml \ + ${pkgdir}/usr/share/mime/packages/$pkgname-mimetypes.xml } diff --git a/community/qlandkartegt/qlandkartegt.changelog b/community/qlandkartegt/qlandkartegt.changelog index 531d2ebe5..59d0e9a59 100644 --- a/community/qlandkartegt/qlandkartegt.changelog +++ b/community/qlandkartegt/qlandkartegt.changelog @@ -1,3 +1,6 @@ +2011-12-08 Jaroslav Lichtblau + * qlandkartegt 1.3.1-1 + 2011-10-09 Jaroslav Lichtblau * qlandkartegt 1.2.4-1 diff --git a/community/qtfm/PKGBUILD b/community/qtfm/PKGBUILD index 555f01db7..5ca145662 100644 --- a/community/qtfm/PKGBUILD +++ b/community/qtfm/PKGBUILD @@ -1,26 +1,29 @@ -# $Id: PKGBUILD 57268 2011-10-25 05:38:14Z ebelanger $ -# Maintainer: Brad Fanella +# $Id: PKGBUILD 60270 2011-12-08 20:02:24Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau +# Contributor: Brad Fanella # Contributor: Wittfella pkgname=qtfm -pkgver=5.1 +pkgver=5.2 pkgrel=1 pkgdesc="A lightweight file manager" arch=('i686' 'x86_64') -url="http://www.qtfm.org" +url="http://www.qtfm.org/" license=('GPL') depends=('qt') -install=qtfm.install +install=$pkgname.install source=(http://www.qtfm.org/$pkgname-$pkgver.tar.gz) -md5sums=('e7e079d2586b46ce80998c52b777cb88') +sha256sums=('289b93956958729ccf02657acf7745d4ba621bfb18e8180988196a0a1310e99b') build() { - cd "$srcdir/$pkgname-$pkgver" + cd ${srcdir}/$pkgname-$pkgver + qmake make } package() { - cd "$srcdir/$pkgname-$pkgver" - make INSTALL_ROOT="$pkgdir" install + cd ${srcdir}/$pkgname-$pkgver + + make INSTALL_ROOT=${pkgdir} install } diff --git a/community/stunnel/PKGBUILD b/community/stunnel/PKGBUILD index cd681ede7..17296a913 100644 --- a/community/stunnel/PKGBUILD +++ b/community/stunnel/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 58274 2011-11-09 16:42:13Z lfleischer $ +# $Id: PKGBUILD 60289 2011-12-08 23:55:42Z lfleischer $ # Maintainer: Kaiting Chen # Contributor: Daniel J Griffiths # Contributor: Kevin Piche pkgname=stunnel -pkgver=4.46 +pkgver=4.50 pkgrel=1 pkgdesc="A program that allows you to encrypt arbitrary TCP connections inside SSL" arch=('i686' 'x86_64') @@ -16,8 +16,8 @@ options=('!libtool') source=("ftp://ftp.stunnel.org/stunnel/$pkgname-$pkgver.tar.gz"{,.asc} 'Makefile.patch' 'stunnel.rc.d') -md5sums=('978030ff42f087ec26eb8a095ab69994' - 'dcd8d51b8591d4d1df50373646a363b8' +md5sums=('d68b4565294496a8bdf23c728a679f53' + 'ea9e85daef0cc96ce21649901b3514f7' 'f15398497e10e080c2406d2fc541660c' 'cb647c71ff4cb1e035b6e515d5f13ebf') diff --git a/community/unrtf/PKGBUILD b/community/unrtf/PKGBUILD index 9797c8e52..1b3950de9 100644 --- a/community/unrtf/PKGBUILD +++ b/community/unrtf/PKGBUILD @@ -1,26 +1,32 @@ -# $Id: PKGBUILD 8335 2010-01-18 20:36:57Z jlichtblau $ +# $Id: PKGBUILD 60272 2011-12-08 20:04:08Z jlichtblau $ # Maintainer: Jaroslav Lichtblau # Contributor: Alexander Fehr # Contributor: froggie pkgname=unrtf -pkgver=0.21.1 +pkgver=0.21.2 pkgrel=1 pkgdesc="Command-line program which converts RTF documents to other formats" arch=('i686' 'x86_64') url="http://www.gnu.org/software/unrtf/unrtf.html" license=('GPL3') depends=('glibc') +changelog=$pkgname.changelog source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('ce069646837d0a2c15b439a5529afde8') +sha256sums=('acb1b093dd2c7485fc43b128ccaf665d6188f568752cec96d54b693374caddb0') build() { cd ${srcdir}/$pkgname-$pkgver # bugfix FS#14043 - sed -e 's|/usr/local|/usr|' -i src/{main.h,path.h} || return 1 + sed -e 's|/usr/local|/usr|' -i src/{main.h,path.h} ./configure --prefix=/usr - make || return 1 + make +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + make DESTDIR=${pkgdir} install } diff --git a/community/unrtf/unrtf.changelog b/community/unrtf/unrtf.changelog new file mode 100644 index 000000000..04b898b16 --- /dev/null +++ b/community/unrtf/unrtf.changelog @@ -0,0 +1,11 @@ +2011-12-08 Jaroslav Lichtblau + * unrtf 0.21.2 + +2010-01-18 Jaroslav Lichtblau + * Update to major release 0.21.1 + +2009-05-31 Jaroslav Lichtblau + * FS#14043 fixed + +2009-03-25 Jaroslav Lichtblau + * Update to major release 0.21.0 -- cgit v1.2.3-54-g00ecf