summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMosè Giordano <giordano@users.noreply.github.com>2023-03-21 06:18:02 +0000
committerGitHub <noreply@github.com>2023-03-21 02:18:02 -0400
commitfa57e62744d65a66120d9af4995f4be08e627821 (patch)
tree1d821aaeeb3d21644ca4e9cad4e52c7212963f97 /var
parent880c819d9783594e665b254aaaae60f078872378 (diff)
downloadspack-fa57e62744d65a66120d9af4995f4be08e627821.tar.gz
spack-fa57e62744d65a66120d9af4995f4be08e627821.tar.bz2
spack-fa57e62744d65a66120d9af4995f4be08e627821.tar.xz
spack-fa57e62744d65a66120d9af4995f4be08e627821.zip
julia: Relax compatibility with curl (#36262)
Curl version 8 has a compatible ABI/API with version 7.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/julia/package.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/julia/package.py b/var/spack/repos/builtin/packages/julia/package.py
index effc4f00cd..2abc2683d1 100644
--- a/var/spack/repos/builtin/packages/julia/package.py
+++ b/var/spack/repos/builtin/packages/julia/package.py
@@ -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
@@ -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
@@ -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")