Skip to content

Commit 39d87c8

Browse files
committed
dev-python/numba: add ebuild
1 parent 41facde commit 39d87c8

3 files changed

Lines changed: 44 additions & 0 deletions

File tree

dev-python/numba/Manifest

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DIST numba-0.61.0.gh.tar.gz 2884884 BLAKE2B fecfc6ce22ea2ff58d393410d1bdee6cb39101126e249ccb91bbddc62566667845ed8374450a05f9a761d7c2034de855e2e89668ef1f7602587e3250aa747e17 SHA512 74c12099965b8f2f4782c1fb55383a5867af852833647c6bd772b3f281ad04fcf4622ee9f3afd4535735ee99f16c3ddddfb826184cee8112e33e533b94d8ccef

dev-python/numba/metadata.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
3+
<pkgmetadata>
4+
<maintainer type="project">
5+
<email>sci@gentoo.org</email>
6+
<name>Gentoo Science Project</name>
7+
</maintainer>
8+
<maintainer type="person">
9+
<email>mschu.dev@gmail.com</email>
10+
<name>Michael Schubert</name>
11+
</maintainer>
12+
<upstream>
13+
<remote-id type="github">numba/numba</remote-id>
14+
<remote-id type="pypi">numba</remote-id>
15+
</upstream>
16+
</pkgmetadata>
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Copyright 1999-2025 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
DISTUTILS_EXT=1
7+
DISTUTILS_USE_PEP517=setuptools
8+
PYTHON_COMPAT=( python3_{10..13} )
9+
inherit distutils-r1
10+
11+
DESCRIPTION="NumPy aware dynamic Python compiler using LLVM"
12+
HOMEPAGE="https://numba.pydata.org/"
13+
SRC_URI="https://github.com/numba/numba/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
14+
15+
LICENSE="BSD"
16+
SLOT="0"
17+
KEYWORDS="~amd64"
18+
IUSE="debug"
19+
20+
RDEPEND="
21+
dev-python/llvmlite[$PYTHON_USEDEP]
22+
<=dev-python/numpy-2.1[$PYTHON_USEDEP]
23+
"
24+
DEPEND="${RDEPEND}"
25+
26+
RESTRICT="test" # tests need to be run from "${BUILD_DIR}/build/lib.linux-x86_64-cpython-312"
27+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)