From e2efbf65d9452adac4333448b31b6764092ed09f Mon Sep 17 00:00:00 2001 From: Nathan Zimmerberg <39104088+nhz2@users.noreply.github.com> Date: Sat, 19 Oct 2024 14:03:11 -0400 Subject: [PATCH] [bsdiff_endsley] Update Bzip2 compat This will help testing https://github.com/JuliaIO/BSDiff.jl/pull/49 --- B/bsdiff_endsley/build_tarballs.jl | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/B/bsdiff_endsley/build_tarballs.jl b/B/bsdiff_endsley/build_tarballs.jl index 9d47ca5a8be..6a2b69e1bf2 100644 --- a/B/bsdiff_endsley/build_tarballs.jl +++ b/B/bsdiff_endsley/build_tarballs.jl @@ -3,7 +3,7 @@ using BinaryBuilder, Pkg name = "bsdiff_endsley" -version = v"4.3.0" +version = v"4.3.1" # Collection of sources required to complete build sources = [ @@ -32,10 +32,8 @@ products = [ # Dependencies that must be installed before this package can be built dependencies = [ - # Future versions of bzip2 should allow a more relaxed compat because the - # soname of the macOS library shouldn't change at every patch release. - Dependency("Bzip2_jll", v"1.0.6"; compat="=1.0.6"), + Dependency("Bzip2_jll"; compat="1.0.8"), ] # Build the tarballs, and possibly a `build.jl` as well. -build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies) +build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6")