Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/joblib/
Date: Sun, 11 Oct 2020 00:49:19
Message-Id: 1602377347.ff9b808a5b353221275fab370a6c7d5f7b7c6ca8.sbraz@gentoo
1 commit: ff9b808a5b353221275fab370a6c7d5f7b7c6ca8
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 11 00:13:41 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 11 00:49:07 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff9b808a
7
8 dev-python/joblib: bump to 0.17.0, add Python 3.9 support
9
10 Also remove doc altogether since it is already masked.
11
12 Closes: https://bugs.gentoo.org/700164
13 Package-Manager: Portage-3.0.8, Repoman-3.0.1
14 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
15
16 dev-python/joblib/Manifest | 1 +
17 dev-python/joblib/joblib-0.17.0.ebuild | 50 ++++++++++++++++++++++++++++++++++
18 2 files changed, 51 insertions(+)
19
20 diff --git a/dev-python/joblib/Manifest b/dev-python/joblib/Manifest
21 index bcaca744dab..e1489fb1b9f 100644
22 --- a/dev-python/joblib/Manifest
23 +++ b/dev-python/joblib/Manifest
24 @@ -1,3 +1,4 @@
25 DIST joblib-0.14.1.tar.gz 338930 BLAKE2B 6b84c43be8b8d32f28a3dbc3e6f4ce15574cf20571805501972d162d4b076c1fe144a9790b8132821f0acd439c8859873038813c7bdd4163d0535eca36a1a8fa SHA512 079eb4321ed95c8f05399abca2a1c46ecb7c28fe9a3a50b6eb106a2bd2f3566fb25bca59022fafbfcee5069f078921421d799eeb29a796f8f98881491cf9be08
26 DIST joblib-0.15.1.tar.gz 342550 BLAKE2B c8ccf0b6d2e229a780939d9c4f39265bd18b5a452d014056001072b7daf7e46a5961c6d80f768c30ba7463aa36c5ec09959bb1e891028bf6f7862a9a265079aa SHA512 a0b0bde5b034af3eee0bce2875199fc9ac232a34a49c14daf6fbddd9bf3ad8fa0d77192827b7531704b81db7bdfbaf76c4755b8fc1035eaf73b2e08f9e6d8828
27 DIST joblib-0.16.0.tar.gz 345002 BLAKE2B 0336fcbe95204141a0b04dfbf8949ba509792402eefbb86b3dc02375e7e3eb5c76d548d4ad01238307c0334ce4299fd9e763765d92722819894ea26ab6144032 SHA512 9f1f2e7f2e293e1c53e9752907f4ba25d52a5c4895eebfa423c8e3bc64146ab20a490e1db0cfa39596c9bbc47ea1cc491b0576bf8da9a1f68b58e91ba09ead34
28 +DIST joblib-0.17.0.tar.gz 345984 BLAKE2B 4f4cb83037fc02ce9ea17e7dc5d284235b847eeb90bf1a877c4168aabd9ad4dd762e45a6485806efc759cdfcb98e6ee70e6d9a498cd7645b1d6b0051a9f9ba2e SHA512 73c42a9f5949478a4a03b97ec31549cabca2ebc968d2c869632696b671c175dc85ae7aa8ac92905f13f830083b2305b56df1552f1d70fa7fe51945ae7286840a
29
30 diff --git a/dev-python/joblib/joblib-0.17.0.ebuild b/dev-python/joblib/joblib-0.17.0.ebuild
31 new file mode 100644
32 index 00000000000..cbff1fbeb9f
33 --- /dev/null
34 +++ b/dev-python/joblib/joblib-0.17.0.ebuild
35 @@ -0,0 +1,50 @@
36 +# Copyright 1999-2020 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +PYTHON_COMPAT=( python3_{6..9} )
41 +
42 +inherit distutils-r1
43 +
44 +DESCRIPTION="Tools to provide lightweight pipelining in Python"
45 +HOMEPAGE="https://joblib.readthedocs.io/en/latest/
46 + https://github.com/joblib/joblib"
47 +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
48 +
49 +LICENSE="BSD"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
52 +
53 +RDEPEND="
54 + dev-python/cloudpickle[${PYTHON_USEDEP}]
55 + dev-python/loky[${PYTHON_USEDEP}]
56 +"
57 +# joblib is imported by setup.py so we need ${RDEPEND}
58 +BDEPEND="
59 + ${RDEPEND}
60 + test? (
61 + dev-python/threadpoolctl[${PYTHON_USEDEP}]
62 + )
63 +"
64 +
65 +distutils_enable_tests pytest
66 +
67 +python_prepare_all() {
68 + # unbundle
69 + rm -r joblib/externals || die
70 + sed -e "s:'joblib.externals[^']*',\?::g" -i setup.py || die
71 + find -name '*.py' -exec \
72 + sed -e 's:\(joblib\)\?\.externals\.::' \
73 + -e 's:from \.externals ::' \
74 + -i {} + || die
75 +
76 + # https://github.com/joblib/joblib/issues/1115
77 + sed -e 's:test_parallel_call_cached_function_defined_in_jupyter:_&:' \
78 + -i joblib/test/test_memory.py || die
79 +
80 + # tries to fetch from the internet
81 + rm examples/compressors_comparison.py \
82 + examples/parallel/distributed_backend_simple.py || die
83 +
84 + distutils-r1_python_prepare_all
85 +}