177 lines
5.1 KiB
Ruby
177 lines
5.1 KiB
Ruby
require "language/go"
|
|
|
|
class PerconaServerMongodb < Formula
|
|
desc "Drop-in MongoDB replacement"
|
|
homepage "https://www.percona.com"
|
|
url "https://www.percona.com/downloads/percona-server-mongodb-3.4/percona-server-mongodb-3.4.7-1.8/source/tarball/percona-server-mongodb-3.4.7-1.8.tar.gz"
|
|
version "3.4.7-1.8"
|
|
sha256 "b46275e82508bf67b155c95c540124ee81aa7dab5531dea2131e0fbd73525919"
|
|
|
|
bottle do
|
|
sha256 "33f717b0231ee9a7954fbdab4bd3a8e8385a769b5d4db94a4e80afec88769ddf" => :high_sierra
|
|
sha256 "1f3c064d76b9f2a7144fd40d87a5635c4cf5c1d45381763ec378d85c25199850" => :sierra
|
|
sha256 "4241de9e6f01a2ec91be56f5c286b766c1ee6de4cfef35975ed70586c6cafd97" => :el_capitan
|
|
end
|
|
|
|
option "with-boost", "Compile using installed boost, not the version shipped with this formula"
|
|
option "with-sasl", "Compile with SASL support"
|
|
|
|
depends_on "boost" => :optional
|
|
depends_on "go" => :build
|
|
depends_on :macos => :mountain_lion
|
|
depends_on "scons" => :build
|
|
depends_on "openssl" => :recommended
|
|
|
|
conflicts_with "mongodb",
|
|
:because => "percona-server-mongodb and mongodb install the same binaries."
|
|
|
|
go_resource "github.com/mongodb/mongo-tools" do
|
|
url "https://github.com/mongodb/mongo-tools.git",
|
|
:tag => "r3.4.9",
|
|
:revision => "4f093ae71cdb4c6a6e9de7cd1dc67ea4405f0013",
|
|
:shallow => false
|
|
end
|
|
|
|
needs :cxx11
|
|
|
|
def install
|
|
ENV.cxx11 if MacOS.version < :mavericks
|
|
ENV.libcxx if build.devel?
|
|
|
|
system "2to3-", "--write", "--fix=print", "SConstruct",
|
|
"src/mongo/installer/msi/SConscript",
|
|
"src/third_party/wiredtiger/SConscript"
|
|
|
|
# New Go tools have their own build script but the server scons "install" target is still
|
|
# responsible for installing them.
|
|
Language::Go.stage_deps resources, buildpath/"src"
|
|
|
|
cd "src/github.com/mongodb/mongo-tools" do
|
|
args = %w[]
|
|
|
|
if build.with? "openssl"
|
|
args << "ssl"
|
|
ENV["LIBRARY_PATH"] = Formula["openssl"].opt_lib
|
|
ENV["CPATH"] = Formula["openssl"].opt_include
|
|
end
|
|
|
|
args << "sasl" if build.with? "sasl"
|
|
|
|
system "./build.sh", *args
|
|
end
|
|
|
|
(buildpath/"src/mongo-tools").install Dir["src/github.com/mongodb/mongo-tools/bin/*"]
|
|
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
-j#{ENV.make_jobs}
|
|
--osx-version-min=#{MacOS.version}
|
|
]
|
|
|
|
args << "CC=#{ENV.cc}"
|
|
args << "CXX=#{ENV.cxx}"
|
|
|
|
args << "--use-sasl-client" if build.with? "sasl"
|
|
args << "--use-system-boost" if build.with? "boost"
|
|
args << "--use-new-tools"
|
|
args << "--disable-warnings-as-errors" if MacOS.version >= :yosemite
|
|
|
|
if build.with? "openssl"
|
|
args << "--ssl"
|
|
|
|
args << "CCFLAGS=-I#{Formula["openssl"].opt_include}"
|
|
args << "LINKFLAGS=-L#{Formula["openssl"].opt_lib}"
|
|
end
|
|
|
|
scons "install", *args
|
|
|
|
(buildpath/"mongod.conf").write <<-EOS.undent
|
|
systemLog:
|
|
destination: file
|
|
path: #{var}/log/mongodb/mongo.log
|
|
logAppend: true
|
|
storage:
|
|
dbPath: #{var}/mongodb
|
|
net:
|
|
bindIp: 127.0.0.1
|
|
EOS
|
|
etc.install "mongod.conf"
|
|
end
|
|
|
|
def post_install
|
|
(var/"mongodb").mkpath
|
|
(var/"log/mongodb").mkpath
|
|
end
|
|
|
|
plist_options :manual => "mongod --config #{HOMEBREW_PREFIX}/etc/mongod.conf"
|
|
|
|
def plist; <<-EOS.undent
|
|
<?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>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/mongod</string>
|
|
<string>--config</string>
|
|
<string>#{etc}/mongod.conf</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>KeepAlive</key>
|
|
<false/>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{HOMEBREW_PREFIX}</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/mongodb/output.log</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/mongodb/output.log</string>
|
|
<key>HardResourceLimits</key>
|
|
<dict>
|
|
<key>NumberOfFiles</key>
|
|
<integer>4096</integer>
|
|
</dict>
|
|
<key>SoftResourceLimits</key>
|
|
<dict>
|
|
<key>NumberOfFiles</key>
|
|
<integer>4096</integer>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
begin
|
|
(testpath/"mongodb_test.js").write <<-EOS.undent
|
|
printjson(db.getCollectionNames())
|
|
// create test collection
|
|
db.test.insertOne(
|
|
{
|
|
"name": "test"
|
|
}
|
|
)
|
|
printjson(db.getCollectionNames())
|
|
// shows documents
|
|
cursor = db.test.find({})
|
|
while (cursor.hasNext()) {
|
|
printjson(cursor.next())
|
|
}
|
|
db.test.deleteMany({})
|
|
// drop test collection
|
|
db.test.drop()
|
|
printjson(db.getCollectionNames())
|
|
EOS
|
|
pid = fork do
|
|
exec "#{bin}/mongod", "--port", "27018", "--dbpath", testpath
|
|
end
|
|
sleep 1
|
|
system "#{bin}/mongo", "localhost:27018", testpath/"mongodb_test.js"
|
|
ensure
|
|
Process.kill "SIGTERM", pid
|
|
Process.wait pid
|
|
end
|
|
end
|
|
end
|