From d520ca429120b46f39d7fa1032fd5ad8a7d0e1eb Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Sat, 17 Dec 2016 19:21:39 -0500 Subject: [PATCH] new pypys --- builds/runtimes/pypy-5.6.0 | 2 +- builds/runtimes/pypy3-5.5.0 | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) mode change 100644 => 100755 builds/runtimes/pypy-5.6.0 create mode 100755 builds/runtimes/pypy3-5.5.0 diff --git a/builds/runtimes/pypy-5.6.0 b/builds/runtimes/pypy-5.6.0 old mode 100644 new mode 100755 index 09b34862..2aee7539 --- a/builds/runtimes/pypy-5.6.0 +++ b/builds/runtimes/pypy-5.6.0 @@ -11,4 +11,4 @@ SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.6.0-linux64.t curl -L $SOURCE_TARBALL | tar jx cp -R pypy2-v5.6.0-linux64/* $OUT_PREFIX -ln -s $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python diff --git a/builds/runtimes/pypy3-5.5.0 b/builds/runtimes/pypy3-5.5.0 new file mode 100755 index 00000000..567e96ef --- /dev/null +++ b/builds/runtimes/pypy3-5.5.0 @@ -0,0 +1,14 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +# NOTICE: This formula only works for the cedar-14 stack, not cedar. + +OUT_PREFIX=$1 + +echo "Building PyPy..." +SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy3.3-v5.5.0-alpha-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy3-v5.5.0-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy3 $OUT_PREFIX/bin/python -- GitLab