diff options
author | raingloom <raingloom@riseup.net> | 2020-09-04 20:17:51 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2020-09-05 11:58:21 +0200 |
commit | 6c36daaac74b15cceae41caba0b291ae6d62ae17 (patch) | |
tree | cce567c0325183a1764cbccf68bb49ca4b0682ed /gnu/packages/patches | |
parent | 4daa12182d65ced4a7471e8bcdc17c0ea75c4326 (diff) | |
download | guix-6c36daaac74b15cceae41caba0b291ae6d62ae17.tar.gz |
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>
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r-- | gnu/packages/patches/gpodder-disable-updater.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/patches/gpodder-disable-updater.patch b/gnu/packages/patches/gpodder-disable-updater.patch new file mode 100644 index 0000000000..1aa0afe4f1 --- /dev/null +++ b/gnu/packages/patches/gpodder-disable-updater.patch @@ -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 + }, |