From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-862226-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 7156A58973
	for <garchives@archives.gentoo.org>; Tue,  9 Feb 2016 09:33:33 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id DB9D821C1A7;
	Tue,  9 Feb 2016 09:33:28 +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 6BF0921C07A
	for <gentoo-commits@lists.gentoo.org>; Tue,  9 Feb 2016 09:33:27 +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 3CD5F3409B7
	for <gentoo-commits@lists.gentoo.org>; Tue,  9 Feb 2016 09:33:26 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 6AE731069
	for <gentoo-commits@lists.gentoo.org>; Tue,  9 Feb 2016 09:33: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: <1455010383.9243a357eb02afd657d3564325347e48e27aaf4a.jlec@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oauthlib/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/oauthlib/oauthlib-1.0.1.ebuild
X-VCS-Directories: dev-python/oauthlib/
X-VCS-Committer: jlec
X-VCS-Committer-Name: Justin Lecher
X-VCS-Revision: 9243a357eb02afd657d3564325347e48e27aaf4a
X-VCS-Branch: master
Date: Tue,  9 Feb 2016 09:33: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: a873fa29-f002-4585-a597-473ec9b269bc
X-Archives-Hash: 86f376c979349000fd45b55a033714a6

commit:     9243a357eb02afd657d3564325347e48e27aaf4a
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  9 09:13:24 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Feb  9 09:33:03 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9243a357

dev-python/oauthlib: Add python3.5 support

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/oauthlib/oauthlib-1.0.1.ebuild | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/dev-python/oauthlib/oauthlib-1.0.1.ebuild b/dev-python/oauthlib/oauthlib-1.0.1.ebuild
index 335037b..63579d2 100644
--- a/dev-python/oauthlib/oauthlib-1.0.1.ebuild
+++ b/dev-python/oauthlib/oauthlib-1.0.1.ebuild
@@ -1,13 +1,14 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+PYTHON_COMPAT=( python{2_7,3_{3,4,5}} )
 
 inherit distutils-r1
 
-DESCRIPTION="A generic, spec-compliant, thorough implementation of the OAuth request-signing logic"
+DESCRIPTION="Spec-compliant and thorough implementation of the OAuth request-signing logic"
 HOMEPAGE="https://github.com/idan/oauthlib https://pypi.python.org/pypi/oauthlib"
 SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
@@ -17,12 +18,14 @@ KEYWORDS="~amd64 ~arm ~x86"
 IUSE="test"
 
 # optional extras hard set as RDEPs. See setup.py
-RDEPEND="dev-python/pycrypto[${PYTHON_USEDEP}]
-		>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
-		dev-python/blinker[${PYTHON_USEDEP}]
-		dev-python/cryptography[${PYTHON_USEDEP}]
+RDEPEND="
+	dev-python/pycrypto[${PYTHON_USEDEP}]
+	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
+	dev-python/blinker[${PYTHON_USEDEP}]
+	dev-python/cryptography[${PYTHON_USEDEP}]
 	"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
 	test? ( ${RDEPEND}
 		dev-python/nose[${PYTHON_USEDEP}]
 		$(python_gen_cond_dep '>=dev-python/mock-1.0.1[${PYTHON_USEDEP}]' python2_7)