Hello community,

here is the log from the commit of package k3b for openSUSE:Factory checked in 
at 2015-11-04 15:32:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/k3b (Old)
 and      /work/SRC/openSUSE:Factory/.k3b.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "k3b"

Changes:
--------
--- /work/SRC/openSUSE:Factory/k3b/k3b.changes  2015-10-12 10:01:21.000000000 
+0200
+++ /work/SRC/openSUSE:Factory/.k3b.new/k3b.changes     2015-11-04 
15:32:23.000000000 +0100
@@ -1,0 +2,6 @@
+Fri Oct 30 11:49:20 UTC 2015 - [email protected]
+
+- Add fix-dvd-transcoding.patch: Fix transcoding of DVD titles
+  (kde#350403)
+
+-------------------------------------------------------------------

New:
----
  fix-dvd-transcoding.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ k3b.spec ++++++
--- /var/tmp/diff_new_pack.aKiCLa/_old  2015-11-04 15:32:24.000000000 +0100
+++ /var/tmp/diff_new_pack.aKiCLa/_new  2015-11-04 15:32:24.000000000 +0100
@@ -33,6 +33,8 @@
 Patch0:         initial-preference.diff
 # PATCH-FIX-OPENSUSE building-docs-once-is-enough.patch  -- Fix build when 
CMP002 policy is set to NEW
 Patch1:         building-docs-once-is-enough.patch
+# PATCH-FIX-UPSTREAM fix-dvd-transcoding.patch kde#350403 -- Fix transcoding 
of DVD titles
+Patch2:         fix-dvd-transcoding.patch
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
@@ -101,6 +103,7 @@
 %setup -q -n %{name}-%{version}
 %patch0
 %patch1 -p1
+%patch2 -p1
 
 # patch image with wrong dimensions - fix rpmlint warning "wrong-icon-size"
 pushd src/icons/actions

++++++ fix-dvd-transcoding.patch ++++++
From: Martin Koller <[email protected]>
Date: Mon, 26 Oct 2015 21:12:35 +0000
Subject: revert "fix" which adds literal quote chars to the filename
X-Git-Url: 
http://quickgit.kde.org/?p=k3b.git&a=commitdiff&h=9f109bbc7fe718135da402535f6ca7ca5c105d4d
---
revert "fix" which adds literal quote chars to the filename

commit 2786d19f added explicit quote characters around the filename,
which is wrong since the filename is passed into a QStringList,
which passes all its separate arguments to the started process.
Adding quote chars would lead to the filename having the
quote chars as part of the filename.

BUG: 350403
REVIEW: 125804
---


--- a/libk3b/jobs/k3bvideodvdtitletranscodingjob.cpp
+++ b/libk3b/jobs/k3bvideodvdtitletranscodingjob.cpp
@@ -303,7 +303,7 @@
         }
 
         // the output filename
-        *d->process << "-o" << QString("\"%1\"").arg(m_filename);
+        *d->process << "-o" << m_filename;
     }
     else {
         // gather information about the video stream, ignore audio


Reply via email to