commit: ee1e914f8365908063c2748862e3007b0ab4001c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 23 06:07:11 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Dec 23 06:07:11 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee1e914f
dev-python/pyfuse3: Bump to 3.4.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pyfuse3/Manifest | 1 +
dev-python/pyfuse3/pyfuse3-3.4.1.ebuild | 41 +++++++++++++++++++++++++++++++++
2 files changed, 42 insertions(+)
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..f51b72c9698b
--- /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_{11..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
+}