Gentoo Archives: gentoo-commits

From: Piotr Karbowski <slashbeast@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyfuse3/
Date: Mon, 28 Feb 2022 00:01:48
Message-Id: 1646006502.3966444060bd05facecf261375258dd9b3ad7942.slashbeast@gentoo
1 commit: 3966444060bd05facecf261375258dd9b3ad7942
2 Author: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 23:47:31 2022 +0000
4 Commit: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 28 00:01:42 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39664440
7
8 dev-python/pyfuse3: new package.
9
10 Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>
11
12 dev-python/pyfuse3/Manifest | 1 +
13 dev-python/pyfuse3/metadata.xml | 13 +++++++++++++
14 dev-python/pyfuse3/pyfuse3-3.1.1.ebuild | 32 ++++++++++++++++++++++++++++++++
15 3 files changed, 46 insertions(+)
16
17 diff --git a/dev-python/pyfuse3/Manifest b/dev-python/pyfuse3/Manifest
18 new file mode 100644
19 index 000000000000..ffa8fd846299
20 --- /dev/null
21 +++ b/dev-python/pyfuse3/Manifest
22 @@ -0,0 +1 @@
23 +DIST pyfuse3-3.1.1.tar.gz 460405 BLAKE2B 12be1eb8aeea1e76993dc46fb32d8afd220f9429fd9b17354849527417daf9b65fbb8ce031569eef80925783dda5fe2b76f7a82bf33b04a0ce6b299819887ef2 SHA512 8e091c770f1f8521ad7a2bfe6c88a4032b088b5cc47220790ea794bc3f8bf6e6a56776e30708d27f17da5ae57b35b0dbdf694822fb63313f4818a62326626d40
24
25 diff --git a/dev-python/pyfuse3/metadata.xml b/dev-python/pyfuse3/metadata.xml
26 new file mode 100644
27 index 000000000000..0cb24f5bf954
28 --- /dev/null
29 +++ b/dev-python/pyfuse3/metadata.xml
30 @@ -0,0 +1,13 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>slashbeast@g.o</email>
36 + <name>Piotr Karbowski</name>
37 + </maintainer>
38 + <stabilize-allarches/>
39 + <upstream>
40 + <remote-id type="github">libfuse/pyfuse3</remote-id>
41 + <remote-id type="pypi">pyfuse3</remote-id>
42 + </upstream>
43 +</pkgmetadata>
44
45 diff --git a/dev-python/pyfuse3/pyfuse3-3.1.1.ebuild b/dev-python/pyfuse3/pyfuse3-3.1.1.ebuild
46 new file mode 100644
47 index 000000000000..ae3a573f428a
48 --- /dev/null
49 +++ b/dev-python/pyfuse3/pyfuse3-3.1.1.ebuild
50 @@ -0,0 +1,32 @@
51 +# Copyright 1999-2022 Gentoo Authors
52 +# Distributed under the terms of the GNU General Public License v2
53 +
54 +EAPI=8
55 +
56 +PYTHON_COMPAT=( python3_{8..10} )
57 +inherit distutils-r1
58 +
59 +DESCRIPTION="Python 3 bindings for libfuse 3 with asynchronous API"
60 +HOMEPAGE="https://github.com/libfuse/pyfuse3"
61 +SRC_URI="https://github.com/libfuse/${PN}/releases/download/release-${PV}/${P}.tar.gz -> ${P}.tar.gz"
62 +
63 +LICENSE="LGPL-2"
64 +SLOT="0"
65 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
66 +
67 +CDEPEND="
68 + sys-fs/fuse:3
69 +"
70 +
71 +RDEPEND="
72 + dev-python/trio[${PYTHON_USEDEP}]
73 + ${CDEPEND}
74 +"
75 +
76 +DEPEND="${CDEPEND}"
77 +
78 +BDEPEND="test? (
79 + dev-python/pytest-trio[${PYTHON_USEDEP}]
80 +)"
81 +
82 +distutils_enable_tests pytest