From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55606) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fpIUb-0002y7-T6 for guix-patches@gnu.org; Mon, 13 Aug 2018 15:27:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fpIUY-0003yy-M5 for guix-patches@gnu.org; Mon, 13 Aug 2018 15:27:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44921) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fpIUY-0003yX-GN for guix-patches@gnu.org; Mon, 13 Aug 2018 15:27:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fpIUY-0004K2-Ab for guix-patches@gnu.org; Mon, 13 Aug 2018 15:27:02 -0400 Subject: [bug#32431] [PATCH] gnu: clementine: Drop dependency on qtwebkit. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55417) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fpIU0-0002sp-Do for guix-patches@gnu.org; Mon, 13 Aug 2018 15:26:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fpITx-0003kE-8U for guix-patches@gnu.org; Mon, 13 Aug 2018 15:26:28 -0400 Received: from mout.gmx.net ([212.227.15.18]:54323) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fpITw-0003jm-TG for guix-patches@gnu.org; Mon, 13 Aug 2018 15:26:25 -0400 From: Pierre Langlois Date: Mon, 13 Aug 2018 20:26:21 +0100 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 32431@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello guix! I realised clementine wasn't building because qtwebkit isn't building either. But, it turns out that while it's an optional dependency according to CMakeList.txt, it isn't actually used anywhere in the code. Here's a patch that removes qtwebkit from its inputs. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-clementine-Drop-dependency-on-qtwebkit.patch >From c32d30001676d80bc9c80ece3ee8c31ec9b72592 Mon Sep 17 00:00:00 2001 From: Pierre Langlois Date: Mon, 13 Aug 2018 09:05:17 +0100 Subject: [PATCH] gnu: clementine: Drop dependency on qtwebkit. QtWebkit is optionally included in CMakeList.txt but isn't actually used anywhere in the code. * gnu/packages/music.scm (clementine)[inputs]: Remove qtwebkit. --- gnu/packages/music.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index c5ee4293b..cf1e0f82f 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -281,7 +281,6 @@ score, keyboard, guitar, drum and controller views.") ("pulseaudio" ,pulseaudio) ("qtbase" ,qtbase) ("qtx11extras" ,qtx11extras) - ("qtwebkit" ,qtwebkit) ("sqlite" ,sqlite-with-fts3) ("sparsehash" ,sparsehash) ("taglib" ,taglib))) -- 2.18.0 --=-=-= Content-Type: text/plain Thanks! Pierre --=-=-=--