Skip to content
Open
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
1 change: 1 addition & 0 deletions repos/spack_repo/builtin/packages/graphlib/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ class Graphlib(CMakePackage):
version("3.0.0", sha256="c3d889f7bc25b9662426605e52f14cd16f9c05b034738a343890707f5f5681f1")

depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated

depends_on("cmake@2.6:", type="build")
5 changes: 5 additions & 0 deletions repos/spack_repo/builtin/packages/launchmon/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ class Launchmon(AutotoolsPackage):
maintainers("lee218llnl")

version("master", branch="master")
version(
"1.2.1",
sha256="dcd5744b34076c009d6e9436c7b858eb862542eab558ce47e474c18079f510d9",
url="https://github.com/LLNL/LaunchMON/releases/download/v1.2.1/launchmon-1.2.1.tar.gz",
)
version(
"1.2.0",
sha256="edba70b8a283337dd4fda64192ba4fa36b7ada3f150340349b8681bcddcebda4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ class MountPointAttributes(AutotoolsPackage):
)
version("1.1", sha256="bff84c75c47b74ea09b6cff949dd699b185ddba0463cb1ff39ab138003c96e02")

depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated

depends_on("autoconf", type="build", when="@master")
Expand Down
1 change: 1 addition & 0 deletions repos/spack_repo/builtin/packages/py_pygobject/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class PyPygobject(MesonPackage, PythonPackage):
license("LGPL-2.1-or-later")

version("3.54.3", sha256="a8da09134a0f7d56491cf2412145e35aa74e91d760e8f337096a1cda0b92bae7")
version("3.54.5", sha256="b6656f6348f5245606cf15ea48c384c7f05156c75ead206c1b246c80a22fb585")
version(
"3.46.0",
sha256="426008b2dad548c9af1c7b03b59df0440fde5c33f38fb5406b103a43d653cafc",
Expand Down
8 changes: 7 additions & 1 deletion repos/spack_repo/builtin/packages/py_xdot/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,21 @@ class PyXdot(PythonPackage):
depends_on("pango", type=("build", "run"))
depends_on("harfbuzz", type=("build", "run"))
depends_on("atk", type=("build", "run"))
depends_on("gobject-introspection", type=("build", "run"))
depends_on("gdk-pixbuf", type=("build", "run"))
depends_on("gtkplus", type=("build", "run"))
depends_on("py-numpy", type=("build", "run"), when="@1.2:")

@run_after("install")
def post_install(self):
spec = self.spec
repo_paths = "%s:%s:%s:%s:%s" % (
repo_paths = "%s:%s:%s:%s:%s:%s" % (
join_path(spec["pango"].prefix.lib, "girepository-1.0"),
join_path(spec["atk"].prefix.lib, "girepository-1.0"),
join_path(spec["gdk-pixbuf"].prefix.lib, "girepository-1.0"),
join_path(spec["gtkplus"].prefix.lib, "girepository-1.0"),
join_path(spec["harfbuzz"].prefix.lib, "girepository-1.0"),
join_path(spec["gobject-introspection"].prefix.lib, "girepository-1.0"),
)
dst = join_path(python_purelib, "xdot", "__init__.py")
filter_file(
Expand All @@ -68,3 +70,7 @@ def setup_run_environment(self, env: EnvironmentModifications) -> None:
env.prepend_path(
"GI_TYPELIB_PATH", join_path(spec["gtkplus"].prefix.lib, "girepository-1.0")
)
env.prepend_path(
"GI_TYPELIB_PATH",
join_path(spec["gobject-introspection"].prefix.lib, "girepository-1.0"),
)
20 changes: 19 additions & 1 deletion repos/spack_repo/builtin/packages/stat/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ class Stat(AutotoolsPackage):
tags = ["e4s"]

version("develop", branch="develop")
version(
"4.2.3",
sha256="cec7824e43d4c1f2cd24bdf074ef27b47d89ce9abda2b5bc37eed6396c4adf37",
url="https://github.com/LLNL/STAT/releases/download/v4.2.3/stat-4.2.3.tar.gz",
)
version(
"4.2.2",
sha256="e12b5d1d0be1e7e485b5a4baba901ce508102a63deb5d2c9ca045b63bf6463d6",
url="https://github.com/LLNL/STAT/releases/download/v4.2.2/stat-4.2.2.tar.gz",
)
version(
"4.2.1",
sha256="137529889ec5b5f9b9bae3a0864a385c5814e989d0074228dd3500e3e713801d",
Expand Down Expand Up @@ -63,8 +73,10 @@ class Stat(AutotoolsPackage):
# we depend on mpa@master for bug fixes since launchmon 1.0.2
depends_on("launchmon@1.2.0:")
depends_on("mrnet")
depends_on("python")
depends_on("python@:3.11")
depends_on("py-xdot@1.0", when="+gui")
depends_on("py-pygments", when="+gui")
depends_on("pango", when="+gui")
depends_on("swig")
depends_on("mpi", when="+examples")

Expand All @@ -86,6 +98,12 @@ def configure_args(self):
"--with-python=%s" % spec["python"].command.path,
"--with-boost=%s" % spec["boost"].prefix,
]
if self.spec.satisfies("@4.2.2:") and spec["glib"].satisfies("@2.0:2.99"):
args.append(
"STAT_GSETTINGS_SCHEMA_DIR=%s"
% spec["gtkplus"].prefix.join("share/glib-2.0/schemas")
)

if "+fgfs" in spec:
args.append("--with-fgfs=%s" % spec["fast-global-file-status"].prefix)
if "+dysect" in spec:
Expand Down
Loading