diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2025-12-23 22:19:16 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2025-12-23 22:19:16 +0000 |
| commit | 0fbdfe85d857bb54b2dcd533e61da516fff20d46 (patch) | |
| tree | 3e87c1f6e9d9c72135f188960fcd48b779629f07 /dev-python/llfuse | |
| parent | 34ddcb7be8f5a507d9a302d63f42e0c1edbe8a9d (diff) | |
| download | baldeagleos-repo-0fbdfe85d857bb54b2dcd533e61da516fff20d46.tar.gz baldeagleos-repo-0fbdfe85d857bb54b2dcd533e61da516fff20d46.tar.xz baldeagleos-repo-0fbdfe85d857bb54b2dcd533e61da516fff20d46.zip | |
Adding metadata
Diffstat (limited to 'dev-python/llfuse')
| -rw-r--r-- | dev-python/llfuse/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/llfuse/llfuse-1.5.2.ebuild | 59 |
2 files changed, 60 insertions, 0 deletions
diff --git a/dev-python/llfuse/Manifest b/dev-python/llfuse/Manifest index 6ac5d4508cd4..65627c146ff2 100644 --- a/dev-python/llfuse/Manifest +++ b/dev-python/llfuse/Manifest @@ -1 +1,2 @@ DIST llfuse-1.5.1.tar.gz 959557 BLAKE2B 0484c1b71b1293f4577039ff150bbf870350e25c091363affa99ca4c33dc4db72d7ff48747076707ca2de605c0ae15adaa49cfbcef3a52630e92b9f5bc717743 SHA512 c4dc25bb3cfe9abd0d7f6885a73f1b3e21a834554206cc6fdf6ba3f7e03f5f4f6c1117161528f4ea2bb93013abbcba0c87ce7fef3368ac147e4d15fe1c5dd113 +DIST llfuse-1.5.2.tar.gz 1010784 BLAKE2B e939df082a550bf720d2c945aed22da741c4bed9694854013592749e3c75fdd2075ac1dc328be72ac4be946d5281592b7804de84ad148fcbef4dccacbf6d4e17 SHA512 071fe2a7415959560a85cb5734261dc34d0d8cb83ca23413a06c6118ca7efc34ad17adcbf490b8cf71d8b2c55afd17e3fc0b091bfb12af842fc5c3f5b03de845 diff --git a/dev-python/llfuse/llfuse-1.5.2.ebuild b/dev-python/llfuse/llfuse-1.5.2.ebuild new file mode 100644 index 000000000000..ddbcd5f068c0 --- /dev/null +++ b/dev-python/llfuse/llfuse-1.5.2.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-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..14} ) + +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 +EPYTEST_PLUGINS=() +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 +} |
