From b17f3f51f7dbe3d5fc789b992ea727737e1381c2 Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.com>
Date: Mon, 2 Jun 2014 10:05:28 -0400
Subject: [PATCH] 2.6.x series!

---
 builds/runtimes/python-2.6.0 | 15 +++++++++++++++
 builds/runtimes/python-2.6.1 | 15 +++++++++++++++
 builds/runtimes/python-2.6.2 | 15 +++++++++++++++
 builds/runtimes/python-2.6.3 | 15 +++++++++++++++
 builds/runtimes/python-2.6.4 | 15 +++++++++++++++
 builds/runtimes/python-2.6.5 | 15 +++++++++++++++
 builds/runtimes/python-2.6.6 | 15 +++++++++++++++
 builds/runtimes/python-2.6.7 | 15 +++++++++++++++
 builds/runtimes/python-2.6.8 | 15 +++++++++++++++
 builds/runtimes/python-2.6.9 | 15 +++++++++++++++
 10 files changed, 150 insertions(+)
 create mode 100755 builds/runtimes/python-2.6.0
 create mode 100755 builds/runtimes/python-2.6.1
 create mode 100755 builds/runtimes/python-2.6.2
 create mode 100755 builds/runtimes/python-2.6.3
 create mode 100755 builds/runtimes/python-2.6.4
 create mode 100755 builds/runtimes/python-2.6.5
 create mode 100755 builds/runtimes/python-2.6.6
 create mode 100755 builds/runtimes/python-2.6.7
 create mode 100755 builds/runtimes/python-2.6.8
 create mode 100755 builds/runtimes/python-2.6.9

diff --git a/builds/runtimes/python-2.6.0 b/builds/runtimes/python-2.6.0
new file mode 100755
index 00000000..5714b9ae
--- /dev/null
+++ b/builds/runtimes/python-2.6.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.6/Python-2.6.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-2.6 src
+cd src
+
+./configure --prefix=$OUT_PREFIX
+make
+make install
diff --git a/builds/runtimes/python-2.6.1 b/builds/runtimes/python-2.6.1
new file mode 100755
index 00000000..2bb5e68d
--- /dev/null
+++ b/builds/runtimes/python-2.6.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.6.1/Python-2.6.1.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-2.6.1 src
+cd src
+
+./configure --prefix=$OUT_PREFIX
+make
+make install
diff --git a/builds/runtimes/python-2.6.2 b/builds/runtimes/python-2.6.2
new file mode 100755
index 00000000..d79a3b59
--- /dev/null
+++ b/builds/runtimes/python-2.6.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.6.2/Python-2.6.2.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-2.6.2 src
+cd src
+
+./configure --prefix=$OUT_PREFIX
+make
+make install
diff --git a/builds/runtimes/python-2.6.3 b/builds/runtimes/python-2.6.3
new file mode 100755
index 00000000..c130830f
--- /dev/null
+++ b/builds/runtimes/python-2.6.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.6.3/Python-2.6.3.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-2.6.3 src
+cd src
+
+./configure --prefix=$OUT_PREFIX
+make
+make install
diff --git a/builds/runtimes/python-2.6.4 b/builds/runtimes/python-2.6.4
new file mode 100755
index 00000000..7ecd7c56
--- /dev/null
+++ b/builds/runtimes/python-2.6.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.6.4/Python-2.6.4.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-2.6.4 src
+cd src
+
+./configure --prefix=$OUT_PREFIX
+make
+make install
diff --git a/builds/runtimes/python-2.6.5 b/builds/runtimes/python-2.6.5
new file mode 100755
index 00000000..69276fd7
--- /dev/null
+++ b/builds/runtimes/python-2.6.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.6.6/Python-2.6.6.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-2.6.6 src
+cd src
+
+./configure --prefix=$OUT_PREFIX
+make
+make install
diff --git a/builds/runtimes/python-2.6.6 b/builds/runtimes/python-2.6.6
new file mode 100755
index 00000000..69276fd7
--- /dev/null
+++ b/builds/runtimes/python-2.6.6
@@ -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.6.6/Python-2.6.6.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-2.6.6 src
+cd src
+
+./configure --prefix=$OUT_PREFIX
+make
+make install
diff --git a/builds/runtimes/python-2.6.7 b/builds/runtimes/python-2.6.7
new file mode 100755
index 00000000..6639db28
--- /dev/null
+++ b/builds/runtimes/python-2.6.7
@@ -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.6.7/Python-2.6.7.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-2.6.7 src
+cd src
+
+./configure --prefix=$OUT_PREFIX
+make
+make install
diff --git a/builds/runtimes/python-2.6.8 b/builds/runtimes/python-2.6.8
new file mode 100755
index 00000000..01b60731
--- /dev/null
+++ b/builds/runtimes/python-2.6.8
@@ -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.6.8/Python-2.6.8.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-2.6.8 src
+cd src
+
+./configure --prefix=$OUT_PREFIX
+make
+make install
diff --git a/builds/runtimes/python-2.6.9 b/builds/runtimes/python-2.6.9
new file mode 100755
index 00000000..b346d704
--- /dev/null
+++ b/builds/runtimes/python-2.6.9
@@ -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.6.9/Python-2.6.9.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-2.6.9 src
+cd src
+
+./configure --prefix=$OUT_PREFIX
+make
+make install
-- 
GitLab