New version for openCARP packages (#30931)

Co-authored-by: openCARP consortium <info@opencarp.org>
This commit is contained in:
Marie Houillon 2022-06-01 03:21:55 +02:00 committed by GitHub
parent 9ddf45964d
commit 5d685f9ff6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View File

@ -16,6 +16,7 @@ class Meshtool(MakefilePackage):
version('master', branch='master')
# Version to use with openCARP releases
version('oc10.0', commit='6c5cfbd067120901f15a04bf63beec409bda6dc9')
version('oc9.0', commit='6c5cfbd067120901f15a04bf63beec409bda6dc9')
version('oc8.2', commit='6c5cfbd067120901f15a04bf63beec409bda6dc9')
version('oc8.1', commit="6c5cfbd067120901f15a04bf63beec409bda6dc9")

View File

@ -18,7 +18,8 @@ class Opencarp(CMakePackage):
maintainers = ['MarieHouillon']
version('9.0', commit='c0167599', submodules=False, no_cache=True, preferred=True)
version('10.0', commit='7aec7900', submodules=False, no_cache=True, preferred=True)
version('9.0', commit='c0167599', submodules=False, no_cache=True)
version('8.2', commit='dbfd16fd', submodules=False, no_cache=True)
version('8.1', commit='28eb2e97', submodules=False, no_cache=True)
version('7.0', commit='78da9195', submodules=False, no_cache=True)
@ -42,7 +43,7 @@ class Opencarp(CMakePackage):
depends_on('py-carputils')
depends_on('meshtool')
# Use specific versions of carputils and meshtool for releases
for ver in ['9.0', '8.2', '7.0', '8.1']:
for ver in ['10.0', '9.0', '8.2', '7.0', '8.1']:
depends_on('py-carputils@oc' + ver, when='@' + ver + ' +carputils')
depends_on('meshtool@oc' + ver, when='@' + ver + ' +meshtool')

View File

@ -17,6 +17,7 @@ class PyCarputils(PythonPackage):
version('master', branch='master')
# Version to use with openCARP releases
version('oc10.0', commit='a02f9b846c6e852b7315b20e925d55c355f239b8')
version('oc9.0', commit='e79e66b25c7bfaf405fad595019594ab9aa83392')
version('oc8.2', commit='e60f639c0f39ad71c8ae11814de1f3aa726e8352')
version('oc8.1', commit='a4210fcb0fe17226a1744ee9629f85b629decba3')