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/flake8: flake8-2.1.0.ebuild ChangeLog
Date: Fri, 06 Jun 2014 08:58:46
Message-Id: 20140606085841.A3D5A2004E@flycatcher.gentoo.org
1 idella4 14/06/06 08:58:41
2
3 Modified: flake8-2.1.0.ebuild ChangeLog
4 Log:
5 add missing keyword, exclude rogue test, drop py2.6 add py3.4
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.5 dev-python/flake8/flake8-2.1.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/flake8-2.1.0.ebuild?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/flake8-2.1.0.ebuild?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/flake8-2.1.0.ebuild?r1=1.4&r2=1.5
15
16 Index: flake8-2.1.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/flake8/flake8-2.1.0.ebuild,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- flake8-2.1.0.ebuild 25 Apr 2014 14:24:25 -0000 1.4
23 +++ flake8-2.1.0.ebuild 6 Jun 2014 08:58:41 -0000 1.5
24 @@ -1,10 +1,10 @@
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/flake8/flake8-2.1.0.ebuild,v 1.4 2014/04/25 14:24:25 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/flake8-2.1.0.ebuild,v 1.5 2014/06/06 08:58:41 idella4 Exp $
29
30 EAPI=5
31
32 -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
33 +PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
34
35 inherit distutils-r1
36
37 @@ -12,7 +12,7 @@
38 HOMEPAGE="http://bitbucket.org/tarek/flake8"
39 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40
41 -KEYWORDS="~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux"
42 +KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-linux ~x86-linux"
43 IUSE="test"
44 LICENSE="MIT"
45 SLOT="0"
46 @@ -27,6 +27,12 @@
47 dev-python/nose[${PYTHON_USEDEP}]
48 dev-python/mock[${PYTHON_USEDEP}] )"
49
50 +python_prepare_all() {
51 + # This tests requires / assumes this version is already installed.
52 + sed -e 's:test_register_extensions:_&:' -i flake8/tests/test_engine.py || die
53 + distutils-r1_python_prepare_all
54 +}
55 +
56 python_test() {
57 esetup.py test
58 }
59
60
61
62 1.12 dev-python/flake8/ChangeLog
63
64 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/ChangeLog?rev=1.12&view=markup
65 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/ChangeLog?rev=1.12&content-type=text/plain
66 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/ChangeLog?r1=1.11&r2=1.12
67
68 Index: ChangeLog
69 ===================================================================
70 RCS file: /var/cvsroot/gentoo-x86/dev-python/flake8/ChangeLog,v
71 retrieving revision 1.11
72 retrieving revision 1.12
73 diff -u -r1.11 -r1.12
74 --- ChangeLog 4 May 2014 16:16:02 -0000 1.11
75 +++ ChangeLog 6 Jun 2014 08:58:41 -0000 1.12
76 @@ -1,6 +1,9 @@
77 # ChangeLog for dev-python/flake8
78 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
79 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/ChangeLog,v 1.11 2014/05/04 16:16:02 maekke Exp $
80 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/ChangeLog,v 1.12 2014/06/06 08:58:41 idella4 Exp $
81 +
82 + 06 Jun 2014; Ian Delaney <idella4@g.o> flake8-2.1.0.ebuild:
83 + add missing keyword, exclude rogue test, drop py2.6 add py3.4
84
85 04 May 2014; Markus Meier <maekke@g.o> flake8-2.0.ebuild:
86 add ~arm, bug #508282