Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pep8: pep8-1.5.6.ebuild ChangeLog
Date: Sun, 04 May 2014 08:08:39
Message-Id: 20140504080836.719DD2004C@flycatcher.gentoo.org
1 idella4 14/05/04 08:08:36
2
3 Modified: pep8-1.5.6.ebuild ChangeLog
4 Log:
5 drop py2.7 add py3.4 pypy support, doc build
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.2 dev-python/pep8/pep8-1.5.6.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/pep8-1.5.6.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/pep8-1.5.6.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/pep8-1.5.6.ebuild?r1=1.1&r2=1.2
15
16 Index: pep8-1.5.6.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pep8/pep8-1.5.6.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- pep8-1.5.6.ebuild 3 May 2014 08:36:17 -0000 1.1
23 +++ pep8-1.5.6.ebuild 4 May 2014 08:08:36 -0000 1.2
24 @@ -1,9 +1,9 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/pep8-1.5.6.ebuild,v 1.1 2014/05/03 08:36:17 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/pep8-1.5.6.ebuild,v 1.2 2014/05/04 08:08:36 idella4 Exp $
29
30 EAPI=5
31 -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
32 +PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
33
34 inherit distutils-r1
35
36 @@ -14,14 +14,22 @@
37 LICENSE="MIT"
38 SLOT="0"
39 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
40 -IUSE=""
41 +IUSE="doc"
42
43 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
44 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
45 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
46 RDEPEND="${DEPEND}"
47
48 -DOCS=( CHANGES.txt )
49 +python_compile_all() {
50 + use doc && emake -C docs html
51 +}
52
53 python_test() {
54 PYTHONPATH="${S}" "${PYTHON}" pep8.py -v --testsuite=testsuite || die
55 PYTHONPATH="${S}" "${PYTHON}" pep8.py --doctest -v || die
56 }
57 +
58 +python_install_all() {
59 + use doc && local HTML_DOCS=( docs/_build/html/. )
60 + distutils-r1_python_install_all
61 +}
62
63
64
65 1.27 dev-python/pep8/ChangeLog
66
67 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/ChangeLog?rev=1.27&view=markup
68 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/ChangeLog?rev=1.27&content-type=text/plain
69 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/ChangeLog?r1=1.26&r2=1.27
70
71 Index: ChangeLog
72 ===================================================================
73 RCS file: /var/cvsroot/gentoo-x86/dev-python/pep8/ChangeLog,v
74 retrieving revision 1.26
75 retrieving revision 1.27
76 diff -u -r1.26 -r1.27
77 --- ChangeLog 3 May 2014 08:36:17 -0000 1.26
78 +++ ChangeLog 4 May 2014 08:08:36 -0000 1.27
79 @@ -1,6 +1,9 @@
80 # ChangeLog for dev-python/pep8
81 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
82 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/ChangeLog,v 1.26 2014/05/03 08:36:17 patrick Exp $
83 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/ChangeLog,v 1.27 2014/05/04 08:08:36 idella4 Exp $
84 +
85 + 04 May 2014; Ian Delaney <idella4@g.o> pep8-1.5.6.ebuild:
86 + drop py2.7 add py3.4 pypy support, doc build
87
88 *pep8-1.5.6 (03 May 2014)