aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-08-03 10:29:19 -0700
committerAdam Vandenberg2013-08-03 10:29:19 -0700
commit74c7494126836b037b96c8e8f7ccffd5aeed2133 (patch)
tree4a8151776620a1bf4447b18450330a38db48ef56 /Library
parent90ccfc36e614e068591e2fe1909dd83fdd71388b (diff)
downloadhomebrew-74c7494126836b037b96c8e8f7ccffd5aeed2133.tar.bz2
Move perforce brews to homebrew-binary
Closes #19774.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/perforce-proxy.rb58
-rw-r--r--Library/Formula/perforce-server.rb50
-rw-r--r--Library/Formula/perforce.rb19
3 files changed, 0 insertions, 127 deletions
diff --git a/Library/Formula/perforce-proxy.rb b/Library/Formula/perforce-proxy.rb
deleted file mode 100644
index 351c93053..000000000
--- a/Library/Formula/perforce-proxy.rb
+++ /dev/null
@@ -1,58 +0,0 @@
-require 'formula'
-
-class PerforceProxy < Formula
- homepage 'http://www.perforce.com/'
-
- if MacOS.prefer_64_bit?
- url 'http://filehost.perforce.com/perforce/r12.2/bin.darwin90x86_64/p4p'
- version '2012.2.631250-x86_64'
- sha1 '573fc8cc97e6705e93b9a3c54b46ce832d970850'
- else
- url 'http://filehost.perforce.com/perforce/r12.2/bin.darwin90x86/p4p'
- version '2012.2.631250-x86'
- sha1 '20ad474618670fdeb45ca23fe450162bb2b85c3c'
- end
-
- def install
- sbin.install 'p4p'
- (var+"p4p").mkpath
- end
-
- def caveats; <<-EOS.undent
- To use the Perforce proxy to access your Perforce server, set your P4PORT
- environment variable to "localhost:1666".
-
- Before starting the proxy server, you probably need to edit the plist to use
- the correct host and port for your Perforce server (replacing the default
- perforce:1666).
- EOS
- end
-
- 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>#{plist_name}</string>
- <key>ProgramArguments</key>
- <array>
- <string>#{opt_prefix}/sbin/p4p</string>
- <string>-p</string>
- <string>1666</string>
- <string>-r</string>
- <string>#{var}/p4p</string>
- <string>-t</string>
- <string>perforce:1666</string>
- </array>
- <key>RunAtLoad</key>
- <true/>
- <key>KeepAlive</key>
- <true/>
- <key>WorkingDirectory</key>
- <string>#{var}/p4p</string>
- </dict>
- </plist>
- EOS
- end
-end
diff --git a/Library/Formula/perforce-server.rb b/Library/Formula/perforce-server.rb
deleted file mode 100644
index 19a905fbf..000000000
--- a/Library/Formula/perforce-server.rb
+++ /dev/null
@@ -1,50 +0,0 @@
-require 'formula'
-
-class PerforceServer < Formula
- homepage 'http://www.perforce.com/'
-
- if MacOS.prefer_64_bit?
- url 'http://filehost.perforce.com/perforce/r12.2/bin.darwin90x86_64/p4d'
- version '2012.2.631250-x86_64'
- sha1 '21d5a904321a95026fe65890b9d9cb4043eaf84c'
- else
- url 'http://filehost.perforce.com/perforce/r12.2/bin.darwin90x86/p4d'
- version '2012.2.631250-x86'
- sha1 '97fae79520e2801f18600362e24eaee6d47497c0'
- end
-
- def install
- bin.install 'p4d'
- (var+"p4root").mkpath
- end
-
- 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>#{plist_name}</string>
- <key>ProgramArguments</key>
- <array>
- <string>#{opt_prefix}/bin/p4d</string>
- <string>-p</string>
- <string>1666</string>
- <string>-r</string>
- <string>#{var}/p4root</string>
- </array>
- <key>RunAtLoad</key>
- <true/>
- <key>KeepAlive</key>
- <true/>
- <key>WorkingDirectory</key>
- <string>#{var}/p4root</string>
- <key>StandardErrorPath</key>
- <string>#{var}/log/p4d.log</string>
- <key>StandardOutPath</key>
- <string>#{var}/log/p4d.log</string>
- </dict>
- </plist>
- EOS
- end
-end
diff --git a/Library/Formula/perforce.rb b/Library/Formula/perforce.rb
deleted file mode 100644
index 07acfb313..000000000
--- a/Library/Formula/perforce.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-require 'formula'
-
-class Perforce < Formula
- homepage 'http://www.perforce.com/'
-
- if MacOS.prefer_64_bit?
- url 'http://filehost.perforce.com/perforce/r13.1/bin.darwin90x86_64/p4'
- version '2013.1.659207-x86_64'
- sha1 '4bba9ba354a82d62b6569d1df41b49fc5731cb52'
- else
- url 'http://filehost.perforce.com/perforce/r13.1/bin.darwin90x86/p4'
- version '2013.1.659207-x86'
- sha1 '1e275a4b8c22338066ad2f48433de813a8aae101'
- end
-
- def install
- bin.install 'p4'
- end
-end