Hello community,

here is the log from the commit of package kde-cli-tools5 for openSUSE:Factory 
checked in at 2018-10-08 17:34:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kde-cli-tools5 (Old)
 and      /work/SRC/openSUSE:Factory/.kde-cli-tools5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kde-cli-tools5"

Mon Oct  8 17:34:35 2018 rev:74 rq:640290 version:5.14.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kde-cli-tools5/kde-cli-tools5.changes    
2018-09-13 23:50:53.850427596 +0200
+++ /work/SRC/openSUSE:Factory/.kde-cli-tools5.new/kde-cli-tools5.changes       
2018-10-08 17:34:48.587305076 +0200
@@ -1,0 +2,28 @@
+Fri Oct  5 10:01:09 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.14.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.0.php
+- No code changes since 5.13.90
+
+-------------------------------------------------------------------
+Sat Sep 15 16:25:26 UTC 2018 - fab...@ritter-vogt.de
+
+- Add tarball signature and keyring containing keys of release managers
+  Jonathan Riddell and Bhushan Shah
+
+-------------------------------------------------------------------
+Thu Sep 13 17:24:59 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.90.php
+- Changes since 5.13.5:
+  * QT_MIN_VERSIONS is Qt 5.11 for Plasma 5.14. Agreed at kickoff meeting.  
Set everywhere for clearity and consistency.
+  * [KEditFileType] Show application icon in preference list
+  * Make build with strict compile flags
+- Refresh kdesu-add-some-i18n-love.patch
+
+-------------------------------------------------------------------

Old:
----
  kde-cli-tools-5.13.5.tar.xz

New:
----
  kde-cli-tools-5.14.0.tar.xz
  kde-cli-tools-5.14.0.tar.xz.sig
  plasma.keyring

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

Other differences:
------------------
++++++ kde-cli-tools5.spec ++++++
--- /var/tmp/diff_new_pack.I1cxLf/_old  2018-10-08 17:34:52.879299163 +0200
+++ /var/tmp/diff_new_pack.I1cxLf/_new  2018-10-08 17:34:52.883299157 +0200
@@ -18,13 +18,17 @@
 
 %bcond_without lang
 Name:           kde-cli-tools5
-Version:        5.13.5
+Version:        5.14.0
 Release:        0
 Summary:        Additional CLI tools for KDE applications
 License:        GPL-2.0-or-later
 Group:          System/GUI/KDE
 Url:            http://www.kde.org
-Source:         
http://download.kde.org/stable/plasma/%{version}/kde-cli-tools-%{version}.tar.xz
+Source:         kde-cli-tools-%{version}.tar.xz
+%if %{with lang}
+Source1:        kde-cli-tools-%{version}.tar.xz.sig
+Source2:        plasma.keyring
+%endif
 # PATCH-FIX-OPENSUSE kdesu-add-some-i18n-love.patch -- boo#852256
 Patch0:         kdesu-add-some-i18n-love.patch
 BuildRequires:  extra-cmake-modules >= 1.3.0

++++++ kde-cli-tools-5.13.5.tar.xz -> kde-cli-tools-5.14.0.tar.xz ++++++
++++ 30046 lines of diff (skipped)

++++++ kdesu-add-some-i18n-love.patch ++++++
--- /var/tmp/diff_new_pack.I1cxLf/_old  2018-10-08 17:34:53.219298695 +0200
+++ /var/tmp/diff_new_pack.I1cxLf/_new  2018-10-08 17:34:53.219298695 +0200
@@ -11,11 +11,11 @@
  kdesu/kdesu.cpp | 16 ++++++++--------
  1 file changed, 8 insertions(+), 8 deletions(-)
 
-Index: kde-cli-tools-5.12.80git.20180210T155619~a94e055/kdesu/kdesu.cpp
+Index: kde-cli-tools-5.13.80git.20180712T134017~d95c4ef/kdesu/kdesu.cpp
 ===================================================================
---- kde-cli-tools-5.12.80git.20180210T155619~a94e055.orig/kdesu/kdesu.cpp
-+++ kde-cli-tools-5.12.80git.20180210T155619~a94e055/kdesu/kdesu.cpp
-@@ -160,11 +160,11 @@ int main(int argc, char *argv[])
+--- kde-cli-tools-5.13.80git.20180712T134017~d95c4ef.orig/kdesu/kdesu.cpp
++++ kde-cli-tools-5.13.80git.20180712T134017~d95c4ef/kdesu/kdesu.cpp
+@@ -157,11 +157,11 @@ int main(int argc, char *argv[])
  
      if (result == 127)
      {
@@ -29,25 +29,25 @@
      }
  
      return result;
-@@ -199,7 +199,7 @@ static int startApp(QCommandLineParser&
+@@ -196,7 +196,7 @@ static int startApp(QCommandLineParser&
          prompt = false;
  
      // Get target uid
--    QByteArray user = p.value("u").toLocal8Bit();
-+    QByteArray user = p.value("u").toUtf8();
+-    QByteArray user = p.value(QStringLiteral("u")).toLocal8Bit();
++    QByteArray user = p.value(QStringLiteral("u")).toUtf8();
      QByteArray auth_user = user;
      struct passwd *pw = getpwnam(user);
      if (pw == nullptr)
-@@ -259,7 +259,7 @@ static int startApp(QCommandLineParser&
+@@ -256,7 +256,7 @@ static int startApp(QCommandLineParser&
      // Get command
-     if (p.isSet("c"))
+     if (p.isSet(QStringLiteral("c")))
      {
--        command = p.value("c").toLocal8Bit();
-+        command = p.value("c").toUtf8();
+-        command = p.value(QStringLiteral("c")).toLocal8Bit();
++        command = p.value(QStringLiteral("c")).toUtf8();
          // Accepting additional arguments here is somewhat weird,
          // but one can conceive use cases: have a complex command with
          // redirections and additional file names which need to be quoted
-@@ -347,7 +347,7 @@ static int startApp(QCommandLineParser&
+@@ -344,7 +344,7 @@ static int startApp(QCommandLineParser&
  //     }
  
      KUser u;
@@ -56,7 +56,7 @@
  
      if (keep && !terminal && !just_started)
      {
-@@ -459,7 +459,7 @@ static int startApp(QCommandLineParser&
+@@ -456,7 +456,7 @@ static int startApp(QCommandLineParser&
      }
      else if (keep && have_daemon)
      {
@@ -65,7 +65,7 @@
          client.setPriority(priority);
          client.setScheduler(scheduler);
          int result = client.exec(command, user, options, env);
-@@ -478,7 +478,7 @@ static int startApp(QCommandLineParser&
+@@ -475,7 +475,7 @@ static int startApp(QCommandLineParser&
          proc.setPriority(priority);
          proc.setScheduler(scheduler);
          proc.setCommand(command);


Reply via email to