spath: new releases (#22625)

This commit adds the url and the two releases/versions to the package.
This commit is contained in:
Cameron Stanavige 2021-03-29 19:02:33 -07:00 committed by GitHub
parent f67d4774ea
commit 846cf954f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,11 +10,14 @@ class Spath(CMakePackage):
"""Represent and manipulate file system paths""" """Represent and manipulate file system paths"""
homepage = "https://github.com/ecp-veloc/spath" homepage = "https://github.com/ecp-veloc/spath"
url = "https://github.com/ECP-VeloC/spath/archive/v0.0.2.tar.gz"
git = "https://github.com/ecp-veloc/spath.git" git = "https://github.com/ecp-veloc/spath.git"
tags = ['ecp'] tags = ['ecp']
version('master', branch='master') version('master', branch='master')
version('0.0.2', sha256='7a65be59c3d27e92ed4718fba1a97a4a1c68e0a552b54de13d58afe3d8199cf7')
version('0.0.1', sha256='f41c0ac74e6fb8acfd0c072d756db0fc9c00441f22be492cc4ad25f7fb596a24')
variant('mpi', default=True, description="Build with MPI support.") variant('mpi', default=True, description="Build with MPI support.")
depends_on('mpi', when='+mpi') depends_on('mpi', when='+mpi')