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 0E79F139086 for ; Fri, 23 Dec 2016 09:49:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DACBA21C060; Fri, 23 Dec 2016 09:49:01 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 BB156E0C27 for ; Fri, 23 Dec 2016 09:49:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 77091340F53 for ; Fri, 23 Dec 2016 09:49:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A45D824E4 for ; Fri, 23 Dec 2016 09:48:58 +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: <1482403265.27cf8577e55d9b235071de97070ea60db12c5a28.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/matplotlib-venn/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/matplotlib-venn/matplotlib-venn-0.11.ebuild X-VCS-Directories: dev-python/matplotlib-venn/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 27cf8577e55d9b235071de97070ea60db12c5a28 X-VCS-Branch: master Date: Fri, 23 Dec 2016 09:48:58 +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: 9d5ed388-fd38-4b80-8eb6-d17293c67be7 X-Archives-Hash: 6ea1476512f38aae997f1552414e3737 commit: 27cf8577e55d9b235071de97070ea60db12c5a28 Author: Horea Christian yandex com> AuthorDate: Thu Dec 22 10:41:05 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Dec 22 10:41:05 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=27cf8577 dev-python/matplotlib-venn: enabled test phase (#710) Package-Manager: portage-2.3.3 .../matplotlib-venn/matplotlib-venn-0.11.ebuild | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/dev-python/matplotlib-venn/matplotlib-venn-0.11.ebuild b/dev-python/matplotlib-venn/matplotlib-venn-0.11.ebuild index bdb4ed2..272e5d2 100644 --- a/dev-python/matplotlib-venn/matplotlib-venn-0.11.ebuild +++ b/dev-python/matplotlib-venn/matplotlib-venn-0.11.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="5" +EAPI=6 -PYTHON_COMPAT=( python2_7 ) +PYTHON_COMPAT=( python2_7 python3_4 python3_5) inherit distutils-r1 @@ -15,10 +15,17 @@ SRC_URI="mirror://pypi/m/${PN}/${P}.zip" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" -IUSE="" +IUSE="test" RDEPEND=" dev-python/matplotlib[${PYTHON_USEDEP}] dev-python/numpy[${PYTHON_USEDEP}] - sci-libs/scipy[${PYTHON_USEDEP}]" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + sci-libs/scipy[${PYTHON_USEDEP}] + " +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" + +python_test() { + py.test --verbose || die +}