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 DA17B158092 for ; Wed, 15 Sep 2021 18:39:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A41AE0729; Wed, 15 Sep 2021 18:39:39 +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-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E6728E0729 for ; Wed, 15 Sep 2021 18:39:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DD64A3430C5 for ; Wed, 15 Sep 2021 18:39:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 22A29B0 for ; Wed, 15 Sep 2021 18:39:36 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1631731129.74cb9c3f95a52e96d5c0e204c38d2bd27f4b5d51.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/numba/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/numba/numba-0.54.0.ebuild X-VCS-Directories: dev-python/numba/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 74cb9c3f95a52e96d5c0e204c38d2bd27f4b5d51 X-VCS-Branch: master Date: Wed, 15 Sep 2021 18:39:36 +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: 437c0058-8e71-456a-bc8b-79eb275301c6 X-Archives-Hash: 131b568d910d5d9f1fadefd9644e1292 commit: 74cb9c3f95a52e96d5c0e204c38d2bd27f4b5d51 Author: Andrew Ammerlaan gentoo org> AuthorDate: Wed Sep 15 18:38:49 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Wed Sep 15 18:38:49 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=74cb9c3f dev-python/numba: add version 0.54.0 Package-Manager: Portage-3.0.23, Repoman-3.0.3 RepoMan-Options: --force Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/numba/numba-0.54.0.ebuild | 84 ++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) diff --git a/dev-python/numba/numba-0.54.0.ebuild b/dev-python/numba/numba-0.54.0.ebuild new file mode 100644 index 000000000..125b20daf --- /dev/null +++ b/dev-python/numba/numba-0.54.0.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..9} ) + +DISTUTILS_USE_SETUPTOOLS=rdepend +inherit optfeature multiprocessing distutils-r1 + +DESCRIPTION="NumPy aware dynamic Python compiler using LLVM" +HOMEPAGE="https://numba.pydata.org/ + https://github.com/numba" +SRC_URI="https://github.com/numba/numba/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="openmp threads" + +RDEPEND=" + >=dev-python/llvmlite-0.37.0[${PYTHON_USEDEP}] + =dev-python/numpy-1.17.0[${PYTHON_USEDEP}] + threads? ( >=dev-cpp/tbb-2019.5 ) +" +BDEPEND=" + dev-python/pip[${PYTHON_USEDEP}] + dev-python/versioneer[${PYTHON_USEDEP}] +" + +DISTUTILS_IN_SOURCE_BUILD=1 +distutils_enable_tests unittest +distutils_enable_sphinx docs/source dev-python/numpydoc dev-python/sphinx_rtd_theme + +PATCHES=( + "${FILESDIR}/${PN}-0.52.0-skip_tests.patch" +) + +pkg_setup() { + if ! use openmp; then + export NUMBA_DISABLE_OPENMP=1 || die + else + unset NUMBA_DISABLE_OPENMP || die + fi + if ! use threads; then + export NUMBA_DISABLE_TBB=1 || die + else + unset NUMBA_DISABLE_TBB || die + export TBBROOT="${EPREFIX}/usr" || die + fi +} + +python_prepare_all() { + # This conf.py only works in a git repo + if use doc; then + git init -q || die + git config user.email "larry@gentoo.org" || die + git config user.name "Larry the Cow" || die + git add . || die + git commit -m "init" || die + fi + distutils-r1_python_prepare_all +} + +python_compile() { + # FIXME: parallel python building fails. See Portage bug #614464 and + # gentoo/sci issue #1080. + export MAKEOPTS=-j1 || die + distutils-r1_python_compile +} + +# https://numba.pydata.org/numba-doc/latest/developer/contributing.html?highlight=test#running-tests +python_test() { + distutils_install_for_testing + ${EPYTHON} setup.py build_ext --inplace || die \ + "${EPYTHON} failed to build_ext" + ${EPYTHON} runtests.py -m $(makeopts_jobs) || die \ + "${EPYTHON} failed unittests" +} + +pkg_postinst() { + optfeature "compile cuda code" dev-util/nvidia-cuda-sdk +}