etcd 3.3.10

Closes #33035.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
This commit is contained in:
Chongyu Zhu 2018-10-16 23:58:38 +08:00
parent 5fc9b49fe9
commit 1809d77228
No known key found for this signature in database
GPG key ID: 1A43E3C9100B38F5

View file

@ -1,9 +1,9 @@
class Etcd < Formula class Etcd < Formula
desc "Key value store for shared configuration and service discovery" desc "Key value store for shared configuration and service discovery"
homepage "https://github.com/coreos/etcd" homepage "https://github.com/etcd-io/etcd"
url "https://github.com/coreos/etcd/archive/v3.3.9.tar.gz" url "https://github.com/etcd-io/etcd/releases/download/v3.3.10/v3.3.10.tar.gz"
sha256 "96639d35772108004da53e568489ce7572171d39ee507245848cc42fbd3a3032" sha256 "bc8a8afdbb85734e38e089de21302e50d240983425694d5ed9d5823b1de35b60"
head "https://github.com/coreos/etcd.git" head "https://github.com/etcd-io/etcd.git"
bottle do bottle do
cellar :any_skip_relocation cellar :any_skip_relocation
@ -17,8 +17,8 @@ class Etcd < Formula
def install def install
ENV["GOPATH"] = buildpath ENV["GOPATH"] = buildpath
mkdir_p "src/github.com/coreos" mkdir_p "src/github.com/etcd-io"
ln_s buildpath, "src/github.com/coreos/etcd" ln_s buildpath, "src/github.com/etcd-io/etcd"
system "./build" system "./build"
bin.install "bin/etcd" bin.install "bin/etcd"
bin.install "bin/etcdctl" bin.install "bin/etcdctl"