From 529b658cf7453c9dee776381aae707958f196d12 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Wed, 31 Mar 2010 14:37:06 -0700 Subject: Update Python to 2.6.5 Signed-off-by: Adam Vandenberg --- Library/Formula/python.rb | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'Library/Formula/python.rb') diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb index 63f5f82df..b5f7853a5 100644 --- a/Library/Formula/python.rb +++ b/Library/Formula/python.rb @@ -1,22 +1,18 @@ require 'formula' class Python :recommended + # Python 2.6.5 will build against OS X's libedit, + # but let's keep using GNU readline. + depends_on 'readline' => :optional # http://docs.python.org/library/gdbm.html depends_on 'gdbm' => :optional # http://docs.python.org/library/sqlite3.html depends_on 'sqlite' => :optional - def patches - # don't append space after completion - {:p0 => ["http://bugs.python.org/file14599/python-2.6-readline.patch"]} - end - def options [ ["--framework", "Do a 'Framework' build instead of a UNIX-style build."], @@ -33,9 +29,9 @@ class Python