diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-23 20:42:06 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-23 20:42:06 (GMT) |
commit | 33ac44d5e4a5009d837e492aa5b1ef1f1b166e02 (patch) | |
tree | 3edd52e7d0ff02fd721f2f0c5eca0a7b38c7580f /library | |
parent | 1f58beed10dd10570b37d1f8e54391bcf1fb7f7c (diff) | |
parent | 4288b3bee9191cd1a30c663d565e352ff6866a68 (diff) | |
download | tcl-33ac44d5e4a5009d837e492aa5b1ef1f1b166e02.zip tcl-33ac44d5e4a5009d837e492aa5b1ef1f1b166e02.tar.gz tcl-33ac44d5e4a5009d837e492aa5b1ef1f1b166e02.tar.bz2 |
Merge 8.7
Diffstat (limited to 'library')
-rw-r--r-- | library/manifest.txt | 2 | ||||
-rw-r--r-- | library/platform/pkgIndex.tcl | 2 | ||||
-rw-r--r-- | library/platform/platform.tcl | 13 |
3 files changed, 14 insertions, 3 deletions
diff --git a/library/manifest.txt b/library/manifest.txt index b425920..6d999e8 100644 --- a/library/manifest.txt +++ b/library/manifest.txt @@ -10,7 +10,7 @@ apply {{dir} { 1 opt 0.4.8 {opt optparse.tcl} 0 cookiejar 0.2.0 {cookiejar cookiejar.tcl} 0 tcl::idna 1.0.1 {cookiejar idna.tcl} - 0 platform 1.0.18 {platform platform.tcl} + 0 platform 1.0.19 {platform platform.tcl} 0 platform::shell 1.1.4 {platform shell.tcl} 1 tcltest 2.5.5 {tcltest tcltest.tcl} } { diff --git a/library/platform/pkgIndex.tcl b/library/platform/pkgIndex.tcl index de28fd1..e7029d0 100644 --- a/library/platform/pkgIndex.tcl +++ b/library/platform/pkgIndex.tcl @@ -1,3 +1,3 @@ -package ifneeded platform 1.0.18 [list source [file join $dir platform.tcl]] +package ifneeded platform 1.0.19 [list source [file join $dir platform.tcl]] package ifneeded platform::shell 1.1.4 [list source [file join $dir shell.tcl]] diff --git a/library/platform/platform.tcl b/library/platform/platform.tcl index 752f069..00eef1c 100644 --- a/library/platform/platform.tcl +++ b/library/platform/platform.tcl @@ -364,6 +364,17 @@ proc ::platform::patterns {id} { foreach {major minor} [split $v .] break set res {} + if {$major eq 13} { + # Add 13.0 to 13.minor to patterns. + for {set j $minor} {$j >= 0} {incr j -1} { + lappend res macosx${major}.${j}-${cpu} + foreach a $alt { + lappend res macosx${major}.${j}-$a + } + } + set major 12 + set minor 6 + } if {$major eq 12} { # Add 12.0 to 12.minor to patterns. for {set j $minor} {$j >= 0} {incr j -1} { @@ -420,7 +431,7 @@ proc ::platform::patterns {id} { # ### ### ### ######### ######### ######### ## Ready -package provide platform 1.0.18 +package provide platform 1.0.19 # ### ### ### ######### ######### ######### ## Demo application |