From fa716cdc1b13b36b069748eb6f5e6bff17fc1974 Mon Sep 17 00:00:00 2001 From: Dmitriy Bogdanov Date: Wed, 19 Oct 2016 18:35:09 +0400 Subject: [PATCH] Update optdeps and post-install comment --- .SRCINFO | 2 ++ PKGBUILD | 2 ++ wallabag.install | 5 ++++- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.SRCINFO b/.SRCINFO index 8ced9bc..eafc0ac 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -13,6 +13,8 @@ pkgbase = wallabag optdepends = php-mysql: For MySQL storage optdepends = php-pgsql: For postgres storage optdepends = php-sqlite: For sqlite storage + optdepends = rabbitmq: For async import + optdepends = redis: For async import options = !strip backup = etc/webapps/wallabag/parameters.yml backup = usr/share/webapps/wallabag/parameters.yml diff --git a/PKGBUILD b/PKGBUILD index deca386..ce118c0 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -17,6 +17,8 @@ optdepends=( 'php-mysql: For MySQL storage' 'php-pgsql: For postgres storage' 'php-sqlite: For sqlite storage' + 'rabbitmq: For async import' + 'redis: For async import' ) install="$pkgname.install" options=(!strip) diff --git a/wallabag.install b/wallabag.install index bbb2880..1b342a2 100644 --- a/wallabag.install +++ b/wallabag.install @@ -10,7 +10,10 @@ post_install() { echo "php /usr/share/webapps/wallabag/bin/console wallabag:install --env=prod" echo "" echo -n "To setup your webserver and enable the needed php extensions, " - echo "plase read: http://doc.wallabag.org/en/master/user/installation.html" + echo "please read: http://doc.wallabag.org/en/master/user/installation.html" + echo "" + echo -n "If you upgraded from 2.0.x, you might need to check the upgrade guide: " + echo "http://doc.wallabag.org/en/master/user/upgrade-2.0.x-2.1.1.html" }