From: "Nicolas Bock" <nicolasbock@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/keybase/
Date: Wed, 8 Aug 2018 11:01:32 +0000 (UTC) [thread overview]
Message-ID: <1533726055.09b370c59604ef9733b4a08c12ebb7499be1e093.nicolasbock@gentoo> (raw)
commit: 09b370c59604ef9733b4a08c12ebb7499be1e093
Author: Nicolas Bock <nicolasbock <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 8 11:00:41 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=09b370c5
app-crypt/keybase: Version bump to keybase-2.5.0
Package-Manager: Portage-2.3.40, Repoman-2.3.9
app-crypt/keybase/Manifest | 1 +
app-crypt/keybase/keybase-2.5.0.ebuild | 54 ++++++++++++++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/app-crypt/keybase/Manifest b/app-crypt/keybase/Manifest
index 395ff785e1b..7d830a36bea 100644
--- a/app-crypt/keybase/Manifest
+++ b/app-crypt/keybase/Manifest
@@ -4,3 +4,4 @@ DIST keybase-1.0.48.tar.gz 34026876 BLAKE2B c620a664b47f66932d1b49c22509aac73a6c
DIST keybase-2.0.0.tar.gz 34340958 BLAKE2B fa9bcf2285a987131e00a5bc8b06ad09fa86f3bf3de87cc4e48669131fcf93e2c515435fc1e9d6663455d16744889131d09b5957fa5f78f9d3ecc91d10667bc1 SHA512 d7b91c9a0ef69442501956ba3a09f40490adf76ef38bf945617793a8238daee68f3fc2be7a5d2118531c2364f5604016ec241226a22bd217dbab3dafbf77fd25
DIST keybase-2.1.0.tar.gz 34444571 BLAKE2B 834f1001b136461c5665f12530d660e619d93c8b4e4b5f0c96da94af23f0667c778d7ddabc65d0585ac472cd91f89240bc4260b2034bf20c26b4047839570299 SHA512 0d71a22b5f56442fdc03848f831487da097dc817bfcacfb5a8eea1a9a13e87d231619216b6bab61862de71289373977c4c8d345518152137c8804005bf20e3e4
DIST keybase-2.3.0.tar.gz 34524576 BLAKE2B 5793892b6bcfeafbaebb4a38d35e77d9267a74243da61ecbb7472026b3c500cc6f6cc49dbbec2add65cecae2ce209bb24bc03f2eb393307b82958afeb8824537 SHA512 f2b92ec21fd8cfa182aac7655b836415b902c599f9e3a08a3f84d35c3f3728027a8eef8a06fb8ed4ba77b9a66888f49fd89013304f948c0f0276705f16ca4396
+DIST keybase-2.5.0.tar.gz 35012800 BLAKE2B 46cba22bafbfcf519e658a05db349f047a622f30d6ec03d5e8b3c637e7d3351188c65b0725853c4c62da30ea1d4388d19c9a430a9c4d06b14712daca05c468d2 SHA512 05313c4373ffc8fc41097fabfd13fdbf4d0af789257bbbc4a9ff0500ab3ca9c9d5d50ab62bc38b7328aad3cbf631aa55fcd1a74b5dc73f3d31e76851733d7d5f
diff --git a/app-crypt/keybase/keybase-2.5.0.ebuild b/app-crypt/keybase/keybase-2.5.0.ebuild
new file mode 100644
index 00000000000..af077ef41e5
--- /dev/null
+++ b/app-crypt/keybase/keybase-2.5.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit golang-build systemd
+
+DESCRIPTION="Client for keybase.io"
+HOMEPAGE="https://keybase.io/"
+SRC_URI="https://github.com/keybase/client/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+ ~app-crypt/kbfs-${PV}"
+RDEPEND="
+ app-crypt/gnupg"
+
+src_unpack() {
+ unpack "${P}.tar.gz"
+ ln -vs "client-${PV}" "${P}" || die
+ mkdir -vp "${S}/src/github.com/keybase" || die
+ ln -vs "${S}" "${S}/src/github.com/keybase/client" || die
+}
+
+src_compile() {
+ EGO_PN="github.com/keybase/client/go/keybase" \
+ EGO_BUILD_FLAGS="-tags production -o ${T}/keybase" \
+ golang-build_src_compile
+}
+
+src_test() {
+ EGO_PN="github.com/keybase/client/go/keybase" \
+ golang-build_src_test
+}
+
+src_install() {
+ dobin "${T}/keybase"
+ dobin "${S}/packaging/linux/run_keybase"
+ systemd_douserunit "${S}/packaging/linux/systemd/keybase.service"
+ dodir "/opt/keybase"
+ insinto "/opt/keybase"
+ doins "${S}/packaging/linux/crypto_squirrel.txt"
+}
+
+pkg_postinst() {
+ elog "Start/Restart keybase: run_keybase"
+ elog "Run the service: keybase service"
+ elog "Run the client: keybase login"
+ ewarn "Note that the user keybasehelper is obsolete and can be removed"
+}
next reply other threads:[~2018-08-09 2:10 UTC|newest]
Thread overview: 68+ 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 --
2024-01-12 19:13 [gentoo-commits] repo/gentoo:master commit in: app-crypt/keybase/ Nicolas Bock
2024-01-10 18:44 Nicolas Bock
2023-03-22 3:48 Nicolas Bock
2023-02-21 22:04 Nicolas Bock
2023-02-20 18:11 Nicolas Bock
2022-07-23 15:34 David Seifert
2020-01-17 19:06 Nicolas Bock
2019-11-11 12:44 Nicolas Bock
2019-10-21 19:31 Nicolas Bock
2019-10-21 19:30 Nicolas Bock
2019-09-25 15:56 Nicolas Bock
2019-09-25 13:03 Nicolas Bock
2019-09-18 2:26 Nicolas Bock
2019-09-18 2:25 Nicolas Bock
2019-09-16 22:50 Nicolas Bock
2019-02-06 12:49 Nicolas Bock
2019-02-06 11:52 Nicolas Bock
2019-01-16 15:59 Nicolas Bock
2018-12-18 14:05 Nicolas Bock
2018-12-04 12:46 Nicolas Bock
2018-11-24 15:16 Nicolas Bock
2018-11-05 14:45 Nicolas Bock
2018-10-31 10:22 Nicolas Bock
2018-10-08 20:29 Nicolas Bock
2018-09-26 11:41 Nicolas Bock
2018-09-06 19:41 Nicolas Bock
2018-08-20 11:22 Nicolas Bock
2018-07-25 15:16 Nicolas Bock
2018-06-21 9:02 Nicolas Bock
2018-06-18 4:30 Nicolas Bock
2018-06-12 11:48 Nicolas Bock
2018-06-12 11:26 Nicolas Bock
2018-06-12 11:26 Nicolas Bock
2018-06-09 7:41 Nicolas Bock
2018-06-08 16:28 Nicolas Bock
2018-02-26 13:44 Nicolas Bock
2018-02-23 22:07 Nicolas Bock
2018-02-23 22:01 Nicolas Bock
2018-02-21 20:03 Nicolas Bock
2018-02-20 21:50 Nicolas Bock
2018-02-20 21:50 Nicolas Bock
2018-02-20 21:50 Nicolas Bock
2018-02-14 12:40 Nicolas Bock
2018-02-14 12:40 Nicolas Bock
2017-11-28 14:02 Nicolas Bock
2017-10-31 14:26 Nicolas Bock
2017-10-31 14:25 Nicolas Bock
2017-07-24 14:45 Nicolas Bock
2017-07-24 14:29 Nicolas Bock
2017-03-13 12:06 Nicolas Bock
2016-11-08 16:36 Nicolas Bock
2016-09-17 16:40 Nicolas Bock
2016-08-15 7:44 Nicolas Bock
2016-08-15 7:44 Nicolas Bock
2016-06-14 14:55 Nicolas Bock
2016-04-14 6:21 Nicolas Bock
2016-02-21 13:39 Nicolas Bock
2016-01-29 5:32 Nicolas Bock
2016-01-23 16:59 Agostino Sarubbo
2016-01-19 17:27 Nicolas Bock
2015-12-02 13:07 Nicolas Bock
2015-11-25 5:47 Nicolas Bock
2015-11-09 10:31 Agostino Sarubbo
2015-11-04 17:30 Nicolas Bock
2015-10-11 13:04 Nicolas Bock
2015-10-11 12:59 Nicolas Bock
2015-08-19 11:31 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.09b370c59604ef9733b4a08c12ebb7499be1e093.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