From a88926aac00807c2d46b81866ec652299280f615 Mon Sep 17 00:00:00 2001 From: Nikita Shulga Date: Tue, 28 Mar 2023 12:58:34 -0700 Subject: [PATCH] Do not use ftp (#1369) * Do not use ftp `s#ftp://#https://#` * Remove no-longer relevant comment --- ffmpeg/win/Dockerfile | 2 +- manywheel/build_scripts/build_utils.sh | 12 ++++-------- 2 files changed, 5 insertions(+), 9 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..7f607ed44 100755 --- a/manywheel/build_scripts/build_utils.sh +++ b/manywheel/build_scripts/build_utils.sh @@ -1,14 +1,10 @@ #!/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=ftp://ftp.openssl.org/source/old/1.1.1/ -# Ditto the curl sources -CURL_DOWNLOAD_URL=http://curl.askapache.com/download - -AUTOCONF_DOWNLOAD_URL=http://ftp.gnu.org/gnu/autoconf +OPENSSL_DOWNLOAD_URL=https://ftp.openssl.org/source/old/1.1.1/ +CURL_DOWNLOAD_URL=https://curl.askapache.com/download + +AUTOCONF_DOWNLOAD_URL=https://ftp.gnu.org/gnu/autoconf function check_var {