Skip to content

Commit

Permalink
Merge pull request #314 from climbfuji/feature/cherry_pick_pflogger_d…
Browse files Browse the repository at this point in the history
…ep_fix

mapl: Fix pflogger dependency (cherry-picking spack#39683 from spack/develop)
  • Loading branch information
climbfuji authored Aug 29, 2023
2 parents 1a4db10 + 1a4893a commit 42ede2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions var/spack/repos/builtin/packages/mapl/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,9 @@ class Mapl(CMakePackage):

# pFlogger depends on yaFyaml in the same way. MAPL 2.22 and below uses old
# yaFyaml so we need to use old pFlogger, but MAPL 2.23+ uses new yaFyaml
depends_on("pflogger@:1.6", when="@:2.22+pflogger")
depends_on("[email protected]:", when="@2.23:2.39+pflogger")
depends_on("[email protected]:", when="@2.40:+pflogger")
depends_on("pflogger@:1.6 +mpi", when="@:2.22+pflogger")
depends_on("[email protected]: +mpi", when="@2.23:2.39+pflogger")
depends_on("[email protected]: +mpi", when="@2.40:+pflogger")

# fArgParse v1.4.1 is the first usable version with MAPL
# we now require 1.5.0 with MAPL 2.40+
Expand Down

0 comments on commit 42ede2d

Please sign in to comment.