# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyprotocols/pyprotocols-1.0_pre2306.ebuild,v 1.9 2010/01/10 18:57:07 nixnut Exp $ EAPI="2" SUPPORT_PYTHON_ABIS="1" inherit distutils MY_PN="PyProtocols" MY_P="${MY_PN}-${PV/_pre/a0dev_r}" DESCRIPTION="Extends the PEP 246 adapt() function with a new 'declaration API' that lets you easily define your own protocols and adapters, and declare what adapters should be used to adapt what types, objects, or protocols." HOMEPAGE="http://peak.telecommunity.com/PyProtocols.html http://pypi.python.org/pypi/PyProtocols" SRC_URI="mirror://gentoo/${MY_P}.tar.gz" KEYWORDS="amd64 ~ia64 ppc x86 ~amd64-linux ~x86-linux ~x86-macos" LICENSE="|| ( PSF-2.4 ZPL )" SLOT="0" IUSE="" RDEPEND=">=dev-python/decoratortools-1.4" DEPEND="${RDEPEND} >=dev-python/setuptools-0.6_rc5" RESTRICT_PYTHON_ABIS="3.*" S="${WORKDIR}/${MY_PN}" DOCS="CHANGES.txt README.txt UPGRADING.txt" PYTHON_MODNAME="protocols" src_test() { testing() { PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" test } python_execute_function testing }