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 486A3138330 for ; Sat, 17 Sep 2016 16:40:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E05BE0AA8; Sat, 17 Sep 2016 16:40:26 +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 C1C00E0AA8 for ; Sat, 17 Sep 2016 16:40:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 84E6A340B1F for ; Sat, 17 Sep 2016 16:40:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC6062488 for ; Sat, 17 Sep 2016 16:40:22 +0000 (UTC) From: "Nicolas Bock" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicolas Bock" Message-ID: <1474130382.3ffdeac1931b62fdbbec34ae024df9b956d512eb.nicolasbock@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/kbfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/kbfs/kbfs-9999.ebuild app-crypt/kbfs/metadata.xml X-VCS-Directories: app-crypt/kbfs/ X-VCS-Committer: nicolasbock X-VCS-Committer-Name: Nicolas Bock X-VCS-Revision: 3ffdeac1931b62fdbbec34ae024df9b956d512eb X-VCS-Branch: master Date: Sat, 17 Sep 2016 16:40:22 +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: 4e248026-4ac3-467d-a0b3-94bbc19e239b X-Archives-Hash: 6ea9e86301d3a494748919a18e760aa4 commit: 3ffdeac1931b62fdbbec34ae024df9b956d512eb Author: Nicolas Bock gentoo org> AuthorDate: Sat Sep 17 16:39:12 2016 +0000 Commit: Nicolas Bock gentoo org> CommitDate: Sat Sep 17 16:39:42 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ffdeac1 app-crypt/kbfs: New package Package-Manager: portage-2.2.28 app-crypt/kbfs/kbfs-9999.ebuild | 43 +++++++++++++++++++++++++++++++++++++++++ app-crypt/kbfs/metadata.xml | 11 +++++++++++ 2 files changed, 54 insertions(+) diff --git a/app-crypt/kbfs/kbfs-9999.ebuild b/app-crypt/kbfs/kbfs-9999.ebuild new file mode 100644 index 00000000..fb221bd --- /dev/null +++ b/app-crypt/kbfs/kbfs-9999.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit git-r3 + +DESCRIPTION="Keybase Filesystem (KBFS)" +HOMEPAGE="https://keybase.io/docs/kbfs" +EGIT_REPO_URI="https://github.com/keybase/kbfs.git" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="" +IUSE="" + +DEPEND=" + >=dev-lang/go-1.6:0 + >=app-crypt/keybase-1.0.17 + " +RDEPEND=" + app-crypt/gnupg" + +S="${WORKDIR}/src/github.com/keybase/kbfs" + +src_unpack() { + git-r3_src_unpack + mkdir -p "$(dirname "${S}")" || die + ln -s "${WORKDIR}/${P}" "${S}" || die +} + +src_compile() { + GOPATH="${WORKDIR}" \ + go build -v -x \ + -tags production \ + -o "${T}/kbfsfuse" \ + github.com/keybase/kbfs/kbfsfuse +} + +src_install() { + dobin "${T}/kbfsfuse" +} diff --git a/app-crypt/kbfs/metadata.xml b/app-crypt/kbfs/metadata.xml new file mode 100644 index 00000000..b925088 --- /dev/null +++ b/app-crypt/kbfs/metadata.xml @@ -0,0 +1,11 @@ + + + + + nicolasbock@gentoo.org + + + The official Keybase implementation of the client-side code for the + Keybase filesystem (KBFS). + +