From 9ff9466fd5b84e756a078463bc4328d267b478cb Mon Sep 17 00:00:00 2001 From: Camille Baldock Date: Fri, 20 Dec 2019 12:21:52 -0800 Subject: [PATCH 1/2] Use GitHub HTTPS instead of sourceware FTP --- builds/libraries/vendor/libffi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builds/libraries/vendor/libffi b/builds/libraries/vendor/libffi index 5955371..ba8c7dd 100755 --- a/builds/libraries/vendor/libffi +++ b/builds/libraries/vendor/libffi @@ -15,11 +15,11 @@ hash -r echo "Building libffi…" -SOURCE_TARBALL='ftp://sourceware.org/pub/libffi/libffi-3.1.tar.gz' +SOURCE_TARBALL='https://github.com/libffi/libffi/archive/v3.1.tar.gz' curl -L $SOURCE_TARBALL | tar x -cd libffi-3.1 +cd v3.1 ./configure --prefix=$OUT_PREFIX --disable-static && make make install From a19d4950a97196a35c66e0f38f052b3afd79c6e8 Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Tue, 3 Mar 2020 12:31:58 -0800 Subject: [PATCH 2/2] changelog update and typo fix --- CHANGELOG.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 043667f..43e154b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,15 @@ # Master -- Python 3.8.2 now available. - +- Correct ftp to https in vendored file -------------------------------------------------------------------------------- -# 163 (2020-02-20) +# 165 (2020-02-27) + +- Python 3.8.2 now available. + +# 164 (2020-02-20) - Update requirements.txt builds to use Pip 20.0.2 - Download get-pip.py to tmpdir instead of root dir