Package: clementine Version: 1.0.1+dfsg-1 Severity: normal Tags: patch experimental User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu precise ubuntu-patch
I believe this startup crash affects clementine when running against the libqt4-sql in experimental. It certainly affects Ubuntu precise where we applied this patch and the startup crash is no more. Thanks! *** /tmp/tmpHHQmB3/bug_body In Ubuntu, the attached patch was applied to achieve the following: * Fix crash when clementine starts (LP: #931154); Thanks to David Sansome for linking the upstream bug and fixing this upstream - add debian/patches/fix_qtsql.patch - update debian/patches/series Thanks for considering the patch. -- System Information: Debian Release: wheezy/sid APT prefers precise-updates APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500, 'precise-proposed'), (500, 'precise'), (100, 'precise-backports') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-17-generic (SMP w/8 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff -Nru clementine-1.0.1+dfsg/debian/changelog clementine-1.0.1+dfsg/debian/changelog diff -Nru clementine-1.0.1+dfsg/debian/control clementine-1.0.1+dfsg/debian/control diff -Nru clementine-1.0.1+dfsg/debian/patches/fix_qtsql.patch clementine-1.0.1+dfsg/debian/patches/fix_qtsql.patch --- clementine-1.0.1+dfsg/debian/patches/fix_qtsql.patch 1969-12-31 18:00:00.000000000 -0600 +++ clementine-1.0.1+dfsg/debian/patches/fix_qtsql.patch 2012-02-21 00:31:42.000000000 -0600 @@ -0,0 +1,18 @@ +Subject: fix an error when QtSql doesn't support multiple statements at a time +Author: David Sansome +Origin: upstream, http://code.google.com/p/clementine-player/source/detail?r=3ade9217d73b + +--- + data/schema/schema.sql | 1 + + 1 file changed, 1 insertion(+) + +Index: clementine-1.0.1+dfsg/data/schema/schema.sql +=================================================================== +--- clementine-1.0.1+dfsg.orig/data/schema/schema.sql ++++ clementine-1.0.1+dfsg/data/schema/schema.sql +@@ -35,4 +35,5 @@ + CREATE TABLE schema_version ( + version INTEGER NOT NULL + ); ++ + INSERT INTO schema_version (version) VALUES (0); diff -Nru clementine-1.0.1+dfsg/debian/patches/series clementine-1.0.1+dfsg/debian/patches/series --- clementine-1.0.1+dfsg/debian/patches/series 2012-01-29 15:47:00.000000000 -0600 +++ clementine-1.0.1+dfsg/debian/patches/series 2012-02-21 00:34:44.000000000 -0600 @@ -1 +1,2 @@ remove-references-to-non-dfsg-files.patch +fix_qtsql.patch