From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59508) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gKKMe-0004kn-MW for guix-patches@gnu.org; Wed, 07 Nov 2018 04:43:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gKKMY-0007Pm-Da for guix-patches@gnu.org; Wed, 07 Nov 2018 04:43:08 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:33901) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gKKMY-0007Np-4B for guix-patches@gnu.org; Wed, 07 Nov 2018 04:43:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gKKMX-0004I2-TI for guix-patches@gnu.org; Wed, 07 Nov 2018 04:43:01 -0500 Subject: [bug#33298] [PATCH] gnu: clementine: Build with sqlite-with-column-metadata. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58848) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gKKLf-0004Hb-PQ for guix-patches@gnu.org; Wed, 07 Nov 2018 04:42:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gKKLX-0004s1-L7 for guix-patches@gnu.org; Wed, 07 Nov 2018 04:42:05 -0500 Received: from mout.gmx.net ([212.227.17.21]:33773) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gKKLX-0004fO-0L for guix-patches@gnu.org; Wed, 07 Nov 2018 04:41:59 -0500 From: Pierre Langlois Date: Wed, 07 Nov 2018 09:41:55 +0000 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: 33298@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi Guix! Clementine's tests failed with the recent Qt update: ~~~ [==========] Running 3 tests from 1 test case. [----------] Global test environment set-up. [----------] 3 tests from ScopedTransactionTest [ RUN ] ScopedTransactionTest.OpensATransaction 13:37:41.705 WARN ScopedTransaction:33 Rolling back transaction [ OK ] ScopedTransactionTest.OpensATransaction (2 ms) [ RUN ] ScopedTransactionTest.RollbackOnDtor ./scopedtransaction_test: symbol lookup error: /gnu/store/433p4vnzb49xavq28ghyj8zpxml9x6b3-qtbase-5.11.2/lib/qt5/plugins/sqldrivers/libqsqlite.so: undefined symbol: sqlite3_column_table_name16 ~~~ It looks like it was due to removing the bundled sqlite from Qt and using the 'sqlite-with-column-metadata' package for clementine fixes the issue. Thanks! Pierre --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-clementine-Build-with-sqlite-with-column-metadat.patch >From 08bf3ffce142e4fc1a1ef126c30f32387c581fc5 Mon Sep 17 00:00:00 2001 From: Pierre Langlois Date: Wed, 7 Nov 2018 09:31:18 +0000 Subject: [PATCH] gnu: clementine: Build with sqlite-with-column-metadata. * gnu/packages/music.scm (clementine)[inputs]: Use sqlite-with-column-metadata. --- gnu/packages/music.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index cdd06647e1..7f1d124233 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -284,7 +284,7 @@ score, keyboard, guitar, drum and controller views.") ("pulseaudio" ,pulseaudio) ("qtbase" ,qtbase) ("qtx11extras" ,qtx11extras) - ("sqlite" ,sqlite) + ("sqlite" ,sqlite-with-column-metadata) ("sparsehash" ,sparsehash) ("taglib" ,taglib))) (home-page "http://clementine-player.org") -- 2.19.1 --=-=-=--