Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kdenlive for openSUSE:Factory checked in at 2021-06-12 20:07:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdenlive (Old) and /work/SRC/openSUSE:Factory/.kdenlive.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdenlive" Sat Jun 12 20:07:04 2021 rev:91 rq:899182 version:21.04.2 Changes: -------- --- /work/SRC/openSUSE:Factory/kdenlive/kdenlive.changes 2021-06-01 10:36:05.820673638 +0200 +++ /work/SRC/openSUSE:Factory/.kdenlive.new.32437/kdenlive.changes 2021-06-12 20:08:47.637006245 +0200 @@ -1,0 +2,13 @@ +Tue Jun 8 12:39:39 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 21.04.2 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/gear/21.04.2 +- Too many changes since 21.04.1, only listing bugfixes: + * Fix effect sliders on right to left (rtl) layouts (kde#434981) + * Fix alignment of statusbar message label (kde#437113) +- Add patch to update kdenliverc automatically with the new melt + name: 0001-Handle-the-melt-package-rename-nicely.patch + +------------------------------------------------------------------- Old: ---- kdenlive-21.04.1.tar.xz kdenlive-21.04.1.tar.xz.sig New: ---- 0001-Handle-the-melt-package-rename-nicely.patch kdenlive-21.04.2.tar.xz kdenlive-21.04.2.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdenlive.spec ++++++ --- /var/tmp/diff_new_pack.oMsGI3/_old 2021-06-12 20:08:48.125007094 +0200 +++ /var/tmp/diff_new_pack.oMsGI3/_new 2021-06-12 20:08:48.129007101 +0200 @@ -24,7 +24,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kdenlive -Version: 21.04.1 +Version: 21.04.2 Release: 0 Summary: Non-linear video editor License: GPL-3.0-or-later @@ -35,6 +35,8 @@ Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig Source2: applications.keyring %endif +# PATCH-FIX-OPENSUSE -- Rename the melt executable name in kdenliverc +Patch0: 0001-Handle-the-melt-package-rename-nicely.patch BuildRequires: desktop-file-utils BuildRequires: extra-cmake-modules BuildRequires: fdupes ++++++ 0001-Handle-the-melt-package-rename-nicely.patch ++++++ >From dff7148b4ba73a41c569f3198b9b6ba9cef8d771 Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux <christo...@krop.fr> Date: Tue, 8 Jun 2021 23:35:15 +0200 Subject: [PATCH] Handle the melt package rename nicely. To allow the mlt 6 and 7 packages to coexist, the 'melt' binary is now called 'melt6'. With this change, kdenliverc will be updated to use the new name. --- src/mltconnection.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mltconnection.cpp b/src/mltconnection.cpp index d98deedf3..edd5e53f8 100644 --- a/src/mltconnection.cpp +++ b/src/mltconnection.cpp @@ -138,6 +138,8 @@ void MltConnection::locateMeltAndProfilesPath(const QString &mltPath) QString meltPath; if (qEnvironmentVariableIsSet("MLT_PREFIX")) { meltPath = qgetenv("MLT_PREFIX") + QStringLiteral("/bin/melt") + exeSuffix; + } else if (!QStringLiteral(MLT_MELTBIN).isEmpty()) { + meltPath = QStringLiteral(MLT_MELTBIN); } else { meltPath = KdenliveSettings::rendererpath(); } -- 2.31.1 ++++++ kdenlive-21.04.1.tar.xz -> kdenlive-21.04.2.tar.xz ++++++ /work/SRC/openSUSE:Factory/kdenlive/kdenlive-21.04.1.tar.xz /work/SRC/openSUSE:Factory/.kdenlive.new.32437/kdenlive-21.04.2.tar.xz differ: char 26, line 1