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/llfuse/
Date: Mon, 01 Feb 2021 08:50:58
Message-Id: 1612169446.c4aeba604387bbd7a73a8dd37367dd7a8bb286dc.mgorny@gentoo
1 commit: c4aeba604387bbd7a73a8dd37367dd7a8bb286dc
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 1 08:24:54 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 1 08:50:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4aeba60
7
8 dev-python/llfuse: Bump to 1.4.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/llfuse/Manifest | 1 +
13 dev-python/llfuse/llfuse-1.4.1.ebuild | 39 +++++++++++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/dev-python/llfuse/Manifest b/dev-python/llfuse/Manifest
17 index 10b53ddefdf..83ada0a50e0 100644
18 --- a/dev-python/llfuse/Manifest
19 +++ b/dev-python/llfuse/Manifest
20 @@ -1,2 +1,3 @@
21 DIST llfuse-1.3.6.tar.bz2 361750 BLAKE2B 74387a6aeb28c3f49234a4f430c3f2aaeefa2057d69e681405d9588c63b3a6e4a6daa58b8996541825c73ff4dabc5607874c2d7885586d793a6436e3f680aec2 SHA512 d67e39daf65c92ebb5bf69abb0c5dc3a88460228b5ec5ee762a11fc909369562411297e8ff9f512ee1ef539d8abec765924be581703fb7e99963c6512cb1f0bd
22 DIST llfuse-1.4.0.tar.gz 478758 BLAKE2B bec4d6b53936bc79ab4ca8fce7b34d60e39aff6128a186d58caeac68ad135d7d29bbd667cf669e065256e31e257ff4516ff967759d6152672659df0062d03e6d SHA512 8ab92912279a478ba50cf0c151cce3ce1125de27922a97c4da4b3af4ff0714e3a2c5a9e6fd10b87653eb552509491084f018ae3ce4feb7bf952de00a5be3eccc
23 +DIST llfuse-1.4.1.tar.gz 774540 BLAKE2B f135ff3cde6effe72f5adf1b9ed58566183775ad45acbd1906db1f5c60a38ab74f0c7b6cda949b3ff2c4b46f036c91e16f9231ede1c78359c87758e6abde9ea4 SHA512 e94045018e9d78b7b16355dd499a27694a77a70d61102d05938223b99686e4b9d90b5e14745d92a187ac8e34aa593a12d99bff1baccb19d4236d54eb66ec3e4f
24
25 diff --git a/dev-python/llfuse/llfuse-1.4.1.ebuild b/dev-python/llfuse/llfuse-1.4.1.ebuild
26 new file mode 100644
27 index 00000000000..4a4e5209627
28 --- /dev/null
29 +++ b/dev-python/llfuse/llfuse-1.4.1.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=( python3_{7..9} pypy3 )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Python bindings for the low-level FUSE API"
40 +HOMEPAGE="https://github.com/python-llfuse/python-llfuse/ https://pypi.org/project/llfuse/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="LGPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
46 +IUSE="doc examples"
47 +
48 +RDEPEND="
49 + >=sys-fs/fuse-2.8.0:0
50 +"
51 +DEPEND="
52 + ${RDEPEND}
53 + sys-apps/attr
54 +"
55 +BDEPEND="
56 + virtual/pkgconfig
57 +"
58 +
59 +PATCHES=(
60 + "${FILESDIR}"/llfuse-1.3.5-cflags.patch
61 +)
62 +
63 +distutils_enable_tests pytest
64 +
65 +python_install_all() {
66 + use doc && local HTML_DOCS=( doc/html/. )
67 + use examples && dodoc -r examples
68 + distutils-r1_python_install_all
69 +}