Skip to content

Commit

Permalink
hyperfine: add v1.18.0 (spack#47084)
Browse files Browse the repository at this point in the history
* hyperfine: convert to cargo package

* hyperfine: add v1.18.0

* hyperfine: add minimum cargo version
  • Loading branch information
pranav-sivaraman authored Oct 18, 2024
1 parent 957c0cc commit 230bc70
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions var/spack/repos/builtin/packages/hyperfine/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from spack.package import *


class Hyperfine(Package):
class Hyperfine(CargoPackage):
"""A command-line benchmarking tool."""

homepage = "https://github.com/sharkdp/hyperfine"
Expand All @@ -16,14 +16,15 @@ class Hyperfine(Package):

license("Apache-2.0 AND MIT")

version("1.18.0", sha256="fea7b92922117ed04b9c84bb9998026264346768804f66baa40743c5528bed6b")
version("1.17.0", sha256="3dcd86c12e96ab5808d5c9f3cec0fcc04192a87833ff009063c4a491d5487b58")
version("1.16.1", sha256="ffb3298945cbe2c068ca1a074946d55b9add83c9df720eda2ed7f3d94d7e65d2")
version("1.14.0", sha256="59018c22242dd2ad2bd5fb4a34c0524948b7921d02aa79419ccec4c1ffd3da14")
version("1.13.0", sha256="6e57c8e51962dd24a283ab46dde6fe306da772f4ef9bad86f8c89ac3a499c87e")
version("1.12.0", sha256="2120870a97e68fa3426eac5646a071c9646e96d2309220e3c258bf588e496454")

depends_on("rust@1.46:")

def install(self, spec, prefix):
cargo = which("cargo")
cargo("install", "--root", prefix, "--path", ".")
depends_on("rust@1.70:", when="@1.18.0:")
depends_on("[email protected]:", when="@1.17.0:")
depends_on("[email protected]:", when="@1.16.0:")
depends_on("[email protected]:", when="@1.13.0:")
depends_on("[email protected]:", when="@1.12.0:")

0 comments on commit 230bc70

Please sign in to comment.