diff options
author | Nicolas Bock <nicolasbock@gentoo.org> | 2016-09-17 05:48:31 -0600 |
---|---|---|
committer | Nicolas Bock <nicolasbock@gentoo.org> | 2016-09-17 10:39:40 -0600 |
commit | 5aa4a4b7a5a96bed58324aaa0577cc7eede2d0c0 (patch) | |
tree | 73f62ee7055b8cdc2ed9bfffe98dd223dbcd9484 | |
parent | app-text/cherrytree: python[sqlite] needed (#592626 by Drew) (diff) | |
download | gentoo-5aa4a4b7a5a96bed58324aaa0577cc7eede2d0c0.tar.gz gentoo-5aa4a4b7a5a96bed58324aaa0577cc7eede2d0c0.tar.bz2 gentoo-5aa4a4b7a5a96bed58324aaa0577cc7eede2d0c0.zip |
app-crypt/keybase: Bump EAPI to 6
Package-Manager: portage-2.2.28
-rw-r--r-- | app-crypt/keybase/keybase-1.0.17-r1.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
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 000000000000..8bb3ea29e185 --- /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" +} |