diff options
Diffstat (limited to 'dev-python/ruledispatch/ruledispatch-0.5_pre2306.ebuild')
-rw-r--r-- | dev-python/ruledispatch/ruledispatch-0.5_pre2306.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/ruledispatch/ruledispatch-0.5_pre2306.ebuild b/dev-python/ruledispatch/ruledispatch-0.5_pre2306.ebuild new file mode 100644 index 000000000000..53c858515807 --- /dev/null +++ b/dev-python/ruledispatch/ruledispatch-0.5_pre2306.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ruledispatch/ruledispatch-0.5_pre2306.ebuild,v 1.1 2007/05/05 19:02:43 pythonhead Exp $ + +NEED_PYTHON=2.4 + +inherit distutils versionator + +KEYWORDS="~x86" + +MY_PN=RuleDispatch +MY_P=${MY_PN}-$(get_version_component_range 1-2)a0.dev-$(get_version_component_range 3-) +MY_P=${MY_P/pre/r} + +DESCRIPTION="Rule-based Dispatching and Generic Functions" +HOMEPAGE="http://peak.telecommunity.com/" +SRC_URI="mirror://gentoo/${MY_P}.tar.gz" +LICENSE="|| ( PSF-2.4 ZPL )" +SLOT="0" +IUSE="" + +RDEPEND=">=dev-python/pyprotocols-1.0_pre2306" +DEPEND="${RDEPEND} + >=dev-python/setuptools-0.6_rc5" + +S=${WORKDIR}/${MY_PN} + +PYTHON_MODNAME="dispatch" + + +src_test() { + PYTHONPATH=./src/ "${python}" setup.py test || die "tests failed" +} |