From 986d6df19aa514ccbf6ace7f0b519919615c59a9 Mon Sep 17 00:00:00 2001 From: lapineige Date: Sat, 18 Apr 2020 10:51:44 +0200 Subject: [PATCH 1/6] Update to 0.10.9 --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 4f832e54..c763f976 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "ActivityPub Federated Image Sharing", "fr": "Logiciel de partage d'image fédéré via ActivityPub" }, - "version": "0.10.8~ynh1", + "version": "0.10.9~ynh1", "url": "https://pixelfed.org/", "license": "AGPL-3.0-or-later", "maintainer": [ From 3aa9cfdc274c41068396c1f8543ae004fa6e03c6 Mon Sep 17 00:00:00 2001 From: lapineige Date: Sat, 18 Apr 2020 10:54:00 +0200 Subject: [PATCH 2/6] Update to 0.10.9 --- conf/app.src | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/app.src b/conf/app.src index 9e7fd54f..e2ffb638 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/pixelfed/pixelfed/archive/v0.10.8.tar.gz -SOURCE_SUM=80ad527c20f5df75a5dfa9e31b8045d2e926db31ebf85ec9f6ccb0c33df240ca +SOURCE_URL=https://github.com/pixelfed/pixelfed/archive/v0.10.9.tar.gz +SOURCE_SUM=d843796473858de2f0f3cda11db2f711b8303a058660d62c6696d4cb828a8a45 OURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true From 5bd32109247a71171ac3f3bfb9525406f0d7e26f Mon Sep 17 00:00:00 2001 From: lapineige Date: Sat, 18 Apr 2020 10:55:35 +0200 Subject: [PATCH 3/6] Update to 0.10.9 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bdb2cc02..3e25f4df 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.8 +**Shipped version:** 0.10.9 ## Important points to read before installing From ba28fcabcc69e4725783456ef09990db96e91174 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sun, 19 Apr 2020 15:56:54 +0200 Subject: [PATCH 4/6] Update _common.sh --- scripts/_common.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 4e3718f7..14ee509d 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -34,6 +34,7 @@ ynh_composer_exec () { # Manage arguments with getopts ynh_handle_getopts_args "$@" workdir="${workdir:-$final_path}" + phpversion="${phpversion:-7.0}" COMPOSER_HOME="$workdir/.composer" \ php${phpversion} "$workdir/composer.phar" $commands \ @@ -53,6 +54,7 @@ ynh_install_composer () { # Manage arguments with getopts ynh_handle_getopts_args "$@" workdir="${workdir:-$final_path}" + phpversion="${phpversion:-7.0}" curl -sS https://getcomposer.org/installer \ | COMPOSER_HOME="$workdir/.composer" \ @@ -64,7 +66,6 @@ ynh_install_composer () { || ynh_die --message="Unable to update core dependencies with Composer." } - # Install another version of php. # # usage: ynh_install_php --phpversion=phpversion [--package=packages] From 279a373057af4bfc5add38e78262f8a6c5468e7c Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sun, 19 Apr 2020 16:00:39 +0200 Subject: [PATCH 5/6] Adding lapineige comaintainer --- manifest.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/manifest.json b/manifest.json index c763f976..6c543005 100644 --- a/manifest.json +++ b/manifest.json @@ -16,6 +16,9 @@ }, { "name": "yalh76" + }, + { + "name": "lapineige" } ], "requirements": { From 927e1ee7bc089049f6ec508aff9819501554b900 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Tue, 21 Apr 2020 02:57:16 +0200 Subject: [PATCH 6/6] not needed start php7.0-fpm --- scripts/remove | 8 -------- 1 file changed, 8 deletions(-) diff --git a/scripts/remove b/scripts/remove index cced37cf..2615b5d0 100644 --- a/scripts/remove +++ b/scripts/remove @@ -86,14 +86,6 @@ ynh_print_info --message="Removing php-fpm configuration..." # Remove the dedicated php-fpm config ynh_remove_fpm_config -#================================================= -# RESTART PHP-FPM 7.0 FPM -#================================================= -ynh_print_info --message="Start php7.0-fpm..." - -#Sometimes with package_check php7.0-fpm fail to reload and stop. So starting the service, just in case. -ynh_systemd_action --service_name=php7.0-fpm --action="start" - #================================================= # GENERIC FINALIZATION #=================================================