1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mygpo_ynh.git synced 2024-09-03 19:55:52 +02:00

Merge pull request #28 from orhtej2/upgrade-20221222

Upgrade to v20221222
This commit is contained in:
eric_G 2023-10-31 22:06:06 +01:00 committed by GitHub
commit 389f4f5e29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 23 additions and 19 deletions

View file

@ -5,7 +5,8 @@ It shall NOT be edited by hand.
# mygpo (gPodder.net) for YunoHost
[![Integration level](https://dash.yunohost.org/integration/mygpo.svg)](https://dash.yunohost.org/appci/app/mygpo) ![Working status](https://ci-apps.yunohost.org/ci/badges/mygpo.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/mygpo.maintain.svg)
[![Integration level](https://dash.yunohost.org/integration/mygpo.svg)](https://dash.yunohost.org/appci/app/mygpo) ![Working status](https://ci-apps.yunohost.org/ci/badges/mygpo.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/mygpo.maintain.svg)
[![Install mygpo (gPodder.net) with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=mygpo)
*[Lire ce readme en français.](./README_fr.md)*
@ -18,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
This is the webservice powering the https://gpodder.net website. It can be used to sync podcast subscriptions with [supported clients](https://gpoddernet.readthedocs.io/en/latest/user/clients.html).
**Shipped version:** 2.11.20220622~ynh2
**Shipped version:** 2.11.20221222~ynh1
**Demo:** https://gpodder.net

View file

@ -5,7 +5,8 @@ It shall NOT be edited by hand.
# mygpo (gPodder.net) pour YunoHost
[![Niveau dintégration](https://dash.yunohost.org/integration/mygpo.svg)](https://dash.yunohost.org/appci/app/mygpo) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/mygpo.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/mygpo.maintain.svg)
[![Niveau dintégration](https://dash.yunohost.org/integration/mygpo.svg)](https://dash.yunohost.org/appci/app/mygpo) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/mygpo.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/mygpo.maintain.svg)
[![Installer mygpo (gPodder.net) avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=mygpo)
*[Read this readme in english.](./README.md)*
@ -18,7 +19,7 @@ Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
This is the webservice powering the https://gpodder.net website. It can be used to sync podcast subscriptions with [supported clients](https://gpoddernet.readthedocs.io/en/latest/user/clients.html).
**Version incluse :** 2.11.20220622~ynh2
**Version incluse :** 2.11.20221222~ynh1
**Démo :** https://gpodder.net

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/gpodder/mygpo/archive/60caf1adfb6c0dbeb21828a0d1ae0dfebc279abd.tar.gz
SOURCE_SUM=15076ba34b6a85f61923e78dd84ce93384daca92331f34d20333be4c3d915b08
SOURCE_URL=https://github.com/gpodder/mygpo/archive/80c41dc0c9a58dc0e85f6ef56662cdfd0d6e3b16.tar.gz
SOURCE_SUM=cce51ef812e5a692ea38b82cb559a4982dcf76ad34d6adf73aff2c5299cb5573
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.gz
SOURCE_IN_SUBDIR=true

View file

@ -6,7 +6,7 @@
"en": "Manage podcast subscriptions, and sync them between apps and devices",
"fr": "Gérez vos sousciptions balado, et sychronisez-lez entre vos applis et appareils"
},
"version": "2.11.20220622~ynh2",
"version": "2.11.20221222~ynh1",
"url": "https://github.com/gpodder/mygpo",
"upstream": {
"license": "AGPL-3.0-only",

View file

@ -5,7 +5,7 @@
#=================================================
# dependencies used by the app
pkg_dependencies="acl python3 python3-dev python3-pip python3-venv postgresql postgresql-contrib libpq-dev redis-server libldap2-dev libsasl2-dev"
pkg_dependencies="acl libffi-dev libjpeg-dev libwebp-dev python3 python3-dev python3-pip python3-venv postgresql postgresql-contrib libpq-dev redis-server libldap2-dev libsasl2-dev"
#=================================================
# PERSONAL HELPERS

View file

@ -1,25 +1,27 @@
diff --git a/conf/gunicorn.conf.py b/conf/gunicorn.conf.py
index 726cd5f4..c13809cc 100644
index c5940616..28c84d79 100644
--- a/conf/gunicorn.conf.py
+++ b/conf/gunicorn.conf.py
@@ -1,16 +1,16 @@
import multiprocessing
@@ -1,17 +1,17 @@
# import multiprocessing
import os
-bind = "unix:/tmp/mygpo.sock"
+#bind = "unix:/tmp/mygpo.sock"
#workers = multiprocessing.cpu_count()
workers = 3
# The maximum number of requests a worker will process before restarting.
# max_requests = 1000
-errorlog = "/var/log/gunicorn/error.log"
-accesslog = "/var/log/gunicorn/access.log"
-log_dir = os.getenv("LOGGING_DIR_GUNICRON", "/var/log/gunicorn/")
-errorlog = log_dir + "error.log"
-accesslog = log_dir + "access.log"
-loglevel = "info"
+#errorlog = "/var/log/gunicorn/error.log"
+#accesslog = "/var/log/gunicorn/access.log"
+#log_dir = os.getenv("LOGGING_DIR_GUNICRON", "/var/log/gunicorn/")
+#errorlog = log_dir + "error.log"
+#accesslog = log_dir + "access.log"
+#loglevel = "info"
access_log_format = '%(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s %(T)s "%(f)s" "%(a)s"'
timeout = 120