class Uwsgi < Formula desc "Full stack for building hosting services" homepage "https://uwsgi-docs.readthedocs.org/en/latest/" url "https://projects.unbit.it/downloads/uwsgi-2.0.15.tar.gz" sha256 "572ef9696b97595b4f44f6198fe8c06e6f4e6351d930d22e5330b071391272ff" head "https://github.com/unbit/uwsgi.git" bottle do sha256 "8982dbb85719c513bc74910a43d89c88892a9677e53711cdee7ae369c660e46c" => :high_sierra sha256 "09cd8cf501bb7ffd6dc1ce48628c80798700d3b79e329321e59c98a6e3d127e1" => :sierra sha256 "94d275b2699c23828ff7610372a3b6b5ff11ec63222eba33db6de22adb806424" => :el_capitan sha256 "986cb7457249c53bf40df451f39675a8871fdefe1f111ae7e02eb70a89404ab5" => :yosemite end option "with-java", "Compile with Java support" option "with-ruby", "Compile with Ruby support" deprecated_option "with-lua51" => "with-lua@5.1" depends_on "pkg-config" => :build depends_on "pcre" depends_on "openssl" depends_on :python if MacOS.version <= :snow_leopard depends_on "geoip" => :optional depends_on "gloox" => :optional depends_on "go" => [:build, :optional] depends_on "jansson" => :optional depends_on "libffi" => :optional depends_on "libxslt" => :optional depends_on "libyaml" => :optional depends_on "lua@5.1" => :optional depends_on "mongodb" => :optional depends_on "mongrel2" => :optional depends_on "mono" => :optional depends_on "nagios" => :optional depends_on "postgresql" => :optional depends_on "pypy" => :optional depends_on "python" => :optional depends_on "python3" => :optional depends_on "rrdtool" => :optional depends_on "rsyslog" => :optional depends_on "tcc" => :optional depends_on "v8" => :optional depends_on "zeromq" => :optional depends_on "yajl" if build.without? "jansson" # "no such file or directory: '... libpython2.7.a'" # Reported 23 Jun 2016: https://github.com/unbit/uwsgi/issues/1299 patch do url "https://raw.githubusercontent.com/Homebrew/formula-patches/726bff4/uwsgi/libpython-tbd-xcode-sdk.diff" sha256 "d71c879774b32424b5a9051ff47d3ae6e005412e9214675d806857ec906f9336" end def install ENV.append %w[CFLAGS LDFLAGS], "-arch #{MacOS.preferred_arch}" openssl = Formula["openssl"] ENV.prepend "CFLAGS", "-I#{openssl.opt_include}" ENV.prepend "LDFLAGS", "-L#{openssl.opt_lib}" json = build.with?("jansson") ? "jansson" : "yajl" yaml = build.with?("libyaml") ? "libyaml" : "embedded" (buildpath/"buildconf/brew.ini").write <<~EOS [uwsgi] ssl = true json = #{json} yaml = #{yaml} inherit = base plugin_dir = #{libexec}/uwsgi embedded_plugins = null EOS system "python", "uwsgiconfig.py", "--verbose", "--build", "brew" plugins = %w[airbrake alarm_curl alarm_speech asyncio cache carbon cgi cheaper_backlog2 cheaper_busyness corerouter curl_cron cplusplus dumbloop dummy echo emperor_amqp fastrouter forkptyrouter gevent http logcrypto logfile ldap logpipe logsocket msgpack notfound pam ping psgi pty rawrouter router_basicauth router_cache router_expires router_hash router_http router_memcached router_metrics router_radius router_redirect router_redis router_rewrite router_static router_uwsgi router_xmldir rpc signal spooler sqlite3 sslrouter stats_pusher_file stats_pusher_socket symcall syslog transformation_chunked transformation_gzip transformation_offload transformation_tofile transformation_toupper ugreen webdav zergpool] plugins << "alarm_xmpp" if build.with? "gloox" plugins << "emperor_mongodb" if build.with? "mongodb" plugins << "emperor_pg" if build.with? "postgresql" plugins << "ffi" if build.with? "libffi" plugins << "fiber" if build.with? "ruby" plugins << "gccgo" if build.with? "go" plugins << "geoip" if build.with? "geoip" plugins << "jvm" if build.with? "java" plugins << "jwsgi" if build.with? "java" plugins << "libtcc" if build.with? "tcc" plugins << "lua" if build.with? "lua@5.1" plugins << "mongodb" if build.with? "mongodb" plugins << "mongodblog" if build.with? "mongodb" plugins << "mongrel2" if build.with? "mongrel2" plugins << "mono" if build.with? "mono" plugins << "nagios" if build.with? "nagios" plugins << "pypy" if build.with? "pypy" plugins << "rack" if build.with? "ruby" plugins << "rbthreads" if build.with? "ruby" plugins << "ring" if build.with? "java" plugins << "rrdtool" if build.with? "rrdtool" plugins << "rsyslog" if build.with? "rsyslog" plugins << "servlet" if build.with? "java" plugins << "stats_pusher_mongodb" if build.with? "mongodb" plugins << "v8" if build.with? "v8" plugins << "xslt" if build.with? "libxslt" (libexec/"uwsgi").mkpath plugins.each do |plugin| system "python", "uwsgiconfig.py", "--verbose", "--plugin", "plugins/#{plugin}", "brew" end python_versions = { "python"=>"python", "python2"=>"python", } python_versions["python3"] = "python3" if build.with? "python3" python_versions.each do |k, v| system v, "uwsgiconfig.py", "--verbose", "--plugin", "plugins/python", "brew", k end bin.install "uwsgi" end plist_options :manual => "uwsgi" def plist; <<~EOS Label #{plist_name} RunAtLoad KeepAlive ProgramArguments #{opt_bin}/uwsgi --uid _www --gid _www --master --die-on-term --autoload --logto #{HOMEBREW_PREFIX}/var/log/uwsgi.log --emperor #{HOMEBREW_PREFIX}/etc/uwsgi/apps-enabled WorkingDirectory #{HOMEBREW_PREFIX} EOS end test do (testpath/"helloworld.py").write <<~EOS def application(env, start_response): start_response('200 OK', [('Content-Type','text/html')]) return [b"Hello World"] EOS pid = fork do exec "#{bin}/uwsgi --http-socket 127.0.0.1:8080 --protocol=http --plugin python -w helloworld" end sleep 2 begin assert_match "Hello World", shell_output("curl localhost:8080") ensure Process.kill("SIGINT", pid) Process.wait(pid) end end end