From abb3def9c68a751dd15a50cf5e5a0d036404499d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 6 Aug 2012 03:52:03 -0400 Subject: [PATCH] all the pythons --- formula/python-3.1.0 | 20 ++++++++++++++++++++ formula/python-3.1.1 | 20 ++++++++++++++++++++ formula/python-3.1.2 | 20 ++++++++++++++++++++ formula/python-3.1.3 | 20 ++++++++++++++++++++ formula/python-3.1.4 | 20 ++++++++++++++++++++ formula/python-3.1.5 | 20 ++++++++++++++++++++ formula/python-3.2.0 | 20 ++++++++++++++++++++ formula/python-3.2.1 | 20 ++++++++++++++++++++ formula/python-3.2.2 | 20 ++++++++++++++++++++ formula/python-3.2.3 | 20 ++++++++++++++++++++ 10 files changed, 200 insertions(+) create mode 100755 formula/python-3.1.0 create mode 100755 formula/python-3.1.1 create mode 100755 formula/python-3.1.2 create mode 100755 formula/python-3.1.3 create mode 100755 formula/python-3.1.4 create mode 100755 formula/python-3.1.5 create mode 100755 formula/python-3.2.0 create mode 100755 formula/python-3.2.1 create mode 100755 formula/python-3.2.2 create mode 100755 formula/python-3.2.3 diff --git a/formula/python-3.1.0 b/formula/python-3.1.0 new file mode 100755 index 0000000..46c363e --- /dev/null +++ b/formula/python-3.1.0 @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# Options: + +OUT_PREFIX=$1 + +echo "Building SQLite..." +./parts/sqlite $OUT_PREFIX + +echo "Building Python..." +SOURCE_TARBALL='http://www.python.org/ftp/python/3.1.0/Python-3.1.0.tar.bz2' +curl $SOURCE_TARBALL | tar jx +mv Python-3.1.0 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install + +cd .. +rm -fr src \ No newline at end of file diff --git a/formula/python-3.1.1 b/formula/python-3.1.1 new file mode 100755 index 0000000..0c798e9 --- /dev/null +++ b/formula/python-3.1.1 @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# Options: + +OUT_PREFIX=$1 + +echo "Building SQLite..." +./parts/sqlite $OUT_PREFIX + +echo "Building Python..." +SOURCE_TARBALL='http://www.python.org/ftp/python/3.1.1/Python-3.1.1.tar.bz2' +curl $SOURCE_TARBALL | tar jx +mv Python-3.1.1 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install + +cd .. +rm -fr src \ No newline at end of file diff --git a/formula/python-3.1.2 b/formula/python-3.1.2 new file mode 100755 index 0000000..69f440a --- /dev/null +++ b/formula/python-3.1.2 @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# Options: + +OUT_PREFIX=$1 + +echo "Building SQLite..." +./parts/sqlite $OUT_PREFIX + +echo "Building Python..." +SOURCE_TARBALL='http://www.python.org/ftp/python/3.1.2/Python-3.1.2.tar.bz2' +curl $SOURCE_TARBALL | tar jx +mv Python-3.1.2 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install + +cd .. +rm -fr src \ No newline at end of file diff --git a/formula/python-3.1.3 b/formula/python-3.1.3 new file mode 100755 index 0000000..0f5fab8 --- /dev/null +++ b/formula/python-3.1.3 @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# Options: + +OUT_PREFIX=$1 + +echo "Building SQLite..." +./parts/sqlite $OUT_PREFIX + +echo "Building Python..." +SOURCE_TARBALL='http://www.python.org/ftp/python/3.1.3/Python-3.1.3.tar.bz2' +curl $SOURCE_TARBALL | tar jx +mv Python-3.1.3 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install + +cd .. +rm -fr src \ No newline at end of file diff --git a/formula/python-3.1.4 b/formula/python-3.1.4 new file mode 100755 index 0000000..9e4d392 --- /dev/null +++ b/formula/python-3.1.4 @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# Options: + +OUT_PREFIX=$1 + +echo "Building SQLite..." +./parts/sqlite $OUT_PREFIX + +echo "Building Python..." +SOURCE_TARBALL='http://www.python.org/ftp/python/3.1.4/Python-3.1.4.tar.bz2' +curl $SOURCE_TARBALL | tar jx +mv Python-3.1.4 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install + +cd .. +rm -fr src \ No newline at end of file diff --git a/formula/python-3.1.5 b/formula/python-3.1.5 new file mode 100755 index 0000000..97a8946 --- /dev/null +++ b/formula/python-3.1.5 @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# Options: + +OUT_PREFIX=$1 + +echo "Building SQLite..." +./parts/sqlite $OUT_PREFIX + +echo "Building Python..." +SOURCE_TARBALL='http://www.python.org/ftp/python/3.1.5/Python-3.1.5.tar.bz2' +curl $SOURCE_TARBALL | tar jx +mv Python-3.1.5 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install + +cd .. +rm -fr src \ No newline at end of file diff --git a/formula/python-3.2.0 b/formula/python-3.2.0 new file mode 100755 index 0000000..3a7f19e --- /dev/null +++ b/formula/python-3.2.0 @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# Options: + +OUT_PREFIX=$1 + +echo "Building SQLite..." +./parts/sqlite $OUT_PREFIX + +echo "Building Python..." +SOURCE_TARBALL='http://www.python.org/ftp/python/3.2.0/Python-3.2.0.tar.bz2' +curl $SOURCE_TARBALL | tar jx +mv Python-3.2.0 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install + +cd .. +rm -fr src \ No newline at end of file diff --git a/formula/python-3.2.1 b/formula/python-3.2.1 new file mode 100755 index 0000000..1f7d2af --- /dev/null +++ b/formula/python-3.2.1 @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# Options: + +OUT_PREFIX=$1 + +echo "Building SQLite..." +./parts/sqlite $OUT_PREFIX + +echo "Building Python..." +SOURCE_TARBALL='http://www.python.org/ftp/python/3.2.1/Python-3.2.1.tar.bz2' +curl $SOURCE_TARBALL | tar jx +mv Python-3.2.1 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install + +cd .. +rm -fr src \ No newline at end of file diff --git a/formula/python-3.2.2 b/formula/python-3.2.2 new file mode 100755 index 0000000..4a03dba --- /dev/null +++ b/formula/python-3.2.2 @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# Options: + +OUT_PREFIX=$1 + +echo "Building SQLite..." +./parts/sqlite $OUT_PREFIX + +echo "Building Python..." +SOURCE_TARBALL='http://www.python.org/ftp/python/3.2.2/Python-3.2.2.tar.bz2' +curl $SOURCE_TARBALL | tar jx +mv Python-3.2.2 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install + +cd .. +rm -fr src \ No newline at end of file diff --git a/formula/python-3.2.3 b/formula/python-3.2.3 new file mode 100755 index 0000000..9a1435c --- /dev/null +++ b/formula/python-3.2.3 @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# Options: + +OUT_PREFIX=$1 + +echo "Building SQLite..." +./parts/sqlite $OUT_PREFIX + +echo "Building Python..." +SOURCE_TARBALL='http://www.python.org/ftp/python/3.2.3/Python-3.2.3.tar.bz2' +curl $SOURCE_TARBALL | tar jx +mv Python-3.2.3 src +cd src + +./configure --prefix=$OUT_PREFIX +make +make install + +cd .. +rm -fr src \ No newline at end of file