021ed0c0b0
[rephrase README\.md in regard of github complaint · gitbucket/gitbucket@93786f0](93786f0fd6
)
Closes Homebrew/homebrew#50112.
Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
62 lines
1.6 KiB
Ruby
62 lines
1.6 KiB
Ruby
class Gitbucket < Formula
|
|
desc "Git platform powered by Scala offering"
|
|
homepage "https://github.com/gitbucket/gitbucket"
|
|
url "https://github.com/gitbucket/gitbucket/releases/download/3.12/gitbucket.war"
|
|
sha256 "f060c2326b19cd7dc9d1865109fc1801611c551695f427a4d2c1372209eed3c9"
|
|
|
|
head do
|
|
url "https://github.com/gitbucket/gitbucket.git"
|
|
depends_on :ant => :build
|
|
end
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on :java => "1.8+"
|
|
|
|
def install
|
|
if build.head?
|
|
system "ant"
|
|
libexec.install "war/target/gitbucket.war", "."
|
|
else
|
|
libexec.install "gitbucket.war"
|
|
end
|
|
end
|
|
|
|
plist_options :manual => "java -jar #{HOMEBREW_PREFIX}/opt/gitbucket/libexec/gitbucket.war"
|
|
|
|
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>Label</key>
|
|
<string>gitbucket</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>/usr/bin/java</string>
|
|
<string>-Dmail.smtp.starttls.enable=true</string>
|
|
<string>-jar</string>
|
|
<string>#{opt_libexec}/gitbucket.war</string>
|
|
<string>--host=127.0.0.1</string>
|
|
<string>--port=8080</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Note: When using launchctl the port will be 8080.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
io = IO.popen("java -jar #{libexec}/gitbucket.war")
|
|
sleep 12
|
|
Process.kill("SIGINT", io.pid)
|
|
Process.wait(io.pid)
|
|
io.read !~ /Exception/
|
|
end
|
|
end
|