diff options
author | Cameron Smith <cwsmith@users.noreply.github.com> | 2018-10-18 14:42:25 -0400 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2018-10-18 11:42:25 -0700 |
commit | fbbe4968f035410f03814ba3ccf5930c07429b5c (patch) | |
tree | 03a66e7e42abec2139b048af2db7f9fc5ead56fa /var | |
parent | 572bbfda6db48d03d1f0fdd3a53c79c3c4a1d2c2 (diff) | |
download | spack-fbbe4968f035410f03814ba3ccf5930c07429b5c.tar.gz spack-fbbe4968f035410f03814ba3ccf5930c07429b5c.tar.bz2 spack-fbbe4968f035410f03814ba3ccf5930c07429b5c.tar.xz spack-fbbe4968f035410f03814ba3ccf5930c07429b5c.zip |
add pumi version docstring (#9577)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/pumi/package.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/pumi/package.py b/var/spack/repos/builtin/packages/pumi/package.py index 8380564253..12e1b5f35a 100644 --- a/var/spack/repos/builtin/packages/pumi/package.py +++ b/var/spack/repos/builtin/packages/pumi/package.py @@ -19,6 +19,12 @@ class Pumi(CMakePackage): homepage = "https://www.scorec.rpi.edu/pumi" git = "https://github.com/SCOREC/core.git" + # We will use the scorec/core master branch as the 'nightly' version + # of pumi in spack. The master branch is more stable than the + # scorec/core develop branch and we perfer not to expose spack users + # to the added instability. The spack version string is 'develop' since + # it compares greater than a numbered version (e.g., 2.1.0). The spack + # version string 'master' compares less than a numbered version. version('develop', branch='master') version('2.1.0', commit='840fbf6ec49a63aeaa3945f11ddb224f6055ac9f') |