From 7bede49d0ab3d941cd8a2909a9e018b6e9ded3c6 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 21 Jul 2019 16:10:38 +0200 Subject: [PATCH 1/3] Use latest Cachet --- README.md | 2 +- conf/app.src | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0264937..d9de52a 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This is a [Cachet](https://cachethq.io/) package for YunoHost. --- -**Shipped version:** 2.3.15 +**Shipped version:** 2.3.18 [Cachet](https://cachethq.io/) is a free, open source status page for your API, service or company. Built with all of the features that you'd expect from a status page, Cachet comes with a powerful API, a metric system, multiple user support, two factor authentication for added security and is easy to get setup. A powerful, self-hosted alternative to StatusPage.io and Status.io. diff --git a/conf/app.src b/conf/app.src index 636659d..5ebf29c 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,6 +1,6 @@ -SOURCE_URL=https://github.com/CachetHQ/Cachet/archive/v2.3.15.tar.gz -SOURCE_SUM=8e7ebbdbbc101403c47a286de796b648149ab362d71f16bdf7dba8f0416fd720 +SOURCE_URL=https://github.com/CachetHQ/Cachet/archive/v2.3.18.tar.gz +SOURCE_SUM=ba74a1f83a0d4f800d02584de285bfabe28b4c5e2408b23af30a2dee9d65174d SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true -SOURCE_FILENAME= \ No newline at end of file +SOURCE_FILENAME= From dbbe767069000a1722046f09461ec5c3f84f18a5 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 21 Jul 2019 16:10:59 +0200 Subject: [PATCH 2/3] Fix typo in error message --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 63f2cc1..f3f8f94 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -36,7 +36,7 @@ init_composer() { # update dependencies to create composer.lock exec_composer "$destdir" install --no-dev \ - || ynh_die "Unable to update Roundcube core dependencies" + || ynh_die "Unable to update Cachet core dependencies" } # Execute a command with occ From 0c4d42c754550b46f730b1bd0739472ee69aaffc Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 21 Jul 2019 16:29:17 +0200 Subject: [PATCH 3/3] Add missing dependency --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index f3f8f94..24a7fee 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -5,7 +5,7 @@ # ============================================================================= # Package dependencies -pkg_dependencies="php5-gd php5-mcrypt" +pkg_dependencies="php5-gd php5-mcrypt php-mbstring" # ============================================================================= # COMMON CACHET FUNCTIONS