class PerconaServerMongodb < Formula desc "Drop-in MongoDB replacement" homepage "https://www.percona.com" url "https://www.percona.com/downloads/percona-server-mongodb-3.6/percona-server-mongodb-3.6.3-1.1/source/tarball/percona-server-mongodb-3.6.3-1.1.tar.gz" version "3.6.3-1.1" sha256 "d6639737b45d5617d49fd7bd1b7b610fe64fe96c8a32c2d4fa3d1b6f74124d0b" bottle do sha256 "a968b611a6532ac1739bc61cadbcc4d2e59f8524a876a5cfc17f79cc7b41dd85" => :high_sierra sha256 "a5820f428042091854482e2486fdc1d06d715534e664038edd79ed5f19b289e5" => :sierra 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 => :sierra depends_on "scons" => :build depends_on "openssl" => :recommended conflicts_with "mongodb", :because => "percona-server-mongodb and mongodb install the same binaries." resource "Cheetah" do url "https://files.pythonhosted.org/packages/cd/b0/c2d700252fc251e91c08639ff41a8a5203b627f4e0a2ae18a6b662ab32ea/Cheetah-2.4.4.tar.gz" sha256 "be308229f0c1e5e5af4f27d7ee06d90bb19e6af3059794e5fd536a6f29a9b550" end resource "PyYAML" do url "https://files.pythonhosted.org/packages/4a/85/db5a2df477072b2902b0eb892feb37d88ac635d36245a72a6a69b23b383a/PyYAML-3.12.tar.gz" sha256 "592766c6303207a20efc445587778322d7f73b161bd994f227adaa341ba212ab" end resource "typing" do url "https://files.pythonhosted.org/packages/ec/cc/28444132a25c113149cec54618abc909596f0b272a74c55bab9593f8876c/typing-3.6.4.tar.gz" sha256 "d400a9344254803a2368533e4533a4200d21eb7b6b729c173bc38201a74db3f2" end def install ["Cheetah", "PyYAML", "typing"].each do |r| resource(r).stage do system "python", *Language::Python.setup_install_args(buildpath/"vendor") end end (buildpath/".brew_home/Library/Python/2.7/lib/python/site-packages/vendor.pth").write <<~EOS import site; site.addsitedir("#{buildpath}/vendor/lib/python2.7/site-packages") EOS # New Go tools have their own build script but the server scons "install" target is still # responsible for installing them. cd "src/mongo/gotools" do inreplace "build.sh" do |s| s.gsub! "$(git describe)", version.to_s.split("-")[0] s.gsub! "$(git rev-parse HEAD)", "homebrew" end 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/mongo/gotools/bin/*"] args = %W[ --prefix=#{prefix} -j#{ENV.make_jobs} ] 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 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 Label #{plist_name} ProgramArguments #{opt_bin}/mongod --config #{etc}/mongod.conf RunAtLoad KeepAlive WorkingDirectory #{HOMEBREW_PREFIX} StandardErrorPath #{var}/log/mongodb/output.log StandardOutPath #{var}/log/mongodb/output.log HardResourceLimits NumberOfFiles 4096 SoftResourceLimits NumberOfFiles 4096 EOS end test do begin (testpath/"mongodb_test.js").write <<~EOS 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