From 96a3432deddb610ed2198737691e95a15cc89f47 Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Thu, 19 Dec 2024 13:58:36 -0500 Subject: [PATCH 1/2] HighFive: New version 2.10.1 --- H/HighFive/build_tarballs.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/H/HighFive/build_tarballs.jl b/H/HighFive/build_tarballs.jl index 2c64132701b..b862efb1743 100644 --- a/H/HighFive/build_tarballs.jl +++ b/H/HighFive/build_tarballs.jl @@ -3,11 +3,11 @@ using BinaryBuilder, BinaryBuilderBase, Pkg name = "HighFive" -version = v"2.9.0" +version = v"2.10.1" # Collection of sources required to complete build sources = [ - GitSource("https://github.com/BlueBrain/HighFive", "0d0259e823a0e8aee2f036ba738c703ac4a0721c"), + GitSource("https://github.com/BlueBrain/HighFive", "ede97c8d51905c1640038561d12d41da173012ac"), ] # Bash recipe for building across all platforms @@ -45,7 +45,7 @@ dependencies = [ BuildDependency("xtensor_jll"), Dependency("HDF5_jll"; compat="~1.14.0"), # Dependency("OpenCV_jll"), - Dependency("boost_jll"; compat="1.76.0"), + Dependency("boost_jll"; compat="1.79.0"), ] # Build the tarballs, and possibly a `build.jl` as well. From 513f9e6006b3f4e166748d346cfb40c5ff670219 Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Fri, 20 Dec 2024 14:42:01 -0500 Subject: [PATCH 2/2] HighFive: Correct boost compat declaration --- H/HighFive/build_tarballs.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/H/HighFive/build_tarballs.jl b/H/HighFive/build_tarballs.jl index b862efb1743..1491b41dd7c 100644 --- a/H/HighFive/build_tarballs.jl +++ b/H/HighFive/build_tarballs.jl @@ -45,7 +45,7 @@ dependencies = [ BuildDependency("xtensor_jll"), Dependency("HDF5_jll"; compat="~1.14.0"), # Dependency("OpenCV_jll"), - Dependency("boost_jll"; compat="1.79.0"), + Dependency("boost_jll"; compat="=1.79.0"), ] # Build the tarballs, and possibly a `build.jl` as well.