mirror of
https://github.com/YunoHost-Apps/kresus_ynh.git
synced 2024-09-03 19:36:10 +02:00
replace python-virtualenv by virtualenv
This commit is contained in:
parent
32ded35904
commit
0d2aee061a
5 changed files with 6 additions and 7 deletions
|
@ -15,7 +15,7 @@
|
||||||
"requirements": {
|
"requirements": {
|
||||||
"yunohost": ">= 3.5.0"
|
"yunohost": ">= 3.5.0"
|
||||||
},
|
},
|
||||||
"version": "0.13.3~ynh3",
|
"version": "0.13.3~ynh4",
|
||||||
"multi_instance": true,
|
"multi_instance": true,
|
||||||
"services": [
|
"services": [
|
||||||
"nginx"
|
"nginx"
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
pkg_dependencies="dh-autoreconf python-pip python-dev python-lxml python-imaging virtualenv"
|
||||||
|
|
||||||
# INFOS
|
# INFOS
|
||||||
# n (Node version management) utilise la variable PATH pour stocker le path de la version de node à utiliser.
|
# n (Node version management) utilise la variable PATH pour stocker le path de la version de node à utiliser.
|
||||||
# C'est ainsi qu'il change de version
|
# C'est ainsi qu'il change de version
|
||||||
|
|
|
@ -64,8 +64,7 @@ ynh_app_setting_set "$app" salt "$salt"
|
||||||
# INSTALL DEPENDENCIES
|
# INSTALL DEPENDENCIES
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
ynh_install_app_dependencies dh-autoreconf \
|
ynh_install_app_dependencies $pkg_dependencies
|
||||||
python-pip python-dev python-lxml python-imaging python-virtualenv
|
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
||||||
|
|
|
@ -71,8 +71,7 @@ chmod 600 "$final_path/config.ini"
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
# Define and install dependencies
|
# Define and install dependencies
|
||||||
ynh_install_app_dependencies dh-autoreconf \
|
ynh_install_app_dependencies $pkg_dependencies
|
||||||
python-pip python-dev python-lxml python-imaging python-virtualenv
|
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# INSTALL NODEJS
|
# INSTALL NODEJS
|
||||||
|
|
|
@ -71,8 +71,7 @@ path_url=$(ynh_normalize_url_path "$path_url")
|
||||||
# INSTALL DEPENDENCIES
|
# INSTALL DEPENDENCIES
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
ynh_install_app_dependencies dh-autoreconf \
|
ynh_install_app_dependencies $pkg_dependencies
|
||||||
python-pip python-dev python-lxml python-imaging python-virtualenv
|
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
||||||
|
|
Loading…
Add table
Reference in a new issue