class Mesos < Formula desc "Apache cluster manager" homepage "https://mesos.apache.org" url "https://www.apache.org/dyn/closer.cgi?path=mesos/1.8.1/mesos-1.8.1.tar.gz" mirror "https://archive.apache.org/dist/mesos/1.8.1/mesos-1.8.1.tar.gz" sha256 "583f2ad0de36c3e3ce08609a6df1a3ef1145e84f453b3d56fd8332767c3a84e7" bottle do sha256 "b5d4c1be465ac092856a0bd587eedffc1f2fa4627410a4f7fb3ec2eedec36bef" => :catalina sha256 "f3ad80347eda8b915ad3d10da9a5ed6c7d27c0cc489d05a9a87741c1e8b03ad3" => :mojave sha256 "7159fdf18c7d074c0c78b0f840317c77414da66e7b559180f4e3c88ddedf90d3" => :high_sierra sha256 "545a5649305fb8bcc6b6d9827f760a68436a3fe1b433a6eeca0a2b92bcddb36e" => :sierra end depends_on "maven" => :build depends_on "apr-util" depends_on :java => "1.8" depends_on "python@2" depends_on "subversion" conflicts_with "nanopb-generator", :because => "they depend on an incompatible version of protobuf" conflicts_with "rapidjson", :because => "mesos installs a copy of rapidjson headers" resource "protobuf" do url "https://files.pythonhosted.org/packages/1b/90/f531329e628ff34aee79b0b9523196eb7b5b6b398f112bb0c03b24ab1973/protobuf-3.6.1.tar.gz" sha256 "1489b376b0f364bcc6f89519718c057eb191d7ad6f1b395ffd93d1aa45587811" end # build dependencies for protobuf resource "six" do url "https://files.pythonhosted.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz" sha256 "70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9" end resource "python-dateutil" do url "https://files.pythonhosted.org/packages/a0/b0/a4e3241d2dee665fea11baec21389aec6886655cd4db7647ddf96c3fad15/python-dateutil-2.7.3.tar.gz" sha256 "e27001de32f627c22380a688bcc43ce83504a7bc5da472209b4c70f02829f0b8" end resource "pytz" do url "https://files.pythonhosted.org/packages/ca/a9/62f96decb1e309d6300ebe7eee9acfd7bccaeedd693794437005b9067b44/pytz-2018.5.tar.gz" sha256 "ffb9ef1de172603304d9d2819af6f5ece76f2e85ec10692a524dd876e72bf277" end resource "python-gflags" do url "https://files.pythonhosted.org/packages/df/ec/e31302d355bcb9d207d9b858adc1ecc4a6d8c855730c8ba4ddbdd3f8eb8d/python-gflags-3.1.2.tar.gz" sha256 "40ae131e899ef68e9e14aa53ca063839c34f6a168afe622217b5b875492a1ee2" end resource "google-apputils" do url "https://files.pythonhosted.org/packages/69/66/a511c428fef8591c5adfa432a257a333e0d14184b6c5d03f1450827f7fe7/google-apputils-0.4.2.tar.gz" sha256 "47959d0651c32102c10ad919b8a0ffe0ae85f44b8457ddcf2bdc0358fb03dc29" end def install # Disable optimizing as libc++ does not play well with optimized clang # builds (see https://llvm.org/bugs/show_bug.cgi?id=28469 and # https://issues.apache.org/jira/browse/MESOS-5745). # # NOTE: We cannot use `--disable-optimize` since we also pass e.g., # CXXFLAGS via environment variables. Since compiler flags are passed via # environment variables the Mesos build will silently ignore flags like # `--[disable|enable]-optimize`. ENV.O0 unless DevelopmentTools.clang_build_version >= 900 # work around to avoid `_clock_gettime` symbol not found error. if MacOS.version == "10.11" && MacOS::Xcode.version >= "8.0" ENV["ac_have_clock_syscall"] = "no" end # work around distutils abusing CC instead of using CXX # https://issues.apache.org/jira/browse/MESOS-799 # https://github.com/Homebrew/legacy-homebrew/pull/37087 native_patch = <<~EOS import os os.environ["CC"] = os.environ["CXX"] os.environ["LDFLAGS"] = "@LIBS@" \\0 EOS inreplace "src/python/executor/setup.py.in", "import ext_modules", native_patch inreplace "src/python/scheduler/setup.py.in", "import ext_modules", native_patch # skip build javadoc because Homebrew's setting user.home in _JAVA_OPTIONS # would trigger maven-javadoc-plugin bug. # https://issues.apache.org/jira/browse/MESOS-3482 maven_javadoc_patch = <<~EOS true \\0 EOS inreplace "src/java/mesos.pom.in", "http://mesos.apache.org", maven_javadoc_patch ENV.cxx11 system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--disable-silent-rules", "--with-svn=#{Formula["subversion"].opt_prefix}", "--with-apr=#{Formula["apr"].opt_libexec}", "--disable-python" system "make" system "make", "install" # The native Python modules `executor` and `scheduler` (see below) fail to # link to Subversion libraries if Homebrew isn't installed in `/usr/local`. ENV.append_to_cflags "-L#{Formula["subversion"].opt_lib}" system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--disable-silent-rules", "--with-svn=#{Formula["subversion"].opt_prefix}", "--with-apr=#{Formula["apr"].opt_libexec}", "--enable-python" ["native", "interface", "executor", "scheduler", "cli", ""].each do |p| cd "src/python/#{p}" do system "python", *Language::Python.setup_install_args(prefix) end end # stage protobuf build dependencies ENV.prepend_create_path "PYTHONPATH", buildpath/"protobuf/lib/python2.7/site-packages" %w[python-dateutil pytz python-gflags google-apputils].each do |r| resource(r).stage do system "python", *Language::Python.setup_install_args(buildpath/"protobuf") end end protobuf_path = libexec/"protobuf/lib/python2.7/site-packages" ENV.prepend_create_path "PYTHONPATH", protobuf_path %w[six protobuf].each do |r| resource(r).stage do if r == "protobuf" ln_s buildpath/"protobuf/lib/python2.7/site-packages/google/apputils", "google/apputils" end system "python", *Language::Python.setup_install_args(libexec/"protobuf") end end pth_contents = "import site; site.addsitedir('#{protobuf_path}')\n" (lib/"python2.7/site-packages/homebrew-mesos-protobuf.pth").write pth_contents bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env("1.8")) sbin.env_script_all_files(libexec/"sbin", Language::Java.java_home_env("1.8")) end test do assert_match version.to_s, shell_output("#{sbin}/mesos-agent --version") assert_match version.to_s, shell_output("#{sbin}/mesos-master --version") assert_match "Usage: mesos", shell_output("#{bin}/mesos 2>&1", 1) system "python", "-c", "import mesos.native" end end