gnu: Update gPodder to 3.10.16 and disable updater.

* gnu/packages/gpodder.scm (gpodder): Update to 3.10.16 and add patch.
* gnu/packages/patches/gpodder-disable-updater.patch: New file
* gnu/local.mk (dist_patch_DATA): Add patch

Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
raingloom 2020-09-04 20:17:51 +02:00 committed by Andreas Enge
parent 4daa12182d
commit 6c36daaac7
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3
3 changed files with 23 additions and 3 deletions

View file

@ -0,0 +1,18 @@
Description: Modify the default value for check_on_startup to false.
This prevents an privacy/information disclosure unless the user
explicitly opts-in for the update check.
Forwarded: not-needed
Origin: vendor
Author: tony mancill <tmancill@debian.org>
--- a/src/gpodder/config.py
+++ b/src/gpodder/config.py
@@ -93,7 +93,7 @@
# Software updates from gpodder.org
'software_update': {
- 'check_on_startup': True, # check for updates on start
+ 'check_on_startup': False, # check for updates on start
'last_check': 0, # unix timestamp of last update check
'interval': 5, # interval (in days) to check for updates
},