Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pylint: ChangeLog pylint-0.21.3.ebuild
Date: Wed, 29 Sep 2010 01:01:22
Message-Id: 20100929010116.9526220051@flycatcher.gentoo.org
1 arfrever 10/09/29 01:01:16
2
3 Modified: ChangeLog
4 Added: pylint-0.21.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2_rc88_p32/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.74 dev-python/pylint/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylint/ChangeLog?rev=1.74&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylint/ChangeLog?rev=1.74&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylint/ChangeLog?r1=1.73&r2=1.74
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v
20 retrieving revision 1.73
21 retrieving revision 1.74
22 diff -u -r1.73 -r1.74
23 --- ChangeLog 19 Sep 2010 18:20:49 -0000 1.73
24 +++ ChangeLog 29 Sep 2010 01:01:16 -0000 1.74
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/pylint
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.73 2010/09/19 18:20:49 arfrever Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.74 2010/09/29 01:01:16 arfrever Exp $
30 +
31 +*pylint-0.21.3 (29 Sep 2010)
32 +
33 + 29 Sep 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + +pylint-0.21.3.ebuild:
35 + Version bump.
36
37 *pylint-0.21.2 (19 Sep 2010)
38
39
40
41
42 1.1 dev-python/pylint/pylint-0.21.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylint/pylint-0.21.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylint/pylint-0.21.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pylint-0.21.3.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-0.21.3.ebuild,v 1.1 2010/09/29 01:01:16 arfrever Exp $
52
53 EAPI="3"
54 PYTHON_DEPEND="2"
55 PYTHON_USE_WITH="tk"
56 PYTHON_USE_WITH_OPT="tk"
57 SUPPORT_PYTHON_ABIS="1"
58 RESTRICT_PYTHON_ABIS="3.*"
59
60 inherit distutils
61
62 DESCRIPTION="Python code static checker"
63 HOMEPAGE="http://www.logilab.org/projects/pylint/ http://pypi.python.org/pypi/pylint"
64 SRC_URI="ftp://ftp.logilab.org/pub/${PN}/${P}.tar.gz mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
69 IUSE="examples tk"
70
71 # Versions specified in __pkginfo__.py.
72 RDEPEND=">=dev-python/logilab-common-0.50.1
73 >=dev-python/astng-0.20.1"
74 DEPEND="${RDEPEND}
75 dev-python/setuptools"
76
77 DOCS="doc/*.txt"
78
79 src_test() {
80 testing() {
81 PYTHONPATH="build-${PYTHON_ABI}/lib" pytest -v
82 }
83 python_execute_function testing
84 }
85
86 src_install() {
87 distutils_src_install
88
89 if ! use tk; then
90 rm -f "${ED}usr/bin/pylint-gui"*
91 fi
92
93 doman man/{pylint,pyreverse}.1 || die "doman failed"
94
95 if use examples; then
96 docinto examples
97 dodoc examples/* || die "dodoc failed"
98 fi
99 }