Twisted: update to 11.0.0.
This commit is contained in:
parent
d116cae894
commit
d2bfce9e9b
|
@ -0,0 +1,5 @@
|
|||
case ${ACTION} in
|
||||
post)
|
||||
python -c 'from twisted.plugin import IPlugin, getPlugins; list(getPlugins(IPlugin))' >/dev/null 2>&1
|
||||
;;
|
||||
esac
|
|
@ -0,0 +1,5 @@
|
|||
case ${ACTION} in
|
||||
purge)
|
||||
find /usr/lib/python2.7/site-packages/twisted/plugins -name dropin.cache | xargs -r rm -f
|
||||
;;
|
||||
esac
|
|
@ -1,11 +1,13 @@
|
|||
# Template file for 'Twisted'
|
||||
pkgname=Twisted
|
||||
version=10.2.0
|
||||
distfiles="http://tmrc.mit.edu/mirror/twisted/Twisted/${version%.*}/Twisted-${version}.tar.bz2"
|
||||
version=11.0.0
|
||||
distfiles="http://twistedmatrix.com/Releases/Twisted/${version%.*}/Twisted-${version}.tar.bz2"
|
||||
build_style=python-module
|
||||
short_desc="Event-driven networking engine written in Python"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
checksum=562ed61c18aa72da99c23fb19c2c101d178995eb3a78ab3c09560a613e180c84
|
||||
homepage="http://twistedmatrix.com/"
|
||||
license="MIT"
|
||||
checksum=dd91254a4c946f51c4248590ca31b496ad3e4fd1b5a9fbc3a82c39a41131a2e2
|
||||
long_desc="
|
||||
Twisted is an event-based framework for internet applications which works on
|
||||
Python 2.4 through 2.6. The following are some of the modules included
|
||||
|
|
Loading…
Reference in New Issue