From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E621959CAF for ; Sat, 2 Apr 2016 08:24:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A3E6E07F2; Sat, 2 Apr 2016 08:24: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 B618DE07F2 for ; Sat, 2 Apr 2016 08:24:43 +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 4EEB0340D4C for ; Sat, 2 Apr 2016 08:24:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0FD1677 for ; Sat, 2 Apr 2016 08:24:39 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1459585261.497fbe67f627eee03cd93ac2eeec32ae1f13ad6a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter_client/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jupyter_client/Manifest dev-python/jupyter_client/jupyter_client-4.2.2.ebuild X-VCS-Directories: dev-python/jupyter_client/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 497fbe67f627eee03cd93ac2eeec32ae1f13ad6a X-VCS-Branch: master Date: Sat, 2 Apr 2016 08:24: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: 03ba5b4f-9056-4d4f-a749-1868d1e7ff43 X-Archives-Hash: a4b092ed9bd2fcb2efcae313dd1616ab commit: 497fbe67f627eee03cd93ac2eeec32ae1f13ad6a Author: Marius Brehler linux sungazer de> AuthorDate: Fri Apr 1 14:31:55 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Apr 2 08:21:01 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=497fbe67 dev-python/jupyter_client: Version bump Package-Manager: portage-2.2.26 dev-python/jupyter_client/Manifest | 1 + .../jupyter_client/jupyter_client-4.2.2.ebuild | 37 ++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/dev-python/jupyter_client/Manifest b/dev-python/jupyter_client/Manifest index 8f39d7e..d58a94b 100644 --- a/dev-python/jupyter_client/Manifest +++ b/dev-python/jupyter_client/Manifest @@ -1 +1,2 @@ DIST jupyter_client-4.1.1.tar.gz 250227 SHA256 ff1ef5c6c3031a62db46ec6329867b4cb1595e6102a7819b3b5252b0c524bdb8 SHA512 08104fef5fd2522944ac5f1b2140a8267ffd97b0dba518f9fa792c08102ff8dbc4def592150433dfd893aed3596876ff254c9ea17b9b2e7a9622f773bd9d2606 WHIRLPOOL d7164a07a43c5d6cd78b30bedb6ec8e8bc367cca4ddf920fee27edc9337d6f1124ae840546d90d47ad1c0a84bd1677e452925c022cebfa5556c499f7fa8ee18d +DIST jupyter_client-4.2.2.tar.gz 254282 SHA256 3ffc530eff0518fd9bfe3662423a2bec15d0628b9ca159921dd72f34ae004a14 SHA512 d6393095caebb47aca7c0657f0947246d126d40c420173388d34cae2542f12b9ad916659c22b5c7c12901690006bd2ecb736a6c0203cc17a07b9e77e4d750485 WHIRLPOOL 6be03a2ab9896bebec57e7d429edf923dd12c0880451ecd7efc58ff08e257976f66125568bba90626df14dadf94e98d8e832a36d2d5d7d54427b5502df909f20 diff --git a/dev-python/jupyter_client/jupyter_client-4.2.2.ebuild b/dev-python/jupyter_client/jupyter_client-4.2.2.ebuild new file mode 100644 index 0000000..21a0d1d --- /dev/null +++ b/dev-python/jupyter_client/jupyter_client-4.2.2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 + +DESCRIPTION="Jupyter protocol implementation and client libraries" +HOMEPAGE="http://jupyter.org" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="test" + +RDEPEND=" + dev-python/traitlets[${PYTHON_USEDEP}] + dev-python/jupyter_core[${PYTHON_USEDEP}] + >=dev-python/pyzmq-14.4.0[${PYTHON_USEDEP}] + " +DEPEND="${RDEPEND} + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/coverage[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) + dev-python/ipykernel[${PYTHON_USEDEP}] + ) + " + +python_test() { + nosetests --with-coverage jupyter_client || die +}