summaryrefslogtreecommitdiff
path: root/extra/twisted/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-07-18 00:01:34 +0000
committerroot <root@rshg054.dnsready.net>2012-07-18 00:01:34 +0000
commit63d179775e063452db6358e15b9847e7fc6c84b6 (patch)
tree0082531329e5caae873c4eb5f1fbd41d2a98d938 /extra/twisted/PKGBUILD
parent412d061bfbf23d1e908eed3f8405b1af46fb1ba8 (diff)
Wed Jul 18 00:01:34 UTC 2012
Diffstat (limited to 'extra/twisted/PKGBUILD')
-rw-r--r--extra/twisted/PKGBUILD21
1 files changed, 12 insertions, 9 deletions
diff --git a/extra/twisted/PKGBUILD b/extra/twisted/PKGBUILD
index b20220a6f..f80e5486e 100644
--- a/extra/twisted/PKGBUILD
+++ b/extra/twisted/PKGBUILD
@@ -1,21 +1,24 @@
-# $Id: PKGBUILD 150115 2012-02-12 18:51:16Z eric $
+# $Id: PKGBUILD 163609 2012-07-17 01:58:52Z eric $
# Maintainer : Ionut Biru <ibiru@archlinux.org>
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
pkgname=twisted
-pkgver=12.0.0
+pkgver=12.1.0
pkgrel=1
pkgdesc="Asynchronous networking framework written in Python."
arch=('i686' 'x86_64')
url="http://twistedmatrix.com/"
license=('MIT')
-depends=('python2' 'pycrypto' 'zope-interface')
+depends=('pycrypto' 'python2-zope-interface')
optdepends=('python2-pyopenssl'
- 'python-soappy: for twisted.web.soap')
+ 'python-soappy: for twisted.web.soap'
+ 'python2-pyasn1: for using conch'
+ 'pygtk: for using manhole'
+ 'tk: for using tkconch')
install=twisted.install
source=(http://twistedmatrix.com/Releases/Twisted/${pkgver%.*}/Twisted-$pkgver.tar.bz2)
-md5sums=('cf49a8676c21c50faf1b42b528049471')
+md5sums=('f396f1d6f5321e869c2f89b2196a9eb5')
build() {
cd "$srcdir/Twisted-$pkgver"
@@ -27,8 +30,8 @@ package() {
python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
- sed -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
- -i "$pkgdir"/usr/lib/python2.7/site-packages/twisted/trial/test/scripttest.py
- sed -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
- -i "$pkgdir"/usr/lib/python2.7/site-packages/twisted/mail/test/pop3testserver.py
+ sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+ "$pkgdir"/usr/lib/python2.7/site-packages/twisted/trial/test/scripttest.py \
+ "$pkgdir"/usr/lib/python2.7/site-packages/twisted/mail/test/pop3testserver.py \
+ "$pkgdir"/usr/lib/python2.7/site-packages/twisted/python/test/pullpipe.py
}