From 6a9093642cfb9867215c6978f09018f6a513b251 Mon Sep 17 00:00:00 2001 From: Emmanuel Engelhart Date: Wed, 15 Nov 2023 20:57:06 +0100 Subject: [PATCH] Bump-up aria2 to 1.37.0 --- kiwixbuild/dependencies/aria2.py | 6 +++--- kiwixbuild/versions.py | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/kiwixbuild/dependencies/aria2.py b/kiwixbuild/dependencies/aria2.py index a15466a..d19bcb7 100644 --- a/kiwixbuild/dependencies/aria2.py +++ b/kiwixbuild/dependencies/aria2.py @@ -10,9 +10,9 @@ class Aria2(Dependency): name = "aria2" class Source(ReleaseDownload): - archive = Remotefile('aria2-1.36.0.tar.xz', - '58d1e7608c12404f0229a3d9a4953d0d00c18040504498b483305bcb3de907a5', - 'https://github.com/aria2/aria2/releases/download/release-1.36.0/aria2-1.36.0.tar.xz') + archive = Remotefile('aria2-1.37.0.tar.xz', + '60a420ad7085eb616cb6e2bdf0a7206d68ff3d37fb5a956dc44242eb2f79b66b', + 'https://github.com/aria2/aria2/releases/download/release-1.37.0/aria2-1.37.0.tar.xz') def _post_prepare_script(self, context): context.try_skip(self.extract_path) diff --git a/kiwixbuild/versions.py b/kiwixbuild/versions.py index ae8d8ee..cad84e0 100644 --- a/kiwixbuild/versions.py +++ b/kiwixbuild/versions.py @@ -1,3 +1,4 @@ + # This file reference all the versions of the depedencies we use in kiwix-build. main_project_versions = { @@ -39,7 +40,7 @@ release_versions = { # This is the "version" of the whole base_deps_versions dict. # Change this when you change base_deps_versions. -base_deps_meta_version = '94' +base_deps_meta_version = '95' base_deps_versions = { 'zlib' : '1.2.12', @@ -53,7 +54,7 @@ base_deps_versions = { 'libmicrohttpd' : '0.9.76', 'gumbo' : '0.10.1', 'icu4c' : '73.2', - 'libaria2' : '1.36.0', + 'libaria2' : '1.37.0', 'libmagic' : '5.44', 'android-ndk' : 'r21e', 'qt' : '5.10.1',