This commit is contained in:
cronekorkn 2022-12-30 14:58:30 +01:00
parent d558d682e3
commit afef2d18d6
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw
2 changed files with 64 additions and 0 deletions

40
bundles/rbenv/items.py Normal file
View file

@ -0,0 +1,40 @@
directories = {
'/opt/rbenv': {},
'/opt/rbenv/plugins': {
'needs': [
'git_deploy:/opt/rbenv',
],
},
'/opt/rbenv/plugins/ruby-build': {
'needs': [
'git_deploy:/opt/rbenv',
],
},
}
git_deploy = {
'/opt/rbenv': {
'repo': 'https://github.com/sstephenson/rbenv.git',
'rev': 'master',
},
'/opt/rbenv/plugins/ruby-build': {
'repo': 'https://github.com/sstephenson/ruby-build.git',
'rev': 'master',
'needs': [
'git_deploy:/opt/rbenv',
],
},
}
for version in node.metadata.get('rbenv'):
actions[f'install_ruby_{version}'] = {
'command': f'RBENV_ROOT=/opt/rbenv /opt/rbenv/bin/rbenv install {version}',
'unless': f'RBENV_ROOT=/opt/rbenv /opt/rbenv/bin/rbenv versions | cut -c 3- | cut -d" " -f1 | grep -q ^{version}$',
'needs': [
'git_deploy:/opt/rbenv',
'git_deploy:/opt/rbenv/plugins/ruby-build',
'pkg_apt:libyaml-dev',
],
}

24
bundles/rbenv/metadata.py Normal file
View file

@ -0,0 +1,24 @@
defaults = {
'apt': {
# https://github.com/rbenv/ruby-build/wiki#ubuntudebianmint
'packages': {
'autoconf': {},
'bison': {},
'patch': {},
'build-essential': {},
'rustc': {},
'libssl-dev': {},
'libyaml-dev': {},
'libreadline-dev': {},
'zlib1g-dev': {},
'libgmp-dev': {},
'libncurses5-dev': {},
'libffi-dev': {},
'libgdbm6': {},
'libgdbm-dev': {},
'libdb-dev': {},
'uuid-dev': {},
},
},
'rbenv': set(),
}