diff --git a/L/LCIO_Julia_Wrapper/build_tarballs.jl b/L/LCIO_Julia_Wrapper/build_tarballs.jl index 3cc88986995..e478e25e4d0 100644 --- a/L/LCIO_Julia_Wrapper/build_tarballs.jl +++ b/L/LCIO_Julia_Wrapper/build_tarballs.jl @@ -3,12 +3,13 @@ using BinaryBuilder using Pkg +julia_version = v"1.5.3" name = "LCIO_Julia_Wrapper" -version = v"0.12.2" +version = v"0.13.0" # Collection of sources required to build LCIOWrapBuilder sources = [ - GitSource("https://github.com/jstrube/LCIO_Julia_Wrapper.git", "4945dc1d1ae875b4ec22884a7e5a72ae212f0c77") + GitSource("https://github.com/jstrube/LCIO_Julia_Wrapper.git", "d0841c089dcb0a006a6f241a1716369760020e52") ] # Bash recipe for building across all platforms @@ -24,9 +25,10 @@ install_license $WORKSPACE/srcdir/LCIO_Julia_Wrapper/LICENSE # These are the platforms we will build for by default, unless further # platforms are passed in on the command line platforms = Platform[ - Platform("x86_64", "linux"; libc="glibc", cxxstring_abi = "cxx11"), - Platform("x86_64", "macos"; cxxstring_abi = "cxx11") + Platform("x86_64", "linux"; libc="glibc"), + Platform("x86_64", "macos") ] +platforms = expand_cxxstring_abis(platforms) # The products that we will ensure are always built products = [ @@ -35,9 +37,10 @@ products = [ # Dependencies that must be installed before this package can be built dependencies = [ - Dependency(PackageSpec(name="libcxxwrap_julia_jll",version=v"0.8")), - Dependency(PackageSpec(name="LCIO_jll", version=v"2.15.3")), - BuildDependency(PackageSpec(name="Julia_jll",version=v"1.4.1")) + Dependency(PackageSpec(name="libcxxwrap_julia_jll",version=v"0.8.5")), + Dependency(PackageSpec(name="LCIO_jll", version=v"2.15.4")), + BuildDependency(PackageSpec(name="libjulia_jll", version=julia_version)) ] -build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; preferred_gcc_version=v"7") +build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; + preferred_gcc_version=v"7", julia_compat = "^$(julia_version.major).$(julia_version.minor)")