From 3eeaeb16afab8ead5654c4a9dd7fe841c78c94ad Mon Sep 17 00:00:00 2001 From: Jakob Peters Date: Sat, 19 Oct 2024 08:17:31 -0700 Subject: [PATCH] [Typst] Update to v0.12.0 (#9645) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [Typst] Update to v0.12.0 * Update build_tarballs.jl --------- Co-authored-by: Mosè Giordano <765740+giordano@users.noreply.github.com> --- T/Typst/build_tarballs.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/T/Typst/build_tarballs.jl b/T/Typst/build_tarballs.jl index 0322d9f0adf..e3761e7c0cc 100644 --- a/T/Typst/build_tarballs.jl +++ b/T/Typst/build_tarballs.jl @@ -3,11 +3,11 @@ using BinaryBuilder, Pkg name = "Typst" -version = v"0.11.1" +version = v"0.12.0" # Collection of sources required to complete build sources = [ - GitSource("https://github.com/typst/typst.git", "5011510270c2c23f0ab019af486b26db0d62261b") + GitSource("https://github.com/typst/typst.git", "737895d769188f6fc154523e67a9102bc24c872e") ] # Bash recipe for building across all platforms @@ -21,7 +21,7 @@ install_license LICENSE # These are the platforms we will build for by default, unless further # platforms are passed in on the command line platforms = filter(supported_platforms()) do p - !((Sys.iswindows(p) && arch(p) == "i686") || (arch(p) == "powerpc64le")) + !((Sys.iswindows(p) && arch(p) == "i686") || (arch(p) == "powerpc64le") || (Sys.isfreebsd(p) && arch(p) == "aarch64")) end # The products that we will ensure are always built