opencarp, meshtool, py-carputils: New openCARP version v16.0 (#45820)

Co-authored-by: openCARP consortium <info@opencarp.org>
This commit is contained in:
Marie Houillon 2024-09-28 14:20:49 +02:00 committed by GitHub
parent 849b82d242
commit 3bacced861
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 3 deletions

View File

@ -18,6 +18,7 @@ class Meshtool(MakefilePackage):
# Version to use with openCARP releases
# It is possible that different openCARP releases rely on the same
# meshtool version
version("oc16.0", commit="867431d6bde35ad41104f611aa57130ef58cfb79")
version("oc15.0", commit="867431d6bde35ad41104f611aa57130ef58cfb79")
version("oc13.0", commit="867431d6bde35ad41104f611aa57130ef58cfb79")
version("oc12.0", commit="867431d6bde35ad41104f611aa57130ef58cfb79")

View File

@ -19,12 +19,15 @@ class Opencarp(CMakePackage):
maintainers("MarieHouillon")
version(
"15.0",
commit="2271a3cccd7137f1e28c043c10adbd80480f1462",
"16.0",
commit="295055b6a3859709730f62fc8d4fe0e87c4e20b9",
submodules=False,
no_cache=True,
preferred=True,
)
version(
"15.0", commit="2271a3cccd7137f1e28c043c10adbd80480f1462", submodules=False, no_cache=True
)
version(
"13.0", commit="e1e0deca7eddcfd210835f54430361c85a97a5a4", submodules=False, no_cache=True
)
@ -72,7 +75,7 @@ class Opencarp(CMakePackage):
depends_on("py-carputils", when="+carputils", type=("build", "run"))
depends_on("meshtool", when="+meshtool", type=("build", "run"))
# Use specific versions of carputils and meshtool for releases
for ver in ["15.0", "13.0", "12.0", "11.0", "10.0", "9.0", "8.2", "8.1", "7.0"]:
for ver in ["16.0", "15.0", "13.0", "12.0", "11.0", "10.0", "9.0", "8.2", "8.1", "7.0"]:
depends_on("py-carputils@oc" + ver, when="@" + ver + " +carputils")
depends_on("meshtool@oc" + ver, when="@" + ver + " +meshtool")

View File

@ -19,6 +19,7 @@ class PyCarputils(PythonPackage):
version("master", branch="master")
# Version to use with openCARP releases
version("oc16.0", commit="c40783d884de5ad8ae1b5102b68013b28e14cbe4")
version("oc15.0", commit="50e2580b3f75711388eb55982a9b43871c3201f3")
version("oc13.0", commit="216c3802c2ac2d14c739164dcd57f2e59aa2ede3")
version("oc12.0", commit="4d7a1f0c604a2ad232e70cf9aa3a8daff5ffb195")