diff options
Diffstat (limited to 'dev-python/threadpoolctl')
-rw-r--r-- | dev-python/threadpoolctl/Manifest | 2 | ||||
-rw-r--r-- | dev-python/threadpoolctl/threadpoolctl-3.4.0.ebuild | 41 |
2 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/threadpoolctl/Manifest b/dev-python/threadpoolctl/Manifest index 7a3df9eac80d..b3225c77c07d 100644 --- a/dev-python/threadpoolctl/Manifest +++ b/dev-python/threadpoolctl/Manifest @@ -1,3 +1,5 @@ DIST threadpoolctl-3.3.0.gh.tar.gz 36189 BLAKE2B 0c51d10d2444e76d8c1e46dc60e8434e515c56919b2e276261a5c595db38c5ecf35fda88308d4e2d50e5a03a2946a02fb7c15ecc3224d734bd6f1ab0e7af16f4 SHA512 901ab53aa30b3931b08f89eb1439517883f05762032e924d4bbcbf19a2ffc145b10fc65817199a9a3a7c5cf2ad38860d3b0df6b9d3b83fd24799804671c01524 +DIST threadpoolctl-3.4.0.gh.tar.gz 36777 BLAKE2B f5ac09cb2d15ee7c46ebedde61b2ad4e583f4a787bcce8189901f97a56ec030f67fa5dcb20e675b541710db3a48b1983162aa1109b6648a99bb50068590107ac SHA512 3ee49d9936811dd373d25e036e9165aedd1e4d740f0e6a30c5f114c6d58d33321e279919093f1d076c6510fd92dd77273c6d24bf7f6e06030194512093fcc266 EBUILD threadpoolctl-3.3.0.ebuild 1177 BLAKE2B 3052bcfc25ef59da92cd045d4ed395d46a195df2e2ff59760d5ffc9f7b547c0cff3b85668682c6dbe869635216580a9d64d5924927c4d86dc5388de7c0f189c7 SHA512 cd2f26cd1d302db4b76558f76f7f0a4cb5a985cfe6bde5aae1f0616de2a3a75557c6eaedd225220a034f73bb9c9d82ef0fe31142635d5a92a1a48817d485c8b7 +EBUILD threadpoolctl-3.4.0.ebuild 1181 BLAKE2B cb19362d837d4e38024c5aa996e0a110e36869138f973bade4c7f1b348f650bb893c1a88178c878e9f067c85fa2b9e84508486690a93ce8bd1b9da9a18131a2f SHA512 fff40f09d60f2c00f1f698ad52ade114c78af08595201012822c0243a9937ac93eb87b0050d6e5d9e48923446b32f49dfbd9842d45de20316d311a6b0fd29132 MISC metadata.xml 489 BLAKE2B eba7a68832688f4c6cca1f30e188bae378c82347d87d7a0186fe3821dd04b75fdda2a7826785c3a59eda7362d1119d183be239b06c90ce14096e5a87459d2a29 SHA512 e14a5317dcfb8506a277d358ec227d276cf148e0293fc56b14751804a89fa20134b5be752fcc8beaffd12e246722d34120449a8f1ea0900e2918e42889c54dd8 diff --git a/dev-python/threadpoolctl/threadpoolctl-3.4.0.ebuild b/dev-python/threadpoolctl/threadpoolctl-3.4.0.ebuild new file mode 100644 index 000000000000..88092a680ad2 --- /dev/null +++ b/dev-python/threadpoolctl/threadpoolctl-3.4.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 2020-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 + +DESCRIPTION="Limit the number of threads used in native libs that have their own threadpool" +HOMEPAGE=" + https://github.com/joblib/threadpoolctl/ + https://pypi.org/project/threadpoolctl/ +" +SRC_URI=" + https://github.com/joblib/threadpoolctl/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~arm64-macos ~x64-macos" + +BDEPEND=" + dev-python/cython[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # Asserts against a hardcoded list of CPUs. Either we skip it + # or file bugs about missing architectures until upstream realizes + # how bad idea that were. + tests/test_threadpoolctl.py::test_architecture + # This test fails if the Python executable (or any library that it + # links to) uses OpenMP. This can particularly be the case with + # CPython 3.12 that links to app-crypt/libb2. + # https://github.com/joblib/threadpoolctl/issues/146 + tests/test_threadpoolctl.py::test_command_line_empty +) |