From 8f7fb57fbbf12bdf415ea7ddfe65409d8c548b1b Mon Sep 17 00:00:00 2001 From: Samuel Villamonte Date: Sat, 12 Nov 2016 15:37:59 -0500 Subject: [PATCH] Add Portable PyPy2 5.6.0 (#749) --- .../share/python-build/pypy-portable-5.6.0 | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 plugins/python-build/share/python-build/pypy-portable-5.6.0 diff --git a/plugins/python-build/share/python-build/pypy-portable-5.6.0 b/plugins/python-build/share/python-build/pypy-portable-5.6.0 new file mode 100644 index 00000000..b1549229 --- /dev/null +++ b/plugins/python-build/share/python-build/pypy-portable-5.6.0 @@ -0,0 +1,16 @@ +case "$(pypy_architecture 2>/dev/null || true)" in +"linux" ) + install_package "pypy-5.6-linux_i686-portable" "https://bitbucket.org/squeaky/portable-pypy/downloads/pypy-5.6-linux_i686-portable.tar.bz2#1f220e05ddd4423882794f0e9d3e2dfdecee259d00f1151a52dd244607313399" "pypy" verify_py27 ensurepip + ;; +"linux64" ) + install_package "pypy-5.6-linux_x86_64-portable" "https://bitbucket.org/squeaky/portable-pypy/downloads/pypy-5.6-linux_x86_64-portable.tar.bz2#9bd220bc54000e142bd4929435959305efeef8c832fbe3c907211cc5214095ce" "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