diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-09-07 19:45:37 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-09-07 19:45:37 +0000 |
commit | 3903758cbf7eafd181d64dfc2819ff8a7c004042 (patch) | |
tree | 2a25eace8461507c6846fb3667db12a58a284342 /dev-python/guppy/guppy-0.1.9.ebuild | |
parent | Stable on alpha, bug #283061 (diff) | |
download | historical-3903758cbf7eafd181d64dfc2819ff8a7c004042.tar.gz historical-3903758cbf7eafd181d64dfc2819ff8a7c004042.tar.bz2 historical-3903758cbf7eafd181d64dfc2819ff8a7c004042.zip |
Bump
Package-Manager: portage-2.2_rc40/cvs/Linux x86_64
Diffstat (limited to 'dev-python/guppy/guppy-0.1.9.ebuild')
-rw-r--r-- | dev-python/guppy/guppy-0.1.9.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/guppy/guppy-0.1.9.ebuild b/dev-python/guppy/guppy-0.1.9.ebuild new file mode 100644 index 000000000000..6b35a439726f --- /dev/null +++ b/dev-python/guppy/guppy-0.1.9.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/guppy/guppy-0.1.9.ebuild,v 1.1 2009/09/07 19:45:37 patrick Exp $ + +NEED_PYTHON=2.3 + +inherit distutils + +DESCRIPTION="Guppy-PE -- A Python Programming Environment" +HOMEPAGE="http://guppy-pe.sourceforge.net/" +SRC_URI="http://pypi.python.org/packages/source/g/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DOCS="ANNOUNCE changelog" + +src_test() { + "${python}" setup.py install --home="${T}/test" || die "test install failed" + cd "${T}/test/lib/python" + PYTHONPATH=. "${python}" guppy/heapy/test/test_all.py || die "test failed" + rm -rf "${T}/test" +} + +src_install() { + distutils_src_install + dohtml doc/* +} |