From e323bff51b62e51ea5a46880b970e28af794c069 Mon Sep 17 00:00:00 2001 From: Thomas Neil James Shadwell Date: Thu, 16 Nov 2023 16:15:14 -0800 Subject: [PATCH] Use versioned releases for ffmpeg. Fixes #3962 --- bzl/deps.bzl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bzl/deps.bzl b/bzl/deps.bzl index 459b08f0de..c2cfcb240b 100644 --- a/bzl/deps.bzl +++ b/bzl/deps.bzl @@ -247,17 +247,17 @@ exports_files(glob(["**/*"])) name = "ffmpeg_linux_x64", # since this URL serves a different asset when ffmpeg's version is bumped, I'm using # this query component to cache bust when that does occur. - url = "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz?ver=v6.0.1", - strip_prefix = "ffmpeg-6.0.1-amd64-static", + url = "https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-5.1.1-amd64-static.tar.xz", + strip_prefix = "ffmpeg-5.1.1-amd64-static", build_file_content = """ exports_files(glob(["**/*"])) """, - sha256 = "28268bf402f1083833ea269331587f60a242848880073be8016501d864bd07a5", + sha256 = "2d848c37f7f276be0262d9123a84fbfe72bb159921ffcce3bd7106f143d29f42", ) http_archive( name = "ffmpeg_linux_i686", - url = "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-i686-static.tar.xz", + url = "https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-5.1.1-i686-static.tar.xz", strip_prefix = "ffmpeg-6.0-i686-static", build_file_content = """ exports_files(glob(["**/*"])) @@ -267,7 +267,7 @@ exports_files(glob(["**/*"])) http_archive( name = "ffmpeg_linux_arm64", - url = "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-arm64-static.tar.xz", + url = "https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-5.1.1-arm64-static.tar.xz", strip_prefix = "ffmpeg-6.0-arm64-static", build_file_content = """ exports_files(glob(["**/*"]))