require "language/go" class Caddy < Formula desc "Alternative general-purpose HTTP/2 web server" homepage "https://caddyserver.com/" url "https://github.com/mholt/caddy/archive/v0.9.5.tar.gz" sha256 "6d602e6009ff14cfe7cccea470f9c4cb5ea10865f137293435b35122333b72c2" head "https://github.com/mholt/caddy.git" bottle do sha256 "3fcc2e64753aabde5b809da791c376addfd58b08a5f63b9f41d7e078dc040c1a" => :sierra sha256 "271af6296bb1df1f7d2b6ac26b283327a94f9484139912bc31bc5ec26fabbeca" => :el_capitan sha256 "b3b8f51c1948343bd533e3f4831940b4c6e3d276e4fe806eceb146bc4799bf8c" => :yosemite end depends_on "go" => :build go_resource "github.com/dsnet/compress" do url "https://github.com/dsnet/compress.git", :revision => "b9aab3c6a04eef14c56384b4ad065e7b73438862" end go_resource "github.com/dustin/go-humanize" do url "https://github.com/dustin/go-humanize.git", :revision => "7a41df006ff9af79a29f0ffa9c5f21fbe6314a2d" end go_resource "github.com/flynn/go-shlex" do url "https://github.com/flynn/go-shlex.git", :revision => "3f9db97f856818214da2e1057f8ad84803971cff" end go_resource "github.com/gorilla/websocket" do url "https://github.com/gorilla/websocket.git", :revision => "0674c7c7968d9fac5f0f678325161ec31df406af" end go_resource "github.com/hashicorp/go-syslog" do url "https://github.com/hashicorp/go-syslog.git", :revision => "b609c7d9de4658cded34a7336b90886c56f9dbdb" end go_resource "github.com/hashicorp/golang-lru" do url "https://github.com/hashicorp/golang-lru.git", :revision => "0a025b7e63adc15a622f29b0b2c4c3848243bbf6" end go_resource "github.com/jimstudt/http-authentication" do url "https://github.com/jimstudt/http-authentication.git", :revision => "3eca13d6893afd7ecabe15f4445f5d2872a1b012" end go_resource "github.com/lucas-clemente/aes12" do url "https://github.com/lucas-clemente/aes12.git", :revision => "25700e67be5c860bcc999137275b9ef8b65932bd" end go_resource "github.com/lucas-clemente/fnv128a" do url "https://github.com/lucas-clemente/fnv128a.git", :revision => "393af48d391698c6ae4219566bfbdfef67269997" end go_resource "github.com/lucas-clemente/quic-go" do url "https://github.com/lucas-clemente/quic-go.git", :revision => "86e02c4d2c459b70073cd5c39468e8a5a22db45a" end go_resource "github.com/lucas-clemente/quic-go-certificates" do url "https://github.com/lucas-clemente/quic-go-certificates.git", :revision => "d2f86524cced5186554df90d92529757d22c1cb6" end go_resource "github.com/mholt/archiver" do url "https://github.com/mholt/archiver.git", :revision => "24d540239654d76e79c8f4e3d5bd56d90712becb" end go_resource "github.com/miekg/dns" do url "https://github.com/miekg/dns.git", :revision => "ca336a1f95a6b89be9c250df26c7a41742eb4a6f" end go_resource "github.com/naoina/go-stringutil" do url "https://github.com/naoina/go-stringutil.git", :revision => "6b638e95a32d0c1131db0e7fe83775cbea4a0d0b" end go_resource "github.com/naoina/toml" do url "https://github.com/naoina/toml.git", :revision => "751171607256bb66e64c9f0220c00662420c38e9" end go_resource "github.com/nwaples/rardecode" do url "https://github.com/nwaples/rardecode.git", :revision => "f22b7ef81a0afac9ce1447d37e5ab8e99fbd2f73" end go_resource "github.com/russross/blackfriday" do url "https://github.com/russross/blackfriday.git", :revision => "5f33e7b7878355cd2b7e6b8eefc48a5472c69f70" end go_resource "github.com/shurcooL/sanitized_anchor_name" do url "https://github.com/shurcooL/sanitized_anchor_name.git", :revision => "1dba4b3954bc059efc3991ec364f9f9a35f597d2" end go_resource "github.com/ulikunitz/xz" do url "https://github.com/ulikunitz/xz.git", :revision => "76f94b7c69c6f84be96bcfc2443042b198689565" end go_resource "github.com/xenolf/lego" do url "https://github.com/xenolf/lego.git", :revision => "f5d538caab6dc0c167d4e32990c79bbf9eff578c" end go_resource "golang.org/x/crypto" do url "https://go.googlesource.com/crypto.git", :revision => "41d678d1df78cd0410143162dff954e6dc09300f" end go_resource "golang.org/x/net" do url "https://go.googlesource.com/net.git", :revision => "f2499483f923065a842d38eb4c7f1927e6fc6e6d" end go_resource "gopkg.in/natefinch/lumberjack.v2" do url "https://gopkg.in/natefinch/lumberjack.v2.git", :revision => "dd45e6a67c53f673bb49ca8a001fd3a63ceb640e" end go_resource "gopkg.in/square/go-jose.v1" do url "https://gopkg.in/square/go-jose.v1.git", :revision => "aa2e30fdd1fe9dd3394119af66451ae790d50e0d" end go_resource "gopkg.in/yaml.v2" do url "https://gopkg.in/yaml.v2.git", :revision => "a5b47d31c556af34a302ce5d659e6fea44d90de0" end def install ENV["GOPATH"] = buildpath ENV["GOOS"] = "darwin" ENV["GOARCH"] = MacOS.prefer_64_bit? ? "amd64" : "386" (buildpath/"src/github.com/mholt").mkpath ln_s buildpath, "src/github.com/mholt/caddy" Language::Go.stage_deps resources, buildpath/"src" system "go", "build", "-ldflags", "-X github.com/mholt/caddy/caddy/caddymain.gitTag=#{version}", "-o", bin/"caddy", "github.com/mholt/caddy/caddy" end test do begin io = IO.popen("#{bin}/caddy") sleep 2 ensure Process.kill("SIGINT", io.pid) Process.wait(io.pid) end io.read =~ /0\.0\.0\.0:2015/ end end