File: 07-disable-reporting.patch

package info (click to toggle)
chirp 1%3A20250912-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,144 kB
  • sloc: python: 153,917; ansic: 296; sh: 219; xml: 24; makefile: 19
file content (20 lines) | stat: -rw-r--r-- 657 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: Disables all reporting
 Prevent chirp from "phoning home" without informed consent. This also
 has the nice side-effect of disabling the update nag screen, as chirp no
 longer has a concept of releases upstream.
Author: Iain R. Learmonth <irl@debian.org>
Bug-Debian: https://bugs.debian.org/829494
Forwarded: not-needed
Last-Update: 2023-10-28

--- a/chirp/wxui/report.py
+++ b/chirp/wxui/report.py
@@ -32,7 +32,7 @@
 LOG = logging.getLogger(__name__)
 logging.getLogger('urllib3.connectionpool').setLevel(logging.INFO)
 SESSION = None
-DISABLED = False
+DISABLED = True
 SEM = threading.Semaphore(2)
 BASE = 'http://chirpmyradio.com/report'