Skip to content
Closed
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
58 changes: 58 additions & 0 deletions Formula/go@1.16.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
class GoAT116 < Formula
desc "Go programming environment (1.16)"
homepage "https://golang.org"
url "https://golang.org/dl/go1.16.7.src.tar.gz"
mirror "https://fossies.org/linux/misc/go1.16.7.src.tar.gz"
sha256 "1a9f2894d3d878729f7045072f30becebe243524cf2fce4e0a7b248b1e0654ac"
license "BSD-3-Clause"

livecheck do
url "https://golang.org/dl/"
regex(/href=.*?go[._-]?v?(1\.16(?:\.\d+)*)[._-]src\.t/i)
end

keg_only :versioned_formula

depends_on "go" => :build

def install
ENV["GOROOT_BOOTSTRAP"] = Formula["go"].opt_libexec

cd "src" do
ENV["GOROOT_FINAL"] = libexec
system "./make.bash", "--no-clean"
end

(buildpath/"pkg/obj").rmtree
libexec.install Dir["*"]
bin.install_symlink Dir[libexec/"bin/go*"]

system bin/"go", "install", "-race", "std"

# Remove useless files.
# Breaks patchelf because folder contains weird debug/test files
(libexec/"src/debug/elf/testdata").rmtree
# Binaries built for an incompatible architecture
(libexec/"src/runtime/pprof/testdata").rmtree
end

test do
(testpath/"hello.go").write <<~EOS
package main

import "fmt"

func main() {
fmt.Println("Hello World")
}
EOS
# Run go fmt check for no errors then run the program.
# This is a a bare minimum of go working as it uses fmt, build, and run.
system bin/"go", "fmt", "hello.go"
assert_equal "Hello World\n", shell_output("#{bin}/go run hello.go")

ENV["GOOS"] = "freebsd"
ENV["GOARCH"] = Hardware::CPU.intel? ? "amd64" : Hardware::CPU.arch.to_s
system bin/"go", "build", "hello.go"
end
end