Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyfuse3/
Date: Wed, 28 Sep 2022 18:34:30
Message-Id: 1664389984.c98f77f83d1309117f852d27b8f29d588902a6bf.mgorny@gentoo
1 commit: c98f77f83d1309117f852d27b8f29d588902a6bf
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 28 18:30:43 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 28 18:33:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c98f77f8
7
8 dev-python/pyfuse3: Bump to 3.2.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyfuse3/Manifest | 1 +
13 dev-python/pyfuse3/pyfuse3-3.2.2.ebuild | 41 +++++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-python/pyfuse3/Manifest b/dev-python/pyfuse3/Manifest
17 index e1db1f7198d8..11525080ab8d 100644
18 --- a/dev-python/pyfuse3/Manifest
19 +++ b/dev-python/pyfuse3/Manifest
20 @@ -1 +1,2 @@
21 DIST pyfuse3-3.2.1.tar.gz 509083 BLAKE2B 16ada8aec47d8049907ef2710e9bfdf7991a8127560e7264e4eb58f7062efde478d2914597333991be4a6ef67a2a83c470560456287c1298b2008454ac831fb0 SHA512 468ef4cf9e2caef346a108f481a4c6dca8909ff3ea5aed11187df4c70c72c6180af9004348d25648368598495e5a5d9be2ba95d37f4d6d8a8c982f4893471b04
22 +DIST pyfuse3-3.2.2.tar.gz 510868 BLAKE2B a6f11083a3ddec031fdfe5cb810be526cba26d7bc9599a64d28e9a45281aeb04fca8728ff3788e44f1736475c89e64c3c1fd7cb964ff81fc30ce441a5dda7fae SHA512 91787c4198592ff5f0c022141e6c3cb1701108a6635b4d26347c4f7efff2a83aec206e939b44879ad1fd5c6c85aa6731b7465c998ec55ec032a6db024ffee817
23
24 diff --git a/dev-python/pyfuse3/pyfuse3-3.2.2.ebuild b/dev-python/pyfuse3/pyfuse3-3.2.2.ebuild
25 new file mode 100644
26 index 000000000000..e681ca0d9809
27 --- /dev/null
28 +++ b/dev-python/pyfuse3/pyfuse3-3.2.2.ebuild
29 @@ -0,0 +1,41 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..11} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python 3 bindings for libfuse 3 with asynchronous API"
41 +HOMEPAGE="
42 + https://github.com/libfuse/pyfuse3/
43 + https://pypi.org/project/pyfuse3/
44 +"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="LGPL-2"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
50 +
51 +DEPEND="
52 + sys-fs/fuse:3
53 +"
54 +RDEPEND="
55 + ${DEPEND}
56 + dev-python/trio[${PYTHON_USEDEP}]
57 +"
58 +BDEPEND="
59 + dev-python/cython[${PYTHON_USEDEP}]
60 + test? (
61 + dev-python/pytest-trio[${PYTHON_USEDEP}]
62 + sys-apps/which
63 + )
64 +"
65 +
66 +distutils_enable_tests pytest
67 +
68 +python_configure() {
69 + esetup.py build_cython
70 +}