[Python-checkins] cpython (merge 3.2 -> 3.3): Issue #14018: merge to 3.3

ned.deily python-checkins at python.org
Tue Jan 29 09:19:56 CET 2013


http://hg.python.org/cpython/rev/6e6a76166c47
changeset:   81801:6e6a76166c47
branch:      3.3
parent:      81796:d5ee6d13af18
parent:      81800:d54330c8daaa
user:        Ned Deily <nad at acm.org>
date:        Tue Jan 29 00:17:19 2013 -0800
summary:
  Issue #14018: merge to 3.3

files:
  Mac/BuildScript/build-installer.py |  6 +++++-
  1 files changed, 5 insertions(+), 1 deletions(-)


diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -192,7 +192,8 @@
 
     LT_10_5 = bool(DEPTARGET < '10.5')
 
-    result.extend([
+    if getVersionTuple() >= (3, 3):
+        result.extend([
           dict(
               name="XZ 5.0.3",
               url="http://tukaani.org/xz/xz-5.0.3.tar.gz",
@@ -201,6 +202,9 @@
                     '--disable-dependency-tracking',
               ]
               ),
+        ])
+
+    result.extend([
           dict(
               name="NCurses 5.9",
               url="http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.9.tar.gz",

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list