diff --git a/builds/runtimes/python-2.7.0 b/builds/runtimes/python-2.7.0 new file mode 100755 index 0000000..38e25e3 --- /dev/null +++ b/builds/runtimes/python-2.7.0 @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='http://python.org/ftp/python/2.7/Python-2.7.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-2.7 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install diff --git a/builds/runtimes/python-2.7.1 b/builds/runtimes/python-2.7.1 new file mode 100755 index 0000000..2b8f79e --- /dev/null +++ b/builds/runtimes/python-2.7.1 @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='http://python.org/ftp/python/2.7.1/Python-2.7.1.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-2.7.1 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install diff --git a/builds/runtimes/python-2.7.2 b/builds/runtimes/python-2.7.2 new file mode 100755 index 0000000..eb7b512 --- /dev/null +++ b/builds/runtimes/python-2.7.2 @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='http://python.org/ftp/python/2.7.2/Python-2.7.2.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-2.7.2 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install diff --git a/builds/runtimes/python-2.7.3 b/builds/runtimes/python-2.7.3 new file mode 100755 index 0000000..7b267fe --- /dev/null +++ b/builds/runtimes/python-2.7.3 @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='http://python.org/ftp/python/2.7.3/Python-2.7.3.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-2.7.3 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install diff --git a/builds/runtimes/python-2.7.4 b/builds/runtimes/python-2.7.4 new file mode 100755 index 0000000..3e13273 --- /dev/null +++ b/builds/runtimes/python-2.7.4 @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='http://python.org/ftp/python/2.7.4/Python-2.7.4.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-2.7.4 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install diff --git a/builds/runtimes/python-2.7.5 b/builds/runtimes/python-2.7.5 new file mode 100755 index 0000000..5da16ec --- /dev/null +++ b/builds/runtimes/python-2.7.5 @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='http://python.org/ftp/python/2.7.5/Python-2.7.5.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-2.7.5 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install