From: "Nicolas Bock" <nicolasbock@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/kbfs/
Date: Wed, 8 Aug 2018 11:01:32 +0000 (UTC) [thread overview]
Message-ID: <1533726055.584e53977b65105bd0c2050daa5a4b98bf6af41a.nicolasbock@gentoo> (raw)
commit: 584e53977b65105bd0c2050daa5a4b98bf6af41a
Author: Nicolas Bock <nicolasbock <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 8 06:42:05 2018 +0000
Commit: Nicolas Bock <nicolasbock <AT> gentoo <DOT> org>
CommitDate: Wed Aug 8 11:00:55 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=584e5397
app-crypt/kbfs: Version bump to kbfs-2.5.0
Package-Manager: Portage-2.3.40, Repoman-2.3.9
app-crypt/kbfs/Manifest | 1 +
app-crypt/kbfs/kbfs-2.5.0.ebuild | 51 ++++++++++++++++++++++++++++++++++++++++
2 files changed, 52 insertions(+)
diff --git a/app-crypt/kbfs/Manifest b/app-crypt/kbfs/Manifest
index da30f491a32..130ef15911d 100644
--- a/app-crypt/kbfs/Manifest
+++ b/app-crypt/kbfs/Manifest
@@ -5,3 +5,4 @@ DIST kbfs-1.0.48.tar.gz 5639704 BLAKE2B 4d8152c8bf1a72b0493840c6ffa0da35ba6abcb6
DIST kbfs-2.0.0.tar.gz 5674786 BLAKE2B 65924644babbaf95867792da6a9c1f5c9c517bbe36292c3b5e40afaeb2879b1145d0b6017f3b66e6bc2ec4b858a312ab1d86ff1d8515f99c9004eeb1acaf8caa SHA512 6e51490b52cc5484d940ee057dc9b453a88d44622b1c533dd29e75eed5fa075f33d9cb6ac438401d80aa148d7561c1bc63deece5e75cdc30bb54102f2d00215b
DIST kbfs-2.1.0.tar.gz 5703221 BLAKE2B 55daa1d8f1efe4a0264477b54c1ea8db74e972b1ecdd536f4ab8042e66117c6854889aeb203fa6fea6f757e928af514520be3732ee07ccc1289ccc9f5d3f27a8 SHA512 04dd058e97c85d5188cc61a56cc4a4468ec1d4d6b2f65cbe0edb88cec2864cef3525e6f48729761a2cc6fa79559794e5a3fd9663cb31dcaaaeff90a32f2a211a
DIST kbfs-2.3.0.tar.gz 5718571 BLAKE2B 300106465081e91bdd1a74631eff12bdf82a3042ce6c3f532c0b61016291769a8e0f87af0cbc0b34b3d3c95ec054580654e8152bf97a56c0dfe3641b88483d79 SHA512 c7521f9664ec78fc8fd1a6d9f3e86f4680260ed507223c2a6a2694ff686984bfc615ac454da10ff7b01247866ad65a5e719e3fb8db5f0c3044e019ab7a82356f
+DIST kbfs-2.5.0.tar.gz 5788528 BLAKE2B 986d0411bb33dbef781c101beca3b90827f06e4c714795424b6f4fbe2abf628a4cce67699f434e872f7886816213e1cb2467d45ea4e06157ca1f23b433284457 SHA512 a12f3491c3d7dd42b78d24957f3b469837a8e6d682e91dfe6020e74e24374ce95f9de31578579680ee35513637512e84849d598d34b3e8e78f96cf99ac9cd701
diff --git a/app-crypt/kbfs/kbfs-2.5.0.ebuild b/app-crypt/kbfs/kbfs-2.5.0.ebuild
new file mode 100644
index 00000000000..41a15fe6805
--- /dev/null
+++ b/app-crypt/kbfs/kbfs-2.5.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit golang-build systemd
+
+DESCRIPTION="Keybase Filesystem (KBFS)"
+HOMEPAGE="https://keybase.io/docs/kbfs"
+SRC_URI="https://github.com/keybase/kbfs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="
+ app-crypt/gnupg
+ sys-fs/fuse
+ "
+
+src_unpack() {
+ unpack "${P}.tar.gz"
+ mkdir -vp "${S}/src/github.com/keybase" || die
+ ln -vs "${S}" "${S}/src/github.com/keybase/kbfs" || die
+}
+
+src_compile() {
+ EGO_PN="github.com/keybase/kbfs/kbfsfuse" \
+ EGO_BUILD_FLAGS="-tags production -o ${T}/kbfsfuse" \
+ golang-build_src_compile
+ EGO_PN="github.com/keybase/kbfs/kbfsgit/git-remote-keybase" \
+ EGO_BUILD_FLAGS="-tags production -o ${T}/git-remote-keybase" \
+ golang-build_src_compile
+ EGO_PN="github.com/keybase/kbfs/redirector" \
+ EGO_BUILD_FLAGS="-tags production -o ${T}/keybase-redirector" \
+ golang-build_src_compile
+}
+
+src_test() {
+ EGO_PN="github.com/keybase/kbfs/kbfsfuse" \
+ golang-build_src_test
+}
+
+src_install() {
+ dobin "${T}/kbfsfuse"
+ dobin "${T}/git-remote-keybase"
+ dobin "${T}/keybase-redirector"
+ systemd_douserunit "${S}/packaging/linux/systemd/kbfs.service"
+}
next reply other threads:[~2018-08-09 2:11 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-08 11:01 Nicolas Bock [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-02-18 22:09 [gentoo-commits] repo/gentoo:master commit in: app-crypt/kbfs/ Nicolas Bock
2023-02-18 21:58 Nicolas Bock
2022-07-26 19:27 David Seifert
2019-10-09 12:10 Nicolas Bock
2018-12-18 14:05 Nicolas Bock
2018-12-04 12:46 Nicolas Bock
2018-11-24 15:16 Nicolas Bock
2018-10-31 10:22 Nicolas Bock
2018-09-26 11:41 Nicolas Bock
2018-09-06 19:41 Nicolas Bock
2018-08-20 11:22 Nicolas Bock
2018-08-08 11:01 Nicolas Bock
2018-07-25 15:16 Nicolas Bock
2018-06-21 9:02 Nicolas Bock
2018-06-21 9:02 Nicolas Bock
2018-06-18 4:30 Nicolas Bock
2018-06-13 9:53 Nicolas Bock
2018-06-12 11:26 Nicolas Bock
2018-06-12 11:26 Nicolas Bock
2018-06-09 7:41 Nicolas Bock
2018-02-26 13:42 Nicolas Bock
2018-02-21 20:03 Nicolas Bock
2018-02-20 21:50 Nicolas Bock
2017-12-28 12:15 Nicolas Bock
2017-12-27 14:40 Nicolas Bock
2017-12-27 14:38 Nicolas Bock
2017-10-23 12:27 Nicolas Bock
2016-09-21 6:27 Patrick Lauer
2016-09-17 21:22 Nicolas Bock
2016-09-17 16:40 Nicolas Bock
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1533726055.584e53977b65105bd0c2050daa5a4b98bf6af41a.nicolasbock@gentoo \
--to=nicolasbock@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox