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.3.ebuild ChangeLog
Date: Thu, 29 Nov 2012 09:38:00
Message-Id: 20121129093750.3C7A920C65@flycatcher.gentoo.org
1 patrick 12/11/29 09:37:50
2
3 Modified: ChangeLog
4 Added: autopep8-0.8.3.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.22 dev-python/autopep8/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 13 Nov 2012 07:37:58 -0000 1.21
24 +++ ChangeLog 29 Nov 2012 09:37:50 -0000 1.22
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/autopep8
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v 1.21 2012/11/13 07:37:58 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v 1.22 2012/11/29 09:37:50 patrick Exp $
30 +
31 +*autopep8-0.8.3 (29 Nov 2012)
32 +
33 + 29 Nov 2012; Patrick Lauer <patrick@g.o> +autopep8-0.8.3.ebuild:
34 + Bump
35
36 *autopep8-0.8.2 (13 Nov 2012)
37
38
39
40
41 1.1 dev-python/autopep8/autopep8-0.8.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/autopep8-0.8.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/autopep8-0.8.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: autopep8-0.8.3.ebuild
47 ===================================================================
48 # Copyright 1999-2012 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.3.ebuild,v 1.1 2012/11/29 09:37:50 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 }