From 8a2ffdf6c52b2c59c5930b70ddbb72ceba0db562 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Pialasse Date: Fri, 13 Sep 2024 15:35:01 -0400 Subject: [PATCH] * Sun Sep 01 2024 Jean-Philippe Pialasse 1.6-1.sme - initial version for SME11 [SME: ] - build and require rpm for plugins and skins - TODO: allow custom server IMAP/SMTP - TODO: Install deps without symphony --- root/usr/bin/rcplugin_update.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/root/usr/bin/rcplugin_update.sh b/root/usr/bin/rcplugin_update.sh index cd39df3..97125e2 100755 --- a/root/usr/bin/rcplugin_update.sh +++ b/root/usr/bin/rcplugin_update.sh @@ -4,11 +4,11 @@ cd /usr/share/roundcubemail # composer seems to have issues to detect roundcubemail 1.6.6 version... so: # we could also get it from index.php header. export COMPOSER_ROOT_VERSION=`rpm -q roundcubemail --queryformat "%{VERSION}"` -COMPOSER_ALLOW_SUPERUSER=1 /usr/bin/php83 -d allow_url_fopen=1 /usr/bin/composer require johndoh/contextmenu --with-all-dependencies --no-interaction -COMPOSER_ALLOW_SUPERUSER=1 /usr/bin/php83 -d allow_url_fopen=1 /usr/bin/composer require johndoh/globaladdressbook ~2.1 --with-all-dependencies --no-interaction -COMPOSER_ALLOW_SUPERUSER=1 /usr/bin/php83 -d allow_url_fopen=1 /usr/bin/composer require roundcube/larry ~1.6.0 --with-all-dependencies --no-interaction -COMPOSER_ALLOW_SUPERUSER=1 /usr/bin/php83 -d allow_url_fopen=1 /usr/bin/composer require bennet0496/nextcloud_attachments --with-all-dependencies --no-interaction -COMPOSER_ALLOW_SUPERUSER=1 /usr/bin/php83 -d allow_url_fopen=1 /usr/bin/composer self-update --no-interaction +# all those are supported using rpm +#COMPOSER_ALLOW_SUPERUSER=1 /usr/bin/php83 -d allow_url_fopen=1 /usr/bin/composer require johndoh/contextmenu --with-all-dependencies --no-interaction +#COMPOSER_ALLOW_SUPERUSER=1 /usr/bin/php83 -d allow_url_fopen=1 /usr/bin/composer require johndoh/globaladdressbook ~2.1 --with-all-dependencies --no-interaction +#COMPOSER_ALLOW_SUPERUSER=1 /usr/bin/php83 -d allow_url_fopen=1 /usr/bin/composer require roundcube/larry ~1.6.0 --with-all-dependencies --no-interaction +#COMPOSER_ALLOW_SUPERUSER=1 /usr/bin/php83 -d allow_url_fopen=1 /usr/bin/composer require bennet0496/nextcloud_attachments --with-all-dependencies --no-interaction COMPOSER_ALLOW_SUPERUSER=1 /usr/bin/php83 -d allow_url_fopen=1 /usr/bin/composer update --with-all-dependencies --no-interaction cd $pathroundcube