aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/etcdctl.rb
diff options
context:
space:
mode:
authorBrett Koonce2015-03-08 10:24:17 -0700
committerBrett Koonce2015-03-10 00:13:32 -0700
commita4bc037d705762df7a57cd529345df1e7dbfb43e (patch)
tree67bf1bbbd2a368c653159e87933177ad195a51a1 /Library/Formula/etcdctl.rb
parente48645ec0a345dec7d800f5d65c04b879cc1d245 (diff)
downloadhomebrew-a4bc037d705762df7a57cd529345df1e7dbfb43e.tar.bz2
etcd/etcdctl 2.0.4, strip etcdctl.rb
Fixes #37236: etcdctl was moved into etcd package strips etcdctl formula. Closes #37508. Signed-off-by: Brett Koonce <koonce@gmail.com>
Diffstat (limited to 'Library/Formula/etcdctl.rb')
-rw-r--r--Library/Formula/etcdctl.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/Library/Formula/etcdctl.rb b/Library/Formula/etcdctl.rb
deleted file mode 100644
index fbedcce7a..000000000
--- a/Library/Formula/etcdctl.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-require "formula"
-
-class Etcdctl < Formula
- homepage "https://github.com/coreos/etcdctl"
- url "https://github.com/coreos/etcdctl/archive/v0.4.6.tar.gz"
- sha1 "924668c26a30bfe65ac88971965b1dad819be630"
- head "https://github.com/coreos/etcdctl.git"
-
- bottle do
- sha1 "55d9d167c681bde77edddafab93ca59a7f6ac876" => :mavericks
- sha1 "f371b74df8c7efd4b20bf51eec88621f6129b0c1" => :mountain_lion
- sha1 "0944b857b23a28b4bc1c20c668d07afbf86b42cf" => :lion
- end
-
- depends_on "go" => :build
-
- def install
- ENV["GOPATH"] = buildpath
- system "./build"
- bin.install "bin/etcdctl"
- end
-end