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/loky/
Date: Sat, 03 Oct 2020 21:21:16
Message-Id: 1601760067.60a536e4821c1f253c239277e7fae7bbea8fed48.mgorny@gentoo
1 commit: 60a536e4821c1f253c239277e7fae7bbea8fed48
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 3 20:55:34 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 21:21:07 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60a536e4
7
8 dev-python/loky: Bump to 2.9.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/loky/Manifest | 1 +
13 dev-python/loky/loky-2.9.0.ebuild | 34 ++++++++++++++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-python/loky/Manifest b/dev-python/loky/Manifest
17 index 917f78219b6..c1539e30bad 100644
18 --- a/dev-python/loky/Manifest
19 +++ b/dev-python/loky/Manifest
20 @@ -1 +1,2 @@
21 DIST loky-2.8.0.tar.gz 112383 BLAKE2B 5561d96c0e0d23951dff303bdb1789f200b88e74ca44ef75119112491693c5876a9a70ad3688b3af9eaf12c0000d891067c936ca984404146890fb131f8c261e SHA512 15fbdb56994e08f643b7bd5aa68d193f74ab61ef1230df9e2101fb4602a201a050e3ecf08229fc4ad61e478c893e0b34b81371ef9596733baa0e3d008125cd11
22 +DIST loky-2.9.0.tar.gz 115019 BLAKE2B 2aa2042e32821b67db8b8de12d4b380d22af93d308bb35878271a4859325d6740a3bdab70b464a2c0d0af143903c8af3da81b4b804605cdae88779fefd7971a6 SHA512 d49354b834251f6f05a689ac44464aafa5a7a5b4a8ef84a308ec3bda138e810fc3dc31aa628307984dc69386a210f442d4c202b9499ae3e3864837b47a5b0cd9
23
24 diff --git a/dev-python/loky/loky-2.9.0.ebuild b/dev-python/loky/loky-2.9.0.ebuild
25 new file mode 100644
26 index 00000000000..a96b2ed5edc
27 --- /dev/null
28 +++ b/dev-python/loky/loky-2.9.0.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{6..9} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Robust and reusable Executor for joblib"
39 +HOMEPAGE="https://github.com/joblib/loky"
40 +SRC_URI="
41 + https://github.com/joblib/loky/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
46 +
47 +RDEPEND="
48 + dev-python/cloudpickle[${PYTHON_USEDEP}]
49 + dev-python/psutil[${PYTHON_USEDEP}]"
50 +BDEPEND="
51 + test? (
52 + dev-python/numpy[${PYTHON_USEDEP}]
53 + )"
54 +
55 +distutils_enable_tests pytest
56 +
57 +src_prepare() {
58 + # docker, seriously?
59 + sed -e 's:test_cpu_count_cfs_limit:_&:' \
60 + -i tests/test_loky_module.py || die
61 +
62 + distutils-r1_src_prepare
63 +}