require "language/go" class MongodbAT30 < Formula desc "High-performance document-oriented database" homepage "https://www.mongodb.org/" url "https://fastdl.mongodb.org/src/mongodb-src-r3.0.12.tar.gz" sha256 "b9bea5e3d59b93775d5d55fb1dd161272aeefa193c2311a8f6722ad46d7a21ab" bottle do cellar :any_skip_relocation rebuild 1 sha256 "6805bd1eb565e8b5b48810348a7ed4c410009de7bc5e062470482a749c47a30c" => :high_sierra sha256 "482b9f03fea1569cb7dd0c878cb7c1417f64b35974cd12c37c0e7d8fe572149d" => :sierra sha256 "090305029d61bc61eae930cb293b670078cd337ac937ac6b7eb92ead1eb0782b" => :el_capitan end keg_only :versioned_formula option "with-boost", "Compile using installed boost, not the version shipped with mongodb" needs :cxx11 depends_on "boost" => :optional depends_on "go" => :build depends_on :macos => :mountain_lion depends_on "scons" => :build depends_on "openssl" => :optional go_resource "github.com/mongodb/mongo-tools" do url "https://github.com/mongodb/mongo-tools.git", :tag => "r3.0.12", :revision => "81c527a658a687b83564dfb9767df64420e9bcab" end def install ENV.cxx11 if MacOS.version < :mavericks # 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 # https://github.com/Homebrew/homebrew/issues/40136 inreplace "build.sh", '-ldflags "-X github.com/mongodb/mongo-tools/common/options.Gitspec=`git rev-parse HEAD` -X github.com/mongodb/mongo-tools/common/options.VersionStr=$(git describe)"', "" args = %w[] if build.with? "openssl" args << "ssl" ENV["LIBRARY_PATH"] = "#{Formula["openssl"].opt_prefix}/lib" ENV["CPATH"] = "#{Formula["openssl"].opt_prefix}/include" end system "./build.sh", *args end mkdir "src/mongo-tools" cp Dir["src/github.com/mongodb/mongo-tools/bin/*"], "src/mongo-tools/" args = %W[ --prefix=#{prefix} -j#{ENV.make_jobs} --osx-version-min=#{MacOS.version} --cc=#{ENV.cc} --cxx=#{ENV.cxx} ] 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" << "--extrapath=#{Formula["openssl"].opt_prefix}" end scons "install", *args (buildpath+"mongod.conf").write mongodb_conf etc.install "mongod.conf" (var+"mongodb").mkpath (var+"log/mongodb").mkpath end def mongodb_conf; <<~EOS systemLog: destination: file path: #{var}/log/mongodb/mongo.log logAppend: true storage: dbPath: #{var}/mongodb net: bindIp: 127.0.0.1 EOS 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 system "#{bin}/mongod", "--sysinfo" end end