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

Unpin Mbed TLS from version 2.24 #4180

Closed
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion A/Aria2/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ dependencies = [
# are getting a newer version in the build than the one
# `LibSSH2_jll` was compiled with. So we explicitly select the
# right version here.
BuildDependency(PackageSpec(name="MbedTLS_jll", version="2.24")),
BuildDependency(PackageSpec(name="MbedTLS_jll")),
Dependency(PackageSpec(name="OpenSSL_jll")),
Dependency(PackageSpec(name="XML2_jll")),
Dependency(PackageSpec(name="Zlib_jll")),
Expand Down
2 changes: 1 addition & 1 deletion A/AzStorage/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies = [
# MbedTLS is only an indirect dependency (through LibCURL), but we want to
# be sure to have the right version of MbedTLS for the corresponding version
# of Julia.
BuildDependency(PackageSpec(; name="MbedTLS_jll", version="2.24.0")),
BuildDependency(PackageSpec(; name="MbedTLS_jll")),
]

# Build the tarballs, and possibly a `build.jl` as well.
Expand Down
2 changes: 1 addition & 1 deletion G/GDAL/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function configure(version_offset, min_julia_version, proj_jll_version)
# The following libraries are dependencies of LibCURL_jll which is now a
# stdlib, but the stdlib doesn't explicitly list its dependencies
Dependency("LibSSH2_jll"),
Dependency("MbedTLS_jll", v"2.24.0"),
Dependency("MbedTLS_jll"),
Dependency("nghttp2_jll"),
]
)
Expand Down
2 changes: 1 addition & 1 deletion L/LibCURL/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ dependencies = [
Dependency("nghttp2_jll"),
# Note that while we unconditionally list MbedTLS as a dependency,
# we default to schannel/SecureTransport on Windows/MacOS.
Dependency("MbedTLS_jll", v"2.24.0"),
Dependency("MbedTLS_jll"),
]

# Build the tarballs, and possibly a `build.jl` as well.
Expand Down
2 changes: 1 addition & 1 deletion L/LibGit2/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ products = [

# Dependencies that must be installed before this package can be built
dependencies = [
Dependency("MbedTLS_jll", v"2.24.0"),
Dependency("MbedTLS_jll"),
Dependency("LibSSH2_jll"),
]

Expand Down
2 changes: 1 addition & 1 deletion L/LibSSH2/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ products = [

# Dependencies that must be installed before this package can be built
dependencies = [
Dependency("MbedTLS_jll", v"2.24.0"),
Dependency("MbedTLS_jll"),
]

# Note: we explicitly lie about this because we don't have the new
Expand Down
2 changes: 1 addition & 1 deletion N/NetCDF/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ nc-config --all
# The following libraries are dependencies of LibCURL_jll which is now a
# stdlib, but the stdlib doesn't explicitly list its dependencies
Dependency("LibSSH2_jll"),
Dependency("MbedTLS_jll", v"2.24.0"),
Dependency("MbedTLS_jll"),
Dependency("nghttp2_jll"),
]
)
Expand Down
2 changes: 1 addition & 1 deletion S/samtools/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dependencies = [
# `MbedTLS_jll`). For some reasons that aren't clear to me at the moment, we are
# getting a version of `MbedTLS_jll` which doesn't match the one `LibCURL_jll` was
# compiled with.
BuildDependency(PackageSpec(; name="MbedTLS_jll", version="2.24"))
BuildDependency(PackageSpec(; name="MbedTLS_jll"))
]

# Build the tarballs, and possibly a `build.jl` as well.
Expand Down
2 changes: 1 addition & 1 deletion T/TempestRemap/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ dependencies = Dependency[
# The following libraries are dependencies of LibCURL_jll which is now a
# stdlib, but the stdlib doesn't explicitly list its dependencies
Dependency("LibSSH2_jll"),
Dependency("MbedTLS_jll", v"2.24.0"),
Dependency("MbedTLS_jll"),
Dependency("nghttp2_jll"),
]

Expand Down