Pier Angelo Vendrame pushed to branch maint-13.5 at The Tor Project / Applications / tor-browser-build

Commits:

2 changed files:

Changes:

  • projects/openssl/config
    ... ... @@ -35,6 +35,6 @@ input_files:
    35 35
       - project: container-image
    
    36 36
       - name: '[% c("var/compiler") %]'
    
    37 37
         project: '[% c("var/compiler") %]'
    
    38
    -  - URL: 'https://www.openssl.org/source/openssl-[% c("version") %].tar.gz'
    
    38
    +  - URL: 'https://github.com/openssl/openssl/releases/download/openssl-[% c("version") %]/openssl-[% c("version") %].tar.gz'
    
    39 39
         sha256sum: eeca035d4dd4e84fc25846d952da6297484afa0650a6f84c682e39df3a4123ca
    
    40 40
         name: openssl

  • tools/relprep.py
    ... ... @@ -403,7 +403,7 @@ class ReleasePreparation:
    403 403
             source = self.find_input(config, "openssl")
    
    404 404
             # No need to update URL, as it uses a variable.
    
    405 405
             hash_url = (
    
    406
    -            f"https://www.openssl.org/source/openssl-{version}.tar.gz.sha256"
    
    406
    +            f"https://github.com/openssl/openssl/releases/download/openssl-{version}/openssl-{version}.tar.gz.sha256"
    
    407 407
             )
    
    408 408
             r = requests.get(hash_url)
    
    409 409
             r.raise_for_status()