1
0
Fork 0
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:
src386 2017-12-29 14:33:28 +01:00
parent e1198c1b28
commit a4c309081b
5 changed files with 10 additions and 4 deletions

View file

@ -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

View file

@ -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.

View file

@ -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"

View file

@ -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

View file

@ -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