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 1DD4C138331 for ; Wed, 14 Sep 2016 17:26:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90823E0BAE; Wed, 14 Sep 2016 17:26:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CAE2AE0BAE for ; Wed, 14 Sep 2016 17:26:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D8F13340943 for ; Wed, 14 Sep 2016 17:26:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA83E247A for ; Wed, 14 Sep 2016 17:26:13 +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: <1473866145.c5ee7b85cafe4e073c5cb4681df7a518dd67e3c4.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/prov/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/prov/prov-1.4.0.ebuild X-VCS-Directories: dev-python/prov/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: c5ee7b85cafe4e073c5cb4681df7a518dd67e3c4 X-VCS-Branch: master Date: Wed, 14 Sep 2016 17:26:13 +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: 1d0130c9-32ee-4615-b9b7-e99af7dfb770 X-Archives-Hash: 3387305eed111e9b79d6fa627ed60d25 commit: c5ee7b85cafe4e073c5cb4681df7a518dd67e3c4 Author: Horea Christian yandex com> AuthorDate: Wed Sep 14 15:15:45 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Sep 14 15:15:45 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c5ee7b85 dev-python/prov: updated python compatibility and fixed test phase (#672) Package-Manager: portage-2.3.0 dev-python/prov/prov-1.4.0.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-python/prov/prov-1.4.0.ebuild b/dev-python/prov/prov-1.4.0.ebuild index cbb13de..2fe1cd4 100644 --- a/dev-python/prov/prov-1.4.0.ebuild +++ b/dev-python/prov/prov-1.4.0.ebuild @@ -2,9 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="6" +EAPI=6 -PYTHON_COMPAT=( python2_7 ) +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) inherit distutils-r1 @@ -27,6 +27,6 @@ RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}] >=dev-python/six-1.10[${PYTHON_USEDEP}] " -src_test() { - ${PYTHON} -m unittest discover || die +python_test() { + ${EPYTHON} -m unittest discover || die }