diff options
author | root <root@rshg054.dnsready.net> | 2013-10-01 03:07:25 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-10-01 03:07:25 -0700 |
commit | a1792bae6f21dd0cca9e5a0d5cfad55edc1c4955 (patch) | |
tree | 1c6225df5977b18e7eb68340f773a18bd26dc500 /extra | |
parent | a1ba981700ea6943bedc5d7bb769b1f893088c7f (diff) |
Tue Oct 1 03:05:59 PDT 2013
Diffstat (limited to 'extra')
-rw-r--r-- | extra/asymptote/PKGBUILD | 6 | ||||
-rw-r--r-- | extra/python-geoip/PKGBUILD | 8 | ||||
-rw-r--r-- | extra/rsync/PKGBUILD | 17 |
3 files changed, 18 insertions, 13 deletions
diff --git a/extra/asymptote/PKGBUILD b/extra/asymptote/PKGBUILD index eca3192f2..6b289393c 100644 --- a/extra/asymptote/PKGBUILD +++ b/extra/asymptote/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 191983 2013-08-03 19:18:46Z remy $ +# $Id: PKGBUILD 195314 2013-09-30 10:28:34Z allan $ # Maintainer: Rémy Oudompheng <remy@archlinux.org> # Contributor: Firmicus <francois.archlinux.org> # Contributor: bender02 at gmx dot com pkgname=asymptote pkgver=2.24 -pkgrel=1 +pkgrel=2 pkgdesc="A vector graphics language (like metapost)" arch=('i686' 'x86_64') url="http://asymptote.sourceforge.net/" @@ -16,7 +16,7 @@ makedepends=('ghostscript' 'imagemagick' 'texlive-plainextra' # For texinfo ) optdepends=('python2: for the xasy GUI' - 'python-imaging: for the xasy GUI' + 'python2-pillow: for the xasy GUI' 'tix: for the xasy GUI') source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.src.tgz) install=texlive.install diff --git a/extra/python-geoip/PKGBUILD b/extra/python-geoip/PKGBUILD index 01ab96af0..dc15efab0 100644 --- a/extra/python-geoip/PKGBUILD +++ b/extra/python-geoip/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 186477 2013-05-27 11:23:42Z foutrelis $ +# $Id: PKGBUILD 195467 2013-09-30 13:27:17Z jgc $ # Maintainer: # Contributor: Angel Velasquez <angvp@archlinux.org> # Contributor: Jan de Groot <jgc@archlinux.org> @@ -6,7 +6,7 @@ pkgname=('python2-geoip') pkgbase=python-geoip pkgver=1.2.8 -pkgrel=1 +pkgrel=2 pkgdesc="Python bindings for the GeoIP IP-to-country resolver library" arch=('i686' 'x86_64') url="http://dev.maxmind.com/geoip/legacy/downloadable#Python-10" @@ -16,12 +16,12 @@ source=(http://www.maxmind.com/download/geoip/api/python/GeoIP-Python-$pkgver.ta sha256sums=('8b946307355b60cb0f2b0be8ac90c1231286e0e79917509763267fce01a50e73') build() { - cd "$srcdir/GeoIP-Python-$pkgver" + cd "GeoIP-Python-$pkgver" python2 setup.py build } package_python2-geoip() { - cd "$srcdir/GeoIP-Python-$pkgver" + cd "GeoIP-Python-$pkgver" python2 setup.py install --root="$pkgdir" -O1 } diff --git a/extra/rsync/PKGBUILD b/extra/rsync/PKGBUILD index 9cc142f00..4744ab5b8 100644 --- a/extra/rsync/PKGBUILD +++ b/extra/rsync/PKGBUILD @@ -1,18 +1,20 @@ -# $Id: PKGBUILD 185234 2013-05-12 10:36:09Z pierre $ +# $Id: PKGBUILD 195476 2013-09-30 19:07:27Z pierre $ pkgname=rsync -pkgver=3.0.9 -pkgrel=6 +pkgver=3.1.0 +pkgrel=1 pkgdesc="A file transfer program to keep remote files in sync" arch=('i686' 'x86_64') url="http://samba.anu.edu.au/rsync/" license=('GPL3') -depends=('perl') +depends=('perl' 'popt') backup=('etc/rsyncd.conf' 'etc/xinetd.d/rsync') source=("http://rsync.samba.org/ftp/rsync/$pkgname-$pkgver.tar.gz" + "http://rsync.samba.org/ftp/rsync/$pkgname-$pkgver.tar.gz.asc" 'rsyncd.conf' 'rsync.xinetd' 'rsyncd.service' 'rsyncd.socket' 'rsyncd@.service') -md5sums=('5ee72266fe2c1822333c407e1761b92b' +md5sums=('3be148772a33224771a8d4d2a028b132' + 'SKIP' 'bce64d122a8e0f86872a4a21a03bc7f3' 'ea3e9277dc908bc51f9eddc0f6b935c1' '084140868d38cf3e937a2db716d47c0f' @@ -21,7 +23,10 @@ md5sums=('5ee72266fe2c1822333c407e1761b92b' build() { cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr --with-included-popt + ./configure --prefix=/usr \ + --with-included-popt=no \ + --with-included-zlib=no \ + --disable-debug make } |