Skip to content

Commit

Permalink
Update Blosc1 to version 1.21.1; support experimental platforms
Browse files Browse the repository at this point in the history
This updates c-blosc 1 to 1.21.1: https://github.com/Blosc/c-blosc/releases/tag/v1.21.1
Builds for experimental platforms to resolve macOS on M1.

Fix JuliaPackaging#4051
Fix JuliaIO/Blosc.jl#85
Fix JuliaIO/HDF5.jl#870
  • Loading branch information
mkitti authored Dec 10, 2021
1 parent 1ae0567 commit cc0ba7b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions B/Blosc/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using BinaryBuilder

name = "Blosc"
version = v"1.21.0"
version = v"1.21.1"

# Collection of sources required to build Blosc
sources = [
ArchiveSource("https://github.com/Blosc/c-blosc/archive/v$(version).tar.gz", "b0ef4fda82a1d9cbd11e0f4b9685abf14372db51703c595ecd4d76001a8b342d"),
ArchiveSource("https://github.com/Blosc/c-blosc/archive/v$(version).tar.gz", "f387149eab24efa01c308e4cba0f59f64ccae57292ec9c794002232f7903b55b"),
DirectorySource("./bundled"),
]

Expand Down Expand Up @@ -36,7 +36,7 @@ install_license ../LICENSES/*.txt

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = expand_cxxstring_abis(supported_platforms())
platforms = expand_cxxstring_abis(supported_platforms(; experimental = true))

# The products that we will ensure are always built
products = [
Expand All @@ -52,4 +52,4 @@ dependencies = [
]

# 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")

0 comments on commit cc0ba7b

Please sign in to comment.