94 lines
2.9 KiB
Ruby
94 lines
2.9 KiB
Ruby
class Supervisor < Formula
|
|
include Language::Python::Virtualenv
|
|
|
|
desc "Process Control System"
|
|
homepage "http://supervisord.org/"
|
|
url "https://github.com/Supervisor/supervisor/archive/3.3.1.tar.gz"
|
|
sha256 "454f532fae5a54363838fba42bc568f7b2fd0fd71d946b8c39d848a225d0da0f"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "f5dfbd7f65cc792d05dbe7f4ae4d4eb2378c3572ee88434990c6d88eaaf96c20" => :sierra
|
|
sha256 "920599306afc192e6c0dd6a2b5357ad04adf141d617b7279e1aa70497e79a6c9" => :el_capitan
|
|
sha256 "3de17d476d3b0eb0ccefb3b6ead1ed12a973e0b98dd489f6250f06d5f0552cb2" => :yosemite
|
|
sha256 "128cffecdcff84b578905be655dbbeeb82f1b0e3a49fafeab833b97b8fb58f83" => :mavericks
|
|
end
|
|
|
|
depends_on :python if MacOS.version <= :snow_leopard
|
|
|
|
resource "meld3" do
|
|
url "https://pypi.python.org/packages/source/m/meld3/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
|
|
<?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>KeepAlive</key>
|
|
<dict>
|
|
<key>SuccessfulExit</key>
|
|
<false/>
|
|
</dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/supervisord</string>
|
|
<string>-c</string>
|
|
<string>#{etc}/supervisord.ini</string>
|
|
<string>--nodaemon</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|
|
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
|