Gentoo Archives: gentoo-commits

From: "Alex Brandt (alunduil)" <alunduil@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/flake8: ChangeLog flake8-2.0-r1.ebuild
Date: Tue, 23 Sep 2014 20:11:29
Message-Id: 20140923201123.E21816112@oystercatcher.gentoo.org
1 alunduil 14/09/23 20:11:23
2
3 Modified: ChangeLog
4 Added: flake8-2.0-r1.ebuild
5 Log:
6 add python3_4 target to flake8-2.0
7
8 In order to add python3_4 to mox3 for bug #517952, this particular
9 version of flake8 needed the python3_4 target.
10
11 (Portage version: 2.2.13/cvs/Linux x86_64, signed Manifest commit with key 92FEA28B)
12
13 Revision Changes Path
14 1.17 dev-python/flake8/ChangeLog
15
16 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/ChangeLog?rev=1.17&view=markup
17 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/ChangeLog?rev=1.17&content-type=text/plain
18 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/ChangeLog?r1=1.16&r2=1.17
19
20 Index: ChangeLog
21 ===================================================================
22 RCS file: /var/cvsroot/gentoo-x86/dev-python/flake8/ChangeLog,v
23 retrieving revision 1.16
24 retrieving revision 1.17
25 diff -u -r1.16 -r1.17
26 --- ChangeLog 20 Aug 2014 20:30:48 -0000 1.16
27 +++ ChangeLog 23 Sep 2014 20:11:23 -0000 1.17
28 @@ -1,6 +1,11 @@
29 # ChangeLog for dev-python/flake8
30 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/ChangeLog,v 1.16 2014/08/20 20:30:48 blueness Exp $
32 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/ChangeLog,v 1.17 2014/09/23 20:11:23 alunduil Exp $
33 +
34 +*flake8-2.0-r1 (23 Sep 2014)
35 +
36 + 23 Sep 2014; Alex Brandt <alunduil@g.o> +flake8-2.0-r1.ebuild:
37 + add python3_4 target
38
39 20 Aug 2014; Anthony G. Basile <blueness@g.o> flake8-2.0.ebuild,
40 flake8-2.1.0.ebuild:
41
42
43
44 1.1 dev-python/flake8/flake8-2.0-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/flake8-2.0-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/flake8-2.0-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: flake8-2.0-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/flake8-2.0-r1.ebuild,v 1.1 2014/09/23 20:11:23 alunduil Exp $
54
55 EAPI=5
56
57 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
58
59 inherit distutils-r1
60
61 DESCRIPTION="the modular source code checker: pep8, pyflakes and co"
62 HOMEPAGE="http://bitbucket.org/tarek/flake8"
63 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
64
65 LICENSE="MIT"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
68 IUSE="test"
69
70 DEPEND="
71 dev-python/setuptools[${PYTHON_USEDEP}]
72 test? ( dev-python/nose[${PYTHON_USEDEP}] )
73 "
74 RDEPEND="
75 >=dev-python/pyflakes-0.6.1[${PYTHON_USEDEP}]
76 >=dev-python/pep8-1.4.3[${PYTHON_USEDEP}]
77 >=dev-python/mccabe-0.2[${PYTHON_USEDEP}]
78 "
79
80 python_test() {
81 esetup.py test || die "Tests failed for ${EPYTHON}"
82 }