diff options
author | Felix Thaler <thaler@cscs.ch> | 2024-09-04 20:16:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-04 11:16:20 -0700 |
commit | ab21fc1daf4455396314ed42cd2bbd5d37a1ab03 (patch) | |
tree | 0f18078c365e510a021359f34ac7ef72e2ae39b8 | |
parent | d593ad0c06cb7741afbeef25430b141a4d574a73 (diff) | |
download | spack-ab21fc1daf4455396314ed42cd2bbd5d37a1ab03.tar.gz spack-ab21fc1daf4455396314ed42cd2bbd5d37a1ab03.tar.bz2 spack-ab21fc1daf4455396314ed42cd2bbd5d37a1ab03.tar.xz spack-ab21fc1daf4455396314ed42cd2bbd5d37a1ab03.zip |
Added jump package (#46164)
-rw-r--r-- | var/spack/repos/builtin/packages/jump/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/jump/package.py b/var/spack/repos/builtin/packages/jump/package.py new file mode 100644 index 0000000000..f6c4c3a8f0 --- /dev/null +++ b/var/spack/repos/builtin/packages/jump/package.py @@ -0,0 +1,23 @@ +# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack.package import * + + +class Jump(GoPackage): + """Jump integrates with your shell and learns about your navigational habits + by keeping track of the directories you visit. It gives you the most visited + directory for the shortest search term you type.""" + + homepage = "https://github.com/gsamokovarov/jump" + url = "https://github.com/gsamokovarov/jump/archive/refs/tags/v0.51.0.tar.gz" + + maintainers("fthaler") + + license("MIT", checked_by="fthaler") + + version("0.51.0", sha256="ce297cada71e1dca33cd7759e55b28518d2bf317cdced1f3b3f79f40fa1958b5") + + depends_on("go@1.16:", type="build") |