aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-07-25 19:27:30 -0700
committerAdam Vandenberg2010-07-25 19:27:30 -0700
commitf74b9320d53773e88f97b6786b549138f36b9e67 (patch)
tree7fe328e3748348c51c00c4365e29cb9a922af93e /Library
parentcc7933b5a0e0393b2377ed81b4dcadeaf832d444 (diff)
downloadhomebrew-f74b9320d53773e88f97b6786b549138f36b9e67.tar.bz2
Remove "virtualenvwrapper" formula; it is now available via pip
"pip install virtualenvwrapper" is more straight-forward, so let's just do that now.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/virtualenvwrapper.rb41
1 files changed, 0 insertions, 41 deletions
diff --git a/Library/Formula/virtualenvwrapper.rb b/Library/Formula/virtualenvwrapper.rb
deleted file mode 100644
index 195e771f9..000000000
--- a/Library/Formula/virtualenvwrapper.rb
+++ /dev/null
@@ -1,41 +0,0 @@
-require 'formula'
-
-class Virtualenvwrapper <Formula
- url 'http://www.doughellmann.com/downloads/virtualenvwrapper-2.2.2.tar.gz'
- homepage 'http://www.doughellmann.com/projects/virtualenvwrapper/'
- md5 'e5324eb7d5bbce7480f8dda5e7dfa125'
-
- def install
- libexec.install ['virtualenvwrapper.sh', 'virtualenvwrapper']
- # HACK: Make the wrapper exectuable, so `which` can find it.
- chmod 0755, libexec+'virtualenvwrapper.sh'
-
- bin.mkpath
- ln_s libexec+'virtualenvwrapper.sh', bin
- end
-
- def caveats
- <<-EOS.undent
- This project depends on "virtualenv" which is installed separately. See:
- http://pypi.python.org/pypi/virtualenv
-
- From the project homepage:
- 1. Create a directory to hold all of the virtual environments.
- The default is $HOME/.virtualenvs
-
- 2. Add two lines to your .bashrc to set the location where the
- virtual environments should live and the location of the
- script installed with this package:
-
- export WORKON_HOME=$HOME/.virtualenvs
- source #{HOMEBREW_PREFIX}/bin/virtualenvwrapper.sh
-
- 3. Run: source ~/.bashrc
-
- Note that we did not install anything to your Python's site-packages.
- If you want to write extensions you may need to add:
- #{libexec}
- to your PYTHON_PATH.
- EOS
- end
-end