From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CB0651382C5 for ; Sat, 7 Apr 2018 07:14:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D58EAE084A; Sat, 7 Apr 2018 07:14:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B4173E084A for ; Sat, 7 Apr 2018 07:14:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 35581335C43 for ; Sat, 7 Apr 2018 07:14:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DE9327A for ; Sat, 7 Apr 2018 07:14:48 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1523085194.6c2ffa50b71a0f24f22dec3ea0ca9e0d04221a6c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/discogs-client/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/discogs-client/discogs-client-2.2.1.ebuild X-VCS-Directories: dev-python/discogs-client/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6c2ffa50b71a0f24f22dec3ea0ca9e0d04221a6c X-VCS-Branch: master Date: Sat, 7 Apr 2018 07:14:48 +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: 7523d64f-8a33-47b8-9666-9b0d8536f423 X-Archives-Hash: 16e774536c4e08c3571ceb959429d54c commit: 6c2ffa50b71a0f24f22dec3ea0ca9e0d04221a6c Author: Michał Górny gentoo org> AuthorDate: Sat Apr 7 07:09:50 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Apr 7 07:13:14 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c2ffa50 dev-python/discogs-client: Tested on python3* Closes: https://bugs.gentoo.org/652670 dev-python/discogs-client/discogs-client-2.2.1.ebuild | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/dev-python/discogs-client/discogs-client-2.2.1.ebuild b/dev-python/discogs-client/discogs-client-2.2.1.ebuild index 62c0629bb3b..0b6a6c19032 100644 --- a/dev-python/discogs-client/discogs-client-2.2.1.ebuild +++ b/dev-python/discogs-client/discogs-client-2.2.1.ebuild @@ -1,9 +1,8 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 -# Not py3 capable due to oauth2 supports py2 pypy only -PYTHON_COMPAT=( python2_7 ) +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) inherit distutils-r1 @@ -20,10 +19,9 @@ RDEPEND=" dev-python/oauth2[${PYTHON_USEDEP}] dev-python/oauthlib[${PYTHON_USEDEP}] " -# It's either this or make a test use flag to add RDEPEND behind it. Both work DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" + dev-python/setuptools[${PYTHON_USEDEP}]" python_test() { - "${PYTHON}" -m unittest discover || die "Tests failed under ${EPYTHON}" + "${PYTHON}" -m unittest discover -v || die "Tests failed under ${EPYTHON}" }