diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-05-16 15:45:58 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-05-16 17:56:58 +0200 |
commit | f26e102ad26ccbed8a8d02b043a88bfb5248a688 (patch) | |
tree | 1f933a0459c7e0eb7b8a56c1569cf4eb8e4d3272 /dev-python/jupyter_core | |
parent | dev-python/entrypoints: Drop old (diff) | |
download | gentoo-f26e102ad26ccbed8a8d02b043a88bfb5248a688.tar.gz gentoo-f26e102ad26ccbed8a8d02b043a88bfb5248a688.tar.bz2 gentoo-f26e102ad26ccbed8a8d02b043a88bfb5248a688.zip |
dev-python/jupyter_core: Drop old
Package-Manager: Portage-2.3.36, Repoman-2.3.9
Diffstat (limited to 'dev-python/jupyter_core')
-rw-r--r-- | dev-python/jupyter_core/Manifest | 4 | ||||
-rw-r--r-- | dev-python/jupyter_core/jupyter_core-4.0.6.ebuild | 53 | ||||
-rw-r--r-- | dev-python/jupyter_core/jupyter_core-4.1.0.ebuild | 53 | ||||
-rw-r--r-- | dev-python/jupyter_core/jupyter_core-4.2.1.ebuild | 54 | ||||
-rw-r--r-- | dev-python/jupyter_core/jupyter_core-4.3.0.ebuild | 52 |
5 files changed, 0 insertions, 216 deletions
diff --git a/dev-python/jupyter_core/Manifest b/dev-python/jupyter_core/Manifest index 0729a9ae8a2a..56de66d86bb8 100644 --- a/dev-python/jupyter_core/Manifest +++ b/dev-python/jupyter_core/Manifest @@ -1,5 +1 @@ -DIST jupyter_core-4.0.6.tar.gz 55060 BLAKE2B 815a22b35a2fa46d37b9a1b8ec353ca049992258d040090ac548175de3c759aae443ca977eac9ffce5d7e5f6369eab60037f376324dbd2b98b116632a9a31fc8 SHA512 e6d7a0293ce6cdd3202b354aae62900683eb0474590980bf3d9c6f89b4b16182e7caee0e42c3feb3de5851535a01394b20725d9428eb105dbc2c34d90e0d398b -DIST jupyter_core-4.1.0.tar.gz 56500 BLAKE2B c237f041c6268acc632930e7fde3c51a361690cb4b60b30b84a64e39c4deb8068e2ef18cf5a6a803ae6a013490e8f07f1dfab7cb5cfad9d281570358cd05097f SHA512 863c4611093e914d92ac268d26e546842132d398d30f78c8440830a426da2923912b7da484ca3282a3f737300af316a305b8417cd1c35acd4a0ff93de1309d39 -DIST jupyter_core-4.2.1.tar.gz 61794 BLAKE2B 9af6880e6f223c93873249ddd23caaa66c8f204db666083f8f97e046971308323801f85ae42ec2546575cb66934c5322ad02859d1a627c4f74d37c324bcfde40 SHA512 775a1ddbf6f6cbd44bf924017832c4fa394c453c778639d4d58ca9a11d79574c5203858bd05683210c887ba469baae1290d1885a59833b129064a9c59345ad19 -DIST jupyter_core-4.3.0.tar.gz 57998 BLAKE2B 1a98266e9d069ca3dd01fe76e08084443b22e77870edc78f16ca0f6b96e39b3d6dfc01d3b72d292e8171e900672e5e7fe358ffa26a984a33d72b7ec97aa550b4 SHA512 8e84cae53e035e3a3d29fe3b64246ce75bed291165db4ae7fcad472e1f1523d740ac168cb97330844548f3df3d7d82cd833886c1b755761b93e01153500961b1 DIST jupyter_core-4.4.0.tar.gz 63613 BLAKE2B 90b5d6c855786beff0ab780e7a894e1b24f6d6d1c26be6ae8da73e82a87f966f1155498c581314d37db845e293be7bc4d085e03991cdc7adfbba36409541cd5b SHA512 387f7f98f640b85ff0a24f11e1beae5a851d7eb3ba4a423be028940cb018c0d0ddf42ae8a1c397e3e4cafa560d3a5385b39bb8794448c7c010be7f0ddcba8a9e diff --git a/dev-python/jupyter_core/jupyter_core-4.0.6.ebuild b/dev-python/jupyter_core/jupyter_core-4.0.6.ebuild deleted file mode 100644 index 47ce9f7f531a..000000000000 --- a/dev-python/jupyter_core/jupyter_core-4.0.6.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 python3_{4,5} ) - -inherit distutils-r1 - -DESCRIPTION="Core common functionality of Jupyter projects" -HOMEPAGE="http://jupyter.org" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="doc test" - -RDEPEND=" - dev-python/traitlets[${PYTHON_USEDEP}] - " -DEPEND="${RDEPEND} - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) - >=dev-python/ipython-4.0.1[${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 jupyter_core || die -} - -python_install_all() { - use doc && HTML_DOCS=( docs/_build/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/jupyter_core/jupyter_core-4.1.0.ebuild b/dev-python/jupyter_core/jupyter_core-4.1.0.ebuild deleted file mode 100644 index c46b91a23259..000000000000 --- a/dev-python/jupyter_core/jupyter_core-4.1.0.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5} ) - -inherit distutils-r1 - -DESCRIPTION="Core common functionality of Jupyter projects" -HOMEPAGE="http://jupyter.org" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="doc test" - -RDEPEND=" - dev-python/traitlets[${PYTHON_USEDEP}] - " -DEPEND="${RDEPEND} - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) - >=dev-python/ipython-4.0.1[${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 jupyter_core || die -} - -python_install_all() { - use doc && HTML_DOCS=( docs/_build/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/jupyter_core/jupyter_core-4.2.1.ebuild b/dev-python/jupyter_core/jupyter_core-4.2.1.ebuild deleted file mode 100644 index c7cb549f26d3..000000000000 --- a/dev-python/jupyter_core/jupyter_core-4.2.1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5} ) - -inherit distutils-r1 - -DESCRIPTION="Core common functionality of Jupyter projects" -HOMEPAGE="http://jupyter.org" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="doc test" - -RDEPEND=" - dev-python/traitlets[${PYTHON_USEDEP}] - " -DEPEND="${RDEPEND} - !!<dev-python/jupyter-1.0.0-r1 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) - >=dev-python/ipython-4.0.1[${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 jupyter_core || die -} - -python_install_all() { - use doc && HTML_DOCS=( docs/_build/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/jupyter_core/jupyter_core-4.3.0.ebuild b/dev-python/jupyter_core/jupyter_core-4.3.0.ebuild deleted file mode 100644 index a64ed0b484f5..000000000000 --- a/dev-python/jupyter_core/jupyter_core-4.3.0.ebuild +++ /dev/null @@ -1,52 +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,6} ) - -inherit distutils-r1 - -DESCRIPTION="Core common functionality of Jupyter projects" -HOMEPAGE="http://jupyter.org" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="doc test" - -RDEPEND=" - dev-python/traitlets[${PYTHON_USEDEP}] - " -DEPEND="${RDEPEND} - !!<dev-python/jupyter-1.0.0-r1 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 'python2*') - >=dev-python/ipython-4.0.1[${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() { - if use doc; then - emake -C docs html - HTML_DOCS=( docs/_build/html/. ) - fi -} - -python_test() { - distutils_install_for_testing - cd "${TEST_DIR}"/lib || die - py.test jupyter_core || die -} |