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/threadpoolctl/
Date: Thu, 02 Jul 2020 08:29:32
Message-Id: 1593678554.05801fe5bbeba720b7bc8088eadaadad773aa9ff.mgorny@gentoo
1 commit: 05801fe5bbeba720b7bc8088eadaadad773aa9ff
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 2 06:20:44 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 2 08:29:14 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05801fe5
7
8 dev-python/threadpoolctl: Bump to 2.1.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/threadpoolctl/Manifest | 1 +
13 .../threadpoolctl/threadpoolctl-2.1.0.ebuild | 23 ++++++++++++++++++++++
14 2 files changed, 24 insertions(+)
15
16 diff --git a/dev-python/threadpoolctl/Manifest b/dev-python/threadpoolctl/Manifest
17 index f6f9348b413..f9569de5dd1 100644
18 --- a/dev-python/threadpoolctl/Manifest
19 +++ b/dev-python/threadpoolctl/Manifest
20 @@ -1 +1,2 @@
21 DIST threadpoolctl-2.0.0.tar.gz 23349 BLAKE2B d7752d862f8de5d61a95dd2e0db9a9cf5b3fde4c13cad9f654c0af4e2277b8bcc36b79028fbdf0e14af35daacee4b01a8778462364e070eaa194af65f4274739 SHA512 8ce823a6aef9f6d6af73e848c7a3bb1c7eee3f94bf480ca056ed5f435655756b9ad26cb71e392689cd8e6a34ee1ddfcf0d8510e424ac9c05bb1eda679d0f7a93
22 +DIST threadpoolctl-2.1.0.tar.gz 25255 BLAKE2B 3afa8e8c44567d3833dee89e761b2f384129c386c5c5b9d8084c1b301f007be7f461f1ef99738e06551f793feefa5c312dce1d608e7012215fd759866a52e2d4 SHA512 09b745b0d164bf3fc4f293bd92f1fd2e02180ec538bf3da1cdb986e31d9336ba3e1301aede72f53700d00298bae7b91b4ec8fa3212accb4cde6c3f5f88ff5c62
23
24 diff --git a/dev-python/threadpoolctl/threadpoolctl-2.1.0.ebuild b/dev-python/threadpoolctl/threadpoolctl-2.1.0.ebuild
25 new file mode 100644
26 index 00000000000..1d26d7c4972
27 --- /dev/null
28 +++ b/dev-python/threadpoolctl/threadpoolctl-2.1.0.ebuild
29 @@ -0,0 +1,23 @@
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 +DISTUTILS_USE_SETUPTOOLS=pyproject.toml
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Limit the number of threads used in native libs that have their own threadpool"
40 +HOMEPAGE="https://github.com/joblib/threadpoolctl"
41 +SRC_URI="https://github.com/joblib/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
46 +
47 +BDEPEND="dev-python/cython[${PYTHON_USEDEP}]"
48 +
49 +# tests require openmp python bindings...
50 +RESTRICT=test
51 +
52 +distutils_enable_tests pytest