dune-codegen now has a 2.7 release

This commit is contained in:
Dominic Kempf 2020-07-10 09:15:29 +00:00
parent e658e3ade6
commit 7694364c69
1 changed files with 11 additions and 3 deletions

View File

@ -266,16 +266,24 @@ class Dune(CMakePackage):
when='@2.6+python',
)
# The dune-codegen package does not yet have a 2.7-compatible release
# The dune-codegen package does not have a 2.6-compatible release
resource(
name='dune-codegen',
git='https://gitlab.dune-project.org/extensions/dune-codegen.git',
branch='bugfix/installed-library',
branch='master',
when='@master+codegen',
submodules=True,
)
resource(
name='dune-codegen',
git='https://gitlab.dune-project.org/extensions/dune-codegen.git',
branch='releases/2.7',
when='@2.7+codegen',
submodules=True,
)
conflicts('dune@2.6', when='+codegen')
conflicts('dune@2.7', when='+codegen')
# Make sure that Python components integrate well into Spack
extends('python')