asdf-cxx: require a particular version of yaml-cpp (#24988)

This commit is contained in:
Erik Schnetter 2021-07-26 04:28:02 -04:00 committed by GitHub
parent c912911d0e
commit cef3a2a6ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,5 +45,6 @@ class AsdfCxx(CMakePackage):
# An error in the cmake script requires swig all the time, not only when # An error in the cmake script requires swig all the time, not only when
# Python bindings are used # Python bindings are used
depends_on('swig @3.0.0:3.999.999', type='build') depends_on('swig @3.0.0:3.999.999', type='build')
depends_on('yaml-cpp') # Neither earlier nor later versions of yaml-cpp work
depends_on('yaml-cpp @0.6.3')
depends_on('zlib') depends_on('zlib')