From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-848416-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 05FE81384B4 for <garchives@archives.gentoo.org>; Tue, 24 Nov 2015 12:10:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4974321C061; Tue, 24 Nov 2015 12:10:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6FA3121C05D for <gentoo-commits@lists.gentoo.org>; Tue, 24 Nov 2015 12:10:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 758CA34073B for <gentoo-commits@lists.gentoo.org>; Tue, 24 Nov 2015 12:10:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E88DE82 for <gentoo-commits@lists.gentoo.org>; Tue, 24 Nov 2015 12:10:24 +0000 (UTC) From: "Justin Lecher" <jlec@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" <jlec@gentoo.org> Message-ID: <1448367017.9fbb183c5d365a025db80b5f5460fb1ce6817dda.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/boto/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/boto/boto-2.38.0.ebuild X-VCS-Directories: dev-python/boto/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 9fbb183c5d365a025db80b5f5460fb1ce6817dda X-VCS-Branch: master Date: Tue, 24 Nov 2015 12:10:24 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9e3a45ab-90a9-408e-a956-ba488bfd2314 X-Archives-Hash: 815697d8702024b71569bd4901fcee0c commit: 9fbb183c5d365a025db80b5f5460fb1ce6817dda Author: Justin Lecher <jlec <AT> gentoo <DOT> org> AuthorDate: Tue Nov 24 08:50:59 2015 +0000 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org> CommitDate: Tue Nov 24 12:10:17 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fbb183c dev-python/boto: Add python3.5 support Package-Manager: portage-2.2.25 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org> dev-python/boto/boto-2.38.0.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-python/boto/boto-2.38.0.ebuild b/dev-python/boto/boto-2.38.0.ebuild index f966073..5be2ca9 100644 --- a/dev-python/boto/boto-2.38.0.ebuild +++ b/dev-python/boto/boto-2.38.0.ebuild @@ -2,8 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="5" -PYTHON_COMPAT=( python{2_7,3_3,3_4} ) +EAPI=5 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) inherit distutils-r1 @@ -16,7 +16,8 @@ SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="doc test" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] ) doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"