dev-go/godep: add live ebuild
authorWilliam Hubbs <williamh@gentoo.org>
Mon, 30 Nov 2015 17:39:25 +0000 (11:39 -0600)
committerWilliam Hubbs <williamh@gentoo.org>
Mon, 30 Nov 2015 17:40:16 +0000 (11:40 -0600)
dev-go/godep/godep-9999.ebuild [new file with mode: 0644]

diff --git a/dev-go/godep/godep-9999.ebuild b/dev-go/godep/godep-9999.ebuild
new file mode 100644 (file)
index 0000000..6f0bf64
--- /dev/null
@@ -0,0 +1,29 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+EGO_PN=github.com/tools/godep
+
+if [[ ${PV} = *9999* ]]; then
+       inherit golang-vcs
+else
+       KEYWORDS="~amd64"
+       EGIT_COMMIT=v${PV}
+       SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+       inherit golang-vcs-snapshot
+fi
+inherit golang-build
+
+DESCRIPTION="dependency tool for go"
+HOMEPAGE="https://github.com/tools/godep"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+DEPEND=""
+RDEPEND=""
+
+src_install() {
+       dobin godep
+dodoc src/${EGO_PN}/*.md
+}