From baeecdfc7d77f6360c1705c2fbd003c4bf3cce1d Mon Sep 17 00:00:00 2001 From: Samuel Villamonte Date: Thu, 8 Sep 2016 22:38:09 -0500 Subject: [PATCH] Added pypy-portable-5.4.1 now --- .../share/python-build/pypy-portable-5.4.1 | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 plugins/python-build/share/python-build/pypy-portable-5.4.1 diff --git a/plugins/python-build/share/python-build/pypy-portable-5.4.1 b/plugins/python-build/share/python-build/pypy-portable-5.4.1 new file mode 100644 index 00000000..0b2cbde1 --- /dev/null +++ b/plugins/python-build/share/python-build/pypy-portable-5.4.1 @@ -0,0 +1,16 @@ +case "$(pypy_architecture 2>/dev/null || true)" in +"linux" ) + install_package "pypy-5.4.1-linux_i686-portable" "https://bitbucket.org/squeaky/portable-pypy/downloads/pypy-5.4.1-linux_i686-portable.tar.bz22#190e1df78886f0b2bd700f110b7d312d91cafc84886c5de3c5d55c10fe1a5e75" "pypy" verify_py27 ensurepip + ;; +"linux64" ) + install_package "pypy-5.4.1-linux_x86_64-portable" "https://bitbucket.org/squeaky/portable-pypy/downloads/pypy-5.4.1-linux_x86_64-portable.tar.bz2#0b59f8e69c7883d454fce6364ab01a5ec6a481ed7f0cc0f1612c3b0c253f7da4" "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