public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
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, 14 Feb 2018 12:40:06 +0000 (UTC)	[thread overview]
Message-ID: <1518611985.cea5c2624bb89bf5a89f32d9cd6549e0ce6d0f21.nicolasbock@gentoo> (raw)

commit:     cea5c2624bb89bf5a89f32d9cd6549e0ce6d0f21
Author:     Nicolas Bock <nicolasbock <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 14 12:33:35 2018 +0000
Commit:     Nicolas Bock <nicolasbock <AT> gentoo <DOT> org>
CommitDate: Wed Feb 14 12:39:45 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cea5c262

app-crypt/keybase: Bump to 1.0.41

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-crypt/keybase/Manifest              |  1 +
 app-crypt/keybase/keybase-1.0.41.ebuild | 48 +++++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/app-crypt/keybase/Manifest b/app-crypt/keybase/Manifest
index 28a4730a9ce..c17e1a6895c 100644
--- a/app-crypt/keybase/Manifest
+++ b/app-crypt/keybase/Manifest
@@ -2,3 +2,4 @@ DIST keybase-1.0.21.tar.gz 21127410 BLAKE2B 9f48b637aefa847ae5737937ed6bc3d9b7d2
 DIST keybase-1.0.33.tar.gz 29170354 BLAKE2B 78799ea49cde32e3c1be781e281b5ca188f7a5d846fcb7e41605d6e2526bc4e36f6ef991567631e9c72eeb6b194ebec740516e886f4af419b01e47622f030c42 SHA512 d02933e88613102e27a4aa5f2494ae2b55456cab8c5cadad9c412069b24c574a20609fc83b88bc8f9aa00bfd300822bc4c882392f65fec3e7a8056cebc6fb9d4
 DIST keybase-1.0.36.tar.gz 30043919 BLAKE2B 0053088754b0a4a47314032e87a7c5165aff59ded585ae20fb12c3dbf0c7437f7f0370f236fec0db501cacb3a75e87ed494df8f688d360c58904e851eb119f60 SHA512 c6bd4805240bdafd27eac382a30fac6e5ac3e6eb313dda027533c3a8f366077c894b38c1b972ff5688104e1ca4231cbf4242eeb168de9782bbac732da5639ed0
 DIST keybase-1.0.39.tar.gz 30226025 BLAKE2B 5d10e4afe3f0f1691221cbf69ff3e427fe318768e74f5891d32416e92ad5c1c45ad3ff0c83ea2d2405f4492a2d2af989ff587c60c9a5677ae580c9502e9a5726 SHA512 def416bad6fc3513a3341aecaf03bce356a890667e4c64f9edc1c469b3a1f167c3022f6c1aabaa48257983aaa9826b45117ada6cc26bf862c97092c904cd32f1
+DIST keybase-1.0.41.tar.gz 31643095 BLAKE2B 72fe94c8996b0dfad3d75f487545d5cb96ffa09c46276104171f103f2fcbb29199013ad8075fdddf3655f63f55cbd2f0d0768b5f0e697b7339262736d9c29ca5 SHA512 1382f008089d8704167842960aec9e4007ac32db589bad45944428ad92ac90b1802338ff6ccc0c570d40b9c9115170a2e15c590f875cdc8261d203c01402385c

diff --git a/app-crypt/keybase/keybase-1.0.41.ebuild b/app-crypt/keybase/keybase-1.0.41.ebuild
new file mode 100644
index 00000000000..581d0d13e24
--- /dev/null
+++ b/app-crypt/keybase/keybase-1.0.41.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils versionator
+
+MY_PV=$(replace_version_separator 3 '-')
+
+DESCRIPTION="Client for keybase.io"
+HOMEPAGE="https://keybase.io/"
+SRC_URI="https://github.com/keybase/client/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+	>=dev-lang/go-1.6:0"
+RDEPEND="
+	app-crypt/gnupg"
+
+S="${WORKDIR}/src/github.com/keybase/client"
+
+src_unpack() {
+	unpack "${P}.tar.gz"
+	mkdir -p "$(dirname "${S}")" || die
+	mv "client-${MY_PV}" "${S}" || die
+}
+
+src_compile() {
+	GOPATH="${WORKDIR}:${S}/go/vendor" \
+		go build -v -x \
+		-tags production \
+		-o "${T}/keybase" \
+		github.com/keybase/client/go/keybase || die
+}
+
+src_install() {
+	dobin "${T}/keybase"
+	dobin "${S}/packaging/linux/run_keybase"
+}
+
+pkg_postinst() {
+	elog "Run the service: keybase service"
+	elog "Run the client:  keybase login"
+}


             reply	other threads:[~2018-02-14 15:45 UTC|newest]

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-14 12:40 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-08-08 11:01 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
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=1518611985.cea5c2624bb89bf5a89f32d9cd6549e0ce6d0f21.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