Skip to content

Commit

Permalink
julia: Relax compatibility with curl (spack#36262)
Browse files Browse the repository at this point in the history
Curl version 8 has a compatible ABI/API with version 7.
  • Loading branch information
giordano authored Mar 21, 2023
1 parent 880c819 commit fa57e62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions var/spack/repos/builtin/packages/julia/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class Julia(MakefilePackage):
depends_on("mbedtls@2.28.0:2.28")
depends_on("openlibm@0.8.1:0.8", when="+openlibm")
depends_on("nghttp2@1.47.0:1.47")
depends_on("curl@7.84.0:7")
depends_on("curl@7.84.0:")

with when("@1.7.0:1.7"):
# libssh2.so.1, libpcre2-8.so.0, mbedtls.so.13, mbedcrypto.so.5, mbedx509.so.1
Expand All @@ -81,7 +81,7 @@ class Julia(MakefilePackage):
depends_on("llvm@12.0.1")
depends_on("mbedtls@2.24.0:2.24")
depends_on("openlibm@0.7.0:0.7", when="+openlibm")
depends_on("curl@7.73.0:7")
depends_on("curl@7.73.0:")

with when("@1.6.0:1.6"):
# libssh2.so.1, libpcre2-8.so.0, mbedtls.so.13, mbedcrypto.so.5, mbedx509.so.1
Expand All @@ -92,7 +92,7 @@ class Julia(MakefilePackage):
depends_on("llvm@11.0.1")
depends_on("mbedtls@2.24.0:2.24")
depends_on("openlibm@0.7.0:0.7", when="+openlibm")
depends_on("curl@7.73.0:7")
depends_on("curl@7.73.0:")

# Patches for llvm
depends_on("llvm", patches="llvm7-symver-jlprefix.patch", when="@:1.7")
Expand Down

0 comments on commit fa57e62

Please sign in to comment.