From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:57338) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eKo2w-0006Fr-JQ for guix-patches@gnu.org; Fri, 01 Dec 2017 11:21:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eKo1s-0001w3-AZ for guix-patches@gnu.org; Fri, 01 Dec 2017 11:20:14 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:59771) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eKo1q-0001uS-Dk for guix-patches@gnu.org; Fri, 01 Dec 2017 11:19:06 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eKo1n-0002Tx-3X for guix-patches@gnu.org; Fri, 01 Dec 2017 11:19:03 -0500 Subject: [bug#29521] [PATCH] gnu: gnome-default-applications: Change defaults.list to gnome-mimeapps.list. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57335) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eKnxz-0001HT-I2 for guix-patches@gnu.org; Fri, 01 Dec 2017 11:16:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eKnx2-000470-RW for guix-patches@gnu.org; Fri, 01 Dec 2017 11:15:07 -0500 Received: from lb1.openmailbox.org ([5.79.108.160]:44801 helo=mta-1.openmailbox.og) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eKnx1-00040l-TQ for guix-patches@gnu.org; Fri, 01 Dec 2017 11:14:08 -0500 From: Brendan Tildesley Date: Fri, 1 Dec 2017 14:14:06 +1100 Message-Id: <20171201031406.5308-1-brendan.tildesley@openmailbox.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29521@debbugs.gnu.org * gnu/packages/gnome.scm (gnome-default-applications) [arguments]: Change deprecated defaults.list filename to gnome-mimeapps.list. The old defaults.list was changed to mimeapps.list in the mime spec. The gnome- prefix makes the file only be read when XDG_CURRENT_DESKTOP=GNOME. --- gnu/packages/gnome.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 9a46495f1..b02e2a567 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5879,7 +5879,7 @@ software that do not provide their own configuration interface.") (let* ((out (assoc-ref %outputs "out")) (apps (string-append out "/share/applications"))) (mkdir-p apps) - (call-with-output-file (string-append apps "/defaults.list") + (call-with-output-file (string-append apps "/gnome-mimeapps.list") (lambda (port) (format port "[Default Applications]\n") (format port "inode/directory=org.gnome.Nautilus.desktop\n"))) -- 2.15.0