From ab55bf3c80228d7533b67e8b6cf5269570825721 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Fri, 27 Mar 2020 21:15:31 +0100 Subject: dev-python/jupyter_client: Remove redundant versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/jupyter_client/Manifest | 2 -- .../files/jupyter_client-5.1.0-setuptools.patch | 39 --------------------- .../jupyter_client/jupyter_client-5.1.0-r1.ebuild | 40 ---------------------- .../jupyter_client/jupyter_client-5.2.3.ebuild | 38 -------------------- .../jupyter_client/jupyter_client-5.2.4.ebuild | 38 -------------------- 5 files changed, 157 deletions(-) delete mode 100644 dev-python/jupyter_client/files/jupyter_client-5.1.0-setuptools.patch delete mode 100644 dev-python/jupyter_client/jupyter_client-5.1.0-r1.ebuild delete mode 100644 dev-python/jupyter_client/jupyter_client-5.2.3.ebuild delete mode 100644 dev-python/jupyter_client/jupyter_client-5.2.4.ebuild (limited to 'dev-python/jupyter_client') diff --git a/dev-python/jupyter_client/Manifest b/dev-python/jupyter_client/Manifest index 18c6cb40c707..b6e486f6a939 100644 --- a/dev-python/jupyter_client/Manifest +++ b/dev-python/jupyter_client/Manifest @@ -1,4 +1,2 @@ -DIST jupyter_client-5.1.0.tar.gz 265233 BLAKE2B 1f4533e1c6578e61b1a7591889805d5e324a3cd368cb3998131f2047056c87984ae26d83c9de0277aa6f19b61db4c4d9b39083b795e0891ef7d5394949b5fa44 SHA512 eca7adab1f8aae05743c341a257d4ca4338b0838cc3441939dda48229cdfa13b267bdc338b951bc4e6e139d03d26b40a1294140218f84ab800d211f7e0d8bfc7 DIST jupyter_client-5.2.3.tar.gz 271787 BLAKE2B 36761e53050874c141c38f545f8f6fb53c144c30f686b3706594d124a65e410c205379b7ecbeed12f1520f0f568c7db3c802223f6fdb8f76407074beacc21918 SHA512 89b980ecc281bc1512e1fc4ba35862cc6e541f825ee07a1382d300c8088f24611225ab415d6a7c1e4209c47a74c113ec95f863e8fb0b33c6db9eb9c3521fc0ae -DIST jupyter_client-5.2.4.tar.gz 273397 BLAKE2B a63e13fea7bf121cfe0191d702bf5398a72902e075d560ec235eec6c28492a89753a90efe642fc207ab23357e74aac566bbfbeeb7970b765bf53641caa7ac95f SHA512 a8bb322e4cbcfa5ab9ffbcfdbf2e2ea60e7923f415d7574a93866e99c03a8c5b0a11d7c82e9c4c1c69f4da1261563f419877dffd5347294a58a744c445271a53 DIST jupyter_client-5.3.4.tar.gz 275850 BLAKE2B a0884fb6cd2858b3ecf8353c6dc180370a53b4d59f77fdeb33c972c72857650e2e8b64ac5f6c9d223a99f30bb9ad9e06673cfe14b2d79abc0e4363104ffd15c3 SHA512 54b5206c08f5119feb50deb2d815d79a178799ad5c1231a0d03fc950ebbf6cb2f7c3a757024f788d416f808c57aa8476fcfa110f63182314bf2d5cdeb9a006cf diff --git a/dev-python/jupyter_client/files/jupyter_client-5.1.0-setuptools.patch b/dev-python/jupyter_client/files/jupyter_client-5.1.0-setuptools.patch deleted file mode 100644 index ff7dcb0f3d4c..000000000000 --- a/dev-python/jupyter_client/files/jupyter_client-5.1.0-setuptools.patch +++ /dev/null @@ -1,39 +0,0 @@ -From f9bd2643d42b3354b27e64368d8c15cad18101d2 Mon Sep 17 00:00:00 2001 -From: Philipp A -Date: Tue, 8 Aug 2017 17:38:52 +0200 -Subject: [PATCH] Always use setuptools if availabe -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -When running `python* setup.py install`, the `jupyter-run` script doesn’t get installed without this. ---- - setup.py | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -diff --git a/setup.py b/setup.py -index 60fa17c..0831f7a 100644 ---- a/setup.py -+++ b/setup.py -@@ -70,6 +70,7 @@ - ], - ) - -+# require setuptools for these cases - if 'develop' in sys.argv or any(a.startswith('bdist') for a in sys.argv): - import setuptools - -@@ -85,7 +86,12 @@ - 'test': ['ipykernel', 'ipython', 'mock', 'pytest'], - } - --if 'setuptools' in sys.modules: -+# always try to use setuptools if available -+try: -+ import setuptools -+except ImportError: -+ pass -+else: - setup_args.update(setuptools_args) - setup_args['entry_points'] = { - 'console_scripts': [ diff --git a/dev-python/jupyter_client/jupyter_client-5.1.0-r1.ebuild b/dev-python/jupyter_client/jupyter_client-5.1.0-r1.ebuild deleted file mode 100644 index 88438e3011c9..000000000000 --- a/dev-python/jupyter_client/jupyter_client-5.1.0-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7} ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 - -DESCRIPTION="Jupyter protocol implementation and client libraries" -HOMEPAGE="https://jupyter.org" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/python-dateutil[${PYTHON_USEDEP}] - dev-python/traitlets[${PYTHON_USEDEP}] - dev-python/jupyter_core[${PYTHON_USEDEP}] - >=dev-python/pyzmq-14.4.0[${PYTHON_USEDEP}] - " -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] - dev-python/ipykernel[${PYTHON_USEDEP}] - ) - " - -python_test() { - pytest --cov jupyter_client jupyter_client || die -} - -PATCHES=( "${FILESDIR}"/${PN}-5.1.0-setuptools.patch ) diff --git a/dev-python/jupyter_client/jupyter_client-5.2.3.ebuild b/dev-python/jupyter_client/jupyter_client-5.2.3.ebuild deleted file mode 100644 index ab6c45328e01..000000000000 --- a/dev-python/jupyter_client/jupyter_client-5.2.3.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7} ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 - -DESCRIPTION="Jupyter protocol implementation and client libraries" -HOMEPAGE="https://jupyter.org" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/python-dateutil[${PYTHON_USEDEP}] - dev-python/traitlets[${PYTHON_USEDEP}] - dev-python/jupyter_core[${PYTHON_USEDEP}] - >=dev-python/pyzmq-14.4.0[${PYTHON_USEDEP}] - " -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] - dev-python/ipykernel[${PYTHON_USEDEP}] - ) - " - -python_test() { - pytest --cov jupyter_client jupyter_client || die -} diff --git a/dev-python/jupyter_client/jupyter_client-5.2.4.ebuild b/dev-python/jupyter_client/jupyter_client-5.2.4.ebuild deleted file mode 100644 index ce3429206f4a..000000000000 --- a/dev-python/jupyter_client/jupyter_client-5.2.4.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7} ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 - -DESCRIPTION="Jupyter protocol implementation and client libraries" -HOMEPAGE="https://jupyter.org" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/python-dateutil[${PYTHON_USEDEP}] - dev-python/traitlets[${PYTHON_USEDEP}] - dev-python/jupyter_core[${PYTHON_USEDEP}] - >=dev-python/pyzmq-14.4.0[${PYTHON_USEDEP}] - www-servers/tornado[${PYTHON_USEDEP}] - " -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/ipykernel[${PYTHON_USEDEP}] - ) - " - -python_test() { - pytest -vv jupyter_client || die -} -- cgit v1.2.3-65-gdbad