class Supervisor < Formula include Language::Python::Virtualenv desc "Process Control System" homepage "http://supervisord.org/" url "https://github.com/Supervisor/supervisor/archive/3.3.3.tar.gz" sha256 "cb835ee21a755d32396f5ccb40daa4ce8bb4a24d92f8bf3f25d3a76ba2fb0bc3" bottle do cellar :any_skip_relocation sha256 "f6f7aff7531170eb3fcf54066dfd485a2e0e4fe13323a881fa21193a74db9277" => :high_sierra sha256 "ca6e0a9584230313a3e9080600b3dcb60b669a1122619c14096dd65308b5fec4" => :sierra sha256 "67c6110abfcc4b9a53a4143bad1fe12259a41c7fee96400e15e231c4cfd21aa3" => :el_capitan sha256 "4070b89b70cbdb2c9a68214fb4bc03f8b8363e33c9f7fde8b782f6f057d87e57" => :yosemite end depends_on :python if MacOS.version <= :snow_leopard resource "meld3" do url "https://files.pythonhosted.org/packages/45/a0/317c6422b26c12fe0161e936fc35f36552069ba8e6f7ecbd99bbffe32a5f/meld3-1.0.2.tar.gz" sha256 "f7b754a0fde7a4429b2ebe49409db240b5699385a572501bb0d5627d299f9558" end def install inreplace buildpath/"supervisor/skel/sample.conf" do |s| s.gsub! %r{/tmp/supervisor\.sock}, var/"run/supervisor.sock" s.gsub! %r{/tmp/supervisord\.log}, var/"log/supervisord.log" s.gsub! %r{/tmp/supervisord\.pid}, var/"run/supervisord.pid" s.gsub! /^;\[include\]$/, "[include]" s.gsub! %r{^;files = relative/directory/\*\.ini$}, "files = #{etc}/supervisor.d/*.ini" end virtualenv_install_with_resources etc.install buildpath/"supervisor/skel/sample.conf" => "supervisord.ini" end plist_options :manual => "supervisord -c #{HOMEBREW_PREFIX}/etc/supervisord.ini" def plist <<-EOS.undent KeepAlive SuccessfulExit Label #{plist_name} ProgramArguments #{opt_bin}/supervisord -c #{etc}/supervisord.ini --nodaemon EOS end def post_install (var/"run").mkpath (var/"log").mkpath end test do (testpath/"sd.ini").write <<-EOS.undent [unix_http_server] file=supervisor.sock [supervisord] loglevel=debug [rpcinterface:supervisor] supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface [supervisorctl] serverurl=unix://supervisor.sock EOS begin pid = fork { exec bin/"supervisord", "--nodaemon", "-c", "sd.ini" } sleep 1 output = shell_output("#{bin}/supervisorctl -c sd.ini version") assert_match version.to_s, output ensure Process.kill "TERM", pid end end end