Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/sshfs/
Date: Thu, 24 Dec 2020 04:28:36
Message-Id: 1608784048.a1e7a920cdd53a51bd419040738f3f64c5295110.radhermit@gentoo
1 commit: a1e7a920cdd53a51bd419040738f3f64c5295110
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 24 04:22:51 2020 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 24 04:27:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1e7a920
7
8 net-fs/sshfs: version bump to 3.7.1
9
10 Closes: https://bugs.gentoo.org/758965
11 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
12
13 net-fs/sshfs/Manifest | 1 +
14 net-fs/sshfs/sshfs-3.7.1.ebuild | 26 ++++++++++++++++++++++++++
15 2 files changed, 27 insertions(+)
16
17 diff --git a/net-fs/sshfs/Manifest b/net-fs/sshfs/Manifest
18 index bdb6947f93e..b92f5ff678f 100644
19 --- a/net-fs/sshfs/Manifest
20 +++ b/net-fs/sshfs/Manifest
21 @@ -1 +1,2 @@
22 DIST sshfs-3.7.0.tar.xz 52724 BLAKE2B be974475692e8f9a4d0653776b7b7dc62c6beb1a300caf62c55cbc6bb72fedcf08cdd2c65f051415df57e6e2b21e5a3cb00e8525585c40ab92b0bd0b3474ac77 SHA512 bd8bcd45dd9a5e9686c6fb442e877ffdb592ba0d3424d5dab84a955bfafb17e8666abefba6857467833f5b285842bdadd5a9b6c9e8128ac2e564c36df79aa570
23 +DIST sshfs-3.7.1.tar.xz 52988 BLAKE2B 48fd9b1483a8f4d48e3d9d25dc13c6e265ca3cb623762b2721b955db52fc05a6138cd0fef684e8893c3b380041ac30ecb3df4c5716b067f621790730fa07be08 SHA512 ee91b2eacbad5891006dbac14188ddd591e242b6092c7b7d8234503d79acb52f4b7ea9a15d5eaad83597ff4b4e700580ee2271671edfa6db762d9a8c756d45fd
24
25 diff --git a/net-fs/sshfs/sshfs-3.7.1.ebuild b/net-fs/sshfs/sshfs-3.7.1.ebuild
26 new file mode 100644
27 index 00000000000..8fbd75eb7ea
28 --- /dev/null
29 +++ b/net-fs/sshfs/sshfs-3.7.1.ebuild
30 @@ -0,0 +1,26 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit meson
37 +
38 +DESCRIPTION="Fuse-filesystem utilizing the sftp service"
39 +HOMEPAGE="https://github.com/libfuse/sshfs"
40 +SRC_URI="https://github.com/libfuse/${PN}/releases/download/${P}/${P}.tar.xz"
41 +
42 +LICENSE="GPL-2"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
44 +SLOT="0"
45 +
46 +DEPEND=">=sys-fs/fuse-3.1.0:3
47 + >=dev-libs/glib-2.4.2"
48 +RDEPEND="${DEPEND}
49 + >=net-misc/openssh-4.4"
50 +BDEPEND="dev-python/docutils
51 + virtual/pkgconfig"
52 +
53 +# requires root privs and specific localhost sshd setup
54 +RESTRICT="test"
55 +
56 +DOCS=( AUTHORS ChangeLog.rst README.rst )