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 3A5CB138330 for ; Sat, 17 Sep 2016 16:40:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 426E8E0B02; 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 D4258E0B02 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 ABF73340B7E 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 A9E822484 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: <1474130380.5aa4a4b7a5a96bed58324aaa0577cc7eede2d0c0.nicolasbock@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/keybase/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/keybase/keybase-1.0.17-r1.ebuild X-VCS-Directories: app-crypt/keybase/ X-VCS-Committer: nicolasbock X-VCS-Committer-Name: Nicolas Bock X-VCS-Revision: 5aa4a4b7a5a96bed58324aaa0577cc7eede2d0c0 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: 3cddbf43-c0bd-4325-8181-6d606ad7c947 X-Archives-Hash: 40fa0932dd5c9db307ac31e94aefafd1 commit: 5aa4a4b7a5a96bed58324aaa0577cc7eede2d0c0 Author: Nicolas Bock gentoo org> AuthorDate: Sat Sep 17 11:48:31 2016 +0000 Commit: Nicolas Bock gentoo org> CommitDate: Sat Sep 17 16:39:40 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5aa4a4b7 app-crypt/keybase: Bump EAPI to 6 Package-Manager: portage-2.2.28 app-crypt/keybase/keybase-1.0.17-r1.ebuild | 48 ++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/app-crypt/keybase/keybase-1.0.17-r1.ebuild b/app-crypt/keybase/keybase-1.0.17-r1.ebuild new file mode 100644 index 00000000..8bb3ea2 --- /dev/null +++ b/app-crypt/keybase/keybase-1.0.17-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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" +} + +pkg_postinst() { + elog "Run the service: keybase service" + elog "Run the client: keybase login" +}