aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hudson.rb
diff options
context:
space:
mode:
authorKashif Rasul2011-01-22 22:33:11 +0100
committerAdam Vandenberg2011-02-05 12:33:02 -0800
commit8580b1c5718dea08e7dc5e3dd1e5f29a24c0d078 (patch)
treef488ed1102353ab5c45cab5e9683818bfb082dd3 /Library/Formula/hudson.rb
parent2c1798ae492be15a498414d0bbad69a89e7ecc37 (diff)
downloadhomebrew-8580b1c5718dea08e7dc5e3dd1e5f29a24c0d078.tar.bz2
Updated formula Hudson (Jenkins) to 1.396
Hudson has been renamed to Jenkins. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/hudson.rb')
-rw-r--r--Library/Formula/hudson.rb50
1 files changed, 0 insertions, 50 deletions
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 <Formula
- url 'http://ftp.osuosl.org/pub/hudson/war/1.394/hudson.war', :using => :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
-<?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>Hudson</string>
- <key>ProgramArguments</key>
- <array>
- <string>/usr/bin/java</string>
- <string>-jar</string>
- <string>#{lib}/hudson.war</string>
- </array>
- <key>RunAtLoad</key>
- <true/>
-</dict>
-</plist>
-EOS
- end
-
-end