# Copyright owners: Gentoo Foundation # Arfrever Frehtes Taifersar Arahesis # Distributed under the terms of the GNU General Public License v2 EAPI="4-python" PYTHON_MULTIPLE_ABIS="1" DISTUTILS_SRC_TEST="nosetests" inherit distutils DESCRIPTION="A Python Mocking and Patching Library for Testing" HOMEPAGE="http://www.voidspace.org.uk/python/mock/ http://pypi.python.org/pypi/mock" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos" IUSE="doc test" DEPEND="$(python_abi_depend dev-python/setuptools) test? ( $(python_abi_depend -i "2.* 3.1" dev-python/unittest2) )" RDEPEND="" DOCS="docs/*.txt" PYTHON_MODULES="mock.py" src_install() { distutils_src_install if use doc; then dohtml -r html/ fi }