blob: 314a338de70ac1ba0b7f8e6214cbb1ef8d377334 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-0.13.1.ebuild,v 1.9 2008/07/12 00:21:13 pythonhead Exp $
inherit distutils eutils
DESCRIPTION="PyLint is a tool to check if a Python module satisfies a coding standard"
SRC_URI="ftp://ftp.logilab.org/pub/pylint/${P}.tar.gz"
HOMEPAGE="http://www.logilab.org/projects/pylint/"
IUSE="tk"
SLOT="0"
KEYWORDS="amd64 ~ia64 ppc ~sparc x86"
LICENSE="GPL-2"
DEPEND=">=dev-python/logilab-common-0.21.0
>=dev-python/astng-0.17.0
tk? ( >=dev-lang/tk-8.4.9 )"
DOCS="doc/*.txt"
pkg_setup() {
if use tk && ! built_with_use dev-lang/python tk; then
eerror "You have USE='tk' enabled."
eerror "Python has not been compiled with tkinter support."
eerror "Please re-emerge python with the 'tk' USE-flag set."
die "Missing USE-flag for dev-lang/python"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
# Make the test that tries to import gtk a bit less strict
epatch "${FILESDIR}/${PN}-0.10.0-extra-gtk-disable.patch"
# Make pylint-gui print a gentoo-specific message if Tkinter is missing
epatch "${FILESDIR}/${PN}-0.11.0-gui-no-tkinter.patch"
# Install the rpython test message data, skip a test.
epatch "${FILESDIR}/${P}-test-fixes.patch"
}
src_install() {
distutils_src_install
# do not install the test suite (we ran it from src_test already
# and it makes .py[co] generation very noisy because there are
# files with SyntaxErrors in there)
python_version
rm -rf "${D}"/usr/lib*/python${PYVER}/site-packages/pylint/test
doman man/pylint.1
dohtml doc/*.html
}
src_test() {
# The tests will not work properly from the source dir, so do a
# temporary install:
"${python}" setup.py install --home="${T}/test" || die "test copy failed"
# dir needs to be this or the tests fail
cd "${T}/test/lib/python/pylint/test"
# These fail, have not been able to track down why.
rm rpythoninput/func_unsupported_protocol.py || die "rm failed"
rm func_test_rpython.py || die "rm failed"
PYTHONPATH="${T}/test/lib/python" "${python}" runtests.py || \
die "tests failed"
cd "${S}"
rm -rf "${T}/test"
}
pkg_postinst() {
distutils_pkg_postinst
elog 'A couple of important configuration settings (like "disable-msg")'
elog 'moved from the "MASTER" to "MESSAGES CONTROL" section.'
elog 'See "pylint --help".'
}
|