From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D08CD138359 for ; Thu, 2 Jul 2020 08:29:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16421E0870; Thu, 2 Jul 2020 08:29:32 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 01810E0870 for ; Thu, 2 Jul 2020 08:29:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 024E634F00E for ; Thu, 2 Jul 2020 08:29:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A1D522C8 for ; Thu, 2 Jul 2020 08:29:29 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1593678554.05801fe5bbeba720b7bc8088eadaadad773aa9ff.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/threadpoolctl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/threadpoolctl/Manifest dev-python/threadpoolctl/threadpoolctl-2.1.0.ebuild X-VCS-Directories: dev-python/threadpoolctl/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 05801fe5bbeba720b7bc8088eadaadad773aa9ff X-VCS-Branch: master Date: Thu, 2 Jul 2020 08:29:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3df226eb-ef13-4540-b100-0d9bb2a78411 X-Archives-Hash: c1126e4be1539c4540d68fef4c4832e4 commit: 05801fe5bbeba720b7bc8088eadaadad773aa9ff Author: Michał Górny gentoo org> AuthorDate: Thu Jul 2 06:20:44 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jul 2 08:29:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05801fe5 dev-python/threadpoolctl: Bump to 2.1.0 Signed-off-by: Michał Górny gentoo.org> dev-python/threadpoolctl/Manifest | 1 + .../threadpoolctl/threadpoolctl-2.1.0.ebuild | 23 ++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-python/threadpoolctl/Manifest b/dev-python/threadpoolctl/Manifest index f6f9348b413..f9569de5dd1 100644 --- a/dev-python/threadpoolctl/Manifest +++ b/dev-python/threadpoolctl/Manifest @@ -1 +1,2 @@ DIST threadpoolctl-2.0.0.tar.gz 23349 BLAKE2B d7752d862f8de5d61a95dd2e0db9a9cf5b3fde4c13cad9f654c0af4e2277b8bcc36b79028fbdf0e14af35daacee4b01a8778462364e070eaa194af65f4274739 SHA512 8ce823a6aef9f6d6af73e848c7a3bb1c7eee3f94bf480ca056ed5f435655756b9ad26cb71e392689cd8e6a34ee1ddfcf0d8510e424ac9c05bb1eda679d0f7a93 +DIST threadpoolctl-2.1.0.tar.gz 25255 BLAKE2B 3afa8e8c44567d3833dee89e761b2f384129c386c5c5b9d8084c1b301f007be7f461f1ef99738e06551f793feefa5c312dce1d608e7012215fd759866a52e2d4 SHA512 09b745b0d164bf3fc4f293bd92f1fd2e02180ec538bf3da1cdb986e31d9336ba3e1301aede72f53700d00298bae7b91b4ec8fa3212accb4cde6c3f5f88ff5c62 diff --git a/dev-python/threadpoolctl/threadpoolctl-2.1.0.ebuild b/dev-python/threadpoolctl/threadpoolctl-2.1.0.ebuild new file mode 100644 index 00000000000..1d26d7c4972 --- /dev/null +++ b/dev-python/threadpoolctl/threadpoolctl-2.1.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +inherit distutils-r1 + +DESCRIPTION="Limit the number of threads used in native libs that have their own threadpool" +HOMEPAGE="https://github.com/joblib/threadpoolctl" +SRC_URI="https://github.com/joblib/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + +BDEPEND="dev-python/cython[${PYTHON_USEDEP}]" + +# tests require openmp python bindings... +RESTRICT=test + +distutils_enable_tests pytest