1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/rocketchat_ynh.git synced 2024-09-03 20:16:25 +02:00

Merge pull request #166 from YunoHost-Apps/testing

Testing
This commit is contained in:
Éric Gaspar 2023-02-16 10:26:12 +01:00 committed by GitHub
commit 8c5ad8d9b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 7 deletions

View file

@ -6,6 +6,7 @@ It shall NOT be edited by hand.
# Rocket.Chat for YunoHost
[![Integration level](https://dash.yunohost.org/integration/rocketchat.svg)](https://dash.yunohost.org/appci/app/rocketchat) ![Working status](https://ci-apps.yunohost.org/ci/badges/rocketchat.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/rocketchat.maintain.svg)
[![Install Rocket.Chat with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=rocketchat)
*[Lire ce readme en français.](./README_fr.md)*
@ -26,7 +27,7 @@ Rocket.Chat is an open-source fully customizable communications platform develop
- Mobile Apps for [iOS](https://apps.apple.com/app/rocket-chat/id1148741252) and [Android](https://play.google.com/store/apps/details?id=chat.rocket.android)
- Desktop Apps for [macOS](https://apps.apple.com/br/app/rocket-chat/id1086818840), [Linux](https://snapcraft.io/rocketchat-desktop) and [Windows](https://releases.rocket.chat/desktop/latest/download)
**Shipped version:** 5.4.2~ynh1
**Shipped version:** 5.4.3~ynh1
**Demo:** https://cloud.rocket.chat/trial

View file

@ -6,6 +6,7 @@ It shall NOT be edited by hand.
# Rocket.Chat pour YunoHost
[![Niveau dintégration](https://dash.yunohost.org/integration/rocketchat.svg)](https://dash.yunohost.org/appci/app/rocketchat) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/rocketchat.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/rocketchat.maintain.svg)
[![Installer Rocket.Chat avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=rocketchat)
*[Read this readme in english.](./README.md)*
@ -26,7 +27,7 @@ Rocket.Chat est une plate-forme de communication open source entièrement person
- Applications mobiles pour [iOS](https://apps.apple.com/app/rocket-chat/id1148741252) et [Android](https://play.google.com/store/apps/details?id=chat.rocket.android)
- Applications de bureau pour [macOS](https://apps.apple.com/br/app/rocket-chat/id1086818840), [Linux](https://snapcraft.io/rocketchat-desktop) et [Windows](https://releases.rocket.chat/desktop/latest/download)
**Version incluse :** 5.4.2~ynh1
**Version incluse :** 5.4.3~ynh1
**Démo :** https://cloud.rocket.chat/trial

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://releases.rocket.chat/5.4.2/download
SOURCE_SUM=438ec6b3e0ed2ff0b83b389ba2fd6f552388117095ecf2cdaef31c1818b710cc
SOURCE_URL=https://releases.rocket.chat/5.4.3/download
SOURCE_SUM=f8b774f35bde97c601c4061e90747cb4a724646f5865e8074064ab24b9c68d0b
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.gz
SOURCE_IN_SUBDIR=true

View file

@ -6,7 +6,7 @@
"en": "Team collaboration communication platform",
"fr": "Plateforme de communication collaborative en équipe"
},
"version": "5.4.2~ynh1",
"version": "5.4.3~ynh1",
"url": "https://rocket.chat",
"upstream": {
"license": "GPL-3.0",
@ -22,7 +22,7 @@
"email": ""
},
"requirements": {
"yunohost": ">> 11.0.9"
"yunohost": ">= 11.1.7"
},
"multi_instance": true,
"services": [

View file

@ -39,7 +39,7 @@ email=$(ynh_user_get_info --username=$admin --key=mail)
ynh_script_progression --message="Validating installation parameters..." --weight=1
# Check machine architecture (in particular, we don't support ARM and 32bit machines)
if [ $YNH_ARCH == "i386" ] || [ $YNH_ARCH == "armel" ] || [ $YNH_ARCH == "armhf" ]
if [ $YNH_ARCH == "i386" ] || [ $YNH_ARCH == "armel" ] || [ $YNH_ARCH == "armhf" ] || [ $YNH_ARCH == "arm64" ]
then
ynh_die --message="Sorry, but this app can only be installed on a x86, 64 bits machine :("
fi