docker 0.8.1
Remove patches because they are all included upstream now. Remove sha1 because I couldn't find what it referred to when using the GitDownloadStrategy. (It seems to be ignored.) Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
cb1d134bf3
commit
6f729657d2
1 changed files with 2 additions and 11 deletions
|
@ -2,8 +2,7 @@ require "formula"
|
||||||
|
|
||||||
class Docker < Formula
|
class Docker < Formula
|
||||||
homepage "http://docker.io"
|
homepage "http://docker.io"
|
||||||
url "https://github.com/dotcloud/docker.git", :tag => "v0.8.0"
|
url "https://github.com/dotcloud/docker.git", :tag => "v0.8.1"
|
||||||
sha1 "1e9362dab2ac2ecb4a1f193a7e72d060000438c3"
|
|
||||||
|
|
||||||
option "without-completions", "Disable bash/zsh completions"
|
option "without-completions", "Disable bash/zsh completions"
|
||||||
|
|
||||||
|
@ -14,14 +13,6 @@ class Docker < Formula
|
||||||
sha1 "bd6595664d5384c4e1584864d96d409d475016ce" => :lion
|
sha1 "bd6595664d5384c4e1584864d96d409d475016ce" => :lion
|
||||||
end
|
end
|
||||||
|
|
||||||
def patches
|
|
||||||
[
|
|
||||||
"https://github.com/dotcloud/docker/commit/6174ba.patch",
|
|
||||||
"https://github.com/dotcloud/docker/commit/f794fb.patch",
|
|
||||||
"https://github.com/dotcloud/docker/commit/32535e.patch",
|
|
||||||
]
|
|
||||||
end
|
|
||||||
|
|
||||||
depends_on "go" => :build
|
depends_on "go" => :build
|
||||||
|
|
||||||
def install
|
def install
|
||||||
|
@ -29,7 +20,7 @@ class Docker < Formula
|
||||||
ENV["AUTO_GOPATH"] = "1"
|
ENV["AUTO_GOPATH"] = "1"
|
||||||
|
|
||||||
system "hack/make.sh", "dynbinary"
|
system "hack/make.sh", "dynbinary"
|
||||||
bin.install "bundles/0.8.0/dynbinary/docker-0.8.0" => "docker"
|
bin.install "bundles/0.8.1/dynbinary/docker-0.8.1" => "docker"
|
||||||
|
|
||||||
if build.with? "completions"
|
if build.with? "completions"
|
||||||
bash_completion.install "contrib/completion/bash/docker"
|
bash_completion.install "contrib/completion/bash/docker"
|
||||||
|
|
Loading…
Reference in a new issue