blob: 902eab99e338ee153b8a56a46718fdfecfabe581 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/coverage/coverage-3.2.ebuild,v 1.6 2010/01/31 15:21:55 armin76 Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
DESCRIPTION="Measures code coverage during Python execution"
HOMEPAGE="http://nedbatchelder.com/code/coverage/ http://pypi.python.org/pypi/coverage"
SRC_URI="http://pypi.python.org/packages/source/c/coverage/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~hppa ppc ~sparc x86 ~amd64-linux ~x86-linux ~x86-macos"
IUSE="test"
RDEPEND="dev-python/setuptools"
DEPEND="${RDEPEND}
test? ( >=dev-python/nose-0.10.3 )"
PYTHON_MODNAME="coverage"
src_test() {
testing() {
# Future version of dev-python/nose will support Python 3.
[[ "${PYTHON_ABI}" == 3.* ]] && return
"$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" nosetests
}
python_execute_function testing
}
|