
* Update URL parsing regexes and tests * Get rid of no longer used README * Merge py-udunits and py-cf-units * netcdf -> netcdf-c * setup_environment -> setup_*_environment * Fix doc tests * Few last minute fixes * Simplify prefix removal copypasta
31 lines
996 B
Python
31 lines
996 B
Python
# Copyright 2013-2019 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 Shuffile(CMakePackage):
|
|
"""Shuffle files between MPI ranks"""
|
|
|
|
homepage = "https://github.com/ECP-VeloC/shuffile"
|
|
url = "https://github.com/ECP-VeloC/shuffile/archive/v0.0.3.zip"
|
|
git = "https://github.com/ecp-veloc/shuffile.git"
|
|
|
|
tags = ['ecp']
|
|
|
|
version('master', branch='master')
|
|
version('0.0.3', sha256='6debdd9d6e6f1c4ec31015d7956e8b556acd61ce31f757e4d1fa5002029c75e2')
|
|
|
|
depends_on('mpi')
|
|
depends_on('kvtree')
|
|
|
|
def cmake_args(self):
|
|
args = []
|
|
args.append("-DMPI_C_COMPILER=%s" % self.spec['mpi'].mpicc)
|
|
if self.spec.satisfies('platform=cray'):
|
|
args.append("-DSHUFFILE_LINK_STATIC=ON")
|
|
args.append("-DWITH_KVTREE_PREFIX=%s" % self.spec['kvtree'].prefix)
|
|
return args
|