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 767B6138334 for ; Mon, 5 Aug 2019 06:21:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ACF84E088A; Mon, 5 Aug 2019 06:21:25 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 96772E088A for ; Mon, 5 Aug 2019 06:21:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1BE4534976A for ; Mon, 5 Aug 2019 06:21:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C02FA703 for ; Mon, 5 Aug 2019 06:21:22 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1564986067.d4036f617a230606fbe67e095792fff7d2ebd156.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jupyter/jupyter-1.0.0.ebuild X-VCS-Directories: dev-python/jupyter/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d4036f617a230606fbe67e095792fff7d2ebd156 X-VCS-Branch: master Date: Mon, 5 Aug 2019 06:21:22 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f8263f43-b3c1-4d03-8173-3900910ccf25 X-Archives-Hash: 2c5d06740697715cb0d04761835cb659 commit: d4036f617a230606fbe67e095792fff7d2ebd156 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Aug 2 21:23:57 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Aug 5 06:21:07 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4036f61 dev-python/jupyter: Drop 1.0.0 (r0) Package-Manager: Portage-2.3.70, Repoman-2.3.16 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-python/jupyter/jupyter-1.0.0.ebuild | 44 --------------------------------- 1 file changed, 44 deletions(-) diff --git a/dev-python/jupyter/jupyter-1.0.0.ebuild b/dev-python/jupyter/jupyter-1.0.0.ebuild deleted file mode 100644 index c0be2175677..00000000000 --- a/dev-python/jupyter/jupyter-1.0.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 python3_5 ) - -inherit distutils-r1 - -DESCRIPTION="Jupyter metapackage. Install all the Jupyter components in one go" -HOMEPAGE="https://jupyter.org" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64" -IUSE="doc" - -RDEPEND=" - dev-python/notebook[${PYTHON_USEDEP}] - dev-python/qtconsole[${PYTHON_USEDEP}] - dev-python/jupyter_console[${PYTHON_USEDEP}] - dev-python/nbconvert[${PYTHON_USEDEP}] - dev-python/ipykernel[${PYTHON_USEDEP}] - dev-python/ipywidgets[${PYTHON_USEDEP}]" -DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" - -python_prepare_all() { - # Prevent un-needed download during build - if use doc; then - sed -e "/^ 'sphinx.ext.intersphinx',/d" -i docs/source/conf.py || die - fi - - distutils-r1_python_prepare_all -} - -python_compile_all() { - use doc && emake -C docs html -} - -python_install_all() { - use doc && HTML_DOCS=( "${S}"/docs/build/html/. ) - distutils-r1_python_install_all -}