From 8580b1c5718dea08e7dc5e3dd1e5f29a24c0d078 Mon Sep 17 00:00:00 2001 From: Kashif Rasul Date: Sat, 22 Jan 2011 22:33:11 +0100 Subject: Updated formula Hudson (Jenkins) to 1.396 Hudson has been renamed to Jenkins. Signed-off-by: Adam Vandenberg --- Library/Aliases/hudson | 1 + Library/Formula/hudson.rb | 50 ---------------------------------------------- Library/Formula/jenkins.rb | 50 ++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+), 50 deletions(-) create mode 120000 Library/Aliases/hudson delete mode 100644 Library/Formula/hudson.rb create mode 100644 Library/Formula/jenkins.rb diff --git a/Library/Aliases/hudson b/Library/Aliases/hudson new file mode 120000 index 000000000..9ef7d642f --- /dev/null +++ b/Library/Aliases/hudson @@ -0,0 +1 @@ +../Formula/jenkins.rb \ No newline at end of file diff --git a/Library/Formula/hudson.rb b/Library/Formula/hudson.rb deleted file mode 100644 index 157c33080..000000000 --- a/Library/Formula/hudson.rb +++ /dev/null @@ -1,50 +0,0 @@ -require 'formula' - -class Hudson :nounzip - version '1.394' - md5 'be0f2246315dc0964a5f1ba519371230' - homepage 'http://hudson-ci.org' - - def install - lib.install "hudson.war" - (prefix+'org.hudson-ci.plist').write startup_plist - end - - def caveats; <<-EOS -If this is your first install, automatically load on login with: - cp #{prefix}/org.hudson-ci.plist ~/Library/LaunchAgents - launchctl load -w ~/Library/LaunchAgents/org.hudson-ci.plist - -If this is an upgrade and you already have the org.hudson-ci.plist loaded: - launchctl unload -w ~/Library/LaunchAgents/org.hudson-ci.plist - cp #{prefix}/org.hudson-ci.plist ~/Library/LaunchAgents - launchctl load -w ~/Library/LaunchAgents/org.hudson-ci.plist - -Or start it manually: - java -jar #{lib}/hudson.war -EOS - end - - def startup_plist - return <<-EOS - - - - - Label - Hudson - ProgramArguments - - /usr/bin/java - -jar - #{lib}/hudson.war - - RunAtLoad - - - -EOS - end - -end diff --git a/Library/Formula/jenkins.rb b/Library/Formula/jenkins.rb new file mode 100644 index 000000000..1d247c89b --- /dev/null +++ b/Library/Formula/jenkins.rb @@ -0,0 +1,50 @@ +require 'formula' + +class Jenkins :nounzip + version '1.396' + md5 '57655337809c93e40fbad9d1535215ff' + homepage 'http://jenkins-ci.org' + + def install + lib.install "jenkins.war" + (prefix+'org.jenkins-ci.plist').write startup_plist + end + + def caveats; <<-EOS +If this is your first install, automatically load on login with: + cp #{prefix}/org.jenkins-ci.plist ~/Library/LaunchAgents + launchctl load -w ~/Library/LaunchAgents/org.jenkins-ci.plist + +If this is an upgrade and you already have the org.jenkins-ci.plist loaded: + launchctl unload -w ~/Library/LaunchAgents/org.jenkins-ci.plist + cp #{prefix}/org.jenkins-ci.plist ~/Library/LaunchAgents + launchctl load -w ~/Library/LaunchAgents/org.jenkins-ci.plist + +Or start it manually: + java -jar #{lib}/jenkins.war +EOS + end + + def startup_plist + return <<-EOS + + + + + Label + Jenkins + ProgramArguments + + /usr/bin/java + -jar + #{lib}/jenkins.war + + RunAtLoad + + + +EOS + end + +end -- cgit v1.2.3