pyenv/plugins/python-build/share/python-build/pypy3.5-portable-5.8.0
Samuel Villamonte e0b0147056 Fix sha256 sum
2017-06-09 11:06:42 -05:00

14 lines
486 B
Plaintext

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