class Arangodb < Formula desc "The Multi-Model NoSQL Database." homepage "https://www.arangodb.com/" url "https://www.arangodb.com/repositories/Source/ArangoDB-3.0.10.tar.gz" sha256 "d8da3e5948d5ba7591c50a093bbd5302ce5a6f524b6797b724e7f4f3644e4628" head "https://github.com/arangodb/arangodb.git", :branch => "unstable" bottle do sha256 "2ee7dae9c67aa86d73bf918255005283ab4fd9ca71f301a90813ccc25000bd8d" => :sierra sha256 "dd64172f3af4ad399a15b82d3aa064fec13a2094ae8cc26f786546e72a5fb32b" => :el_capitan sha256 "71470da8d76e9eb1656fdcc92df97ecf46070b49c6518660aed74280f7db7e94" => :yosemite end depends_on :macos => :yosemite depends_on "cmake" => :build depends_on "go" => :build depends_on "openssl" needs :cxx11 fails_with :clang do build 600 cause "Fails with compile errors" end resource "arangodb2" do url "https://www.arangodb.com/repositories/Source/ArangoDB-2.8.10.tar.gz" sha256 "3a455e9d6093739660ad79bd3369652db79f3dabd9ae02faca1b014c9aa220f4" end resource "upgrade" do url "https://www.arangodb.com/repositories/Source/upgrade3-1.0.0.tar.gz" sha256 "965f899685e420530bb3c68ada903c815ebd0aa55e477d6949abba9506574011" end def install ENV.cxx11 (libexec/"arangodb2/bin").install resource("upgrade") resource("arangodb2").stage do ENV.cxx11 args = %W[ --disable-dependency-tracking --prefix=#{libexec}/arangodb2 --disable-relative --localstatedir=#{var} --program-suffix=-2.8 ] if ENV.compiler == "gcc-6" ENV.append "CXXFLAGS", "-O2 -g -fno-delete-null-pointer-checks" inreplace "3rdParty/Makefile.v8", "CXXFLAGS=\"", "CXXFLAGS=\"-fno-delete-null-pointer-checks " end system "./configure", *args system "make", "install" end mkdir "build" do args = std_cmake_args + %W[ -DHOMEBREW=ON -DUSE_OPTIMIZE_FOR_ARCHITECTURE=OFF -DASM_OPTIMIZATIONS=OFF -DCMAKE_INSTALL_DATADIR=#{share} -DETCDIR=#{etc} -DVARDIR=#{var} ] if ENV.compiler == "gcc-6" ENV.append "V8_CXXFLAGS", "-O3 -g -fno-delete-null-pointer-checks" end system "cmake", "..", *args system "make", "install" %w[arangod arango-dfdb arangosh foxx-manager].each do |f| inreplace etc/"arangodb3/#{f}.conf", pkgshare, opt_pkgshare end end end def post_install oldpath_prefix = "#{HOMEBREW_PREFIX}/Cellar/arangodb/3.0." oldpath_regexp = /#{Regexp.escape(oldpath_prefix)}[12]/ %w[arangod arango-dfdb arangosh foxx-manager].each do |f| inreplace etc/"arangodb3/#{f}.conf", oldpath_regexp, opt_prefix, false end (var/"lib/arangodb3").mkpath (var/"log/arangodb3").mkpath args = %W[ #{libexec}/arangodb2 #{var}/lib/arangodb #{opt_prefix} #{var}/lib/arangodb3 ] system libexec/"arangodb2/bin/upgrade.sh", *args end def caveats s = <<-EOS.undent The database format between ArangoDB 2.x and ArangoDB 3.x has been changed, please checkout https://docs.arangodb.com/3.0/Manual/Administration/Upgrading/index.html An empty password has been set. Please change it by executing #{opt_sbin}/arango-secure-installation EOS s end plist_options :manual => "#{HOMEBREW_PREFIX}/opt/arangodb/sbin/arangod" def plist; <<-EOS.undent KeepAlive Label #{plist_name} Program #{opt_sbin}/arangod RunAtLoad EOS end test do testcase = "require('@arangodb').print('it works!')" output = shell_output("#{bin}/arangosh --server.password \"\" --javascript.execute-string \"#{testcase}\"") assert_equal "it works!", output.chomp end end