summaryrefslogtreecommitdiff
path: root/app-misc/godep
diff options
context:
space:
mode:
authorV3n3RiX <venerix@rogentos.ro>2016-02-26 23:50:05 +0000
committerV3n3RiX <venerix@rogentos.ro>2016-02-26 23:50:05 +0000
commited40676841e317a2aafa04c4c804bb6043864740 (patch)
tree91c5e4b12acc09eabb2b1234eb633aa78af224d2 /app-misc/godep
parentdc106bfbeb980942a8490753d6883eb34b13ea12 (diff)
repo cleanup...drop old ebuilds, drop ebuilds already in portage tree
Diffstat (limited to 'app-misc/godep')
-rw-r--r--app-misc/godep/godep-9999.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/app-misc/godep/godep-9999.ebuild b/app-misc/godep/godep-9999.ebuild
deleted file mode 100644
index 38ba91da..00000000
--- a/app-misc/godep/godep-9999.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-
-inherit git-r3
-
-RESTRICT="strip"
-
-DESCRIPTION="native bindings for the FUSE kernel module"
-HOMEPAGE="https://github.com/tools/godep"
-EGIT_REPO_URI="https://github.com/tools/${PN}.git"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-DEPEND="dev-lang/go"
-RDEPEND=""
-
-GO_PN="github.com/tools/${PN}"
-EGIT_CHECKOUT_DIR="${S}/src/${GO_PN}"
-
-export GOPATH="${S}"
-
-src_prepare() {
- go get ${GO_PN}
-}
-
-src_compile() {
- go build -v -x -work ${GO_PN} || die
-}
-
-src_install() {
-# go install -v -x -work ${GO_PN} || die
-
-dobin ${S}/bin/godep
-#insinto /usr/lib/go/
-#doins -r "${S}/pkg"
-#insinto /usr/lib/go/src/pkg
-#doins -r "${S}/src/."
-}