homebrew-core/Formula/uwsgi.rb

112 lines
3.9 KiB
Ruby

class Uwsgi < Formula
desc "Full stack for building hosting services"
homepage "https://uwsgi-docs.readthedocs.io/en/latest/"
url "https://files.pythonhosted.org/packages/24/fd/93851e4a076719199868d4c918cc93a52742e68370188c1c570a6e42a54f/uwsgi-2.0.20.tar.gz"
sha256 "88ab9867d8973d8ae84719cf233b7dafc54326fcaec89683c3f9f77c002cdff9"
license "GPL-2.0-or-later"
revision 3
head "https://github.com/unbit/uwsgi.git", branch: "master"
bottle do
sha256 arm64_monterey: "98911a326660ac4933704e55f18870fded66510589b4877ed9b1a94ab5eaa844"
sha256 arm64_big_sur: "afbb87515a90172ba750d50aa6cc7a70e5474097e48dd1869b118f44af68dcb0"
sha256 monterey: "592e723dbcc07ddf01595c6091d09402bcc602f16215f10171d2b896c5c3b93d"
sha256 big_sur: "ad77d774701e00d4093050ef9cba6c102d25dac74f92a2da9c0567c468f404e8"
sha256 catalina: "fdbd90d384701b126aa746e83ecb7d6060d5f5a5e129cf06de17e2356f513d6e"
sha256 x86_64_linux: "183c028e7b123a7b50e5e747eefd741179c0c24dd2d5098600b75282517595fd"
end
depends_on "pkg-config" => :build
depends_on "openssl@1.1"
depends_on "pcre"
depends_on "python@3.10"
depends_on "yajl"
uses_from_macos "curl"
uses_from_macos "libxcrypt"
uses_from_macos "libxml2"
uses_from_macos "openldap"
uses_from_macos "perl"
on_linux do
depends_on "linux-pam"
end
def install
openssl = Formula["openssl@1.1"]
ENV.prepend "CFLAGS", "-I#{openssl.opt_include}"
ENV.prepend "LDFLAGS", "-L#{openssl.opt_lib}"
(buildpath/"buildconf/brew.ini").write <<~EOS
[uwsgi]
ssl = true
json = yajl
xml = libxml2
yaml = embedded
inherit = base
plugin_dir = #{libexec}/uwsgi
embedded_plugins = null
EOS
python3 = "python3.10"
system python3, "uwsgiconfig.py", "--verbose", "--build", "brew"
plugins = %w[airbrake alarm_curl asyncio cache
carbon cgi cheaper_backlog2 cheaper_busyness
corerouter curl_cron 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_speech" if OS.mac?
plugins << "cplusplus" if OS.linux?
(libexec/"uwsgi").mkpath
plugins.each do |plugin|
system python3, "uwsgiconfig.py", "--verbose", "--plugin", "plugins/#{plugin}", "brew"
end
system python3, "uwsgiconfig.py", "--verbose", "--plugin", "plugins/python", "brew", "python3"
bin.install "uwsgi"
end
service do
run [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"]
keep_alive true
working_dir HOMEBREW_PREFIX
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
port = free_port
pid = fork do
exec "#{bin}/uwsgi --http-socket 127.0.0.1:#{port} --protocol=http --plugin python3 -w helloworld"
end
sleep 2
begin
assert_match "Hello World", shell_output("curl localhost:#{port}")
ensure
Process.kill("SIGINT", pid)
Process.wait(pid)
end
end
end