From c8dae5e15d61a3a7b8c87a1a4c7c8ca2893755db Mon Sep 17 00:00:00 2001 From: Nathan Brei Date: Fri, 20 Sep 2024 19:08:51 -0400 Subject: [PATCH] JANA2: Add v2.3.2 (#668) ### Briefly, what does this PR introduce? ### What kind of change does this PR introduce? - [ ] Bug fix (issue #__) - [ ] New feature (issue #__) - [ ] Documentation update - [ ] Other: __ ### Please check if this PR fulfills the following: - [ ] Tests for the changes have been added - [ ] Documentation has been added / updated - [ ] Changes have been communicated to collaborators ### Does this PR introduce breaking changes? What changes might users need to make to their code? ### Does this PR change default behavior? --------- Co-authored-by: Wouter Deconinck --- packages/jana2/package.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/jana2/package.py b/packages/jana2/package.py index 78354cd..c39c18f 100644 --- a/packages/jana2/package.py +++ b/packages/jana2/package.py @@ -10,7 +10,7 @@ class Jana2(CMakePackage, CudaPackage): """Multi-threaded HENP Event Reconstruction.""" homepage = "https://jeffersonlab.github.io/JANA2/" - url = "https://github.com/JeffersonLab/JANA2/archive/ref/tags/v2.0.3.tar.gz" + url = "https://github.com/JeffersonLab/JANA2/archive/refs/tags/v2.0.3.tar.gz" list_url = "https://github.com/JeffersonLab/JANA2/tags" git = "https://github.com/JeffersonLab/JANA2.git" @@ -19,6 +19,7 @@ class Jana2(CMakePackage, CudaPackage): tags = ["eic"] version("master", branch="master") + version("2.3.2", sha256="26c5b521087cf526e9a498c9d1235531fdc28690f538221e422b79cc5fd0a87c") version("2.3.1", sha256="860e1f5019fbc9deed8768724e4d42956dc10ee55583852febde8dd7bf2b616e") version("2.3.0", sha256="7ebc914f1dafbd50d7296c92d67658b64f80e309e9812653413b525d84320b1d") version("2.2.1-rc1", sha256="7b65ce967d9c0690e22f4450733ead4acebf8fa510f792e0e4a6def14fb739b1")