133 lines
4.0 KiB
Ruby
133 lines
4.0 KiB
Ruby
class Arangodb < Formula
|
|
desc "Multi-Model NoSQL Database"
|
|
homepage "https://www.arangodb.com/"
|
|
url "https://download.arangodb.com/Source/ArangoDB-3.7.8.tar.gz"
|
|
sha256 "8f9aebeaee95628df3a64b29d3301fd55fabd635da2ec4d05ac694f24ff80dcd"
|
|
license "Apache-2.0"
|
|
head "https://github.com/arangodb/arangodb.git", branch: "devel"
|
|
|
|
bottle do
|
|
sha256 big_sur: "4dda5ad05b9f19245a8ab64f63bb7b3ae6f0bfc08406c53abdcdc5092daaa411"
|
|
sha256 catalina: "83228e7a3d9197680796bd858f67fa6acc47be3f02cc12929cfab1fa657ec1fa"
|
|
sha256 mojave: "dec1a698245aa7a9f999b5ba5e901bebd5536285530c3b768473318986e7c3fa"
|
|
end
|
|
|
|
depends_on "ccache" => :build
|
|
depends_on "cmake" => :build
|
|
depends_on "go@1.13" => :build
|
|
depends_on "python@3.9" => :build
|
|
depends_on macos: :mojave
|
|
depends_on "openssl@1.1"
|
|
|
|
# the ArangoStarter is in a separate github repository;
|
|
# it is used to easily start single server and clusters
|
|
# with a unified CLI
|
|
resource "starter" do
|
|
url "https://github.com/arangodb-helper/arangodb.git",
|
|
tag: "0.14.15-1",
|
|
revision: "fe064e0136f009f65ea767dec6203a0d5bc5117e"
|
|
end
|
|
|
|
def install
|
|
on_macos do
|
|
ENV["MACOSX_DEPLOYMENT_TARGET"] = MacOS.version
|
|
end
|
|
|
|
resource("starter").stage do
|
|
ENV["GO111MODULE"] = "on"
|
|
ENV["DOCKERCLI"] = ""
|
|
system "make", "deps"
|
|
ldflags = %W[
|
|
-s -w
|
|
-X main.projectVersion=#{resource("starter").version}
|
|
-X main.projectBuild=#{Utils.git_head}
|
|
]
|
|
system "go", "build", *std_go_args, "-ldflags", ldflags.join(" "), "github.com/arangodb-helper/arangodb"
|
|
end
|
|
|
|
mkdir "build" do
|
|
openssl = Formula["openssl@1.1"]
|
|
args = std_cmake_args + %W[
|
|
-DHOMEBREW=ON
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
-DUSE_MAINTAINER_MODE=Off
|
|
-DUSE_JEMALLOC=Off
|
|
-DCMAKE_SKIP_RPATH=On
|
|
-DOPENSSL_USE_STATIC_LIBS=On
|
|
-DCMAKE_LIBRARY_PATH=#{openssl.opt_lib}
|
|
-DOPENSSL_ROOT_DIR=#{openssl.opt_lib}
|
|
-DCMAKE_OSX_DEPLOYMENT_TARGET=#{MacOS.version}
|
|
-DTARGET_ARCHITECTURE=nehalem
|
|
-DUSE_CATCH_TESTS=Off
|
|
-DUSE_GOOGLE_TESTS=Off
|
|
-DCMAKE_INSTALL_LOCALSTATEDIR=#{var}
|
|
]
|
|
|
|
ENV["V8_CXXFLAGS"] = "-O3 -g -fno-delete-null-pointer-checks" if ENV.compiler == "gcc-6"
|
|
|
|
system "cmake", "..", *args
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
def post_install
|
|
(var/"lib/arangodb3").mkpath
|
|
(var/"log/arangodb3").mkpath
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
An empty password has been set. Please change it by executing
|
|
#{opt_sbin}/arango-secure-installation
|
|
EOS
|
|
end
|
|
|
|
plist_options manual: "#{HOMEBREW_PREFIX}/opt/arangodb/sbin/arangod"
|
|
|
|
def plist
|
|
<<~EOS
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>Program</key>
|
|
<string>#{opt_sbin}/arangod</string>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
require "pty"
|
|
|
|
testcase = "require('@arangodb').print('it works!')"
|
|
output = shell_output("#{bin}/arangosh --server.password \"\" --javascript.execute-string \"#{testcase}\"")
|
|
assert_equal "it works!", output.chomp
|
|
|
|
ohai "#{bin}/arangodb --starter.instance-up-timeout 1m --starter.mode single"
|
|
PTY.spawn("#{bin}/arangodb", "--starter.instance-up-timeout", "1m",
|
|
"--starter.mode", "single", "--starter.disable-ipv6",
|
|
"--server.arangod", "#{sbin}/arangod",
|
|
"--server.js-dir", "#{share}/arangodb3/js") do |r, _, pid|
|
|
loop do
|
|
available = IO.select([r], [], [], 60)
|
|
assert_not_equal available, nil
|
|
|
|
line = r.readline.strip
|
|
ohai line
|
|
|
|
break if line.include?("Your single server can now be accessed")
|
|
end
|
|
ensure
|
|
Process.kill "SIGINT", pid
|
|
ohai "shutting down #{pid}"
|
|
end
|
|
end
|
|
end
|