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

14 lines
487 B
Plaintext

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