Hello community,

here is the log from the commit of package kde-cli-tools5 for openSUSE:Factory 
checked in at 2016-10-04 15:48:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kde-cli-tools5 (Old)
 and      /work/SRC/openSUSE:Factory/.kde-cli-tools5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kde-cli-tools5"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kde-cli-tools5/kde-cli-tools5.changes    
2016-08-29 15:25:22.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kde-cli-tools5.new/kde-cli-tools5.changes       
2016-10-04 15:47:54.000000000 +0200
@@ -1,0 +2,31 @@
+Thu Sep 29 16:36:28 UTC 2016 - [email protected]
+
+- Update to 5.8.0
+  * New LTS feature release
+  * For more details please see:
+    https://www.kde.org/announcements/plasma-5.8.0.php
+
+-------------------------------------------------------------------
+Mon Sep 26 08:22:42 UTC 2016 - [email protected]
+
+- Remove unnecessary kde-cli-tools5-rpmlintrc
+
+-------------------------------------------------------------------
+Thu Sep 15 15:53:55 UTC 2016 - [email protected]
+
+- Update to 5.7.95 (Plasma 5.8 Beta)
+  * New LTS feature release
+  * For more details please see:
+    https://www.kde.org/announcements/plasma-5.7.95.php
+- Removed patch kdesu-Do-not-change-minimum-size.patch
+
+-------------------------------------------------------------------
+Tue Sep 13 17:42:09 UTC 2016 - [email protected]
+
+- Update to 5.7.5
+  * New bugfix release
+  * For more details please see:
+    https://www.kde.org/announcements/plasma-5.7.5.php
+- Refresh kdesu-add-some-i18n-love.patch and add new change
+
+-------------------------------------------------------------------

Old:
----
  kde-cli-tools-5.7.4.tar.xz
  kdesu-Do-not-change-minimum-size.patch

New:
----
  kde-cli-tools-5.8.0.tar.xz

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

Other differences:
------------------
++++++ kde-cli-tools5.spec ++++++
--- /var/tmp/diff_new_pack.6ntw7v/_old  2016-10-04 15:47:56.000000000 +0200
+++ /var/tmp/diff_new_pack.6ntw7v/_new  2016-10-04 15:47:56.000000000 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:           kde-cli-tools5
-Version:        5.7.4
+Version:        5.8.0
 Release:        0
 Summary:        Additional CLI tools for KDE applications
 License:        GPL-2.0+
@@ -27,8 +27,6 @@
 Source:         kde-cli-tools-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE kdesu-add-some-i18n-love.patch -- boo#852256
 Patch0:         kdesu-add-some-i18n-love.patch
-# PATCH-FIX-UPSTREAM kdesu-Do-not-change-minimum-size.patch boo#958785 -- 
prevent the displayed command line text running into the password field
-Patch1:         kdesu-Do-not-change-minimum-size.patch
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  kf5-filesystem
 BuildRequires:  xz
@@ -65,7 +63,6 @@
 %prep
 %setup -q -n kde-cli-tools-%{version}
 %patch0 -p1
-%patch1 -p1
 
 %build
   %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=%{_kf5_localedir}

++++++ kde-cli-tools-5.7.4.tar.xz -> kde-cli-tools-5.8.0.tar.xz ++++++
++++ 48283 lines of diff (skipped)

++++++ kdesu-add-some-i18n-love.patch ++++++
--- /var/tmp/diff_new_pack.6ntw7v/_old  2016-10-04 15:47:56.000000000 +0200
+++ /var/tmp/diff_new_pack.6ntw7v/_new  2016-10-04 15:47:56.000000000 +0200
@@ -15,16 +15,21 @@
 index 9e7f173..f553422 100644
 --- a/kdesu/kdesu.cpp
 +++ b/kdesu/kdesu.cpp
-@@ -140,7 +140,7 @@ int main(int argc, char *argv[])
+@@ -160,11 +160,11 @@
  
      if (result == 127)
      {
 -        KMessageBox::sorry(0, i18n("Cannot execute command '%1'.", 
QString::fromLocal8Bit(command)));
 +        KMessageBox::sorry(0, i18n("Cannot execute command '%1'.", 
QString::fromUtf8(command)));
      }
+     if (result == -2)
+     {
+-        KMessageBox::sorry(0, i18n("Cannot execute command '%1'. It contains 
invalid characters.", QString::fromLocal8Bit(command)));
++        KMessageBox::sorry(0, i18n("Cannot execute command '%1'. It contains 
invalid characters.", QString::fromUtf8(command)));
+     }
  
      return result;
-@@ -175,7 +175,7 @@ static int startApp(QCommandLineParser& p)
+@@ -199,7 +199,7 @@
          prompt = false;
  
      // Get target uid
@@ -33,7 +38,7 @@
      QByteArray auth_user = user;
      struct passwd *pw = getpwnam(user);
      if (pw == 0L)
-@@ -235,7 +235,7 @@ static int startApp(QCommandLineParser& p)
+@@ -259,7 +259,7 @@
      // Get command
      if (p.isSet("c"))
      {
@@ -42,7 +47,7 @@
          // 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
-@@ -323,7 +323,7 @@ static int startApp(QCommandLineParser& p)
+@@ -347,7 +347,7 @@
  //     }
  
      KUser u;
@@ -51,7 +56,7 @@
  
      if (keep && !terminal && !just_started)
      {
-@@ -429,7 +429,7 @@ static int startApp(QCommandLineParser& p)
+@@ -459,7 +459,7 @@
      }
      else if (keep && have_daemon)
      {
@@ -60,7 +65,7 @@
          client.setPriority(priority);
          client.setScheduler(scheduler);
          int result = client.exec(command, user, options, env);
-@@ -448,7 +448,7 @@ static int startApp(QCommandLineParser& p)
+@@ -478,7 +478,7 @@
          proc.setPriority(priority);
          proc.setScheduler(scheduler);
          proc.setCommand(command);
@@ -69,6 +74,3 @@
          return result;
      }
      return -1;
--- 
-1.8.4.4
-


Reply via email to