diff options
author | Greg Sjaardema <gsjaardema@gmail.com> | 2018-12-19 19:02:24 -0700 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2018-12-19 20:02:24 -0600 |
commit | 93c491f7297ab4e700a414d33ba533968a4be464 (patch) | |
tree | ef395273f48138fce4972c9f75b9592c4401475f /var | |
parent | 207c37759ca02b7f1065e2d24acce6729c4d446c (diff) | |
download | spack-93c491f7297ab4e700a414d33ba533968a4be464.tar.gz spack-93c491f7297ab4e700a414d33ba533968a4be464.tar.bz2 spack-93c491f7297ab4e700a414d33ba533968a4be464.tar.xz spack-93c491f7297ab4e700a414d33ba533968a4be464.zip |
CGNS: Allow use of git branch versions (#10156)
* CGNS: Allow use of git branch versions
Add ability to use git `master` and `develop` branches of the CGNS library. The `seacas` package sometimes needs to use the `master` or `develop` branch due to some new changes to the parallel I/O implementation in CGNS which has not yet been released.
* CGNS: Reorder to put newest version on top
Based on review comments, place newest version (develop) first in list.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/cgns/package.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/cgns/package.py b/var/spack/repos/builtin/packages/cgns/package.py index 7a21848e6b..6b7f274fa3 100644 --- a/var/spack/repos/builtin/packages/cgns/package.py +++ b/var/spack/repos/builtin/packages/cgns/package.py @@ -13,7 +13,10 @@ class Cgns(CMakePackage): homepage = "http://cgns.github.io/" url = "https://github.com/CGNS/CGNS/archive/v3.3.0.tar.gz" + git = "https://github.com/CGNS/CGNS" + version('develop', branch='develop') + version('master', branch='master') version('3.3.1', '65c55998270c3e125e28ec5c3742e15d') version('3.3.0', '64e5e8d97144c1462bee9ea6b2a81d7f') |