diff options
author | Jon Nelson <jnelson@gentoo.org> | 2002-05-15 02:53:21 +0000 |
---|---|---|
committer | Jon Nelson <jnelson@gentoo.org> | 2002-05-15 02:53:21 +0000 |
commit | 3cd0d4a85abc2682ca73c919b0e214f2e85c009a (patch) | |
tree | 2a03b701db748535b7ba476e5b41870f35a9c3f2 /dev-python | |
parent | update to 0.94.12 (diff) | |
download | gentoo-2-3cd0d4a85abc2682ca73c919b0e214f2e85c009a.tar.gz gentoo-2-3cd0d4a85abc2682ca73c919b0e214f2e85c009a.tar.bz2 gentoo-2-3cd0d4a85abc2682ca73c919b0e214f2e85c009a.zip |
add happydoc
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/happydoc/ChangeLog | 11 | ||||
-rw-r--r-- | dev-python/happydoc/files/digest-happydoc-2.0.1 | 1 | ||||
-rw-r--r-- | dev-python/happydoc/happydoc-2.0.1.ebuild | 24 |
3 files changed, 36 insertions, 0 deletions
diff --git a/dev-python/happydoc/ChangeLog b/dev-python/happydoc/ChangeLog new file mode 100644 index 000000000000..0536f33e4fee --- /dev/null +++ b/dev-python/happydoc/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for dev-python/happydoc +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/happydoc/ChangeLog,v 1.1 2002/05/15 02:53:21 jnelson Exp $ + +# Author Gontran Zepeda <gontran@gontran.net> + +*happydoc-2.0.1 (14 May 2002) + + 14 May 2002; Jon Nelson <jnelson@gentoo.org> ChangeLog happydoc-2.0.1.ebuild : + + Thanks to Gontran Zepeda <gontran at gontran.net> for the original ebuild diff --git a/dev-python/happydoc/files/digest-happydoc-2.0.1 b/dev-python/happydoc/files/digest-happydoc-2.0.1 new file mode 100644 index 000000000000..cda8cbaf9ef1 --- /dev/null +++ b/dev-python/happydoc/files/digest-happydoc-2.0.1 @@ -0,0 +1 @@ +MD5 533248e17484a887678aa52d816a9080 HappyDoc_r2_0_1.tar.gz 501332 diff --git a/dev-python/happydoc/happydoc-2.0.1.ebuild b/dev-python/happydoc/happydoc-2.0.1.ebuild new file mode 100644 index 000000000000..77aa627661a5 --- /dev/null +++ b/dev-python/happydoc/happydoc-2.0.1.ebuild @@ -0,0 +1,24 @@ +# HappyDoc is a tool for extracting documentation from Python source code. +# 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/happydoc/happydoc-2.0.1.ebuild,v 1.1 2002/05/15 02:53:21 jnelson Exp $ + +# HappyDoc version numbering is not very compatible with portage -- kludgeing +S=${WORKDIR}/HappyDoc-r2_0_1/ + +DESCRIPTION="HappyDoc is a tool for extracting documentation from Python sourcecode." +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/happydoc/HappyDoc_r2_0_1.tar.gz" +HOMEPAGE="http://happydoc.sourceforge.net/" + +DEPEND="virtual/python" +SLOT="0" +LICENSE="" + +src_compile() { + python setup.py build || die +} + +src_install() { + python setup.py install --root=${D} --prefix=/usr || die + dodoc CHANGES.txt README.txt test_happydoc.py +} |