require "language/go" class Cayley < Formula desc "Graph database inspired by Freebase and Knowledge Graph" homepage "https://github.com/google/cayley" url "https://github.com/google/cayley/archive/v0.4.1.tar.gz" sha256 "d61f969128bcff1bce1e14e0afa68b9f25e4f3ab8e5f77930a384426f3b3bbce" revision 1 head "https://github.com/google/cayley.git" bottle do cellar :any_skip_relocation sha256 "1d82ae788b6eaa64c144de0953b71f421cc43de660a6ca05fcfb4f41c138ccb5" => :el_capitan sha256 "ab869f231a2a301f63ddd4923812c194c0e10c249534af31c156a820e9864fdf" => :yosemite sha256 "101f0ffaebf3f5085a6b070acdd51ebdaf94d671f544830c623fada50bbe616d" => :mavericks end option "without-samples", "Disable installing sample data" depends_on "bazaar" => :build depends_on :hg => :build depends_on "go" => :build # Go dependencies go_resource "github.com/badgerodon/peg" do url "https://github.com/badgerodon/peg.git", :revision => "9e5f7f4d07ca576562618c23e8abadda278b684f" end go_resource "github.com/barakmich/glog" do url "https://github.com/barakmich/glog.git", :revision => "fafcb6128a8a2e6360ff034091434d547397d54a" end go_resource "github.com/cznic/mathutil" do url "https://github.com/cznic/mathutil.git", :revision => "f9551431b78e71ee24939a1e9d8f49f43898b5cd" end go_resource "github.com/julienschmidt/httprouter" do url "https://github.com/julienschmidt/httprouter.git", :revision => "b59a38004596b696aca7aa2adccfa68760864d86" end go_resource "github.com/petar/GoLLRB/llrb" do url "https://github.com/petar/GoLLRB.git", :revision => "53be0d36a84c2a886ca057d34b6aa4468df9ccb4" end go_resource "github.com/peterh/liner" do url "https://github.com/peterh/liner.git", :revision => "1bb0d1c1a25ed393d8feb09bab039b2b1b1fbced" end go_resource "github.com/robertkrimen/otto" do url "https://github.com/robertkrimen/otto.git", :revision => "d1b4d8ef0e0e4b088c8328c95ca63ab9ebd8fc9d" end go_resource "github.com/syndtr/gosnappy" do url "https://github.com/syndtr/gosnappy.git", :revision => "156a073208e131d7d2e212cb749feae7c339e846" end go_resource "github.com/shurcooL/sanitized_anchor_name" do url "https://github.com/shurcooL/sanitized_anchor_name.git", :revision => "8e87604bec3c645a4eeaee97dfec9f25811ff20d" end go_resource "github.com/russross/blackfriday" do url "https://github.com/russross/blackfriday.git", :revision => "17bb7999de6cfb791d4f8986cc00b3309b370cdb" end go_resource "github.com/syndtr/goleveldb" do url "https://github.com/syndtr/goleveldb.git", :revision => "4875955338b0a434238a31165cb87255ab6e9e4a" end go_resource "github.com/boltdb/bolt" do url "https://github.com/boltdb/bolt.git", :revision => "3b449559cf34cbcc74460b59041a4399d3226e5a" end # It looks for both unstable and stable mgo in GOPATH during compile. go_resource "gopkg.in/mgo.v2" do url "https://github.com/go-mgo/mgo.git", :revision => "c6a7dce14133ccac2dcac3793f1d6e2ef048503a" end go_resource "gopkg.in/mgo.v2-unstable" do url "https://github.com/go-mgo/mgo.git", :revision => "7a4943433e00707e38099a2b2e904d96681d14bc" end go_resource "code.google.com/p/go-uuid" do url "https://code.google.com/p/go-uuid/", :using => :hg, :revision => "35bc42037350" end def install ENV["GOPATH"] = buildpath mkdir_p "src/github.com/google/" ln_s buildpath, "src/github.com/google/cayley" Language::Go.stage_deps resources, buildpath/"src" system "go", "build", "-o", "cayley", "github.com/google/cayley" # Create sample configuration that uses the Homebrew-based directories inreplace "cayley.cfg.example", "/tmp/cayley_test", "#{var}/cayley" # Install binary and configuration bin.install "cayley" etc.install "cayley.cfg.example" => "cayley.conf" # Copy over the static web assets (pkgshare/"assets").install "docs", "static", "templates" if build.with? "samples" system "gzip", "-d", "data/30kmoviedata.nq.gz" # Copy over sample data (pkgshare/"samples").install "data/testdata.nq", "data/30kmoviedata.nq" end end def post_install unless File.exist? "#{var}/cayley" # Create data directory (var/"cayley").mkpath # Initialize the Cayley database system "#{bin}/cayley", "init", "--config=#{etc}/cayley.conf" end end plist_options :manual => "cayley http --assets=#{HOMEBREW_PREFIX}/share/cayley/assets --config=#{HOMEBREW_PREFIX}/etc/cayley.conf" def plist; <<-EOS.undent KeepAlive SuccessfulExit Label #{plist_name} ProgramArguments #{opt_bin}/cayley http --assets=#{opt_pkgshare}/assets --config=#{etc}/cayley.conf RunAtLoad WorkingDirectory #{var}/cayley StandardErrorPath #{var}/log/cayley.log StandardOutPath #{var}/log/cayley.log EOS end test do result = pipe_output("#{bin}/cayley version") assert_match result, "Cayley snapshot\n" end end