Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter_core/
Date: Mon, 17 Aug 2020 20:36:49
Message-Id: 1597696575.6af7aa4dc6cb8d2e6da6bc1b48fbea1b96aadf5b.soap@gentoo
1 commit: 6af7aa4dc6cb8d2e6da6bc1b48fbea1b96aadf5b
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 17 20:36:15 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 17 20:36:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6af7aa4d
7
8 dev-python/jupyter_core: Remove old 4.6.1-r1
9
10 Package-Manager: Portage-3.0.3, Repoman-3.0.0
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-python/jupyter_core/Manifest | 1 -
14 .../jupyter_core/jupyter_core-4.6.1-r1.ebuild | 49 ----------------------
15 2 files changed, 50 deletions(-)
16
17 diff --git a/dev-python/jupyter_core/Manifest b/dev-python/jupyter_core/Manifest
18 index 5032c8f9ad8..ca7f2d8eb8a 100644
19 --- a/dev-python/jupyter_core/Manifest
20 +++ b/dev-python/jupyter_core/Manifest
21 @@ -1,2 +1 @@
22 -DIST jupyter_core-4.6.1.tar.gz 66693 BLAKE2B f4338a015ac4b3e0a7cd2497a660bfca0deb96ffa2371fa9c72656f8a68b6f80fe5d494be79c8fdccbcb51f3d9122fd7d4b3e36864d38e7da1c5029c6b1aa24d SHA512 baf0c5db4f78a3cee83940ace80b48ba308c47eeafcf584120b8ba82768c15448fb789ec5b9ac8d541cbd1bfdd47a988f79130675c5943a67d3135d428b43cbe
23 DIST jupyter_core-4.6.3.tar.gz 67305 BLAKE2B 7c6a32bd8ce773b7bc4156eabf75597112716632179736b19be4b0e73eba7c5c67a0c9d2d141b952d72b68aff826227b0004a3bc9f3b286b68eb1375f2316bdb SHA512 3c7370c24a4cf53c9747e9e411852d207c0c7035809dab7cb018ccb53e19208df25ad4f728531e47f3a42c4d9694c3e1ed7b03133de23bcbdeb346c319f5f51f
24
25 diff --git a/dev-python/jupyter_core/jupyter_core-4.6.1-r1.ebuild b/dev-python/jupyter_core/jupyter_core-4.6.1-r1.ebuild
26 deleted file mode 100644
27 index 6f686d28788..00000000000
28 --- a/dev-python/jupyter_core/jupyter_core-4.6.1-r1.ebuild
29 +++ /dev/null
30 @@ -1,49 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{6,7} )
37 -DISTUTILS_USE_SETUPTOOLS=rdepend
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Core common functionality of Jupyter projects"
42 -HOMEPAGE="https://jupyter.org"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="BSD"
46 -SLOT="0"
47 -KEYWORDS="amd64 ~arm64 x86"
48 -IUSE="doc test"
49 -
50 -RDEPEND="dev-python/traitlets[${PYTHON_USEDEP}]"
51 -
52 -DEPEND="${RDEPEND}
53 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
54 - dev-python/sphinxcontrib-github-alt[${PYTHON_USEDEP}] )
55 - test? ( >=dev-python/ipython-4.0.1[${PYTHON_USEDEP}] )"
56 -
57 -distutils_enable_tests pytest
58 -
59 -python_prepare_all() {
60 - # Prevent un-needed download during build
61 - if use doc; then
62 - sed -e "/^ 'sphinx.ext.intersphinx',/d" -i docs/conf.py || die
63 - fi
64 -
65 - distutils-r1_python_prepare_all
66 -}
67 -
68 -python_compile_all() {
69 - if use doc; then
70 - emake -C docs html
71 - HTML_DOCS=( docs/_build/html/. )
72 - fi
73 -}
74 -
75 -python_test() {
76 - distutils_install_for_testing
77 - cd "${TEST_DIR}"/lib || die
78 - py.test jupyter_core || die
79 -}