From 668219ae594efe0fcd11ea3626b1637e3d0d10d1 Mon Sep 17 00:00:00 2001
From: Josh Friend <josh@fueledbycaffeine.com>
Date: Thu, 11 May 2017 12:10:13 -0400
Subject: [PATCH] Add PyPy-5.7.1 (#370)

---
 builds/runtimes/pypy-5.7.1 | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 builds/runtimes/pypy-5.7.1

diff --git a/builds/runtimes/pypy-5.7.1 b/builds/runtimes/pypy-5.7.1
new file mode 100644
index 00000000..ee93ba1f
--- /dev/null
+++ b/builds/runtimes/pypy-5.7.1
@@ -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/pypy2-v5.7.1-linux64.tar.bz2'
+curl -L $SOURCE_TARBALL | tar jx
+cp -R pypy2-v5.7.1-linux64/* $OUT_PREFIX
+
+ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python
-- 
GitLab