Skip to content

Commit

Permalink
Merge pull request #264 from climbfuji/feature/add_neptune_packages
Browse files Browse the repository at this point in the history
Add jedi-neptune-env
  • Loading branch information
climbfuji authored May 17, 2023
2 parents 2e98c80 + aa1b313 commit 993aae4
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Copyright 2013-2022 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 JediNeptuneEnv(BundlePackage):
"""Development environment for neptune-bundle"""

# Fake URL
homepage = "https://github.com/JCSDA-internal/neptune-bundle"
git = "https://github.com/JCSDA-internal/neptune-bundle.git"

maintainers("climbfuji", "areineke")

version("1.0.0")

depends_on("jedi-base-env", type="run")

depends_on("libyaml", type="run")
depends_on("p4est", type="run")
depends_on("w3emc", type="run")
depends_on("esmf", type="run")

# There is no need for install() since there is no code.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ class JediUfsEnv(BundlePackage):
depends_on("sigio", type="run")
depends_on("w3emc", type="run")
depends_on("w3nco", type="run")

depends_on("esmf~debug", type="run")
depends_on("mapl~debug", type="run")
depends_on("esmf", type="run")
depends_on("mapl", type="run")

# There is no need for install() since there is no code.

0 comments on commit 993aae4

Please sign in to comment.