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

Commits:

4 changed files:

Changes:

  • projects/browser/ddmg.sh
    ... ... @@ -37,7 +37,7 @@ hfsplus "$hfsfile" symlink /Applications /Applications
    37 37
     # Show the volume icon
    
    38 38
     hfsplus "$hfsfile" attr / C
    
    39 39
     
    
    40
    -dmg dmg "$hfsfile" [% c('dmg_out', { error_if_undef => 1 }) %]
    
    40
    +dmg dmg --compression lzma --level 5 --run-sectors 2048 "$hfsfile" [% c('dmg_out', { error_if_undef => 1 }) %]
    
    41 41
     popd
    
    42 42
     
    
    43 43
     rm -Rf "$dmg_tmpdir"

  • projects/libdmg-hfsplus/config
    1 1
     # vim: filetype=yaml sw=2
    
    2 2
     version: '[% c("abbrev") %]'
    
    3 3
     git_url: https://github.com/mozilla/libdmg-hfsplus
    
    4
    -git_hash: a0a959bd25370c1c0a00c9ec525e3e78285adbf9
    
    4
    +git_hash: d6287b5afc2406b398de42f74eba432f2123b937
    
    5 5
     filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]'
    
    6 6
     container:
    
    7 7
       use_container: 1
    
    ... ... @@ -10,6 +10,7 @@ var:
    10 10
         - build-essential
    
    11 11
         - zlib1g-dev
    
    12 12
         - libbz2-dev
    
    13
    +    - liblzma-dev
    
    13 14
     input_files:
    
    14 15
       - project: container-image
    
    15 16
       - name: cmake
    

  • tools/signing/ddmg.sh
    ... ... @@ -57,7 +57,7 @@ hfsplus "$hfsfile" symlink /Applications /Applications
    57 57
     # Show the volume icon
    
    58 58
     hfsplus "$hfsfile" attr / C
    
    59 59
     
    
    60
    -dmg dmg "$hfsfile" "$dest_file"
    
    60
    +dmg dmg --compression lzma --level 5 --run-sectors 2048 "$hfsfile" "$dest_file"
    
    61 61
     
    
    62 62
     echo "Finished: " $(basename $dest_file)
    
    63 63
     
    

  • tools/signing/gatekeeper-bundling.sh
    ... ... @@ -39,7 +39,7 @@ test -f $faketime_path || \
    39 39
       exit_error "$faketime_path is missing"
    
    40 40
     test -d $macos_stapled_dir || \
    
    41 41
       exit_error "The stapled macos zip files should be placed in directory $macos_stapled_dir"
    
    42
    -libdmg_file="$script_dir/../../out/libdmg-hfsplus/libdmg-hfsplus-a0a959bd2537-f2819c.tar.zst"
    
    42
    +libdmg_file="$script_dir/../../out/libdmg-hfsplus/libdmg-hfsplus-d6287b5afc24-6f206c.tar.zst"
    
    43 43
     test -f "$libdmg_file" || \
    
    44 44
       exit_error "$libdmg_file is missing." \
    
    45 45
                  "You can build it with:" \