# Copyright 2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{11..14} ) inherit distutils-r1 pypi DESCRIPTION="Ctypes bindings for the high-level API in libfuse 2 and 3" HOMEPAGE="https://github.com/mxmlnkn/mfusepy" SRC_URI+=" test? ( https://github.com/mxmlnkn/mfusepy/raw/refs/tags/v${PV}/examples/loopback.py -> ${P}-t-loopback.py https://github.com/mxmlnkn/mfusepy/raw/refs/tags/v${PV}/examples/memory.py -> ${P}-t-memory.py https://github.com/mxmlnkn/mfusepy/raw/refs/tags/v${PV}/examples/memory_nullpath.py -> ${P}-t-memory_nullpath.py https://github.com/mxmlnkn/mfusepy/raw/refs/tags/v${PV}/examples/readdir_returning_offsets.py -> ${P}-t-readdir_returning_offsets.py https://github.com/mxmlnkn/mfusepy/raw/refs/tags/v${PV}/examples/readdir_with_offset.py -> ${P}-t-readdir_with_offset.py ) " LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~x86" DEPEND="|| ( sys-fs/fuse:0 sys-fs/fuse:3 )" RDEPEND="${DEPEND}" BDEPEND="test? ( dev-python/ioctl-opt[${PYTHON_USEDEP}] )" PROPERTIES="test_privileged" RESTRICT="test" EPYTEST_PLUGINS=( pytest-order ) distutils_enable_tests pytest python_prepare_all() { if use test; then for tpy in "${DISTDIR}"/*-t-*; do { cp ${tpy} "${S}"/${tpy##*-t-} || die ; } ; done has_version sys-fs/fuse:3 && { sed -i "s/fusermount/fusermount3/" tests/test_examples.py || die ; } fi distutils-r1_python_prepare_all } python_test() { addwrite /dev/fuse epytest }