[Python-checkins] (no subject)

Oleg Höfling webhook-mailer at python.org
Wed May 27 06:07:20 EDT 2020




To: python-checkins at python.org
Subject: Fix the link to ncurses patch download in macos installer build
 script (GH-20421)
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

https://github.com/python/cpython/commit/7da46b676aed7111de34b57c8b942a7f3bb8=
0327
commit: 7da46b676aed7111de34b57c8b942a7f3bb80327
branch: master
author: Oleg H=C3=B6fling <hoefling at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-05-27T03:07:15-07:00
summary:

Fix the link to ncurses patch download in macos installer build script (GH-20=
421)



Reason: the link `ftp://invisible-island.net/ncurses//5.9/ncurses-5.9-2012061=
6-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.in=
visible-island.net`, thus this proposal.

Signed-off-by: oleg.hoefling <oleg.hoefling at gmail.com>

files:
M Mac/BuildScript/build-installer.py

diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-insta=
ller.py
index a10601bed9f8c..76553c93a4957 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -302,7 +302,7 @@ def library_recipes():
                   "--libdir=3D/Library/Frameworks/Python.framework/Versions/=
%s/lib"%(getVersion(),),
               ],
               patchscripts=3D[
-                  ("ftp://invisible-island.net/ncurses//5.9/ncurses-5.9-2012=
0616-patch.sh.bz2",
+                  ("ftp://ftp.invisible-island.net/ncurses//5.9/ncurses-5.9-=
20120616-patch.sh.bz2",
                    "f54bf02a349f96a7c4f0d00922f3a0d4"),
                    ],
               useLDFlags=3DFalse,



More information about the Python-checkins mailing list