diff options
author | 2020-04-02 18:36:04 +0300 | |
---|---|---|
committer | 2020-04-02 18:36:04 +0300 | |
commit | a3594e9a927f98c5f0f3970c6f9623b4a0552182 (patch) | |
tree | 0f0fd605157b87c8bc26f3b5f84e3c4554d97bac | |
parent | backport e7ded1fa63e7 (diff) | |
download | pypy-a3594e9a927f98c5f0f3970c6f9623b4a0552182.tar.gz pypy-a3594e9a927f98c5f0f3970c6f9623b4a0552182.tar.bz2 pypy-a3594e9a927f98c5f0f3970c6f9623b4a0552182.zip |
download of ssl moved
-rw-r--r-- | lib_pypy/tools/build_cffi_imports.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_pypy/tools/build_cffi_imports.py b/lib_pypy/tools/build_cffi_imports.py index 84e77bc7de..596e636379 100644 --- a/lib_pypy/tools/build_cffi_imports.py +++ b/lib_pypy/tools/build_cffi_imports.py @@ -51,7 +51,7 @@ cffi_dependencies = { ['make', '-s', '-j', str(multiprocessing.cpu_count())], ['make', 'install', 'DESTDIR={}/'.format(deps_destdir)], ]), - '_ssl': ('https://www.openssl.org/source/openssl-1.1.1c.tar.gz', + '_ssl': ('https://www.openssl.org/source/old/1.1.1/openssl-1.1.1c.tar.gz', 'f6fb3079ad15076154eda9413fed42877d668e7069d9b87396d0804fdb3f4c90', [['./config', '--prefix=/usr', 'no-shared'], ['make', '-s', '-j', str(multiprocessing.cpu_count())], @@ -117,7 +117,7 @@ def _build_dependency(name, patches=[]): # make sure the hash matches if _sha256(archive) != dgst: - return 1, '{} archive {} hash mismatch'.format(key, archive), '' + return 1, '{} archive {} hash mismatch'.format(name, archive), '' shutil.rmtree(deps_destdir, ignore_errors=True) os.makedirs(deps_destdir) |