From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F0695139694 for ; Wed, 19 Apr 2017 03:41:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8B50E0CD8; Wed, 19 Apr 2017 03:41:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B1DFFE0CD8 for ; Wed, 19 Apr 2017 03:41:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 818E1341649 for ; Wed, 19 Apr 2017 03:41:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A36E87437 for ; Wed, 19 Apr 2017 03:41:34 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1492573267.a639c65d79039dcf6d160ca5c8428d6e2e95e2eb.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/sshfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-fs/sshfs/Manifest net-fs/sshfs/sshfs-2.9.ebuild X-VCS-Directories: net-fs/sshfs/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: a639c65d79039dcf6d160ca5c8428d6e2e95e2eb X-VCS-Branch: master Date: Wed, 19 Apr 2017 03:41:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f11d899b-82e1-4999-8e70-d2fafa9355cb X-Archives-Hash: 560e7dd086367eed7f8800c5fd1f5790 commit: a639c65d79039dcf6d160ca5c8428d6e2e95e2eb Author: Tim Harder gentoo org> AuthorDate: Wed Apr 19 03:41:07 2017 +0000 Commit: Tim Harder gentoo org> CommitDate: Wed Apr 19 03:41:07 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a639c65d net-fs/sshfs: version bump to 2.9 net-fs/sshfs/Manifest | 1 + net-fs/sshfs/sshfs-2.9.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/net-fs/sshfs/Manifest b/net-fs/sshfs/Manifest index 081f46656c9..827b3902904 100644 --- a/net-fs/sshfs/Manifest +++ b/net-fs/sshfs/Manifest @@ -1 +1,2 @@ DIST sshfs-2.8.tar.gz 153230 SHA256 7f689174d02e6b7e2631306fda4fb8e6b4483102d1bce82b3cdafba33369ad22 SHA512 a3c6a75137a4410a0c4e049ffdb6e219319add9673de32cf32a74c12ff4bb80f92a6e75088417a180a4dd01957deec39bd780a02140e8b0348f5868c92d67cfd WHIRLPOOL b48b6586e85292079dd51505c3c11b4c8b563a6e858362d8863239672e1446e06bef8c6c3dbfc70756e452672e8416980024b557a3923dbf5ffeef62911b2c65 +DIST sshfs-2.9.tar.gz 154423 SHA256 46d1e1287ce97255fcb50010355184d8c5585329f73ab1e755217419a8e6e5de SHA512 e7ddd4ed116287d5b6e67caaf87f7dedaec8c370c9641749c6b0adf493ff4e9b1e79a68c0abe8f081a4bd68d6706a770c384a1abfbe22aba494af3e6fb792a42 WHIRLPOOL e7f93fe85746ead60ab4301716f57a04f72c7eab756c86d031475c7d5adeebd2e90331e229deaaf64818a843ea09cef22c89c5df19dc1efbc85ec0224e35def9 diff --git a/net-fs/sshfs/sshfs-2.9.ebuild b/net-fs/sshfs/sshfs-2.9.ebuild new file mode 100644 index 00000000000..1b02e48401b --- /dev/null +++ b/net-fs/sshfs/sshfs-2.9.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Fuse-filesystem utilizing the sftp service" +HOMEPAGE="https://github.com/libfuse/sshfs" +SRC_URI="https://github.com/libfuse/${PN}/releases/download/${P}/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" +SLOT="0" + +CDEPEND=">=sys-fs/fuse-2.6.0_pre3 + >=dev-libs/glib-2.4.2" +RDEPEND="${CDEPEND} + >=net-misc/openssh-4.4" +DEPEND="${CDEPEND} + virtual/pkgconfig" + +DOCS=( ChangeLog AUTHORS )