From mboxrd@z Thu Jan 1 00:00:00 1970 From: mike@rohleder.de Subject: bug#25201: [PATCH] gnu: Patch mumble to disable statistic gathering by default. Date: Sun, 8 Mar 2020 18:03:16 +0100 Message-ID: <20200308170316.22591-1-mike@rohleder.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:58103) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jB0Y0-0006Hd-9z for bug-guix@gnu.org; Sun, 08 Mar 2020 14:21:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jB0Xu-0003eP-4a for bug-guix@gnu.org; Sun, 08 Mar 2020 14:21:08 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:43292) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jB0Xu-0003eK-2C for bug-guix@gnu.org; Sun, 08 Mar 2020 14:21:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jB0Xt-0001V4-UD for bug-guix@gnu.org; Sun, 08 Mar 2020 14:21:01 -0400 In-Reply-To: Sender: "Debbugs-submit" Resent-Message-ID: List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane-mx.org@gnu.org Sender: "bug-Guix" To: 25201@debbugs.gnu.org Fixes --- gnu/packages/patches/mumble-statistic-25201.patch | 13 +++++++++++++ gnu/packages/telephony.scm | 2 ++ 2 files changed, 15 insertions(+) create mode 100644 gnu/packages/patches/mumble-statistic-25201.patch diff --git a/gnu/packages/patches/mumble-statistic-25201.patch b/gnu/packages/patches/mumble-statistic-25201.patch new file mode 100644 index 0000000000..3cce1826a7 --- /dev/null +++ b/gnu/packages/patches/mumble-statistic-25201.patch @@ -0,0 +1,13 @@ +changed usage statistic gathering defaults to off. See + +--- a/src/mumble/Settings.cpp 2020-03-08 15:29:11.897056953 +0100 ++++ b/src/mumble/Settings.cpp 2020-03-08 14:11:53.600486793 +0100 +@@ -298,7 +298,7 @@ + bHideInTray = !isUnityDesktop && QSystemTrayIcon::isSystemTrayAvailable(); + #endif + bStateInTray = true; +- bUsage = true; ++ bUsage = false; + bShowUserCount = false; + bChatBarUseSelection = false; + bFilterHidesEmptyChannels = true; diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm index a645c58562..74991079db 100644 --- a/gnu/packages/telephony.scm +++ b/gnu/packages/telephony.scm @@ -15,6 +15,7 @@ ;;; Copyright © 2019 Jan Wielkiewicz ;;; Copyright © 2019 Ivan Vilata i Balaguer ;;; Copyright © 2020 Brett Gilio +;;; Copyright © 2020 Michael Rohleder ;;; ;;; This file is part of GNU Guix. ;;; @@ -404,6 +405,7 @@ address of one of the participants.") (base32 "03dqg5yf6d7ilc1wydpshnv1ndssppcbadqcq20jm5j4fdaf53cs")) (modules '((guix build utils))) + (patches (search-patches "mumble-statistic-25201.patch")) (snippet `(begin ;; Remove bundled software. Keep arc4random, celt-0.7.0, -- 2.25.1