diff --git a/builds/runtimes/pypy-2.0 b/builds/runtimes/pypy-2.0 new file mode 100755 index 0000000..922f573 --- /dev/null +++ b/builds/runtimes/pypy-2.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/pypy-2.0-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy-2.0/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python diff --git a/builds/runtimes/pypy-2.0.1 b/builds/runtimes/pypy-2.0.1 new file mode 100755 index 0000000..0a87a48 --- /dev/null +++ b/builds/runtimes/pypy-2.0.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/pypy-2.0.1-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy-2.0.1/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python diff --git a/builds/runtimes/pypy-2.0.2 b/builds/runtimes/pypy-2.0.2 new file mode 100755 index 0000000..b153178 --- /dev/null +++ b/builds/runtimes/pypy-2.0.2 @@ -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/pypy-2.0.2-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy-2.0.2/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python diff --git a/builds/runtimes/pypy-2.1 b/builds/runtimes/pypy-2.1 new file mode 100755 index 0000000..d811c0a --- /dev/null +++ b/builds/runtimes/pypy-2.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/pypy-2.1-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy-2.1/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python diff --git a/builds/runtimes/pypy-2.2 b/builds/runtimes/pypy-2.2 new file mode 100755 index 0000000..ad06362 --- /dev/null +++ b/builds/runtimes/pypy-2.2 @@ -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/pypy-2.2-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy-2.2-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python diff --git a/builds/runtimes/pypy-2.2.1 b/builds/runtimes/pypy-2.2.1 new file mode 100755 index 0000000..6733570 --- /dev/null +++ b/builds/runtimes/pypy-2.2.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/pypy-2.2.1-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy-2.2.1-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python diff --git a/builds/runtimes/pypy-2.3 b/builds/runtimes/pypy-2.3 new file mode 100755 index 0000000..033538f --- /dev/null +++ b/builds/runtimes/pypy-2.3 @@ -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/pypy-2.3-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy-2.3-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python diff --git a/builds/runtimes/pypy-2.3.1 b/builds/runtimes/pypy-2.3.1 index 3942430..dd7576d 100755 --- a/builds/runtimes/pypy-2.3.1 +++ b/builds/runtimes/pypy-2.3.1 @@ -2,6 +2,8 @@ # 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..." diff --git a/builds/runtimes/pypy3-2.1 b/builds/runtimes/pypy3-2.1 new file mode 100755 index 0000000..f599e3e --- /dev/null +++ b/builds/runtimes/pypy3-2.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/pypy3-2.1-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy3-2.1/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python diff --git a/builds/runtimes/pypy3-2.2 b/builds/runtimes/pypy3-2.2 new file mode 100755 index 0000000..23ec2bb --- /dev/null +++ b/builds/runtimes/pypy3-2.2 @@ -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-2.2-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy3-2.3.1-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python diff --git a/builds/runtimes/pypy3-2.2.1 b/builds/runtimes/pypy3-2.2.1 new file mode 100755 index 0000000..fb00702 --- /dev/null +++ b/builds/runtimes/pypy3-2.2.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/pypy3-2.2.1-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy3-2.2.1-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python diff --git a/builds/runtimes/pypy3-2.3 b/builds/runtimes/pypy3-2.3 new file mode 100755 index 0000000..dbff7e6 --- /dev/null +++ b/builds/runtimes/pypy3-2.3 @@ -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-2.3-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy3-2.3-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python diff --git a/builds/runtimes/pypy3-2.3.1 b/builds/runtimes/pypy3-2.3.1 new file mode 100755 index 0000000..bbe5fea --- /dev/null +++ b/builds/runtimes/pypy3-2.3.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/pypy3-2.3.1-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy3-2.3.1-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python