From 0a4cc2c476df6fa52156495bfd85a0d486271429 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Thu, 15 Jun 2017 15:54:40 -0400 Subject: [PATCH] pypy3-5.8.0 (#414) --- builds/runtimes/pypy3-5.8.0 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 builds/runtimes/pypy3-5.8.0 diff --git a/builds/runtimes/pypy3-5.8.0 b/builds/runtimes/pypy3-5.8.0 new file mode 100755 index 00000000..87844a56 --- /dev/null +++ b/builds/runtimes/pypy3-5.8.0 @@ -0,0 +1,12 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +OUT_PREFIX=$1 + +echo "Building PyPy..." +SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy3-v5.8.0-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy3-v5.8.0-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy3 $OUT_PREFIX/bin/python -- GitLab