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/boto/
Date: Tue, 24 Nov 2015 12:10:31
Message-Id: 1448367017.9fbb183c5d365a025db80b5f5460fb1ce6817dda.jlec@gentoo
1 commit: 9fbb183c5d365a025db80b5f5460fb1ce6817dda
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 24 08:50:59 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 24 12:10:17 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fbb183c
7
8 dev-python/boto: Add python3.5 support
9
10 Package-Manager: portage-2.2.25
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/boto/boto-2.38.0.ebuild | 7 ++++---
14 1 file changed, 4 insertions(+), 3 deletions(-)
15
16 diff --git a/dev-python/boto/boto-2.38.0.ebuild b/dev-python/boto/boto-2.38.0.ebuild
17 index f966073..5be2ca9 100644
18 --- a/dev-python/boto/boto-2.38.0.ebuild
19 +++ b/dev-python/boto/boto-2.38.0.ebuild
20 @@ -2,8 +2,8 @@
21 # Distributed under the terms of the GNU General Public License v2
22 # $Id$
23
24 -EAPI="5"
25 -PYTHON_COMPAT=( python{2_7,3_3,3_4} )
26 +EAPI=5
27 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
28
29 inherit distutils-r1
30
31 @@ -16,7 +16,8 @@ SLOT="0"
32 KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
33 IUSE="doc test"
34
35 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
36 +DEPEND="
37 + dev-python/setuptools[${PYTHON_USEDEP}]
38 test? ( dev-python/nose[${PYTHON_USEDEP}] )
39 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"