summaryrefslogtreecommitdiff
path: root/dev-python/pyfuse3
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-12-23 22:19:16 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-12-23 22:19:16 +0000
commit0fbdfe85d857bb54b2dcd533e61da516fff20d46 (patch)
tree3e87c1f6e9d9c72135f188960fcd48b779629f07 /dev-python/pyfuse3
parent34ddcb7be8f5a507d9a302d63f42e0c1edbe8a9d (diff)
downloadbaldeagleos-repo-0fbdfe85d857bb54b2dcd533e61da516fff20d46.tar.gz
baldeagleos-repo-0fbdfe85d857bb54b2dcd533e61da516fff20d46.tar.xz
baldeagleos-repo-0fbdfe85d857bb54b2dcd533e61da516fff20d46.zip
Adding metadata
Diffstat (limited to 'dev-python/pyfuse3')
-rw-r--r--dev-python/pyfuse3/Manifest1
-rw-r--r--dev-python/pyfuse3/pyfuse3-3.4.1.ebuild41
2 files changed, 42 insertions, 0 deletions
diff --git a/dev-python/pyfuse3/Manifest b/dev-python/pyfuse3/Manifest
index 8371333b69cd..72ce39a6f83b 100644
--- a/dev-python/pyfuse3/Manifest
+++ b/dev-python/pyfuse3/Manifest
@@ -1 +1,2 @@
DIST pyfuse3-3.4.0.tar.gz 962992 BLAKE2B 44bacb061a29034ac02879ace6d727fb99e5341b59233788575b9d460bbef93152d4c29f855fa82966490d228f4c0e7f829d43940d3a36d963618276c5ba9bd1 SHA512 44220578d411abd8c75f9f3a88671dad96407ad261942f7ceb1e86454c9c0ed49cb5e8a8f533c8bddadf189382a75475e4641b2917dd83110cd5e2f6bd733db1
+DIST pyfuse3-3.4.1.tar.gz 1185901 BLAKE2B cd51ad6194ea62fa4395ff0dc89ed977defe94a2054cf64803afec2cd99dd69aed3b8fe08537f54afeb1f60bf5de63cc462bed408833d0b674c3130451ebcd7c SHA512 3b82447ef0fc2bfa2264e7e4e42cbfdbb1d12adf33f1c32fb4913ff0d1084a66d1edd2dbbbeff8c379d49e9072471fc57ba07316484a03de3210c3eab0a074b6
diff --git a/dev-python/pyfuse3/pyfuse3-3.4.1.ebuild b/dev-python/pyfuse3/pyfuse3-3.4.1.ebuild
new file mode 100644
index 000000000000..e76216bb2f7c
--- /dev/null
+++ b/dev-python/pyfuse3/pyfuse3-3.4.1.ebuild
@@ -0,0 +1,41 @@
+# 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 3 bindings for libfuse 3 with asynchronous API"
+HOMEPAGE="
+ https://github.com/libfuse/pyfuse3/
+ https://pypi.org/project/pyfuse3/
+"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+
+DEPEND="
+ sys-fs/fuse:3=
+"
+RDEPEND="
+ ${DEPEND}
+ dev-python/trio[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ dev-python/cython[${PYTHON_USEDEP}]
+ test? (
+ dev-python/pytest-trio[${PYTHON_USEDEP}]
+ )
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+python_configure() {
+ esetup.py build_cython
+}