Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
7cf3d8e2
Unverified
Kaydet (Commit)
7cf3d8e2
authored
6 years ago
tarafından
Ned Deily
Kaydeden (comit)
GitHub
6 years ago
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-35402: Update macOS installer to use Tcl 8.6.9 / Tk 8.6.9.1 (GH-11101)
üst
3ec98264
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
27 deletions
+10
-27
build-installer.py
Mac/BuildScript/build-installer.py
+9
-9
tk868_on_10_8_10_9.patch
Mac/BuildScript/tk868_on_10_8_10_9.patch
+0
-18
2018-12-10-02-44-48.bpo-35402.xzn8qJ.rst
...EWS.d/next/macOS/2018-12-10-02-44-48.bpo-35402.xzn8qJ.rst
+1
-0
No files found.
Mac/BuildScript/build-installer.py
Dosyayı görüntüle @
7cf3d8e2
...
...
@@ -227,9 +227,9 @@ def library_recipes():
if
internalTk
():
result
.
extend
([
dict
(
name
=
"Tcl 8.6.
8
"
,
url
=
"ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tcl8.6.
8
-src.tar.gz"
,
checksum
=
'
81656d3367af032e0ae6157eff134f89
'
,
name
=
"Tcl 8.6.
9
"
,
url
=
"ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tcl8.6.
9
-src.tar.gz"
,
checksum
=
'
aa0a121d95a0e7b73a036f26028538d4
'
,
buildDir
=
"unix"
,
configure_pre
=
[
'--enable-shared'
,
...
...
@@ -243,12 +243,9 @@ def library_recipes():
},
),
dict
(
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"
,
],
name
=
"Tk 8.6.9.1"
,
url
=
"ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tk8.6.9.1-src.tar.gz"
,
checksum
=
'9efe3976468352dc894dae0c4e785a8e'
,
buildDir
=
"unix"
,
configure_pre
=
[
'--enable-aqua'
,
...
...
@@ -709,6 +706,7 @@ def extractArchive(builddir, archiveName):
work for current Tcl and Tk source releases where the basename of
the archive ends with "-src" but the uncompressed directory does not.
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
()
try
:
...
...
@@ -718,6 +716,8 @@ def extractArchive(builddir, archiveName):
if
((
retval
.
startswith
(
'tcl'
)
or
retval
.
startswith
(
'tk'
))
and
retval
.
endswith
(
'-src'
)):
retval
=
retval
[:
-
4
]
if
retval
==
'tk8.6.9.1'
:
retval
=
'tk8.6.9'
if
os
.
path
.
exists
(
retval
):
shutil
.
rmtree
(
retval
)
fp
=
os
.
popen
(
"tar zxf
%
s 2>&1"
%
(
shellQuote
(
archiveName
),),
'r'
)
...
...
This diff is collapsed.
Click to expand it.
Mac/BuildScript/tk868_on_10_8_10_9.patch
deleted
100644 → 0
Dosyayı görüntüle @
3ec98264
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);
This diff is collapsed.
Click to expand it.
Misc/NEWS.d/next/macOS/2018-12-10-02-44-48.bpo-35402.xzn8qJ.rst
0 → 100644
Dosyayı görüntüle @
7cf3d8e2
Update macOS installer to use Tcl/Tk 8.6.9.1.
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment