homebrew-core/Formula/go.rb

94 lines
3.2 KiB
Ruby

class Go < Formula
desc "Open source programming language to build simple/reliable/efficient software"
homepage "https://go.dev/"
url "https://go.dev/dl/go1.17.5.src.tar.gz"
mirror "https://fossies.org/linux/misc/go1.17.5.src.tar.gz"
sha256 "3defb9a09bed042403195e872dcbc8c6fae1485963332279668ec52e80a95a2d"
license "BSD-3-Clause"
head "https://go.googlesource.com/go.git", branch: "master"
livecheck do
url "https://go.dev/dl/"
regex(/href=.*?go[._-]?v?(\d+(?:\.\d+)+)[._-]src\.t/i)
end
bottle do
sha256 arm64_monterey: "cd05f3051847e937f7815a680d2d8ff0fe22419d734351cc525b6f02117150a7"
sha256 arm64_big_sur: "7e2046951817ef831fd777cbd0dcafc6ce3062fdf6fae50496cf6805982db8b5"
sha256 monterey: "7f516d52e4d009e7508fb708ed527674ba8ca447b259a4103a97bf78798309a9"
sha256 big_sur: "5eb2d6ef9cd248b4536c7e7c4526ca112fd497a6671df9f4156ab79642204cfc"
sha256 catalina: "e77c18923898c8e141296d754841953138fd44008f93b3be3eb3c31d69e19206"
sha256 x86_64_linux: "8d9bb7712c31258ef4272fd668faf27163976839f35fa6adbae15319b25215b6"
end
# Don't update this unless this version cannot bootstrap the new version.
resource "gobootstrap" do
on_macos do
if Hardware::CPU.arm?
url "https://storage.googleapis.com/golang/go1.16.darwin-arm64.tar.gz"
version "1.16"
sha256 "4dac57c00168d30bbd02d95131d5de9ca88e04f2c5a29a404576f30ae9b54810"
else
url "https://storage.googleapis.com/golang/go1.16.darwin-amd64.tar.gz"
version "1.16"
sha256 "6000a9522975d116bf76044967d7e69e04e982e9625330d9a539a8b45395f9a8"
end
end
on_linux do
if Hardware::CPU.arm?
url "https://storage.googleapis.com/golang/go1.16.linux-arm64.tar.gz"
version "1.16"
sha256 "3770f7eb22d05e25fbee8fb53c2a4e897da043eb83c69b9a14f8d98562cd8098"
else
url "https://storage.googleapis.com/golang/go1.16.linux-amd64.tar.gz"
version "1.16"
sha256 "013a489ebb3e24ef3d915abe5b94c3286c070dfe0818d5bca8108f1d6e8440d2"
end
end
end
def install
(buildpath/"gobootstrap").install resource("gobootstrap")
ENV["GOROOT_BOOTSTRAP"] = buildpath/"gobootstrap"
cd "src" do
ENV["GOROOT_FINAL"] = libexec
system "./make.bash", "--no-clean"
end
(buildpath/"pkg/obj").rmtree
rm_rf "gobootstrap" # Bootstrap not required beyond compile.
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"] = "amd64"
system bin/"go", "build", "hello.go"
end
end