Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mepo: new package (spack#44879) #448

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions var/spack/repos/builtin/packages/mepo/package.py
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# 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(Package):
class Mepo(PythonPackage):
"""Tool to manage (m)ultiple git r(epo)sitories"""

homepage = "https://github.com/GEOS-ESM/mepo"
url = "https://github.com/GEOS-ESM/mepo/archive/refs/tags/v1.51.1.tar.gz"
git = "https://github.com/GEOS-ESM/mepo.git"
pypi = "mepo/mepo-2.0.0rc4.tar.gz"

maintainers("mathomp4", "pchakraborty", "climbfuji")
maintainers("pchakraborty", "mathomp4")

version("1.52.0", sha256="553876e9ce13484e25abb2e93b261e9f69b529cd4a62070b23dcbd0115b89ad9")
version("1.51.1", sha256="543c1e7487afb2d62e5e8c8a2f69a85af1b1951f588f3dfc7471763e90847360")
license("Apache-2.0", checked_by="mathomp4")

depends_on("python", type="run")
depends_on("[email protected]:", type="run")
version("2.0.0rc4", sha256="5f6113be565c561c08114355570a259042b25222a9e8e1dc6e6e44448381cd36")
version("2.0.0rc3", sha256="c0c897a33f5018489e6cc14892961831c8922a3378ac30436496c52bf877aff7")

def install(self, spec, prefix):
mkdirp(prefix.bin)
install_tree(".", prefix)
# Symlink mepo to bin directory
symlink(join_path(prefix, "mepo"), join_path(prefix.bin, "mepo"))
depends_on("[email protected]:", type=("build", "run"))
depends_on("[email protected]:", type=("build", "run"))
depends_on("[email protected]:", type=("build", "run"))

depends_on("py-hatchling", type="build")
1 change: 1 addition & 0 deletions var/spack/repos/builtin/packages/py-pyyaml/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class PyPyyaml(PythonPackage):

license("MIT")

version("6.0.1", sha256="bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43")
version("6.0", sha256="68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2")
version("5.4.1", sha256="607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e")
version("5.3.1", sha256="b8eac752c5e14d3eca0e6dd9199cd627518cb5ec06add0de9d32baeee6fe645d")
Expand Down
Loading