rbenv
This commit is contained in:
parent
d558d682e3
commit
afef2d18d6
2 changed files with 64 additions and 0 deletions
40
bundles/rbenv/items.py
Normal file
40
bundles/rbenv/items.py
Normal 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
24
bundles/rbenv/metadata.py
Normal 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(),
|
||||
}
|
Loading…
Reference in a new issue