View Raw Ebuild
# Copyright 2023-2025 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="EWAH Bool Array utils for yt"
HOMEPAGE="https://github.com/yt-project/ewah_bool_utils"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND=">=dev-python/numpy-1.17.3[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}"
BDEPEND="<dev-python/cython-3.0[${PYTHON_USEDEP}]"
distutils_enable_tests pytest
distutils_enable_sphinx docs
python_prepare_all() {
use doc && { mkdir docs/_static || die ; eapply "${FILESDIR}"/${P}-fix-title-underline.patch ; \
sed -e "/^version =/c version = \"${PN}\"" -e "/^release =/c release = \"${PN}\"" \
-i docs/conf.py || die ;
# -e "/language\ = /s/None/'en'/" \
}
distutils-r1_python_prepare_all
}
python_compile_all() {
# ModuleNotFoundError: No module named 'ewah_bool_utils.ewah_bool_wrap'
use doc && [[ -d ${PN//-/_} ]] && { mv {,_}${PN//-/_} || die ; }
sphinx_compile_all
[[ -d _${PN//-/_} ]] && { mv {_,}${PN//-/_} || die ; }
}
python_test() {
# ModuleNotFoundError: No module named 'ewah_bool_utils.ewah_bool_wrap'
[[ -d ${PN//-/_} ]] && { mv {,_}${PN//-/_} || die ; }
epytest
[[ -d _${PN//-/_} ]] && { mv {_,}${PN//-/_} || die ; }
}