summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTom Scogland <scogland1@llnl.gov>2023-11-30 10:32:21 -0800
committerGitHub <noreply@github.com>2023-11-30 18:32:21 +0000
commitdd607d11d5282221614e61f751087f5246452f3a (patch)
treefcfaf91f5320836a6eef4f7440c18717ed157c1d /var
parentd436e97fc6163ffda9c9b5a8f829dd77484d625d (diff)
downloadspack-dd607d11d5282221614e61f751087f5246452f3a.tar.gz
spack-dd607d11d5282221614e61f751087f5246452f3a.tar.bz2
spack-dd607d11d5282221614e61f751087f5246452f3a.tar.xz
spack-dd607d11d5282221614e61f751087f5246452f3a.zip
developer tools stack try 2 (#40921)
* developer tools stack try 2 This version is actually in use locally and has largely stabilized, at least on x86. Some packages are still a challenge on ppc64le, but maybe worth keeping this working as a set. * add packages, try to get container with newer gcc * remove reuse: true * try to get cmake to build on medium, 25 minutes is too long * add lsd package and add to dev tools stack * clean up fzf dependency and sorting * Update share/spack/gitlab/cloud_pipelines/stacks/developer_tools/spack.yaml * cuda: add 12.3.0 (#40827) * Switch to dashes * yet more underscores --------- Co-authored-by: Paul R. C. Kent <kentpr@ornl.gov>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/lsd/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/lsd/package.py b/var/spack/repos/builtin/packages/lsd/package.py
new file mode 100644
index 0000000000..a1702a8e75
--- /dev/null
+++ b/var/spack/repos/builtin/packages/lsd/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2023 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 Lsd(CargoPackage):
+ """A rewrite of GNU ls with lots of added features like colors, icons, tree-view,
+ more formatting options etc."""
+
+ homepage = "https://github.com/lsd-rs/lsd"
+ url = "https://github.com/lsd-rs/lsd/archive/refs/tags/v1.0.0.tar.gz"
+
+ maintainers("trws")
+
+ license("Apache-2.0")
+
+ version("1.0.0", sha256="ab34e9c85bc77cfa42b43bfb54414200433a37419f3b1947d0e8cfbb4b7a6325")
+
+ depends_on("rust@1.63:")