diff options
author | Bart Verwilst <verwilst@gentoo.org> | 2002-11-28 23:42:30 +0000 |
---|---|---|
committer | Bart Verwilst <verwilst@gentoo.org> | 2002-11-28 23:42:30 +0000 |
commit | aff84981cff831e4adb7da46744b5f50f4fe4ee1 (patch) | |
tree | 0d775d0bf1ede0d48b1652ddeddc08d3a589cf9b /dev-python/twisted | |
parent | added o3read to portage (diff) | |
download | gentoo-2-aff84981cff831e4adb7da46744b5f50f4fe4ee1.tar.gz gentoo-2-aff84981cff831e4adb7da46744b5f50f4fe4ee1.tar.bz2 gentoo-2-aff84981cff831e4adb7da46744b5f50f4fe4ee1.zip |
new version
Diffstat (limited to 'dev-python/twisted')
-rw-r--r-- | dev-python/twisted/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/twisted/files/digest-twisted-1.0.0 | 1 | ||||
-rw-r--r-- | dev-python/twisted/files/digest-twisted-1.0.1 | 1 | ||||
-rw-r--r-- | dev-python/twisted/twisted-1.0.1.ebuild (renamed from dev-python/twisted/twisted-1.0.0.ebuild) | 17 |
4 files changed, 18 insertions, 8 deletions
diff --git a/dev-python/twisted/ChangeLog b/dev-python/twisted/ChangeLog index 260b5c4bdd6b..a389217bf9f8 100644 --- a/dev-python/twisted/ChangeLog +++ b/dev-python/twisted/ChangeLog @@ -1,6 +1,11 @@ # 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.5 2002/10/26 15:25:15 verwilst Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.6 2002/11/28 23:42:30 verwilst Exp $ + +*twisted-1.0.1 (29 Nov 2002) Bart Verwilst <verwilst@gentoo.org> + + New version, with lots of bugfixes to the ebuild itself as well, + provided by Thomas Raschbacher. *twisted-1.0.0 (26 Okt 2002) Bart Verwilst <verwilst@gentoo.org> diff --git a/dev-python/twisted/files/digest-twisted-1.0.0 b/dev-python/twisted/files/digest-twisted-1.0.0 deleted file mode 100644 index 65feaf5fb2fa..000000000000 --- a/dev-python/twisted/files/digest-twisted-1.0.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 a4624e6caf9a63e54355aab97b8b6ff6 Twisted-1.0.0.tar.bz2 1398308 diff --git a/dev-python/twisted/files/digest-twisted-1.0.1 b/dev-python/twisted/files/digest-twisted-1.0.1 new file mode 100644 index 000000000000..4b11759a36bf --- /dev/null +++ b/dev-python/twisted/files/digest-twisted-1.0.1 @@ -0,0 +1 @@ +MD5 1a9cf31d2a8a92132e00cdcfc376b3f3 Twisted-1.0.1.tar.bz2 3506991 diff --git a/dev-python/twisted/twisted-1.0.0.ebuild b/dev-python/twisted/twisted-1.0.1.ebuild index 07a51fb0bb28..123a9e006811 100644 --- a/dev-python/twisted/twisted-1.0.0.ebuild +++ b/dev-python/twisted/twisted-1.0.1.ebuild @@ -1,30 +1,35 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-1.0.0.ebuild,v 1.1 2002/10/26 15:25:15 verwilst Exp $ S=${WORKDIR}/Twisted-${PV} -DESCRIPTION="Twisted is a framework, written in Python, for writing networked applications." +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://twisted.sourceforge.net/Twisted-${PV}.tar.bz2" HOMEPAGE="http://www.twistedmatrix.com/" LICENSE="LGPL-2.1" SLOT="0" DEPEND="virtual/python" RDEPEND="$DEPEND" -KEYWORDS="x86 alpha" +KEYWORDS="x86 alpha sparc sparc64" inherit distutils src_install() { - distutils_src_install - # next few lines will install docs: 9.4 megs! + # next few lines will install docs: 9.4 megs! dodir /usr/share/doc/${PF} # of course it's documentation! - doman doc/man/* + doman doc/man/*.[0-9n] 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 +} +pkg_postinst() { + echo + einfo "Don't forget to check your .tap files if you upgrade from prior 0.99.4 otherwise you will get only errors." + echo } |