summaryrefslogtreecommitdiffstats
path: root/Mac/BuildScript/build-installer.py
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2018-02-27 22:36:12 (GMT)
committerNed Deily <nad@python.org>2018-02-27 22:36:12 (GMT)
commit9189e95d9c6691de18783b2e9213ec2dc18fd0c5 (patch)
tree627dc1d5d702830cda458d306222bebd3cead023 /Mac/BuildScript/build-installer.py
parentd7687eb4b66c9f675b112eff1169326a1766c111 (diff)
downloadcpython-9189e95d9c6691de18783b2e9213ec2dc18fd0c5.zip
cpython-9189e95d9c6691de18783b2e9213ec2dc18fd0c5.tar.gz
cpython-9189e95d9c6691de18783b2e9213ec2dc18fd0c5.tar.bz2
bpo-32901: update macOS 10.9+ installer to Tcl/Tk 8.6.8
Diffstat (limited to 'Mac/BuildScript/build-installer.py')
-rwxr-xr-xMac/BuildScript/build-installer.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index bacdbfb..7f6228b 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -225,9 +225,9 @@ def library_recipes():
if internalTk():
result.extend([
dict(
- name="Tcl 8.6.7",
- url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tcl8.6.7-src.tar.gz",
- checksum='5673aaf45b5de5d8dd80bb3daaeb8838',
+ name="Tcl 8.6.8",
+ url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tcl8.6.8-src.tar.gz",
+ checksum='81656d3367af032e0ae6157eff134f89',
buildDir="unix",
configure_pre=[
'--enable-shared',
@@ -241,9 +241,12 @@ def library_recipes():
},
),
dict(
- name="Tk 8.6.7",
- url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tk8.6.7-src.tar.gz",
- checksum='46ea9c0165c515d87393700f4891ab6f',
+ name="Tk 8.6.8",
+ url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tk8.6.8-src.tar.gz",
+ checksum='5e0faecba458ee1386078fb228d008ba',
+ patches=[
+ "tk868_on_10_8_10_9.patch",
+ ],
buildDir="unix",
configure_pre=[
'--enable-aqua',