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 D40D813832F for ; Wed, 27 Jul 2016 12:17:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23BA021C038; Wed, 27 Jul 2016 12:17:44 +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 956DD21C03E for ; Wed, 27 Jul 2016 12:17:43 +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 89615340BF6 for ; Wed, 27 Jul 2016 12:17:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BAD8F78D for ; Wed, 27 Jul 2016 12:17:39 +0000 (UTC) From: "Marius Brehler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marius Brehler" Message-ID: <1469621111.30aa18db2283ba1435efeb0c250c17355a00e693.marbre@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/jupyter_client/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/jupyter_client/jupyter_client-9999.ebuild X-VCS-Directories: dev-python/jupyter_client/ X-VCS-Committer: marbre X-VCS-Committer-Name: Marius Brehler X-VCS-Revision: 30aa18db2283ba1435efeb0c250c17355a00e693 X-VCS-Branch: master Date: Wed, 27 Jul 2016 12:17:39 +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: 95f24115-35d3-4e40-bb2f-f4034a0b6a95 X-Archives-Hash: f8b761b00171fe9a6c5163f718c949c4 commit: 30aa18db2283ba1435efeb0c250c17355a00e693 Author: Marius Brehler linux sungazer de> AuthorDate: Wed Jul 27 12:05:11 2016 +0000 Commit: Marius Brehler linux sungazer de> CommitDate: Wed Jul 27 12:05:11 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=30aa18db dev-python/jupyter_client: Bump to EAPI=6; Adopt to ebuild in tree Package-Manager: portage-2.2.28 dev-python/jupyter_client/jupyter_client-9999.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/jupyter_client/jupyter_client-9999.ebuild b/dev-python/jupyter_client/jupyter_client-9999.ebuild index 3383ffb..0e0ecac 100644 --- a/dev-python/jupyter_client/jupyter_client-9999.ebuild +++ b/dev-python/jupyter_client/jupyter_client-9999.ebuild @@ -1,8 +1,8 @@ -# 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 python3_{3,4,5} ) PYTHON_REQ_USE="threads(+)" @@ -32,5 +32,5 @@ DEPEND="${RDEPEND} " python_test() { - nosetests --with-coverage jupyter_client || die + nosetests --with-coverage --cover-package jupyter_client jupyter_client || die }