spack/var/spack/repos/builtin/packages/sosflow/package.py
Todd Gamblin eea786f4e8 relicense: replace LGPL headers with Apache-2.0/MIT SPDX headers
- remove the old LGPL license headers from all files in Spack
- add SPDX headers to all files
  - core and most packages are (Apache-2.0 OR MIT)
  - a very small number of remaining packages are LGPL-2.1-only
2018-10-17 14:42:06 -07:00

35 lines
1.2 KiB
Python

# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class Sosflow(CMakePackage):
"""SOSflow provides a flexible, scalable, and programmable framework for
observation, introspection, feedback, and control of HPC applications."""
homepage = "https://github.com/cdwdirect/sos_flow/wiki"
git = "https://github.com/cdwdirect/sos_flow.git"
version('spack', tag='spack-build-v0.9901')
depends_on('libevpath')
depends_on('sqlite@3:')
depends_on('pkgconfig')
depends_on('mpi')
def setup_environment(self, spack_env, run_env):
spack_env.set('SOS_HOST_KNOWN_AS', 'SPACK-SOS-BUILD')
spack_env.set('SOS_HOST_NODE_NAME', 'SPACK-SOS-NODE')
spack_env.set('SOS_HOST_DETAILED', 'SPACK-SOS-DETAILED')
run_env.set('SOS_ROOT', self.spec.prefix)
run_env.set('SOS_BUILD_DIR', self.spec.prefix)
run_env.set('SOS_CMD_PORT', '22500')
run_env.set('SOS_WORK', env['HOME'])
run_env.set('SOS_EVPATH_MEETUP', env['HOME'])
run_env.set('SOS_ENV_SET', 'true')