From f10ef251efd282075006b45e6e2fc8ca9473702d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Str=C3=B6mkvist?= Date: Tue, 1 Oct 2019 00:19:09 +0200 Subject: [PATCH] Upgrade to v0.10.6 Add php-intl dependency --- README.md | 2 +- conf/app.src | 4 +-- manifest.json | 86 ++++++++++++++++++++++------------------------ scripts/_common.sh | 2 +- 4 files changed, 46 insertions(+), 48 deletions(-) diff --git a/README.md b/README.md index fc123a8f..0a302f14 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to ## Overview The federated image sharing service Pixelfed, for YunoHost -**Shipped version:** 0.10.0 +**Shipped version:** 0.10.6 ## Important points to read before installing diff --git a/conf/app.src b/conf/app.src index 81811532..f7254668 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/pixelfed/pixelfed/archive/v0.10.0.tar.gz -SOURCE_SUM=213c896e30f8df2ad5b8ea0cfb8f3904d0ba0d97a37e6a2c242d454e74c00f8f +SOURCE_URL=https://github.com/pixelfed/pixelfed/archive/v0.10.6.tar.gz +SOURCE_SUM=74d6f93ffdfb7d55d9282ab91bef906297801deda5b1924d140cb582e169cc13 OURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 5324525d..2c6a096c 100644 --- a/manifest.json +++ b/manifest.json @@ -1,48 +1,46 @@ { - "name": "Pixelfed", - "id": "pixelfed", - "packaging_format": 1, - "description": { - "en": "ActivityPub Federated Image Sharing", - "fr": "Logiciel de partage d'image fédéré via ActivityPub" + "name": "Pixelfed", + "id": "pixelfed", + "packaging_format": 1, + "description": { + "en": "ActivityPub Federated Image Sharing", + "fr": "Logiciel de partage d'image fédéré via ActivityPub" + }, + "version": "0.10.6~ynh1", + "url": "https://pixelfed.org/", + "license": "AGPL-3.0-or-later", + "maintainer": [ + { + "name": "Jean-Baptiste Holcroft", + "email": "jean-baptiste@holcroft.fr" }, - "version": "0.10.0~ynh1", - "url": "https://pixelfed.org/", - "license": "AGPL-3.0-or-later", - "maintainer": [ - { - "name": "Jean-Baptiste Holcroft", - "email": "jean-baptiste@holcroft.fr" - }, - { - "name": "yalh76" - } - ], - "requirements": { - "yunohost": ">= 3.5" - }, - "multi_instance": true, - "services": [ - "nginx" - ], - "arguments": { - "install": [ - { - "name": "domain", - "type": "domain", - "ask": { - "en": "Choose a domain for Pixelfed" - }, - "example": "domain.org" - }, - { - "name": "is_public", - "type": "boolean", - "ask": { - "en": "Is it a public application?" - }, - "default": true - } - ] + { + "name": "yalh76" } + ], + "requirements": { + "yunohost": ">= 3.5" + }, + "multi_instance": true, + "services": ["nginx"], + "arguments": { + "install": [ + { + "name": "domain", + "type": "domain", + "ask": { + "en": "Choose a domain for Pixelfed" + }, + "example": "domain.org" + }, + { + "name": "is_public", + "type": "boolean", + "ask": { + "en": "Is it a public application?" + }, + "default": true + } + ] + } } diff --git a/scripts/_common.sh b/scripts/_common.sh index fc9b220d..ff84b234 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -9,7 +9,7 @@ pkg_dependencies="postgresql redis-server \ libfreetype6 libjpeg62-turbo libpng16-16 libxpm4 libvpx4 libmagickwand-6.q16-3 libwebp6 \ pngquant jpegoptim gifsicle" -extra_pkg_dependencies="php7.3-bcmath php7.3-cli php7.3-curl php7.3-exif php7.3-gd php7.3-intl php7.3-json php7.3-mbstring php7.3-pgsql php7.3-simplexml php7.3-xml php7.3-zip" +extra_pkg_dependencies="php7.3-bcmath php7.3-cli php7.3-curl php7.3-exif php7.3-gd php7.3-intl php7.3-json php7.3-mbstring php7.3-pgsql php7.3-simplexml php7.3-xml php7.3-zip php7.3-intl" #================================================= # PERSONAL HELPERS