aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pyenv-virtualenv.rb
diff options
context:
space:
mode:
authorYamashita Yuu2014-01-10 11:52:14 +0900
committerMike McQuaid2014-01-25 22:02:35 +0100
commit4e62b782b56919ba11333a6b051f116306a09ac4 (patch)
treec757dde3251cfe2cf3ab08ef8dda1222ceef7419 /Library/Formula/pyenv-virtualenv.rb
parentd1ee63c267104ec8abc11aac47e6f327339cbb73 (diff)
downloadhomebrew-4e62b782b56919ba11333a6b051f116306a09ac4.tar.bz2
pyenv-virtualenv 20140110.1
* Support environment variables of `EZ_SETUP` and `GET_PIP`. * Support a short option `-p` of `virtualenv`. * Fix install script Closes #25784. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/pyenv-virtualenv.rb')
-rw-r--r--Library/Formula/pyenv-virtualenv.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Formula/pyenv-virtualenv.rb b/Library/Formula/pyenv-virtualenv.rb
index 7c972d281..da12ffd90 100644
--- a/Library/Formula/pyenv-virtualenv.rb
+++ b/Library/Formula/pyenv-virtualenv.rb
@@ -2,8 +2,8 @@ require 'formula'
class PyenvVirtualenv < Formula
homepage 'https://github.com/yyuu/pyenv-virtualenv'
- url 'https://github.com/yyuu/pyenv-virtualenv/archive/v20130622.tar.gz'
- sha1 '2e27b3b76931e6f0eecc4bccb3166d1abc130393'
+ url 'https://github.com/yyuu/pyenv-virtualenv/archive/v20140110.1.tar.gz'
+ sha1 '56e4823b13e00d17c2d73eb8e0c3e5eddc7e3d51'
head 'https://github.com/yyuu/pyenv-virtualenv.git'
@@ -12,6 +12,5 @@ class PyenvVirtualenv < Formula
def install
ENV['PREFIX'] = prefix
system "./install.sh"
- ln_sf opt_prefix, "#{HOMEBREW_PREFIX}/var/lib/pyenv/plugins/#{name}"
end
end