Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update TempestRemap deps #5396

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions T/TempestRemap/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
using BinaryBuilder, Pkg

name = "TempestRemap"
version = v"2.1.3"
upstream_version = v"2.1.3"
version = v"2.1.4"
sources = [
ArchiveSource("https://github.com/ClimateGlobalChange/tempestremap/archive/refs/tags/v$(version).tar.gz",
ArchiveSource("https://github.com/ClimateGlobalChange/tempestremap/archive/refs/tags/v$(upstream_version).tar.gz",
"f3925871b9bc19c39002665970283a6f70ec5e159f0c87c74d1ef4f7efa4c26a"),
]

Expand Down Expand Up @@ -40,7 +41,7 @@ platforms = [
Platform("x86_64", "linux"),
Platform("aarch64", "linux"; libc="glibc"),
Platform("x86_64", "macos"),
]
]
platforms = expand_cxxstring_abis(platforms)

products = [
Expand Down Expand Up @@ -72,11 +73,11 @@ products = [

dependencies = [
Dependency("OpenBLAS32_jll"),
Dependency("NetCDF_jll", compat="400.702.402 - 400.799"),
Dependency("NetCDF_jll", compat="400.802.101 - 400.902.5"),
# The following is adapted from NetCDF_jll
BuildDependency(PackageSpec(; name="MbedTLS_jll", version=v"2.24.0")),
]

build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies;
julia_compat="1.7",
julia_compat="1.8",
Comment on lines -81 to +82
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this needed?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤷🏻‍♂️, I've never done this before, so probably not?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I don't think this is necessary at all

)