File: 07-disable-reporting.patch

package info (click to toggle)
chirp 1%3A20250502-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 17,836 kB
  • sloc: python: 150,688; ansic: 296; sh: 198; xml: 24; makefile: 19
file content (20 lines) | stat: -rw-r--r-- 657 bytes parent folder | download
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'