2019-03-19 23:33:34 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Need also the helper https://github.com/YunoHost-Apps/Experimental_helpers/blob/master/ynh_handle_getopts_args/ynh_handle_getopts_args
|
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
rbenv_version=1.1.2
|
|
|
|
rbenv_rubybuild_version=20201225
|
|
|
|
rbenv_aliases_version=1.1.0
|
2019-03-19 23:33:34 +01:00
|
|
|
rbenv_install_dir="/opt/rbenv"
|
|
|
|
# RBENV_ROOT is the directory of rbenv, it needs to be loaded as a environment variable.
|
|
|
|
export RBENV_ROOT="$rbenv_install_dir"
|
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
# Install Ruby Version Management
|
2019-03-19 23:33:34 +01:00
|
|
|
#
|
|
|
|
# [internal]
|
|
|
|
#
|
|
|
|
# usage: ynh_install_rbenv
|
|
|
|
ynh_install_rbenv () {
|
2021-02-24 06:35:45 +01:00
|
|
|
ynh_print_info --message="Installation of rbenv - Ruby Version Management - rbenv-${rbenv_version}/ruby-build-${rbenv_rubybuild_version}"
|
|
|
|
|
2019-03-19 23:33:34 +01:00
|
|
|
# Build an app.src for rbenv
|
|
|
|
mkdir -p "../conf"
|
2021-02-24 06:35:45 +01:00
|
|
|
echo "SOURCE_URL=https://github.com/rbenv/rbenv/archive/v${rbenv_version}.tar.gz
|
2019-10-07 22:54:13 +02:00
|
|
|
SOURCE_SUM=80ad89ffe04c0b481503bd375f05c212bbc7d44ef5f5e649e0acdf25eba86736" > "../conf/rbenv.src"
|
2019-03-19 23:33:34 +01:00
|
|
|
# Download and extract rbenv
|
2021-02-24 06:35:45 +01:00
|
|
|
ynh_setup_source --dest_dir="$rbenv_install_dir" --source_id=rbenv
|
2019-03-19 23:33:34 +01:00
|
|
|
|
|
|
|
# Build an app.src for ruby-build
|
|
|
|
mkdir -p "../conf"
|
2021-02-24 06:35:45 +01:00
|
|
|
echo "SOURCE_URL=https://github.com/rbenv/ruby-build/archive/v${rbenv_rubybuild_version}.tar.gz
|
2021-01-07 20:33:33 +01:00
|
|
|
SOURCE_SUM=54cae123c2758e7714c66aca7ef8bc7f29cda8583891191ceb3053c6d098ecf1" > "../conf/ruby-build.src"
|
2019-03-19 23:33:34 +01:00
|
|
|
# Download and extract ruby-build
|
2021-02-24 06:35:45 +01:00
|
|
|
ynh_setup_source --dest_dir="$rbenv_install_dir/plugins/ruby-build" --source_id=ruby-build
|
|
|
|
|
|
|
|
# Build an app.src for ruby-build
|
|
|
|
mkdir -p "../conf"
|
|
|
|
echo "SOURCE_URL=https://github.com/tpope/rbenv-aliases/archive/v${rbenv_aliases_version}.tar.gz
|
|
|
|
SOURCE_SUM=12e89bc4499e85d8babac2b02bc8b66ceb0aa3f8047b26728a3eca8a6030273d" > "../conf/rbenv-aliases.src"
|
|
|
|
# Download and extract ruby-build
|
|
|
|
ynh_setup_source --dest_dir="$rbenv_install_dir/plugins/rbenv-aliases" --source_id=rbenv-aliases
|
2019-03-19 23:33:34 +01:00
|
|
|
|
|
|
|
(cd $rbenv_install_dir
|
|
|
|
./src/configure && make -C src)
|
|
|
|
|
|
|
|
# Create shims directory if needed
|
|
|
|
if [ ! -d $rbenv_install_dir/shims ] ; then
|
|
|
|
mkdir $rbenv_install_dir/shims
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
# Install a specific version of Ruby
|
2019-03-19 23:33:34 +01:00
|
|
|
#
|
2021-02-24 06:35:45 +01:00
|
|
|
# ynh_install_ruby will install the version of Ruby provided as argument by using rbenv.
|
2019-03-19 23:33:34 +01:00
|
|
|
#
|
2021-02-24 06:35:45 +01:00
|
|
|
# rbenv (Ruby Version Management) stores the target Ruby version in a .ruby_version file created in the target folder (using rbenv local <version>)
|
|
|
|
# It then uses that information for every Ruby user that uses rbenv provided Ruby command
|
2019-03-19 23:33:34 +01:00
|
|
|
#
|
|
|
|
# This helper creates a /etc/profile.d/rbenv.sh that configures PATH environment for rbenv
|
|
|
|
# for every LOGIN user, hence your user must have a defined shell (as opposed to /usr/sbin/nologin)
|
|
|
|
#
|
|
|
|
# Don't forget to execute ruby-dependent command in a login environment
|
|
|
|
# (e.g. sudo --login option)
|
|
|
|
# When not possible (e.g. in systemd service definition), please use direct path
|
|
|
|
# to rbenv shims (e.g. $RBENV_ROOT/shims/bundle)
|
|
|
|
#
|
2021-02-24 06:35:45 +01:00
|
|
|
# usage: ynh_install_ruby --ruby_version=ruby_version
|
2019-03-19 23:33:34 +01:00
|
|
|
# | arg: -v, --ruby_version= - Version of ruby to install.
|
|
|
|
ynh_install_ruby () {
|
|
|
|
# Declare an array to define the options of this helper.
|
|
|
|
declare -Ar args_array=( [v]=ruby_version= )
|
|
|
|
local ruby_version
|
|
|
|
# Manage arguments with getopts
|
|
|
|
ynh_handle_getopts_args "$@"
|
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
# Store ruby_version into the config of this app
|
|
|
|
ynh_app_setting_set --app=$YNH_APP_INSTANCE_NAME --key=ruby_version --value=$ruby_version
|
|
|
|
|
|
|
|
# Create $rbenv_install_dir if doesn't exist already
|
2019-03-19 23:33:34 +01:00
|
|
|
mkdir -p "$rbenv_install_dir/plugins/ruby-build"
|
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
# Create the file if doesn't exist already
|
|
|
|
touch "$rbenv_install_dir/ynh_app_version"
|
|
|
|
|
2019-03-19 23:33:34 +01:00
|
|
|
# Load rbenv path in PATH
|
|
|
|
CLEAR_PATH="$rbenv_install_dir/bin:$PATH"
|
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
# Remove /usr/local/bin in PATH in case of Ruby prior installation
|
2019-03-19 23:33:34 +01:00
|
|
|
PATH=$(echo $CLEAR_PATH | sed 's@/usr/local/bin:@@')
|
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
# Move an existing Ruby binary, to avoid to block rbenv
|
2019-03-19 23:33:34 +01:00
|
|
|
test -x /usr/bin/ruby && mv /usr/bin/ruby /usr/bin/ruby_rbenv
|
|
|
|
|
|
|
|
# If rbenv is not previously setup, install it
|
|
|
|
if ! type rbenv > /dev/null 2>&1
|
2019-10-10 20:44:36 +02:00
|
|
|
then
|
|
|
|
ynh_install_rbenv
|
2021-02-24 06:35:45 +01:00
|
|
|
elif dpkg --compare-versions "$($rbenv_install_dir/bin/rbenv --version | cut -d" " -f2)" lt ${rbenv_version}
|
2020-05-30 00:20:28 +02:00
|
|
|
then
|
|
|
|
ynh_install_rbenv
|
2021-02-24 06:35:45 +01:00
|
|
|
elif dpkg --compare-versions "$($rbenv_install_dir/plugins/ruby-build/bin/ruby-build --version | cut -d" " -f2)" lt ${rbenv_rubybuild_version}
|
2019-03-19 23:33:34 +01:00
|
|
|
then
|
|
|
|
ynh_install_rbenv
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Restore /usr/local/bin in PATH (if needed)
|
|
|
|
PATH=$CLEAR_PATH
|
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
# And replace the old Ruby binary
|
2019-03-19 23:33:34 +01:00
|
|
|
test -x /usr/bin/ruby_rbenv && mv /usr/bin/ruby_rbenv /usr/bin/ruby
|
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
# Install the requested version of Ruby
|
|
|
|
ynh_print_info --message="Installation of Ruby-"$ruby_version
|
2020-05-30 00:20:28 +02:00
|
|
|
CONFIGURE_OPTS="--disable-install-doc --with-jemalloc" MAKE_OPTS="-j2" rbenv install --skip-existing $ruby_version
|
2019-03-19 23:33:34 +01:00
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
# Do not add twice the same line
|
|
|
|
if ! grep --quiet "$YNH_APP_INSTANCE_NAME:$ruby_version" "$rbenv_install_dir/ynh_app_version"
|
|
|
|
then
|
2019-03-19 23:33:34 +01:00
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
# Remove previous version
|
|
|
|
if grep --quiet "$YNH_APP_INSTANCE_NAME:" "$rbenv_install_dir/ynh_app_version"
|
|
|
|
then
|
|
|
|
rbenv alias $YNH_APP_INSTANCE_NAME --remove
|
|
|
|
sed --in-place "/$YNH_APP_INSTANCE_NAME:/d" "$rbenv_install_dir/ynh_app_version"
|
|
|
|
fi
|
2019-03-19 23:33:34 +01:00
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
# Store the ID of this app and the version of Ruby requested for it
|
|
|
|
echo "$YNH_APP_INSTANCE_NAME:$ruby_version" | tee --append "$rbenv_install_dir/ynh_app_version"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove no more needed Ruby version
|
|
|
|
installed_ruby_version=$(rbenv versions --bare --skip-aliases | grep -Ev '/')
|
|
|
|
for installed_version in $installed_ruby_version
|
|
|
|
do
|
|
|
|
if ! grep --quiet "$installed_version" "$rbenv_install_dir/ynh_app_version"
|
|
|
|
then
|
|
|
|
ynh_print_info --message="Removing of ruby-"$installed_version
|
|
|
|
$rbenv_install_dir/bin/rbenv uninstall --force $installed_version
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# Set environment for Ruby users
|
2019-03-19 23:33:34 +01:00
|
|
|
echo "#rbenv
|
|
|
|
export RBENV_ROOT=$rbenv_install_dir
|
|
|
|
export PATH=\"$rbenv_install_dir/bin:$PATH\"
|
|
|
|
eval \"\$(rbenv init -)\"
|
|
|
|
#rbenv" > /etc/profile.d/rbenv.sh
|
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
# Load the environment
|
2019-03-19 23:33:34 +01:00
|
|
|
eval "$(rbenv init -)"
|
|
|
|
|
|
|
|
(cd $final_path
|
|
|
|
rbenv local $ruby_version)
|
2021-02-24 06:35:45 +01:00
|
|
|
|
|
|
|
rbenv alias $YNH_APP_INSTANCE_NAME $ruby_version
|
2019-03-19 23:33:34 +01:00
|
|
|
}
|
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
# Remove the version of Ruby used by the app.
|
2019-03-19 23:33:34 +01:00
|
|
|
#
|
2021-02-24 06:35:45 +01:00
|
|
|
# This helper will check if another app uses the same version of Ruby,
|
|
|
|
# if not, this version of Ruby will be removed.
|
|
|
|
# If no other app uses Ruby, rbenv will be also removed.
|
2019-03-19 23:33:34 +01:00
|
|
|
#
|
|
|
|
# usage: ynh_remove_ruby
|
|
|
|
ynh_remove_ruby () {
|
2021-02-24 06:35:45 +01:00
|
|
|
local ruby_version=$(ynh_app_setting_get --app=$YNH_APP_INSTANCE_NAME --key=ruby_version)
|
|
|
|
|
|
|
|
# Load rbenv path in PATH
|
|
|
|
CLEAR_PATH="$rbenv_install_dir/bin:$PATH"
|
|
|
|
|
|
|
|
# Remove /usr/local/bin in PATH in case of Ruby prior installation
|
|
|
|
PATH=$(echo $CLEAR_PATH | sed 's@/usr/local/bin:@@')
|
|
|
|
|
|
|
|
rbenv alias $YNH_APP_INSTANCE_NAME --remove
|
2019-03-19 23:33:34 +01:00
|
|
|
|
|
|
|
# Remove the line for this app
|
2021-02-24 06:35:45 +01:00
|
|
|
sed --in-place "/$YNH_APP_INSTANCE_NAME:$ruby_version/d" "$rbenv_install_dir/ynh_app_version"
|
2019-03-19 23:33:34 +01:00
|
|
|
|
2021-02-24 06:35:45 +01:00
|
|
|
# If no other app uses this version of Ruby, remove it.
|
2019-03-19 23:33:34 +01:00
|
|
|
if ! grep --quiet "$ruby_version" "$rbenv_install_dir/ynh_app_version"
|
|
|
|
then
|
2021-02-24 06:35:45 +01:00
|
|
|
ynh_print_info --message="Removing of Ruby-"$ruby_version
|
2019-03-19 23:33:34 +01:00
|
|
|
$rbenv_install_dir/bin/rbenv uninstall --force $ruby_version
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If no other app uses rbenv, remove rbenv and dedicated group
|
|
|
|
if [ ! -s "$rbenv_install_dir/ynh_app_version" ]
|
|
|
|
then
|
2021-02-24 06:35:45 +01:00
|
|
|
ynh_print_info --message="Removing of rbenv"
|
|
|
|
ynh_secure_remove --file="$rbenv_install_dir"
|
|
|
|
# Remove rbenv environment configuration
|
|
|
|
rm /etc/profile.d/rbenv.sh
|
2019-03-19 23:33:34 +01:00
|
|
|
fi
|
|
|
|
}
|