Commit aa580508 authored by Miss Islington (bot)'s avatar Miss Islington (bot) Committed by GitHub

bpo-35402: Update macOS installer to use Tcl 8.6.9 / Tk 8.6.9.1 (GH-11101)

(cherry picked from commit 7cf3d8e2)
Co-authored-by: default avatarNed Deily <nad@python.org>
parent 55076cc0
...@@ -223,9 +223,9 @@ def library_recipes(): ...@@ -223,9 +223,9 @@ def library_recipes():
if internalTk(): if internalTk():
result.extend([ result.extend([
dict( dict(
name="Tcl 8.6.8", name="Tcl 8.6.9",
url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tcl8.6.8-src.tar.gz", url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tcl8.6.9-src.tar.gz",
checksum='81656d3367af032e0ae6157eff134f89', checksum='aa0a121d95a0e7b73a036f26028538d4',
buildDir="unix", buildDir="unix",
configure_pre=[ configure_pre=[
'--enable-shared', '--enable-shared',
...@@ -239,12 +239,9 @@ def library_recipes(): ...@@ -239,12 +239,9 @@ def library_recipes():
}, },
), ),
dict( dict(
name="Tk 8.6.8", name="Tk 8.6.9.1",
url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tk8.6.8-src.tar.gz", url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tk8.6.9.1-src.tar.gz",
checksum='5e0faecba458ee1386078fb228d008ba', checksum='9efe3976468352dc894dae0c4e785a8e',
patches=[
"tk868_on_10_8_10_9.patch",
],
buildDir="unix", buildDir="unix",
configure_pre=[ configure_pre=[
'--enable-aqua', '--enable-aqua',
...@@ -706,6 +703,7 @@ def extractArchive(builddir, archiveName): ...@@ -706,6 +703,7 @@ def extractArchive(builddir, archiveName):
work for current Tcl and Tk source releases where the basename of work for current Tcl and Tk source releases where the basename of
the archive ends with "-src" but the uncompressed directory does not. the archive ends with "-src" but the uncompressed directory does not.
For now, just special case Tcl and Tk tar.gz downloads. For now, just special case Tcl and Tk tar.gz downloads.
Another special case: the tk8.6.9.1 tarball extracts to tk8.6.9.
""" """
curdir = os.getcwd() curdir = os.getcwd()
try: try:
...@@ -715,6 +713,8 @@ def extractArchive(builddir, archiveName): ...@@ -715,6 +713,8 @@ def extractArchive(builddir, archiveName):
if ((retval.startswith('tcl') or retval.startswith('tk')) if ((retval.startswith('tcl') or retval.startswith('tk'))
and retval.endswith('-src')): and retval.endswith('-src')):
retval = retval[:-4] retval = retval[:-4]
if retval == 'tk8.6.9.1':
retval = 'tk8.6.9'
if os.path.exists(retval): if os.path.exists(retval):
shutil.rmtree(retval) shutil.rmtree(retval)
fp = os.popen("tar zxf %s 2>&1"%(shellQuote(archiveName),), 'r') fp = os.popen("tar zxf %s 2>&1"%(shellQuote(archiveName),), 'r')
......
Fix build failure with +quartz variant on OS X 10.8 and 10.9.
Even though Gestalt was deprecated in OS X 10.8, it should work fine
through OS X 10.9, and its replacement NSOperatingSystemVersion was
not introduced until OS X 10.10.
Patch from MacPorts project and reported upstream:
https://trac.macports.org/ticket/55649
--- tk8.6.8/macosx/tkMacOSXXStubs.c.orig 2017-12-06 09:25:08.000000000 -0600
+++ tk8.6.8-patched/macosx/tkMacOSXXStubs.c 2018-01-06 19:34:17.000000000 -0600
@@ -175,7 +175,7 @@
{
int major, minor, patch;
-#if MAC_OS_X_VERSION_MIN_REQUIRED < 1080
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 101000
Gestalt(gestaltSystemVersionMajor, (SInt32*)&major);
Gestalt(gestaltSystemVersionMinor, (SInt32*)&minor);
Gestalt(gestaltSystemVersionBugFix, (SInt32*)&patch);
Update macOS installer to use Tcl/Tk 8.6.9.1.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment