diff options
author | Thomas Raschbacher <lordvan@gentoo.org> | 2003-10-27 08:10:53 +0000 |
---|---|---|
committer | Thomas Raschbacher <lordvan@gentoo.org> | 2003-10-27 08:10:53 +0000 |
commit | 0be63e1dccadf564a813688ddc4dcff527b08a46 (patch) | |
tree | 882e6305d806548ecf914263333b9f10df428d0c /dev-python/twisted | |
parent | version bump + docs in dev-python/TwistedDocs now (diff) | |
download | gentoo-2-0be63e1dccadf564a813688ddc4dcff527b08a46.tar.gz gentoo-2-0be63e1dccadf564a813688ddc4dcff527b08a46.tar.bz2 gentoo-2-0be63e1dccadf564a813688ddc4dcff527b08a46.zip |
version bump + docs in dev-python/TwistedDocs now
Diffstat (limited to 'dev-python/twisted')
-rw-r--r-- | dev-python/twisted/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/twisted/Manifest | 5 | ||||
-rw-r--r-- | dev-python/twisted/files/digest-twisted-1.1.0 | 1 | ||||
-rw-r--r-- | dev-python/twisted/twisted-1.1.0.ebuild | 33 |
4 files changed, 42 insertions, 4 deletions
diff --git a/dev-python/twisted/ChangeLog b/dev-python/twisted/ChangeLog index 8cea0416b8b5..da3b21585af6 100644 --- a/dev-python/twisted/ChangeLog +++ b/dev-python/twisted/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for dev-python/twisted # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.24 2003/09/13 13:58:03 lordvan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.25 2003/10/27 08:10:45 lordvan Exp $ +*twisted-1.1.0 (27 Oct 2003) + 27 Oct 2003; Thomas Raschbacher <lordvan@gentoo.org> twisted-1.1.0.ebuild: + version bump + using _NoDocs tarball now (dev-python/twisted-docs created) + *twisted-1.0.7 (13 Sep 2003) 13 Sep 2003; Thomas Raschbacher <lordvan@gentoo.org> twisted-1.0.7.ebuild: version bump diff --git a/dev-python/twisted/Manifest b/dev-python/twisted/Manifest index 342c04dbb60a..321c034e4f02 100644 --- a/dev-python/twisted/Manifest +++ b/dev-python/twisted/Manifest @@ -1,8 +1,7 @@ -MD5 70d7bdd52ab1ab1f445659ab31dd24e5 twisted-1.1.0.ebuild 1267 -MD5 2489975a899a1d3dc7468c8e84613431 twisted-1.1.0.ebuild~ 1218 +MD5 e3b6e79ee24dec4bbe906efaf4e4574d twisted-1.1.0.ebuild 1005 MD5 890a242f603b2a6bedfa33b97a3f3d76 twisted-1.0.6.ebuild 1219 MD5 59755b7789d4ef04a04c902b9b01d3be twisted-1.0.7_rc1.ebuild 1262 -MD5 cdf3981a48ea8bd4708f61f8b55124de ChangeLog 6524 +MD5 623b0dfe4c3fe48abeab8d33f95117c2 ChangeLog 6709 MD5 19df39ef54fc4a8677998f19bb6046ac metadata.xml 218 MD5 2489975a899a1d3dc7468c8e84613431 twisted-1.0.7.ebuild 1218 MD5 7b72afa2517437dbde778c70b4e19af2 files/digest-twisted-1.0.6 67 diff --git a/dev-python/twisted/files/digest-twisted-1.1.0 b/dev-python/twisted/files/digest-twisted-1.1.0 new file mode 100644 index 000000000000..f2980c3d67ea --- /dev/null +++ b/dev-python/twisted/files/digest-twisted-1.1.0 @@ -0,0 +1 @@ +MD5 c96b7a8c1829f70e288370cc8c71eb9f Twisted_NoDocs-1.1.0.tar.bz2 1031455 diff --git a/dev-python/twisted/twisted-1.1.0.ebuild b/dev-python/twisted/twisted-1.1.0.ebuild new file mode 100644 index 000000000000..a6e80bef2a8a --- /dev/null +++ b/dev-python/twisted/twisted-1.1.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-1.1.0.ebuild,v 1.1 2003/10/27 08:10:45 lordvan Exp $ + +inherit distutils + +DESCRIPTION="collection of servers and clients, which can be used either by developers of new applications or directly. Documentation included." +HOMEPAGE="http://www.twistedmatrix.com/" +SRC_URI="http://twisted.sourceforge.net/Twisted_NoDocs-${PV}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="x86 alpha sparc" +IUSE="gtk2 doc" + +DEPEND=">=dev-lang/python-2.2* + >=dev-python/pycrypto-1.9_alpha4 + gtk? ( =dev-python/pygtk-0.6* ) + gtk2? ( >=dev-python/pygtk-1.99* ) + doc? ( =dev-python/TwistedDocs-${PV} )" + +S=${WORKDIR}/Twisted-${PV} + +src_install() { + distutils_src_install + + # use gtk2 if they so wish + if [ -n "`use gtk2`" ]; then + sed -e 's/import manhole/import manhole2/' \ + -e 's/manhole\.run()/manhole2.run()/' \ + -i ${D}/usr/bin/manhole + fi +} |