homebrew-core/Formula/pyenv.rb
Yamashita Yuu 1ee3a4bc15 pyenv 0.4.0-20140311
Changes:

* python-build: Add new CPython releases; 3.3.5
* python-build: Add new CPython release candidates; 3.4.0rc1, 3.4.0rc2, 3.4.0rc3
* python-build: Update default setuptools version (2.2 -> 3.1)
* python-build: Update default pip version (1.5.2 -> 1.5.4)
* python-build: Import recent changes from ruby-build v20140225

Closes Homebrew/homebrew#27399.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-03-11 08:10:01 +00:00

39 lines
1.3 KiB
Ruby

require 'formula'
class Pyenv < Formula
homepage 'https://github.com/yyuu/pyenv'
url 'https://github.com/yyuu/pyenv/archive/v0.4.0-20140311.tar.gz'
sha1 '7f3daf7f147f690d7c75ccbbbe5183d353d02e5d'
head 'https://github.com/yyuu/pyenv.git'
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"
var_lib = "#{HOMEBREW_PREFIX}/var/lib/pyenv"
['plugins', 'versions'].each do |dir|
var_dir = "#{var_lib}/#{dir}"
mkdir_p var_dir
ln_sf var_dir, "#{prefix}/#{dir}"
end
ln_sf "#{prefix}/default-plugins/python-build", "#{var_lib}/plugins/python-build"
["pyenv-install", "pyenv-uninstall", "python-build"].each do |cmd|
bin.install_symlink "#{prefix}/default-plugins/python-build/bin/#{cmd}"
end
end
def caveats; <<-EOS.undent
To enable shims and autocompletion add to your profile:
if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi
To use Homebrew's directories rather than ~/.pyenv add to your profile:
export PYENV_ROOT=#{opt_prefix}
EOS
end
end