blob: c7116e69ae9d3ce41e8813b34ea7b03bcb1fdc35 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.21.2.ebuild,v 1.5 2007/05/20 08:45:54 opfer Exp $
inherit distutils eutils
DESCRIPTION="Several modules providing low level functionality shared among some python projects developed by logilab."
HOMEPAGE="http://www.logilab.org/projects/common/"
SRC_URI="ftp://ftp.logilab.org/pub/common/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ia64 ppc ~ppc64 ~s390 ~sparc x86"
IUSE="test"
DEPEND="|| ( >=dev-python/optik-1.4 >=dev-lang/python-2.3 )
test? ( dev-python/egenix-mx-base )"
PYTHON_MODNAME="logilab"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-0.21.2-disable-access-tests-as-root.patch"
}
src_test() {
# Install temporarily.
local spath="test/lib/python"
"${python}" setup.py install --home="${T}/test" || die "test copy failed"
# It picks up the tests relative to the current dir, so cd in. Do
# not cd in too far though (to logilab/common for example) or some
# relative/absolute module location tests fail.
pushd "${T}/${spath}" >/dev/null
# Remove a botched doctest.
pushd logilab/common >/dev/null
epatch "${FILESDIR}/${P}-remove-broken-tests.patch"
popd >/dev/null
# HACK: tell it to exit nonzero if the tests fail.
sed -i -e 's/exitafter=False/exitafter=True/' "${T}/test/bin/pytest" \
|| die "sed failed"
# These tests will fail:
if ! has userpriv ${FEATURES}; then
rm unittest_fileutils.py
fi
PYTHONPATH="${T}/${spath}" "${python}" \
"${T}/test/bin/pytest" -v || die "tests failed"
popd >/dev/null
rm -rf "${T}/test"
}
|