Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pep8/
Date: Sat, 31 Oct 2015 13:46:55
Message-Id: 1446299206.f7b7b623e817b2936689ecba0054d07d62a684b5.jlec@gentoo
1 commit: f7b7b623e817b2936689ecba0054d07d62a684b5
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 31 13:23:43 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 31 13:46:46 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7b7b623
7
8 dev-python/pep8: Add python3.5 support
9
10 Package-Manager: portage-2.2.23
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/pep8/pep8-1.6.2-r1.ebuild | 7 ++++---
14 1 file changed, 4 insertions(+), 3 deletions(-)
15
16 diff --git a/dev-python/pep8/pep8-1.6.2-r1.ebuild b/dev-python/pep8/pep8-1.6.2-r1.ebuild
17 index c9ac898..320ece5 100644
18 --- a/dev-python/pep8/pep8-1.6.2-r1.ebuild
19 +++ b/dev-python/pep8/pep8-1.6.2-r1.ebuild
20 @@ -3,7 +3,8 @@
21 # $Id$
22
23 EAPI=5
24 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
25 +
26 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
27
28 inherit distutils-r1
29
30 @@ -16,9 +17,9 @@ SLOT="0"
31 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
32 IUSE="doc"
33
34 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
35 +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
36 +DEPEND="${RDEPEND}
37 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
38 -RDEPEND="${DEPEND}"
39
40 PATCHES=( "${FILESDIR}/${P}-restore-flake8-compatibility.patch" )