mirror of https://github.com/python/cpython
gh-92171: Update Tcl/Tk download links in macOS installer script (GH-92179)
This commit is contained in:
parent
f0614ca980
commit
6ecf594baa
|
@ -271,10 +271,11 @@ def library_recipes():
|
||||||
tk_patches = [ ]
|
tk_patches = [ ]
|
||||||
|
|
||||||
|
|
||||||
|
base_url = "https://prdownloads.sourceforge.net/tcl/{what}{version}-src.tar.gz"
|
||||||
result.extend([
|
result.extend([
|
||||||
dict(
|
dict(
|
||||||
name="Tcl %s"%(tcl_tk_ver,),
|
name="Tcl %s"%(tcl_tk_ver,),
|
||||||
url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tcl%s-src.tar.gz"%(tcl_tk_ver,),
|
url=base_url.format(what="tcl", version=tcl_tk_ver),
|
||||||
checksum=tcl_checksum,
|
checksum=tcl_checksum,
|
||||||
buildDir="unix",
|
buildDir="unix",
|
||||||
configure_pre=[
|
configure_pre=[
|
||||||
|
@ -291,7 +292,7 @@ def library_recipes():
|
||||||
),
|
),
|
||||||
dict(
|
dict(
|
||||||
name="Tk %s"%(tcl_tk_ver,),
|
name="Tk %s"%(tcl_tk_ver,),
|
||||||
url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tk%s-src.tar.gz"%(tcl_tk_ver,),
|
url=base_url.format(what="tk", version=tcl_tk_ver),
|
||||||
checksum=tk_checksum,
|
checksum=tk_checksum,
|
||||||
patches=tk_patches,
|
patches=tk_patches,
|
||||||
buildDir="unix",
|
buildDir="unix",
|
||||||
|
|
Loading…
Reference in New Issue