2012-08-31 02:23:41 -04:00
|
|
|
#!/usr/bin/env bash
|
2013-01-18 03:41:41 -05:00
|
|
|
# Summary: Configure the shell environment for pyenv
|
|
|
|
# Usage: eval "$(pyenv init - [--no-rehash] [<shell>])"
|
|
|
|
|
2012-08-31 02:23:41 -04:00
|
|
|
set -e
|
|
|
|
[ -n "$PYENV_DEBUG" ] && set -x
|
|
|
|
|
|
|
|
print=""
|
|
|
|
no_rehash=""
|
|
|
|
for args in "$@"
|
|
|
|
do
|
|
|
|
if [ "$args" = "-" ]; then
|
|
|
|
print=1
|
2013-09-30 05:02:12 -04:00
|
|
|
shift
|
2012-08-31 02:23:41 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$args" = "--no-rehash" ]; then
|
|
|
|
no_rehash=1
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
shell="$1"
|
|
|
|
if [ -z "$shell" ]; then
|
2013-12-25 23:48:43 -05:00
|
|
|
shell="$(ps c -p $(ps -p $$ -o 'ppid=' 2>/dev/null) -o 'comm=' 2>/dev/null || true)"
|
|
|
|
shell="${shell##-}"
|
|
|
|
shell="$(basename "${shell:-$SHELL}")"
|
2012-08-31 02:23:41 -04:00
|
|
|
fi
|
|
|
|
|
2013-09-30 05:02:12 -04:00
|
|
|
READLINK=$(type -p greadlink readlink | head -1)
|
|
|
|
if [ -z "$READLINK" ]; then
|
|
|
|
echo "pyenv: cannot find readlink - are you missing GNU coreutils?" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2012-08-31 02:23:41 -04:00
|
|
|
resolve_link() {
|
2013-09-30 05:02:12 -04:00
|
|
|
$READLINK "$1"
|
2012-08-31 02:23:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
abs_dirname() {
|
|
|
|
local cwd="$(pwd)"
|
|
|
|
local path="$1"
|
|
|
|
|
|
|
|
while [ -n "$path" ]; do
|
|
|
|
cd "${path%/*}"
|
|
|
|
local name="${path##*/}"
|
|
|
|
path="$(resolve_link "$name" || true)"
|
|
|
|
done
|
|
|
|
|
|
|
|
pwd
|
|
|
|
cd "$cwd"
|
|
|
|
}
|
|
|
|
|
|
|
|
root="$(abs_dirname "$0")/.."
|
|
|
|
|
|
|
|
if [ -z "$print" ]; then
|
|
|
|
case "$shell" in
|
|
|
|
bash )
|
|
|
|
profile='~/.bash_profile'
|
|
|
|
;;
|
|
|
|
zsh )
|
|
|
|
profile='~/.zshrc'
|
|
|
|
;;
|
|
|
|
ksh )
|
|
|
|
profile='~/.profile'
|
|
|
|
;;
|
2013-08-15 08:27:52 -04:00
|
|
|
fish )
|
|
|
|
profile='~/.config/fish/config.fish'
|
|
|
|
;;
|
2012-08-31 02:23:41 -04:00
|
|
|
* )
|
|
|
|
profile='your profile'
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
{ echo "# Load pyenv automatically by adding"
|
|
|
|
echo "# the following to ${profile}:"
|
|
|
|
echo
|
2013-09-30 05:02:12 -04:00
|
|
|
case "$shell" in
|
|
|
|
fish )
|
2013-12-25 23:48:43 -05:00
|
|
|
echo 'status --is-interactive; and . (pyenv init -|psub)'
|
2013-09-30 05:02:12 -04:00
|
|
|
;;
|
|
|
|
* )
|
|
|
|
echo 'eval "$(pyenv init -)"'
|
|
|
|
;;
|
|
|
|
esac
|
2012-08-31 02:23:41 -04:00
|
|
|
echo
|
|
|
|
} >&2
|
|
|
|
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -p "${PYENV_ROOT}/"{shims,versions}
|
|
|
|
|
2013-09-30 05:02:12 -04:00
|
|
|
if [[ ":${PATH}:" != *:"${PYENV_ROOT}/shims":* ]]; then
|
|
|
|
case "$shell" in
|
|
|
|
fish )
|
|
|
|
echo "setenv PATH '${PYENV_ROOT}/shims' \$PATH"
|
2013-08-15 08:27:52 -04:00
|
|
|
;;
|
2013-09-30 05:02:12 -04:00
|
|
|
* )
|
|
|
|
echo 'export PATH="'${PYENV_ROOT}'/shims:${PATH}"'
|
2013-08-15 08:27:52 -04:00
|
|
|
;;
|
2013-09-30 05:02:12 -04:00
|
|
|
esac
|
|
|
|
fi
|
2012-08-31 02:23:41 -04:00
|
|
|
|
2013-12-25 23:48:43 -05:00
|
|
|
case "$shell" in
|
|
|
|
fish )
|
|
|
|
echo "setenv PYENV_SHELL $shell"
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
echo "export PYENV_SHELL=$shell"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2013-09-30 05:02:12 -04:00
|
|
|
completion="${root}/completions/pyenv.${shell}"
|
2013-12-25 23:48:43 -05:00
|
|
|
if [ -r "$completion" ]; then
|
|
|
|
case "$shell" in
|
|
|
|
fish ) echo ". '$completion'" ;;
|
|
|
|
* ) echo "source '$completion'" ;;
|
|
|
|
esac
|
|
|
|
fi
|
2012-08-31 02:23:41 -04:00
|
|
|
|
|
|
|
if [ -z "$no_rehash" ]; then
|
|
|
|
echo 'pyenv rehash 2>/dev/null'
|
|
|
|
fi
|
|
|
|
|
2013-09-30 05:02:12 -04:00
|
|
|
commands=(`pyenv-commands --sh`)
|
2013-08-15 08:27:52 -04:00
|
|
|
case "$shell" in
|
|
|
|
fish )
|
|
|
|
cat <<EOS
|
2013-09-30 05:02:12 -04:00
|
|
|
function pyenv
|
|
|
|
set command \$argv[1]
|
|
|
|
set -e argv[1]
|
|
|
|
|
|
|
|
switch "\$command"
|
|
|
|
case ${commands[*]}
|
|
|
|
eval (pyenv "sh-\$command" \$argv)
|
|
|
|
case '*'
|
|
|
|
command pyenv "\$command" \$argv
|
|
|
|
end
|
|
|
|
end
|
|
|
|
EOS
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
ksh )
|
|
|
|
cat <<EOS
|
|
|
|
function pyenv {
|
|
|
|
typeset command
|
2013-08-15 08:27:52 -04:00
|
|
|
EOS
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
cat <<EOS
|
2012-08-31 02:23:41 -04:00
|
|
|
pyenv() {
|
2013-09-30 05:02:12 -04:00
|
|
|
local command
|
|
|
|
EOS
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
IFS="|"
|
|
|
|
cat <<EOS
|
2013-01-18 04:57:08 -05:00
|
|
|
command="\$1"
|
2012-08-31 02:23:41 -04:00
|
|
|
if [ "\$#" -gt 0 ]; then
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "\$command" in
|
|
|
|
${commands[*]})
|
2013-09-30 05:02:12 -04:00
|
|
|
eval "\`pyenv "sh-\$command" "\$@"\`";;
|
2012-08-31 02:23:41 -04:00
|
|
|
*)
|
|
|
|
command pyenv "\$command" "\$@";;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
EOS
|