From 9ae36849afbffca6c25bc93fbc27381c1f48403a Mon Sep 17 00:00:00 2001 From: jiseung Date: Wed, 19 Jul 2017 17:05:19 -0500 Subject: [PATCH] new package: cns-nospec (#4806) * new package: cns-nospec * made changes as suggested and added proxy-app tag * updated edit() * adjusted logic for '+debug' --- .../builtin/packages/cns-nospec/package.py | 67 +++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 var/spack/repos/builtin/packages/cns-nospec/package.py diff --git a/var/spack/repos/builtin/packages/cns-nospec/package.py b/var/spack/repos/builtin/packages/cns-nospec/package.py new file mode 100644 index 0000000000..c702a0a92b --- /dev/null +++ b/var/spack/repos/builtin/packages/cns-nospec/package.py @@ -0,0 +1,67 @@ +############################################################################## +# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC. +# Produced at the Lawrence Livermore National Laboratory. +# +# This file is part of Spack. +# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved. +# LLNL-CODE-647188 +# +# For details, see https://github.com/llnl/spack +# Please also see the LICENSE file for our notice and the LGPL. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License (as +# published by the Free Software Foundation) version 2.1, February 1999. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and +# conditions of the GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +############################################################################## +from spack import * +import glob + + +class CnsNospec(MakefilePackage): + """A simple, explicit, stencil-based test code for integrating + the compressible Navier-Stokes equations. The code uses + 8th order finite differences in space and a 3rd order, + low-storage TVD RK algorithm in time.""" + + homepage = "https://ccse.lbl.gov/ExaCT/index.html" + url = "https://ccse.lbl.gov/ExaCT/CNS_Nospec.tgz" + tags = ['proxy-app'] + + version('master', '14ff5be62539d829b30b17281688ee3f') + + variant('mpi', default=True, description='Build with MPI support') + variant('debug', default=False, description='Build with debugging') + variant('omp', default=False, description='Build with OpenMP support') + variant('prof', default=False, description='Build with profiling') + + depends_on('mpi', when='+mpi') + depends_on('gmake', type='build') + + build_directory = 'MiniApps/CNS_NoSpec' + + def edit(self, spec, prefix): + with working_dir(self.build_directory): + makefile = FileFilter('GNUmakefile') + if '+mpi' in spec: + makefile.filter('MPI .*', 'MPI := t') + if '+debug' in spec: + makefile.filter('NDEBUG.*', '#') + if '+omp' in spec: + makefile.filter('OMP.*', 'OMP := t') + if '+prof' in spec: + makefile.filter('PROF.*', 'PROF := t') + + def install(self, spec, prefix): + mkdirp(prefix.bin) + files = glob.glob(join_path(self.build_directory, '*.exe')) + for f in files: + install(f, prefix.bin)