From 6ee4f1e99541ac73c19f8c6fbd5dae928feadf0d Mon Sep 17 00:00:00 2001 From: ljf Date: Sat, 23 Dec 2017 00:13:19 +0100 Subject: [PATCH] [enh] Update upstream version to 0.63 --- conf/app.src | 4 ++-- manifest.json | 2 +- scripts/install | 2 +- scripts/restore | 2 +- scripts/upgrade | 3 +++ 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/conf/app.src b/conf/app.src index 1d83fba..e5619b3 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/wekan/wekan/releases/download/v0.62/wekan-0.62.tar.gz -SOURCE_SUM=b5da8106cc49e6615f665e9bd941b44fb5ee326414f68d44bf4756b139cfdfc6 +SOURCE_URL=https://github.com/wekan/wekan/releases/download/v0.63/wekan-0.63.tar.gz +SOURCE_SUM=5a582446859d2563bf7a5f6e7d7bc1e6d8c63a6021f0f2e024cab0ffea78c5aa SOURCE_SUM_PRG=sha256sum ARCH_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 9031f48..13fde08 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "name": "Wekan", "id": "wekan", "packaging_format": 1, - "version": "0.62-1", + "version": "0.63-1", "description": { "en": "Trello-like kanban", "fr": "Un kanban similaire à Trello" diff --git a/scripts/install b/scripts/install index 8455cd4..7fbb72c 100755 --- a/scripts/install +++ b/scripts/install @@ -48,7 +48,7 @@ ynh_app_setting_set $app port $port #================================================= # INSTALL DEPENDENCIES #================================================= -ynh_install_nodejs 4.8.4 +ynh_install_nodejs 4.8.7 # Install mongodb apt-key adv --fetch-keys https://www.mongodb.org/static/pgp/server-3.2.asc diff --git a/scripts/restore b/scripts/restore index 3198973..45c74c8 100644 --- a/scripts/restore +++ b/scripts/restore @@ -52,7 +52,7 @@ ynh_system_user_create $app "$final_path" #================================================= # INSTALL DEPENDENCIES #================================================= -ynh_install_nodejs 4.8.4 +ynh_install_nodejs 4.8.7 # Install mongodb apt-key adv --fetch-keys https://www.mongodb.org/static/pgp/server-3.2.asc diff --git a/scripts/upgrade b/scripts/upgrade index 7059792..116e7bb 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -55,6 +55,9 @@ if ynh_version_gt "0.54-3" "${version}" ; then apt-key del EA312927 apt-key adv --fetch-keys https://www.mongodb.org/static/pgp/server-3.2.asc fi +if ynh_version_gt "0.63-1" "${version}" ; then + ynh_install_nodejs 4.8.7 +fi #================================================= # STANDARD UPGRADE STEPS