Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/joblib/
Date: Mon, 11 May 2020 17:33:28
Message-Id: 1589218387.0b9530bec5e66353d2d76a766f779e2e9879ddf2.mgorny@gentoo
1 commit: 0b9530bec5e66353d2d76a766f779e2e9879ddf2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 11 17:05:36 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 11 17:33:07 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b9530be
7
8 dev-python/joblib: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/joblib/Manifest | 1 -
13 dev-python/joblib/joblib-0.12.2.ebuild | 45 ----------------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/dev-python/joblib/Manifest b/dev-python/joblib/Manifest
17 index af3ac1f1dc3..df1468d2425 100644
18 --- a/dev-python/joblib/Manifest
19 +++ b/dev-python/joblib/Manifest
20 @@ -1,2 +1 @@
21 -DIST joblib-0.12.2.tar.gz 289249 BLAKE2B 247a8bce753ece235877540b829bdc9546b3a6d7610b09592217bf9d47fd038a5e75f649224b76832825e77d76ae46443984de3d83558cdbd4d816d8f610e8b0 SHA512 9bf93c89681f59d17e735c228d3379df5dff67b4365b59ddea1a062f9547c376e5870e4ece83af8e7cda1ae30e2a2893a4a009e03b7fec798d3574e8ab060267
22 DIST joblib-0.14.1.tar.gz 338930 BLAKE2B 6b84c43be8b8d32f28a3dbc3e6f4ce15574cf20571805501972d162d4b076c1fe144a9790b8132821f0acd439c8859873038813c7bdd4163d0535eca36a1a8fa SHA512 079eb4321ed95c8f05399abca2a1c46ecb7c28fe9a3a50b6eb106a2bd2f3566fb25bca59022fafbfcee5069f078921421d799eeb29a796f8f98881491cf9be08
23
24 diff --git a/dev-python/joblib/joblib-0.12.2.ebuild b/dev-python/joblib/joblib-0.12.2.ebuild
25 deleted file mode 100644
26 index 93796a11091..00000000000
27 --- a/dev-python/joblib/joblib-0.12.2.ebuild
28 +++ /dev/null
29 @@ -1,45 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python{3_6,3_7} )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Tools to provide lightweight pipelining in Python"
39 -HOMEPAGE="https://joblib.readthedocs.io/en/latest/
40 - https://github.com/joblib/joblib"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
46 -IUSE="doc test"
47 -RESTRICT="!test? ( test )"
48 -
49 -DEPEND="
50 - dev-python/setuptools[${PYTHON_USEDEP}]
51 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
52 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
53 -RDEPEND=""
54 -
55 -python_compile_all() {
56 - if use doc; then
57 - sphinx-build -b html -c doc/ doc/ doc/html || die "docs failed installation"
58 - fi
59 -}
60 -
61 -python_test() {
62 - # https://github.com/joblib/joblib/issues/143
63 - if [[ "${EPYTHON}" == pypy ]]; then
64 - sed -e 's:test_func_inspect_errors:_&:' -i ${PN}/test/test_func_inspect.py || die
65 - sed -e 's:test_parallel_pickling:_&:' -i ${PN}/test/test_parallel.py || die
66 - fi
67 -
68 - py.test -v
69 -}
70 -
71 -python_install_all() {
72 - use doc && local HTML_DOCS=( doc/html/. )
73 - distutils-r1_python_install_all
74 -}