dev-python/llfuse: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2024-09-21 12:44:50 +02:00
parent c14d05c83a
commit e3131fa9ff
2 changed files with 0 additions and 59 deletions

View File

@@ -1,2 +1 @@
DIST llfuse-1.5.0.tar.gz 869259 BLAKE2B 2a3eee64718f4a73b8dd51ccaeedd7b1b700f734b10daa864d2ca04da5f38ed6a514c4ae8b541000c4d4a3042dcd95533ff7c1df655d7b57ec89120a97d8a9b6 SHA512 bb84c697658e7cd39eb6af3a4a6085c3bc3295e5f0b4f35adf6565ecff5077acb27ecd92f7c6420aa06dab36d9b54915bce65e4ec3d011047a0a15cdccbbb284
DIST llfuse-1.5.1.tar.gz 959557 BLAKE2B 0484c1b71b1293f4577039ff150bbf870350e25c091363affa99ca4c33dc4db72d7ff48747076707ca2de605c0ae15adaa49cfbcef3a52630e92b9f5bc717743 SHA512 c4dc25bb3cfe9abd0d7f6885a73f1b3e21a834554206cc6fdf6ba3f7e03f5f4f6c1117161528f4ea2bb93013abbcba0c87ce7fef3368ac147e4d15fe1c5dd113

View File

@@ -1,58 +0,0 @@
# Copyright 1999-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} pypy3 )
inherit distutils-r1 pypi
DESCRIPTION="Python bindings for the low-level FUSE API"
HOMEPAGE="
https://github.com/python-llfuse/python-llfuse/
https://pypi.org/project/llfuse/
"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
IUSE="doc examples"
RDEPEND="
>=sys-fs/fuse-2.8.0:0
"
DEPEND="
${RDEPEND}
sys-apps/attr
"
BDEPEND="
dev-python/cython[${PYTHON_USEDEP}]
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}"/llfuse-1.3.5-cflags.patch
)
distutils_enable_sphinx rst
distutils_enable_tests pytest
src_prepare() {
# force regen
rm src/llfuse.c || die
distutils-r1_src_prepare
}
python_compile() {
if [[ ! -f src/llfuse.c ]]; then
esetup.py build_cython
fi
distutils-r1_python_compile
}
python_install_all() {
use examples && dodoc -r examples
distutils-r1_python_install_all
}