diff options
author | Caetano Melone <cmelone@users.noreply.github.com> | 2023-09-11 19:34:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-11 19:34:33 -0400 |
commit | 4570c9de5bcec7ca61f77aa2bfcb714abcb59d87 (patch) | |
tree | 726aa16fedf30568bb29cb09733a79c68eab80ed | |
parent | e7507dcd089d977bc5dc2e0de1d78171c41aefdd (diff) | |
download | spack-4570c9de5bcec7ca61f77aa2bfcb714abcb59d87.tar.gz spack-4570c9de5bcec7ca61f77aa2bfcb714abcb59d87.tar.bz2 spack-4570c9de5bcec7ca61f77aa2bfcb714abcb59d87.tar.xz spack-4570c9de5bcec7ca61f77aa2bfcb714abcb59d87.zip |
fish: add 3.6.0, 3.6.1, update cmake requirement (#39899)
-rw-r--r-- | var/spack/repos/builtin/packages/fish/package.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/fish/package.py b/var/spack/repos/builtin/packages/fish/package.py index 16e4d2ff20..14c9057ba8 100644 --- a/var/spack/repos/builtin/packages/fish/package.py +++ b/var/spack/repos/builtin/packages/fish/package.py @@ -13,13 +13,15 @@ class Fish(CMakePackage): """ homepage = "https://fishshell.com/" - url = "https://github.com/fish-shell/fish-shell/releases/download/3.5.1/fish-3.5.1.tar.xz" + url = "https://github.com/fish-shell/fish-shell/releases/download/3.6.1/fish-3.6.1.tar.xz" git = "https://github.com/fish-shell/fish-shell.git" list_url = homepage maintainers("funnell", "adamjstewart") version("master", branch="master") + version("3.6.1", sha256="55402bb47ca6739d8aba25e41780905b5ce1bce0a5e0dd17dca908b5bc0b49b2") + version("3.6.0", sha256="97044d57773ee7ca15634f693d917ed1c3dc0fa7fde1017f1626d60b83ea6181") version("3.5.1", sha256="a6d45b3dc5a45dd31772e7f8dfdfecabc063986e8f67d60bd7ca60cc81db6928") version("3.4.1", sha256="b6f23b3843b04db6b0a90fea1f6f0d0e40cc027b4a732098200863f2864a94ea") version("3.3.1", sha256="b5b4ee1a5269762cbbe993a4bd6507e675e4100ce9bbe84214a5eeb2b19fae89") @@ -30,6 +32,7 @@ class Fish(CMakePackage): variant("docs", default=False, description="Build documentation") # https://github.com/fish-shell/fish-shell#dependencies-1 + depends_on("cmake@3.5:", when="@3.4:", type="build") depends_on("cmake@3.2:", type="build") depends_on("ncurses") depends_on("pcre2@10.21:") |