Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pep8: pep8-1.1.ebuild ChangeLog
Date: Tue, 29 May 2012 18:33:25
Message-Id: 20120529183311.0630B20047@flycatcher.gentoo.org
1 xarthisius 12/05/29 18:33:11
2
3 Modified: ChangeLog
4 Added: pep8-1.1.ebuild
5 Log:
6 Version bump wrt #418143 by Ian Delaney <johneed@×××××××.com>. Drop redundant PYTHON_DEPEND, bump to eapi4, add missing DOCS, enable additional tests, use github in SRC_URI
7
8 (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 dev-python/pep8/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pep8/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 29 May 2012 15:16:22 -0000 1.5
24 +++ ChangeLog 29 May 2012 18:33:10 -0000 1.6
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-python/pep8
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/ChangeLog,v 1.5 2012/05/29 15:16:22 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/ChangeLog,v 1.6 2012/05/29 18:33:10 xarthisius Exp $
30 +
31 +*pep8-1.1 (29 May 2012)
32 +
33 + 29 May 2012; Kacper Kowalik <xarthisius@g.o> +pep8-1.1.ebuild:
34 + Version bump wrt #418143 by Ian Delaney <johneed@×××××××.com>. Drop redundant
35 + PYTHON_DEPEND, bump to eapi4, add missing DOCS, enable additional tests, use
36 + github in SRC_URI
37
38 29 May 2012; Justin Lecher <jlec@g.o> pep8-1.0.1.ebuild:
39 Added ~-linux keywords, tested by me
40
41
42
43 1.1 dev-python/pep8/pep8-1.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/pep8-1.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/pep8-1.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pep8-1.1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/pep8-1.1.ebuild,v 1.1 2012/05/29 18:33:10 xarthisius Exp $
53
54 EAPI=4
55
56 SUPPORT_PYTHON_ABIS="1"
57
58 inherit distutils vcs-snapshot
59
60 DESCRIPTION="Python style guide checker"
61 HOMEPAGE="http://github.com/jcrocholl/pep8 http://pypi.python.org/pypi/pep8"
62 SRC_URI="https://github.com/jcrocholl/${PN}/tarball/${PV} -> ${P}.tar.gz"
63
64 LICENSE="MIT"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
67 IUSE=""
68
69 DEPEND="dev-python/setuptools"
70 RDEPEND="${DEPEND}"
71
72 PYTHON_MODNAME=${PN}.py
73 DOCS="CHANGES.txt"
74
75 src_test() {
76 test_func() {
77 test_ok=0
78 PYTHONPATH="${S}" ${PYTHON} "${S}/${PYTHON_MODNAME}" -v --testsuite=testsuite || test_ok=1
79 PYTHONPATH="${S}" ${PYTHON} "${S}/${PYTHON_MODNAME}" --doctest -v || test_ok=1
80 return ${test_ok}
81 }
82 python_execute_function test_func
83 }