Skip to content

Commit

Permalink
new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rlcee committed Feb 8, 2025
1 parent cb06403 commit d9e2e7d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/Offline/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class Offline(CMakePackage):
version("11.02.00", commit="83ca01342f4ad86c4452babbb8a7083412dcfa88")
version("11.01.00", commit="1560c76")
version("11.00.01", commit="67f7904d5")
version("10.36.00", commit="86ef8c73e1683532cec252bbfe6fa64815a9d4d3")

variant("g4", default=True, description="Whether to build Geant4-dependent packages")

Expand Down
1 change: 1 addition & 0 deletions packages/mu2e-trig-config/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class Mu2eTrigConfig(CMakePackage):
version(
"develop", branch="main", get_full_repo=True
) # spack-mpd expects develop version
version("v3_05_00", commit="fa2bba9d587c20a4506fd119634122a8990c11e4")
version("v3_03_01", commit="e2c8b4dc4f21ccd759d2ac1c21522e0ac54b1b75")
version("v3_03_00", commit="81759c02641607a4792235bca47c156f1e5b1d64")
version("v3_02_00", commit="667dc545953b59ed377c7e99bf9de87ce8b9da3c")
Expand Down
9 changes: 8 additions & 1 deletion packages/production/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,18 @@ class Production(Package):
maintainers = ["brownd1978","kutschke","rlcee"]

version("main", branch="main")
version("0.28.0", sha256="6c4d931e4d67e47447c543243f8615e7704fc3ef8cec10f04070ec7b95f25cec")
version("0.27.0", sha256="436b5aff72a50a11b19a56d5e60c739cc9afb48e1760498ec90bc417f409ade8")
version("0.26.0", sha256="030dc89ae7c79281cd75c88cfc3b7b2201e2f1da4fb90597e0690ada37d90ab4")
version("0.25.0", sha256="219498963a2241db613f58480dd22f678cca2ef1ae0840268906d5109bb4e1c9")
version("0.24.0", sha256="f2b39ce699c2a487304c276f3693d40969a920904e7a283add89fc274a512ef8")
version("0.23.0", sha256="746c5a967834f273ba7e8271db1728d3824bef83309945e6f8ac0e71a1a3b743")
version("0.22.0", sha256="a9917606f4d1b0980b8841982d480d9ec16afb3b676210cb57b5018b60d6b1c7")
version("0.21.0", sha256="e4330546549f3c18d286f2772d6e31e0bffb4b0e103708f323e5a8692dd1e124")


def url_for_version(self, version):
url = "https://github.com/Mu2e/Production/archive/refs/tags/v{:d}_{:d}_{:d}.tar.gz"
url = "https://github.com/Mu2e/Production/archive/refs/tags/v{:02d}_{:02d}_{:02d}.tar.gz"
aa = str(version.dotted).split('.')
return url.format(int(aa[0]),int(aa[1]),int(aa[2]))

Expand Down

0 comments on commit d9e2e7d

Please sign in to comment.