diff options
author | Seth R. Johnson <johnsonsr@ornl.gov> | 2021-04-06 09:09:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-06 09:09:01 +0200 |
commit | 26c7f028736010185aa263c654c7159e23b7d4af (patch) | |
tree | 0bb28c52c8b35e7c7d3c25bdb45758d6989167a2 /var | |
parent | e5c77232761d895d946ce595e1625639dc56df21 (diff) | |
download | spack-26c7f028736010185aa263c654c7159e23b7d4af.tar.gz spack-26c7f028736010185aa263c654c7159e23b7d4af.tar.bz2 spack-26c7f028736010185aa263c654c7159e23b7d4af.tar.xz spack-26c7f028736010185aa263c654c7159e23b7d4af.zip |
doxygen: add version restriction (#22773)
This triggered on my mac because clingo seems to have bootstrapped a
very old version distributed by apple.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/doxygen/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/doxygen/package.py b/var/spack/repos/builtin/packages/doxygen/package.py index 72932423c5..b1254e91c1 100644 --- a/var/spack/repos/builtin/packages/doxygen/package.py +++ b/var/spack/repos/builtin/packages/doxygen/package.py @@ -63,10 +63,11 @@ class Doxygen(CMakePackage): depends_on("python", type='build') # 2 or 3 OK; used in CMake build depends_on("iconv") depends_on("flex", type='build') + depends_on("bison", type='build') # code.l just checks subminor version <=2.5.4 or >=2.5.33 # but does not recognize 2.6.x as newer...could be patched if needed depends_on("flex@2.5.39", type='build', when='@1.8.10') - depends_on("bison", type='build') + depends_on("bison@2.7:", type='build', when='@1.8.10:') # optional dependencies depends_on("graphviz", when="+graphviz", type='run') |