pyenv/plugins/python-build/share/python-build/pypy2.7-portable-5.9.0
2017-10-06 09:58:50 -04:00

14 lines
472 B
Plaintext

case "$(pypy_architecture 2>/dev/null || true)" in
"linux64" )
install_package "pypy-5.9-linux_x86_64-portable" "https://bitbucket.org/squeaky/portable-pypy/downloads/pypy-5.9-1-linux_x86_64-portable.tar.bz2#8d39eb98df3adf7882a7f3551f47b8c7cff47a0e20d6aabc57bb592f155c2616" "pypy" verify_py27 ensurepip
;;
* )
{ echo
colorize 1 "ERROR"
echo ": Portable PyPy is not available for $(pypy_architecture 2>/dev/null || true)."
echo
} >&2
exit 1
;;
esac