class Passenger < Formula desc "Server for Ruby, Python, and Node.js apps via Apache/NGINX" homepage "https://www.phusionpassenger.com/" url "https://github.com/phusion/passenger/releases/download/release-6.0.15/passenger-6.0.15.tar.gz" sha256 "73fa22da5a11e4bc4ad6b95c13a0e393ba18109e6e07bd1953c45b2f0c0aae80" license "MIT" head "https://github.com/phusion/passenger.git", branch: "stable-6.0" bottle do sha256 cellar: :any, arm64_monterey: "30ca87f65637ae749e91b23eef5f5060ffae0ebe6c12defaf07d48992ede5a96" sha256 cellar: :any, arm64_big_sur: "32d68c779c14d55c89a1593f7c2d831824e79823708b3b86fce97b953feacd34" sha256 cellar: :any, monterey: "b45efaddefae562a3569ce74b2369c2b06b81f4b1cc9adb393e4796b6d5696c9" sha256 cellar: :any, big_sur: "aba6008dc8c00ab17478e05ed758aa29f9450aa008ab0ec5a1f9d2b6bb8f7037" sha256 cellar: :any, catalina: "f81964810fdd5f7dd95bb1f7ffa51ee93b62222a6bf41111c7a57e3bd0564a05" sha256 cellar: :any_skip_relocation, x86_64_linux: "5d8bdedca5284c38aaad585d619df6816f52ab734111338b00344ed143e19ded" end depends_on "httpd" => :build # to build the apache2 module depends_on "nginx" => [:build, :test] # to build nginx module depends_on "apr" depends_on "apr-util" depends_on "openssl@1.1" depends_on "pcre" uses_from_macos "xz" => :build uses_from_macos "curl" uses_from_macos "libxcrypt" uses_from_macos "ruby", since: :catalina def install if MacOS.version >= :mojave && MacOS::CLT.installed? ENV["SDKROOT"] = MacOS::CLT.sdk_path(MacOS.version) else ENV.delete("SDKROOT") end inreplace "src/ruby_supportlib/phusion_passenger/platform_info/openssl.rb" do |s| s.gsub! "-I/usr/local/opt/openssl/include", "-I#{Formula["openssl@1.1"].opt_include}" s.gsub! "-L/usr/local/opt/openssl/lib", "-L#{Formula["openssl@1.1"].opt_lib}" end system "rake", "apache2" system "rake", "nginx" nginx_addon_dir = `./bin/passenger-config about nginx-addon-dir`.strip mkdir "nginx" do system "tar", "-xf", "#{Formula["nginx"].opt_pkgshare}/src/src.tar.xz", "--strip-components", "1" args = (Formula["nginx"].opt_pkgshare/"src/configure_args.txt").read.split("\n") args << "--add-dynamic-module=#{nginx_addon_dir}" system "./configure", *args system "make" (libexec/"modules").install "objs/ngx_http_passenger_module.so" end (libexec/"download_cache").mkpath # Fixes https://github.com/phusion/passenger/issues/1288 rm_rf "buildout/libev" rm_rf "buildout/libuv" rm_rf "buildout/cache" necessary_files = %w[configure Rakefile README.md CONTRIBUTORS CONTRIBUTING.md LICENSE CHANGELOG package.json passenger.gemspec build bin doc images dev src resources buildout] cp_r necessary_files, libexec, preserve: true # Allow Homebrew to create symlinks for the Phusion Passenger commands. bin.install_symlink Dir["#{libexec}/bin/*"] # Ensure that the Phusion Passenger commands can always find their library # files. locations_ini = `./bin/passenger-config --make-locations-ini --for-native-packaging-method=homebrew` locations_ini.gsub!(/=#{Regexp.escape Dir.pwd}/, "=#{libexec}") (libexec/"src/ruby_supportlib/phusion_passenger/locations.ini").write(locations_ini) ruby_libdir = `./bin/passenger-config about ruby-libdir`.strip ruby_libdir.gsub!(/^#{Regexp.escape Dir.pwd}/, libexec) system "./dev/install_scripts_bootstrap_code.rb", "--ruby", ruby_libdir, *Dir[libexec/"bin/*"] system "./bin/passenger-config", "compile-nginx-engine" cp Dir["buildout/support-binaries/nginx*"], libexec/"buildout/support-binaries", preserve: true nginx_addon_dir.gsub!(/^#{Regexp.escape Dir.pwd}/, libexec) system "./dev/install_scripts_bootstrap_code.rb", "--nginx-module-config", libexec/"bin", "#{nginx_addon_dir}/config" man1.install Dir["man/*.1"] man8.install Dir["man/*.8"] # See https://github.com/Homebrew/homebrew-core/pull/84379#issuecomment-910179525 deuniversalize_machos end def caveats <<~EOS To activate Phusion Passenger for Nginx, run: brew install nginx And add the following to #{etc}/nginx/nginx.conf at the top scope (outside http{}): load_module #{opt_libexec}/modules/ngx_http_passenger_module.so; And add the following to #{etc}/nginx/nginx.conf in the http scope: passenger_root #{opt_libexec}/src/ruby_supportlib/phusion_passenger/locations.ini; passenger_ruby /usr/bin/ruby; To activate Phusion Passenger for Apache, create /etc/apache2/other/passenger.conf: LoadModule passenger_module #{opt_libexec}/buildout/apache2/mod_passenger.so PassengerRoot #{opt_libexec}/src/ruby_supportlib/phusion_passenger/locations.ini PassengerDefaultRuby /usr/bin/ruby EOS end test do ruby_libdir = `#{HOMEBREW_PREFIX}/bin/passenger-config --ruby-libdir`.strip assert_equal "#{libexec}/src/ruby_supportlib", ruby_libdir (testpath/"nginx.conf").write <<~EOS load_module #{opt_libexec}/modules/ngx_http_passenger_module.so; worker_processes 4; error_log #{testpath}/error.log; pid #{testpath}/nginx.pid; events { worker_connections 1024; } http { passenger_root #{opt_libexec}/src/ruby_supportlib/phusion_passenger/locations.ini; passenger_ruby /usr/bin/ruby; client_body_temp_path #{testpath}/client_body_temp; fastcgi_temp_path #{testpath}/fastcgi_temp; proxy_temp_path #{testpath}/proxy_temp; scgi_temp_path #{testpath}/scgi_temp; uwsgi_temp_path #{testpath}/uwsgi_temp; passenger_temp_path #{testpath}/passenger_temp; server { passenger_enabled on; listen 8080; root #{testpath}; access_log #{testpath}/access.log; error_log #{testpath}/error.log; } } EOS system "#{Formula["nginx"].opt_bin}/nginx", "-t", "-c", testpath/"nginx.conf" end end