From owner-svn-ports-head@freebsd.org Sat Nov 25 03:05:49 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32FB2DFB805; Sat, 25 Nov 2017 03:05:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8997870128; Sat, 25 Nov 2017 03:05:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAP35l3d075760; Sat, 25 Nov 2017 03:05:47 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAP35lV7075756; Sat, 25 Nov 2017 03:05:47 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201711250305.vAP35lV7075756@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 25 Nov 2017 03:05:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454869 - in head/security: . kbfs X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/security: . kbfs X-SVN-Commit-Revision: 454869 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Nov 2017 03:05:49 -0000 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@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 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