forked from spack/spack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
py-yt: add 4.4.0 and dependencies (spack#47571)
* py-ewah-bool-utils: add new package * py-extension-helpers: add 1.2.0 * py-regions: add new package * py-erfa: add 2.0.1.5 * py-yt: add 4.4.0 * py-yt: respect build_jobs
- Loading branch information
Showing
5 changed files
with
203 additions
and
14 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
var/spack/repos/builtin/packages/py-ewah-bool-utils/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,24 @@ | ||
# Copyright Spack Project Developers. See COPYRIGHT file for details. | ||
# | ||
# SPDX-License-Identifier: (Apache-2.0 OR MIT) | ||
|
||
from spack.package import * | ||
|
||
|
||
class PyEwahBoolUtils(PythonPackage): | ||
"""EWAH Bool Array utils for yt""" | ||
|
||
homepage = "https://github.com/yt-project/ewah_bool_utils" | ||
pypi = "ewah_bool_utils/ewah_bool_utils-1.2.2.tar.gz" | ||
|
||
license("BSD-3-Clause", checked_by="lgarrison") | ||
|
||
version("1.2.2", sha256="eb901f46caef189de3a0c1f5ca06287cfaba7976ddf76fa1c1f3bce1b60b7ac3") | ||
|
||
depends_on("[email protected]:", type=("build", "run")) | ||
|
||
depends_on("[email protected]:", type="build") | ||
depends_on("[email protected]:", type="build") | ||
depends_on("[email protected]:", type="build") | ||
|
||
depends_on("[email protected]:2", type=("build", "run")) |
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 |
---|---|---|
|
@@ -12,14 +12,27 @@ class PyExtensionHelpers(PythonPackage): | |
extensions. It is developed by the Astropy project but is intended | ||
to be general and usable by any Python package.""" | ||
|
||
homepage = "https://github.com/astropy/astropy-helpers" | ||
pypi = "extension-helpers/extension-helpers-0.1.tar.gz" | ||
homepage = "https://github.com/astropy/extension-helpers" | ||
pypi = "extension-helpers/extension_helpers-1.2.0.tar.gz" | ||
|
||
license("BSD-3-Clause") | ||
|
||
version("0.1", sha256="ac8a6fe91c6d98986a51a9f08ca0c7945f8fd70d95b662ced4040ae5eb973882") | ||
version("1.2.0", sha256="e7d9c8f71804edd7ecd05b5d59a5b504f6e24867970abfc12771242eed76ebcc") | ||
version( | ||
"0.1", | ||
sha256="ac8a6fe91c6d98986a51a9f08ca0c7945f8fd70d95b662ced4040ae5eb973882", | ||
# 0.1 uses dash in the tarball name | ||
url="https://files.pythonhosted.org/packages/81/78/056daee475dfc41cc0b62540388703cddcae4d4f6bef10c6ce1aea76ebaf/extension-helpers-0.1.tar.gz", | ||
) | ||
|
||
depends_on("c", type="build") # generated | ||
depends_on("c", type="build") | ||
|
||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run"), when="@1.2.0:") | ||
|
||
depends_on("[email protected]:", type="build") | ||
depends_on("[email protected]:", type="build", when="@1.2.0:") | ||
depends_on("[email protected]:", type="build", when="@1.2.0:") | ||
|
||
depends_on("[email protected]:", type=("build", "run"), when="@1.2.0:") | ||
depends_on("[email protected]:", type=("build", "run"), when="@1.2.0: ^python@:3.10") |
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 |
---|---|---|
|
@@ -21,19 +21,24 @@ class PyPyerfa(PythonPackage): | |
|
||
license("BSD-3-Clause") | ||
|
||
version("2.0.1.5", sha256="17d6b24fe4846c65d5e7d8c362dcb08199dc63b30a236aedd73875cc83e1f6c0") | ||
version("2.0.1.1", sha256="dbac74ef8d3d3b0f22ef0ad3bbbdb30b2a9e10570b1fa5a98be34c7be36c9a6b") | ||
version("2.0.0.1", sha256="2fd4637ffe2c1e6ede7482c13f583ba7c73119d78bef90175448ce506a0ede30") | ||
|
||
depends_on("c", type="build") # generated | ||
depends_on("c", type="build") | ||
|
||
# From setup.cfg | ||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:2", when="@2.0.1.1", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run"), when="@2.0.1.5:") | ||
depends_on("[email protected]:", when="@2.0.1.5:", type="build") | ||
depends_on("[email protected]:", when="@2.0.1.5:", type=("build", "run")) | ||
depends_on("[email protected]:1", when="@2.0.1.1", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", when="@2.0.1.1", type="build") | ||
depends_on("[email protected]:", when="@2.0.1.1:", type="build") | ||
depends_on("[email protected]:+toml", type="build") | ||
|
||
# From pyproject.toml | ||
depends_on("py-setuptools@42:", type="build") | ||
depends_on("[email protected]:", type="build", when="@2.0.1.5:") | ||
depends_on("py-packaging", type="build") | ||
depends_on("[email protected]:", type="build") |
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,34 @@ | ||
# Copyright Spack Project Developers. See COPYRIGHT file for details. | ||
# | ||
# SPDX-License-Identifier: (Apache-2.0 OR MIT) | ||
|
||
from spack.package import * | ||
|
||
|
||
class PyRegions(PythonPackage): | ||
"""An Astropy coordinated package for region handling""" | ||
|
||
homepage = "https://github.com/astropy/regions" | ||
pypi = "regions/regions-0.10.tar.gz" | ||
|
||
license("BSD-3-Clause", checked_by="lgarrison") | ||
|
||
version("0.10", sha256="961c518ea044268de0003a17953de3d4984623e9d47ad5424c100f6967e69a81") | ||
|
||
variant("all", default=False, description="Install all optional dependencies") | ||
|
||
depends_on("c", type="build") | ||
|
||
depends_on("[email protected]:", type=("build", "run")) | ||
|
||
depends_on("[email protected]:", type="build") | ||
depends_on("[email protected]:", type="build") | ||
depends_on("[email protected]:3.0", type="build") | ||
depends_on("[email protected]:", type="build") | ||
depends_on("py-extension-helpers@1", type="build") | ||
|
||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run")) | ||
|
||
depends_on("[email protected]:", type=("build", "run"), when="+all") | ||
depends_on("py-shapely", type=("build", "run"), when="+all") |
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 |
---|---|---|
|
@@ -23,6 +23,7 @@ class PyYt(PythonPackage): | |
|
||
license("BSD-3-Clause") | ||
|
||
version("4.4.0", sha256="0e15df9cb21abe582f8128bf0705a3bc0f4805f97efd6b4f883073703941c0d5") | ||
version("4.1.2", sha256="0ae03288b067721baad14c016f253dc791cd444a1f2dd5d804cf91da622a0c76") | ||
version("3.6.1", sha256="be454f9d05dcbe0623328b4df43a1bfd1f0925e516be97399710452931a19bb0") | ||
version("3.6.0", sha256="effb00536f19fd2bdc18f67dacd5550b82066a6adce5b928f27a01d7505109ec") | ||
|
@@ -39,14 +40,123 @@ class PyYt(PythonPackage): | |
version("3.2.3", sha256="4d6ccf345d9fab965335c9faf8708c7eea79366b81d77f0f302808be3e82c0ed") | ||
version("3.2.2", sha256="78866f51e4751534ad60987000f149a8295952b99b37ca249d45e4d11095a5df") | ||
|
||
depends_on("c", type="build") # generated | ||
depends_on("cxx", type="build") # generated | ||
depends_on("c", type="build") | ||
depends_on("cxx", type="build") | ||
|
||
variant("astropy", default=True, description="enable astropy support") | ||
variant("h5py", default=True, description="enable h5py support") | ||
variant("scipy", default=True, description="enable scipy support") | ||
variant("rockstar", default=False, description="enable rockstar support") | ||
|
||
with when("@4.4.0:"): | ||
# Build dependencies: | ||
depends_on("[email protected]:", type="build") | ||
depends_on("[email protected]:", type="build") | ||
depends_on("[email protected]:", type="build") | ||
depends_on("[email protected]:", type=("build", "run")) | ||
|
||
# Main dependencies: | ||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:2", type=("build", "run")) | ||
conflicts("^[email protected]", when="target=aarch64 platform=darwin") | ||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run"), when="^python@:3.11") | ||
|
||
depends_on("[email protected]:", type=("build", "run"), when="+h5py") | ||
conflicts("^[email protected]", when="platform=windows") | ||
|
||
depends_on("[email protected]:", type=("build", "run"), when="+netCDF4") | ||
conflicts("^[email protected]", when="+netCDF4") | ||
|
||
depends_on("[email protected]:", type=("build", "run"), when="+Fortran") | ||
depends_on("[email protected]:", type=("build", "run"), when="+astropy") | ||
|
||
# Extras: | ||
variant("netCDF4", default=False, description="enable netCDF4 support") | ||
variant("Fortran", default=False, description="enable Fortran support") | ||
|
||
variant("adaptahop", default=False, description="enable adaptahop support (no-op)") | ||
variant("ahf", default=False, description="enable ahf support (no-op)") | ||
variant("amrex", default=False, description="enable amrex support (no-op)") | ||
variant("amrvac", default=False, description="enable amrvac support") | ||
variant("art", default=False, description="enable art support (no-op)") | ||
variant("arepo", default=False, description="enable arepo support") | ||
variant("artio", default=False, description="enable artio support (no-op)") | ||
variant("athena", default=False, description="enable athena support (no-op)") | ||
variant("athena_pp", default=False, description="enable athena-pp support (no-op)") | ||
variant("boxlib", default=False, description="enable boxlib support (no-op)") | ||
# variant("cf_radial", default=False, description="enable cf-radial support") | ||
variant("chimera", default=False, description="enable chimera support") | ||
variant("chombo", default=False, description="enable chombo support") | ||
variant("cholla", default=False, description="enable cholla support") | ||
variant("eagle", default=False, description="enable eagle support") | ||
variant("enzo_e", default=False, description="enable enzo-e support") | ||
variant("enzo", default=False, description="enable enzo support") | ||
variant("exodus_ii", default=False, description="enable exodus-ii support") | ||
variant("fits", default=False, description="enable fits support") | ||
variant("flash", default=False, description="enable flash support") | ||
variant("gadget", default=False, description="enable gadget support") | ||
variant("gadget_fof", default=False, description="enable gadget-fof support") | ||
variant("gamer", default=False, description="enable gamer support") | ||
variant("gdf", default=False, description="enable gdf support") | ||
variant("gizmo", default=False, description="enable gizmo support") | ||
variant("halo_catalog", default=False, description="enable halo-catalog support") | ||
variant("http_stream", default=False, description="enable http-stream support") | ||
variant("idefix", default=False, description="enable idefix support") | ||
variant("moab", default=False, description="enable moab support") | ||
variant("nc4_cm1", default=False, description="enable nc4-cm1 support") | ||
variant("open_pmd", default=False, description="enable open-pmd support") | ||
variant("owls", default=False, description="enable owls support") | ||
variant("owls_subfind", default=False, description="enable owls-subfind support") | ||
variant("parthenon", default=False, description="enable parthenon support") | ||
variant("ramses", default=False, description="enable ramses support") | ||
variant("sdf", default=False, description="enable sdf support") | ||
variant("stream", default=False, description="enable stream support (no-op)") | ||
variant("swift", default=False, description="enable swift support") | ||
variant("tipsy", default=False, description="enable tipsy support (no-op)") | ||
variant("ytdata", default=False, description="enable ytdata support") | ||
|
||
conflicts("~Fortran", when="+amrvac") | ||
|
||
conflicts("~h5py", when="+arepo") | ||
# depends_on("[email protected]:", when="+cf_radial", type=('build', 'run')) | ||
# depends_on("[email protected]:", when="+cf_radial", type=('build', 'run')) | ||
conflicts("~h5py", when="+chimera") | ||
conflicts("~h5py", when="+chombo") | ||
conflicts("~h5py", when="+cholla") | ||
conflicts("~h5py", when="+eagle") | ||
conflicts("~h5py", when="+enzo_e") | ||
depends_on("[email protected]:", when="+enzo_e", type=("build", "run")) | ||
conflicts("~h5py", when="+enzo") | ||
depends_on("[email protected]:", when="+enzo", type=("build", "run")) | ||
conflicts("~netCDF4", when="+exodus_ii") | ||
depends_on("[email protected]:", when="+fits", type=("build", "run")) | ||
depends_on("[email protected]:", when="+fits", type=("build", "run")) | ||
conflicts("~h5py", when="+flash") | ||
conflicts("~h5py", when="+gadget") | ||
conflicts("~h5py", when="+gadget_fof") | ||
conflicts("~h5py", when="+gamer") | ||
conflicts("~h5py", when="+gdf") | ||
conflicts("~h5py", when="+gizmo") | ||
conflicts("~h5py", when="+halo_catalog") | ||
depends_on("[email protected]:", when="+http_stream", type=("build", "run")) | ||
conflicts("~h5py", when="+idefix") | ||
conflicts("~h5py", when="+moab") | ||
conflicts("~netCDF4", when="+nc4_cm1") | ||
conflicts("~h5py", when="+open_pmd") | ||
conflicts("~h5py", when="+owls") | ||
conflicts("~h5py", when="+owls_subfind") | ||
conflicts("~h5py", when="+parthenon") | ||
conflicts("~Fortran", when="+ramses") | ||
depends_on("py-scipy", when="+ramses", type=("build", "run")) | ||
depends_on("[email protected]:", when="+sdf", type=("build", "run")) | ||
conflicts("~h5py", when="+swift") | ||
conflicts("~h5py", when="+ytdata") | ||
|
||
# variant('full', default=False, description='Enable all optional dependencies') | ||
|
||
# Main dependencies: | ||
# See https://github.com/yt-project/yt/blob/yt-4.1.2/setup.cfg#L40 | ||
depends_on("[email protected]:", type=("build", "run"), when="@4.1.2:") | ||
|
@@ -55,7 +165,7 @@ class PyYt(PythonPackage): | |
depends_on("py-matplotlib@:3.2.2", type=("build", "run"), when="@:3.6.0") | ||
depends_on("[email protected]:", type=("build", "run"), when="@4.1.2:") | ||
conflicts("^[email protected]", when="@4.1.2:") | ||
depends_on("[email protected]:", when="@4.1.2:") | ||
depends_on("[email protected]:", type=("build", "run"), when="@4.1.2:") | ||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run"), when="@4.1.2:") | ||
# https://github.com/yt-project/yt/pull/4859 | ||
|
@@ -64,7 +174,7 @@ class PyYt(PythonPackage): | |
# PIL/pillow and pyparsing dependency is handled by matplotlib | ||
depends_on("[email protected]:", type=("build", "run"), when="@4.1.2:") | ||
depends_on("[email protected]:", type=("build", "run"), when="@4.1.2:") | ||
depends_on("[email protected]:2", type=("build", "run"), when="@4.1.2:") | ||
depends_on("[email protected]:2", type=("build", "run"), when="@4.1.2") | ||
depends_on("[email protected]:", type=("build", "run"), when="@4.1.2: ^python@:3.7") | ||
depends_on("[email protected]:", type=("build", "run"), when="@4.1.2: ^python@:3.10") | ||
depends_on("[email protected]:", type=("build", "run"), when="@4.1.2: ^python@:3.7") | ||
|
@@ -73,15 +183,15 @@ class PyYt(PythonPackage): | |
|
||
# Extras: | ||
# See https://github.com/yt-project/yt/blob/yt-4.1.2/setup.cfg#L80 | ||
depends_on("[email protected]:3", type=("build", "run"), when="+h5py") | ||
depends_on("[email protected]:3", type=("build", "run"), when="@:4.1.2 +h5py") | ||
depends_on("[email protected]:", type=("build", "run"), when="+scipy") | ||
depends_on("rockstar@yt", type=("build", "run"), when="+rockstar") | ||
depends_on("[email protected]:5", type=("build", "run"), when="+astropy") | ||
depends_on("[email protected]:5", type=("build", "run"), when="@:4.1.2 +astropy") | ||
|
||
# Build dependencies: | ||
# See https://github.com/yt-project/yt/blob/yt-4.1.2/pyproject.toml#L2 | ||
depends_on("[email protected]:", type="build") | ||
depends_on("[email protected]:2", type="build", when="@4.1.2:") | ||
depends_on("[email protected]:2", type="build", when="@4.1.2") | ||
depends_on("[email protected]:", type="build", when="@4.1.2:") | ||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run"), when="@4.1.2:") | ||
|
@@ -99,3 +209,6 @@ def check_install(self): | |
# yt = Executable(join_path(prefix.bin, "yt")) | ||
# yt("--help") | ||
python(join_path(self.prefix.bin, "yt"), "--help") | ||
|
||
def setup_build_environment(self, env): | ||
env.set("MAX_BUILD_CORES", str(make_jobs)) |