From 148e56a20f645eed971d6c45c3cfea8b3b0b1d68 Mon Sep 17 00:00:00 2001 From: Yunohost-Bot <> Date: Sun, 7 Aug 2022 20:24:41 +0200 Subject: [PATCH 1/6] =?UTF-8?q?[autopatch]=20Add=20Common=20Platform=C2=A0?= =?UTF-8?q?Enumeration=20id=20to=20`manifest.json`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manifest.json | 127 ++++++++++++++++++++++++++------------------------ 1 file changed, 65 insertions(+), 62 deletions(-) diff --git a/manifest.json b/manifest.json index 187388e..e0947ca 100644 --- a/manifest.json +++ b/manifest.json @@ -1,63 +1,66 @@ { - "name": "Kanboard", - "id": "kanboard", - "packaging_format": 1, - "description": { - "en": "Kanban project management software", - "fr": "Logiciel de gestion de projet Kanban" - }, - "version": "1.2.22~ynh1", - "url": "https://kanboard.net", - "upstream": { - "license": "MIT", - "website": "https://kanboard.net", - "demo": "https://demo.yunohost.org/kanboard/", - "admindoc": "https://docs.kanboard.org/en/latest/", - "code": "https://github.com/kanboard/kanboard" - }, - "license": "MIT", - "maintainer": { - "name": "", - "email": "" - }, - "requirements": { - "yunohost": ">= 4.3.0" - }, - "previous_maintainers": [{ - "name": "mbugeia", - "email": "maxime@max.privy.place" - }, - { - "name": "jibec", - "email": "jean-baptiste@holcroft.fr" - }], - "multi_instance": true, - "services": [ - "nginx", - "php8.0-fpm", - "mysql" - ], - "arguments": { - "install": [ - { - "name": "domain", - "type": "domain" - }, - { - "name": "path", - "type": "path", - "example": "/kanboard", - "default": "/kanboard" - }, - { - "name": "admin", - "type": "user" - }, - { - "name": "is_public", - "type": "boolean", - "default": false - } - ] - } -} + "name": "Kanboard", + "id": "kanboard", + "packaging_format": 1, + "description": { + "en": "Kanban project management software", + "fr": "Logiciel de gestion de projet Kanban" + }, + "version": "1.2.22~ynh1", + "url": "https://kanboard.net", + "upstream": { + "license": "MIT", + "website": "https://kanboard.net", + "demo": "https://demo.yunohost.org/kanboard/", + "admindoc": "https://docs.kanboard.org/en/latest/", + "code": "https://github.com/kanboard/kanboard", + "cpe": "cpe:2.3:a:kanboard:kanboard" + }, + "license": "MIT", + "maintainer": { + "name": "", + "email": "" + }, + "requirements": { + "yunohost": ">= 4.3.0" + }, + "previous_maintainers": [ + { + "name": "mbugeia", + "email": "maxime@max.privy.place" + }, + { + "name": "jibec", + "email": "jean-baptiste@holcroft.fr" + } + ], + "multi_instance": true, + "services": [ + "nginx", + "php8.0-fpm", + "mysql" + ], + "arguments": { + "install": [ + { + "name": "domain", + "type": "domain" + }, + { + "name": "path", + "type": "path", + "example": "/kanboard", + "default": "/kanboard" + }, + { + "name": "admin", + "type": "user" + }, + { + "name": "is_public", + "type": "boolean", + "default": false + } + ] + } +} \ No newline at end of file From 1533fc0cf8ccd3c0b1edbbcbea13a69868f3b721 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Mon, 15 Aug 2022 18:53:05 +0200 Subject: [PATCH 2/6] set relative path for --keep opt --- manifest.json | 2 +- scripts/upgrade | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index e0947ca..b0a5483 100644 --- a/manifest.json +++ b/manifest.json @@ -22,7 +22,7 @@ "email": "" }, "requirements": { - "yunohost": ">= 4.3.0" + "yunohost": ">= 11.0.9" }, "previous_maintainers": [ { diff --git a/scripts/upgrade b/scripts/upgrade index 9446ae1..160af58 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -91,7 +91,7 @@ then ynh_script_progression --message="Upgrading source files..." --weight=3 # Download, check integrity, uncompress and patch the source from app.src - ynh_setup_source --dest_dir="$final_path" --keep="$final_path/data $final_path/config.php" + ynh_setup_source --dest_dir="$final_path" --keep="data config.php" fi mkdir -p $final_path/sessions/ From d6e995ef5f66913d5649e0464291375ca855c4e9 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Mon, 15 Aug 2022 16:53:14 +0000 Subject: [PATCH 3/6] Auto-update README --- README.md | 1 + README_fr.md | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a45afa4..f564bf1 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ Kanboard is a free and open source Kanban project management software. **Shipped version:** 1.2.22~ynh1 + **Demo:** https://demo.yunohost.org/kanboard/ ## Screenshots diff --git a/README_fr.md b/README_fr.md index dbe147d..ecb7b40 100644 --- a/README_fr.md +++ b/README_fr.md @@ -25,7 +25,8 @@ Kanboard est un logiciel de gestion de projet Kanban gratuit et open source. - Auto-hébergé -**Version incluse :** 1.2.22~ynh1 +**Version incluse :** 1.2.22~ynh1 + **Démo :** https://demo.yunohost.org/kanboard/ From 8dbb9f742f15f0669aa7816255c66fd672cb8fc1 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Tue, 16 Aug 2022 07:59:02 +0200 Subject: [PATCH 4/6] Update remove --- scripts/remove | 8 -------- 1 file changed, 8 deletions(-) diff --git a/scripts/remove b/scripts/remove index 0ea5c65..d19cdf8 100644 --- a/scripts/remove +++ b/scripts/remove @@ -23,14 +23,6 @@ db_user=$db_name #================================================= # STANDARD REMOVE -#================================================= -# REMOVE DEPENDENCIES -#================================================= -ynh_script_progression --message="Removing dependencies..." --weight=9 - -# Remove metapackage and its dependencies -ynh_remove_app_dependencies - #================================================= # REMOVE THE MYSQL DATABASE #================================================= From 5e4479082f2ecdddbac15014897ca1c0ffab630e Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Tue, 16 Aug 2022 08:49:22 +0200 Subject: [PATCH 5/6] Update manifest.json --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index b0a5483..b0dc8bc 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Kanban project management software", "fr": "Logiciel de gestion de projet Kanban" }, - "version": "1.2.22~ynh1", + "version": "1.2.22~ynh2", "url": "https://kanboard.net", "upstream": { "license": "MIT", From 0c9c47ee01b360d80e0f7bc30a370cfc62274743 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Tue, 16 Aug 2022 06:49:29 +0000 Subject: [PATCH 6/6] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f564bf1..e71e8b0 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Kanboard is a free and open source Kanban project management software. - Super simple installation -**Shipped version:** 1.2.22~ynh1 +**Shipped version:** 1.2.22~ynh2 **Demo:** https://demo.yunohost.org/kanboard/ diff --git a/README_fr.md b/README_fr.md index ecb7b40..bd365c9 100644 --- a/README_fr.md +++ b/README_fr.md @@ -25,7 +25,7 @@ Kanboard est un logiciel de gestion de projet Kanban gratuit et open source. - Auto-hébergé -**Version incluse :** 1.2.22~ynh1 +**Version incluse :** 1.2.22~ynh2 **Démo :** https://demo.yunohost.org/kanboard/