require "language/go" class Influxdb < Formula desc "Time series, events, and metrics database" homepage "https://influxdb.com" stable do url "https://github.com/influxdb/influxdb/archive/v0.9.4.1.tar.gz" sha256 "a15dcb1173ca4016111d2d8dcea75c098f10838f54d67256b384e65b1cbcf2de" end bottle do cellar :any_skip_relocation sha256 "76d669cdbf1c2ad3619bd75c5e1d696f4a95723f52f6c4a7d07c78cbfa79c305" => :el_capitan sha256 "5cafef5188c19e37b309e4bc7b296b228105ef968e3af763f591523b7acf07f4" => :yosemite sha256 "fe38534f8108c8f6174cad83ff042519b1ac73690a8b97cbce97158b1851ea2c" => :mavericks end head do url "https://github.com/influxdb/influxdb.git" end depends_on "go" => :build go_resource "github.com/BurntSushi/toml" do url "https://github.com/BurntSushi/toml.git", :revision => "056c9bc7be7190eaa7715723883caffa5f8fa3e4" end go_resource "github.com/armon/go-metrics" do url "https://github.com/armon/go-metrics.git", :revision => "b2d95e5291cdbc26997d1301a5e467ecbb240e25" end go_resource "github.com/bmizerany/pat" do url "https://github.com/bmizerany/pat.git", :revision => "b8a35001b773c267eb260a691f4e5499a3531600" end go_resource "github.com/boltdb/bolt" do url "https://github.com/boltdb/bolt.git", :revision => "033d4ec028192f38aef67ae47bd7b89f343145b5" end go_resource "github.com/gogo/protobuf" do url "https://github.com/gogo/protobuf.git", :revision => "43ab7f0ec7b6d072e0368bd537ffefe74ed30198" end go_resource "github.com/golang/protobuf" do url "https://github.com/golang/protobuf.git", :revision => "535a10468679b4cf155f6a7afdf53b554633fc09" end go_resource "github.com/hashicorp/go-msgpack" do url "https://github.com/hashicorp/go-msgpack.git", :revision => "fa3f63826f7c23912c15263591e65d54d080b458" end go_resource "github.com/hashicorp/raft" do url "https://github.com/hashicorp/raft.git", :revision => "9dabbbab966c04a0b6efed3cff6960299fed0642" end go_resource "github.com/hashicorp/raft-boltdb" do url "https://github.com/hashicorp/raft-boltdb.git", :revision => "d1e82c1ec3f15ee991f7cc7ffd5b67ff6f5bbaee" end go_resource "github.com/kimor79/gollectd" do url "https://github.com/kimor79/gollectd.git", :revision => "61d0deeb4ffcc167b2a1baa8efd72365692811bc" end go_resource "github.com/peterh/liner" do url "https://github.com/peterh/liner.git", :revision => "c754da6f2d91ef30ddb6c975d2dbe7696eec4fbc" end go_resource "github.com/rakyll/statik" do url "https://github.com/rakyll/statik.git", :revision => "274df120e9065bdd08eb1120e0375e3dc1ae8465" end go_resource "golang.org/x/crypto" do url "https://go.googlesource.com/crypto.git", :revision => "81bf7719a6b7ce9b665598222362b50122dfc13b" end go_resource "gopkg.in/fatih/pool.v2" do url "https://github.com/fatih/pool.git", :revision => "cba550ebf9bce999a02e963296d4bc7a486cb715" end go_resource "collectd.org" do url "https://github.com/collectd/go-collectd.git", :revision => "b57a70fc3a8592302821687ba82204ba4071b0a8" end go_resource "github.com/golang/snappy" do url "https://github.com/golang/snappy.git", :revision => "723cc1e459b8eea2dea4583200fd60757d40097a" end def install ENV["GOPATH"] = buildpath influxdb_path = buildpath/"src/github.com/influxdb/influxdb" influxdb_path.install Dir["*"] Language::Go.stage_deps resources, buildpath/"src" cd influxdb_path do if build.head? system "go", "install", "-ldflags", "-X main.version 0.9.5-HEAD -X main.branch master -X main.commit #{`git rev-parse HEAD`.strip}", "./..." else system "go", "install", "-ldflags", "-X main.version 0.9.4.1 -X main.branch 0.9.4 -X main.commit c4f85f84765e27bfb5e58630d0dea38adeacf543", "./..." end end inreplace influxdb_path/"etc/config.sample.toml" do |s| s.gsub! "/var/opt/influxdb/data", "#{var}/influxdb/data" s.gsub! "/var/opt/influxdb/meta", "#{var}/influxdb/meta" s.gsub! "/var/opt/influxdb/hh", "#{var}/influxdb/hh" s.gsub! "/var/opt/influxdb/wal", "#{var}/influxdb/wal" end bin.install buildpath/"bin/influxd" bin.install buildpath/"bin/influx" etc.install influxdb_path/"etc/config.sample.toml" => "influxdb.conf" (var/"influxdb/data").mkpath (var/"influxdb/meta").mkpath (var/"influxdb/hh").mkpath (var/"influxdb/wal").mkpath end plist_options :manual => "influxd -config #{HOMEBREW_PREFIX}/etc/influxdb.conf" def plist; <<-EOS.undent KeepAlive SuccessfulExit Label #{plist_name} ProgramArguments #{opt_bin}/influxd -config #{HOMEBREW_PREFIX}/etc/influxdb.conf RunAtLoad WorkingDirectory #{var} StandardErrorPath #{var}/log/influxdb.log StandardOutPath #{var}/log/influxdb.log EOS end def caveats; <<-EOS.undent Config files from old InfluxDB versions are incompatible with version 0.9. If upgrading from a pre-0.9 version, the new configuration file will be named: #{etc}/influxdb.conf.default To generate a new config file: influxd config > influxdb.conf.generated EOS end end