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: metadata.xml ChangeLog flake8-2.0.ebuild
Date: Fri, 31 May 2013 07:29:58
Message-Id: 20130531072953.03C1F2171D@flycatcher.gentoo.org
1 idella4 13/05/31 07:29:52
2
3 Added: metadata.xml ChangeLog flake8-2.0.ebuild
4 Log:
5 new dep to django-compressor, initial ebuild written by me
6
7 (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.1 dev-python/flake8/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>python</herd>
21 </pkgmetadata>
22
23
24
25
26 1.1 dev-python/flake8/ChangeLog
27
28 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/ChangeLog?rev=1.1&view=markup
29 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/ChangeLog?rev=1.1&content-type=text/plain
30
31 Index: ChangeLog
32 ===================================================================
33 # ChangeLog for dev-python/flake8
34 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
35 # $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/ChangeLog,v 1.1 2013/05/31 07:29:52 idella4 Exp $
36
37 *flake8-2.0 (31 May 2013)
38
39 31 May 2013; Ian Delaney <idella4@g.o> +flake8-2.0.ebuild,
40 +metadata.xml:
41 new dep to django-compressor, initial ebuild written by me
42
43
44
45 1.1 dev-python/flake8/flake8-2.0.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/flake8-2.0.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flake8/flake8-2.0.ebuild?rev=1.1&content-type=text/plain
49
50 Index: flake8-2.0.ebuild
51 ===================================================================
52 # Copyright 1999-2013 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/flake8-2.0.ebuild,v 1.1 2013/05/31 07:29:52 idella4 Exp $
55
56 EAPI=5
57
58 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_2,3_3} )
59
60 inherit distutils-r1
61
62 DESCRIPTION="A wrapper around PyFlakes, pep8 & mccabe"
63 HOMEPAGE="http://bitbucket.org/tarek/flake8"
64 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
65
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68 LICENSE="MIT"
69 SLOT="0"
70
71 # requires.txt inc. mccabe however that creates a circular dep
72 RDEPEND=">=dev-python/pyflakes-0.6.1[${PYTHON_USEDEP}]
73 >=dev-python/pep8-1.4.3[${PYTHON_USEDEP}]"
74 DEPEND="${RDEPEND}
75 dev-python/setuptools[${PYTHON_USEDEP}]"
76
77 python_test() {
78 esetup.py test || die "tests failed"
79
80 }