diff options
author | Jonathan Maack <40000230+jmaack24@users.noreply.github.com> | 2020-10-02 15:19:00 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 14:19:00 -0700 |
commit | 42c3327e5b09b7a95d92e8c11423f9a2bbef1c74 (patch) | |
tree | 7fe73d2a22c39ebac106d84217a84cfa684155ea | |
parent | 1ca753e5a6c910cfd71a2599d004c5c0e8f94231 (diff) | |
download | spack-42c3327e5b09b7a95d92e8c11423f9a2bbef1c74.tar.gz spack-42c3327e5b09b7a95d92e8c11423f9a2bbef1c74.tar.bz2 spack-42c3327e5b09b7a95d92e8c11423f9a2bbef1c74.tar.xz spack-42c3327e5b09b7a95d92e8c11423f9a2bbef1c74.zip |
Coin HSL package: add version 2019.05.21 (#19047)
-rw-r--r-- | var/spack/repos/builtin/packages/coinhsl/package.py | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/coinhsl/package.py b/var/spack/repos/builtin/packages/coinhsl/package.py index bfd4830a26..50fdaa079f 100644 --- a/var/spack/repos/builtin/packages/coinhsl/package.py +++ b/var/spack/repos/builtin/packages/coinhsl/package.py @@ -28,11 +28,18 @@ class Coinhsl(AutotoolsPackage): # CoinHSL has a few versions that vary with respect to stability/features # and licensing terms. - # Version 2015.06.23 is a full-featured "release candidate" + # Version 2019.05.21 is a full-featured "release candidate" # version available via an "academic license" that can be used for # personal teaching and research purposes only. For a full list of # conditions, see http://www.hsl.rl.ac.uk/academic.html. - version('2015.06.23', sha256='3e955a2072f669b8f357ae746531b37aea921552e415dc219a5dd13577575fb3') + version('2019.05.21', sha256='95ce1160f0b013151a3e25d40337775c760a8f3a79d801a1d190598bf4e4c0c3') + + # Version 2015.06.23 is a full-featured "stable" + # version available via an "academic license" that can be used for + # personal teaching and research purposes only. For a full list of + # conditions, see http://www.hsl.rl.ac.uk/academic.html. + version('2015.06.23', sha256='3e955a2072f669b8f357ae746531b37aea921552e415dc219a5dd13577575fb3', + preferred=True) # Version 2014.01.17 is a full-featured "stable" version available # via an "academic license" that can be used for personal teaching @@ -43,8 +50,7 @@ class Coinhsl(AutotoolsPackage): # available as a "personal license" that is free to all, and # permits commercial use, but *not redistribution* (emphasis from # original source). - version('2014.01.10', sha256='7c2be60a3913b406904c66ee83acdbd0709f229b652c4e39ee5d0876f6b2e907', - preferred=True) + version('2014.01.10', sha256='7c2be60a3913b406904c66ee83acdbd0709f229b652c4e39ee5d0876f6b2e907') # CoinHSL fails to build in parallel parallel = False |