summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorHarmen Stoppels <me@harmenstoppels.nl>2024-04-30 23:32:06 +0200
committerGitHub <noreply@github.com>2024-04-30 23:32:06 +0200
commit20f9884445fc8fc23fdf6ea32f61f0a69f79121f (patch)
tree1f70a7abfdfdd9fcb056a611b7afc90d9508b827 /var
parentdeb78bcd933d097756be1cba84c7867e90a93c88 (diff)
downloadspack-20f9884445fc8fc23fdf6ea32f61f0a69f79121f.tar.gz
spack-20f9884445fc8fc23fdf6ea32f61f0a69f79121f.tar.bz2
spack-20f9884445fc8fc23fdf6ea32f61f0a69f79121f.tar.xz
spack-20f9884445fc8fc23fdf6ea32f61f0a69f79121f.zip
curl: perl is temporarily required (#43921)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/curl/package.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/curl/package.py b/var/spack/repos/builtin/packages/curl/package.py
index 37314813dc..c8ffa33ad9 100644
--- a/var/spack/repos/builtin/packages/curl/package.py
+++ b/var/spack/repos/builtin/packages/curl/package.py
@@ -32,6 +32,7 @@ class Curl(NMakePackage, AutotoolsPackage):
license("curl")
+ version("8.7.1", sha256="05bbd2b698e9cfbab477c33aa5e99b4975501835a41b7ca6ca71de03d8849e76")
version("8.6.0", sha256="b4785f2d8877fa92c0e45d7155cf8cc6750dbda961f4b1a45bcbec990cf2fa9b")
version("8.4.0", sha256="e5250581a9c032b1b6ed3cf2f9c114c811fc41881069e9892d115cc73f9e88c6")
@@ -314,6 +315,10 @@ class Curl(NMakePackage, AutotoolsPackage):
depends_on("krb5", when="+gssapi")
depends_on("rtmpdump", when="+librtmp")
+ # https://github.com/curl/curl/issues/12832
+ # https://github.com/curl/curl/issues/13508
+ depends_on("perl", type="build", when="@8.6:8.7.1")
+
# https://github.com/curl/curl/pull/9054
patch("easy-lock-sched-header.patch", when="@7.84.0")