summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGreg Becker <becker33@llnl.gov>2022-06-27 18:54:41 -0700
committerGitHub <noreply@github.com>2022-06-28 01:54:41 +0000
commitdf44045fdb68e429bd1accdb7e7c9b947521d75c (patch)
treecb03704f83a285baaaa21c2522ee51ea49c3ce99 /var
parent7dd2ca02077dc15b3a79d9c6ec990973cc46eb7d (diff)
downloadspack-df44045fdb68e429bd1accdb7e7c9b947521d75c.tar.gz
spack-df44045fdb68e429bd1accdb7e7c9b947521d75c.tar.bz2
spack-df44045fdb68e429bd1accdb7e7c9b947521d75c.tar.xz
spack-df44045fdb68e429bd1accdb7e7c9b947521d75c.zip
Feature: use git branches/tags as versions (#31200)
Building on #24639, this allows versions to be prefixed by `git.`. If a version begins `git.`, it is treated as a git ref, and handled as git commits are starting in the referenced PR. An exception is made for versions that are `git.develop`, `git.main`, `git.master`, `git.head`, or `git.trunk`. Those are assumed to be greater than all other versions, as those prefixed strings are in other contexts.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/libcatalyst/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/libcatalyst/package.py b/var/spack/repos/builtin/packages/libcatalyst/package.py
index 6c68ea5d3d..e81a5157cc 100644
--- a/var/spack/repos/builtin/packages/libcatalyst/package.py
+++ b/var/spack/repos/builtin/packages/libcatalyst/package.py
@@ -16,7 +16,7 @@ class Libcatalyst(CMakePackage):
maintainers = ['mathstuf']
# master as of 2021-05-12
- version('8456ccd6015142b5a7705f79471361d4f5644fa7', sha256='5a01f12b271d9d9e9b89f31d45a5f4b8426904483639d38754893adfd3547bab')
+ version('2021-05-12', sha256='5a01f12b271d9d9e9b89f31d45a5f4b8426904483639d38754893adfd3547bab')
variant('mpi', default=False, description='Enable MPI support')
variant('python3', default=False, description='Enable Python3 support')