Skip to content

Commit 1cbaadf

Browse files
authored
Update zlib port to 1.2.12 (#17593)
Fixes #17592
1 parent 2a3becf commit 1cbaadf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/ports/zlib.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
import shutil
88
from pathlib import Path
99

10-
VERSION = '1.2.11'
11-
HASH = 'a42b8359e76cf7b3ae70bf31f0f8a8caa407ac80e8fe08b838076cd5e45ac2e685dae45eb59db2d25543fb3b5bd13b843a02bb8373cda704d7238be50d5e9c68'
10+
VERSION = '1.2.12'
11+
HASH = 'cc2366fa45d5dfee1f983c8c51515e0cff959b61471e2e8d24350dea22d3f6fcc50723615a911b046ffc95f51ba337d39ae402131a55e6d1541d3b095d6c0a14'
1212

1313

1414
def needed(settings):
1515
return settings.USE_ZLIB
1616

1717

1818
def get(ports, settings, shared):
19-
ports.fetch_project('zlib', f'https://storage.googleapis.com/webassembly/emscripten-ports/zlib-{VERSION}.zip', 'zlib-' + VERSION, sha512hash=HASH)
19+
ports.fetch_project('zlib', f'https://storage.googleapis.com/webassembly/emscripten-ports/zlib-{VERSION}.tar.gz', 'zlib-' + VERSION, sha512hash=HASH)
2020

2121
def create(final):
2222
source_path = os.path.join(ports.get_dir(), 'zlib', 'zlib-' + VERSION)

0 commit comments

Comments
 (0)