From b45a31aefe065c0cb6761034384af2aa1d2c41f3 Mon Sep 17 00:00:00 2001 From: vvolkl Date: Tue, 26 Jan 2021 08:57:13 +0100 Subject: [dd4hep] fix assimp variant (#21226) --- var/spack/repos/builtin/packages/assimp/package.py | 2 ++ var/spack/repos/builtin/packages/dd4hep/package.py | 11 ++++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) (limited to 'var') diff --git a/var/spack/repos/builtin/packages/assimp/package.py b/var/spack/repos/builtin/packages/assimp/package.py index 345b478ac9..f2be52a4f2 100644 --- a/var/spack/repos/builtin/packages/assimp/package.py +++ b/var/spack/repos/builtin/packages/assimp/package.py @@ -12,7 +12,9 @@ class Assimp(CMakePackage): homepage = "https://www.assimp.org" url = "https://github.com/assimp/assimp/archive/v4.0.1.tar.gz" + git = "https://github.com/assimp/assimp.git" + version('master', branch='master') version('5.0.1', sha256='11310ec1f2ad2cd46b95ba88faca8f7aaa1efe9aa12605c55e3de2b977b3dbfc') version('4.0.1', sha256='60080d8ab4daaab309f65b3cffd99f19eb1af8d05623fff469b9b652818e286e') diff --git a/var/spack/repos/builtin/packages/dd4hep/package.py b/var/spack/repos/builtin/packages/dd4hep/package.py index b1fc34db21..68c909563b 100644 --- a/var/spack/repos/builtin/packages/dd4hep/package.py +++ b/var/spack/repos/builtin/packages/dd4hep/package.py @@ -49,7 +49,9 @@ class Dd4hep(CMakePackage): variant('hepmc3', default=False, description="Enable build with hepmc3") variant('lcio', default=False, description="Enable build with lcio") variant('edm4hep', default=True, description="Enable build with edm4hep") - variant('debug', default=False, description="Enable debug build") + variant('debug', default=False, + description="Enable debug build flag - adds extra info in" + " some places in addtion to the debug build type") depends_on('cmake @3.12:', type='build') depends_on('ninja', type='build') @@ -58,7 +60,7 @@ class Dd4hep(CMakePackage): extends('python') depends_on('xerces-c', when='+xercesc') depends_on('geant4@10.2.2:', when='+geant4') - depends_on('assimp', when='+assimp') + depends_on('assimp@5.0.2:', when='+assimp') depends_on('hepmc3', when="+hepmc3") depends_on('lcio', when="+lcio") depends_on('edm4hep', when="+edm4hep") @@ -75,8 +77,11 @@ class Dd4hep(CMakePackage): self.define_from_variant('DD4HEP_USE_GEANT4', 'geant4'), self.define_from_variant('DD4HEP_USE_LCIO', 'lcio'), self.define_from_variant('DD4HEP_USE_HEPMC3', 'hepmc3'), - self.define_from_variant('DD4HEP_LOAD_ASSIMP', 'assimp'), self.define_from_variant('DD4HEP_BUILD_DEBUG', 'debug'), + # Downloads assimp from github and builds it on the fly. + # However, with spack it is preferrable to have a proper external + # dependency, so we disable it. + self.define('DD4HEP_LOAD_ASSIMP', False), "-DCMAKE_CXX_STANDARD={0}".format(cxxstd), "-DBUILD_TESTING={0}".format(self.run_tests), "-DBOOST_ROOT={0}".format(spec['boost'].prefix), -- cgit v1.2.3-60-g2f50