270e6b6b2b
Changes: * python-build: Add new CPython releases; 2.6.9, 2.7.6 (#76) * python-build: Add new CPython release candidates; 3.3.3-rc1, 3.3.3-rc2 * python-build: Add new PyPy releases; pypy-2.2, pypy-2.2-src (#77) * python-build: Update default setuptools version (1.1.6 -> 1.3.2) * python-build: Imported recent changes from ruby-build v20131030 Closes Homebrew/homebrew#24374. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
37 lines
1.1 KiB
Ruby
37 lines
1.1 KiB
Ruby
require 'formula'
|
|
|
|
class Pyenv < Formula
|
|
homepage 'https://github.com/yyuu/pyenv'
|
|
url 'https://github.com/yyuu/pyenv/archive/v0.4.0-20131116.tar.gz'
|
|
sha1 'edbe76ffc1e9b2fc180c1beaffd294946eae7917'
|
|
|
|
head 'https://github.com/yyuu/pyenv.git'
|
|
|
|
skip_clean "plugins", "versions"
|
|
|
|
def install
|
|
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
|