1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pgadmin_ynh.git synced 2024-09-03 19:56:38 +02:00
pgadmin_ynh/scripts/_common.sh
2024-01-31 14:52:39 +01:00

34 lines
1.2 KiB
Bash

#!/usr/bin/env bash
#=================================================
# SET ALL CONSTANTS
#=================================================
python_version="$(python3 -V | cut -d' ' -f2 | cut -d. -f1-2)"
#=================================================
# DEFINE ALL COMMON FONCTIONS
#=================================================
ynh_install_venv() {
if [ -f "$install_dir/venv/bin/python" ]; then
ynh_exec_as "$app" python3 -m venv "$install_dir/venv" --upgrade
else
ynh_exec_as "$app" python3 -m venv "$install_dir/venv"
fi
ynh_use_venv
ynh_exec_as "$app" "$venvpy" -m pip install --upgrade --no-cache-dir pip wheel
}
ynh_use_venv() {
venvpy="$install_dir/venv/bin/python3"
}
_install_pgadmin_pip() {
# ynh_exec_as "$app" "$venvpy" -m pip install --upgrade --no-cache-dir --ignore-installed "psycopg[c]"
# cp "$YNH_APP_BASEDIR/conf/requirement_$(lsb_release --codename --short).txt" "$install_dir/requirements.txt"
# cp "$YNH_APP_BASEDIR/conf/requirements_orig.txt" "$install_dir/requirements.txt"
# ynh_exec_as "$app" "$venvpy" -m pip install --upgrade -r "$install_dir/requirements.txt"
ynh_exec_as "$app" "$venvpy" -m pip install --upgrade "pgadmin4==7.7"
}