mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
update to movim 0.13
This commit is contained in:
parent
e1198c1b28
commit
a4c309081b
5 changed files with 10 additions and 4 deletions
|
@ -1,5 +1,9 @@
|
||||||
**Changelog**
|
**Changelog**
|
||||||
|
|
||||||
|
3.0.2 2017-12-29
|
||||||
|
- Update to movim 0.13
|
||||||
|
- Added php5-zmq
|
||||||
|
|
||||||
3.0.1 2017-11-02
|
3.0.1 2017-11-02
|
||||||
- Backup to fixed movim release due to issues
|
- Backup to fixed movim release due to issues
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ Movim is a decentralized social network, written in PHP and HTML5 and based on t
|
||||||
|
|
||||||
It is recommended to use a "valid" certificate to use Movim, auto-signed is sometimes problematic. You might want to take a look a StartSSL or Let's Encrypt.
|
It is recommended to use a "valid" certificate to use Movim, auto-signed is sometimes problematic. You might want to take a look a StartSSL or Let's Encrypt.
|
||||||
|
|
||||||
Provided Movim version: 0.12
|
Provided Movim version: 0.13
|
||||||
|
|
||||||
Please read CHANGELOG.
|
Please read CHANGELOG.
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,7 @@
|
||||||
GIT_REPO="https://github.com/movim/movim"
|
GIT_REPO="https://github.com/movim/movim"
|
||||||
|
|
||||||
# Commit to checkout
|
# Commit to checkout
|
||||||
#HEAD_COMMIT="b7347ca7f1e95192a89fb4d922603b8daf4f8e5a"
|
HEAD_COMMIT="ee249f1e37b548c71b9a339dd358fbd2136e3291"
|
||||||
HEAD_COMMIT="2308629fda0fa1d04b19420a60efcf9e27f8c7b4"
|
|
||||||
|
|
||||||
# Source code destination directory
|
# Source code destination directory
|
||||||
DESTDIR="/var/www/movim"
|
DESTDIR="/var/www/movim"
|
||||||
|
|
|
@ -65,7 +65,7 @@ db_name=movim
|
||||||
ynh_mysql_create_db "$db_name" "$db_user" "$db_pwd"
|
ynh_mysql_create_db "$db_name" "$db_user" "$db_pwd"
|
||||||
|
|
||||||
# Install packages
|
# Install packages
|
||||||
ynh_package_install php5-gd php5-curl php5-imagick php5-cli
|
ynh_package_install php5-gd php5-curl php5-imagick php5-cli php5-zmq
|
||||||
|
|
||||||
# Download Movim source code
|
# Download Movim source code
|
||||||
tmp_path=/tmp/movim-git
|
tmp_path=/tmp/movim-git
|
||||||
|
|
|
@ -29,6 +29,9 @@ timezone=`cat /etc/timezone`
|
||||||
|| ynh_die "Could not detect timezone, please check /etc/timezone." \
|
|| ynh_die "Could not detect timezone, please check /etc/timezone." \
|
||||||
&& echo "Detected timezone: $timezone"
|
&& echo "Detected timezone: $timezone"
|
||||||
|
|
||||||
|
# Since Movim 0.13, zmq is required
|
||||||
|
ynh_package_install php5-zmq
|
||||||
|
|
||||||
# Init git repository as needed
|
# Init git repository as needed
|
||||||
if [ ! -d "${DESTDIR}/.git" ]; then
|
if [ ! -d "${DESTDIR}/.git" ]; then
|
||||||
tmp_path=/tmp/movim-git
|
tmp_path=/tmp/movim-git
|
||||||
|
|
Loading…
Add table
Reference in a new issue