diff options
-rw-r--r-- | dev-python/twisted/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/twisted/files/digest-twisted-0.19.0 | 1 | ||||
-rw-r--r-- | dev-python/twisted/twisted-0.18.0.ebuild | 2 | ||||
-rw-r--r-- | dev-python/twisted/twisted-0.19.0.ebuild | 29 |
4 files changed, 38 insertions, 2 deletions
diff --git a/dev-python/twisted/ChangeLog b/dev-python/twisted/ChangeLog index a0099e9670d1..045ad7d62eb2 100644 --- a/dev-python/twisted/ChangeLog +++ b/dev-python/twisted/ChangeLog @@ -1,7 +1,13 @@ # ChangeLog for dev-python/twisted # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.1 2002/06/03 22:25:11 karltk Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.2 2002/08/02 02:33:33 jnelson Exp $ +*twisted-0.19.0 (1 Aug 2002) + 1 Aug 2002; Jon Nelson <jnelson@gentoo.org> twisted-0.18.0.ebuild twisted-0.19.0.ebuild : + + Add KEYWORDS to 0.18.0 and update to 0.19.0 at the same time + 0.19.0 uses distutils eclass + *twisted-0.18.0 (03 Jun 2002) 03 Jun 2002; Karl Trygve Kalleberg <karltk@gentoo.org> twisted-0.18.0.ebuild files/digest-twisted-0.18.0 : diff --git a/dev-python/twisted/files/digest-twisted-0.19.0 b/dev-python/twisted/files/digest-twisted-0.19.0 new file mode 100644 index 000000000000..190b35c0698b --- /dev/null +++ b/dev-python/twisted/files/digest-twisted-0.19.0 @@ -0,0 +1 @@ +MD5 3ae01a714ee7c09f1da046f7ad3f5b1b Twisted-0.19.0.tar.bz2 951619 diff --git a/dev-python/twisted/twisted-0.18.0.ebuild b/dev-python/twisted/twisted-0.18.0.ebuild index 2c42de3c569b..26200dcc8718 100644 --- a/dev-python/twisted/twisted-0.18.0.ebuild +++ b/dev-python/twisted/twisted-0.18.0.ebuild @@ -9,7 +9,7 @@ LICENSE="GPL-2" SLOT="0" DEPEND="virtual/python" RDEPEND="$DEPEND" - +KEYWORDS="x86" src_compile() { python setup.py build || die diff --git a/dev-python/twisted/twisted-0.19.0.ebuild b/dev-python/twisted/twisted-0.19.0.ebuild new file mode 100644 index 000000000000..415ef32456e5 --- /dev/null +++ b/dev-python/twisted/twisted-0.19.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later + +S=${WORKDIR}/Twisted-${PV} +DESCRIPTION="Twisted is a collection of servers and clients, which can be used either by developers of new applications or directly. Documentation included." +SRC_URI="http://www.twistedmatrix.com/downloads/Twisted-${PV}.tar.bz2" +HOMEPAGE="http://www.twistedmatrix.com/" +LICENSE="GPL-2" +SLOT="0" +DEPEND="virtual/python" +RDEPEND="$DEPEND" +KEYWORDS="x86" + +inherit distutils + +src_install() { + distutils_src_install + + # next few lines will install docs: 9.4 megs! + dodir /usr/share/doc/${PF} + # of course it's documentation! + doman doc/man/* + rm -rf doc/man # don't dupe the man pages + cd doc + cp -r . ${D}/usr/share/doc/${PF} + cd ../ +# should be taken care of by the distutils install +# dodoc README TODO CREDITS +} |