diff options
author | Matt Thompson <matthew.thompson@nasa.gov> | 2024-07-02 15:18:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-02 12:18:40 -0700 |
commit | 5686a6b92824829c01f0d98e92f574e21314ca49 (patch) | |
tree | 31e65bc78d735811e1123ca946c6fc1750e973db | |
parent | ad665c6af1b16ca80394f48574804e6ce41afca1 (diff) | |
download | spack-5686a6b92824829c01f0d98e92f574e21314ca49.tar.gz spack-5686a6b92824829c01f0d98e92f574e21314ca49.tar.bz2 spack-5686a6b92824829c01f0d98e92f574e21314ca49.tar.xz spack-5686a6b92824829c01f0d98e92f574e21314ca49.zip |
mepo: new package (#44879)
* mepo: add new package
* Add mepo 2.0.0rc4
* Update dependencies
-rw-r--r-- | var/spack/repos/builtin/packages/mepo/package.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/mepo/package.py b/var/spack/repos/builtin/packages/mepo/package.py new file mode 100644 index 0000000000..6d124d2121 --- /dev/null +++ b/var/spack/repos/builtin/packages/mepo/package.py @@ -0,0 +1,27 @@ +# Copyright 2013-2024 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.package import * + + +class Mepo(PythonPackage): + """Tool to manage (m)ultiple git r(epo)sitories""" + + homepage = "https://github.com/GEOS-ESM/mepo" + git = "https://github.com/GEOS-ESM/mepo.git" + pypi = "mepo/mepo-2.0.0rc4.tar.gz" + + maintainers("pchakraborty", "mathomp4") + + license("Apache-2.0", checked_by="mathomp4") + + version("2.0.0rc4", sha256="5f6113be565c561c08114355570a259042b25222a9e8e1dc6e6e44448381cd36") + version("2.0.0rc3", sha256="c0c897a33f5018489e6cc14892961831c8922a3378ac30436496c52bf877aff7") + + depends_on("python@3.9:", type=("build", "run")) + depends_on("py-colorama@0.4.6:", type=("build", "run")) + depends_on("py-pyyaml@6.0.1:", type=("build", "run")) + + depends_on("py-hatchling", type="build") |