From 4f0556cce792e940d8436ef61f11e912913cd7b4 Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.com>
Date: Mon, 2 Jun 2014 09:44:20 -0400
Subject: [PATCH] Import of full 2.7.x series

---
 builds/runtimes/python-2.7.0 | 15 +++++++++++++++
 builds/runtimes/python-2.7.1 | 15 +++++++++++++++
 builds/runtimes/python-2.7.2 | 15 +++++++++++++++
 builds/runtimes/python-2.7.3 | 15 +++++++++++++++
 builds/runtimes/python-2.7.4 | 15 +++++++++++++++
 builds/runtimes/python-2.7.5 | 15 +++++++++++++++
 6 files changed, 90 insertions(+)
 create mode 100755 builds/runtimes/python-2.7.0
 create mode 100755 builds/runtimes/python-2.7.1
 create mode 100755 builds/runtimes/python-2.7.2
 create mode 100755 builds/runtimes/python-2.7.3
 create mode 100755 builds/runtimes/python-2.7.4
 create mode 100755 builds/runtimes/python-2.7.5

diff --git a/builds/runtimes/python-2.7.0 b/builds/runtimes/python-2.7.0
new file mode 100755
index 00000000..38e25e31
--- /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 00000000..2b8f79e6
--- /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 00000000..eb7b5127
--- /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 00000000..7b267feb
--- /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 00000000..3e132731
--- /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 00000000..5da16ecc
--- /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
-- 
GitLab