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" head "https://github.com/google/cayley.git" bottle do cellar :any sha256 "999dbf6a51615becf310f6cb5cdd71c9939fc93cc6e743234d2511d20a561641" => :yosemite sha256 "56395b48c4025e8242cbbe1e365a67a639bdb3b350799db0ad0e495c7d6c59f0" => :mavericks sha256 "1a96db8eb29e1e985a430970f84bb31db44024dd9ab264ac1f83ad7e1c9251ab" => :mountain_lion end depends_on "bazaar" => :build depends_on :hg => :build depends_on "go" => :build option "without-samples", "Disable installing sample data" # 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/", :revision => "35bc42037350", :using => :hg end def install # Prepare for Go build ENV["GOPATH"] = buildpath Language::Go.stage_deps resources, buildpath/"src" # To avoid re-downloading Cayley, symlink its source from the tarball so that Go can find it mkdir_p "src/github.com/google/" ln_s buildpath, "src/github.com/google/cayley" # Build system "go", "build", "-o", "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 (share/"cayley/assets").install "docs", "static", "templates" if build.with? "samples" system "gzip", "-d", "data/30kmoviedata.nq.gz" # Copy over sample data (share/"cayley/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=#{share}/cayley/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 result.include?("Cayley snapshot") end end