From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2FCD01388C1 for ; Sat, 31 Oct 2015 13:46:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0CC121C00D; Sat, 31 Oct 2015 13:46:52 +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 3656121C00C for ; Sat, 31 Oct 2015 13:46:52 +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 EDACE340AC9 for ; Sat, 31 Oct 2015 13:46:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50C851C2C for ; Sat, 31 Oct 2015 13:46:49 +0000 (UTC) From: "Justin Lecher" 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" Message-ID: <1446299206.f7b7b623e817b2936689ecba0054d07d62a684b5.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pep8/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pep8/pep8-1.6.2-r1.ebuild X-VCS-Directories: dev-python/pep8/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: f7b7b623e817b2936689ecba0054d07d62a684b5 X-VCS-Branch: master Date: Sat, 31 Oct 2015 13:46:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 309aa261-25c8-4140-a9f2-0222610b748c X-Archives-Hash: 9e2575b4f866947acfc29aca3b941457 commit: f7b7b623e817b2936689ecba0054d07d62a684b5 Author: Justin Lecher gentoo org> AuthorDate: Sat Oct 31 13:23:43 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Oct 31 13:46:46 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7b7b623 dev-python/pep8: Add python3.5 support Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/pep8/pep8-1.6.2-r1.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-python/pep8/pep8-1.6.2-r1.ebuild b/dev-python/pep8/pep8-1.6.2-r1.ebuild index c9ac898..320ece5 100644 --- a/dev-python/pep8/pep8-1.6.2-r1.ebuild +++ b/dev-python/pep8/pep8-1.6.2-r1.ebuild @@ -3,7 +3,8 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 ) + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 ) inherit distutils-r1 @@ -16,9 +17,9 @@ SLOT="0" 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" IUSE="doc" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" -RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}/${P}-restore-flake8-compatibility.patch" )