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 5515B1384B4 for ; Sat, 28 Nov 2015 17:58:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38CBE21C100; Sat, 28 Nov 2015 17:58:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45F2C21C100 for ; Sat, 28 Nov 2015 17:58:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5FEDD3408EA for ; Sat, 28 Nov 2015 17:58:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D0A58F50 for ; Sat, 28 Nov 2015 17:58:10 +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: <1448733212.87d0a0e19717c1cc7ec12418e9d012db9a97ede9.marbre@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/jupyter_console/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/jupyter_console/ChangeLog dev-python/jupyter_console/jupyter_console-4.0.3.ebuild X-VCS-Directories: dev-python/jupyter_console/ X-VCS-Committer: marbre X-VCS-Committer-Name: Marius Brehler X-VCS-Revision: 87d0a0e19717c1cc7ec12418e9d012db9a97ede9 X-VCS-Branch: master Date: Sat, 28 Nov 2015 17:58:10 +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: 362d87cd-908f-42b7-9d8d-9623c27ae2e9 X-Archives-Hash: c5442f2caa8b9fbfb052482161274805 commit: 87d0a0e19717c1cc7ec12418e9d012db9a97ede9 Author: Marius Brehler linux sungazer de> AuthorDate: Sat Nov 28 17:53:32 2015 +0000 Commit: Marius Brehler linux sungazer de> CommitDate: Sat Nov 28 17:53:32 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=87d0a0e1 dev-python/jupyter_console: Moved to tree Package-Manager: portage-2.2.20.1 dev-python/jupyter_console/ChangeLog | 4 ++ .../jupyter_console/jupyter_console-4.0.3.ebuild | 55 ---------------------- 2 files changed, 4 insertions(+), 55 deletions(-) diff --git a/dev-python/jupyter_console/ChangeLog b/dev-python/jupyter_console/ChangeLog index 9ae64c4..c3d4469 100644 --- a/dev-python/jupyter_console/ChangeLog +++ b/dev-python/jupyter_console/ChangeLog @@ -2,6 +2,10 @@ # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Id$ + 28 Nov 2015; Marius Brehler -Manifest, + -jupyter_console-4.0.3.ebuild: + dev-python/jupyter_console: Moved to tree + *jupyter_console-4.0.3 (11 Oct 2015) 11 Oct 2015; Sean Vig +jupyter_console-4.0.3.ebuild, diff --git a/dev-python/jupyter_console/jupyter_console-4.0.3.ebuild b/dev-python/jupyter_console/jupyter_console-4.0.3.ebuild deleted file mode 100644 index 0086a62..0000000 --- a/dev-python/jupyter_console/jupyter_console-4.0.3.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) - -inherit distutils-r1 - -DESCRIPTION="A terminal-based console frontend for Jupyter kernels" -HOMEPAGE="http://jupyter.org" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" -KEYWORDS="~amd64 ~x86" - -LICENSE="BSD" -SLOT="0" -IUSE="doc test" - -RDEPEND=" - dev-python/ipython[${PYTHON_USEDEP}] - dev-python/ipykernel[${PYTHON_USEDEP}] - dev-python/jupyter_client[${PYTHON_USEDEP}] - " -DEPEND="${RDEPEND} - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( - $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) - dev-python/pexpect[${PYTHON_USEDEP}] - >=dev-python/nose-0.10.1[${PYTHON_USEDEP}] - dev-python/coverage[${PYTHON_USEDEP}] - ) - " - -python_prepare_all() { - # Prevent un-needed download during build - if use doc; then - sed -e "/^ 'sphinx.ext.intersphinx',/d" -i docs/conf.py || die - fi - - distutils-r1_python_prepare_all -} - -python_compile_all() { - use doc && emake -C docs html -} - -python_test() { - nosetests --with-coverage --cover-package=jupyter_console jupyter_console || die -} - -python_install_all() { - use doc && HTML_DOCS=( docs/_build/html/. ) - distutils-r1_python_install_all -}