You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python2_7 pypy )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Gettext support, themed icons and scrollkeeper-based documentation in distutils"
|
|
HOMEPAGE="https://launchpad.net/python-distutils-extra"
|
|
SRC_URI="https://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} )
|
|
|
|
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
|
|
|
|
distutils-r1_python_prepare_all
|
|
}
|
|
|
|
python_test() {
|
|
# 5 tests fail with disabled byte-compilation (they rely on exact
|
|
# output from python).
|
|
local -x PYTHONDONTWRITEBYTECODE
|
|
|
|
cp -R -l test "${BUILD_DIR}"/ || die
|
|
|
|
cd "${BUILD_DIR}" || die
|
|
"${PYTHON}" test/auto.py || die "Tests fail with ${EPYTHON}"
|
|
}
|