From 650e4b49c12db7eb6054d7544a15e3de20541405 Mon Sep 17 00:00:00 2001 From: Nikita Shulga Date: Tue, 28 Mar 2023 10:58:36 -0700 Subject: [PATCH 1/2] Do not use ftp `s#ftp://#https://#` --- ffmpeg/win/Dockerfile | 2 +- manywheel/build_scripts/build_utils.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ffmpeg/win/Dockerfile b/ffmpeg/win/Dockerfile index db0ee659b..3f6015524 100644 --- a/ffmpeg/win/Dockerfile +++ b/ffmpeg/win/Dockerfile @@ -35,7 +35,7 @@ RUN yum install -y \ nano # Update automake to 1.15 -RUN wget http://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz +RUN wget https://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz RUN tar -xzvf automake-1.15.tar.gz RUN cd automake-1.15.tar.gz && ./configure && make && make install diff --git a/manywheel/build_scripts/build_utils.sh b/manywheel/build_scripts/build_utils.sh index 5b8216a83..b2343dc68 100755 --- a/manywheel/build_scripts/build_utils.sh +++ b/manywheel/build_scripts/build_utils.sh @@ -4,11 +4,11 @@ # XXX: the official https server at www.openssl.org cannot be reached # with the old versions of openssl and curl in Centos 5.11 hence the fallback # to the ftp mirror: -OPENSSL_DOWNLOAD_URL=ftp://ftp.openssl.org/source/old/1.1.1/ +OPENSSL_DOWNLOAD_URL=https://ftp.openssl.org/source/old/1.1.1/ # Ditto the curl sources -CURL_DOWNLOAD_URL=http://curl.askapache.com/download +CURL_DOWNLOAD_URL=https://curl.askapache.com/download -AUTOCONF_DOWNLOAD_URL=http://ftp.gnu.org/gnu/autoconf +AUTOCONF_DOWNLOAD_URL=https://ftp.gnu.org/gnu/autoconf function check_var { From b97afa218d289861a457af1cd05207191ee31bfb Mon Sep 17 00:00:00 2001 From: Nikita Shulga Date: Tue, 28 Mar 2023 12:58:11 -0700 Subject: [PATCH 2/2] Remove no-longer relevant comment --- manywheel/build_scripts/build_utils.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/manywheel/build_scripts/build_utils.sh b/manywheel/build_scripts/build_utils.sh index b2343dc68..7f607ed44 100755 --- a/manywheel/build_scripts/build_utils.sh +++ b/manywheel/build_scripts/build_utils.sh @@ -1,11 +1,7 @@ #!/bin/bash # Helper utilities for build -# XXX: the official https server at www.openssl.org cannot be reached -# with the old versions of openssl and curl in Centos 5.11 hence the fallback -# to the ftp mirror: OPENSSL_DOWNLOAD_URL=https://ftp.openssl.org/source/old/1.1.1/ -# Ditto the curl sources CURL_DOWNLOAD_URL=https://curl.askapache.com/download AUTOCONF_DOWNLOAD_URL=https://ftp.gnu.org/gnu/autoconf