[Python-checkins] cpython (merge 3.3 -> 3.3): Merge heads
serhiy.storchaka
python-checkins at python.org
Tue Jan 29 09:53:19 CET 2013
http://hg.python.org/cpython/rev/949752546619
changeset: 81809:949752546619
branch: 3.3
parent: 81805:086defaf16fe
parent: 81801:6e6a76166c47
user: Serhiy Storchaka <storchaka at gmail.com>
date: Tue Jan 29 10:40:16 2013 +0200
summary:
Merge heads
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