Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/autopep8: autopep8-0.8.6.ebuild ChangeLog
Date: Mon, 28 Jan 2013 10:03:04
Message-Id: 20130128100300.0F93E2171D@flycatcher.gentoo.org
1 patrick 13/01/28 10:02:59
2
3 Modified: ChangeLog
4 Added: autopep8-0.8.6.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.25 dev-python/autopep8/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 4 Jan 2013 21:46:27 -0000 1.24
24 +++ ChangeLog 28 Jan 2013 10:02:59 -0000 1.25
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/autopep8
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v 1.24 2013/01/04 21:46:27 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v 1.25 2013/01/28 10:02:59 patrick Exp $
30 +
31 +*autopep8-0.8.6 (28 Jan 2013)
32 +
33 + 28 Jan 2013; Patrick Lauer <patrick@g.o> +autopep8-0.8.6.ebuild:
34 + Bump
35
36 *autopep8-0.8.5 (04 Jan 2013)
37
38
39
40
41 1.1 dev-python/autopep8/autopep8-0.8.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/autopep8-0.8.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/autopep8-0.8.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: autopep8-0.8.6.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/autopep8-0.8.6.ebuild,v 1.1 2013/01/28 10:02:59 patrick Exp $
51
52 EAPI=4
53
54 PYTHON_DEPEND="*:2.6"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="2.5"
57
58 inherit distutils vcs-snapshot
59
60 DESCRIPTION="Automatically formats Python code to conform to the PEP 8 style guide"
61 HOMEPAGE="https://github.com/hhatto/autopep8 http://pypi.python.org/pypi/autopep8"
62 SRC_URI="https://github.com/hhatto/${PN}/tarball/ver${PV} -> ${P}.tar.gz"
63
64 LICENSE="MIT"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
67 IUSE=""
68
69 RDEPEND=">=dev-python/pep8-1.3.2
70 dev-python/setuptools"
71 DEPEND="${RDEPEND}"
72
73 PYTHON_MODNAME=${PN}.py
74
75 src_test() {
76 testing() {
77 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test/test_${PN}.py
78 }
79 python_execute_function testing
80 }
81
82 pkg_postinst() {
83 distutils_pkg_postinst
84 ewarn "Since this version of autopep depends on >=dev-python/pep8-1.3"
85 ewarn "it is affected by https://github.com/jcrocholl/pep8/issues/45"
86 ewarn "(indentation checks inside triple-quotes)."
87 ewarn "If you do not want to be affected by this, then add the"
88 ewarn "following lines to your local package.mask:"
89 ewarn " >=dev-python/pep8-1.3"
90 ewarn " >=dev-python/autopep8-0.6"
91 }