From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 27 May 2020 10:28:45 +0000 (-0700) Subject: Fix the link to ncurses patch download in macos installer build script (GH-20421) X-Git-Tag: v3.8.4rc1~86 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7c82528d40acae2edf0eb73632e65b044792eeac;p=thirdparty%2FPython%2Fcpython.git Fix the link to ncurses patch download in macos installer build script (GH-20421) Reason: the link `ftp://invisible-island.net/ncurses//5.9/ncurses-5.9-20120616-patch.sh.bz2` is dead, which prevents `Mac/BuildScript/build-installer.py` from completing. Looks like the host of the FTP server was changed to `ftp.invisible-island.net`, thus this proposal. Signed-off-by: oleg.hoefling (cherry picked from commit 7da46b676aed7111de34b57c8b942a7f3bb80327) Co-authored-by: Oleg Höfling --- diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 0ad7298e9824..bdfa6f4adf61 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -302,7 +302,7 @@ def library_recipes(): "--libdir=/Library/Frameworks/Python.framework/Versions/%s/lib"%(getVersion(),), ], patchscripts=[ - ("ftp://invisible-island.net/ncurses//5.9/ncurses-5.9-20120616-patch.sh.bz2", + ("ftp://ftp.invisible-island.net/ncurses//5.9/ncurses-5.9-20120616-patch.sh.bz2", "f54bf02a349f96a7c4f0d00922f3a0d4"), ], useLDFlags=False,