summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-10-14 23:14:43 +0000
committerroot <root@rshg054.dnsready.net>2011-10-14 23:14:43 +0000
commit4232b74445f80f4175c1485a53a02c79b37a63f1 (patch)
treeff7a0dde570bf886cc5006918a9ee339efecde1c /community
parente426a2696568231fa5a863cb80f4db9088193732 (diff)
Fri Oct 14 23:14:43 UTC 2011
Diffstat (limited to 'community')
-rw-r--r--community/autossh/PKGBUILD24
-rw-r--r--community/pari/PKGBUILD22
-rw-r--r--community/python2-matplotlib/PKGBUILD12
-rw-r--r--community/sysprof/PKGBUILD6
4 files changed, 32 insertions, 32 deletions
diff --git a/community/autossh/PKGBUILD b/community/autossh/PKGBUILD
index c15c56ad8..dae94ca80 100644
--- a/community/autossh/PKGBUILD
+++ b/community/autossh/PKGBUILD
@@ -1,8 +1,8 @@
# Contributor: Ian Taylor <ian at lorf dot orgs>
pkgname=autossh
-pkgver=1.4b
-pkgrel=2
+pkgver=1.4c
+pkgrel=1
pkgdesc="Automatically restart SSH sessions and tunnels"
arch=('i686' 'x86_64')
url="http://www.harding.motd.ca/autossh/"
@@ -10,24 +10,24 @@ license=('custom')
depends=('openssh')
source=("http://www.harding.motd.ca/autossh/$pkgname-$pkgver.tgz"
"LICENSE")
-md5sums=('8f9aa006f6f69e912d3c2f504622d6f7'
+md5sums=('26520eea934f296be0783dabe7fcfd28'
'5d65ce1eff3f2c72546a8343b18d67bf')
build() {
cd $srcdir/$pkgname-$pkgver
msg "Configuring"
- ./configure --prefix=$pkgdir/usr --sysconfdir=/etc --localstatedir=/var || return 1
+ ./configure --prefix=$pkgdir/usr --sysconfdir=/etc --localstatedir=/var
msg "Building"
- make || return 1
+ make
msg "Creating package"
- install -D -m755 autossh $pkgdir/usr/bin/autossh || return 1
- install -D -m644 CHANGES $pkgdir/usr/share/doc/autossh/CHANGES || return 1
- install -D -m644 README $pkgdir/usr/share/doc/autossh/README || return 1
- install -D -m644 autossh.host $pkgdir/usr/share/autossh/examples/autossh.host || return 1
- install -D -m644 rscreen $pkgdir/usr/share/autossh/examples/rscreen || return 1
- install -D -m644 autossh.1 $pkgdir/usr/share/man/man1/autossh.1 || return 1
- install -D -m644 ${startdir}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE || return 1
+ install -D -m755 autossh $pkgdir/usr/bin/autossh
+ install -D -m644 CHANGES $pkgdir/usr/share/doc/autossh/CHANGES
+ install -D -m644 README $pkgdir/usr/share/doc/autossh/README
+ install -D -m644 autossh.host $pkgdir/usr/share/autossh/examples/autossh.host
+ install -D -m644 rscreen $pkgdir/usr/share/autossh/examples/rscreen
+ install -D -m644 autossh.1 $pkgdir/usr/share/man/man1/autossh.1
+ install -D -m644 ${srcdir}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}
diff --git a/community/pari/PKGBUILD b/community/pari/PKGBUILD
index ec9c6f80b..770b1133c 100644
--- a/community/pari/PKGBUILD
+++ b/community/pari/PKGBUILD
@@ -1,35 +1,35 @@
+# $Id: PKGBUILD 56828 2011-10-14 00:16:01Z bisson $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
pkgname=pari
pkgver=2.5.0
-pkgrel=1
+pkgrel=2
pkgdesc='Computer algebra system designed for fast computations in number theory'
arch=('i686' 'x86_64')
url='http://pari.math.u-bordeaux.fr/'
license=('GPL')
-depends=('gmp' 'readline')
+depends=('gmp' 'readline' 'libx11')
makedepends=('perl' 'texlive-core')
-optdepends=('perl: gphelp, tex2mail'
- 'libx11: high precision plots')
-source=("${url}pub/pari/unix/$pkgname-$pkgver.tar.gz")
+optdepends=('perl: gphelp, tex2mail')
+source=("${url}pub/pari/unix/${pkgname}-${pkgver}.tar.gz")
sha1sums=('d96250cd8b3e426f548a832f2f44fdfd30fd32b6')
build() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "${srcdir}/${pkgname}-${pkgver}"
./Configure --prefix=/usr --with-gmp --with-readline
make all
}
check() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "${srcdir}/${pkgname}-${pkgver}"
make bench
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
# symlink pointing to a symlink that is going to be moved by zipman
- rm "$pkgdir"/usr/share/man/man1/pari.1
- ln -s gp.1.gz "$pkgdir"/usr/share/man/man1/pari.1.gz
+ rm "${pkgdir}"/usr/share/man/man1/pari.1
+ ln -s gp.1.gz "${pkgdir}"/usr/share/man/man1/pari.1.gz
}
diff --git a/community/python2-matplotlib/PKGBUILD b/community/python2-matplotlib/PKGBUILD
index 7f19554c5..102421f30 100644
--- a/community/python2-matplotlib/PKGBUILD
+++ b/community/python2-matplotlib/PKGBUILD
@@ -1,17 +1,17 @@
-# $Id: PKGBUILD 40554 2011-02-25 11:55:09Z stephane $
+# $Id: PKGBUILD 56824 2011-10-13 21:31:09Z stephane $
# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org>
pkgname=python2-matplotlib
-pkgver=1.0.1
-pkgrel=2
+pkgver=1.1.0
+pkgrel=1
pkgdesc="A python plotting library, making publication quality plots"
arch=('i686' 'x86_64')
url="http://matplotlib.sourceforge.net/"
backup=(usr/lib/python2.7/site-packages/matplotlib/mpl-data/matplotlibrc)
-depends=('python-dateutil' 'python2-pytz' 'python2-numpy' 'python2-pyparsing' 'python2-qt')
+depends=('python2-dateutil' 'python2-pytz' 'python2-numpy' 'python2-pyparsing' 'python2-qt')
optdepends=('pygtk: for use with the GTK or GTKAgg backend'
'tk: used by the TkAgg backend'
'wxpython: for use with the WXAgg backend')
@@ -21,7 +21,7 @@ replaces=('python-matplotlib')
conflicts=('python-matplotlib')
source=("http://downloads.sourceforge.net/matplotlib/matplotlib-${pkgver}.tar.gz"
setup.cfg)
-sha1sums=('c7a832f28a66817626e7a8af21e14ea0e15f4008'
+sha1sums=('435b4f04a7e099b79f66451d69ad0b5ce66030ae'
'bcb5a83db9d95c96a57ca518fa6bd1897b23558f')
license=('custom')
@@ -48,5 +48,5 @@ package() {
python2 setup.py install -O1 --skip-build --root "${pkgdir}" --prefix=/usr
install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
- mv license "${pkgdir}/usr/share/licenses/${pkgname}"
+ install -m 644 doc/users/license.rst "${pkgdir}/usr/share/licenses/${pkgname}"
}
diff --git a/community/sysprof/PKGBUILD b/community/sysprof/PKGBUILD
index 0def78052..697cdc142 100644
--- a/community/sysprof/PKGBUILD
+++ b/community/sysprof/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 34968 2010-12-14 10:32:56Z spupykin $
+# $Id: PKGBUILD 56814 2011-10-13 17:07:33Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Geoffroy Carrier <geoffroy.carrier@aur.archlinux.org>
# Previous Contributor: Eric Belanger <belanger@astro.umontreal.ca>
# Previous Contributor: aeolist <aeolist@hotmail.com>
pkgname=sysprof
-pkgver=1.1.6
+pkgver=1.1.8
pkgrel=1
pkgdesc="A sampling CPU profiler that uses a Linux kernel module to profile the entire system"
arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@ license=("GPL")
source=(http://www.daimi.au.dk/~sandmann/$pkgname/$pkgname-$pkgver.tar.gz)
depends=('libglade' 'binutils')
makedepends=('libglade' 'binutils' 'kernel26-headers')
-md5sums=('219f888777771f3709cb35a64bb008a9')
+md5sums=('a46e24250988d96d8fc7b30773d55222')
build() {
cd "$srcdir/$pkgname-$pkgver"