forked from spack/spack
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #264 from climbfuji/feature/add_neptune_packages
Add jedi-neptune-env
- Loading branch information
Showing
2 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
var/spack/repos/jcsda-emc-bundles/packages/jedi-neptune-env/package.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters