diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2020-12-21 15:08:25 -0800 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2021-05-21 19:42:12 +0200 |
commit | 316c292685b99db9a3ae37c5c6f5955f72a9aeca (patch) | |
tree | 545c33f14fece241808fc7e847f0731a9a7b5ae8 /var | |
parent | bd9929f9dc9649f84f710fb2c6540db1d0ea946a (diff) | |
download | spack-316c292685b99db9a3ae37c5c6f5955f72a9aeca.tar.gz spack-316c292685b99db9a3ae37c5c6f5955f72a9aeca.tar.bz2 spack-316c292685b99db9a3ae37c5c6f5955f72a9aeca.tar.xz spack-316c292685b99db9a3ae37c5c6f5955f72a9aeca.zip |
clingo: prefer master branch
Most people installing `clingo` with Spack are going to be doing it to
use the new concretizer, and that requires the `master` branch.
- [x] make `master` the default so we don't have to keep telling people
to install `clingo@master`. We'll update the preferred version when
there's a new release.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/clingo/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/clingo/package.py b/var/spack/repos/builtin/packages/clingo/package.py index 856f0d6338..676bf7b99e 100644 --- a/var/spack/repos/builtin/packages/clingo/package.py +++ b/var/spack/repos/builtin/packages/clingo/package.py @@ -22,7 +22,7 @@ class Clingo(CMakePackage): maintainers = ["tgamblin"] - version('master', branch='master', submodules=True) + version('master', branch='master', submodules=True, preferred=True) version('spack', commit='2ab2e81bcb24f6070b7efce30a754d74ef52ee2d', submodules=True) version('5.4.0', sha256='e2de331ee0a6d254193aab5995338a621372517adcf91568092be8ac511c18f3') |