Merge pull request #164 from marineam/etcdctl

Etcdctl
This commit is contained in:
Michael Marineau 2013-08-19 11:51:39 -07:00
commit 4461185fce
5 changed files with 90 additions and 0 deletions

View File

@ -150,6 +150,7 @@ RDEPEND="${RDEPEND}
app-misc/ca-certificates
virtual/udev
dev-db/etcd
dev-db/etcdctl
"
# TODO(dianders):

View File

@ -0,0 +1,30 @@
# Copyright 2013 The CoreOS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
CROS_WORKON_PROJECT="coreos/etcdctl"
CROS_WORKON_LOCALNAME="etcdctl"
CROS_WORKON_REPO="git://github.com"
CROS_WORKON_COMMIT="689b26571ddc21bae9d94bec4eea231852362349" # v0.1.0 tag
inherit cros-workon
DESCRIPTION="etcd command line client"
HOMEPAGE="https://github.com/coreos/etcdctl"
SRC_URI=""
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64"
IUSE=""
DEPEND=">=dev-lang/go-1.1"
RDEPEND=""
src_compile() {
./build
}
src_install() {
dobin ${S}/${PN}
}

View File

@ -0,0 +1,30 @@
# Copyright 2013 The CoreOS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
CROS_WORKON_PROJECT="coreos/etcdctl"
CROS_WORKON_LOCALNAME="etcdctl"
CROS_WORKON_REPO="git://github.com"
CROS_WORKON_COMMIT="dac6f5cfa798b3e1da4027c2526a3b317d4e0db4" # v0.1.1 tag
inherit cros-workon
DESCRIPTION="etcd command line client"
HOMEPAGE="https://github.com/coreos/etcdctl"
SRC_URI=""
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64"
IUSE=""
DEPEND=">=dev-lang/go-1.1"
RDEPEND=""
src_compile() {
./build
}
src_install() {
dobin ${S}/${PN}
}

View File

@ -0,0 +1,29 @@
# Copyright 2013 The CoreOS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
CROS_WORKON_PROJECT="coreos/etcdctl"
CROS_WORKON_LOCALNAME="etcdctl"
CROS_WORKON_REPO="git://github.com"
inherit cros-workon
DESCRIPTION="etcd command line client"
HOMEPAGE="https://github.com/coreos/etcdctl"
SRC_URI=""
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-lang/go-1.1"
RDEPEND=""
src_compile() {
./build
}
src_install() {
dobin ${S}/${PN}
}