
* Bump the package API of the `builtin` repo to `v2.0` * Move `var/spack/repos/builtin` -> `var/spack/repos/spack_repo/builtin` * Move test repos `var/spack/repos/{builtin.mock,tutorial,...}` -> `var/spack/test_repos/` * Update package dir names to v2 format (`-` -> `_` etc) * Change absolute imports `from spack.pkg.builtin.my_pkg ...` to relative imports `from ..my_pkg.package ...` Users who have a repo on top of builtin should change imports from ```python from spack.pkg.builtin.my_pkg import MyPkg ``` to ```python from spack_repo.builtin.packages.my_pkg.package import MyPkg ``` and can configure their editors with ``` PYTHONPATH=$spack/lib/spack:$spack/var/spack/repos ``` [skip-verify-checksums]
52 lines
1.5 KiB
Python
52 lines
1.5 KiB
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
from spack.package import *
|
|
|
|
from ..boost.package import Boost
|
|
|
|
|
|
class Parsplice(CMakePackage):
|
|
"""ParSplice code implements the Parallel Trajectory Splicing algorithm"""
|
|
|
|
homepage = "https://gitlab.com/exaalt/parsplice"
|
|
url = (
|
|
"https://gitlab.com/api/v4/projects/exaalt%2Fparsplice/repository/archive.tar.gz?sha=v1.1"
|
|
)
|
|
git = "https://gitlab.com/exaalt/parsplice.git"
|
|
|
|
tags = ["ecp", "ecp-apps"]
|
|
|
|
license("Unlicense")
|
|
|
|
version("develop", branch="master")
|
|
version("multisplice", branch="multisplice")
|
|
version("1.1", sha256="a011c4d14f66e7cdbc151cc74b5d40dfeae19ceea033ef48185d8f3b1bc2f86b")
|
|
|
|
depends_on("cxx", type="build") # generated
|
|
|
|
depends_on("cmake@3.1:", type="build")
|
|
depends_on("berkeley-db")
|
|
depends_on("nauty")
|
|
depends_on("boost cxxstd=11")
|
|
|
|
# TODO: replace this with an explicit list of components of Boost,
|
|
# for instance depends_on('boost +filesystem')
|
|
# See https://github.com/spack/spack/pull/22303 for reference
|
|
depends_on(Boost.with_default_variants)
|
|
depends_on("mpi")
|
|
depends_on("eigen@3:")
|
|
depends_on("lammps+lib@20170901:")
|
|
depends_on("lammps+lib+exceptions", when="@multisplice")
|
|
|
|
def cmake_args(self):
|
|
spec = self.spec
|
|
if spec.satisfies("@multisplice"):
|
|
options = []
|
|
else:
|
|
options = ["-DBUILD_SHARED_LIBS=ON", "-DBoost_NO_BOOST_CMAKE=ON"]
|
|
|
|
return options
|