blob: c2baf5cb721e5b0cf32980ed768c91557a36d87b (
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
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild,v 1.1 2014/05/17 08:18:33 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
inherit distutils-r1
DESCRIPTION="Gettext support, themed icons and scrollkeeper-based documentation in distutils"
HOMEPAGE="https://launchpad.net/python-distutils-extra"
SRC_URI="http://launchpad.net/python-distutils-extra/trunk/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}"
DOCS=( doc/{FAQ,README,setup.cfg.example,setup.py.example} )
DISTUTILS_IN_SOURCE_BUILD=1
python_prepare_all() {
# Disable broken tests.
sed \
-e "s/test_desktop/_&/" -e "s/test_po(/_&/" \
-e "s/test_policykit/_&/" -e "s/test_requires_provides/_&/" \
-i test/auto.py || die
distutils-r1_python_prepare_all
}
python_test() {
# 5 tests fail with disabled byte-compilation (they rely on exact
# output from python).
local -x PYTHONDONTWRITEBYTECODE
"${PYTHON}" test/auto.py || die "Tests fail with ${EPYTHON}"
}
|