diff options
Diffstat (limited to 'dev-python/webpy/webpy-0.30.ebuild')
-rw-r--r-- | dev-python/webpy/webpy-0.30.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/webpy/webpy-0.30.ebuild b/dev-python/webpy/webpy-0.30.ebuild new file mode 100644 index 000000000000..048c23ecce6b --- /dev/null +++ b/dev-python/webpy/webpy-0.30.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/webpy/webpy-0.30.ebuild,v 1.1 2009/01/04 20:24:24 patrick Exp $ + +inherit distutils + +MY_PN="web.py" + +DESCRIPTION="A small and simple web framework for python" +HOMEPAGE="http://www.webpy.org" +SRC_URI="http://www.webpy.org/static/${MY_PN}-0.3.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=dev-lang/python-2.3" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/webpy" +PYTHON_MODNAME="web" + +src_test() { + TESTS="db template net http utils" + + cd "${S}" + + for TEST in ${TESTS} + do + ${python} web/${TEST}.py || die "Doctest in web/${TEST}.py failed!" + done +} |