Merge pull request #829 from kiwix/relocate-musl-archives
Rellocate musl archive
This commit is contained in:
commit
3329cb87de
|
@ -11,7 +11,8 @@ class aarch64_musl_toolchain(Dependency):
|
|||
archive = Remotefile(
|
||||
"aarch64-linux-musl-cross.tgz",
|
||||
"0f18a885b161815520bbb5757a4b4ab40d0898c29bebee58d0cddd6112e59cc6",
|
||||
"https://more.musl.cc/10/x86_64-linux-musl/aarch64-linux-musl-cross.tgz",
|
||||
# "https://more.musl.cc/10/x86_64-linux-musl/aarch64-linux-musl-cross.tgz",
|
||||
"https://dev.kiwix.org/kiwix-build/aarch64-linux-musl-cross.tgz"
|
||||
)
|
||||
|
||||
Builder = TcCopyBuilder
|
||||
|
@ -26,7 +27,8 @@ class x86_64_musl_toolchain(Dependency):
|
|||
archive = Remotefile(
|
||||
"x86_64-linux-musl-cross.tgz",
|
||||
"a3d55de8105739fcfb8b10eaa72cdb5d779319726bacff24149388d7608d1ed8",
|
||||
"https://more.musl.cc/10/x86_64-linux-musl/x86_64-linux-musl-cross.tgz",
|
||||
# "https://more.musl.cc/10/x86_64-linux-musl/x86_64-linux-musl-cross.tgz",
|
||||
"https://dev.kiwix.org/kiwix-build/aarch64-linux-musl-cross.tgz"
|
||||
)
|
||||
|
||||
Builder = TcCopyBuilder
|
||||
|
|
|
@ -184,7 +184,7 @@ def download_remote(what, where):
|
|||
current = (current + 1) % 4
|
||||
file.write(batch)
|
||||
except urllib.error.URLError as e:
|
||||
print("Cannot download url {}:\n{}".format(what.url, e.reason))
|
||||
print("Cannot download URL {}\n{}".format(what.url, e.reason))
|
||||
raise StopBuild()
|
||||
|
||||
if not what.sha256:
|
||||
|
|
|
@ -23,7 +23,7 @@ main_project_versions = {
|
|||
# - Else, increment the value. If no value was present, see `(was ...)`.
|
||||
|
||||
release_versions = {
|
||||
"libzim": 2, # Depends of base deps (was 1)
|
||||
"libzim": 3, # Depends of base deps (was 2)
|
||||
"libkiwix": None, # Depends of libzim (was 1)
|
||||
"kiwix-tools": None, # Depends of libkiwix and libzim (was 2)
|
||||
"zim-tools": None, # Depends of libzim (was 0)
|
||||
|
|
Loading…
Reference in New Issue