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 E382D138359 for ; Mon, 21 Sep 2020 23:40:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33FBCE0857; Mon, 21 Sep 2020 23:40:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 197B2E0857 for ; Mon, 21 Sep 2020 23:40:27 +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 A0966340DC4 for ; Mon, 21 Sep 2020 23:40:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B0B2373 for ; Mon, 21 Sep 2020 23:40:25 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1600731610.cff5710de6fd6df9a8300da5e12c9ead2e216f10.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/nbformat/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/nbformat/metadata.xml dev-python/nbformat/nbformat-9999.ebuild X-VCS-Directories: dev-python/nbformat/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: cff5710de6fd6df9a8300da5e12c9ead2e216f10 X-VCS-Branch: master Date: Mon, 21 Sep 2020 23:40:25 +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: bb3046bb-6105-42d3-9ed6-63a6ff19a2c5 X-Archives-Hash: c38d8060d20a021889777bd1058b6c14 commit: cff5710de6fd6df9a8300da5e12c9ead2e216f10 Author: Aisha Tammy aisha cc> AuthorDate: Mon Sep 21 23:39:58 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Mon Sep 21 23:40:10 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=cff5710d dev-python/nbformat: drop package present in ::gentoo Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Aisha Tammy aisha.cc> dev-python/nbformat/metadata.xml | 14 -------- dev-python/nbformat/nbformat-9999.ebuild | 59 -------------------------------- 2 files changed, 73 deletions(-) diff --git a/dev-python/nbformat/metadata.xml b/dev-python/nbformat/metadata.xml deleted file mode 100644 index 0bd1894f0..000000000 --- a/dev-python/nbformat/metadata.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - sci@gentoo.org - Gentoo Science Project - - -Jupyther nbformat contains the reference implementation of the -Jupyter Notebook format, and Python APIs for working with -notebooks. There is also a JSON schema for notebook format -versions >= 3. - - diff --git a/dev-python/nbformat/nbformat-9999.ebuild b/dev-python/nbformat/nbformat-9999.ebuild deleted file mode 100644 index 9549f6909..000000000 --- a/dev-python/nbformat/nbformat-9999.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5} ) -PYTHON_REQ_USE='sqlite' - -inherit distutils-r1 git-r3 - -DESCRIPTION="Reference implementation of the Jupyter Notebook format" -HOMEPAGE="http://jupyter.org" -EGIT_REPO_URI="https://github.com/jupyter/${PN}.git git://github.com/jupyter/${PN}.git" - -LICENSE="BSD" -SLOT="0" -IUSE="doc test" - -RDEPEND=" - >=dev-python/jsonschema-2.4.0[${PYTHON_USEDEP}] - dev-python/ipython_genutils[${PYTHON_USEDEP}] - >=dev-python/traitlets-4.1[${PYTHON_USEDEP}] - dev-python/jupyter_core[${PYTHON_USEDEP}] - " -DEPEND="${RDEPEND} - doc? ( - dev-python/sphinx[${PYTHON_USEDEP}] - dev-python/numpydoc[${PYTHON_USEDEP}] - ) - test? ( - dev-python/testpath[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-cov[${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() { - distutils_install_for_testing - cd "${TEST_DIR}"/lib || die - py.test -v --cov nbformat nbformat || die -} - -python_install_all() { - use doc && HTML_DOCS=( docs/_build/html/. ) - distutils-r1_python_install_all -}