From a56afdf3773dcaf17fc1fb1c6f80cc89b0aa6dcc Mon Sep 17 00:00:00 2001 From: Roopak Venkatakrishnan Date: Mon, 22 Feb 2021 05:15:03 +0000 Subject: [PATCH 1/4] jp: add go 1.16 support --- Formula/jp.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/jp.rb b/Formula/jp.rb index 9a29e75dacdf3..1daefe5c9b5fa 100644 --- a/Formula/jp.rb +++ b/Formula/jp.rb @@ -17,6 +17,7 @@ class Jp < Formula def install ENV["GOPATH"] = buildpath + ENV["GO111MODULE"] = "auto" build_root = buildpath/"src/github.com/sgreben/jp" build_root.install Dir["*"] cd build_root do From 91b9fffe6bd8689515126076fbfb770778939772 Mon Sep 17 00:00:00 2001 From: Roopak Venkatakrishnan Date: Mon, 22 Feb 2021 05:15:28 +0000 Subject: [PATCH 2/4] ironcli: add go 1.16 support --- Formula/ironcli.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/ironcli.rb b/Formula/ironcli.rb index 1a8d6b1a7dc5f..6a8f618a65b01 100644 --- a/Formula/ironcli.rb +++ b/Formula/ironcli.rb @@ -18,6 +18,7 @@ class Ironcli < Formula def install ENV["GOPATH"] = buildpath + ENV["GO111MODULE"] = "auto" (buildpath/"src/github.com/iron-io/ironcli").install buildpath.children cd "src/github.com/iron-io/ironcli" do system "dep", "ensure", "-vendor-only" From d85b1a8aa5b3ac9a0f8dfdbccb1987435f9c4a9c Mon Sep 17 00:00:00 2001 From: Roopak Venkatakrishnan Date: Mon, 22 Feb 2021 05:15:50 +0000 Subject: [PATCH 3/4] hivemind: add go 1.16 support --- Formula/hivemind.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/hivemind.rb b/Formula/hivemind.rb index 3cf6c9df5d564..186756e2d82a7 100644 --- a/Formula/hivemind.rb +++ b/Formula/hivemind.rb @@ -18,6 +18,7 @@ class Hivemind < Formula def install ENV["GOPATH"] = buildpath + ENV["GO111MODULE"] = "auto" (buildpath/"src/github.com/DarthSim/hivemind/").install Dir["*"] system "go", "build", "-o", "#{bin}/hivemind", "-v", "github.com/DarthSim/hivemind/" end From 0403109eac557e6afe3fe4dd8b2c6062ca328c70 Mon Sep 17 00:00:00 2001 From: Roopak Venkatakrishnan Date: Mon, 22 Feb 2021 05:16:15 +0000 Subject: [PATCH 4/4] mailhog: add go 1.16 support --- Formula/mailhog.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/mailhog.rb b/Formula/mailhog.rb index ef40d42f9f791..65e2ecc3895a5 100644 --- a/Formula/mailhog.rb +++ b/Formula/mailhog.rb @@ -122,6 +122,7 @@ class Mailhog < Formula def install ENV["GOPATH"] = buildpath ENV["GOBIN"] = bin + ENV["GO111MODULE"] = "auto" path = buildpath/"src/github.com/mailhog/MailHog" path.install buildpath.children