Staging
v0.5.1
https://github.com/python/cpython
Revision c8e107607d8a2c9a149cf6a706d508a556729892 authored by Miss Islington (bot) on 27 May 2020, 10:29:25 UTC, committed by GitHub on 27 May 2020, 10:29:25 UTC

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 <oleg.hoefling@gmail.com>
(cherry picked from commit 7da46b676aed7111de34b57c8b942a7f3bb80327)

Co-authored-by: Oleg Höfling <hoefling@users.noreply.github.com>
1 parent 3f215f3
Raw File
Tip revision: c8e107607d8a2c9a149cf6a706d508a556729892 authored by Miss Islington (bot) on 27 May 2020, 10:29:25 UTC
Fix the link to ncurses patch download in macos installer build script (GH-20421)
Tip revision: c8e1076
posix-deps-apt.sh
apt-get update

apt-get -yq install \
    build-essential \
    zlib1g-dev \
    libbz2-dev \
    liblzma-dev \
    libncurses5-dev \
    libreadline6-dev \
    libsqlite3-dev \
    libssl-dev \
    libgdbm-dev \
    tk-dev \
    lzma \
    lzma-dev \
    liblzma-dev \
    libffi-dev \
    uuid-dev \
    xvfb

if [ ! -z "$1" ]
then
  echo ##vso[task.prependpath]$PWD/multissl/openssl/$1
  echo ##vso[task.setvariable variable=OPENSSL_DIR]$PWD/multissl/openssl/$1
  python3 Tools/ssl/multissltests.py --steps=library --base-directory $PWD/multissl --openssl $1 --system Linux
fi
back to top