72 lines
2.4 KiB
Ruby
72 lines
2.4 KiB
Ruby
class SolrAT77 < Formula
|
|
desc "Enterprise search platform from the Apache Lucene project"
|
|
homepage "https://solr.apache.org"
|
|
url "https://www.apache.org/dyn/closer.lua?path=lucene/solr/7.7.3/solr-7.7.3.tgz"
|
|
mirror "https://archive.apache.org/dist/lucene/solr/7.7.3/solr-7.7.3.tgz"
|
|
sha256 "3ec67fa430afa5b5eb43bb1cd4a659e56ee9f8541e0116d6080c0d783870baee"
|
|
license "Apache-2.0"
|
|
revision 1
|
|
|
|
# Remove the `livecheck` block (so the check is automatically skipped) once
|
|
# the 7.7.x series is reported as EOL on the first-party downloads page:
|
|
# https://solr.apache.org/downloads.html#about-versions-and-support
|
|
livecheck do
|
|
url "https://solr.apache.org/downloads.html"
|
|
regex(/href=.*?solr[._-]v?(7(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 cellar: :any_skip_relocation, all: "d6c1393dd7b6230c255ad1d2c632b542eb9a7d569e24661acf9d8cd14e5967c1"
|
|
end
|
|
|
|
keg_only :versioned_formula
|
|
|
|
depends_on "openjdk@11"
|
|
|
|
def install
|
|
pkgshare.install "bin/solr.in.sh"
|
|
(var/"lib/solr").install "server/solr/README.txt", "server/solr/solr.xml", "server/solr/zoo.cfg"
|
|
prefix.install %w[contrib dist server]
|
|
libexec.install "bin"
|
|
bin.install [libexec/"bin/solr", libexec/"bin/post", libexec/"bin/oom_solr.sh"]
|
|
|
|
env = Language::Java.overridable_java_home_env("11")
|
|
env["SOLR_HOME"] = "${SOLR_HOME:-#{var/"lib/solr"}}"
|
|
env["SOLR_LOGS_DIR"] = "${SOLR_LOGS_DIR:-#{var/"log/solr"}}"
|
|
env["SOLR_PID_DIR"] = "${SOLR_PID_DIR:-#{var/"run/solr"}}"
|
|
bin.env_script_all_files libexec, env
|
|
(libexec/"bin").rmtree
|
|
|
|
inreplace libexec/"solr", "/usr/local/share/solr", pkgshare
|
|
end
|
|
|
|
def post_install
|
|
(var/"run/solr").mkpath
|
|
(var/"log/solr").mkpath
|
|
end
|
|
|
|
service do
|
|
run [opt_bin/"solr", "start", "-f"]
|
|
working_dir HOMEBREW_PREFIX
|
|
end
|
|
|
|
test do
|
|
ENV["SOLR_PID_DIR"] = testpath
|
|
port = free_port
|
|
|
|
# Info detects no Solr node => exit code 3
|
|
shell_output(bin/"solr -i", 3)
|
|
# Start a Solr node => exit code 0
|
|
shell_output(bin/"solr start -p #{port} -Djava.io.tmpdir=/tmp")
|
|
# Info detects a Solr node => exit code 0
|
|
shell_output(bin/"solr -i")
|
|
# Impossible to start a second Solr node on the same port => exit code 1
|
|
shell_output(bin/"solr start -p #{port}", 1)
|
|
# Stop a Solr node => exit code 0
|
|
shell_output(bin/"solr stop -p #{port}")
|
|
# No Solr node left to stop => exit code 1
|
|
shell_output(bin/"solr stop -p #{port}", 1)
|
|
end
|
|
end
|