From 44df3550990c4878c39d29b97bd6078402574229 Mon Sep 17 00:00:00 2001 From: Samuel Villamonte Date: Fri, 2 Sep 2016 20:08:50 -0500 Subject: [PATCH] Added pypy-portable-5.4 --- .../share/python-build/pypy-portable-5.4 | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 plugins/python-build/share/python-build/pypy-portable-5.4 diff --git a/plugins/python-build/share/python-build/pypy-portable-5.4 b/plugins/python-build/share/python-build/pypy-portable-5.4 new file mode 100644 index 00000000..6575710b --- /dev/null +++ b/plugins/python-build/share/python-build/pypy-portable-5.4 @@ -0,0 +1,16 @@ +case "$(pypy_architecture 2>/dev/null || true)" in +"linux" ) + install_package "pypy-5.4-linux_i686-portable" "https://bitbucket.org/squeaky/portable-pypy/downloads/pypy-5.4-linux_i686-portable.tar.bz2#7d7d253f009bb2624f43db6b8caeeb73d29177c4166a643a581a231a099c8689" "pypy" verify_py27 ensurepip + ;; +"linux64" ) + install_package "pypy-5.4-linux_x86_64-portable" "https://bitbucket.org/squeaky/portable-pypy/downloads/pypy-5.4-linux_x86_64-portable.tar.bz2#0a48c7ba7163589b1ade9cfe184f422d1bc9a0f988321b2fdcbd924d90594d9a" "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