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

update spack file #783

Closed
wants to merge 3 commits into from
Closed
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
33 changes: 23 additions & 10 deletions spack/package.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 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)
Expand Down Expand Up @@ -29,6 +29,9 @@ class G2(CMakePackage):
version("3.4.5", sha256="c18e991c56964953d778632e2d74da13c4e78da35e8d04cb742a2ca4f52737b6")
version("3.4.3", sha256="679ea99b225f08b168cbf10f4b29f529b5b011232f298a5442ce037ea84de17c")

depends_on("c", type="build")
depends_on("fortran", type="build")

variant("pic", default=True, description="Build with position-independent-code")
variant(
"precision",
Expand All @@ -40,20 +43,25 @@ class G2(CMakePackage):
)
variant("w3emc", default=True, description="Enable GRIB1 through w3emc", when="@3.4.6:")
variant("aec", default=True, description="Use AEC library", when="@develop")
variant("shared", default="False", when="@3.4.7:")
variant("openmp", default=False, description="Use OpenMP multithreading")
variant("utils", default=False, description="Build grib utilities")
variant("g2c_compare", default=False, description="Enable copygb2 tests using g2c_compare")
variant("shared", default="False", description="Build shared library", when="@3.4.7:")
variant("openmp", default=False, description="Use OpenMP multithreading", when="@develop")
variant("utils", default=False, description="Build grib utilities", when="@develop")
variant(
"g2c_compare",
default=False,
description="Enable copygb2 tests using g2c_compare",
when="@develop",
)

depends_on("jasper@:2.0.32", when="@:3.4.7")
depends_on("jasper")
depends_on("[email protected]:", when="@develop")
depends_on("[email protected] +aec", when="+aec")
depends_on("libpng")
depends_on("zlib-api")
depends_on("zlib-api", when="@develop")
depends_on("bacio", when="@3.4.6:")
depends_on("ip")
depends_on("ip precision=d", when="^[email protected]:")
depends_on("ip", when="@develop")
requires("^ip precision=d", when="^[email protected]:")
depends_on("sp", when="^ip@:4")
depends_on("sp precision=d", when="^ip@:4 ^[email protected]:")
depends_on("[email protected]: +utils", when="+g2c_compare")
Expand Down Expand Up @@ -84,10 +92,15 @@ def setup_run_environment(self, env):
self.spec.variants["precision"].value if self.spec.satisfies("@3.4.6:") else ("4", "d")
)
for suffix in precisions:
lib = find_libraries("libg2_" + suffix, root=self.prefix, shared=self.spec.satisfies("+shared"), recursive=True)
lib = find_libraries(
"libg2_" + suffix,
root=self.prefix,
shared=self.spec.satisfies("+shared"),
recursive=True,
)
env.set("G2_LIB" + suffix, lib[0])
env.set("G2_INC" + suffix, join_path(self.prefix, "include_" + suffix))

def check(self):
with working_dir(self.builder.build_directory):
with working_dir(self.build_directory):
make("test")
Loading