summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Jolly <john.jolly@gmail.com>2020-06-06 00:20:58 -0600
committerPeter Scheibel <scheibel1@llnl.gov>2020-06-15 23:08:34 -0700
commit8882dc0d96fe589ef7e20bc21a67f77c9bc8e595 (patch)
tree0833c9334ad12685bb0cf084162b32f5412186bf
parenta492187973fe55600d0c18159b3f374a079a23db (diff)
downloadspack-8882dc0d96fe589ef7e20bc21a67f77c9bc8e595.tar.gz
spack-8882dc0d96fe589ef7e20bc21a67f77c9bc8e595.tar.bz2
spack-8882dc0d96fe589ef7e20bc21a67f77c9bc8e595.tar.xz
spack-8882dc0d96fe589ef7e20bc21a67f77c9bc8e595.zip
chill: Update dependency versions
Specified Python to be v2.7 only, as Python3 support is not currently implemented in chill. Update chill dependency versions for the following libraries to the specific versions: * rose: v0.9.13.0 * bison: v3.4.2 Both rose and iegenlib are build time dependencies, but are also run time dependencies. Added 'run' to the build type for both dependencies.
-rw-r--r--var/spack/repos/builtin/packages/chill/package.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/chill/package.py b/var/spack/repos/builtin/packages/chill/package.py
index d33ab4a959..96afa55379 100644
--- a/var/spack/repos/builtin/packages/chill/package.py
+++ b/var/spack/repos/builtin/packages/chill/package.py
@@ -19,15 +19,16 @@ class Chill(AutotoolsPackage):
version('0.3', sha256='574b622368a6bfaadbe9c1fa02fabefdc6c006069246f67d299f943b7e1d8aa3')
depends_on('boost@1.66.0 cxxstd=11', type='build')
- depends_on('rose@0.9.10.0 +cxx11', type='build')
+ depends_on('rose@0.9.13.0: +cxx11', type=('build', 'run'))
depends_on('autoconf', type='build')
depends_on('automake@1.14:', type='build')
depends_on('libtool', type='build')
depends_on('m4', type='build')
- depends_on('iegenlib', type='build')
- depends_on('bison@3.4', type='build')
+ depends_on('iegenlib', type=('build', 'run'))
+ depends_on('bison@3.4.2:', type='build')
depends_on('flex', type='build')
- depends_on('python')
+ # Does not currrently work with Python3
+ depends_on('python@2.7:2.8')
build_directory = 'spack-build'