summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/acts
diff options
context:
space:
mode:
authorWouter Deconinck <wdconinc@gmail.com>2023-02-06 14:37:51 -0600
committerGitHub <noreply@github.com>2023-02-06 12:37:51 -0800
commit3714d3443b3b7291657981d36b79503495476d47 (patch)
treeb59ff64d8549a5525ddbb725c465c815b25b0504 /var/spack/repos/builtin/packages/acts
parent42a452d54c8a25f9f415fef8cf9e3a5c64b7a46a (diff)
downloadspack-3714d3443b3b7291657981d36b79503495476d47.tar.gz
spack-3714d3443b3b7291657981d36b79503495476d47.tar.bz2
spack-3714d3443b3b7291657981d36b79503495476d47.tar.xz
spack-3714d3443b3b7291657981d36b79503495476d47.zip
acts: new versions 21.1.1, 22.0.1, 23.0.0 (#35227)
* acts: new versions 21.1.1, 22.0.1, 23.0.0 New versions: - [major 23.0.0](https://github.com/acts-project/acts/compare/v22.0.0...v23.0.0): - new option `ACTS_BUILD_PLUGIN_GEANT4` -> enabled with existing variant `geant4` - new option `ACTS_BUILD_EXAMPLES_BINARIES`: - it is my understanding that the binaries for examples are deprecated (in favor of python examples); warnings to this effect have been printed for a few versions, and now the building of binaries is disabled by default, - rather than introducing a variant to enable deprecated behavior for only one or two versions, I propose that we just follow the default and keep this disabled. - [bugfix 22.0.1](https://github.com/acts-project/acts/compare/v22.0.0...v22.0.1) (no build system changes) - [bugfix 21.1.1](https://github.com/acts-project/acts/compare/v21.1.0...v21.1.1) (no build system changes) * acts: correct 23.0.0 sha Co-authored-by: Hadrien G. <knights_of_ni@gmx.com>
Diffstat (limited to 'var/spack/repos/builtin/packages/acts')
-rw-r--r--var/spack/repos/builtin/packages/acts/package.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/acts/package.py b/var/spack/repos/builtin/packages/acts/package.py
index 8fd17e5835..6b0dcbb735 100644
--- a/var/spack/repos/builtin/packages/acts/package.py
+++ b/var/spack/repos/builtin/packages/acts/package.py
@@ -39,7 +39,10 @@ class Acts(CMakePackage, CudaPackage):
# Supported Acts versions
version("main", branch="main")
version("master", branch="main", deprecated=True) # For compatibility
+ version("23.0.0", commit="5af1b1b5feb8ca8f4c2c69106a1b9ef612c70d9c", submodules=True)
+ version("22.0.1", commit="a4ac99dd72828c5eb3fac06e146f3391958fca8c", submodules=True)
version("22.0.0", commit="0fb6f8d2ace65338915451201e9ceb6cee11fb5e", submodules=True)
+ version("21.1.1", commit="8ae825de246e8e574d05d9eaf05ba4a937c69aa9", submodules=True)
version("21.1.0", commit="3b4b5c741c8541491d496a36b917b00b344d52d1", submodules=True)
version("21.0.0", commit="d8cb0fac3a44e1d44595a481f977df9bd70195fb", submodules=True)
version("20.3.0", commit="b1859b322744cb033328fd57d9e74fb5326aa56b", submodules=True)
@@ -336,6 +339,7 @@ class Acts(CMakePackage, CudaPackage):
cmake_variant("FATRAS", "fatras"),
cmake_variant("FATRAS_GEANT4", "fatras_geant4"),
example_cmake_variant("GEANT4", "geant4"),
+ plugin_cmake_variant("GEANT4", "geant4"),
example_cmake_variant("HEPMC3", "hepmc3"),
plugin_cmake_variant("IDENTIFICATION", "identification"),
cmake_variant(integration_tests_label, "integration_tests"),