[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Update gPodder to 3.10.16 and disable update
From: |
guix-commits |
Subject: |
branch master updated: gnu: Update gPodder to 3.10.16 and disable updater. |
Date: |
Sat, 05 Sep 2020 06:00:24 -0400 |
This is an automated email from the git hooks/post-receive script.
andreas pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6c36daa gnu: Update gPodder to 3.10.16 and disable updater.
6c36daa is described below
commit 6c36daaac74b15cceae41caba0b291ae6d62ae17
Author: raingloom <raingloom@riseup.net>
AuthorDate: Fri Sep 4 20:17:51 2020 +0200
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>
---
gnu/local.mk | 1 +
gnu/packages/gpodder.scm | 7 ++++---
gnu/packages/patches/gpodder-disable-updater.patch | 18 ++++++++++++++++++
3 files changed, 23 insertions(+), 3 deletions(-)
diff --git a/gnu/local.mk b/gnu/local.mk
index 3b97b8f..b059ded 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1074,6 +1074,7 @@ dist_patch_DATA =
\
%D%/packages/patches/gobject-introspection-girepository.patch \
%D%/packages/patches/go-skip-gc-test.patch \
%D%/packages/patches/gpm-glibc-2.26.patch \
+ %D%/packages/patches/gpodder-disable-updater.patch \
%D%/packages/patches/gpsbabel-minizip.patch \
%D%/packages/patches/gpsbabel-qstring.patch \
%D%/packages/patches/grantlee-merge-theme-dirs.patch \
diff --git a/gnu/packages/gpodder.scm b/gnu/packages/gpodder.scm
index 7345994..26ea15b 100644
--- a/gnu/packages/gpodder.scm
+++ b/gnu/packages/gpodder.scm
@@ -38,7 +38,7 @@
(define-public gpodder
(package
(name "gpodder")
- (version "3.10.15")
+ (version "3.10.16")
(source
(origin
(method git-fetch)
@@ -47,8 +47,9 @@
(commit version)))
(sha256
(base32
- "0ghbanj142n0hgydzfjmnkdgri2kswsjal3mn10c723kih4ir4yr"))
- (file-name (git-file-name name version))))
+ "0pbpaasd7kj6y25nm45y1qyb9sxd4570f7g6zkfcpf6pa3nx7qkq"))
+ (file-name (git-file-name name version))
+ (patches (search-patches "gpodder-disable-updater.patch"))))
(build-system python-build-system)
(native-inputs
`(("intltool" ,intltool)
diff --git a/gnu/packages/patches/gpodder-disable-updater.patch
b/gnu/packages/patches/gpodder-disable-updater.patch
new file mode 100644
index 0000000..1aa0afe
--- /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
+ },
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Update gPodder to 3.10.16 and disable updater.,
guix-commits <=