summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-11-30 12:20:28 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-11-30 12:20:28 -0300
commitcbd27aa2c3c49e4d93979e847d8b177a1a4fe324 (patch)
tree2518fdda7fa59c59e691c6de52f830d58545aed4 /community
parentc6ead99bc92bd2b6da3e78e9cba5a8a86764de10 (diff)
parent946f0c9fe48dfb648a8a0be065e92f237ce210fd (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/flashrom/PKGBUILD extra/chmlib/PKGBUILD extra/crypto++/PKGBUILD extra/dvgrab/PKGBUILD extra/ebook-tools/PKGBUILD extra/fping/PKGBUILD extra/garcon/PKGBUILD extra/gpart/PKGBUILD extra/gtk2-perl/PKGBUILD extra/hd2u/PKGBUILD extra/hexedit/PKGBUILD
Diffstat (limited to 'community')
-rw-r--r--community/adesklets/PKGBUILD31
-rw-r--r--community/adesklets/posix_signal.patch81
-rw-r--r--community/alsa-tools/PKGBUILD40
-rw-r--r--community/arptables/PKGBUILD38
-rw-r--r--community/arptables/arptables.rc58
-rw-r--r--community/cabextract/PKGBUILD4
-rw-r--r--community/converseen/PKGBUILD4
-rw-r--r--community/convertlit/PKGBUILD31
-rw-r--r--community/cpupower/PKGBUILD43
-rw-r--r--community/cpupower/conf14
-rw-r--r--community/cpupower/rc31
-rw-r--r--community/efax-gtk/PKGBUILD4
-rw-r--r--community/ext4magic/PKGBUILD26
-rw-r--r--community/flashrom/PKGBUILD6
-rw-r--r--community/gsoap/PKGBUILD6
-rw-r--r--community/gstreamermm/PKGBUILD16
-rw-r--r--community/gstreamermm/gstreamermm.changelog9
-rw-r--r--community/httperf/PKGBUILD28
-rw-r--r--community/ipset/PKGBUILD10
-rw-r--r--community/libdbi/PKGBUILD6
-rw-r--r--community/libdbi/libdbi.install8
-rw-r--r--community/libtommath/PKGBUILD32
-rw-r--r--community/libtommath/libtommath-0.42.0-makefile.patch44
-rw-r--r--community/lsscsi/PKGBUILD27
-rw-r--r--community/pcsclite/PKGBUILD8
-rw-r--r--community/perf/PKGBUILD4
-rw-r--r--community/picocom/PKGBUILD26
-rw-r--r--community/redis/PKGBUILD6
-rw-r--r--community/rxvt/PKGBUILD34
-rw-r--r--community/sshpass/PKGBUILD28
-rw-r--r--community/sysstat/PKGBUILD10
-rw-r--r--community/vifm/PKGBUILD6
-rw-r--r--community/vifm/vifm.changelog3
33 files changed, 659 insertions, 63 deletions
diff --git a/community/adesklets/PKGBUILD b/community/adesklets/PKGBUILD
index 6a2a10ade..419b35387 100644
--- a/community/adesklets/PKGBUILD
+++ b/community/adesklets/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 26100 2010-09-13 15:56:15Z schuay $
+# $Id: PKGBUILD 59648 2011-11-29 01:35:36Z ebelanger $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Fubar
pkgname=adesklets
pkgver=0.6.1
-pkgrel=11
+pkgrel=12
pkgdesc="An imlib2-based system to have interactive 'desklets'."
arch=('i686' 'x86_64' 'mips64el')
url="http://adesklets.sourceforge.net/"
@@ -13,19 +13,21 @@ depends=('imlib2' 'fontconfig' 'python2' 'perl' 'ttf-bitstream-vera' 'libx11')
install=$pkgname.install
options=('!emptydirs')
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2 \
- fontconfig-2.4.patch)
-
+ fontconfig-2.4.patch posix_signal.patch)
md5sums=('cd390c9398449c5566033e2e4792bccb'
- '0374aec97670c90713fcabc2710e2160')
+ '0374aec97670c90713fcabc2710e2160'
+ 'd9ac15cc92f833f2446218e487e6c607')
build() {
- cd ${srcdir}/${pkgname}-${pkgver}
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ patch -p1 -i "${srcdir}/posix_signal.patch"
#patch for fontconfig => 2.4
- patch -Np0 -i ${srcdir}/fontconfig-2.4.patch
+ patch -Np0 -i "${srcdir}/fontconfig-2.4.patch"
autoreconf
- ./configure --prefix=/usr
+ PYTHON=/usr/bin/python2 ./configure --prefix=/usr
#makefile Fix
sed -i 's/\/bin\/sh//' doc/Makefile
@@ -37,16 +39,15 @@ build() {
make
}
-package() {
- cd ${srcdir}/${pkgname}-${pkgver}
- make DESTDIR=${pkgdir} INSTALLDIRS=vendor install
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
- rm ${pkgdir}/usr/share/info/dir
+ make DESTDIR="${pkgdir}" INSTALLDIRS=vendor install
#remove the font stuff
- rm -f ${pkgdir}/usr/share/adesklets/{FONT_LICENSE,Vera.ttf}
+ rm -f "${pkgdir}"/usr/share/adesklets/{FONT_LICENSE,Vera.ttf}
- find ${pkgdir} -name '.packlist' -exec rm '{}' \;
- find ${pkgdir} -name 'perllocal.pod' -exec rm '{}' \;
+ find "${pkgdir}" -name '.packlist' -exec rm '{}' \;
+ find "${pkgdir}" -name 'perllocal.pod' -exec rm '{}' \;
}
diff --git a/community/adesklets/posix_signal.patch b/community/adesklets/posix_signal.patch
new file mode 100644
index 000000000..90b3e8a12
--- /dev/null
+++ b/community/adesklets/posix_signal.patch
@@ -0,0 +1,81 @@
+From 92e686badce5c549699a30e82458a42dbcd99183 Mon Sep 17 00:00:00 2001
+From: Sylvain <syfou@users.sourceforge.net>
+Date: Wed, 2 May 2007 13:23:18 -0400
+Subject: [PATCH] Definitive fix for the signal module importation problem
+ ...from posix_signal on some amd64 systems. Many thanks to Jason
+ Pontious for his support and patience.
+
+---
+ scripting/python/posix_signal.c | 34 ++++++++++++++++++----------------
+ 1 files changed, 18 insertions(+), 16 deletions(-)
+
+diff --git a/scripting/python/posix_signal.c b/scripting/python/posix_signal.c
+index 620248f..7c5ac25 100644
+--- a/scripting/python/posix_signal.c
++++ b/scripting/python/posix_signal.c
+@@ -1,16 +1,17 @@
+ /*--- posix_signal.c -----------------------------------------------------------
+-This is nothing but a forward port from older python code by Lance Ellinghaus,
+-Guido van Rossum & al., reformatted and put back together by Sylvain Fourmanoit <syfou@users.sourceforge.net>
+-for recent (2.2.0 final and newer) python implementations.
+-
+-The ability to temporarily delay signals delivery is a very usefull feature -
+-not all C functions are reentrant (in fact, only a few need to be 'safe'
+-according to the POSIX 1003.1-2003 list), so being able to create critical
+-code sections is a must. Although I am convinced Python's developpers
+-had good reasons, I do not know myself why 'sigprocmask' and associated
+-functions support was dropped from the signal module on systems which
+-implemented them... Since I needed them in my blissful ignorance,
+-here they are, alive and kicking. :-)
++This is nothing but a forward port from older python code by Lance
++Ellinghaus, Guido van Rossum & al., reformatted and put back together
++by Sylvain Fourmanoit <syfou@users.sourceforge.net> for recent (2.2.0
++final and newer) python implementations.
++
++The ability to temporarily delay signals delivery is a very usefull
++feature - not all C functions are reentrant (in fact, only a few need
++to be 'safe' according to the POSIX 1003.1-2003 list), so being able
++to create critical code sections is a must. Although I am convinced
++Python's developpers had good reasons, I do not know myself why
++'sigprocmask' and associated functions support was dropped from the
++signal module on systems which implemented them... Since I needed them
++in my blissful ignorance, here they are, alive and kicking. :-)
+
+ ------------------------------------------------------------------------------*/
+ #include <Python.h>
+@@ -214,8 +215,9 @@ PyMODINIT_FUNC
+ initposix_signal(void)
+ {
+ const char * KEYS [] = { "__doc__", "__name__" , NULL};
+- int i, pos=0;
++ int i;
+ char * key_str, * doc_str , * new_str;
++ Py_ssize_t pos = 0;
+ PyObject * m, * mDoc, *d,
+ * pName, * pModule, * pDict,
+ * key, * value, *x;
+@@ -236,7 +238,6 @@ initposix_signal(void)
+ /* The chunk of code below roughly perfoms python equivalent of:
+ 'from signal import *' inside what would be a pure python posix_signal
+ module ... */
+- pName=PyString_FromString("signal");
+ if ((pModule=PyImport_Import((pName=PyString_FromString("signal"))))) {
+ pDict=PyModule_GetDict(pModule);
+ while (PyDict_Next(pDict, &pos, &key, &value))
+@@ -246,10 +247,11 @@ initposix_signal(void)
+ for(i=0;KEYS[i];++i)
+ if (strncmp(key_str,KEYS[i],strlen(KEYS[i]))==0)
+ break;
+- if (!KEYS[i])
++ if (!KEYS[i]) {
+ /* This needs python 2.2 and up */
++ Py_INCREF(value);
+ PyModule_AddObject(m,key_str,value);
+- else {
++ } else {
+ if (i==0) {
+ /* Append signal module documentation */
+ if ((mDoc=PyDict_GetItemString(d,KEYS[0]))) {
+--
+1.6.5.GIT
+
diff --git a/community/alsa-tools/PKGBUILD b/community/alsa-tools/PKGBUILD
new file mode 100644
index 000000000..1e097048e
--- /dev/null
+++ b/community/alsa-tools/PKGBUILD
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 59642 2011-11-28 23:44:29Z seblu $
+#Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
+#Contributor: Jochen Immend�rfer <jochen dot immendoerfer at gmail dot com>
+
+pkgname=alsa-tools
+pkgver=1.0.24.1
+pkgrel=1
+pkgdesc='ALSA tools package'
+arch=('i686' 'x86_64')
+url='http://alsa-project.org/'
+license=('GPL2')
+depends=('fltk' 'alsa-lib' 'gtk2')
+options=('!libtool')
+source=("ftp://ftp.alsa-project.org/pub/tools/$pkgname-$pkgver.tar.bz2")
+md5sums=('08fe93a12006093e590d7ecc02b119dd')
+
+build() {
+ for f in $(find "$srcdir/$pkgname-$pkgver" -type f -name configure ); do
+ [[ -x $f ]] || continue
+ cd "${f%/*}"
+ [[ qlo10k1 = ${PWD##*/} ]] && continue
+ [[ hwmixvolume = ${PWD##*/} ]] && continue
+ msg2 "Building ${PWD##*/}"
+ ./configure --prefix=/usr --x-libraries=/usr/lib
+ make
+ done
+}
+
+package() {
+ for f in $(find "$srcdir/$pkgname-$pkgver" -type f -name configure ); do
+ [[ -x $f ]] || continue
+ cd "${f%/*}"
+ [[ qlo10k1 = ${PWD##*/} ]] && continue
+ [[ hwmixvolume = ${PWD##*/} ]] && continue
+ msg2 "Installing ${PWD##*/}"
+ make "DESTDIR=$pkgdir" install
+ done
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/arptables/PKGBUILD b/community/arptables/PKGBUILD
new file mode 100644
index 000000000..172baf2bd
--- /dev/null
+++ b/community/arptables/PKGBUILD
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 59644 2011-11-29 01:04:59Z seblu $
+# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net
+# Contributor: Daniel Micay <danielmicay@gmail.com>
+# Contributor: Michal Soltys <soltys@ziu.info>
+
+pkgname=arptables
+pkgver=0.0.3_4
+pkgrel=1
+pkgdesc='ARP filtering utility'
+arch=('i686' 'x86_64')
+url='http://ebtables.sourceforge.net/'
+license=('GPL')
+source=("http://downloads.sourceforge.net/ebtables/$pkgname-v${pkgver//_/-}.tar.gz" 'arptables.rc')
+md5sums=('1d4ab05761f063b0751645d8f2b8f8e5'
+ 'f8c0ecad9151a16347c133e043232d4a')
+
+build() {
+ cd $pkgname-v${pkgver//_/-}
+ make
+}
+
+package() {
+ # install rc script
+ install -D -m 0755 arptables.rc "$pkgdir/etc/rc.d/arptables"
+
+ # setup arptables
+ cd $pkgname-v${pkgver//_/-}
+ make install \
+ DESTDIR="$pkgdir" \
+ PREFIX=/usr \
+ LIBDIR=/usr/lib/arptables \
+ BINDIR=/usr/sbin \
+ MANDIR=/usr/share/man \
+ INITDIR=/etc/rc.d \
+ SYSCONFIGDIR=/etc/arptables
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/arptables/arptables.rc b/community/arptables/arptables.rc
new file mode 100644
index 000000000..dae90ac2a
--- /dev/null
+++ b/community/arptables/arptables.rc
@@ -0,0 +1,58 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+[[ -x /usr/sbin/arptables ]] || exit 1
+[[ -x /usr/sbin/arptables-save ]] || exit 1
+[[ -x /usr/sbin/arptables-restore ]] || exit 1
+
+do_start() {
+ stat_busy "Restore arptables rules"
+ if [[ -r /etc/arptables/arptables ]]; then
+ /usr/sbin/arptables-restore </etc/arptables/arptables
+ (( $? == 0 )) && stat_done && add_daemon arptables && return
+ fi
+ stat_fail
+}
+
+do_stop() {
+ stat_busy "Flushing arptables rules"
+ /usr/sbin/arptables-restore </dev/null
+ if (( $? == 0 )); then
+ stat_done
+ rm_daemon arptables
+ else
+ stat_fail
+ fi
+}
+
+do_save() {
+ stat_busy "Saving arptables rules"
+ /usr/sbin/arptables-save >/etc/arptables/arptables
+ (( $? == 0 )) && stat_done || stat_fail
+}
+
+case "$1" in
+ start)
+ do_start
+ ;;
+ stop)
+ do_stop
+ ;;
+ restart)
+ do_stop
+ do_start
+ ;;
+ save)
+ do_save
+ ;;
+ status)
+ /usr/sbin/arptables-save
+ ;;
+ *)
+ echo "Usage $0 {start|stop|restart|save|status}" >&2
+ exit 1
+esac
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/cabextract/PKGBUILD b/community/cabextract/PKGBUILD
index 3801ff4b8..ba6680251 100644
--- a/community/cabextract/PKGBUILD
+++ b/community/cabextract/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 50767 2011-06-30 19:23:26Z giovanni $
+# $Id: PKGBUILD 59583 2011-11-28 16:44:30Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
pkgname=cabextract
pkgver=1.4
-pkgrel=1
+pkgrel=2
pkgdesc="A program to extract Microsoft cabinet (.CAB) files"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
diff --git a/community/converseen/PKGBUILD b/community/converseen/PKGBUILD
index 3715eb04c..9cb8758be 100644
--- a/community/converseen/PKGBUILD
+++ b/community/converseen/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 57374 2011-10-26 14:37:55Z giovanni $
+# $Id: PKGBUILD 59585 2011-11-28 16:53:50Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: archtux <antonio.arias99999 at gmail.com>
pkgname=converseen
pkgver=0.4.6
-pkgrel=3
+pkgrel=4
pkgdesc="The batch image converter and resizer"
arch=('i686' 'x86_64')
url="http://converseen.sourceforge.net/"
diff --git a/community/convertlit/PKGBUILD b/community/convertlit/PKGBUILD
new file mode 100644
index 000000000..3cfb61356
--- /dev/null
+++ b/community/convertlit/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 59640 2011-11-28 23:08:09Z giovanni $
+# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
+# Contributor: gDD (usrgdd | gmail)
+# Contributor: cantabile
+
+pkgname=convertlit
+pkgver=1.8
+pkgrel=5
+pkgdesc="An extractor/converter for .LIT eBooks"
+arch=('i686' 'x86_64')
+url="http://www.convertlit.com/"
+license=('GPL')
+depends=('glibc')
+makedepends=('libtommath')
+source=("http://www.convertlit.com/clit18src.zip")
+md5sums=('d691d4729485fe5d73e3f0937d8fb42e')
+
+build() {
+ cd ${srcdir}/lib
+ make
+
+ cd ../clit18
+ sed -i 's|../libtommath-0.30/|/usr/lib/|' Makefile
+ make
+}
+
+package() {
+ cd ${srcdir}/clit18
+
+ install -Dm755 clit "$pkgdir/usr/bin/clit"
+}
diff --git a/community/cpupower/PKGBUILD b/community/cpupower/PKGBUILD
new file mode 100644
index 000000000..f336126b8
--- /dev/null
+++ b/community/cpupower/PKGBUILD
@@ -0,0 +1,43 @@
+# $Id: PKGBUILD 59600 2011-11-28 20:02:34Z seblu $
+# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
+
+pkgname=cpupower
+pkgver=3.1.3
+pkgrel=1
+pkgdesc="Linux kernel power tool"
+license=('GPL2')
+arch=('i686' 'x86_64')
+url='http://www.kernel.org'
+backup=('etc/conf.d/cpupower')
+options=(!strip !buildflags)
+depends=('pciutils')
+conflicts=('cpufrequtils')
+provides=("cpufrequtils=$pkgver")
+source=(
+ "http://ftp.kernel.org/pub/linux/kernel/v3.0/linux-$pkgver.tar.xz"
+ 'rc'
+ 'conf'
+)
+md5sums=('d15080e5be9c05e6981320232ca68e3f'
+ 'd8b119eff7dc1a2d655eb71a47fa6215'
+ '218fd36a7957d3170ed8bd1a0be1f62f')
+
+build() {
+ cd linux-$pkgver/tools/power/cpupower
+ make
+}
+
+package() {
+ cd linux-$pkgver/tools/power/cpupower
+ make \
+ DESTDIR="$pkgdir" \
+ INSTALL='/bin/install -c' \
+ mandir='/usr/share/man' \
+ docdir='/usr/share/doc/cpupower' \
+ install install-man
+ # install rc.d script
+ install -D -m 755 "$srcdir/rc" "$pkgdir/etc/rc.d/cpupower"
+ install -D -m 644 "$srcdir/conf" "$pkgdir/etc/conf.d/cpupower"
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/cpupower/conf b/community/cpupower/conf
new file mode 100644
index 000000000..0f56836b1
--- /dev/null
+++ b/community/cpupower/conf
@@ -0,0 +1,14 @@
+# valid governors:
+# ondemand, performance, powersave,
+# conservative, userspace
+#governor="ondemand"
+
+# limit frequency range (optional)
+# valid suffixes: Hz, kHz (default), MHz, GHz, THz
+#min_freq="2.25GHz"
+#max_freq="3GHz"
+
+# use freq to set up the exact cpu frequency using it with userspace governor
+#freq=
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/cpupower/rc b/community/cpupower/rc
new file mode 100644
index 000000000..812637b61
--- /dev/null
+++ b/community/cpupower/rc
@@ -0,0 +1,31 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+[[ -f /etc/conf.d/cpupower ]] && . /etc/conf.d/cpupower
+
+case "$1" in
+ start|restart)
+ stat_busy "Setting cpupower rules"
+
+ declare params=''
+ if [[ "$governor" ]]; then
+ params="-g $governor "
+ params+="${min_freq:+-d $min_freq} "
+ params+="${max_freq:+-u $max_freq} "
+ params+="${freq:+-f $freq} "
+ cpupower frequency-set $params >/dev/null || { stat_fail; exit 1; }
+ stat_done
+ else
+ stat_append ': Invalid configuration'
+ stat_fail
+ fi
+ ;;
+ *)
+ echo "usage: $0 {start|restart}"
+esac
+
+true
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/efax-gtk/PKGBUILD b/community/efax-gtk/PKGBUILD
index 611b45f8b..6376c66e4 100644
--- a/community/efax-gtk/PKGBUILD
+++ b/community/efax-gtk/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 57276 2011-10-25 09:32:03Z giovanni $
+# $Id: PKGBUILD 59587 2011-11-28 18:05:39Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
pkgname=efax-gtk
pkgver=3.2.8
-pkgrel=1
+pkgrel=2
pkgdesc="A GUI front end for the 'efax' fax program"
arch=('i686' 'x86_64')
url="http://efax-gtk.sourceforge.net/"
diff --git a/community/ext4magic/PKGBUILD b/community/ext4magic/PKGBUILD
new file mode 100644
index 000000000..424fe129f
--- /dev/null
+++ b/community/ext4magic/PKGBUILD
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 59609 2007-01-01 00:07:53Z seblu $
+# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
+
+pkgname=ext4magic
+pkgver=0.2.3
+pkgrel=2
+pkgdesc='Linux admin tool, can help to recover deleted or overwritten files on ext3 and ext4 filesystems'
+arch=('i686' 'x86_64')
+url='http://developer.berlios.de/projects/ext4magic/'
+license=('GPL2')
+depends=('util-linux' 'e2fsprogs')
+source=("http://download.berlios.de/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('b23ecf9dccc8b597fbbe2d149d0c08ac')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/flashrom/PKGBUILD b/community/flashrom/PKGBUILD
index 10eb5391f..628c47250 100644
--- a/community/flashrom/PKGBUILD
+++ b/community/flashrom/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 52890 2011-07-29 17:53:33Z giovanni $
+# $Id: PKGBUILD 59589 2011-11-28 18:14:47Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Cilyan Olowen <gaknar@gmail.com>
# Contributor: fill <mailbox@fillo.ru>
@@ -6,9 +6,9 @@
pkgname=flashrom
pkgver=0.9.4
-pkgrel=1
+pkgrel=2
pkgdesc="Utility for reading, writing, erasing and verifying flash ROM chips"
-url="http://www.coreboot.org/Flashrom"
+url="http://www.coreboot.org/Flashrom/"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
depends=('libftdi')
diff --git a/community/gsoap/PKGBUILD b/community/gsoap/PKGBUILD
index 479195e01..bfa27de75 100644
--- a/community/gsoap/PKGBUILD
+++ b/community/gsoap/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 58578 2011-11-15 16:25:21Z spupykin $
+# $Id: PKGBUILD 59577 2011-11-28 11:48:45Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Tor Krill <tor@krill.nu>
# Contributor: Lee.MaRS <leemars@gmail.com>
pkgname=gsoap
-pkgver=2.8.4
+pkgver=2.8.5
pkgrel=1
pkgdesc="Offers an XML language binding to ease the development of SOAP/XML Web services in C and C/C++"
url="http://www.cs.fsu.edu/~engelen/soap.html"
@@ -14,7 +14,7 @@ depends=('openssl' 'zlib' 'gcc-libs')
makedepends=('autoconf' 'automake')
source=(http://prdownloads.sourceforge.net/gsoap2/${pkgname}_${pkgver}.zip
LICENSE)
-md5sums=('cb37c5cc3ef15b6b82863f45544d9473'
+md5sums=('541dcff86d1c6171cb8540cf51a4cfa8'
'27aaa3f5166db94d44044c11a7b2c37b')
build() {
diff --git a/community/gstreamermm/PKGBUILD b/community/gstreamermm/PKGBUILD
index a58ad18b4..fe63cb019 100644
--- a/community/gstreamermm/PKGBUILD
+++ b/community/gstreamermm/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 10834 2010-02-02 19:30:09Z jlichtblau $
+# $Id: PKGBUILD 59618 2007-01-01 00:29:08Z jlichtblau $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=gstreamermm
-pkgver=0.10.6
+pkgver=0.10.10
pkgrel=1
pkgdesc="C++ interface for GStreamer"
arch=('i686' 'x86_64' 'mips64el')
@@ -10,14 +10,20 @@ url="http://gstreamer.freedesktop.org/bindings/cplusplus.html"
license=('LGPL')
depends=('glibmm' 'gstreamer0.10-base>=0.10.25' 'libsigc++2.0' 'libxml++')
makedepends=('doxygen' 'pkgconfig')
-options=('!libtool')
+options=('!libtool')
+changelog=$pkgname.changelog
source=(http://ftp.gnome.org/pub/GNOME/sources/gstreamermm/0.10/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('d9414047afd7a44ed9c9b7075936a61d')
+sha256sums=('f8c31a7d3035d0dada60d27bdd01da04265439364f4469a981ee50d65218d638')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
- make || return 1
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+
make DESTDIR=${pkgdir} install
}
diff --git a/community/gstreamermm/gstreamermm.changelog b/community/gstreamermm/gstreamermm.changelog
new file mode 100644
index 000000000..245350ee3
--- /dev/null
+++ b/community/gstreamermm/gstreamermm.changelog
@@ -0,0 +1,9 @@
+2010-02-02 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+ * gstreamermm 0.10.10-1
+
+2010-02-02 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+ * Update to major release 0.10.6
+
+2009-11-07 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+ * Package moved to [community] as a dependency of subtitleeditor
+ * version 0.10.5
diff --git a/community/httperf/PKGBUILD b/community/httperf/PKGBUILD
new file mode 100644
index 000000000..c9b072988
--- /dev/null
+++ b/community/httperf/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 59593 2011-11-28 19:31:35Z seblu $
+# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
+# Contributor: Essien Ita Essien <me@essienitaessien.com>
+# Contributor: Peter Baldwin <bald_pete@hotmail.com>
+
+pkgname=httperf
+pkgver=0.9.0
+pkgrel=5
+pkgdesc='A tool for measuring web server performance.'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://code.google.com/p/httperf'
+depends=('openssl')
+source=("http://httperf.googlecode.com/files/$pkgname-$pkgver.tar.gz")
+md5sums=('2968c36b9ecf3d98fc1f2c1c9c0d9341')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/ipset/PKGBUILD b/community/ipset/PKGBUILD
index edabb23c9..09eb63959 100644
--- a/community/ipset/PKGBUILD
+++ b/community/ipset/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 59544 2011-11-28 00:43:00Z seblu $
+# $Id: PKGBUILD 59646 2011-11-29 01:17:13Z seblu $
# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
pkgname=ipset
-pkgver=6.9.1
-pkgrel=2
+pkgver=6.10
+pkgrel=1
pkgdesc='Administration tool for IP sets'
arch=('i686' 'x86_64')
url='http://ipset.netfilter.org'
@@ -11,12 +11,12 @@ license=('GPL2')
depends=('libmnl')
makedepends=('linux-headers')
source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2")
-md5sums=('71f4b826e025be5918a52e9843673167')
+md5sums=('2dc677ab126269d09db5cd908c045591')
build() {
cd $pkgname-$pkgver
./autogen.sh
- ./configure --prefix=/usr --with-kbuild=/lib/modules/$(pacman -Qi linux-headers|sed -rn 's,Version[[:space:]]*:[[:space:]]*(.*),\1,p')-ARCH/build
+ ./configure --prefix=/usr
make
}
diff --git a/community/libdbi/PKGBUILD b/community/libdbi/PKGBUILD
index f48fc473f..33d422607 100644
--- a/community/libdbi/PKGBUILD
+++ b/community/libdbi/PKGBUILD
@@ -1,9 +1,10 @@
+# $Id: PKGBUILD 59571 2011-11-28 08:58:19Z ttopper $
# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de>
# Contributor: Carl Flippin <carlf@photocarl.org>
pkgname=libdbi
pkgver=0.8.4
-pkgrel=1
+pkgrel=2
pkgdesc="A database independant abstraction layer for C"
url="http://libdbi.sourceforge.net"
license=('LGPL')
@@ -17,7 +18,7 @@ md5sums=('c5f15407ef7b07ba854cd8c9b15b88ff')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
- make
+ make CFLAGS="-fno-fast-math"
}
package() {
@@ -25,3 +26,4 @@ package() {
make DESTDIR=${pkgdir} install
}
+# vim:set ts=2 sw=2 et:
diff --git a/community/libdbi/libdbi.install b/community/libdbi/libdbi.install
index 158201554..1dcdad1a1 100644
--- a/community/libdbi/libdbi.install
+++ b/community/libdbi/libdbi.install
@@ -1,19 +1,13 @@
-# arg 1: the new package version
post_install() {
ldconfig
}
-# arg 1: the new package version
-# arg 2: the old package version
post_upgrade() {
ldconfig
}
-# arg 1: the old package version
post_remove() {
ldconfig
}
-op=$1
-shift
-$op $*
+# vim:set ts=2 sw=2 et:
diff --git a/community/libtommath/PKGBUILD b/community/libtommath/PKGBUILD
new file mode 100644
index 000000000..33c60ba42
--- /dev/null
+++ b/community/libtommath/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 59626 2011-11-28 21:56:45Z giovanni $
+# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
+# Contributor: suasageandeggs <s_stoakley@hotmail.co.uk>
+# Contributor: Michael Fellinger <manveru@www.weez-int.com>
+
+pkgname=libtommath
+pkgver=0.42.0
+pkgrel=2
+pkgdesc="Highly optimized and portable routines for integer based number theoretic applications"
+url="http://www.libtom.org/"
+license=('custom')
+arch=('i686' 'x86_64')
+source=("http://libtom.org/files/ltm-${pkgver}.tar.bz2"
+ 'libtommath-0.42.0-makefile.patch')
+md5sums=('7380da904b020301be7045cb3a89039b'
+ 'd50c26fdc5aa87e6acfd4adc20557ff4')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+
+ patch -Np1 -i ${srcdir}/libtommath-0.42.0-makefile.patch
+
+ make -f makefile.shared IGNORE_SPEED=1
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+
+ make DESTDIR=$pkgdir INSTALL_GROUP=root install
+ install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+ chmod 644 ${pkgdir}/usr/lib/libtommath.a
+}
diff --git a/community/libtommath/libtommath-0.42.0-makefile.patch b/community/libtommath/libtommath-0.42.0-makefile.patch
new file mode 100644
index 000000000..d98456e5b
--- /dev/null
+++ b/community/libtommath/libtommath-0.42.0-makefile.patch
@@ -0,0 +1,44 @@
+--- a/makefile.shared
++++ b/makefile.shared
+@@ -3,7 +3,7 @@
+ #Tom St Denis
+ VERSION=0:41
+
+-CC = libtool --mode=compile --tag=CC gcc
++LTCOMPILE = libtool --mode=compile --tag=CC $(CC)
+
+ CFLAGS += -I./ -Wall -W -Wshadow -Wsign-compare
+
+@@ -82,21 +82,24 @@
+
+ objs: $(OBJECTS)
+
++.c.o:
++ $(LTCOMPILE) $(CFLAGS) $(LDFLAGS) -o $@ -c $<
++
+ $(LIBNAME): $(OBJECTS)
+- libtool --mode=link gcc *.lo -o $(LIBNAME) -rpath $(LIBPATH) -version-info $(VERSION)
++ libtool --mode=link --tag=CC $(CC) $(LDFLAGS) *.lo -o $(LIBNAME) -rpath $(LIBPATH) -version-info $(VERSION)
+
+ install: $(LIBNAME)
+- install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH)
++ install -d $(DESTDIR)$(LIBPATH)
+ libtool --mode=install install -c $(LIBNAME) $(DESTDIR)$(LIBPATH)/$(LIBNAME)
+- install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(INCPATH)
+- install -g $(GROUP) -o $(USER) $(HEADERS) $(DESTDIR)$(INCPATH)
++ install -d $(DESTDIR)$(INCPATH)
++ install -m 644 $(HEADERS) $(DESTDIR)$(INCPATH)
+
+ test: $(LIBNAME) demo/demo.o
+- gcc $(CFLAGS) -c demo/demo.c -o demo/demo.o
+- libtool --mode=link gcc -o test demo/demo.o $(LIBNAME_S)
++ $(CC) $(CFLAGS) -c demo/demo.c -o demo/demo.o
++ libtool --mode=link $(CC) $(LDFLAGS) -o test demo/demo.o $(LIBNAME_S)
+
+ mtest: test
+- cd mtest ; gcc $(CFLAGS) mtest.c -o mtest
++ cd mtest ; $(CC) $(CFLAGS) $(LDFLAGS) mtest.c -o mtest
+
+ timing: $(LIBNAME)
+- gcc $(CFLAGS) -DTIMER demo/timing.c $(LIBNAME_S) -o ltmtest
++ libtool --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -DTIMER demo/timing.c $(LIBNAME_S) -o ltmtest
diff --git a/community/lsscsi/PKGBUILD b/community/lsscsi/PKGBUILD
new file mode 100644
index 000000000..7f592af0b
--- /dev/null
+++ b/community/lsscsi/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 59629 2011-11-28 22:05:11Z seblu $
+# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
+# Contributor : XAVeRY - los dot danielos at gmail dot com
+
+pkgname=lsscsi
+pkgver=0.25
+pkgrel=1
+pkgdesc='A tool that lists devices connected via SCSI and its transports'
+arch=('i686' 'x86_64')
+url="http://sg.danny.cz/scsi/lsscsi.html"
+license=('GPL')
+depends=('sysfsutils')
+source=("http://sg.danny.cz/scsi/${pkgname}-${pkgver}.tgz")
+md5sums=('c4e36b106624aff78527c54cf08ecbfe')
+
+build() {
+ cd ${pkgname}-${pkgver}
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/pcsclite/PKGBUILD b/community/pcsclite/PKGBUILD
index d01bdcb65..66aaae69d 100644
--- a/community/pcsclite/PKGBUILD
+++ b/community/pcsclite/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 59244 2011-11-21 19:29:18Z giovanni $
+# $Id: PKGBUILD 59581 2011-11-28 13:33:16Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Daniel Plaza <daniel.plaza.espi@gmail.com>
pkgname=pcsclite
-pkgver=1.8.0
+pkgver=1.8.1
pkgrel=1
pkgdesc="PC/SC Architecture smartcard middleware library"
arch=('i686' 'x86_64' 'mips64el')
@@ -12,9 +12,9 @@ license=('BSD')
depends=('udev')
makedepends=('pkgconfig')
options=('!libtool' '!docs')
-source=("https://alioth.debian.org/frs/download.php/3684/pcsc-lite-${pkgver}.tar.bz2"
+source=("https://alioth.debian.org/frs/download.php/3687/pcsc-lite-${pkgver}.tar.bz2"
'pcscd')
-md5sums=('8af937240126a4afdcf235e98a6d861a'
+md5sums=('fd035e4f610eba6fa545159e60d0d780'
'c97b6bce695222efb0f003d8e8369010')
build() {
diff --git a/community/perf/PKGBUILD b/community/perf/PKGBUILD
index 0fca9ed9a..67c6b6a5c 100644
--- a/community/perf/PKGBUILD
+++ b/community/perf/PKGBUILD
@@ -2,7 +2,7 @@
# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
pkgname=perf
-pkgver=3.1.2
+pkgver=3.1.3
pkgrel=1
pkgdesc="Linux kernel $pkgver performance tool"
license=('GPL2')
@@ -12,7 +12,7 @@ options=(!strip)
depends=('python2' 'libnewt' 'elfutils')
makedepends=('asciidoc' 'xmlto')
source=("http://ftp.kernel.org/pub/linux/kernel/v3.0/linux-$pkgver.tar.xz")
-md5sums=('24027361d3ea6ea2cdd7bbdd2effe43f')
+md5sums=('d15080e5be9c05e6981320232ca68e3f')
build() {
cd linux-$pkgver/tools/perf
diff --git a/community/picocom/PKGBUILD b/community/picocom/PKGBUILD
new file mode 100644
index 000000000..7b98ad531
--- /dev/null
+++ b/community/picocom/PKGBUILD
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 59616 2007-01-01 00:26:04Z seblu $
+# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
+# Contributor: Jens Adam (byte/jra) <j_adam@web.de>
+
+pkgname=picocom
+pkgver=1.6
+pkgrel=2
+pkgdesc='Minimal dumb-terminal emulation program, very much like minicom'
+url='http://code.google.com/p/picocom/'
+license=('GPL2')
+arch=('i686' 'x86_64')
+source=("http://${pkgname}.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
+sha1sums=('f042e15fa76ab3349c74a70062aa210b527e6bdc')
+
+build() {
+ cd ${pkgname}-${pkgver}
+ make -e
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+ install -D -m 755 picocom "${pkgdir}"/usr/bin/picocom
+ install -D -m 644 picocom.8 "${pkgdir}"/usr/share/man/man8/picocom.8
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/redis/PKGBUILD b/community/redis/PKGBUILD
index a2f563c6c..0994d635c 100644
--- a/community/redis/PKGBUILD
+++ b/community/redis/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 57479 2011-10-28 13:24:44Z spupykin $
+# $Id: PKGBUILD 59579 2011-11-28 12:47:33Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Jan-Erik Rediger <badboy at archlinux dot us>
# Contributor: nofxx <x@<nick>.com>
pkgname=redis
-pkgver=2.4.2
+pkgver=2.4.4
pkgrel=1
pkgdesc="Advanced key-value store"
arch=('i686' 'x86_64' 'mips64el')
@@ -18,7 +18,7 @@ backup=("etc/redis.conf"
source=("http://redis.googlecode.com/files/${pkgname}-${pkgver}.tar.gz"
"redis.d"
"redis.logrotate")
-md5sums=('c4b0b5e4953a11a503cb54cf6b09670e'
+md5sums=('8aec2c38b7d70956688cbfe3a99495fa'
'9726d06d0a0c60cb5d55a31b3dc1e55d'
'9e2d75b7a9dc421122d673fe520ef17f')
diff --git a/community/rxvt/PKGBUILD b/community/rxvt/PKGBUILD
new file mode 100644
index 000000000..436fd7ae5
--- /dev/null
+++ b/community/rxvt/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Seblu <seblu+arch@seblu.net>
+# Contributor: Malte Rabenseifer <malte@zearan.de>
+# Contributor: urist <9362773@gmail.com>
+# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
+# Contributor: Troy Phillips <9362773@gmail.com>
+# Contributor: Judd Vinet <jvinet@zeroflux.org>
+
+pkgname=rxvt
+pkgver=2.7.10
+pkgrel=5
+pkgdesc='A colour vt102 terminal emulator'
+arch=('i686' 'x86_64')
+url='http://rxvt.sourceforge.net/'
+license=('GPL')
+depends=('libx11')
+makedepends=('libxt')
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('302c5c455e64047b02d1ef19ff749141')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make prefix="$pkgdir/usr" mandir="$pkgdir/usr/share/man/man1" install
+ rm "$pkgdir/usr/bin/$pkgname-$pkgver"
+ rmdir "$pkgdir/usr/include" "$pkgdir/usr/lib"
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/sshpass/PKGBUILD b/community/sshpass/PKGBUILD
new file mode 100644
index 000000000..3f18e8e76
--- /dev/null
+++ b/community/sshpass/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 59631 2011-11-28 22:18:13Z seblu $
+# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
+# Contributor: Timothy Redaelli <timothy.redaelli@gmail.com>
+# Contributor: Sebastien Vasey sebastien dot vasey at gmail dot com
+
+pkgname=sshpass
+pkgver=1.05
+pkgrel=1
+pkgdesc='Fool ssh into accepting an interactive password non-interactively'
+arch=('i686' 'x86_64')
+url='http://sourceforge.net/projects/sshpass/'
+license=('GPL')
+depends=('openssh')
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('c52d65fdee0712af6f77eb2b60974ac7')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/sysstat/PKGBUILD b/community/sysstat/PKGBUILD
index 1d252b3d1..a24abdc21 100644
--- a/community/sysstat/PKGBUILD
+++ b/community/sysstat/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 54413 2011-08-18 09:29:38Z spupykin $
+# $Id: PKGBUILD 59567 2011-11-28 06:28:48Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Martin Devera <devik@cdi.cz>
pkgname=sysstat
-pkgver=10.0.1
-pkgrel=2
+pkgver=10.0.3
+pkgrel=1
pkgdesc="a collection of performance monitoring tools (iostat,isag,mpstat,pidstat,sadf,sar)"
arch=('i686' 'x86_64' 'mips64el')
url="http://pagesperso-orange.fr/sebastien.godard/"
@@ -16,8 +16,8 @@ options=(zipman)
backup=('etc/conf.d/sysstat'
'etc/conf.d/sysstat.ioconf')
source=(http://pagesperso-orange.fr/sebastien.godard/$pkgname-$pkgver.tar.gz
- sysstat)
-md5sums=('a8b12230452dc0e0b6cae5fd5ec3c579'
+ sysstat)
+md5sums=('0e1ed5200f31f69a3b90ff1e81c07745'
'0241e3dd701cf7badbd3bb8408fb7bc9')
build() {
diff --git a/community/vifm/PKGBUILD b/community/vifm/PKGBUILD
index 25dea5a74..8555fe568 100644
--- a/community/vifm/PKGBUILD
+++ b/community/vifm/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 56645 2011-10-09 12:00:43Z jlichtblau $
+# $Id: PKGBUILD 59610 2007-01-01 00:15:20Z jlichtblau $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=vifm
-pkgver=0.7.0
+pkgver=0.7.1
pkgrel=1
pkgdesc="Ncurses based file manager with vi like keybindings"
arch=('i686' 'x86_64' 'mips64el')
@@ -11,7 +11,7 @@ license=('GPL')
depends=('ncurses' 'gtk2')
changelog=$pkgname.changelog
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha256sums=('c3e7d677c6f807dc0adefb175c5301ac0bb3cc1d1998d7928878bfe0c5eef139')
+sha256sums=('7c0f2e8949851394a0fa91a9e8509a58306ce3aebd27fed163fbec10c2258583')
build() {
cd ${srcdir}/$pkgname-$pkgver
diff --git a/community/vifm/vifm.changelog b/community/vifm/vifm.changelog
index add2882b6..24dcb8dd5 100644
--- a/community/vifm/vifm.changelog
+++ b/community/vifm/vifm.changelog
@@ -1,3 +1,6 @@
+2011-11-28 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+ * vifm 0.7.1-1
+
2011-10-09 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
* vifm 0.7.0-1