From de24bbfea794ef0fb5f24bc681373463dfdf6625 Mon Sep 17 00:00:00 2001 From: Dominic Hofer <6570912+dominichofer@users.noreply.github.com> Date: Wed, 27 Nov 2024 09:13:16 +0100 Subject: [PATCH] Icon: Remove BB specific parts --- repos/c2sm/packages/icon/package.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/repos/c2sm/packages/icon/package.py b/repos/c2sm/packages/icon/package.py index 96c5582f49..c77d8e8b6c 100755 --- a/repos/c2sm/packages/icon/package.py +++ b/repos/c2sm/packages/icon/package.py @@ -277,13 +277,6 @@ class Icon(AutotoolsPackage, CudaPackage): out_of_source_build = False out_of_source_configure_directory = '' - # patch_libtool is a function from Autotoolspackage. - # For BB we cannot use it because it finds all files - # named "libtool". spack-c2sm is cloned into icon-repo, - # therefore this function detects not only "libtool" files, but - # also the folder where libtool package itself is installed. - patch_libtool = False - def setup_build_environment(self, env): # help cmake to build dsl-stencils if 'none' not in self.spec.variants['dsl'].value: @@ -650,12 +643,6 @@ def validate_extra_config_args(self, arg): f'with the existing variant {variant_from_arg}. Set this variant instead.' ) - def check(self): - # By default "check" calls make with targets "check" and "test". - # This testing is beyond the scope of BuildBot test at CSCS. - # Therefore override this function, saves a lot of time too. - pass - @run_after('install') @on_package_attributes(run_tests=True) def checksuite(self):