aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pyenv.rb
diff options
context:
space:
mode:
authorYamashita Yuu2014-01-10 11:41:06 +0900
committerMike McQuaid2014-01-24 19:57:31 +0000
commitb399f016edffb56ecb5420cea9a1793a2e0c1c67 (patch)
treee151777e21eac21ede6e224574b99cba2c162f39 /Library/Formula/pyenv.rb
parentecac71c97a8c381e27ce55528a39d28830df88ce (diff)
downloadhomebrew-b399f016edffb56ecb5420cea9a1793a2e0c1c67.tar.bz2
pyenv 0.4.0-20140110.1
Changes: * pyenv: Reliably detect parent shell in `pyenv init` (yyuu/pyenv#93) * pyenv: Import recent changes from rbenv 0.4.0 * pyenv: Import `bats` tests from rbenv 0.4.0 * python-build: Add new CPython releases candidates; 3.4.0b2 * python-build: Add ruby-build style patching feature (yyuu/pyenv#91) * python-build: Set `RPATH` if `--enable-shared` was given (yyuu/pyenv#65, yyuu/pyenv#66, yyuu/pyenv#82) * python-build: Update default setuptools version (2.0 -> 2.1) * python-build: Update default pip version (1.4.1 -> 1.5) * python-build: Activate friendly CPython during build if the one is not activated * python-build: Fix broken install.sh * python-build: Import recent changes from ruby-build v20131225.1 * python-build: Fix build error of CPython 2.x on the platform where the `gcc` is llvm-gcc. * version-ext-compat: Removed from default plugin. Please use [pyenv-version-ext](https://github.com/yyuu/pyenv-version-ext) instead. Closes #25783. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/pyenv.rb')
-rw-r--r--Library/Formula/pyenv.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/pyenv.rb b/Library/Formula/pyenv.rb
index 35449b4ca..c2e7da3ed 100644
--- a/Library/Formula/pyenv.rb
+++ b/Library/Formula/pyenv.rb
@@ -2,14 +2,16 @@ require 'formula'
class Pyenv < Formula
homepage 'https://github.com/yyuu/pyenv'
- url 'https://github.com/yyuu/pyenv/archive/v0.4.0-20131217.tar.gz'
- sha1 '2d2a89bd89bce88a0e09b1473ef786bbdcb08394'
+ url 'https://github.com/yyuu/pyenv/archive/v0.4.0-20140110.1.tar.gz'
+ sha1 '40204db80537741edbed87a6eefcbf823433ddc2'
head 'https://github.com/yyuu/pyenv.git'
- skip_clean "plugins", "versions"
+ depends_on 'autoconf' => [:recommended, :run]
+ depends_on 'pkg-config' => [:recommended, :run]
def install
+ inreplace 'libexec/pyenv', '/usr/local', HOMEBREW_PREFIX
prefix.install "LICENSE", "README.md", "bin", "completions", "libexec"
prefix.install "plugins" => "default-plugins"