Skip to content

Commit

Permalink
JCF: Issue #129: add run-time dependency on daq-cmake for its get_moo…
Browse files Browse the repository at this point in the history
…_model_path function where necessary
  • Loading branch information
John Freeman committed Aug 18, 2022
1 parent f13fb79 commit 913e3a6
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Appfwk(CMakePackage):
version("XVERSIONX", commit="XHASHX")


depends_on('daq-cmake', type='build')
depends_on('daq-cmake', type=('build', 'run'))
depends_on('logging')
depends_on('cetlib')
depends_on('ers')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Daqconf(CMakePackage):

version("XVERSIONX", commit="XHASHX")

depends_on("daq-cmake", type="build")
depends_on("daq-cmake", type=("build", "run"))
depends_on("py-moo", type='run')

# DBT_DEBUG is used by daq-cmake to set compiler options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Dfmodules(CMakePackage):
version("XVERSIONX", commit="XHASHX")


depends_on("daq-cmake", type="build")
depends_on("daq-cmake", type=("build", "run"))
depends_on("appfwk")
depends_on("logging")
depends_on("ers")
Expand Down
2 changes: 1 addition & 1 deletion spack-repos/release-repo-template/packages/dqm/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Dqm(CMakePackage):
version("XVERSIONX", commit="XHASHX")


depends_on("daq-cmake", type="build")
depends_on("daq-cmake", type=("build", "run"))
depends_on("daqdataformats")
depends_on("detdataformats")
depends_on("detchannelmaps")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Dtpctrllibs(CMakePackage):

version("XVERSIONX", commit="XHASHX")

depends_on("daq-cmake", type="build")
depends_on("daq-cmake", type=("build", "run"))
depends_on("appfwk")
depends_on("ers")
depends_on("logging")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Flxlibs(CMakePackage):
version("XVERSIONX", commit="XHASHX")


depends_on("daq-cmake", type="build")
depends_on("daq-cmake", type=("build", "run"))
depends_on("appfwk")
depends_on("logging")
depends_on("ers")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Lbrulibs(CMakePackage):
version("XVERSIONX", commit="XHASHX")


depends_on("daq-cmake", type="build")
depends_on("daq-cmake", type=("build", "run"))
depends_on("readoutlibs")
depends_on("ndreadoutlibs")
depends_on("ipm")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Listrev(CMakePackage):
version("XVERSIONX", commit="XHASHX")

depends_on("appfwk")
depends_on("daq-cmake", type="build")
depends_on("daq-cmake", type=("build", "run"))
depends_on("rcif")
depends_on("opmonlib")
depends_on("logging")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class Readoutmodules(CMakePackage):

version("XVERSIONX", commit="XHASHX")

depends_on("daq-cmake", type=("build", "run"))
depends_on("ers")
depends_on("appfwk")
depends_on("logging")
Expand All @@ -29,8 +30,6 @@ class Readoutmodules(CMakePackage):
depends_on("dfmessages")
depends_on('folly cxxstd=17')
depends_on("boost")

depends_on("daq-cmake", type="build")
depends_on("py-moo", type='run')

# DBT_DEBUG is used by daq-cmake to set compiler options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Timinglibs(CMakePackage):
version("XVERSIONX", commit="XHASHX")


depends_on("daq-cmake", type="build")
depends_on("daq-cmake", type=("build", "run"))
depends_on("ers")
depends_on("timing")
depends_on("dfmessages")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Trigger(CMakePackage):

version("XVERSIONX", commit="XHASHX")

depends_on("daq-cmake", type="build")
depends_on("daq-cmake", type=("build", "run"))
depends_on("ers")
depends_on('boost')
depends_on("serialization")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Wibmod(CMakePackage):
depends_on("cppzmq")
depends_on("protobuf")

depends_on("daq-cmake", type="build")
depends_on("daq-cmake", type=("build", "run"))
depends_on('py-moo', type='run')

# DBT_DEBUG is used by daq-cmake to set compiler options
Expand Down

0 comments on commit 913e3a6

Please sign in to comment.