From b26b2f1295a86d0cae439e8aa4455e7164d27504 Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Sat, 18 Jan 2025 23:19:04 -0500 Subject: [PATCH 1/2] Bump webp to 1.5 --- README.rst | 2 +- scripts/build-ffmpeg.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 6123798c..487e9de7 100644 --- a/README.rst +++ b/README.rst @@ -32,7 +32,7 @@ Currently FFmpeg 7.1 is built with the following packages enabled for all platfo - vorbis 1.3.7 - vpx 1.14.0 - png 1.6.37 -- webp 1.4.0 +- webp 1.5.0 - x264 master - x265 3.5 diff --git a/scripts/build-ffmpeg.py b/scripts/build-ffmpeg.py index 51d17525..ecd8aa17 100644 --- a/scripts/build-ffmpeg.py +++ b/scripts/build-ffmpeg.py @@ -148,8 +148,8 @@ ), Package( name="webp", - source_filename="webp-1.4.0.tar.gz", - source_url="https://github.com/webmproject/libwebp/archive/refs/tags/v1.4.0.tar.gz", + source_filename="webp-1.5.0.tar.gz", + source_url="https://github.com/webmproject/libwebp/archive/refs/tags/v1.5.0.tar.gz", build_system="cmake", build_arguments=[ "-DWEBP_BUILD_ANIM_UTILS=OFF", From c153d095fda5e25fcbfd4aa2aed8944bd6183acf Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Sat, 18 Jan 2025 23:26:20 -0500 Subject: [PATCH 2/2] Bump xz to 5.6.3 --- README.rst | 2 +- scripts/build-ffmpeg.py | 2 +- scripts/cibuildpkg.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 487e9de7..bad162e8 100644 --- a/README.rst +++ b/README.rst @@ -18,7 +18,7 @@ Currently FFmpeg 7.1 is built with the following packages enabled for all platfo - gmp 6.3.0 - xml2 2.9.13 -- xz 5.4.4 +- xz 5.6.3 - aom 3.11.0 - dav1d 1.4.1 - lame 3.100 diff --git a/scripts/build-ffmpeg.py b/scripts/build-ffmpeg.py index ecd8aa17..b70ea28e 100644 --- a/scripts/build-ffmpeg.py +++ b/scripts/build-ffmpeg.py @@ -13,7 +13,7 @@ library_group = [ Package( name="xz", - source_url="https://github.com/tukaani-project/xz/releases/download/v5.4.4/xz-5.4.4.tar.xz", + source_url="https://github.com/tukaani-project/xz/releases/download/v5.6.3/xz-5.6.3.tar.xz", build_arguments=[ "--disable-doc", "--disable-lzma-links", diff --git a/scripts/cibuildpkg.py b/scripts/cibuildpkg.py index 14ea2d08..d151aabe 100644 --- a/scripts/cibuildpkg.py +++ b/scripts/cibuildpkg.py @@ -211,7 +211,7 @@ def _build_with_autoconf(self, package: Package, for_builder: bool) -> None: cache_path = os.path.join(self.source_dir, name) if not os.path.exists(cache_path): fetch( - "https://git.savannah.gnu.org/cgit/config.git/plain/" + name, + f"https://raw.githubusercontent.com/gcc-mirror/gcc/refs/heads/master/{name}", cache_path, ) shutil.copy(cache_path, script_path)