Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/fuse-common/
Date: Fri, 06 Apr 2018 13:33:04
Message-Id: 1523021468.6b05aa908b664945cba2b0c0bad6fb0205890a76.radhermit@gentoo
1 commit: 6b05aa908b664945cba2b0c0bad6fb0205890a76
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 6 13:27:44 2018 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 6 13:31:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b05aa90
7
8 sys-fs/fuse-common: version bump to 3.2.2
9
10 sys-fs/fuse-common/Manifest | 1 +
11 sys-fs/fuse-common/fuse-common-3.2.2.ebuild | 47 +++++++++++++++++++++++++++++
12 2 files changed, 48 insertions(+)
13
14 diff --git a/sys-fs/fuse-common/Manifest b/sys-fs/fuse-common/Manifest
15 index 4e932706581..02f084e433b 100644
16 --- a/sys-fs/fuse-common/Manifest
17 +++ b/sys-fs/fuse-common/Manifest
18 @@ -1 +1,2 @@
19 DIST fuse-3.2.1.tar.xz 1042772 BLAKE2B fe7dccc3b791a3b549815f5015a993c29d9481742a88b0291a03b39b95c0acb709969bdc0f6fbea5a48d0bb97bc362ad351b719d77a4f9f630825308f3fb1913 SHA512 edf08711fa02c40b9d3507c99e0b1bfd7208edc1494888c4e2bad92b621eb5c43c4cb31474d2d3bb1edaaf9cd876f3407cdb00a1bdcf61a0b74c876d3707518e
20 +DIST fuse-3.2.2.tar.xz 1187816 BLAKE2B 4cda342ded747a92f31417c32006e202398555d2112134f403addd1f2ef896ed46e1082a13437e657795ae93b67fb2692746b759b9efb3bd8c70857623ca1af6 SHA512 234256ed8e9e277557775d34b0aa77f3b0a3c40a715e52db1437f2ffd2a7d8eda2e12ef35963a918b3310f7244bba9b3755003a25b98ea6d29b6d4b322cddec7
21
22 diff --git a/sys-fs/fuse-common/fuse-common-3.2.2.ebuild b/sys-fs/fuse-common/fuse-common-3.2.2.ebuild
23 new file mode 100644
24 index 00000000000..574c6ffdefa
25 --- /dev/null
26 +++ b/sys-fs/fuse-common/fuse-common-3.2.2.ebuild
27 @@ -0,0 +1,47 @@
28 +# Copyright 1999-2018 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=6
32 +
33 +inherit meson udev flag-o-matic
34 +
35 +DESCRIPTION="Common files for multiple slots of sys-fs/fuse"
36 +HOMEPAGE="https://github.com/libfuse/libfuse"
37 +SRC_URI="https://github.com/libfuse/libfuse/releases/download/fuse-${PV}/fuse-${PV}.tar.xz"
38 +
39 +LICENSE="GPL-2 LGPL-2.1"
40 +SLOT="0"
41 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
42 +
43 +DEPEND="virtual/pkgconfig"
44 +RDEPEND="!<sys-fs/fuse-2.9.7-r1:0"
45 +
46 +S=${WORKDIR}/fuse-${PV}
47 +
48 +# tests run in sys-fs/fuse
49 +RESTRICT="test"
50 +
51 +src_prepare() {
52 + default
53 +
54 + # lto not supported yet -- https://github.com/libfuse/libfuse/issues/198
55 + filter-flags -flto*
56 +}
57 +
58 +src_install() {
59 + newsbin "${BUILD_DIR}"/util/mount.fuse3 mount.fuse
60 + doman doc/mount.fuse.8
61 +
62 + udev_newrules util/udev.rules 99-fuse.rules
63 +
64 + if use kernel_linux ; then
65 + newinitd "${FILESDIR}"/fuse.init fuse
66 + elif use kernel_FreeBSD ; then
67 + newinitd "${FILESDIR}"/fuse-fbsd.init fuse
68 + else
69 + die "We don't know what init code install for your kernel, please file a bug."
70 + fi
71 +
72 + insinto /etc
73 + doins util/fuse.conf
74 +}