blob: 35542831649abcb1e8405f795b9f7b124c1cf629 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 2021-2024 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_{10..13} )
inherit distutils-r1 pypi
DESCRIPTION="An extension class for memory allocation in cython"
HOMEPAGE="
https://pypi.org/project/memory-allocator/
https://github.com/sagemath/memory_allocator/
"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64"
BDEPEND="
dev-python/cython[${PYTHON_USEDEP}]
"
python_test() {
# The test script tries to "import memory_allocator.test" which, so
# long as a memory_allocator directory exists inside CWD, will look
# for a memory_allocator/test.py there. But there is no such file;
# the "test" module is a compiled extension. To let the search fall
# back to the correct location, we temporarily rename the directory
# that misleads it.
rm -rf memory_allocator || die
"${EPYTHON}" test.py || die
}
|