From 459a535228831225b7a774cf7e3f2aadf160c564 Mon Sep 17 00:00:00 2001 From: Samuel Villamonte Date: Tue, 21 Mar 2017 21:00:38 -0500 Subject: [PATCH] Added pypy3-portable-5.7.0 (#869) --- .../share/python-build/pypy3-portable-5.7.0 | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 plugins/python-build/share/python-build/pypy3-portable-5.7.0 diff --git a/plugins/python-build/share/python-build/pypy3-portable-5.7.0 b/plugins/python-build/share/python-build/pypy3-portable-5.7.0 new file mode 100644 index 00000000..58ab9234 --- /dev/null +++ b/plugins/python-build/share/python-build/pypy3-portable-5.7.0 @@ -0,0 +1,13 @@ +case "$(pypy_architecture 2>/dev/null || true)" in +"linux64" ) + install_package "pypy3.5-5.7-beta-linux_x86_64-portable" "https://bitbucket.org/squeaky/portable-pypy/downloads/pypy3.5-5.7-beta-linux_x86_64-portable.tar.bz2#d289ff7c32fd4263c3889994c8191c626891513e8ab60a65ba41a58b331db92c" "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