Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker-machine-driver-hyperkit: deprecate as it is unmaintained #82122

Merged
merged 3 commits into from
Aug 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Formula/docker-machine-driver-hyperkit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ class DockerMachineDriverHyperkit < Formula
sha256 cellar: :any_skip_relocation, el_capitan: "92bef33ec9ad5fbdfb887fcabe550603c886065c8ec3c677732a55f84a4c7520"
end

depends_on "dep" => :build
deprecate! date: "2021-07-29", because: :unmaintained

depends_on "go" => :build
depends_on "docker-machine"

Expand All @@ -27,7 +28,8 @@ def install
dir.install buildpath.children

cd dir do
system "dep", "ensure", "-vendor-only"
system "go", "mod", "init", "github.com/machine-drivers/docker-machine-driver-hyperkit"
system "go", "mod", "tidy"
system "go", "build", "-o", "#{bin}/docker-machine-driver-hyperkit",
"-ldflags", "-X main.version=#{version}"
prefix.install_metafiles
Expand Down