svn commit: r454869 - in head/security: . kbfs
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Sat Nov 25 03:05:49 UTC 2017
Author: sunpoet
Date: Sat Nov 25 03:05:46 2017
New Revision: 454869
URL: https://svnweb.freebsd.org/changeset/ports/454869
Log:
Add kbfs 1.0.36
kbfs is the official Keybase implementation of the client-side code for the
Keybase filesystem (KBFS).
This client allows you to mount KBFS as a proper filesystem at some mountpoint
on your local device (by default, /keybase/). It communicates locally with the
Keybase service, and remotely with three types of KBFS servers (block servers,
metadata servers, and key servers).
WWW: https://keybase.io/docs/kbfs
WWW: https://github.com/keybase/kbfs
Added:
head/security/kbfs/
head/security/kbfs/Makefile (contents, props changed)
head/security/kbfs/distinfo (contents, props changed)
head/security/kbfs/pkg-descr (contents, props changed)
Modified:
head/security/Makefile
Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile Sat Nov 25 03:01:43 2017 (r454868)
+++ head/security/Makefile Sat Nov 25 03:05:46 2017 (r454869)
@@ -289,6 +289,7 @@
SUBDIR += isnprober
SUBDIR += jbrofuzz
SUBDIR += john
+ SUBDIR += kbfs
SUBDIR += kc
SUBDIR += kdbx-viewer
SUBDIR += kedpm
Added: head/security/kbfs/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/kbfs/Makefile Sat Nov 25 03:05:46 2017 (r454869)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME= kbfs
+PORTVERSION= 1.0.36
+DISTVERSIONPREFIX= v
+CATEGORIES= security
+
+MAINTAINER= sunpoet at FreeBSD.org
+COMMENT= Keybase Filesystem (KBFS)
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT}
+GO_TARGET= -tags production ${GO_PKGNAME}/kbfsfuse ${GO_PKGNAME}/kbfstool
+USES= go
+
+PLIST_FILES= bin/kbfsfuse bin/kbfstool
+
+GH_ACCOUNT= keybase
+USE_GITHUB= yes
+
+.include <bsd.port.mk>
Added: head/security/kbfs/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/kbfs/distinfo Sat Nov 25 03:05:46 2017 (r454869)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1511466894
+SHA256 (keybase-kbfs-v1.0.36_GH0.tar.gz) = 73cf16d1cb3fd17ff5d13dad3d4517f7f813d8adc4525b0f6c39dac9b5184bf8
+SIZE (keybase-kbfs-v1.0.36_GH0.tar.gz) = 5135197
Added: head/security/kbfs/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/kbfs/pkg-descr Sat Nov 25 03:05:46 2017 (r454869)
@@ -0,0 +1,10 @@
+kbfs is the official Keybase implementation of the client-side code for the
+Keybase filesystem (KBFS).
+
+This client allows you to mount KBFS as a proper filesystem at some mountpoint
+on your local device (by default, /keybase/). It communicates locally with the
+Keybase service, and remotely with three types of KBFS servers (block servers,
+metadata servers, and key servers).
+
+WWW: https://keybase.io/docs/kbfs
+WWW: https://github.com/keybase/kbfs
More information about the svn-ports-head
mailing list