-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andrew Udvare <[email protected]>
- Loading branch information
Showing
3 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
DIST numba-0.60.0.tar.gz 2702171 BLAKE2B b80572210c148331e726379fa6f40476670d69bc7fbdb0b872bf96e26e516d29d6013f5507a186bcb8e1334d0ac92cb96cb1def8dc4b055a0d5fe0464cf12ffc SHA512 f1b39d9011d4bcc820118ea022fb62d477cabe751de9c9d0556dda0498e7c58d0d0b90e5ab7347a2212e830921e297e3a618bd9f6e58216b8b96e49f7b784e26 | ||
EBUILD numba-0.60.0-r2.ebuild 773 BLAKE2B b55bb28fedb1f8c9be7b7d9ee1fd1f197e98afec8fd042e6c79aa03a544df0bc2d58e03a26a8e8c4f50ff3f3bada4c0548394a0d7545a0f3f6824ff68f8c512c SHA512 d6b6c5d4c1074efc0f6542b99d67be1c911b99c1493c167501416de623dbb4125af09676f5e634e7a19c5abae3ad3c84ace407bd6ee8ae00c0fc2ba0091d9419 | ||
DIST numba-0.61.0.tar.gz 2816484 BLAKE2B 138ff214a5bec7b8548bcf80d86eaf57a9708c0242cb7f9d66d9dd25c99118abe326e88db328cae3c809621af8a86e7bec03286c4479efc0d9a552108bc38948 SHA512 b4098e5358230b56018a17c56aff3595180bfe19e3c1287d1209e84be1635bf7905ffd2a8b73ceb48f806edac997b96672acc9cdc50ecf3a51373ca2110d51a6 | ||
EBUILD numba-0.60.0-r2.ebuild 789 BLAKE2B 380d04922560daaaf212d38b1171a0ab9a127967ecd05321fc813b0f3510fbc507cc6e2394bb33c22bec724e40bdf7036d5d4f63b1415f179493f4ac378304f7 SHA512 48c88a54bb79e9ae6b50218ab1975297f605dc5b1f094b80916ffcf69beeed87a19595ff40b9690f5d4b0877b50d6869770737ed8a1faf806ef7d7ab441653fe | ||
EBUILD numba-0.61.0.ebuild 784 BLAKE2B e4fbd89f26d022d60655ffe9c38d5cc7974e5626b9f3b7159076aa5dd26db86898d931c97d13d929a6a93893c4b957a9c99c64d8578d12ac0ac020e899e7c322 SHA512 522acb3c732bdcdf93beec7254d66920169ce9f3c38f6e8640d8601414cf4e1250123b8398b4024426dfbcfd7449c1db8f4fe76bc5791ca216b73999f833b7ce | ||
MISC metadata.xml 378 BLAKE2B 179a8817367e70b6a9035c4ca73f403228da86ea27c8d625006377b2f12a5a01c11dea92c0fae45c2f52b4ea3766ac32276febeae5c9f9522566708dad0960d3 SHA512 e188d59cceba3514dd446945e922ccb6977f212843138b14ee6d01779fc23be6cd7c95d66efd1d2ed8284a5992aea9cf049b345ab9607b078554e89da9acf68c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright 2022 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_EXT=1 | ||
DISTUTILS_USE_PEP517=setuptools | ||
PYTHON_COMPAT=( python3_1{0,1,2,3} ) | ||
inherit distutils-r1 flag-o-matic pypi | ||
|
||
DESCRIPTION="NumPy aware dynamic Python compiler using LLVM" | ||
HOMEPAGE="https://pypi.org/project/numba/" | ||
IUSE="tbb" | ||
|
||
LICENSE="BSD-2" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
DEPEND="tbb? ( <dev-cpp/tbb-2021.5.0-r1 ) | ||
dev-python/numpy[${PYTHON_USEDEP}]" | ||
RDEPEND="dev-python/llvmlite[${PYTHON_USEDEP}] | ||
dev-python/setuptools:0[${PYTHON_USEDEP}]" | ||
|
||
src_configure() { | ||
append-ldflags "$(no-as-needed)" | ||
distutils-r1_src_configure | ||
} | ||
|
||
src_compile() { | ||
export MAKEOPTS=-j1 | ||
! use tbb && export NUMBA_DISABLE_TBB=1 | ||
distutils-r1_src_compile | ||
} | ||
|
||
distutils_enable_tests pytest |