New version for openCARP packages, v9.0 (#29150)

Co-authored-by: openCARP consortium <info@opencarp.org>
This commit is contained in:
Marie Houillon 2022-03-04 11:31:18 +01:00 committed by GitHub
parent b7794cdac8
commit 258600eede
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 9 deletions

View file

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

View file

@ -18,7 +18,8 @@ class Opencarp(CMakePackage):
maintainers = ['MarieHouillon']
version('8.2', commit='dbfd16fd', submodules=False, no_cache=True, preferred=True)
version('9.0', commit='c0167599', submodules=False, no_cache=True, preferred=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)
version('master', branch='master', submodules=False, no_cache=True)
@ -34,14 +35,14 @@ class Opencarp(CMakePackage):
depends_on('binutils')
depends_on('gengetopt')
depends_on('pkgconfig')
depends_on('python@:3.8')
depends_on('python')
depends_on('zlib')
depends_on('perl')
depends_on('py-carputils')
depends_on('meshtool')
# Use specific versions of carputils and meshtool for releases
for ver in ['8.2', '7.0', '8.1']:
for ver in ['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

@ -14,20 +14,21 @@ class PyCarputils(PythonPackage):
version('master', branch='master')
# Version to use with openCARP releases
version('oc9.0', commit='e79e66b25c7bfaf405fad595019594ab9aa83392')
version('oc8.2', commit='e60f639c0f39ad71c8ae11814de1f3aa726e8352')
version('oc8.1', commit='a4210fcb0fe17226a1744ee9629f85b629decba3')
version('oc7.0', commit='4c04db61744f2fb7665594d7c810699c5c55c77c')
depends_on('git')
depends_on('python@:3.8', type=('build', 'run'))
depends_on('python', type=('build', 'run'))
depends_on('py-pip', type='build')
depends_on('py-numpy@1.14.5:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-python-dateutil', type='run')
depends_on('py-scipy@:1.5.4', type='run')
depends_on('py-matplotlib@:3.3.3', type='run')
depends_on('py-pandas@:1.1.4', type='run')
depends_on('py-tables@3.6.1', type='run')
depends_on('py-six@:1.14.0', type='run')
depends_on('py-scipy@1.5.0:', type='run')
depends_on('py-matplotlib@3.0.0:', type='run')
depends_on('py-pandas', type='run')
depends_on('py-tables@3.6.1:', type='run')
depends_on('py-six@1.12.0:', type='run')
depends_on('py-ruamel-yaml', type='run')