commit libksysguard5 for openSUSE:Factory

2020-10-30 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-10-30 11:47:42

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.3463 (New)


Package is "libksysguard5"

Fri Oct 30 11:47:42 2020 rev:113 rq:844906 version:5.20.2

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-10-22 14:25:08.954904689 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.3463/libksysguard5.changes
2020-10-30 11:48:00.369725309 +0100
@@ -1,0 +2,16 @@
+Thu Oct 29 15:03:03 UTC 2020 - Fabian Vogt 
+
+- Add patch to fix memory leak (kde#428048):
+  * 0001-Autodelete-smapsRunnable.patch
+
+---
+Tue Oct 27 20:43:50 UTC 2020 - Fabian Vogt 
+
+- Update to 5.20.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.20.2
+- Changes since 5.20.1:
+  * Handle smap read result in the correct thread (kde#428160)
+
+---

Old:

  libksysguard-5.20.1.tar.xz
  libksysguard-5.20.1.tar.xz.sig

New:

  0001-Autodelete-smapsRunnable.patch
  libksysguard-5.20.2.tar.xz
  libksysguard-5.20.2.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.C5tE10/_old  2020-10-30 11:48:01.085725943 +0100
+++ /var/tmp/diff_new_pack.C5tE10/_new  2020-10-30 11:48:01.089725947 +0100
@@ -18,18 +18,20 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.20.1
+Version:5.20.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 URL:http://www.kde.org
-Source: libksysguard-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:libksysguard-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf
+# PATCH-FIX-UPSTREAM
+Patch1: 0001-Autodelete-smapsRunnable.patch
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem
 BuildRequires:  xz

++ 0001-Autodelete-smapsRunnable.patch ++
>From ebcf87527c32db0b6685c63a450489d2c6727069 Mon Sep 17 00:00:00 2001
From: David Edmundson 
Date: Thu, 29 Oct 2020 11:07:36 +
Subject: [PATCH] Autodelete smapsRunnable

The runnable has an early return on error conditions. This means
finished() might never be called.

Now we've removed the accessor and provide the return value in the
signal we can just set autoDelete.

BUG: 428048
---
 processcore/processes_linux_p.cpp   | 2 --
 processcore/read_procsmaps_runnable.cpp | 2 +-
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/processcore/processes_linux_p.cpp 
b/processcore/processes_linux_p.cpp
index 6882f82..ee5559c 100644
--- a/processcore/processes_linux_p.cpp
+++ b/processcore/processes_linux_p.cpp
@@ -558,8 +558,6 @@ bool ProcessesLocal::updateProcessInfo( long pid, Process 
*process)
 Q_EMIT processUpdated(pid, { { Process::VmPSS, pss } });
 });
 
-connect(runnable, &ReadProcSmapsRunnable::finished, runnable, 
&QObject::deleteLater);
-
 QThreadPool::globalInstance()->start(runnable);
 
 if(!d->readProcStat(dir, process)) success = false;
diff --git a/processcore/read_procsmaps_runnable.cpp 
b/processcore/read_procsmaps_runnable.cpp
index ecace51..b91466b 100644
--- a/processcore/read_procsmaps_runnable.cpp
+++ b/processcore/read_procsmaps_runnable.cpp
@@ -14,7 +14,7 @@ ReadProcSmapsRunnable::ReadProcSmapsRunnable(const QString 
&dir)
 : QObject()
 , m_dir(dir)
 {
-setAutoDelete(false);
+setAutoDelete(true);
 }
 
 void ReadProcSmapsRunnable::run()
-- 
2.25.1

++ libksysguard-5.20.1.tar.xz -> libksysguard-5.20.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.20.1/CMakeLists.txt 
new/libksysguard-5.20.2/CMakeLists.txt
--- old/libksysguard-5.20.1/CMakeLists.txt  2020-10-20 14:02:28.0 
+0200
+++ new/libksysguard-5.20.2/CMakeLists.txt  2020-10-27 13:22:15.0 
+0100
@@ -2,7 +2,7 @@
 
 project(libksysguard)
 
-set(PROJECT_VERSION "5.20.1")
+set(PROJECT_VERSION "5.20.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these 
versions to make sure the KDE CI does not break
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--

commit libksysguard5 for openSUSE:Factory

2020-10-22 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-10-22 14:24:10

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.3463 (New)


Package is "libksysguard5"

Thu Oct 22 14:24:10 2020 rev:112 rq:843105 version:5.20.1

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-10-13 15:29:23.708861370 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.3463/libksysguard5.changes
2020-10-22 14:25:08.954904689 +0200
@@ -1,0 +2,9 @@
+Tue Oct 20 14:30:34 UTC 2020 - Fabian Vogt 
+
+- Update to 5.20.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.20.1
+- No code changes since 5.20.0
+
+---

Old:

  libksysguard-5.20.0.tar.xz
  libksysguard-5.20.0.tar.xz.sig

New:

  libksysguard-5.20.1.tar.xz
  libksysguard-5.20.1.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.0vYGqn/_old  2020-10-22 14:25:09.758905411 +0200
+++ /var/tmp/diff_new_pack.0vYGqn/_new  2020-10-22 14:25:09.762905414 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.20.0
+Version:5.20.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.20.0.tar.xz -> libksysguard-5.20.1.tar.xz ++
 3073 lines of diff (skipped)





commit libksysguard5 for openSUSE:Factory

2020-10-13 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-10-13 15:29:18

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.3486 (New)


Package is "libksysguard5"

Tue Oct 13 15:29:18 2020 rev:111 rq:840997 version:5.20.0

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-09-04 11:08:15.058914309 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.3486/libksysguard5.changes
2020-10-13 15:29:23.708861370 +0200
@@ -1,0 +2,29 @@
+Thu Oct  8 16:55:22 UTC 2020 - Fabian Vogt 
+
+- Update to 5.20.0
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.20.0
+- Changes since 5.19.90:
+  * Don't visit every directory if the cgroup base path is empty
+  * Remove implicitHeight hack
+  * Remove minimum width from line chart face's LineChart
+  * Remove left margin from legend in bar and line chart faces
+  * Remove maximum height from Bar chart
+  * Restart the daemon if it is stopped
+  * Reload everything when reloading the config
+  * Fix crash with text face
+  * Do not add sensors we did not request when they appear
+  * Revert "Update qt5 version requirement to 5.15.0"
+  * Fix cgroup regex name  matching
+
+---
+Thu Sep 17 20:03:05 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.90
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.90
+- Too many changes to list here
+
+---

Old:

  libksysguard-5.19.5.tar.xz
  libksysguard-5.19.5.tar.xz.sig

New:

  libksysguard-5.20.0.tar.xz
  libksysguard-5.20.0.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.46gPcE/_old  2020-10-13 15:29:24.428861675 +0200
+++ /var/tmp/diff_new_pack.46gPcE/_new  2020-10-13 15:29:24.432861677 +0200
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.19.5
+Version:5.20.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
+Source: libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
+Source1:libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf
@@ -54,6 +54,7 @@
 BuildRequires:  cmake(Qt5WebChannel) >= 5.4.0
 BuildRequires:  cmake(Qt5WebEngineWidgets) >= 5.4.0
 %endif
+BuildRequires:  cmake(Qt5UiPlugin) >= 5.14.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.4.0
 BuildRequires:  cmake(Qt5X11Extras) >= 5.4.0
 BuildRequires:  pkgconfig(x11)
@@ -166,6 +167,10 @@
 %{_includedir}/ksysguard/
 %{_kf5_libdir}/cmake/KF5SysGuard/
 %{_kf5_libdir}/cmake/KSysGuard/
+%dir %{_kf5_plugindir}/designer/
+%{_kf5_plugindir}/designer/ksignalplotter5widgets.so
+%{_kf5_plugindir}/designer/ksysguard5widgets.so
+%{_kf5_plugindir}/designer/ksysguardlsof5widgets.so
 %{_kf5_libdir}/libKSysGuardFormatter.so
 %{_kf5_libdir}/libKSysGuardSensorFaces.so
 %{_kf5_libdir}/libKSysGuardSensors.so

++ libksysguard-5.19.5.tar.xz -> libksysguard-5.20.0.tar.xz ++
 144713 lines of diff (skipped)





commit libksysguard5 for openSUSE:Factory

2020-09-04 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-09-04 11:07:28

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.3399 (New)


Package is "libksysguard5"

Fri Sep  4 11:07:28 2020 rev:110 rq:831171 version:5.19.5

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-07-29 17:19:26.848509688 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.3399/libksysguard5.changes
2020-09-04 11:08:15.058914309 +0200
@@ -1,0 +2,9 @@
+Tue Sep  1 11:38:50 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.5
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.5
+- No code changes since 5.19.4
+
+---

Old:

  libksysguard-5.19.4.tar.xz
  libksysguard-5.19.4.tar.xz.sig

New:

  libksysguard-5.19.5.tar.xz
  libksysguard-5.19.5.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.Zq3ZpJ/_old  2020-09-04 11:08:17.582915577 +0200
+++ /var/tmp/diff_new_pack.Zq3ZpJ/_new  2020-09-04 11:08:17.582915577 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.19.4
+Version:5.19.5
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.19.4.tar.xz -> libksysguard-5.19.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.4/CMakeLists.txt 
new/libksysguard-5.19.5/CMakeLists.txt
--- old/libksysguard-5.19.4/CMakeLists.txt  2020-07-28 12:59:08.0 
+0200
+++ new/libksysguard-5.19.5/CMakeLists.txt  2020-09-01 12:33:31.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.19.4")
+set(PROJECT_VERSION "5.19.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.4/faces/systemmonitor-faces.knsrc 
new/libksysguard-5.19.5/faces/systemmonitor-faces.knsrc
--- old/libksysguard-5.19.4/faces/systemmonitor-faces.knsrc 2020-07-28 
12:58:42.0 +0200
+++ new/libksysguard-5.19.5/faces/systemmonitor-faces.knsrc 2020-09-01 
12:33:07.0 +0200
@@ -1,6 +1,6 @@
 [KNewStuff3]
 Name=System monitor Sensor Display Styles
-Name[ca]=Estils de visualització del sensor del monitor del sistema
+Name[ca]=Estils de visualització del sensor al monitor del sistema
 Name[cs]=Styl zobrazení monitorování systému
 Name[en_GB]=System monitor Sensor Display Styles
 Name[es]=Estilos de visor del sensor del monitor del sistema
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.4/faces/systemmonitor-presets.knsrc 
new/libksysguard-5.19.5/faces/systemmonitor-presets.knsrc
--- old/libksysguard-5.19.4/faces/systemmonitor-presets.knsrc   2020-07-28 
12:58:42.0 +0200
+++ new/libksysguard-5.19.5/faces/systemmonitor-presets.knsrc   2020-09-01 
12:33:07.0 +0200
@@ -1,6 +1,6 @@
 [KNewStuff3]
 Name=System monitor Sensor Presets
-Name[ca]=Valors predefinits de sensor del monitor del sistema
+Name[ca]=Valors predefinits del sensor al monitor del sistema
 Name[cs]=Předvolby senzoru monitoru systému
 Name[en_GB]=System monitor Sensor Presets
 Name[es]=Ajustes automáticos del sensor del monitor del sistema
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.4/po/ca/KSysGuardSensorFaces.po 
new/libksysguard-5.19.5/po/ca/KSysGuardSensorFaces.po
--- old/libksysguard-5.19.4/po/ca/KSysGuardSensorFaces.po   2020-07-28 
12:58:46.0 +0200
+++ new/libksysguard-5.19.5/po/ca/KSysGuardSensorFaces.po   2020-09-01 
12:33:10.0 +0200
@@ -5,20 +5,21 @@
 # or the same license as the source of its messages in English.
 #
 # Josep Ma. Ferrer , 2020.
+# Antoni Bella Pérez , 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: KSysGuardSensorFaces\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-06-19 06:47+0200\n"
-"PO-Revision-Date: 2020-06-01 17:12+0100\n"
-"Last-Translator: Josep Ma. Ferrer \n"
+"PO-Revision-Date: 2020-07-28 14:06+0200\n"
+"Last-Translator: Antoni Bella Pérez \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 

commit libksysguard5 for openSUSE:Factory

2020-07-29 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-07-29 17:19:05

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.3592 (New)


Package is "libksysguard5"

Wed Jul 29 17:19:05 2020 rev:109 rq:823250 version:5.19.4

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-07-10 14:11:56.939345703 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.3592/libksysguard5.changes
2020-07-29 17:19:26.848509688 +0200
@@ -1,0 +2,12 @@
+Tue Jul 28 13:45:50 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.4
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.4
+- Changes since 5.19.3:
+  * correctly replace spaces with nothing
+  * fix presets loading
+  * delete the face config ui when face gets switched (kde#423071)
+
+---

Old:

  libksysguard-5.19.3.tar.xz
  libksysguard-5.19.3.tar.xz.sig

New:

  libksysguard-5.19.4.tar.xz
  libksysguard-5.19.4.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.pmUhH0/_old  2020-07-29 17:19:27.604510305 +0200
+++ /var/tmp/diff_new_pack.pmUhH0/_new  2020-07-29 17:19:27.608510309 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.19.3
+Version:5.19.4
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.19.3.tar.xz -> libksysguard-5.19.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.3/CMakeLists.txt 
new/libksysguard-5.19.4/CMakeLists.txt
--- old/libksysguard-5.19.3/CMakeLists.txt  2020-07-07 13:14:09.0 
+0200
+++ new/libksysguard-5.19.4/CMakeLists.txt  2020-07-28 12:59:08.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.19.3")
+set(PROJECT_VERSION "5.19.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.3/faces/SensorFaceController.cpp 
new/libksysguard-5.19.4/faces/SensorFaceController.cpp
--- old/libksysguard-5.19.3/faces/SensorFaceController.cpp  2020-07-07 
13:13:40.0 +0200
+++ new/libksysguard-5.19.4/faces/SensorFaceController.cpp  2020-07-28 
12:58:42.0 +0200
@@ -105,7 +105,7 @@
 // TODO config
 QVariantMap config;
 
-KConfigGroup configGroup(df.group("Config"));
+KConfigGroup 
configGroup(KSharedConfig::openConfig(p.filePath("config", 
QStringLiteral("faceproperties"))), QStringLiteral("Config"));
 
 const QStringList keys = configGroup.keyList();
 for (const QString &key : keys) {
@@ -395,6 +395,10 @@
 d->compactRepresentation->deleteLater();
 d->fullRepresentation.clear();
 }
+if (d->faceConfigUi) {
+d->faceConfigUi->deleteLater();
+d->faceConfigUi.clear();
+}
 
 d->faceId = face;
 
@@ -418,7 +422,6 @@
 d->contextObj = new KLocalizedContext(d->engine);
 d->contextObj->setTranslationDomain(QLatin1String("ksysguard_face_") + 
face);
 
-//TODO: should be in a different config file rather than metadata
 d->faceProperties = 
KConfigGroup(KSharedConfig::openConfig(d->facePackage.filePath("FaceProperties")),
 QStringLiteral("Config"));
 
 const QString xmlPath = d->facePackage.filePath("mainconfigxml");
@@ -480,10 +483,20 @@
 return d->faceConfigUi;
 }
 
+const QString filePath = d->facePackage.filePath("ui", 
QStringLiteral("Config.qml"));
+
+if (filePath.isEmpty()) {
+return nullptr;
+}
+
 d->faceConfigUi = 
d->createConfigUi(QStringLiteral(":/FaceDetailsConfig.qml"),
 {{QStringLiteral("controller"), QVariant::fromValue(this)},
- {QStringLiteral("source"), d->facePackage.filePath("ui", 
QStringLiteral("Config.qml"))}});
+ {QStringLiteral("source"), filePath}});
 
+if (d->faceConfigUi && !d->faceConfigUi->property("item").value()) {
+d->faceConfigUi->deleteLater();
+d->faceConfigUi.clear();
+}
 return d->faceConfigUi;
 }
 
@@ -628,7 +641,7 @@
 
 void SensorFaceController::savePreset()
 {
-QString pluginName = QStringLiteral("org.kde.plasma.systemmonitor.") + 
title().simplified().replace(QLatin1Char(' '), QChar()).toLower();
+QString pluginName = QStringLiteral("org.kde.plasma.systemmonitor.") + 
title().simplifie

commit libksysguard5 for openSUSE:Factory

2020-07-10 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-07-10 14:11:51

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.3060 (New)


Package is "libksysguard5"

Fri Jul 10 14:11:51 2020 rev:108 rq:819418 version:5.19.3

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-06-25 15:05:42.237029404 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.3060/libksysguard5.changes
2020-07-10 14:11:56.939345703 +0200
@@ -1,0 +2,9 @@
+Tue Jul  7 13:57:59 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.3
+- No code changes since 5.19.2
+
+---

Old:

  libksysguard-5.19.2.tar.xz
  libksysguard-5.19.2.tar.xz.sig

New:

  libksysguard-5.19.3.tar.xz
  libksysguard-5.19.3.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.idhWo1/_old  2020-07-10 14:11:59.727354860 +0200
+++ /var/tmp/diff_new_pack.idhWo1/_new  2020-07-10 14:11:59.731354873 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.19.2
+Version:5.19.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.19.2.tar.xz -> libksysguard-5.19.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.2/CMakeLists.txt 
new/libksysguard-5.19.3/CMakeLists.txt
--- old/libksysguard-5.19.2/CMakeLists.txt  2020-06-23 14:13:47.0 
+0200
+++ new/libksysguard-5.19.3/CMakeLists.txt  2020-07-07 13:14:09.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.19.2")
+set(PROJECT_VERSION "5.19.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.2/faces/facepackages/barchart/metadata.desktop 
new/libksysguard-5.19.3/faces/facepackages/barchart/metadata.desktop
--- old/libksysguard-5.19.2/faces/facepackages/barchart/metadata.desktop
2020-06-23 14:13:12.0 +0200
+++ new/libksysguard-5.19.3/faces/facepackages/barchart/metadata.desktop
2020-07-07 13:13:40.0 +0200
@@ -6,6 +6,7 @@
 Name[en_GB]=Bar Chart
 Name[es]=Gráfico de barras
 Name[et]=Tulpdiagramm
+Name[eu]=Barra-diagrama
 Name[fr]=Histogramme
 Name[ia]=Diagramma a barra
 Name[it]=Grafico a barre
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.2/faces/facepackages/linechart/metadata.desktop 
new/libksysguard-5.19.3/faces/facepackages/linechart/metadata.desktop
--- old/libksysguard-5.19.2/faces/facepackages/linechart/metadata.desktop   
2020-06-23 14:13:12.0 +0200
+++ new/libksysguard-5.19.3/faces/facepackages/linechart/metadata.desktop   
2020-07-07 13:13:40.0 +0200
@@ -6,6 +6,7 @@
 Name[en_GB]=Line Chart
 Name[es]=Gráfico de líneas
 Name[et]=Joondiagramm
+Name[eu]=Lerro-diagrama
 Name[fr]=Diagramme en ligne
 Name[ia]=Diagramma a linea
 Name[it]=Grafico lineare
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.2/faces/facepackages/piechart/metadata.desktop 
new/libksysguard-5.19.3/faces/facepackages/piechart/metadata.desktop
--- old/libksysguard-5.19.2/faces/facepackages/piechart/metadata.desktop
2020-06-23 14:13:12.0 +0200
+++ new/libksysguard-5.19.3/faces/facepackages/piechart/metadata.desktop
2020-07-07 13:13:40.0 +0200
@@ -6,6 +6,7 @@
 Name[en_GB]=Pie Chart
 Name[es]=Gráfico de tarta
 Name[et]=Sektordiagramm
+Name[eu]=Diagrama zirkularra
 Name[fr]=Diagramme en secteur
 Name[ia]=Diagramma a torta
 Name[it]=Grafico a torta
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.2/faces/facepackages/textonly/metadata.desktop 
new/libksysguard-5.19.3/faces/facepackages/textonly/metadata.desktop
--- old/libksysguard-5.19.2/faces/facepackages/textonly/metadata.desktop
2020-06-23 14:13:12.0 +0200
+++ new/libksysguard-5.19.3/faces/facepackages/textonly/metadata.desktop
2020-07-07 13:13:40.0 +0200
@@ -6,6 +6,7 @@
 Name[en_GB]=Text Only
 Name[es]=Solo texto
 Name[et]=Ainult tekst
+Name[eu]=Testua soilik
 Name[fr]=Texte seul
 Name[ia]=Solmente texto
 Name[it]=Solo testo
d

commit libksysguard5 for openSUSE:Factory

2020-06-25 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-06-25 15:05:30

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.3060 (New)


Package is "libksysguard5"

Thu Jun 25 15:05:30 2020 rev:107 rq:816684 version:5.19.2

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-06-21 18:57:19.503170121 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.3060/libksysguard5.changes
2020-06-25 15:05:42.237029404 +0200
@@ -1,0 +2,15 @@
+Tue Jun 23 13:26:16 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.2
+- Changes since 5.19.1:
+  * Remove leftPadding/rightPadding
+  * add missing ids
+  * Make Sensor::shortName property actually return shortName
+  * Fix searching in FacesConfig (kde#422835)
+  * expose better size hints (kde#422669,kde#422888)
+  * reset the page when reloaded (kde#422871)
+
+---

Old:

  libksysguard-5.19.1.tar.xz
  libksysguard-5.19.1.tar.xz.sig

New:

  libksysguard-5.19.2.tar.xz
  libksysguard-5.19.2.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.sfAXET/_old  2020-06-25 15:05:42.897031531 +0200
+++ /var/tmp/diff_new_pack.sfAXET/_new  2020-06-25 15:05:42.897031531 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.19.1
+Version:5.19.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.19.1.tar.xz -> libksysguard-5.19.2.tar.xz ++
 14486 lines of diff (skipped)





commit libksysguard5 for openSUSE:Factory

2020-06-22 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-06-20 20:11:39

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.3606 (New)


Package is "libksysguard5"

Sat Jun 20 20:11:39 2020 rev:106 rq:815467 version:5.19.1

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-06-11 14:48:09.141985593 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.3606/libksysguard5.changes
2020-06-21 18:57:19.503170121 +0200
@@ -1,0 +2,9 @@
+Tue Jun 16 14:34:51 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.19.1.php
+- No code changes since 5.19.0.1
+
+---

Old:

  libksysguard-5.19.0.1.tar.xz
  libksysguard-5.19.0.1.tar.xz.sig

New:

  libksysguard-5.19.1.tar.xz
  libksysguard-5.19.1.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.fKUKG5/_old  2020-06-21 18:57:19.923171635 +0200
+++ /var/tmp/diff_new_pack.fKUKG5/_new  2020-06-21 18:57:19.923171635 +0200
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.19.0.1
+Version:5.19.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/5.19.0/libksysguard-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/5.19.0/libksysguard-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf

++ libksysguard-5.19.0.1.tar.xz -> libksysguard-5.19.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.0.1/CMakeLists.txt 
new/libksysguard-5.19.1/CMakeLists.txt
--- old/libksysguard-5.19.0.1/CMakeLists.txt2020-06-10 23:08:00.0 
+0200
+++ new/libksysguard-5.19.1/CMakeLists.txt  2020-06-16 14:46:55.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.19.0")
+set(PROJECT_VERSION "5.19.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.0.1/faces/facepackages/barchart/metadata.desktop 
new/libksysguard-5.19.1/faces/facepackages/barchart/metadata.desktop
--- old/libksysguard-5.19.0.1/faces/facepackages/barchart/metadata.desktop  
2020-06-10 23:07:27.0 +0200
+++ new/libksysguard-5.19.1/faces/facepackages/barchart/metadata.desktop
2020-06-16 14:46:19.0 +0200
@@ -8,6 +8,7 @@
 Name[fr]=Histogramme
 Name[ia]=Diagramma a barra
 Name[it]=Grafico a barre
+Name[ko]=막대형 차트
 Name[nl]=Balkgrafiek
 Name[pt]=Gráfico de Barras
 Name[pt_BR]=Gráfico de barras
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.0.1/faces/facepackages/linechart/metadata.desktop 
new/libksysguard-5.19.1/faces/facepackages/linechart/metadata.desktop
--- old/libksysguard-5.19.0.1/faces/facepackages/linechart/metadata.desktop 
2020-06-10 23:07:27.0 +0200
+++ new/libksysguard-5.19.1/faces/facepackages/linechart/metadata.desktop   
2020-06-16 14:46:19.0 +0200
@@ -8,6 +8,7 @@
 Name[fr]=Diagramme en ligne
 Name[ia]=Diagramma a linea
 Name[it]=Grafico lineare
+Name[ko]=꺾은선형 차트
 Name[nl]=Lijngrafiek
 Name[pt]=Gráfico de Linhas
 Name[pt_BR]=Gráfico de linhas
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.0.1/faces/facepackages/piechart/metadata.desktop 
new/libksysguard-5.19.1/faces/facepackages/piechart/metadata.desktop
--- old/libksysguard-5.19.0.1/faces/facepackages/piechart/metadata.desktop  
2020-06-10 23:07:27.0 +0200
+++ new/libksysguard-5.19.1/faces/facepackages/piechart/metadata.desktop
2020-06-16 14:46:19.0 +0200
@@ -8,6 +8,7 @@
 Name[fr]=Diagramme en secteur
 Name[ia]=Diagramma a torta
 Name[it]=Grafico a torta
+Name[ko]=원형 차트
 Name[nl]=Taartgrafiek
 Name[pt]=Gráfico Circular
 Name[pt_BR]=Gráfico de setores
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '

commit libksysguard5 for openSUSE:Factory

2020-06-11 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-06-11 14:47:52

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.3606 (New)


Package is "libksysguard5"

Thu Jun 11 14:47:52 2020 rev:105 rq:813337 version:5.19.0.1

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-06-08 23:56:49.803733171 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.3606/libksysguard5.changes
2020-06-11 14:48:09.141985593 +0200
@@ -1,0 +2,8 @@
+Wed Jun 10 21:21:30 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.0.1
+  * New bugfix release
+- Changes since 5.19.0:
+  * Use new name for dbus interface
+
+---

Old:

  libksysguard-5.19.0.tar.xz
  libksysguard-5.19.0.tar.xz.sig

New:

  libksysguard-5.19.0.1.tar.xz
  libksysguard-5.19.0.1.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.tb5FDG/_old  2020-06-11 14:48:10.065988285 +0200
+++ /var/tmp/diff_new_pack.tb5FDG/_new  2020-06-11 14:48:10.069988297 +0200
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.19.0
+Version:5.19.0.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 URL:http://www.kde.org
-Source: libksysguard-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/5.19.0/libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:libksysguard-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/5.19.0/libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf

++ libksysguard-5.19.0.tar.xz -> libksysguard-5.19.0.1.tar.xz ++
 2273 lines of diff (skipped)





commit libksysguard5 for openSUSE:Factory

2020-06-08 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-06-08 23:54:22

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.3606 (New)


Package is "libksysguard5"

Mon Jun  8 23:54:22 2020 rev:104 rq:812323 version:5.19.0

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-05-07 15:10:25.800363698 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.3606/libksysguard5.changes
2020-06-08 23:56:49.803733171 +0200
@@ -1,0 +2,63 @@
+Thu Jun  4 13:27:12 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.19.0.php
+- Changes since 5.18.90:
+  * properly access savedColors
+  * Fix sensorColors check
+  * Add missing formatter lib to sensordatamodel test
+  * Make SensorDataModel::sensorsChanged more stupid
+  * Add an autotest for SensorDataModel
+  * Don't magically add 180 degrees to start angle
+  * adapt to controller.sensorColors being a map
+  * Use Kirigami.Units instead of units
+  * ExtendedLegend: Don't try to access a non-existing sourceModel
+  * Fix crash on ProcessDataModel creation
+  * Compute new index as distance between begin and upper bound
+  * Remove "name" from SensorTreeItem
+  * SensorFaceController: Sort matches from SensorQuery when loading presets
+  * Add a simple autotest for sensortreemodel
+  * Replace TreeItem QVector children with QMap
+  * Do not have different KF API visible for developer & tarball builds
+  * Fix typos in BarChart Face
+  * [sensors] Avoid breaking IDs of nodes within SensorTreeModel (kde#421696)
+  * Remove stray import
+  * Add missing var keyword
+  * Elide sensor names in config view
+  * Build against correct translation domain
+  * Replace MapProxySource with some javascript code
+
+---
+Thu May 14 14:33:05 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.90.php
+- Changes since 5.18.5:
+  * use kns kpackage integration
+  * move knsrc files here
+  * proper color source
+  * support translations in faces
+  * fix SensorFaceController::compactRepresentation()
+  * Use INTERFACE IMPORTED target type instead of ALIAS for compatibility 
targets
+  * Add KSysGuard::Sensors library
+  * Use KSysGuard namespace for KSysGuard library targets
+  * Add a declarative plugin to ProcessCore
+  * Add KSysGuard::Sensors library
+  * [KSysGuardProcessList] Port away from KRun
+  * bump to require Qt 5.14
+  * Use non-const iterators
+  * Make 'nonphysical' spelling consistent
+  * Introduce ProcessDataModel
+  * Fix Formatter library CMake
+  * Properly install the export header for the formatter lib
+  * Add license header to formatter test
+  * Separate processcore/{formatter,unit} into its own library
+  * Add missing includes
+  * Rename tests to autotests
+  * [ksgrd] Drop a QWidget dependency
+
+---

Old:

  libksysguard-5.18.5.tar.xz
  libksysguard-5.18.5.tar.xz.sig

New:

  libksysguard-5.19.0.tar.xz
  libksysguard-5.19.0.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.thd93Y/_old  2020-06-08 23:56:51.195737465 +0200
+++ /var/tmp/diff_new_pack.thd93Y/_new  2020-06-08 23:56:51.199737476 +0200
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.18.5
+Version:5.19.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
+Source: libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
+Source1:libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf
@@ -38,10 +38,12 @@
 BuildRequires:  cmake(KF5Config)
 BuildRequires:  cmake(KF5ConfigWidgets)
 BuildRequires:  cmake(KF5CoreAddons)
+BuildRequires:  cmake(KF5Declarative)
 BuildRequires:  cmake(KF5GlobalAccel)
 BuildRequires:  cmake(KF5I18n)
 BuildRequires:  cmake(KF5IconThemes)
 BuildRequires:  cmake(KF5KIO)
+BuildRequires:  cmake(KF5NewStuff)
 BuildRequires:  cmake(KF5Plasma)
 BuildRequires:  cmake(KF5Service)
 BuildRequires:  cmake(KF5WidgetsAddons)
@@ -57,11 +59,8 @@
 BuildRequires:  p

commit libksysguard5 for openSUSE:Factory

2020-05-07 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-05-07 15:10:13

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.2738 (New)


Package is "libksysguard5"

Thu May  7 15:10:13 2020 rev:103 rq:800486 version:5.18.5

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-04-04 12:12:33.551155489 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.2738/libksysguard5.changes
2020-05-07 15:10:25.800363698 +0200
@@ -1,0 +2,9 @@
+Tue May  5 13:01:53 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.5.php
+- No code changes since 5.18.4.1
+
+---

Old:

  libksysguard-5.18.4.1.tar.xz
  libksysguard-5.18.4.1.tar.xz.sig

New:

  libksysguard-5.18.5.tar.xz
  libksysguard-5.18.5.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.t7cszb/_old  2020-05-07 15:10:26.692365472 +0200
+++ /var/tmp/diff_new_pack.t7cszb/_new  2020-05-07 15:10:26.696365480 +0200
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.18.4.1
+Version:5.18.5
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/5.18.4/libksysguard-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/5.18.4/libksysguard-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf

++ libksysguard-5.18.4.1.tar.xz -> libksysguard-5.18.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.18.4.1/CMakeLists.txt 
new/libksysguard-5.18.5/CMakeLists.txt
--- old/libksysguard-5.18.4.1/CMakeLists.txt2020-03-31 16:20:47.0 
+0200
+++ new/libksysguard-5.18.5/CMakeLists.txt  2020-05-05 16:48:22.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.18.4")
+set(PROJECT_VERSION "5.18.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.18.4.1/po/cs/processcore.po 
new/libksysguard-5.18.5/po/cs/processcore.po
--- old/libksysguard-5.18.4.1/po/cs/processcore.po  2020-03-31 
16:19:57.0 +0200
+++ new/libksysguard-5.18.5/po/cs/processcore.po2020-05-05 
16:47:45.0 +0200
@@ -1,7 +1,7 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # Lukáš Tinkl , 2010.
-# Vit Pelcak , 2019.
+# Vit Pelcak , 2019, 2020.
 #
 msgid ""
 msgstr ""
@@ -16,7 +16,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Lokalize 19.08.1\n"
+"X-Generator: Lokalize 19.12.3\n"
 
 #: formatter.cpp:48
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.18.4.1/po/en_GB/ksgrd.po 
new/libksysguard-5.18.5/po/en_GB/ksgrd.po
--- old/libksysguard-5.18.4.1/po/en_GB/ksgrd.po 2020-03-31 16:20:01.0 
+0200
+++ new/libksysguard-5.18.5/po/en_GB/ksgrd.po   2020-05-05 16:47:48.0 
+0200
@@ -9,7 +9,7 @@
 "POT-Creation-Date: 2019-11-28 03:39+0100\n"
 "PO-Revision-Date: 2019-12-01 12:18+\n"
 "Last-Translator: Steve Allewell \n"
-"Language-Team: British English \n"
+"Language-Team: British English \n"
 "Language: en_GB\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.18.4.1/po/en_GB/ksysguardlsofwidgets.po 
new/libksysguard-5.18.5/po/en_GB/ksysguardlsofwidgets.po
--- old/libksysguard-5.18.4.1/po/en_GB/ksysguardlsofwidgets.po  2020-03-31 
16:20:01.0 +0200
+++ new/libksysguard-5.18.5/po/en_GB/ksysguardlsofwidgets.po2020-05-05 
16:47:48.0 +0200
@@ -9,7 +9,7 @@
 "POT-Creation-Date: 2019-05-20 03:25+0200\n"
 "PO-Revision-Dat

commit libksysguard5 for openSUSE:Factory

2020-04-04 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-04-04 12:12:06

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.3248 (New)


Package is "libksysguard5"

Sat Apr  4 12:12:06 2020 rev:102 rq:790434 version:5.18.4.1

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-03-12 23:00:03.683032706 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.3248/libksysguard5.changes
2020-04-04 12:12:33.551155489 +0200
@@ -1,0 +2,16 @@
+Tue Mar 31 15:16:34 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4.1:
+  * Version fixed
+
+---
+Tue Mar 31 14:47:41 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.4.php
+- Changes since 5.18.3:
+  * Fix build with Qt 5.15
+
+---

Old:

  libksysguard-5.18.3.tar.xz
  libksysguard-5.18.3.tar.xz.sig

New:

  libksysguard-5.18.4.1.tar.xz
  libksysguard-5.18.4.1.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.tRL7zp/_old  2020-04-04 12:12:37.287160485 +0200
+++ /var/tmp/diff_new_pack.tRL7zp/_new  2020-04-04 12:12:37.291160490 +0200
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.18.3
+Version:5.18.4.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/5.18.4/libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/5.18.4/libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf

++ libksysguard-5.18.3.tar.xz -> libksysguard-5.18.4.1.tar.xz ++
 27036 lines of diff (skipped)





commit libksysguard5 for openSUSE:Factory

2020-03-12 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-03-12 22:59:56

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.3160 (New)


Package is "libksysguard5"

Thu Mar 12 22:59:56 2020 rev:101 rq:783642 version:5.18.3

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-03-05 23:16:52.625129556 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.3160/libksysguard5.changes
2020-03-12 23:00:03.683032706 +0100
@@ -1,0 +2,13 @@
+Tue Mar 10 14:55:32 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.3.php
+- Changes since 5.18.2:
+  * Only deprecate up to target frameworks
+  * Only link to Qt5WebChannel if Qt5WebEngineWidgets available
+- Drop patches, now upstream:
+  * 0001-Only-link-to-Qt5WebChannel-if-Qt5WebEngineWidgets-av.patch
+
+---

Old:

  0001-Only-link-to-Qt5WebChannel-if-Qt5WebEngineWidgets-av.patch
  libksysguard-5.18.2.tar.xz
  libksysguard-5.18.2.tar.xz.sig

New:

  libksysguard-5.18.3.tar.xz
  libksysguard-5.18.3.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.xPPRq8/_old  2020-03-12 23:00:05.447033410 +0100
+++ /var/tmp/diff_new_pack.xPPRq8/_new  2020-03-12 23:00:05.499033430 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.18.2
+Version:5.18.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
@@ -30,8 +30,6 @@
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf
-# PATCH-FIX-UPSTREAM
-Patch1: 0001-Only-link-to-Qt5WebChannel-if-Qt5WebEngineWidgets-av.patch
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem
 BuildRequires:  xz

++ libksysguard-5.18.2.tar.xz -> libksysguard-5.18.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.18.2/CMakeLists.txt 
new/libksysguard-5.18.3/CMakeLists.txt
--- old/libksysguard-5.18.2/CMakeLists.txt  2020-02-25 14:16:51.0 
+0100
+++ new/libksysguard-5.18.3/CMakeLists.txt  2020-03-10 14:08:39.0 
+0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.18.2")
+set(PROJECT_VERSION "5.18.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
@@ -26,7 +26,7 @@
 include(CheckLibraryExists)
 include(FeatureSummary)
 
-find_package(Qt5 ${QT_MIN_VERSION} REQUIRED CONFIG COMPONENTS DBus Network 
Widgets WebChannel)
+find_package(Qt5 ${QT_MIN_VERSION} REQUIRED CONFIG COMPONENTS DBus Network 
Widgets)
 find_package(Qt5WebEngineWidgets ${QT_MIN_VERSION} CONFIG)
 set_package_properties(Qt5WebEngineWidgets PROPERTIES
URL "git://code.qt.org/qt/qtwebenginewidgets.git"
@@ -34,6 +34,13 @@
TYPE OPTIONAL
PURPOSE "Used by the HTML-based GUI ksysguard library"
   )
+find_package(Qt5WebChannel ${QT_MIN_VERSION} CONFIG)
+set_package_properties(Qt5WebChannel PROPERTIES
+   URL "git://code.qt.org/qt/qtwebchannel.git"
+   DESCRIPTION "Qt WebChannel module"
+   TYPE OPTIONAL
+   PURPOSE "Used by the HTML-based GUI ksysguard library"
+  )
 
 find_package(KF5 REQUIRED COMPONENTS CoreAddons Config I18n WindowSystem 
Completion Auth WidgetsAddons IconThemes ConfigWidgets Service GlobalAccel KIO)
 find_package(KF5 OPTIONAL_COMPONENTS Plasma)
@@ -75,9 +82,14 @@
 endif()
 endif()
 
+set(WEBENGINE_SCRIPTING_ENABLED FALSE)
+if(Qt5WebEngineWidgets_FOUND AND Qt5WebChannel_FOUND)
+set(WEBENGINE_SCRIPTING_ENABLED TRUE)
+endif()
+add_feature_info("Scripting plugin support" WEBENGINE_SCRIPTING_ENABLED 
"Support scripting plugins using WebEngine and WebChannel")
+
 set(HAVE_X11 ${X11_FOUND})
 set(HAVE_XRES ${X11_XRes_FOUND})
-set(HAVE_QTWEBENGINEWIDGETS ${Qt5WebEngineWidgets_FOUND})
 configure_file(config-ksysguard.h.cmake 
${CMAKE_CURRENT_BINARY_DIR}/config-ksysguard.h )
 
 add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
@@ -86,7 +98,7 @@
 add_definitions(-DQT_NO_CAST_TO_ASCII)
 add_definitions(-DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT)
 if (EXISTS "${CMAKE_SOURCE_DIR}/.git")
-add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x06)
+add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054200

commit libksysguard5 for openSUSE:Factory

2020-03-05 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-03-05 23:16:48

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.26092 (New)


Package is "libksysguard5"

Thu Mar  5 23:16:48 2020 rev:100 rq:780871 version:5.18.2

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-02-29 21:22:40.702298481 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.26092/libksysguard5.changes   
2020-03-05 23:16:52.625129556 +0100
@@ -1,0 +2,6 @@
+Mon Mar  2 09:28:33 UTC 2020 - Fabian Vogt 
+
+- Add patch to fix build on archs where WebEngine is not available:
+  * 0001-Only-link-to-Qt5WebChannel-if-Qt5WebEngineWidgets-av.patch
+
+---

New:

  0001-Only-link-to-Qt5WebChannel-if-Qt5WebEngineWidgets-av.patch



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.sC5XbP/_old  2020-03-05 23:16:53.637130129 +0100
+++ /var/tmp/diff_new_pack.sC5XbP/_new  2020-03-05 23:16:53.637130129 +0100
@@ -30,6 +30,8 @@
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf
+# PATCH-FIX-UPSTREAM
+Patch1: 0001-Only-link-to-Qt5WebChannel-if-Qt5WebEngineWidgets-av.patch
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem
 BuildRequires:  xz
@@ -49,6 +51,7 @@
 BuildRequires:  cmake(Qt5DBus) >= 5.4.0
 BuildRequires:  cmake(Qt5Network) >= 5.4.0
 %ifnarch ppc ppc64 ppc64le s390 s390x riscv64
+BuildRequires:  cmake(Qt5WebChannel) >= 5.4.0
 BuildRequires:  cmake(Qt5WebEngineWidgets) >= 5.4.0
 %endif
 BuildRequires:  cmake(Qt5Widgets) >= 5.4.0

++ 0001-Only-link-to-Qt5WebChannel-if-Qt5WebEngineWidgets-av.patch ++
>From ba7f78716af618db5556fc17e421397fe67e96af Mon Sep 17 00:00:00 2001
From: Fabian Vogt 
Date: Wed, 12 Feb 2020 15:17:43 +0100
Subject: [PATCH] Only link to Qt5WebChannel if Qt5WebEngineWidgets available

Summary:
QWebChannel is only used if WebEngine is also available.

This converts scripting support into an optional feature which is only enabled 
if both dependencies are available.

Test Plan: Still builds.

Reviewers: #plasma, davidedmundson

Reviewed By: #plasma, davidedmundson

Subscribers: lbeltrame, plasma-devel

Tags: #plasma

Differential Revision: https://phabricator.kde.org/D27347
---
 CMakeLists.txt   | 16 ++--
 config-ksysguard.h.cmake |  4 ++--
 processui/CMakeLists.txt |  5 ++---
 processui/scripting.cpp  | 12 ++--
 processui/scripting.h|  2 +-
 5 files changed, 25 insertions(+), 14 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 075d706..d5df87c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -26,7 +26,7 @@ include(CheckIncludeFiles)
 include(CheckLibraryExists)
 include(FeatureSummary)
 
-find_package(Qt5 ${QT_MIN_VERSION} REQUIRED CONFIG COMPONENTS DBus Network 
Widgets WebChannel)
+find_package(Qt5 ${QT_MIN_VERSION} REQUIRED CONFIG COMPONENTS DBus Network 
Widgets)
 find_package(Qt5WebEngineWidgets ${QT_MIN_VERSION} CONFIG)
 set_package_properties(Qt5WebEngineWidgets PROPERTIES
URL "git://code.qt.org/qt/qtwebenginewidgets.git"
@@ -34,6 +34,13 @@ set_package_properties(Qt5WebEngineWidgets PROPERTIES
TYPE OPTIONAL
PURPOSE "Used by the HTML-based GUI ksysguard library"
   )
+find_package(Qt5WebChannel ${QT_MIN_VERSION} CONFIG)
+set_package_properties(Qt5WebChannel PROPERTIES
+   URL "git://code.qt.org/qt/qtwebchannel.git"
+   DESCRIPTION "Qt WebChannel module"
+   TYPE OPTIONAL
+   PURPOSE "Used by the HTML-based GUI ksysguard library"
+  )
 
 find_package(KF5 REQUIRED COMPONENTS CoreAddons Config I18n WindowSystem 
Completion Auth WidgetsAddons IconThemes ConfigWidgets Service GlobalAccel KIO)
 find_package(KF5 OPTIONAL_COMPONENTS Plasma)
@@ -75,9 +82,14 @@ if(X11_FOUND)
 endif()
 endif()
 
+set(WEBENGINE_SCRIPTING_ENABLED FALSE)
+if(Qt5WebEngineWidgets_FOUND AND Qt5WebChannel_FOUND)
+set(WEBENGINE_SCRIPTING_ENABLED TRUE)
+endif()
+add_feature_info("Scripting plugin support" WEBENGINE_SCRIPTING_ENABLED 
"Support scripting plugins using WebEngine and WebChannel")
+
 set(HAVE_X11 ${X11_FOUND})
 set(HAVE_XRES ${X11_XRes_FOUND})
-set(HAVE_QTWEBENGINEWIDGETS ${Qt5WebEngineWidgets_FOUND})
 configure_file(config-ksysguard.h.cmake 
${CMAKE_CURRENT_BINARY_DIR}/config-ksysguard.h )
 
 add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
diff --git a/config-ksysguard.h.cmake b/config-ksysguard.h.cmake
index ad648f1..e040efc 100644
--- a/config-

commit libksysguard5 for openSUSE:Factory

2020-02-29 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-02-29 21:22:38

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.26092 (New)


Package is "libksysguard5"

Sat Feb 29 21:22:38 2020 rev:99 rq:779194 version:5.18.2

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-02-22 19:05:46.310266958 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.26092/libksysguard5.changes   
2020-02-29 21:22:40.702298481 +0100
@@ -1,0 +2,9 @@
+Tue Feb 25 14:07:18 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.2.php
+- No code changes since 5.18.1
+
+---

Old:

  libksysguard-5.18.1.tar.xz
  libksysguard-5.18.1.tar.xz.sig

New:

  libksysguard-5.18.2.tar.xz
  libksysguard-5.18.2.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.KoXmBj/_old  2020-02-29 21:22:41.334299732 +0100
+++ /var/tmp/diff_new_pack.KoXmBj/_new  2020-02-29 21:22:41.338299740 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libksysguard5
 #
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,12 +18,12 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.18.1
+Version:5.18.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
-Url:http://www.kde.org
+URL:http://www.kde.org
 Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 %if %{with lang}
 Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig

++ libksysguard-5.18.1.tar.xz -> libksysguard-5.18.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.18.1/CMakeLists.txt 
new/libksysguard-5.18.2/CMakeLists.txt
--- old/libksysguard-5.18.1/CMakeLists.txt  2020-02-18 14:11:36.0 
+0100
+++ new/libksysguard-5.18.2/CMakeLists.txt  2020-02-25 14:16:51.0 
+0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.18.1")
+set(PROJECT_VERSION "5.18.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions





commit libksysguard5 for openSUSE:Factory

2020-02-22 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-02-22 19:05:20

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.26092 (New)


Package is "libksysguard5"

Sat Feb 22 19:05:20 2020 rev:98 rq:776787 version:5.18.1

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-02-10 21:51:47.366136798 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.26092/libksysguard5.changes   
2020-02-22 19:05:46.310266958 +0100
@@ -1,0 +2,9 @@
+Tue Feb 18 14:05:57 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.1.php
+- No code changes since 5.18.0
+
+---

Old:

  libksysguard-5.18.0.tar.xz
  libksysguard-5.18.0.tar.xz.sig

New:

  libksysguard-5.18.1.tar.xz
  libksysguard-5.18.1.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.eGuuFC/_old  2020-02-22 19:05:47.082268496 +0100
+++ /var/tmp/diff_new_pack.eGuuFC/_new  2020-02-22 19:05:47.082268496 +0100
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.18.0
+Version:5.18.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: libksysguard-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:libksysguard-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf

++ libksysguard-5.18.0.tar.xz -> libksysguard-5.18.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.18.0/CMakeLists.txt 
new/libksysguard-5.18.1/CMakeLists.txt
--- old/libksysguard-5.18.0/CMakeLists.txt  2020-02-06 14:17:33.0 
+0100
+++ new/libksysguard-5.18.1/CMakeLists.txt  2020-02-18 14:11:36.0 
+0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.18.0")
+set(PROJECT_VERSION "5.18.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.18.0/po/da/processui.po 
new/libksysguard-5.18.1/po/da/processui.po
--- old/libksysguard-5.18.0/po/da/processui.po  2020-02-06 14:17:02.0 
+0100
+++ new/libksysguard-5.18.1/po/da/processui.po  2020-02-18 14:11:05.0 
+0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-09-28 03:23+0200\n"
-"PO-Revision-Date: 2020-01-05 16:05+0100\n"
+"PO-Revision-Date: 2020-02-08 15:42+0100\n"
 "Last-Translator: Martin Schlander \n"
 "Language-Team: Danish \n"
 "Language: da\n"
@@ -665,12 +665,11 @@
 "systemopstart) hentes fra /proc/[pid]/stat"
 
 #: ProcessModel.cpp:1120
-#, fuzzy, kde-format
-#| msgid "Technical information: This is from /proc/*/cmdline"
+#, kde-format
 msgid ""
 "Technical information: The flag is retrieved from /proc/[pid]/"
 "status"
-msgstr "Teknisk information: Dette er fra /proc/*/cmdline"
+msgstr "Teknisk information: Flaget hentes fra /proc/[pid]/status"
 
 #: ProcessModel.cpp:1122
 #, kde-format
@@ -1302,7 +1301,7 @@
 #, kde-format
 msgctxt "process heading"
 msgid "NNP"
-msgstr ""
+msgstr "NNP"
 
 #: ProcessModel.cpp:2088
 #, kde-format
@@ -1323,25 +1322,22 @@
 msgstr "Vinduestitel"
 
 #: ProcessModel.cpp:2095
-#, fuzzy, kde-format
-#| msgid "Group: %1"
+#, kde-format
 msgctxt "process heading"
 msgid "CGroup"
-msgstr "Gruppe: %1"
+msgstr "CGruppe"
 
 #: ProcessModel.cpp:2096
 #, kde-format
 msgctxt "process heading"
 msgid "MAC Context"
-msgstr ""
+msgstr "MAC-kontekst"
 
 #: ProcessModel.cpp:2097
-#, fuzzy, kde-format
-#| msgctxt "process heading"
-#| msgid "Memory"
+#, kde-format
 msgctxt "process heading"
 msgid "Total Memory"
-msgstr "Hukommelse"
+msgstr "Hukommelse i alt"
 
 #: ProcessModel.cpp:2218
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.18.0/po/nn/ksgrd.po 
new/libksysguard-5.18.1/po/nn/ksgrd.po
--- old/libksysguard-5.18.0/po/nn/ksgrd.po  2020-02-06 14:17:18.0 
+0100
+++ new/libksysguard-5.18.

commit libksysguard5 for openSUSE:Factory

2020-02-10 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-02-10 21:51:35

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.26092 (New)


Package is "libksysguard5"

Mon Feb 10 21:51:35 2020 rev:97 rq:772248 version:5.18.0

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2020-01-11 14:39:47.889179042 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.26092/libksysguard5.changes   
2020-02-10 21:51:47.366136798 +0100
@@ -1,0 +2,42 @@
+Thu Feb  6 15:10:05 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.0.php
+- No code changes since 5.17.90
+
+---
+Thu Jan 23 11:20:30 UTC 2020 - Christophe Giboudeaux 
+
+- Replace %make_jobs with %cmake_build
+
+---
+Thu Jan 16 14:04:18 UTC 2020 - Fabian Vogt 
+
+- Update to 5.17.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.90.php
+- Changes since 5.17.5:
+  * KF5_MIN_VERSION for plasma 5.18 is KF5 5.66.0
+  * Plasma 5.18 min Qt version is 5.12
+  * Remove endl at the end of qDebug
+  * Port to QRandomGenerator
+  * QMultiHash::insertMulti is deprecated. Use directly ::insert
+  * Speed up sending request to ksysguardd
+  * Don't use nullptr as flag value
+  * Use URL with transport encryption
+  * Add translations for new memory sensors
+  * Add KDEClangFormat cmake support
+  * Fix minor issues found by EBN
+  * Add version
+  * Now we depend against kf5.62
+  * Fix minor typos
+  * Fix compile for freebsd on CI as it doesn't use qtwebengine 5.13 with qt
+  * The real fix is to change #if QT_VERSION < QT_VERSION_CHECK(5, 13, 0) to
+  * Revert "Port some deprecated methods"
+  * Remove deprecated method
+  * Port some deprecated methods
+
+---

Old:

  libksysguard-5.17.5.tar.xz
  libksysguard-5.17.5.tar.xz.sig

New:

  libksysguard-5.18.0.tar.xz
  libksysguard-5.18.0.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.AHgzJS/_old  2020-02-10 21:51:47.910137099 +0100
+++ /var/tmp/diff_new_pack.AHgzJS/_new  2020-02-10 21:51:47.914137102 +0100
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.17.5
+Version:5.18.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
+Source: libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
+Source1:libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf
@@ -102,7 +102,7 @@
 export CXX=g++-7
   %endif
   %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=%{_kf5_localedir}
-  %make_jobs
+  %cmake_build
 
 %install
   %kf5_makeinstall -C build

++ libksysguard-5.17.5.tar.xz -> libksysguard-5.18.0.tar.xz ++
 49856 lines of diff (skipped)





commit libksysguard5 for openSUSE:Factory

2020-01-11 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2020-01-11 14:39:09

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.6675 (New)


Package is "libksysguard5"

Sat Jan 11 14:39:09 2020 rev:96 rq:761992 version:5.17.5

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-12-11 12:07:53.968670334 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.6675/libksysguard5.changes
2020-01-11 14:39:47.889179042 +0100
@@ -1,0 +2,10 @@
+Tue Jan  7 16:24:36 UTC 2020 - Fabian Vogt 
+
+- Update to 5.17.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.5.php
+- Changes since 5.17.4:
+  * Speed up sending request to ksysguardd
+
+---

Old:

  libksysguard-5.17.4.tar.xz
  libksysguard-5.17.4.tar.xz.sig

New:

  libksysguard-5.17.5.tar.xz
  libksysguard-5.17.5.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.FQ2qkT/_old  2020-01-11 14:39:48.525179294 +0100
+++ /var/tmp/diff_new_pack.FQ2qkT/_new  2020-01-11 14:39:48.525179294 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libksysguard5
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.17.4
+Version:5.17.5
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.17.4.tar.xz -> libksysguard-5.17.5.tar.xz ++
 3551 lines of diff (skipped)





commit libksysguard5 for openSUSE:Factory

2019-12-11 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-12-11 12:07:12

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.4691 (New)


Package is "libksysguard5"

Wed Dec 11 12:07:12 2019 rev:95 rq:754019 version:5.17.4

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-11-15 22:35:49.095980041 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.4691/libksysguard5.changes
2019-12-11 12:07:53.968670334 +0100
@@ -1,0 +2,10 @@
+Wed Dec  4 08:37:00 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.4.php
+- Changes since 5.17.3:
+  * WebChannel is only an optional dependency on WebEngine, link to it 
explicitly
+
+---

Old:

  libksysguard-5.17.3.tar.xz
  libksysguard-5.17.3.tar.xz.sig

New:

  libksysguard-5.17.4.tar.xz
  libksysguard-5.17.4.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.ySmRbF/_old  2019-12-11 12:07:54.788669989 +0100
+++ /var/tmp/diff_new_pack.ySmRbF/_new  2019-12-11 12:07:54.788669989 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.17.3
+Version:5.17.4
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.17.3.tar.xz -> libksysguard-5.17.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.17.3/CMakeLists.txt 
new/libksysguard-5.17.4/CMakeLists.txt
--- old/libksysguard-5.17.3/CMakeLists.txt  2019-11-12 11:22:13.0 
+0100
+++ new/libksysguard-5.17.4/CMakeLists.txt  2019-12-03 13:18:21.0 
+0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.17.3")
+set(PROJECT_VERSION "5.17.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
@@ -25,7 +25,7 @@
 include(CheckLibraryExists)
 include(FeatureSummary)
 
-find_package(Qt5 ${QT_MIN_VERSION} REQUIRED CONFIG COMPONENTS DBus Network 
Widgets)
+find_package(Qt5 ${QT_MIN_VERSION} REQUIRED CONFIG COMPONENTS DBus Network 
Widgets WebChannel)
 find_package(Qt5WebEngineWidgets ${QT_MIN_VERSION} CONFIG)
 set_package_properties(Qt5WebEngineWidgets PROPERTIES
URL "git://code.qt.org/qt/qtwebenginewidgets.git"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.17.3/po/et/ksgrd.po 
new/libksysguard-5.17.4/po/et/ksgrd.po
--- old/libksysguard-5.17.3/po/et/ksgrd.po  2019-11-12 11:21:45.0 
+0100
+++ new/libksysguard-5.17.4/po/et/ksgrd.po  2019-12-03 13:17:32.0 
+0100
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Marek Laane , 2016.
+# Marek Laane , 2016, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 03:25+0200\n"
-"PO-Revision-Date: 2016-01-10 20:31+0200\n"
+"PO-Revision-Date: 2019-11-20 16:35+0200\n"
 "Last-Translator: Marek Laane \n"
 "Language-Team: Estonian \n"
 "Language: et\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 19.08.1\n"
 
 #: SensorAgent.cpp:111
 #, kde-format
@@ -479,7 +479,7 @@
 #: SensorManager.cpp:162
 #, kde-format
 msgid "Battery Voltage"
-msgstr "Aku voltaaž"
+msgstr "Aku pinge"
 
 #: SensorManager.cpp:163
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.17.3/po/gl/processui.po 
new/libksysguard-5.17.4/po/gl/processui.po
--- old/libksysguard-5.17.3/po/gl/processui.po  2019-11-12 11:21:48.0 
+0100
+++ new/libksysguard-5.17.4/po/gl/processui.po  2019-12-03 13:17:37.0 
+0100
@@ -12,7 +12,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-09-20 08:03+0200\n"
-"PO-Revision-Date: 2019-10-19 21:46+0200\n"
+"PO-Revision-Date: 2019-11-26 22:32+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
@@ -20,7 +20,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\

commit libksysguard5 for openSUSE:Factory

2019-11-15 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-11-15 22:35:44

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.26869 (New)


Package is "libksysguard5"

Fri Nov 15 22:35:44 2019 rev:94 rq:747849 version:5.17.3

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-10-31 18:11:53.385799358 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.26869/libksysguard5.changes   
2019-11-15 22:35:49.095980041 +0100
@@ -1,0 +2,9 @@
+Tue Nov 12 11:01:07 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.3.php
+- No code changes since 5.17.2
+
+---

Old:

  libksysguard-5.17.2.tar.xz
  libksysguard-5.17.2.tar.xz.sig

New:

  libksysguard-5.17.3.tar.xz
  libksysguard-5.17.3.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.U05M6R/_old  2019-11-15 22:35:49.871979700 +0100
+++ /var/tmp/diff_new_pack.U05M6R/_new  2019-11-15 22:35:49.871979700 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.17.2
+Version:5.17.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.17.2.tar.xz -> libksysguard-5.17.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.17.2/CMakeLists.txt 
new/libksysguard-5.17.3/CMakeLists.txt
--- old/libksysguard-5.17.2/CMakeLists.txt  2019-10-29 19:21:26.0 
+0100
+++ new/libksysguard-5.17.3/CMakeLists.txt  2019-11-12 11:22:13.0 
+0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.17.2")
+set(PROJECT_VERSION "5.17.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions





commit libksysguard5 for openSUSE:Factory

2019-10-31 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-10-31 18:11:51

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.2990 (New)


Package is "libksysguard5"

Thu Oct 31 18:11:51 2019 rev:93 rq:744232 version:5.17.2

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-10-27 13:38:27.593077561 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.2990/libksysguard5.changes
2019-10-31 18:11:53.385799358 +0100
@@ -1,0 +2,9 @@
+Tue Oct 29 20:45:51 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.2.php
+- No code changes since 5.17.1
+
+---

Old:

  libksysguard-5.17.1.tar.xz
  libksysguard-5.17.1.tar.xz.sig

New:

  libksysguard-5.17.2.tar.xz
  libksysguard-5.17.2.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.9cqB0r/_old  2019-10-31 18:11:54.161800170 +0100
+++ /var/tmp/diff_new_pack.9cqB0r/_new  2019-10-31 18:11:54.165800175 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.17.1
+Version:5.17.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.17.1.tar.xz -> libksysguard-5.17.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.17.1/CMakeLists.txt 
new/libksysguard-5.17.2/CMakeLists.txt
--- old/libksysguard-5.17.1/CMakeLists.txt  2019-10-22 17:31:06.0 
+0200
+++ new/libksysguard-5.17.2/CMakeLists.txt  2019-10-29 19:21:26.0 
+0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.17.1")
+set(PROJECT_VERSION "5.17.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.17.1/po/id/processcore.po 
new/libksysguard-5.17.2/po/id/processcore.po
--- old/libksysguard-5.17.1/po/id/processcore.po2019-10-22 
17:30:39.0 +0200
+++ new/libksysguard-5.17.2/po/id/processcore.po2019-10-29 
19:21:02.0 +0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: processcore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-09-14 03:29+0200\n"
-"PO-Revision-Date: 2019-08-30 10:21+0700\n"
+"PO-Revision-Date: 2019-10-21 07:22+0700\n"
 "Last-Translator: Wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
@@ -17,350 +17,351 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 19.08.1\n"
 
 #: formatter.cpp:48
 #, kde-format
 msgctxt "Bytes unit symbol"
 msgid "%1 B"
-msgstr ""
+msgstr "%1 B"
 
 #: formatter.cpp:49
 #, kde-format
 msgctxt "Kilobytes unit symbol"
 msgid "%1 KiB"
-msgstr ""
+msgstr "%1 KiB"
 
 #: formatter.cpp:50
 #, kde-format
 msgctxt "Megabytes unit symbol"
 msgid "%1 MiB"
-msgstr ""
+msgstr "%1 MiB"
 
 #: formatter.cpp:51
 #, kde-format
 msgctxt "Gigabytes unit symbol"
 msgid "%1 GiB"
-msgstr ""
+msgstr "%1 GiB"
 
 #: formatter.cpp:52
 #, kde-format
 msgctxt "Terabytes unit symbol"
 msgid "%1 TiB"
-msgstr ""
+msgstr "%1 TiB"
 
 #: formatter.cpp:53
 #, kde-format
 msgctxt "Petabytes unit symbol"
 msgid "%1 PiB"
-msgstr ""
+msgstr "%1 PiB"
 
 #: formatter.cpp:55
 #, kde-format
 msgctxt "Bytes per second unit symbol"
 msgid "%1 B/s"
-msgstr ""
+msgstr "%1 B/d"
 
 #: formatter.cpp:56
 #, kde-format
 msgctxt "Kilobytes per second unit symbol"
 msgid "%1 KiB/s"
-msgstr ""
+msgstr "%1 KiB/d"
 
 #: formatter.cpp:57
 #, kde-format
 msgctxt "Megabytes per second unit symbol"
 msgid "%1 MiB/s"
-msgstr ""
+msgstr "%1 MiB/d"
 
 #: formatter.cpp:58
 #, kde-format
 msgctxt "Gigabytes per second unit symbol"
 msgid "%1 GiB/s"
-msgstr ""
+msgstr "%1 GiB/d"
 
 #: formatter.cpp:59
 #, kde-format
 msgctxt "Gigabytes per second unit symbol"
 msgid "%1 TiB/s"
-msgstr ""
+msgstr "%1 TiB/d"
 
 #: formatter.cpp:60
 #, kde-format
 msgctxt "Gigabytes per second unit symbol"
 msgid "%1 PiB/s"
-msgstr ""
+msgstr "%1 PiB/d"
 
 #: formatter.cpp:62
 #, kde-format
 msgctxt "Hertz unit symbol"
 msgid "%1 Hz"
-msgstr ""
+msgstr "%1 Hz"
 
 #: formatter.cpp:63
 #, kde-format
 msgctxt "Kilohertz unit symbol"
 msgid "%1 kHz"
-msgstr ""
+msgstr "%1 kHz"
 
 #: formatter.cpp:64
 #, kde-format
 msgctxt "Megahertz unit symbol"

commit libksysguard5 for openSUSE:Factory

2019-10-27 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-10-27 13:38:25

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.2990 (New)


Package is "libksysguard5"

Sun Oct 27 13:38:25 2019 rev:92 rq:742063 version:5.17.1

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-10-14 12:38:18.659200947 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.2990/libksysguard5.changes
2019-10-27 13:38:27.593077561 +0100
@@ -1,0 +2,10 @@
+Tue Oct 22 16:44:44 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.1.php
+- Changes since 5.17.0:
+  * Fix build with older glibc: link there to librt for clock_gettime
+
+---

Old:

  libksysguard-5.17.0.tar.xz
  libksysguard-5.17.0.tar.xz.sig

New:

  libksysguard-5.17.1.tar.xz
  libksysguard-5.17.1.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.MPA9Gv/_old  2019-10-27 13:38:28.109078218 +0100
+++ /var/tmp/diff_new_pack.MPA9Gv/_new  2019-10-27 13:38:28.109078218 +0100
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.17.0
+Version:5.17.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: libksysguard-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:libksysguard-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf

++ libksysguard-5.17.0.tar.xz -> libksysguard-5.17.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.17.0/CMakeLists.txt 
new/libksysguard-5.17.1/CMakeLists.txt
--- old/libksysguard-5.17.0/CMakeLists.txt  2019-10-10 14:39:20.0 
+0200
+++ new/libksysguard-5.17.1/CMakeLists.txt  2019-10-22 17:31:06.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.17.0")
+set(PROJECT_VERSION "5.17.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.17.0/po/fi/processcore.po 
new/libksysguard-5.17.1/po/fi/processcore.po
--- old/libksysguard-5.17.0/po/fi/processcore.po2019-10-10 
14:38:48.0 +0200
+++ new/libksysguard-5.17.1/po/fi/processcore.po2019-10-22 
17:30:33.0 +0200
@@ -6,369 +6,370 @@
 # Jorma Karvonen , 2010.
 # Lasse Liehu , 2011.
 # Lasse Liehu , 2011.
+# Tommi Nieminen , 2019.
 #
 #
-# Teemu Rytilahti, 2007.
 # KDE Finnish translation sprint participants:
+# Teemu Rytilahti, 2007.
 msgid ""
 msgstr ""
 "Project-Id-Version: processcore\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-09-14 03:29+0200\n"
-"PO-Revision-Date: 2011-05-11 19:47+0300\n"
-"Last-Translator: Lasse Liehu \n"
-"Language-Team: Finnish \n"
+"PO-Revision-Date: 2019-10-14 19:46+0300\n"
+"Last-Translator: Tommi Nieminen \n"
+"Language-Team: Finnish \n"
 "Language: fi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-POT-Import-Date: 2012-12-01 22:22:38+\n"
-"X-Generator: MediaWiki 1.21alpha (963ddae); Translate 2012-11-08\n"
+"X-Generator: Lokalize 18.12.3\n"
 
 #: formatter.cpp:48
 #, kde-format
 msgctxt "Bytes unit symbol"
 msgid "%1 B"
-msgstr ""
+msgstr "%1 B"
 
 #: formatter.cpp:49
 #, kde-format
 msgctxt "Kilobytes unit symbol"
 msgid "%1 KiB"
-msgstr ""
+msgstr "%1 KiB"
 
 #: formatter.cpp:50
 #, kde-format
 msgctxt "Megabytes unit symbol"
 msgid "%1 MiB"
-msgstr ""
+msgstr "%1 MiB"
 
 #: formatter.cpp:51
 #, kde-format
 msgctxt "Gigabytes unit symbol"
 msgid "%1 GiB"
-msgstr ""
+msgstr "%1 GiB"
 
 #: formatter.cpp:52
 #, kde-format
 msgctxt "Terabytes unit symbol"
 msgid "%1 TiB"
-msgstr ""
+msgstr "%1 TiB"
 
 #: formatter.cpp:53
 #, kde-format
 msgctxt "Petabytes unit symbol"
 msgid "%1 PiB"
-msgstr ""
+msgstr "%1 PiB"
 
 #: formatter.cpp:55
 #, kde-format
 msgctxt "Bytes per second unit symbol"
 msgid "%1 B/s"
-msgstr ""
+m

commit libksysguard5 for openSUSE:Factory

2019-10-14 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-10-14 12:38:15

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.2352 (New)


Package is "libksysguard5"

Mon Oct 14 12:38:15 2019 rev:91 rq:737478 version:5.17.0

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-09-07 11:40:12.342383353 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.2352/libksysguard5.changes
2019-10-14 12:38:18.659200947 +0200
@@ -1,0 +2,30 @@
+Thu Oct 10 14:25:47 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.0.php
+- No code changes since 5.16.90
+
+---
+Thu Sep 19 12:32:36 UTC 2019 - Fabian Vogt 
+
+- Update to 5.16.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.90.php
+- Changes since 5.16.5:
+  * Properly handle ProcessAttribute enabled and default visibility
+  * update to latest kf5 dependency
+  * Create a plugin framework for processes
+  * HiDPI icon pixmap
+  * Move code to send signals and set priority of processes to a dedicated 
object
+  * Add vmPSS to Process and display it as "total memory" column
+  * Use QLatin1String when it's possible + don't assign string when we use
+  * Remove explicit use of ECM_KDE_MODULE_DIR, is part of ECM_MODULE_PATH
+  * Invert controls direction for process priority slider (kde#408074)
+  * Install in new logging directory when we use kf5 5.59.0
+  * libksysguard: show Mandatory Access Control (SELinux/AppArmor) context
+  * process: add support for cgroups
+
+---

Old:

  libksysguard-5.16.5.tar.xz
  libksysguard-5.16.5.tar.xz.sig

New:

  libksysguard-5.17.0.tar.xz
  libksysguard-5.17.0.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.oW38cA/_old  2019-10-14 12:38:19.215199493 +0200
+++ /var/tmp/diff_new_pack.oW38cA/_new  2019-10-14 12:38:19.219199483 +0200
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.16.5
+Version:5.17.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
+Source: libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
+Source1:libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf
@@ -126,8 +126,8 @@
 
 %files helper
 %license COPYING*
-%{_kf5_dbuspolicydir}/org.kde.ksysguard.processlisthelper.conf
 %{_kf5_libdir}/libexec/
+%{_kf5_dbuspolicydir}/org.kde.ksysguard.processlisthelper.conf
 
%{_kf5_sharedir}/dbus-1/system-services/org.kde.ksysguard.processlisthelper.service
 %{_kf5_sharedir}/polkit-1/actions/org.kde.ksysguard.processlisthelper.policy
 

++ libksysguard-5.16.5.tar.xz -> libksysguard-5.17.0.tar.xz ++
 146050 lines of diff (skipped)





commit libksysguard5 for openSUSE:Factory

2019-09-07 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-09-07 11:40:11

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.7948 (New)


Package is "libksysguard5"

Sat Sep  7 11:40:11 2019 rev:90 rq:728197 version:5.16.5

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-08-05 10:33:03.815407570 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.7948/libksysguard5.changes
2019-09-07 11:40:12.342383353 +0200
@@ -1,0 +2,9 @@
+Tue Sep  3 12:44:12 UTC 2019 - Fabian Vogt 
+
+- Update to 5.16.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.5.php
+- No code changes since 5.16.4
+
+---

Old:

  libksysguard-5.16.4.tar.xz
  libksysguard-5.16.4.tar.xz.sig

New:

  libksysguard-5.16.5.tar.xz
  libksysguard-5.16.5.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.G5pHtd/_old  2019-09-07 11:40:12.858383288 +0200
+++ /var/tmp/diff_new_pack.G5pHtd/_new  2019-09-07 11:40:12.862383288 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.16.4
+Version:5.16.5
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.16.4.tar.xz -> libksysguard-5.16.5.tar.xz ++
 5981 lines of diff (skipped)





commit libksysguard5 for openSUSE:Factory

2019-08-05 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-08-05 10:33:02

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.4126 (New)


Package is "libksysguard5"

Mon Aug  5 10:33:02 2019 rev:89 rq:719920 version:5.16.4

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-07-26 12:32:06.662230635 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.4126/libksysguard5.changes
2019-08-05 10:33:03.815407570 +0200
@@ -1,0 +2,9 @@
+Tue Jul 30 12:40:18 UTC 2019 - Fabian Vogt 
+
+- Update to 5.16.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.4.php
+- No code changes since 5.16.3
+
+---

Old:

  libksysguard-5.16.3.tar.xz
  libksysguard-5.16.3.tar.xz.sig

New:

  libksysguard-5.16.4.tar.xz
  libksysguard-5.16.4.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.dmDLfo/_old  2019-08-05 10:33:04.383407419 +0200
+++ /var/tmp/diff_new_pack.dmDLfo/_new  2019-08-05 10:33:04.391407417 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.16.3
+Version:5.16.4
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.16.3.tar.xz -> libksysguard-5.16.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.16.3/CMakeLists.txt 
new/libksysguard-5.16.4/CMakeLists.txt
--- old/libksysguard-5.16.3/CMakeLists.txt  2019-07-09 17:52:41.0 
+0200
+++ new/libksysguard-5.16.4/CMakeLists.txt  2019-07-30 12:27:48.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.16.3")
+set(PROJECT_VERSION "5.16.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.16.3/po/fi/processui.po 
new/libksysguard-5.16.4/po/fi/processui.po
--- old/libksysguard-5.16.3/po/fi/processui.po  2019-07-09 17:51:15.0 
+0200
+++ new/libksysguard-5.16.4/po/fi/processui.po  2019-07-30 12:27:22.0 
+0200
@@ -3,7 +3,7 @@
 # This file is distributed under the same license as the kde-workspace package.
 # Teemu Rytilahti , 2007, 2008.
 # Teemu Rytilahti , 2008.
-# Tommi Nieminen , 2009, 2010, 2017, 2018.
+# Tommi Nieminen , 2009, 2010, 2017, 2018, 2019.
 # Lasse Liehu , 2010.
 # Jorma Karvonen , 2010-2011.
 # Lasse Liehu , 2011, 2012, 2013, 2014, 2015, 2016.
@@ -15,7 +15,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2018-11-22 16:31+0200\n"
+"PO-Revision-Date: 2019-07-29 17:47+0200\n"
 "Last-Translator: Tommi Nieminen \n"
 "Language-Team: Finnish \n"
 "Language: fi\n"
@@ -502,6 +502,8 @@
 "Linux flag NoNewPrivileges, if set the process can't gain further "
 "privileges via setuid etc."
 msgstr ""
+"Linux-lippu NoNewPrivileges: jos asetettu, prosessi ei voi saada lisää "
+"käyttölikeuksia setuidin tms. kautta."
 
 #: ProcessModel.cpp:1021
 #, kde-format
@@ -652,12 +654,11 @@
 "käynnistymisestä) haetaan tiedostosta /proc/[pid]/stat"
 
 #: ProcessModel.cpp:1064
-#, fuzzy, kde-format
-#| msgid "Technical information: This is from /proc/*/cmdline"
+#, kde-format
 msgid ""
 "Technical information: The flag is retrieved from /proc/[pid]/"
 "status"
-msgstr "Teknistä tietoa: Kerätty /proc/*/cmdline-puusta"
+msgstr "Teknistä tietoa: Kerätty /proc/[pic]/status-tiedostosta"
 
 #: ProcessModel.cpp:1066
 #, kde-format
@@ -1253,7 +1254,7 @@
 #, kde-format
 msgctxt "process heading"
 msgid "NNP"
-msgstr ""
+msgstr "NNP"
 
 #: ProcessModel.cpp:1963
 #, kde-format
@@ -1333,6 +1334,8 @@
 "Type comma separated search terms or regular expressions to filter the "
 "process list"
 msgstr ""
+"Suodata prosesseja antamalla pilkuin erotettu luettelo hakusanoja tai "
+"säännöllisiä lausekkeita"
 
 #. i18n: ectx: property (whatsThis), widget (QLineEdit, txtFilter)
 #: ProcessWidgetUI.ui:69
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.16.3/po/id/processui.po 
new/libksysguard-5.16.4/po/id/processui.po
--- old/libksysguard-5.16.3/po/id/processui.po  2019-07-09 17:51:33.0 
+0200
+++ new/libksysguard-5.16.4/po/id/processui.po  2019-07-30 12:27:27.0 
+0200
@@ -9,14 +9,14 @@
 "Project-

commit libksysguard5 for openSUSE:Factory

2019-07-26 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-07-26 12:32:05

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.4126 (New)


Package is "libksysguard5"

Fri Jul 26 12:32:05 2019 rev:88 rq:717053 version:5.16.3

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-06-27 16:21:41.534193195 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.4126/libksysguard5.changes
2019-07-26 12:32:06.662230635 +0200
@@ -1,0 +2,9 @@
+Tue Jul  9 17:29:07 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.16.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.3.php
+- No code changes since 5.16.2
+
+---

Old:

  libksysguard-5.16.2.tar.xz
  libksysguard-5.16.2.tar.xz.sig

New:

  libksysguard-5.16.3.tar.xz
  libksysguard-5.16.3.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.t6MkMx/_old  2019-07-26 12:32:07.226230262 +0200
+++ /var/tmp/diff_new_pack.t6MkMx/_new  2019-07-26 12:32:07.226230262 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.16.2
+Version:5.16.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.16.2.tar.xz -> libksysguard-5.16.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.16.2/CMakeLists.txt 
new/libksysguard-5.16.3/CMakeLists.txt
--- old/libksysguard-5.16.2/CMakeLists.txt  2019-06-25 13:46:33.0 
+0200
+++ new/libksysguard-5.16.3/CMakeLists.txt  2019-07-09 17:52:41.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.16.2")
+set(PROJECT_VERSION "5.16.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.16.2/po/nn/processui.po 
new/libksysguard-5.16.3/po/nn/processui.po
--- old/libksysguard-5.16.2/po/nn/processui.po  2019-06-25 13:46:20.0 
+0200
+++ new/libksysguard-5.16.3/po/nn/processui.po  2019-07-09 17:51:59.0 
+0200
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 19.04.0\n"
+"X-Generator: Lokalize 19.04.2\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.16.2/po/se/processcore.po 
new/libksysguard-5.16.3/po/se/processcore.po
--- old/libksysguard-5.16.2/po/se/processcore.po2019-06-25 
13:46:24.0 +0200
+++ new/libksysguard-5.16.3/po/se/processcore.po2019-07-09 
17:52:12.0 +0200
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: processcore\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2019-04-25 03:46+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-05-20 07:46+0200\n"
 "PO-Revision-Date: 2007-12-24 02:29+0100\n"
 "Last-Translator: Børre Gaup \n"
 "Language-Team: Northern Sami \n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.16.2/po/se/processui.po 
new/libksysguard-5.16.3/po/se/processui.po
--- old/libksysguard-5.16.2/po/se/processui.po  2019-06-25 13:46:24.0 
+0200
+++ new/libksysguard-5.16.3/po/se/processui.po  2019-07-09 17:52:12.0 
+0200
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: processui\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-17 08:29+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-05-20 07:46+0200\n"
 "PO-Revision-Date: 2007-12-22 18:36+0100\n"
 "Last-Translator: Børre Gaup \n"
 "Language-Team: Northern Sami \n"





commit libksysguard5 for openSUSE:Factory

2019-06-27 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-06-27 16:21:40

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.4615 (New)


Package is "libksysguard5"

Thu Jun 27 16:21:40 2019 rev:87 rq:711977 version:5.16.2

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-06-22 11:18:58.793052947 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.4615/libksysguard5.changes
2019-06-27 16:21:41.534193195 +0200
@@ -1,0 +2,9 @@
+Tue Jun 25 12:41:17 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.16.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.2.php
+- No code changes since 5.16.1
+
+---

Old:

  libksysguard-5.16.1.tar.xz
  libksysguard-5.16.1.tar.xz.sig

New:

  libksysguard-5.16.2.tar.xz
  libksysguard-5.16.2.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.3z3Y7H/_old  2019-06-27 16:21:42.402194615 +0200
+++ /var/tmp/diff_new_pack.3z3Y7H/_new  2019-06-27 16:21:42.402194615 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.16.1
+Version:5.16.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.16.1.tar.xz -> libksysguard-5.16.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.16.1/CMakeLists.txt 
new/libksysguard-5.16.2/CMakeLists.txt
--- old/libksysguard-5.16.1/CMakeLists.txt  2019-06-18 11:59:56.0 
+0200
+++ new/libksysguard-5.16.2/CMakeLists.txt  2019-06-25 13:46:33.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.16.1")
+set(PROJECT_VERSION "5.16.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.16.1/po/id/processui.po 
new/libksysguard-5.16.2/po/id/processui.po
--- old/libksysguard-5.16.1/po/id/processui.po  2019-06-18 11:59:37.0 
+0200
+++ new/libksysguard-5.16.2/po/id/processui.po  2019-06-25 13:46:12.0 
+0200
@@ -9,14 +9,14 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-06-06 06:35+0700\n"
+"PO-Revision-Date: 2019-06-22 10:54+0700\n"
 "Last-Translator: Wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 19.04.1\n"
+"X-Generator: Lokalize 19.04.2\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: ksysguardprocesslist.cpp:204 ksysguardprocesslist.cpp:530
@@ -402,7 +402,7 @@
 #: ProcessModel.cpp:995
 #, kde-format
 msgid "The controlling terminal on which this process is running."
-msgstr "Terminal pengontrol tempat proses ini berjalan."
+msgstr "Terminal pengendalian saat proses ini sedang berjalan."
 
 #: ProcessModel.cpp:997
 #, kde-format
@@ -502,7 +502,7 @@
 #: ProcessModel.cpp:1021
 #, kde-format
 msgid "The command with which this process was launched."
-msgstr "Perintah tempat proses ini dijalankan."
+msgstr "Perintah tempat proses ini akan diluncurkan."
 
 #: ProcessModel.cpp:1023
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.16.1/po/pl/processui.po 
new/libksysguard-5.16.2/po/pl/processui.po
--- old/libksysguard-5.16.1/po/pl/processui.po  2019-06-18 11:59:46.0 
+0200
+++ new/libksysguard-5.16.2/po/pl/processui.po  2019-06-25 13:46:22.0 
+0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-05-04 07:34+0200\n"
+"PO-Revision-Date: 2019-06-22 07:06+0200\n"
 "Last-Translator: Łukasz Wojniłowicz \n"
 "Language-Team: Polish \n"
 "Language: pl\n"
@@ -20,7 +20,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
 "|| n%100>=20) ? 1 : 2);\n"
-"X-Generator: Lokalize 19.03.70\n"
+"X-Generator: Lokalize 19.07.70\n"
 
 #: ksysguardprocesslist.cpp:204 ksysguardprocesslist.cpp:530
 #, kde-format
@@ -118,7 +118,7 @@
 "click on a process to send other signals.See What's This for technical "
 "information."

commit libksysguard5 for openSUSE:Factory

2019-06-22 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-06-22 11:18:58

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.4615 (New)


Package is "libksysguard5"

Sat Jun 22 11:18:58 2019 rev:86 rq:711095 version:5.16.1

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-06-12 13:29:53.912250378 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.4615/libksysguard5.changes
2019-06-22 11:18:58.793052947 +0200
@@ -1,0 +2,14 @@
+Tue Jun 18 16:38:15 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.16.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.1.php
+- No code changes since 5.16.0
+
+---
+Thu Jun 13 21:24:16 UTC 2019 - Fabian Vogt 
+
+- File moved to %_kf5_dbuspolicydir
+
+---

Old:

  libksysguard-5.16.0.tar.xz
  libksysguard-5.16.0.tar.xz.sig

New:

  libksysguard-5.16.1.tar.xz
  libksysguard-5.16.1.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.QEqViI/_old  2019-06-22 11:18:59.293053466 +0200
+++ /var/tmp/diff_new_pack.QEqViI/_new  2019-06-22 11:18:59.293053466 +0200
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.16.0
+Version:5.16.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: libksysguard-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:libksysguard-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf
@@ -126,7 +126,7 @@
 
 %files helper
 %license COPYING*
-%{_kf5_sysconfdir}/dbus-1/system.d/org.kde.ksysguard.processlisthelper.conf
+%{_kf5_dbuspolicydir}/org.kde.ksysguard.processlisthelper.conf
 %{_kf5_libdir}/libexec/
 
%{_kf5_sharedir}/dbus-1/system-services/org.kde.ksysguard.processlisthelper.service
 %{_kf5_sharedir}/polkit-1/actions/org.kde.ksysguard.processlisthelper.policy

++ libksysguard-5.16.0.tar.xz -> libksysguard-5.16.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.16.0/CMakeLists.txt 
new/libksysguard-5.16.1/CMakeLists.txt
--- old/libksysguard-5.16.0/CMakeLists.txt  2019-06-06 15:04:00.0 
+0200
+++ new/libksysguard-5.16.1/CMakeLists.txt  2019-06-18 11:59:56.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.16.0")
+set(PROJECT_VERSION "5.16.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.16.0/po/id/ksgrd.po 
new/libksysguard-5.16.1/po/id/ksgrd.po
--- old/libksysguard-5.16.0/po/id/ksgrd.po  2019-06-06 15:03:42.0 
+0200
+++ new/libksysguard-5.16.1/po/id/ksgrd.po  2019-06-18 11:59:37.0 
+0200
@@ -7,15 +7,15 @@
 "Project-Id-Version: libksysguard\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-03-24 08:06+0700\n"
-"Last-Translator: wantoyo \n"
+"PO-Revision-Date: 2019-06-06 06:34+0700\n"
+"Last-Translator: Wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 19.04.1\n"
 
 #: SensorAgent.cpp:111
 #, kde-format
@@ -171,7 +171,7 @@
 #: SensorManager.cpp:94
 #, kde-format
 msgid "Idle Processes Count"
-msgstr "Hitungan Proses Nganggur"
+msgstr "Hitungan Proses Idle"
 
 #: SensorManager.cpp:95
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.16.0/po/id/processcore.po 
new/libksysguard-5.16.1/po/id/processcore.po
--- old/libksysguard-5.16.0/po/id/processcore.po2019-06-06 
15:03:42.0 +0200
+++ new/libksysguard-5.16.1/po/id/processcore.po2019-06-18 
11:59:37.0 +0200
@@ -2,14 +2,14 @@
 # Copyright (C) 2010 This_file_is_part_of_KDE
 # This

commit libksysguard5 for openSUSE:Factory

2019-06-12 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-06-12 13:29:52

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.4811 (New)


Package is "libksysguard5"

Wed Jun 12 13:29:52 2019 rev:85 rq:708313 version:5.16.0

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-05-09 10:06:52.832593491 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.4811/libksysguard5.changes
2019-06-12 13:29:53.912250378 +0200
@@ -1,0 +2,29 @@
+Thu Jun  6 14:07:08 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.16.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.0.php
+- Changes since 5.15.90:
+  * Hide the new NNP column by default
+
+---
+Thu May 16 16:56:38 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.90.php
+- Changes since 5.15.5:
+  * Update tests cmake to WebEngine port
+  * process: add NoNewPrivileges
+  * Add icon for "Resume Stopped Process" action
+  * Fix compilation error when SA_TRACE is 1
+  * Add tooltip for quick search (kde#403923)
+  * Use AuthCore instead of Auth
+  * remove unused include
+  * Better window title display
+  * Accept commas to separate processes on the Search Edit
+  * Use new toolbox icon for "Tools" dropdown menu button
+
+---

Old:

  libksysguard-5.15.5.tar.xz
  libksysguard-5.15.5.tar.xz.sig

New:

  libksysguard-5.16.0.tar.xz
  libksysguard-5.16.0.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.85ka5t/_old  2019-06-12 13:29:54.560250039 +0200
+++ /var/tmp/diff_new_pack.85ka5t/_new  2019-06-12 13:29:54.564250036 +0200
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.15.5
+Version:5.16.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
+Source: libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
+Source1:libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf

++ libksysguard-5.15.5.tar.xz -> libksysguard-5.16.0.tar.xz ++
 94393 lines of diff (skipped)





commit libksysguard5 for openSUSE:Factory

2019-05-09 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-05-09 10:06:50

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.5148 (New)


Package is "libksysguard5"

Thu May  9 10:06:50 2019 rev:84 rq:701386 version:5.15.5

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-05-02 19:14:36.577057233 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.5148/libksysguard5.changes
2019-05-09 10:06:52.832593491 +0200
@@ -1,0 +2,9 @@
+Tue May  7 11:04:56 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.5.php
+- No code changes since 5.15.4
+
+---

Old:

  libksysguard-5.15.4.tar.xz
  libksysguard-5.15.4.tar.xz.sig

New:

  libksysguard-5.15.5.tar.xz
  libksysguard-5.15.5.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.7SrJZi/_old  2019-05-09 10:06:53.372595037 +0200
+++ /var/tmp/diff_new_pack.7SrJZi/_new  2019-05-09 10:06:53.372595037 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.15.4
+Version:5.15.5
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.15.4.tar.xz -> libksysguard-5.15.5.tar.xz ++
 5351 lines of diff (skipped)





commit libksysguard5 for openSUSE:Factory

2019-05-02 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-05-02 19:14:33

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.5148 (New)


Package is "libksysguard5"

Thu May  2 19:14:33 2019 rev:83 rq:699409 version:5.15.4

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-04-04 15:24:40.090835666 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.5148/libksysguard5.changes
2019-05-02 19:14:36.577057233 +0200
@@ -1,0 +2,5 @@
+Mon Apr 29 11:31:54 UTC 2019 - Andreas Schwab 
+
+- No Qt5WebEngineWidgets on riscv64
+
+---



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.Z9wp8r/_old  2019-05-02 19:14:37.201058819 +0200
+++ /var/tmp/diff_new_pack.Z9wp8r/_new  2019-05-02 19:14:37.201058819 +0200
@@ -48,7 +48,7 @@
 BuildRequires:  cmake(KF5WindowSystem)
 BuildRequires:  cmake(Qt5DBus) >= 5.4.0
 BuildRequires:  cmake(Qt5Network) >= 5.4.0
-%ifnarch ppc ppc64 ppc64le s390 s390x
+%ifnarch ppc ppc64 ppc64le s390 s390x riscv64
 BuildRequires:  cmake(Qt5WebEngineWidgets) >= 5.4.0
 %endif
 BuildRequires:  cmake(Qt5Widgets) >= 5.4.0






commit libksysguard5 for openSUSE:Factory

2019-04-04 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-04-04 15:20:30

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.3908 (New)


Package is "libksysguard5"

Thu Apr  4 15:20:30 2019 rev:82 rq:690745 version:5.15.4

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-03-15 10:50:34.160997862 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.3908/libksysguard5.changes
2019-04-04 15:24:40.090835666 +0200
@@ -1,0 +2,9 @@
+Tue Apr  2 12:40:58 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.4.php
+- No code changes since 5.15.3
+
+---

Old:

  libksysguard-5.15.3.tar.xz
  libksysguard-5.15.3.tar.xz.sig

New:

  libksysguard-5.15.4.tar.xz
  libksysguard-5.15.4.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.bt6cbH/_old  2019-04-04 15:24:42.834836664 +0200
+++ /var/tmp/diff_new_pack.bt6cbH/_new  2019-04-04 15:24:42.838836665 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.15.3
+Version:5.15.4
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.15.3.tar.xz -> libksysguard-5.15.4.tar.xz ++
 3170 lines of diff (skipped)





commit libksysguard5 for openSUSE:Factory

2019-03-15 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-03-15 10:50:31

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.28833 (New)


Package is "libksysguard5"

Fri Mar 15 10:50:31 2019 rev:81 rq:684609 version:5.15.3

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-02-28 21:36:11.765681841 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.28833/libksysguard5.changes   
2019-03-15 10:50:34.160997862 +0100
@@ -1,0 +2,10 @@
+Tue Mar 12 13:15:22 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.3.php
+- Changes since 5.15.2:
+  * Add break to fix tty information
+
+---

Old:

  libksysguard-5.15.2.tar.xz
  libksysguard-5.15.2.tar.xz.sig

New:

  libksysguard-5.15.3.tar.xz
  libksysguard-5.15.3.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.BU5uUQ/_old  2019-03-15 10:50:34.684997727 +0100
+++ /var/tmp/diff_new_pack.BU5uUQ/_new  2019-03-15 10:50:34.684997727 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.15.2
+Version:5.15.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.15.2.tar.xz -> libksysguard-5.15.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.15.2/CMakeLists.txt 
new/libksysguard-5.15.3/CMakeLists.txt
--- old/libksysguard-5.15.2/CMakeLists.txt  2019-02-26 12:34:22.0 
+0100
+++ new/libksysguard-5.15.3/CMakeLists.txt  2019-03-12 10:56:25.0 
+0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.15.2")
+set(PROJECT_VERSION "5.15.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.15.2/po/gl/ksysguardlsofwidgets.po 
new/libksysguard-5.15.3/po/gl/ksysguardlsofwidgets.po
--- old/libksysguard-5.15.2/po/gl/ksysguardlsofwidgets.po   2019-02-26 
12:34:13.0 +0100
+++ new/libksysguard-5.15.3/po/gl/ksysguardlsofwidgets.po   2019-03-12 
10:56:15.0 +0100
@@ -5,20 +5,20 @@
 # mvillarino , 2008.
 # marce villarino , 2009.
 # Adrián Chaves Fernández (Gallaecio) , 2017.
+# Adrián Chaves (Gallaecio) , 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: ksysguardlsofwidgets\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2019-01-18 07:37+0100\n"
-"PO-Revision-Date: 2017-01-14 18:37+0100\n"
-"Last-Translator: Adrián Chaves Fernández (Gallaecio) \n"
+"PO-Revision-Date: 2019-03-02 21:50+0100\n"
+"Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 18.12.2\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
@@ -44,7 +44,7 @@
 #: LsofSearchWidget.cpp:39
 #, kde-format
 msgid "Renice Process"
-msgstr "Cambiar a prioridade do proceso"
+msgstr "Usar renice co proceso"
 
 #. i18n: ectx: property (text), widget (KLsofWidget, klsofwidget)
 #: LsofSearchWidget.ui:23
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.15.2/po/gl/processui.po 
new/libksysguard-5.15.3/po/gl/processui.po
--- old/libksysguard-5.15.2/po/gl/processui.po  2019-02-26 12:34:13.0 
+0100
+++ new/libksysguard-5.15.3/po/gl/processui.po  2019-03-12 10:56:15.0 
+0100
@@ -12,7 +12,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2019-02-16 07:32+0100\n"
-"PO-Revision-Date: 2019-02-23 14:32+0100\n"
+"PO-Revision-Date: 2019-03-02 21:48+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
@@ -119,7 +119,7 @@
 "information."
 msgstr ""
 "Finaliza o proceso escollido. Advertencia: pode perder o traballo non "
-"gardado.Prema o botón dereito nun proceso para enviar outros sinais."
+"gardado.Faga clic dereito nun proceso para enviar outros sinais."
 "Consulte o Que é isto? para obter información técnica."
 
 #: ksysguardprocesslist.cpp:418
@@ -253,7 +253,7 @@
 "You do not have the permission to reni

commit libksysguard5 for openSUSE:Factory

2019-02-28 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-02-28 21:36:10

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.28833 (New)


Package is "libksysguard5"

Thu Feb 28 21:36:10 2019 rev:80 rq:679636 version:5.15.2

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-02-11 21:21:17.239212520 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.28833/libksysguard5.changes   
2019-02-28 21:36:11.765681841 +0100
@@ -1,0 +2,20 @@
+Tue Feb 26 14:05:37 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.2.php
+- No code changes since 5.15.1
+
+---
+Tue Feb 19 12:26:14 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.1.php
+- Changes since 5.15.0:
+  * Add some returns to make gcc happy
+  * Add missing break in ProcessesLocal::Private::getNiceness
+
+---

Old:

  libksysguard-5.15.0.tar.xz
  libksysguard-5.15.0.tar.xz.sig

New:

  libksysguard-5.15.2.tar.xz
  libksysguard-5.15.2.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.BrpGjh/_old  2019-02-28 21:36:12.373681650 +0100
+++ /var/tmp/diff_new_pack.BrpGjh/_new  2019-02-28 21:36:12.377681648 +0100
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.15.0
+Version:5.15.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: libksysguard-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:libksysguard-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf

++ libksysguard-5.15.0.tar.xz -> libksysguard-5.15.2.tar.xz ++
 58986 lines of diff (skipped)





commit libksysguard5 for openSUSE:Factory

2019-02-11 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-02-11 21:21:14

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.28833 (New)


Package is "libksysguard5"

Mon Feb 11 21:21:14 2019 rev:79 rq:672592 version:5.15.0

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2019-01-10 15:18:49.562604644 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.28833/libksysguard5.changes   
2019-02-11 21:21:17.239212520 +0100
@@ -1,0 +2,26 @@
+Thu Feb  7 16:02:51 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.0.php
+- No code changes since 5.14.90
+
+---
+Thu Jan 17 18:47:36 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.14.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.90.php
+- Changes since 5.14.5:
+  * bump KF5 dependency to required 5.54 as agreed at start of Plasma 5.15 
cycle
+  * Fix potential mem leak (found by asan)
+  * Use new syntax
+  * Fix minor typos
+  * Add ifdef for webengine (kde#399637)
+  * Port scripting to Qt WebEngine
+- Remove patches, now upstream:
+  * 0001-Port-scripting-to-Qt-WebEngine.patch
+
+---

Old:

  0001-Port-scripting-to-Qt-WebEngine.patch
  libksysguard-5.14.5.tar.xz
  libksysguard-5.14.5.tar.xz.sig

New:

  libksysguard-5.15.0.tar.xz
  libksysguard-5.15.0.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.yc80nf/_old  2019-02-11 21:21:17.887212173 +0100
+++ /var/tmp/diff_new_pack.yc80nf/_new  2019-02-11 21:21:17.891212171 +0100
@@ -18,20 +18,18 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.14.5
+Version:5.15.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
+Source: libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
+Source1:libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf
-# PATCH-FEATURE-UPSTREAM
-Patch100:   0001-Port-scripting-to-Qt-WebEngine.patch
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem
 BuildRequires:  xz

++ libksysguard-5.14.5.tar.xz -> libksysguard-5.15.0.tar.xz ++
 9063 lines of diff (skipped)





commit libksysguard5 for openSUSE:Factory

2019-01-10 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2019-01-10 15:18:46

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.28833 (New)


Package is "libksysguard5"

Thu Jan 10 15:18:46 2019 rev:78 rq:663990 version:5.14.5

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-12-05 09:42:45.512746900 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.28833/libksysguard5.changes   
2019-01-10 15:18:49.562604644 +0100
@@ -1,0 +2,9 @@
+Tue Jan  8 13:37:09 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.14.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.5.php
+- No code changes since 5.14.4
+
+---

Old:

  libksysguard-5.14.4.tar.xz
  libksysguard-5.14.4.tar.xz.sig

New:

  libksysguard-5.14.5.tar.xz
  libksysguard-5.14.5.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.yvBSCM/_old  2019-01-10 15:18:49.982604242 +0100
+++ /var/tmp/diff_new_pack.yvBSCM/_new  2019-01-10 15:18:49.982604242 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libksysguard5
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.14.4
+Version:5.14.5
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.14.4.tar.xz -> libksysguard-5.14.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.14.4/CMakeLists.txt 
new/libksysguard-5.14.5/CMakeLists.txt
--- old/libksysguard-5.14.4/CMakeLists.txt  2018-11-27 17:11:09.0 
+0100
+++ new/libksysguard-5.14.5/CMakeLists.txt  2019-01-08 12:02:04.0 
+0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.14.4")
+set(PROJECT_VERSION "5.14.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.14.4/po/da/processui.po 
new/libksysguard-5.14.5/po/da/processui.po
--- old/libksysguard-5.14.4/po/da/processui.po  2018-11-27 17:10:59.0 
+0100
+++ new/libksysguard-5.14.5/po/da/processui.po  2019-01-08 12:01:54.0 
+0100
@@ -1,21 +1,22 @@
 # translation of processui.po to Danish
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-# Martin Schlander , 2008, 2009, 2010, 2011, 2015.
+# Martin Schlander , 2008, 2009, 2010, 2011, 2015, 
2018.
 # scootergrisen, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-09-14 06:48+0200\n"
-"PO-Revision-Date: 2018-01-19 14:07+0200\n"
-"Last-Translator: scootergrisen\n"
-"Language-Team: Danish\n"
+"PO-Revision-Date: 2018-12-06 20:26+0100\n"
+"Last-Translator: Martin Schlander \n"
+"Language-Team: Danish \n"
 "Language: da\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: ksysguardprocesslist.cpp:205 ksysguardprocesslist.cpp:530
 #, kde-format
@@ -104,12 +105,7 @@
 msgstr "Hurtigsøg i fokus"
 
 #: ksysguardprocesslist.cpp:383
-#, fuzzy, kde-format
-#| msgid ""
-#| "End the selected process. Warning - you may lose unsaved work."
-#| "Right click on a process to send other signals.See What's This "
-#| "for technical information.To target a specific window to kill, press "
-#| "Ctrl+Alt+Esc at any time."
+#, kde-format
 msgid ""
 "End the selected process. Warning - you may lose unsaved work.Right "
 "click on a process to send other signals.See What's This for technical "
@@ -117,22 +113,19 @@
 msgstr ""
 "Afslut den markerede proces. Advarsel - du kan miste ikke-gemt arbejde."
 " Højreklik på en proces for at sende andre signaler.Se \"Hvad er "
-"dette\" for teknisk information.Tryk Ctrl+Alt+Esc på ethvert givet "
-"tidspunkt, for at udpege et specifikt vindue til at blive dræbt."
+"dette\" for teknisk information."
 
 #: ksysguardprocesslist.cpp:418
-#, fuzzy, kde-format
-#| msgctxt "process

commit libksysguard5 for openSUSE:Factory

2018-12-05 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-12-05 09:42:37

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.19453 (New)


Package is "libksysguard5"

Wed Dec  5 09:42:37 2018 rev:77 rq:652330 version:5.14.4

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-11-26 10:15:54.166042070 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.19453/libksysguard5.changes   
2018-12-05 09:42:45.512746900 +0100
@@ -1,0 +2,9 @@
+Wed Nov 28 07:52:46 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.14.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.4.php
+- No code changes since 5.14.3
+
+---

Old:

  libksysguard-5.14.3.tar.xz
  libksysguard-5.14.3.tar.xz.sig

New:

  libksysguard-5.14.4.tar.xz
  libksysguard-5.14.4.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.2ImTLZ/_old  2018-12-05 09:42:46.212746135 +0100
+++ /var/tmp/diff_new_pack.2ImTLZ/_new  2018-12-05 09:42:46.216746130 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.14.3
+Version:5.14.4
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.14.3.tar.xz -> libksysguard-5.14.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.14.3/CMakeLists.txt 
new/libksysguard-5.14.4/CMakeLists.txt
--- old/libksysguard-5.14.3/CMakeLists.txt  2018-11-06 14:54:53.0 
+0100
+++ new/libksysguard-5.14.4/CMakeLists.txt  2018-11-27 17:11:09.0 
+0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.14.3")
+set(PROJECT_VERSION "5.14.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.14.3/po/ca/processui.po 
new/libksysguard-5.14.4/po/ca/processui.po
--- old/libksysguard-5.14.3/po/ca/processui.po  2018-11-06 14:54:17.0 
+0100
+++ new/libksysguard-5.14.4/po/ca/processui.po  2018-11-27 17:10:58.0 
+0100
@@ -10,7 +10,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-09-14 06:48+0200\n"
-"PO-Revision-Date: 2018-07-16 16:12+0100\n"
+"PO-Revision-Date: 2018-11-13 09:46+0100\n"
 "Last-Translator: Antoni Bella Pérez \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -367,20 +367,20 @@
 #: ProcessModel.cpp:602
 #, kde-format
 msgid "- Process is doing some work."
-msgstr "- El procés s'està executant."
+msgstr "-el procés s'està executant-."
 
 #: ProcessModel.cpp:604
 #, kde-format
 msgid "- Process is waiting for something to happen."
-msgstr "- El procés està en espera d'algun esdeveniment."
+msgstr "-el procés està a l'espera d'algun esdeveniment-."
 
 #: ProcessModel.cpp:606
 #, kde-format
 msgid ""
 "- Process has been stopped. It will not respond to user input at the moment."
 msgstr ""
-"- El procés està aturat. No respondrà a les entrades de l'usuari en aquest "
-"moment."
+"-el procés està aturat-. En aquest moment no respondrà a l'entrada de "
+"l'usuari."
 
 #: ProcessModel.cpp:608
 #, kde-format
@@ -388,8 +388,8 @@
 "- Process has finished and is now dead, but the parent process has not "
 "cleaned up."
 msgstr ""
-"- El procés ha finalitzat i ara ja és mort, però el procés pare no l'ha "
-"netejat."
+"-el procés ha finalitzat i ara ja és mort, però el procés pare no l'ha "
+"netejat-."
 
 #: ProcessModel.cpp:982
 #, kde-format
@@ -459,7 +459,7 @@
 msgstr ""
 "Aquesta és la quantitat d'espai de memòria virtual que està usant el "
 "procés, incloses les biblioteques compartides, la memòria gràfica, els "
-"fitxers en disc, i etc. Aquest número gairebé no té sentit."
+"fitxers en el disc, i etc. Aquest número gairebé no té sentit."
 
 #: ProcessModel.cpp:1004
 #, kde-format
@@ -472,7 +472,7 @@
 msgstr ""
 "Aquesta és la quantitat de memòria física real que aquest procés està "
 "usant per si mateix, i s'aproxima a l'ús de la memòria privada del procés."
-"No inclou la memòria d'intercanvi en disc, ni la mida del codi de les "
+"No inclou la memòria d'intercanvi en el disc, ni la mida del codi de les "
 "seves biblioteques compartides.Moltes vegades, aquesta és la manera més "
 "útil d'entendre l'ús de la memòria d'un programa. Vegeu «Què és això?» per a "

commit libksysguard5 for openSUSE:Factory

2018-11-26 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-11-26 10:15:51

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new.19453 (New)


Package is "libksysguard5"

Mon Nov 26 10:15:51 2018 rev:76 rq:648933 version:5.14.3

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-11-10 16:53:20.420197171 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.19453/libksysguard5.changes   
2018-11-26 10:15:54.166042070 +0100
@@ -1,0 +2,5 @@
+Wed Nov 14 11:02:43 UTC 2018 - Fabian Vogt 
+
+- Don't try to use WebEngine on unsupported architectures
+
+---



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.cAev2n/_old  2018-11-26 10:15:54.750041386 +0100
+++ /var/tmp/diff_new_pack.cAev2n/_new  2018-11-26 10:15:54.750041386 +0100
@@ -50,7 +50,9 @@
 BuildRequires:  cmake(KF5WindowSystem)
 BuildRequires:  cmake(Qt5DBus) >= 5.4.0
 BuildRequires:  cmake(Qt5Network) >= 5.4.0
+%ifnarch ppc ppc64 ppc64le s390 s390x
 BuildRequires:  cmake(Qt5WebEngineWidgets) >= 5.4.0
+%endif
 BuildRequires:  cmake(Qt5Widgets) >= 5.4.0
 BuildRequires:  cmake(Qt5X11Extras) >= 5.4.0
 BuildRequires:  pkgconfig(x11)






commit libksysguard5 for openSUSE:Factory

2018-11-10 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-11-10 16:53:16

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Sat Nov 10 16:53:16 2018 rev:75 rq:646864 version:5.14.3

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-10-29 14:57:49.837898467 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-11-10 16:53:20.420197171 +0100
@@ -1,0 +2,10 @@
+Tue Nov  6 15:53:28 UTC 2018 - fab...@ritter-vogt.de
+
+- Add David Edmundson's key to plasma.keyring
+- Update to 5.14.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.3.php
+- No code changes since 5.14.2
+
+---

Old:

  libksysguard-5.14.2.tar.xz
  libksysguard-5.14.2.tar.xz.sig

New:

  libksysguard-5.14.3.tar.xz
  libksysguard-5.14.3.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.S6mSG3/_old  2018-11-10 16:53:22.152195046 +0100
+++ /var/tmp/diff_new_pack.S6mSG3/_new  2018-11-10 16:53:22.180195012 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.14.2
+Version:5.14.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.14.2.tar.xz -> libksysguard-5.14.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.14.2/CMakeLists.txt 
new/libksysguard-5.14.3/CMakeLists.txt
--- old/libksysguard-5.14.2/CMakeLists.txt  2018-10-23 13:41:14.0 
+0200
+++ new/libksysguard-5.14.3/CMakeLists.txt  2018-11-06 14:54:53.0 
+0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.14.2")
+set(PROJECT_VERSION "5.14.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.14.2/po/de/ksgrd.po 
new/libksysguard-5.14.3/po/de/ksgrd.po
--- old/libksysguard-5.14.2/po/de/ksgrd.po  2018-10-23 13:39:04.0 
+0200
+++ new/libksysguard-5.14.3/po/de/ksgrd.po  2018-11-06 14:54:19.0 
+0100
@@ -4,7 +4,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-09-14 06:48+0200\n"
-"PO-Revision-Date: 2018-10-09 06:32+0100\n"
+"PO-Revision-Date: 2018-10-24 10:50+0100\n"
 "Last-Translator: Burkhard Lück \n"
 "Language-Team: German \n"
 "Language: de\n"
@@ -706,12 +706,12 @@
 #: SensorManager.cpp:223
 #, kde-format
 msgid "Rx Invalid Crypt Packets"
-msgstr ""
+msgstr "Empfangene ungültige verschlüsselte Pakete"
 
 #: SensorManager.cpp:224
 #, kde-format
 msgid "Total Rx Invalid Crypt Packets"
-msgstr ""
+msgstr "Summe empfangene ungültige verschlüsselte Pakete"
 
 #: SensorManager.cpp:225
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.14.2/po/hu/processui.po 
new/libksysguard-5.14.3/po/hu/processui.po
--- old/libksysguard-5.14.2/po/hu/processui.po  2018-10-23 13:39:32.0 
+0200
+++ new/libksysguard-5.14.3/po/hu/processui.po  2018-11-06 14:54:28.0 
+0100
@@ -6,13 +6,14 @@
 # Kiszel Kristóf , 2010, 2017.
 # Kristóf Kiszel , 2010, 2011, 2012.
 # Balázs Úr , 2012.
+# Kristof Kiszel , 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: KDE 4.2\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-09-14 06:48+0200\n"
-"PO-Revision-Date: 2017-02-24 22:23+0100\n"
-"Last-Translator: Kiszel Kristóf \n"
+"PO-Revision-Date: 2018-10-30 23:19+0100\n"
+"Last-Translator: Kristof Kiszel \n"
 "Language-Team: Hungarian \n"
 "Language: hu\n"
 "MIME-Version: 1.0\n"
@@ -108,12 +109,7 @@
 msgstr "Fókusz a gyorskeresőre"
 
 #: ksysguardprocesslist.cpp:383
-#, fuzzy, kde-format
-#| msgid ""
-#| "End the selected process. Warning - you may lose unsaved work."
-#| "Right click on a process to send other signals.See What's This "
-#| "for technical information.To target a specific window to kill, press "
-#| "Ctrl+Alt+Esc at any time."
+#, kde-format
 msgid ""
 "End the selected process. Warning - you may lose unsaved work.Right "
 "click on a process to send other signals.See What's This for technical "
@@ -121,22 +117,19 @@
 msgstr ""
 "Leállítja a kiválasztott folyamatot. Figyelem - az el nem mentett munkái "
 "elveszhetnek.Egyéb szignált jobb gombbal egy folya

commit libksysguard5 for openSUSE:Factory

2018-10-29 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-10-29 14:18:46

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Mon Oct 29 14:18:46 2018 rev:74 rq:644051 version:5.14.2

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-10-22 11:21:13.123285064 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-10-29 14:57:49.837898467 +0100
@@ -1,0 +2,9 @@
+Tue Oct 23 13:55:49 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.14.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.2.php
+- No code changes since 5.14.1
+
+---

Old:

  libksysguard-5.14.1.tar.xz
  libksysguard-5.14.1.tar.xz.sig

New:

  libksysguard-5.14.2.tar.xz
  libksysguard-5.14.2.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.tgH6Pe/_old  2018-10-29 14:57:50.357899760 +0100
+++ /var/tmp/diff_new_pack.tgH6Pe/_new  2018-10-29 14:57:50.357899760 +0100
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.14.1
+Version:5.14.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/5.14.1/libksysguard-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/5.14.1/libksysguard-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf

++ libksysguard-5.14.1.tar.xz -> libksysguard-5.14.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.14.1/CMakeLists.txt 
new/libksysguard-5.14.2/CMakeLists.txt
--- old/libksysguard-5.14.1/CMakeLists.txt  2018-10-16 14:32:45.0 
+0200
+++ new/libksysguard-5.14.2/CMakeLists.txt  2018-10-23 13:41:14.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.14.1")
+set(PROJECT_VERSION "5.14.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.14.1/po/gl/processui.po 
new/libksysguard-5.14.2/po/gl/processui.po
--- old/libksysguard-5.14.1/po/gl/processui.po  2018-10-16 14:32:35.0 
+0200
+++ new/libksysguard-5.14.2/po/gl/processui.po  2018-10-23 13:39:25.0 
+0200
@@ -12,8 +12,8 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-09-14 06:48+0200\n"
-"PO-Revision-Date: 2018-04-28 21:23+0100\n"
-"Last-Translator: Adrian Chaves \n"
+"PO-Revision-Date: 2018-10-21 21:01+0100\n"
+"Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
@@ -112,12 +112,7 @@
 msgstr "Focalizar a busca rápida"
 
 #: ksysguardprocesslist.cpp:383
-#, fuzzy, kde-format
-#| msgid ""
-#| "End the selected process. Warning - you may lose unsaved work."
-#| "Right click on a process to send other signals.See What's This "
-#| "for technical information.To target a specific window to kill, press "
-#| "Ctrl+Alt+Esc at any time."
+#, kde-format
 msgid ""
 "End the selected process. Warning - you may lose unsaved work.Right "
 "click on a process to send other signals.See What's This for technical "
@@ -125,22 +120,19 @@
 msgstr ""
 "Finaliza o proceso escollido. Advertencia: pode perder o traballo non "
 "gardado.Prema o botón dereito nun proceso para enviar outros sinais."
-"Consulte o Que é isto? para obter información técnica.Para indicar "
-"unha xanela específica para matala prema Ctrl+Alt+Esc en calquera momento."
+"Consulte o Que é isto? para obter información técnica."
 
 #: ksysguardprocesslist.cpp:418
-#, fuzzy, kde-format
-#| msgctxt "process heading"
-#| msgid "Command"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "Run Command"
-msgstr "Orde"
+msgstr "Executar unha orde"
 
 #: ksysguardprocesslist.cpp:435
 #, kde-format
 msgctxt "@action:inmenu"
 msgid "Kill a Window"
-msgstr ""
+msgstr "Matar unha xanela"
 
 #: ksysguardprocesslist.cpp:

commit libksysguard5 for openSUSE:Factory

2018-10-22 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-10-22 11:20:10

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Mon Oct 22 11:20:10 2018 rev:73 rq:642462 version:5.14.1

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-10-15 09:37:47.311685215 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-10-22 11:21:13.123285064 +0200
@@ -1,0 +2,9 @@
+Tue Oct 16 14:05:14 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.14.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.1.php
+- No code changes since 5.14.0
+
+---

Old:

  libksysguard-5.14.0.tar.xz
  libksysguard-5.14.0.tar.xz.sig

New:

  libksysguard-5.14.1.tar.xz
  libksysguard-5.14.1.tar.xz.sig



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.8Bvjy0/_old  2018-10-22 11:21:13.595284581 +0200
+++ /var/tmp/diff_new_pack.8Bvjy0/_new  2018-10-22 11:21:13.599284576 +0200
@@ -12,21 +12,21 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.14.0
+Version:5.14.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: libksysguard-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/5.14.1/libksysguard-%{version}.tar.xz
 %if %{with lang}
-Source1:libksysguard-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/5.14.1/libksysguard-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf

++ libksysguard-5.14.0.tar.xz -> libksysguard-5.14.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.14.0/CMakeLists.txt 
new/libksysguard-5.14.1/CMakeLists.txt
--- old/libksysguard-5.14.0/CMakeLists.txt  2018-10-05 19:21:39.0 
+0200
+++ new/libksysguard-5.14.1/CMakeLists.txt  2018-10-16 14:32:45.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.14.0")
+set(PROJECT_VERSION "5.14.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.14.0/po/de/ksgrd.po 
new/libksysguard-5.14.1/po/de/ksgrd.po
--- old/libksysguard-5.14.0/po/de/ksgrd.po  2018-10-05 19:19:19.0 
+0200
+++ new/libksysguard-5.14.1/po/de/ksgrd.po  2018-10-16 14:32:33.0 
+0200
@@ -1,10 +1,10 @@
-# Burkhard Lück , 2013, 2014, 2015, 2016.
+# Burkhard Lück , 2013, 2014, 2015, 2016, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-09-14 06:48+0200\n"
-"PO-Revision-Date: 2016-06-02 10:59+0100\n"
+"PO-Revision-Date: 2018-10-09 06:32+0100\n"
 "Last-Translator: Burkhard Lück \n"
 "Language-Team: German \n"
 "Language: de\n"
@@ -696,12 +696,12 @@
 #: SensorManager.cpp:221
 #, kde-format
 msgid "Rx Invalid Nwid Packets"
-msgstr ""
+msgstr "Empfangene ungültige Nwid-Pakete"
 
 #: SensorManager.cpp:222
 #, kde-format
 msgid "Total Rx Invalid Nwid Packets"
-msgstr ""
+msgstr "Summe empfangene ungültige Nwid-Pakete"
 
 #: SensorManager.cpp:223
 #, kde-format
@@ -716,12 +716,12 @@
 #: SensorManager.cpp:225
 #, kde-format
 msgid "Rx Invalid Frag Packets"
-msgstr ""
+msgstr "Empfangene ungültige fragmentierte Pakete"
 
 #: SensorManager.cpp:226
 #, kde-format
 msgid "Total Rx Invalid Frag Packets"
-msgstr ""
+msgstr "Summe empfangene ungültige fragmentierte Pakete"
 
 #: SensorManager.cpp:227
 #, kde-format
@@ -736,22 +736,22 @@
 #: SensorManager.cpp:229
 #, kde-format
 msgid "Invalid Misc Packets"
-msgstr ""
+msgstr "Ungültige sonstige Pakete"
 
 #: SensorManager.cpp:230
 #, kde-format
 msgid "Total Invalid Misc Packets"
-msgstr ""
+msgstr "Summe ungültige sonstige Pakete"
 
 #: SensorManager.cpp:231
 #, kde-format
 msgid "Missed Beacons"
-msgstr ""
+msgstr "Verloren gegangene Beacons"
 
 #: SensorManager.cpp:232
 #, kde-format
 msgid "Total Miss

commit libksysguard5 for openSUSE:Factory

2018-10-15 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-10-15 09:37:39

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Mon Oct 15 09:37:39 2018 rev:72 rq:641952 version:5.14.0

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-10-08 17:41:17.126800260 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-10-15 09:37:47.311685215 +0200
@@ -1,0 +2,7 @@
+Sat Oct 13 16:37:32 UTC 2018 - fab...@ritter-vogt.de
+
+- Add patch to use WebEngine instead of WebKit:
+  * 0001-Port-scripting-to-Qt-WebEngine.patch
+- Use gcc7 on Leap 42.3
+
+---

New:

  0001-Port-scripting-to-Qt-WebEngine.patch



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.xPNBtr/_old  2018-10-15 09:37:49.615683096 +0200
+++ /var/tmp/diff_new_pack.xPNBtr/_new  2018-10-15 09:37:49.615683096 +0200
@@ -30,6 +30,8 @@
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf
+# PATCH-FEATURE-UPSTREAM
+Patch100:   0001-Port-scripting-to-Qt-WebEngine.patch
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem
 BuildRequires:  xz
@@ -48,12 +50,16 @@
 BuildRequires:  cmake(KF5WindowSystem)
 BuildRequires:  cmake(Qt5DBus) >= 5.4.0
 BuildRequires:  cmake(Qt5Network) >= 5.4.0
-BuildRequires:  cmake(Qt5WebKitWidgets) >= 5.4.0
+BuildRequires:  cmake(Qt5WebEngineWidgets) >= 5.4.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.4.0
 BuildRequires:  cmake(Qt5X11Extras) >= 5.4.0
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xres)
 BuildRequires:  pkgconfig(zlib)
+%if 0%{?suse_version} < 1330
+# It does not build with the default compiler (GCC 4.8) on Leap 42.x
+BuildRequires:  gcc7-c++
+%endif
 Recommends: %{name}-lang
 
 %description
@@ -85,10 +91,16 @@
 for actions that require elevated privileges.
 
 %lang_package
+
 %prep
-%setup -q -n libksysguard-%{version}
+%autosetup -p1 -n libksysguard-%{version}
 
 %build
+  %if 0%{?suse_version} < 1330
+  # It does not build with the default compiler (GCC 4.8) on Leap 42.x
+export CC=gcc-7
+export CXX=g++-7
+  %endif
   %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=%{_kf5_localedir}
   %make_jobs
 

++ 0001-Port-scripting-to-Qt-WebEngine.patch ++
>From c9747e37c53101c8228f9571c9367ce4193d3b51 Mon Sep 17 00:00:00 2001
From: Fabian Vogt 
Date: Sat, 1 Sep 2018 18:41:59 +0200
Subject: [PATCH] Port scripting to Qt WebEngine

Summary:
Unfortunately it relies on Qt WebKit features quite intensely, so a few
godawful hacks were necessary to make it work. Most of those are needed
to workaround restrictions of QWebChannel as bridge to the browser page.

We gain:
+ Independence from WebKit
+ Support for newer JS and HTML features in scripts

We lose:
- Performance (especially memory use)
- Independence from WebEngine
- Sanity

Test Plan:
Tested the detailed memory info pages on a few processes, info is
correct and the page seems to work fully.

Reviewers: #plasma, davidedmundson

Reviewed By: #plasma, davidedmundson

Subscribers: davidedmundson, plasma-devel

Tags: #plasma

Differential Revision: https://phabricator.kde.org/D15209
---
 CMakeLists.txt   |  10 +--
 config-ksysguard.h.cmake |   4 +-
 processui/CMakeLists.txt |   4 +-
 processui/scripting.cpp  | 180 +--
 processui/scripting.h| 109 +---
 5 files changed, 203 insertions(+), 104 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8211298..8b59bdb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -26,10 +26,10 @@ include(CheckLibraryExists)
 include(FeatureSummary)
 
 find_package(Qt5 ${QT_MIN_VERSION} REQUIRED CONFIG COMPONENTS DBus Network 
Widgets)
-find_package(Qt5WebKitWidgets ${QT_MIN_VERSION} CONFIG)
-set_package_properties(Qt5WebKitWidgets PROPERTIES
-   URL "git://gitorious.org/qt/qtwebkit.git"
-   DESCRIPTION "Qt Webkit module (web browsing engine)"
+find_package(Qt5WebEngineWidgets ${QT_MIN_VERSION} CONFIG)
+set_package_properties(Qt5WebEngineWidgets PROPERTIES
+   URL "git://code.qt.org/qt/qtwebenginewidgets.git"
+   DESCRIPTION "Qt WebEngine module (web browsing engine)"
TYPE OPTIONAL
PURPOSE "Used by the HTML-based GUI ksysguard library"
   )
@@ -76,7 +76,7 @@ endif()
 
 set(HAVE_X11 ${X11_FOUND})
 set(HAVE_XRES ${X11_XRes_FOUND})
-set(HAVE_QTWEBKITWIDGETS ${Qt5WebKitWidgets_FOUND})
+set(HAVE_QTWEBENGINEWI

commit libksysguard5 for openSUSE:Factory

2018-10-08 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-10-08 17:41:08

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Mon Oct  8 17:41:08 2018 rev:71 rq:640306 version:5.14.0

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-09-13 23:52:09.662374743 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-10-08 17:41:17.126800260 +0200
@@ -1,0 +2,27 @@
+Fri Oct  5 10:01:11 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:29 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:25:02 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:
+  * Use lambda instead of QSignalMapper
+  * Add new "Tools" button above System Monitor's process list
+  * Remove unneeded QT definitions
+
+---

Old:

  libksysguard-5.13.5.tar.xz

New:

  libksysguard-5.14.0.tar.xz
  libksysguard-5.14.0.tar.xz.sig
  plasma.keyring



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.ainLqz/_old  2018-10-08 17:41:18.234798848 +0200
+++ /var/tmp/diff_new_pack.ainLqz/_new  2018-10-08 17:41:18.238798844 +0200
@@ -18,14 +18,18 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.13.5
+Version:5.14.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
-Source1:baselibs.conf
+Source: libksysguard-%{version}.tar.xz
+%if %{with lang}
+Source1:libksysguard-%{version}.tar.xz.sig
+Source2:plasma.keyring
+%endif
+Source3:baselibs.conf
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem
 BuildRequires:  xz
@@ -34,8 +38,10 @@
 BuildRequires:  cmake(KF5Config)
 BuildRequires:  cmake(KF5ConfigWidgets)
 BuildRequires:  cmake(KF5CoreAddons)
+BuildRequires:  cmake(KF5GlobalAccel)
 BuildRequires:  cmake(KF5I18n)
 BuildRequires:  cmake(KF5IconThemes)
+BuildRequires:  cmake(KF5KIO)
 BuildRequires:  cmake(KF5Plasma)
 BuildRequires:  cmake(KF5Service)
 BuildRequires:  cmake(KF5WidgetsAddons)

++ libksysguard-5.13.5.tar.xz -> libksysguard-5.14.0.tar.xz ++
 36918 lines of diff (skipped)




commit libksysguard5 for openSUSE:Factory

2018-09-13 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-09-13 23:52:08

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Thu Sep 13 23:52:08 2018 rev:70 rq:633156 version:5.13.5

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-08-03 12:33:43.559251808 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-09-13 23:52:09.662374743 +0200
@@ -1,0 +2,10 @@
+Tue Sep  4 10:58:41 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.5.php
+- Changes since 5.13.4:
+  * None
+
+---

Old:

  libksysguard-5.13.4.tar.xz

New:

  libksysguard-5.13.5.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.lUhmCy/_old  2018-09-13 23:52:10.194374371 +0200
+++ /var/tmp/diff_new_pack.lUhmCy/_new  2018-09-13 23:52:10.198374369 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.13.4
+Version:5.13.5
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.13.4.tar.xz -> libksysguard-5.13.5.tar.xz ++
 3339 lines of diff (skipped)




commit libksysguard5 for openSUSE:Factory

2018-08-03 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-08-03 12:33:41

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Fri Aug  3 12:33:41 2018 rev:69 rq:626839 version:5.13.4

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-07-14 20:19:37.823323321 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-08-03 12:33:43.559251808 +0200
@@ -1,0 +2,10 @@
+Tue Jul 31 15:18:33 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.4.php
+- Changes since 5.13.3:
+  * None
+
+---

Old:

  libksysguard-5.13.3.tar.xz

New:

  libksysguard-5.13.4.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.jRbAPf/_old  2018-08-03 12:33:43.931252357 +0200
+++ /var/tmp/diff_new_pack.jRbAPf/_new  2018-08-03 12:33:43.931252357 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.13.3
+Version:5.13.4
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.13.3.tar.xz -> libksysguard-5.13.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.3/CMakeLists.txt 
new/libksysguard-5.13.4/CMakeLists.txt
--- old/libksysguard-5.13.3/CMakeLists.txt  2018-07-10 12:09:46.0 
+0200
+++ new/libksysguard-5.13.4/CMakeLists.txt  2018-07-31 14:49:12.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.13.3")
+set(PROJECT_VERSION "5.13.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.3/po/cs/processui.po 
new/libksysguard-5.13.4/po/cs/processui.po
--- old/libksysguard-5.13.3/po/cs/processui.po  2018-07-10 12:09:25.0 
+0200
+++ new/libksysguard-5.13.4/po/cs/processui.po  2018-07-31 14:48:36.0 
+0200
@@ -1,6 +1,6 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Vít Pelčák , 2010, 2011, 2012, 2013, 2014, 2015, 2017.
+# Vít Pelčák , 2010, 2011, 2012, 2013, 2014, 2015, 2017, 2018.
 # Tomáš Chvátal , 2012.
 #
 msgid ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.3/po/fr/processui.po 
new/libksysguard-5.13.4/po/fr/processui.po
--- old/libksysguard-5.13.3/po/fr/processui.po  2018-07-10 12:09:29.0 
+0200
+++ new/libksysguard-5.13.4/po/fr/processui.po  2018-07-31 14:48:43.0 
+0200
@@ -10,6 +10,7 @@
 # Sébastien Renard , 2011.
 # xavier , 2013.
 # Vincent Pinon , 2016, 2017.
+# Simon Depiets , 2018.
 #
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.3/po/id/processui.po 
new/libksysguard-5.13.4/po/id/processui.po
--- old/libksysguard-5.13.3/po/id/processui.po  2018-07-10 12:09:32.0 
+0200
+++ new/libksysguard-5.13.4/po/id/processui.po  2018-07-31 14:48:49.0 
+0200
@@ -9,8 +9,8 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-05-25 06:23+0200\n"
-"PO-Revision-Date: 2018-06-13 21:19+0700\n"
-"Last-Translator: Wantoyo \n"
+"PO-Revision-Date: 2018-07-23 06:27+0700\n"
+"Last-Translator: wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
 "MIME-Version: 1.0\n"
@@ -233,8 +233,8 @@
 "You do not have the permission to renice the process and there was a problem "
 "trying to run as root.  Error %1 %2"
 msgstr ""
-"Anda tak memiliki hak akses untuk renice proses dan ada masalah ketika coba "
-"menjalankan sebagai root. Error %1 %2"
+"Anda tidak memiliki hak akses untuk renice proses dan ada masalah ketika "
+"coba menjalankan sebagai root. Error %1 %2"
 
 #: ksysguardprocesslist.cpp:1106 ksysguardprocesslist.cpp:1331
 #, kde-format
@@ -247,7 +247,7 @@
 "You do not have the permission to change the I/O priority of the process and "
 "there was a problem trying to run as root.  Error %1 %2"
 msgstr ""
-"Anda tak memiliki hak akses untuk mengubah prioritas I/O proses dan ada "
+"Anda tidak memiliki hak akses untuk mengubah prioritas I/O proses dan ada "
 "masalah ketika coba menja

commit libksysguard5 for openSUSE:Factory

2018-07-14 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-07-14 20:18:25

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Sat Jul 14 20:18:25 2018 rev:68 rq:622121 version:5.13.3

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-07-01 21:22:53.373042518 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-07-14 20:19:37.823323321 +0200
@@ -1,0 +2,10 @@
+Tue Jul 10 14:02:03 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.3.php
+- Changes since 5.13.2:
+  * None
+
+---

Old:

  libksysguard-5.13.2.tar.xz

New:

  libksysguard-5.13.3.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.XLnpRB/_old  2018-07-14 20:19:38.311324577 +0200
+++ /var/tmp/diff_new_pack.XLnpRB/_new  2018-07-14 20:19:38.319324598 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.13.2
+Version:5.13.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.13.2.tar.xz -> libksysguard-5.13.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.2/CMakeLists.txt 
new/libksysguard-5.13.3/CMakeLists.txt
--- old/libksysguard-5.13.2/CMakeLists.txt  2018-06-26 13:49:35.0 
+0200
+++ new/libksysguard-5.13.3/CMakeLists.txt  2018-07-10 12:09:46.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.13.2")
+set(PROJECT_VERSION "5.13.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.2/po/ca/processui.po 
new/libksysguard-5.13.3/po/ca/processui.po
--- old/libksysguard-5.13.2/po/ca/processui.po  2018-06-26 13:49:05.0 
+0200
+++ new/libksysguard-5.13.3/po/ca/processui.po  2018-07-10 12:09:25.0 
+0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-05-25 06:23+0200\n"
-"PO-Revision-Date: 2018-01-02 22:41+0100\n"
+"PO-Revision-Date: 2018-06-30 18:10+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -590,7 +590,7 @@
 "memòria privada, calculat com a VmRSS - Compartit, des de /proc/*/statm. "
 "Tendeix a subestimar l'ús real de la memòria privada d'un procés (no inclou "
 "les pàgines de memòria d'E/S en segon pla), però és la millor estimació que "
-"és més ràpida de determinar. Aquest a vegades es coneix com URSS (Unique "
+"és més ràpida de determinar. Aquest a vegades es coneix com a URSS (Unique "
 "Resident Set Size, «Mida d'espai resident únic»). Per a un procés "
 "individual, vegeu «Informació detallada de memòria» per a un càlcul més "
 "acurat, però més lent, de l'ús de memòria privada real."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.2/po/ca@valencia/processui.po 
new/libksysguard-5.13.3/po/ca@valencia/processui.po
--- old/libksysguard-5.13.2/po/ca@valencia/processui.po 2018-06-26 
13:49:05.0 +0200
+++ new/libksysguard-5.13.3/po/ca@valencia/processui.po 2018-07-10 
12:09:25.0 +0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-05-25 06:23+0200\n"
-"PO-Revision-Date: 2018-01-02 22:41+0100\n"
+"PO-Revision-Date: 2018-06-30 18:10+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca@valencia\n"
@@ -590,7 +590,7 @@
 "memòria privada, calculat com a VmRSS - Compartit, des de /proc/*/statm. "
 "Tendeix a subestimar l'ús real de la memòria privada d'un procés (no inclou "
 "les pàgines de memòria d'E/S en segon pla), però és la millor estimació que "
-"és més ràpida de determinar. Aquest a vegades es coneix com URSS (Unique "
+"és més ràpida de determinar. Aquest a vegades es coneix com a URSS (Unique "
 "Resident Set Size, «Mida d'espai resident únic»). Per a un procés "
 "individual, vegeu «Informació detallada de memòria» per a un càlcul més "
 "acurat, però més lent, de l'ús de memòria privada real."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 

commit libksysguard5 for openSUSE:Factory

2018-07-01 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-07-01 21:22:52

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Sun Jul  1 21:22:52 2018 rev:67 rq:619313 version:5.13.2

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-06-26 10:35:34.562869298 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-07-01 21:22:53.373042518 +0200
@@ -1,0 +2,10 @@
+Tue Jun 26 16:00:53 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.2.php
+- Changes since 5.13.1:
+  * None
+
+---

Old:

  libksysguard-5.13.1.tar.xz

New:

  libksysguard-5.13.2.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.szEysP/_old  2018-07-01 21:22:53.713042074 +0200
+++ /var/tmp/diff_new_pack.szEysP/_new  2018-07-01 21:22:53.717042069 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.13.1
+Version:5.13.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0-or-later

++ libksysguard-5.13.1.tar.xz -> libksysguard-5.13.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.1/CMakeLists.txt 
new/libksysguard-5.13.2/CMakeLists.txt
--- old/libksysguard-5.13.1/CMakeLists.txt  2018-06-19 12:38:33.0 
+0200
+++ new/libksysguard-5.13.2/CMakeLists.txt  2018-06-26 13:49:35.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.13.1")
+set(PROJECT_VERSION "5.13.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.1/po/nn/processui.po 
new/libksysguard-5.13.2/po/nn/processui.po
--- old/libksysguard-5.13.1/po/nn/processui.po  2018-06-19 12:38:18.0 
+0200
+++ new/libksysguard-5.13.2/po/nn/processui.po  2018-06-26 13:49:23.0 
+0200
@@ -3,13 +3,14 @@
 # Karl Ove Hufthammer , 2007, 2008, 2009, 2010, 2011, 2012, 
2015, 2017, 2018.
 # Håvard Korsvoll , 2008.
 # Eirik U. Birkeland , 2008, 2009, 2010, 2011.
+# Øystein Steffensen-Alværvik , 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-05-25 06:23+0200\n"
-"PO-Revision-Date: 2018-05-18 19:23+0100\n"
-"Last-Translator: Karl Ove Hufthammer \n"
+"PO-Revision-Date: 2018-06-19 14:31+0100\n"
+"Last-Translator: Øystein Steffensen-Alværvik \n"
 "Language-Team: Norwegian Nynorsk \n"
 "Language: nn\n"
 "MIME-Version: 1.0\n"
@@ -455,10 +456,10 @@
 "of a program.  See What's This for more information."
 msgstr ""
 "Dette er mengda verkeleg fysisk minne denne prosessen brukar sjølv, og "
-"omtrentleg privat minnebruk for prosessen.Det tek ikkje ikkje med plass "
-"i veksleminnet, heller ikkje kodestorleiken for delte bibliotek.Dette "
-"er ofte det nyttigaste talet ein kan bruka for å finna ut minnebruken til "
-"eit program. Sjå «Kva er dette?» for meir informasjon."
+"omtrentleg privat minnebruk for prosessen.Det tek ikkje med plass i "
+"veksleminnet, heller ikkje kodestorleiken for delte bibliotek.Dette er "
+"ofte det nyttigaste talet ein kan bruka for å finna ut minnebruken til eit "
+"program. Sjå «Kva er dette?» for meir informasjon."
 
 #: ProcessModel.cpp:1006
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.1/po/zh_CN/ksgrd.po 
new/libksysguard-5.13.2/po/zh_CN/ksgrd.po
--- old/libksysguard-5.13.1/po/zh_CN/ksgrd.po   2018-06-19 12:38:32.0 
+0200
+++ new/libksysguard-5.13.2/po/zh_CN/ksgrd.po   2018-06-26 13:49:34.0 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-01-23 03:30+0100\n"
-"PO-Revision-Date: 2018-06-12 17:52-0400\n"
+"PO-Revision-Date: 2018-06-19T17:12:28+\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.1/po/zh_CN/ksysguardlsofwidgets.po 
new/libksysguard-5.13.2/po/zh_CN/ksysguardlsofwidgets.po
--- old/libksysguard-5.13.1/po/zh_CN/ksysguardlsofwidgets.p

commit libksysguard5 for openSUSE:Factory

2018-06-26 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-06-26 10:35:31

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Tue Jun 26 10:35:31 2018 rev:66 rq:617974 version:5.13.1

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-06-13 15:31:31.213941173 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-06-26 10:35:34.562869298 +0200
@@ -1,0 +2,10 @@
+Tue Jun 19 14:44:43 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.1.php
+- Changes since 5.13.0:
+  * None
+
+---

Old:

  libksysguard-5.13.0.tar.xz

New:

  libksysguard-5.13.1.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.62w1CB/_old  2018-06-26 10:35:35.358840040 +0200
+++ /var/tmp/diff_new_pack.62w1CB/_new  2018-06-26 10:35:35.362839893 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.13.0
+Version:5.13.1
 Release:0
 Summary:Task management and system monitoring library
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: libksysguard-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem

++ libksysguard-5.13.0.tar.xz -> libksysguard-5.13.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.0/CMakeLists.txt 
new/libksysguard-5.13.1/CMakeLists.txt
--- old/libksysguard-5.13.0/CMakeLists.txt  2018-06-07 16:08:05.0 
+0200
+++ new/libksysguard-5.13.1/CMakeLists.txt  2018-06-19 12:38:33.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.13.0")
+set(PROJECT_VERSION "5.13.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.0/po/id/processui.po 
new/libksysguard-5.13.1/po/id/processui.po
--- old/libksysguard-5.13.0/po/id/processui.po  2018-06-07 16:05:46.0 
+0200
+++ new/libksysguard-5.13.1/po/id/processui.po  2018-06-19 12:38:09.0 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-05-25 06:23+0200\n"
-"PO-Revision-Date: 2018-05-23 22:49+0700\n"
+"PO-Revision-Date: 2018-06-13 21:19+0700\n"
 "Last-Translator: Wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
@@ -355,8 +355,8 @@
 msgid ""
 "- Process has been stopped. It will not respond to user input at the moment."
 msgstr ""
-"- Proses telah berhenti. Proses tidak akan merespon terhadap masukan "
-"pengguna saat ini."
+"- Proses telah berhenti. Proses tidak akan merespon terhadap intput pengguna "
+"saat ini."
 
 #: ProcessModel.cpp:608
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.0/po/zh_CN/ksgrd.po 
new/libksysguard-5.13.1/po/zh_CN/ksgrd.po
--- old/libksysguard-5.13.0/po/zh_CN/ksgrd.po   2018-06-07 16:07:57.0 
+0200
+++ new/libksysguard-5.13.1/po/zh_CN/ksgrd.po   2018-06-19 12:38:32.0 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-01-23 03:30+0100\n"
-"PO-Revision-Date: 2018-05-18 06:19-0400\n"
+"PO-Revision-Date: 2018-06-12 17:52-0400\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -19,7 +19,7 @@
 "X-Generator: crowdin.com\n"
 "X-Crowdin-Project: kdeorg\n"
 "X-Crowdin-Language: zh-CN\n"
-"X-Crowdin-File: /kf5-trunk/messages/kde-workspace/ksgrd.pot\n"
+"X-Crowdin-File: /kf5-stable/messages/kde-workspace/ksgrd.pot\n"
 
 #: SensorAgent.cpp:111
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.13.0/po/zh_CN/ksysguardlsofwidgets.po 
new/libksysguard-5.13.1/po/zh_CN/ksysguardlsofwidgets.po
--- old/libksysguard-5.13.0/po/zh_CN/ksysguardlsofwidgets.po2018-06-07 
16:07:57.0 +0200
+++ new/libksysguard-5.13.1/po/zh_CN/ksysg

commit libksysguard5 for openSUSE:Factory

2018-06-13 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-06-13 15:31:29

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Wed Jun 13 15:31:29 2018 rev:65 rq:615751 version:5.13.0

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-05-08 13:34:59.954621675 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-06-13 15:31:31.213941173 +0200
@@ -1,0 +2,42 @@
+Thu Jun  7 20:03:51 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.0.php
+- Changes since 5.12.90:
+  * [ProcessModel] Center more column headings (kde#394467)
+
+---
+Sat May 19 14:16:37 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.90.php
+- Changes since 5.12.5:
+  * Fix whitespace
+  * Use non-deprecated KDEInstallDirs variables
+  * Remove Qt includes with module namespace
+  * Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN
+  * Use QT_MIN_VERSION & KF5_MIN_VERSION variables
+  * Have a single grouping of cmake macro includes, as done elsewhere
+  * Port to non-deprecated NETWinInfo constructor
+  * "Port" QStyleOptionViewItemV4 -> QStyleOptionViewItem
+  * Drop ECMPackageConfigHelpers for CMakePackageConfigHelpers
+  * Fix compiler warning
+  * Fix log name
+  * Split debug categories in several categories + autogenerate it + install 
categories file
+  * Some QChar items I missed, and it turns out QStringLiteral can't be used 
there, so just fromUtf8 it
+  * Complete porting of the code away from ASCII and Byte Array casting as 
started by the previous commit.
+  * Remove 'remove_definitions(-DQT_NO_CAST_FROM_ASCII 
-DQT_NO_CAST_FROM_BYTEARRAY'
+  * Const'ref
+  * Use QStringLiteral (why this test is not build here ? )
+  * Const'ref
+  * Clean up, const'ify
+  * Remove qt include namespace.
+  * Fix i18n formating
+  * Make it compile
+  * Make it compile with strict compile flags.
+
+---

Old:

  libksysguard-5.12.5.tar.xz

New:

  libksysguard-5.13.0.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.AP5PI7/_old  2018-06-13 15:31:32.077909365 +0200
+++ /var/tmp/diff_new_pack.AP5PI7/_new  2018-06-13 15:31:32.085909070 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.12.5
+Version:5.13.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
+Source: libksysguard-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem
@@ -48,11 +48,7 @@
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xres)
 BuildRequires:  pkgconfig(zlib)
-%if %{with lang}
 Recommends: %{name}-lang
-%endif
-#BuildRequires:  update-desktop-files
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Task management and system monitoring library.
@@ -101,26 +97,24 @@
 %postun -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_libdir}/libksgrd.so.*
 %{_kf5_libdir}/liblsofui.so.*
 %{_kf5_libdir}/libksignalplotter.so.*
 %{_kf5_libdir}/libprocesscore.so.*
 %{_kf5_libdir}/libprocessui.so.*
 %{_kf5_sharedir}/ksysguard/
+%{_kf5_debugdir}/*.categories
 
 %files helper
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_sysconfdir}/dbus-1/system.d/org.kde.ksysguard.processlisthelper.conf
 %{_kf5_libdir}/libexec/
 
%{_kf5_sharedir}/dbus-1/system-services/org.kde.ksysguard.processlisthelper.service
 %{_kf5_sharedir}/polkit-1/actions/org.kde.ksysguard.processlisthelper.policy
 
 %files devel
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_includedir}/ksysguard/
 %{_kf5_libdir}/cmake/KF5SysGuard/
 %{_kf5_libdir}/libksgrd.so

++ libksysguard-5.12.5.tar.xz -> libksysguard-5.13.0.tar.xz ++
 137238 lines of diff (skipped)




commit libksysguard5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-05-08 13:34:58

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Tue May  8 13:34:58 2018 rev:64 rq:603260 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-03-30 12:05:21.694205579 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-05-08 13:34:59.954621675 +0200
@@ -1,0 +2,10 @@
+Wed May  2 09:07:27 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * [ProcessModel] Return invalid QVariant() for when window is not known
+
+---

Old:

  libksysguard-5.12.4.tar.xz

New:

  libksysguard-5.12.5.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.QRd5Q8/_old  2018-05-08 13:35:00.630597282 +0200
+++ /var/tmp/diff_new_pack.QRd5Q8/_new  2018-05-08 13:35:00.634597137 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.12.4.tar.xz -> libksysguard-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.4/CMakeLists.txt 
new/libksysguard-5.12.5/CMakeLists.txt
--- old/libksysguard-5.12.4/CMakeLists.txt  2018-03-27 13:19:16.0 
+0200
+++ new/libksysguard-5.12.5/CMakeLists.txt  2018-05-01 14:55:19.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.4/po/gl/processui.po 
new/libksysguard-5.12.5/po/gl/processui.po
--- old/libksysguard-5.12.4/po/gl/processui.po  2018-03-27 13:18:52.0 
+0200
+++ new/libksysguard-5.12.5/po/gl/processui.po  2018-05-01 14:54:51.0 
+0200
@@ -6,14 +6,14 @@
 # marce villarino , 2009.
 # Marce Villarino , 2009, 2011, 2012, 2013.
 # Adrián Chaves Fernández , 2015, 2017.
-# Adrián Chaves (Gallaecio) , 2017.
+# Adrián Chaves (Gallaecio) , 2017, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-01-16 05:38+0100\n"
-"PO-Revision-Date: 2017-10-22 21:25+0100\n"
-"Last-Translator: Adrián Chaves (Gallaecio) \n"
+"PO-Revision-Date: 2018-04-28 21:23+0100\n"
+"Last-Translator: Adrian Chaves \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
@@ -373,7 +373,7 @@
 msgid ""
 "- Process has been stopped. It will not respond to user input at the moment."
 msgstr ""
-"- O proceso foi detido. Non responderá por agora aos pedidos do usuario."
+"- Detívose o proceso. De momento non responderá á interacción do usuario."
 
 #: ProcessModel.cpp:608
 #, kde-format
@@ -485,7 +485,7 @@
 #: ProcessModel.cpp:1007
 #, kde-format
 msgid "The command with which this process was launched."
-msgstr "A orde coa que foi iniciado este proceso."
+msgstr "A orde coa que se iniciou este proceso."
 
 #: ProcessModel.cpp:1009
 #, kde-format
@@ -1918,7 +1918,7 @@
 "right:0px; -qt-block-indent:0; text-indent:0px;\">Os procesos con maior "
 "prioridade terán acceso prioritario ao disco duro. Os programas que se "
 "executen coa mesma prioridade Mellor "
-"esforzo/Normal serán servidos como nun  serviranse como nun Round Robin."
 
 #. i18n: ectx: property (text), widget (QRadioButton, radioBestEffort)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.4/po/id/ksysguardlsofwidgets.po 
new/libksysguard-5.12.5/po/id/ksysguardlsofwidgets.po
--- old/libksysguard-5.12.4/po/id/ksysguardlsofwidgets.po   2018-03-27 
13:18:55.0 +0200
+++ new/libksysguard-5.12.5/po/id/ksysguardlsofwidgets.po   2018-05-01 
14:54:55.0 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: ksysguardlsofwidgets\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:21+0100\n"
-"PO-Revision-Date: 2018-03-02 21:29+0700\n"
+"PO-Revision-Date: 2018-04-03 06:29+0700\n"
 "Last-Translator: Wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
@@ -51,4 +51,4 @@
 #: LsofSearchWidget.ui:33
 #, kde-format
 msgid "Fi

commit libksysguard5 for openSUSE:Factory

2018-03-30 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-03-30 12:05:19

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Fri Mar 30 12:05:19 2018 rev:63 rq:591841 version:5.12.4

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-03-09 10:32:33.709000333 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-03-30 12:05:21.694205579 +0200
@@ -1,0 +2,10 @@
+Tue Mar 27 15:40:48 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.4.php
+- Changes since 5.12.3:
+  * None
+
+---

Old:

  libksysguard-5.12.3.tar.xz

New:

  libksysguard-5.12.4.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.ol1hz1/_old  2018-03-30 12:05:22.382180703 +0200
+++ /var/tmp/diff_new_pack.ol1hz1/_new  2018-03-30 12:05:22.386180559 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.12.3
+Version:5.12.4
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.12.3.tar.xz -> libksysguard-5.12.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.3/CMakeLists.txt 
new/libksysguard-5.12.4/CMakeLists.txt
--- old/libksysguard-5.12.3/CMakeLists.txt  2018-03-06 13:52:05.0 
+0100
+++ new/libksysguard-5.12.4/CMakeLists.txt  2018-03-27 13:19:16.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.12.3")
+set(PROJECT_VERSION "5.12.4")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.3/po/ca@valencia/processui.po 
new/libksysguard-5.12.4/po/ca@valencia/processui.po
--- old/libksysguard-5.12.3/po/ca@valencia/processui.po 2018-03-06 
13:51:25.0 +0100
+++ new/libksysguard-5.12.4/po/ca@valencia/processui.po 2018-03-27 
13:18:46.0 +0200
@@ -36,7 +36,7 @@
 #: ksysguardprocesslist.cpp:205
 #, kde-format
 msgid "Jump to Process Debugging This One"
-msgstr "Salta als processos que depuren este"
+msgstr "Salta als processos que depuren aquest"
 
 #: ksysguardprocesslist.cpp:206
 #, kde-format
@@ -105,7 +105,7 @@
 #: ksysguardprocesslist.cpp:225
 #, kde-format
 msgid "Focus on Quick Search"
-msgstr "Focus a la busca ràpida"
+msgstr "Focus a la cerca ràpida"
 
 #: ksysguardprocesslist.cpp:380
 #, kde-format
@@ -196,7 +196,7 @@
 #: ksysguardprocesslist.cpp:756
 #, kde-format
 msgid "Display command line options"
-msgstr "Mostra les opcions de la línia d'ordes"
+msgstr "Mostra les opcions de la línia d'ordres"
 
 #: ksysguardprocesslist.cpp:763
 #, kde-format
@@ -282,11 +282,11 @@
 "Are you sure you want to end these %1 processes?  Any unsaved work may be "
 "lost"
 msgstr[0] ""
-"Esteu segur que voleu finalitzar este procés? Es perdrà qualsevol treball no "
-"guardat."
-msgstr[1] ""
-"Esteu segur que voleu matar estos %1 processos? Es perdrà qualsevol treball "
+"Esteu segur que voleu finalitzar aquest procés? Es perdrà qualsevol treball "
 "no guardat."
+msgstr[1] ""
+"Esteu segur que voleu matar aquests %1 processos? Es perdrà qualsevol "
+"treball no guardat."
 
 #: ksysguardprocesslist.cpp:1342
 #, kde-format
@@ -310,11 +310,11 @@
 "Are you sure you want to immediately and forcibly kill these %1 "
 "processes?  Any unsaved work may be lost"
 msgstr[0] ""
-"Esteu segur que voleu matar immediatament i forçadament este "
+"Esteu segur que voleu matar immediatament i forçadament aquest "
 "procés? Es perdrà qualsevol treball no guardat."
 msgstr[1] ""
-"Esteu segur que voleu matar immediatament i forçadament estos %1 "
-"processos? Es perdrà qualsevol treball no guardat."
+"Esteu segur que voleu matar immediatament i forçadament aquests "
+"%1 processos? Es perdrà qualsevol treball no guardat."
 
 #: ksysguardprocesslist.cpp:1349
 #, kde-format
@@ -369,7 +369,7 @@
 msgid ""
 "- Process has been stopped. It will not respond to user input at the moment."
 msgstr ""
-"- El procés està aturat. No respondrà a les entrades de l'usuari en este "
+"- El procés està aturat. No respondrà a les entrades de l'usuari en aquest "
 "moment."
 
 #: ProcessModel.cpp:608
@@ -389,12 +389,12 @@
 #: ProcessModel.cpp:981
 #, kde-format
 msgid "The user who owns this process."
-msgstr "L'usuari propieta

commit libksysguard5 for openSUSE:Factory

2018-03-09 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-03-09 10:32:32

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Fri Mar  9 10:32:32 2018 rev:62 rq:584057 version:5.12.3

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-02-28 19:58:38.452845371 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-03-09 10:32:33.709000333 +0100
@@ -1,0 +2,10 @@
+Tue Mar  6 16:07:42 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.3.php
+- Changes since 5.12.2:
+  * None
+
+---

Old:

  libksysguard-5.12.2.tar.xz

New:

  libksysguard-5.12.3.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.hfrSXT/_old  2018-03-09 10:32:34.440973983 +0100
+++ /var/tmp/diff_new_pack.hfrSXT/_new  2018-03-09 10:32:34.440973983 +0100
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.12.2
+Version:5.12.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: libksysguard-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem

++ libksysguard-5.12.2.tar.xz -> libksysguard-5.12.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.2/CMakeLists.txt 
new/libksysguard-5.12.3/CMakeLists.txt
--- old/libksysguard-5.12.2/CMakeLists.txt  2018-02-20 16:32:27.0 
+0100
+++ new/libksysguard-5.12.3/CMakeLists.txt  2018-03-06 13:52:05.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.12.2")
+set(PROJECT_VERSION "5.12.3")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.2/po/id/processui.po 
new/libksysguard-5.12.3/po/id/processui.po
--- old/libksysguard-5.12.2/po/id/processui.po  2018-02-20 16:31:56.0 
+0100
+++ new/libksysguard-5.12.3/po/id/processui.po  2018-03-06 13:51:39.0 
+0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-01-16 05:38+0100\n"
-"PO-Revision-Date: 2018-02-01 21:18+0700\n"
+"PO-Revision-Date: 2018-02-17 19:56+0700\n"
 "Last-Translator: Wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
@@ -1316,13 +1316,13 @@
 "Semua Proses, pohonTampilkan semua proses di sistem, dalam "
 "bentuk hirarki menggunakan informasi PID induk.\n"
 "Proses SistemTampilkan proses yang berjalan sebagai root "
-"dan pengguna yang tidak dapat masuk.\n"
+"dan pengguna yang tidak dapat login.\n"
 "Proses PenggunaTampilkan proses yang berjalan sebagai "
-"pengguna non-root yang dapat masuk.\n"
+"pengguna non-root yang dapat login.\n"
 "Proses SendiriTampilkan proses yang dimiliki oleh pengguna "
 "yang sama yang juga memiliki proses ini.\n"
 "Hanya ProgramTampilkan proses yang berjalan sebagai "
-"pengguna yang dapat masuk serta terlampir ke TTY atau memiliki setidaknya "
+"pengguna yang dapat login serta terlampir ke TTY atau memiliki setidaknya "
 "satu Jendela X11.\n"
 "\n"
 "\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.2/po/nb/processui.po 
new/libksysguard-5.12.3/po/nb/processui.po
--- old/libksysguard-5.12.2/po/nb/processui.po  2018-02-20 16:32:05.0 
+0100
+++ new/libksysguard-5.12.3/po/nb/processui.po  2018-03-06 13:51:47.0 
+0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-07 03:29+0200\n"
+"POT-Creation-Date: 2018-01-16 05:38+0100\n"
 "PO-Revision-Date: 2015-04-28 13:59+0200\n"
 "Last-Translator: Bjørn Steensrud \n"
 "Language-Team: Norwegian Bokmål \n"
@@ -19,93 +19,93 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: ksysguardprocesslist.cpp:159 ksysguardprocesslist.cpp:416
+#: ksysguardprocesslist.cpp:201 ksysguardprocesslist.cpp:458
 #, kde-format
 msgid "Set Priority..."
 msgid_plural "Set Priority..."
 msgstr[0] "Oppgi prioritet …"
 msg

commit libksysguard5 for openSUSE:Factory

2018-02-28 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-02-28 19:58:37

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Wed Feb 28 19:58:37 2018 rev:61 rq:579144 version:5.12.2

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-02-19 12:55:30.833878885 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-02-28 19:58:38.452845371 +0100
@@ -1,0 +2,10 @@
+Wed Feb 21 23:57:08 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.12.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.2.php
+- Changes since 5.12.1:
+  * None
+
+---

Old:

  libksysguard-5.12.1.tar.xz

New:

  libksysguard-5.12.2.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.qB3PPE/_old  2018-02-28 19:58:39.288815121 +0100
+++ /var/tmp/diff_new_pack.qB3PPE/_new  2018-02-28 19:58:39.292814976 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.12.1
+Version:5.12.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.12.1.tar.xz -> libksysguard-5.12.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.1/CMakeLists.txt 
new/libksysguard-5.12.2/CMakeLists.txt
--- old/libksysguard-5.12.1/CMakeLists.txt  2018-02-13 15:16:05.0 
+0100
+++ new/libksysguard-5.12.2/CMakeLists.txt  2018-02-20 16:32:27.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.12.1")
+set(PROJECT_VERSION "5.12.2")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.1/po/eu/processui.po 
new/libksysguard-5.12.2/po/eu/processui.po
--- old/libksysguard-5.12.1/po/eu/processui.po  2018-02-13 15:14:50.0 
+0100
+++ new/libksysguard-5.12.2/po/eu/processui.po  2018-02-20 16:31:48.0 
+0100
@@ -1,15 +1,18 @@
 # Translation of processui.po to Euskara/Basque (eu).
-# Copyright (C) 2007-2014, Free Software Foundation.
+# Copyright (C) 2007-2018, The Free Software Foundation, Inc.
+# This file is distributed under the same license as the kde-workspace package.
+# KDE Euskaratzeko proiektuaren arduraduna .
 #
+# Translators:
 # marcos , 2007, 2009, 2010.
-# Iñigo Salvador Azurmendi , 2008, 2009, 2010, 2011, 2014.
+# Iñigo Salvador Azurmendi , 2008, 2009, 2010, 2011, 
2014, 2018.
 # Hizkuntza Politikarako Sailburuordetza , 2013.
 msgid ""
 msgstr ""
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-01-16 05:38+0100\n"
-"PO-Revision-Date: 2014-01-25 22:30+0100\n"
+"PO-Revision-Date: 2018-02-19 23:41+0100\n"
 "Last-Translator: Iñigo Salvador Azurmendi \n"
 "Language-Team: Basque \n"
 "Language: eu\n"
@@ -17,7 +20,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: ksysguardprocesslist.cpp:201 ksysguardprocesslist.cpp:458
 #, kde-format
@@ -29,7 +32,7 @@
 #: ksysguardprocesslist.cpp:203 ksysguardprocesslist.cpp:551
 #, kde-format
 msgid "Jump to Parent Process"
-msgstr "Joan prozesu gurasora"
+msgstr "Joan guraso prozesura"
 
 #: ksysguardprocesslist.cpp:205
 #, kde-format
@@ -135,7 +138,7 @@
 #: ksysguardprocesslist.cpp:514
 #, kde-format
 msgid "Jump to Parent Process (%1)"
-msgstr "Joan prozesu gurasora (%1)"
+msgstr "Joan guraso prozesura (%1)"
 
 #: ksysguardprocesslist.cpp:652
 #, kde-format
@@ -376,7 +379,7 @@
 "- Process has finished and is now dead, but the parent process has not "
 "cleaned up."
 msgstr ""
-"- Prozesua amaitu da eta hilik dago une honetan, baino prozesu gurasoak ez "
+"- Prozesua amaitu da eta hilik dago une honetan, baino guraso prozesuak ez "
 "du garbitu."
 
 #: ProcessModel.cpp:979
@@ -478,10 +481,9 @@
 "guztiek partekatzen dute memoria hau."
 
 #: ProcessModel.cpp:1005
-#, fuzzy, kde-format
-#| msgid "The command with which this process was launched."
+#, kde-format
 msgid "The elapsed time since the process was started."
-msgstr "Prozesu hau abiarazteko erabilitako komandoa."
+msgstr "Prozesua abiarazi zenetik igarotako denbora."
 
 #: ProcessModel.cpp:1007
 #, kde-format
@@ -546,21 +548,21 @@
 "File System User/Group.  This is a Linux

commit libksysguard5 for openSUSE:Factory

2018-02-19 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-02-19 12:55:29

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Mon Feb 19 12:55:29 2018 rev:60 rq:577808 version:5.12.1

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-02-06 16:44:22.653479037 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-02-19 12:55:30.833878885 +0100
@@ -1,0 +2,10 @@
+Tue Feb 13 16:25:28 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.1.php
+- Changes since 5.12.0:
+  * None
+
+---

Old:

  libksysguard-5.12.0.tar.xz

New:

  libksysguard-5.12.1.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.7PauyK/_old  2018-02-19 12:55:32.709811230 +0100
+++ /var/tmp/diff_new_pack.7PauyK/_new  2018-02-19 12:55:32.709811230 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.12.0
+Version:5.12.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.12.0.tar.xz -> libksysguard-5.12.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.0/CMakeLists.txt 
new/libksysguard-5.12.1/CMakeLists.txt
--- old/libksysguard-5.12.0/CMakeLists.txt  2018-02-01 14:50:43.0 
+0100
+++ new/libksysguard-5.12.1/CMakeLists.txt  2018-02-13 15:16:05.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.12.0")
+set(PROJECT_VERSION "5.12.1")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.0/po/id/processui.po 
new/libksysguard-5.12.1/po/id/processui.po
--- old/libksysguard-5.12.0/po/id/processui.po  2018-02-01 14:48:59.0 
+0100
+++ new/libksysguard-5.12.1/po/id/processui.po  2018-02-13 15:15:03.0 
+0100
@@ -9,9 +9,9 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-01-16 05:38+0100\n"
-"PO-Revision-Date: 2018-01-16 19:48+0700\n"
+"PO-Revision-Date: 2018-02-01 21:18+0700\n"
 "Last-Translator: Wantoyo \n"
-"Language-Team: Indonesian \n"
+"Language-Team: Indonesian \n"
 "Language: id\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -708,9 +708,9 @@
 "dilakukan saat waktu pengotoran halaman.Nomor di dalam tanda "
 "kurung menampilkan rasio untuk tiap nilai yang berubah, ditentukan dari "
 "melihat selisih di antara nilai sebelumnya dan nilai baru, dan membaginya "
-"dengan interval pemutakhiran.Informasi teknis: Data ini diambil "
-"dari /proc/*/io dan didokumentasikan lebih lanjut di Documentation/"
-"accounting dan Documentation/filesystems/proc.txt di sumber kernel."
+"dengan interval pembaruan.Informasi teknis: Data ini diambil dari /"
+"proc/*/io dan didokumentasikan lebih lanjut di Documentation/accounting dan "
+"Documentation/filesystems/proc.txt di sumber kernel."
 
 #: ProcessModel.cpp:1147
 #, kde-kuit-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.0/po/zh_CN/ksgrd.po 
new/libksysguard-5.12.1/po/zh_CN/ksgrd.po
--- old/libksysguard-5.12.0/po/zh_CN/ksgrd.po   2018-02-01 14:50:37.0 
+0100
+++ new/libksysguard-5.12.1/po/zh_CN/ksgrd.po   2018-02-13 15:16:04.0 
+0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:21+0100\n"
-"PO-Revision-Date: 2018-02-01 07:15-0500\n"
+"PO-Revision-Date: 2018-02-12 05:47-0500\n"
 "Last-Translator: guoyunhebrave \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.12.0/po/zh_CN/ksysguardlsofwidgets.po 
new/libksysguard-5.12.1/po/zh_CN/ksysguardlsofwidgets.po
--- old/libksysguard-5.12.0/po/zh_CN/ksysguardlsofwidgets.po2018-02-01 
14:50:37.0 +0100
+++ new/libksysguard-5.12.1/po/zh_CN/ksysguardlsofwidgets.po2018-02-13 
15:16:04.0 +0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:21+0100\n"
-"PO-Revision-Date: 2018-02-01 07:15-0500\n"
+"PO-Revision-Date: 2018-02-1

commit libksysguard5 for openSUSE:Factory

2018-02-06 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-02-06 16:44:21

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Tue Feb  6 16:44:21 2018 rev:59 rq:573036 version:5.12.0

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-01-22 16:06:03.812894838 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-02-06 16:44:22.653479037 +0100
@@ -1,0 +2,10 @@
+Fri Feb  2 21:03:44 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.0.php
+- Changes since 5.11.95:
+  * Remove usage of deprecated QString::null
+
+---

Old:

  libksysguard-5.11.95.tar.xz

New:

  libksysguard-5.12.0.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.v7jkLp/_old  2018-02-06 16:44:23.549437112 +0100
+++ /var/tmp/diff_new_pack.v7jkLp/_new  2018-02-06 16:44:23.549437112 +0100
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.11.95
+Version:5.12.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: 
http://download.kde.org/unstable/plasma/%{version}/libksysguard-%{version}.tar.xz
+Source: libksysguard-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem

++ libksysguard-5.11.95.tar.xz -> libksysguard-5.12.0.tar.xz ++
 87305 lines of diff (skipped)




commit libksysguard5 for openSUSE:Factory

2018-01-22 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-01-22 16:06:01

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Mon Jan 22 16:06:01 2018 rev:58 rq:566831 version:5.11.95

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2018-01-03 13:36:59.526125631 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-01-22 16:06:03.812894838 +0100
@@ -1,0 +2,16 @@
+Mon Jan 15 15:54:05 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.11.95
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.95.php
+- Changes since 5.11.5:
+  * Add a per-process CPU usage graph shown in the process list
+  * Remove obsolete reviewboardrc file
+  * Only initialize variable if we are going to use it
+  * Modernize: Use nullptr where possible
+  * Modernize: Q_DECL_OVERRIDE -> override
+  * Modernize: Use override everywhere
+  * Minor: Fix compiler warning
+
+---

Old:

  libksysguard-5.11.5.tar.xz

New:

  libksysguard-5.11.95.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.jxx228/_old  2018-01-22 16:06:04.496862835 +0100
+++ /var/tmp/diff_new_pack.jxx228/_new  2018-01-22 16:06:04.500862648 +0100
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.11.5
+Version:5.11.95
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
+Source: 
http://download.kde.org/unstable/plasma/%{version}/libksysguard-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem

++ libksysguard-5.11.5.tar.xz -> libksysguard-5.11.95.tar.xz ++
 33633 lines of diff (skipped)




commit libksysguard5 for openSUSE:Factory

2018-01-03 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2018-01-03 13:36:58

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Wed Jan  3 13:36:58 2018 rev:57 rq:561213 version:5.11.5

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-12-08 12:46:53.356435156 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2018-01-03 13:36:59.526125631 +0100
@@ -1,0 +2,10 @@
+Tue Jan  2 16:40:09 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.11.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.5.php
+- Changes since 5.11.4:
+  * None
+
+---

Old:

  libksysguard-5.11.4.tar.xz

New:

  libksysguard-5.11.5.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.Qchh0I/_old  2018-01-03 13:37:00.073943220 +0100
+++ /var/tmp/diff_new_pack.Qchh0I/_new  2018-01-03 13:37:00.073943220 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libksysguard5
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.11.4
+Version:5.11.5
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.11.4.tar.xz -> libksysguard-5.11.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.11.4/CMakeLists.txt 
new/libksysguard-5.11.5/CMakeLists.txt
--- old/libksysguard-5.11.4/CMakeLists.txt  2017-11-28 13:27:20.0 
+0100
+++ new/libksysguard-5.11.5/CMakeLists.txt  2018-01-02 13:40:41.991933897 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.11.4")
+set(PROJECT_VERSION "5.11.5")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.11.4/po/ca/ksgrd.po 
new/libksysguard-5.11.5/po/ca/ksgrd.po
--- old/libksysguard-5.11.4/po/ca/ksgrd.po  2017-11-28 13:25:17.0 
+0100
+++ new/libksysguard-5.11.5/po/ca/ksgrd.po  2018-01-02 13:39:09.063316125 
+0100
@@ -10,7 +10,7 @@
 "Project-Id-Version: ksgrd\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:21+0100\n"
-"PO-Revision-Date: 2017-11-11 20:48+0100\n"
+"PO-Revision-Date: 2017-12-17 22:59+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -865,7 +865,7 @@
 "An error occurred with the network (e.g. the network cable was accidentally "
 "unplugged) for host %1."
 msgstr ""
-"Hi ha hagut un error de xarxa amb la màquina %1 (p.ex. el cable de xarxa "
+"Hi ha hagut un error de xarxa amb la màquina %1 (p. ex. el cable de xarxa "
 "s'ha desconnectat accidentalment)."
 
 #: SensorSocketAgent.cpp:118
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.11.4/po/ca/processui.po 
new/libksysguard-5.11.5/po/ca/processui.po
--- old/libksysguard-5.11.4/po/ca/processui.po  2017-11-28 13:25:17.0 
+0100
+++ new/libksysguard-5.11.5/po/ca/processui.po  2018-01-02 13:39:09.063316125 
+0100
@@ -10,7 +10,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-08-07 03:29+0200\n"
-"PO-Revision-Date: 2017-02-05 12:17+0100\n"
+"PO-Revision-Date: 2017-12-17 23:33+0100\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -545,9 +545,9 @@
 "File System User/Group.  This is a Linux specific call. See setfsuid(2) for "
 "more information."
 msgstr ""
-"L'usuari propietari d'aquest procés. Si l'usuari efectiu (setuid etc.) "
-"és diferent, es mostrarà l'usuari propietari del procés, seguit de l'usuari "
-"efectiu. El consell emergent conté la informació completa. "
+"L'usuari propietari d'aquest procés. Si l'usuari efectiu («setuid», "
+"etc.) és diferent, es mostrarà l'usuari propietari del procés, seguit de "
+"l'usuari efectiu. El consell emergent conté la informació completa. "
 "Nom/Grup de connexióEl nom d'usuari de l'usuari/"
 "grup real que ha creat aquest procésUsuari/Grup efectiuEl procés s'està executant amb privilegis de l'Usuari/Grup 

commit libksysguard5 for openSUSE:Factory

2017-12-08 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-12-08 12:46:52

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Fri Dec  8 12:46:52 2017 rev:56 rq:547201 version:5.11.4

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-11-10 14:49:00.358286501 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-12-08 12:46:53.356435156 +0100
@@ -1,0 +2,10 @@
+Thu Nov 30 10:44:01 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.4.php
+- Changes since 5.11.3:
+  * None
+
+---

Old:

  libksysguard-5.11.3.tar.xz

New:

  libksysguard-5.11.4.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.Gdrlqn/_old  2017-12-08 12:46:54.080409009 +0100
+++ /var/tmp/diff_new_pack.Gdrlqn/_new  2017-12-08 12:46:54.084408864 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.11.3
+Version:5.11.4
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.11.3.tar.xz -> libksysguard-5.11.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.11.3/CMakeLists.txt 
new/libksysguard-5.11.4/CMakeLists.txt
--- old/libksysguard-5.11.3/CMakeLists.txt  2017-11-07 13:55:37.0 
+0100
+++ new/libksysguard-5.11.4/CMakeLists.txt  2017-11-28 13:27:20.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.11.3")
+set(PROJECT_VERSION "5.11.4")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.11.3/po/ca/ksgrd.po 
new/libksysguard-5.11.4/po/ca/ksgrd.po
--- old/libksysguard-5.11.3/po/ca/ksgrd.po  2017-11-07 13:53:46.0 
+0100
+++ new/libksysguard-5.11.4/po/ca/ksgrd.po  2017-11-28 13:25:17.0 
+0100
@@ -1,17 +1,17 @@
 # Translation of ksgrd.po to Catalan
-# Copyright (C) 2013-2016 This_file_is_part_of_KDE
+# Copyright (C) 2013-2017 This_file_is_part_of_KDE
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer , 2013.
+# Josep Ma. Ferrer , 2013, 2017.
 # Antoni Bella Pérez , 2014, 2015, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: ksgrd\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:21+0100\n"
-"PO-Revision-Date: 2016-09-13 19:24+0100\n"
-"Last-Translator: Antoni Bella Pérez \n"
+"PO-Revision-Date: 2017-11-11 20:48+0100\n"
+"Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
@@ -693,7 +693,7 @@
 #: SensorManager.cpp:220
 #, kde-format
 msgid "Signal Level"
-msgstr "Intensitat de la senyal"
+msgstr "Intensitat del senyal"
 
 #: SensorManager.cpp:221
 #, kde-format
@@ -753,12 +753,12 @@
 #: SensorManager.cpp:232
 #, kde-format
 msgid "Missed Beacons"
-msgstr "Senyals perdudes"
+msgstr "Senyals perduts"
 
 #: SensorManager.cpp:233
 #, kde-format
 msgid "Total Missed Beacons"
-msgstr "Total de senyals perdudes"
+msgstr "Total de senyals perduts"
 
 #: SensorManager.cpp:235
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.11.3/po/ca@valencia/ksgrd.po 
new/libksysguard-5.11.4/po/ca@valencia/ksgrd.po
--- old/libksysguard-5.11.3/po/ca@valencia/ksgrd.po 2017-11-07 
13:53:47.0 +0100
+++ new/libksysguard-5.11.4/po/ca@valencia/ksgrd.po 2017-11-28 
13:25:17.0 +0100
@@ -1,17 +1,17 @@
 # Translation of ksgrd.po to Catalan (Valencian)
-# Copyright (C) 2013-2016 This_file_is_part_of_KDE
+# Copyright (C) 2013-2017 This_file_is_part_of_KDE
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer , 2013.
+# Josep Ma. Ferrer , 2013, 2017.
 # Antoni Bella Pérez , 2014, 2015, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: ksgrd\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:21+0100\n"
-"PO-Revision-Date: 2016-09-13 19:24+0100\n"
-"Last-Translator: Antoni Bella Pérez \n"
+"PO-Revision-Date: 2017-11-11 20:48+0100\n"
+"Last-Translator: Josep Ma. Ferrer \n"
 "Languag

commit libksysguard5 for openSUSE:Factory

2017-11-10 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-11-10 14:48:58

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Fri Nov 10 14:48:58 2017 rev:55 rq:539714 version:5.11.3

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-10-27 13:50:37.734285712 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-11-10 14:49:00.358286501 +0100
@@ -1,0 +2,10 @@
+Tue Nov  7 15:15:37 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.3.php
+- Changes since 5.11.2:
+  * None
+
+---

Old:

  libksysguard-5.11.2.tar.xz

New:

  libksysguard-5.11.3.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.hORvIg/_old  2017-11-10 14:49:01.518244559 +0100
+++ /var/tmp/diff_new_pack.hORvIg/_new  2017-11-10 14:49:01.518244559 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.11.2
+Version:5.11.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.11.2.tar.xz -> libksysguard-5.11.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.11.2/CMakeLists.txt 
new/libksysguard-5.11.3/CMakeLists.txt
--- old/libksysguard-5.11.2/CMakeLists.txt  2017-10-24 13:15:31.0 
+0200
+++ new/libksysguard-5.11.3/CMakeLists.txt  2017-11-07 13:55:37.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.11.2")
+set(PROJECT_VERSION "5.11.3")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 




commit libksysguard5 for openSUSE:Factory

2017-10-27 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-10-27 13:50:36

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Fri Oct 27 13:50:36 2017 rev:54 rq:536670 version:5.11.2

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-10-23 16:23:57.715056670 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-10-27 13:50:37.734285712 +0200
@@ -1,0 +2,10 @@
+Tue Oct 24 18:13:15 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.2.php
+- Changes since 5.11.1:
+  * None
+
+---

Old:

  libksysguard-5.11.1.tar.xz

New:

  libksysguard-5.11.2.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.LFnewH/_old  2017-10-27 13:50:38.738238788 +0200
+++ /var/tmp/diff_new_pack.LFnewH/_new  2017-10-27 13:50:38.738238788 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.11.1
+Version:5.11.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.11.1.tar.xz -> libksysguard-5.11.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.11.1/CMakeLists.txt 
new/libksysguard-5.11.2/CMakeLists.txt
--- old/libksysguard-5.11.1/CMakeLists.txt  2017-10-17 12:44:33.0 
+0200
+++ new/libksysguard-5.11.2/CMakeLists.txt  2017-10-24 13:15:31.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.11.1")
+set(PROJECT_VERSION "5.11.2")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.11.1/po/gl/processui.po 
new/libksysguard-5.11.2/po/gl/processui.po
--- old/libksysguard-5.11.1/po/gl/processui.po  2017-10-17 12:42:27.0 
+0200
+++ new/libksysguard-5.11.2/po/gl/processui.po  2017-10-24 13:13:50.0 
+0200
@@ -12,7 +12,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-08-07 03:29+0200\n"
-"PO-Revision-Date: 2017-10-14 06:14+0100\n"
+"PO-Revision-Date: 2017-10-22 21:25+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
@@ -710,10 +710,10 @@
 "fornece a seguinte información: Caracteres lidosA cantidade de bytes que lese esta tarefa desde o almacén. Non é máis "
 "que a suma dos bytes que pasase a read() ou pread(). Inclúe cousas como a E/"
-"S por tty e non se ve afectada polo acceso real de E/S ao disco (a lectura "
-"pode ter sido satisfeito por pagecache). Caracteres "
-"escritosA cantidade de caracteres que fosen escritos no disco ou "
-"fixese escribir esta tarefa. Aplícanse os mesmos avisos que se fan para os "
+"S por tty e non se ve afectada polo acceso real de E/S ao disco (pode que "
+"pagecache satisfixese a lectura). Caracteres escritosA cantidade de caracteres que fosen escritos no disco ou fixese "
+"escribir esta tarefa. Aplícanse os mesmos avisos que se fan para os "
 "caracteres lidos. Chamadas do sistema de lecturaO "
 "número de operacións de E/S, i.e. chamadas do sistema como read() e pread()."
 " Chamadas do sistema de escrituraO número de "
@@ -1692,7 +1692,7 @@
 "O proceso executarase "
 "sempre que sexa executábel. É unha prioridade maior que Normal ou Lote. Non "
-"hai reparto de tempos."
+"hai repartimento de tempos."
 
 #. i18n: ectx: property (whatsThis), widget (QRadioButton, radioFIFO)
 #: ReniceDlgUi.ui:196
@@ -1821,8 +1821,7 @@
 "weight:400; font-style:normal;\">\n"
 "O proceso só poderá usar o "
-"disco duro cando ningún outro proceso o teña empregado recentemente."
+"disco duro cando ningún outro proceso o usase recentemente."
 
 #. i18n: ectx: property (whatsThis), widget (QRadioButton, radioIdle)
 #: ReniceDlgUi.ui:320
@@ -1855,11 +1854,11 @@
 "Un programa que se execute "
 "coa prioridade de E/S Ociosa só "
-"terá tempo de disco cando ningún outro programa teña pedido E/S ao disco "
-"durante un período de graza determinado. O impacto da E/S dos procesos Ociosos na actividade dos sistemas "
-"normais debería ser nulo. A prioridade non é aplicábel a esta clase de "
-"planificación."
+"terá tempo de disco cando ningún outro programa pedise E/S ao disco durante "
+"un período de graza determinado. O impacto da E/S dos procesos O

commit libksysguard5 for openSUSE:Factory

2017-10-23 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-10-23 16:23:56

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Mon Oct 23 16:23:56 2017 rev:53 rq:534568 version:5.11.1

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-10-09 19:38:52.908212761 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-10-23 16:23:57.715056670 +0200
@@ -1,0 +2,10 @@
+Tue Oct 17 17:18:51 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.1.php
+- Changes since 5.11.0:
+  * None
+
+---

Old:

  libksysguard-5.11.0.tar.xz

New:

  libksysguard-5.11.1.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.e9EBs6/_old  2017-10-23 16:23:59.098991878 +0200
+++ /var/tmp/diff_new_pack.e9EBs6/_new  2017-10-23 16:23:59.098991878 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.11.0
+Version:5.11.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: libksysguard-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem

++ libksysguard-5.11.0.tar.xz -> libksysguard-5.11.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.11.0/CMakeLists.txt 
new/libksysguard-5.11.1/CMakeLists.txt
--- old/libksysguard-5.11.0/CMakeLists.txt  2017-10-05 14:45:16.0 
+0200
+++ new/libksysguard-5.11.1/CMakeLists.txt  2017-10-17 12:44:33.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.11.0")
+set(PROJECT_VERSION "5.11.1")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.11.0/po/gl/ksgrd.po 
new/libksysguard-5.11.1/po/gl/ksgrd.po
--- old/libksysguard-5.11.0/po/gl/ksgrd.po  2017-10-05 14:44:40.0 
+0200
+++ new/libksysguard-5.11.1/po/gl/ksgrd.po  2017-10-17 12:42:27.0 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:21+0100\n"
-"PO-Revision-Date: 2017-10-04 18:58+0100\n"
+"PO-Revision-Date: 2017-10-11 07:12+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
@@ -844,7 +844,7 @@
 #: SensorShellAgent.cpp:129
 #, kde-format
 msgid "Could not run daemon program '%1'."
-msgstr "Non puido executarse o daemon «%1»."
+msgstr "Non puido executarse o servizo «%1»."
 
 #: SensorShellAgent.cpp:136
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.11.0/po/gl/processui.po 
new/libksysguard-5.11.1/po/gl/processui.po
--- old/libksysguard-5.11.0/po/gl/processui.po  2017-10-05 14:44:40.0 
+0200
+++ new/libksysguard-5.11.1/po/gl/processui.po  2017-10-17 12:42:27.0 
+0200
@@ -12,7 +12,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-08-07 03:29+0200\n"
-"PO-Revision-Date: 2017-09-08 22:11+0100\n"
+"PO-Revision-Date: 2017-10-14 06:14+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
@@ -185,12 +185,12 @@
 #: ksysguardprocesslist.cpp:676
 #, kde-format
 msgid "Gigabytes per second"
-msgstr "Gigabytes por segundo"
+msgstr "Xigabytes por segundo"
 
 #: ksysguardprocesslist.cpp:676
 #, kde-format
 msgid "Gigabytes"
-msgstr "Gigabytes"
+msgstr "Xigabytes"
 
 #: ksysguardprocesslist.cpp:685
 #, kde-format
@@ -1202,7 +1202,7 @@
 #, kde-format
 msgctxt "process heading"
 msgid "IO Write"
-msgstr "E/S de escrita"
+msgstr "Escritura de E/S"
 
 #: ProcessModel.cpp:1893
 #, kde-format
@@ -1513,13 +1513,13 @@
 "\">Normal é o planificador da compartición "
 "de tempos estándar en Linux, que é o deseñado para os procesos que non "
 "requiran mecanismos especiais de tempo real con prioridades estáticas. O "
-"proceso a executar é escollido na lista de outros procesos "
-"Normais ou Lote segundo unha prioridade din

commit libksysguard5 for openSUSE:Factory

2017-10-09 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-10-09 19:38:51

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Mon Oct  9 19:38:51 2017 rev:52 rq:532034 version:5.11.0

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-08-24 18:09:19.101464243 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-10-09 19:38:52.908212761 +0200
@@ -1,0 +2,23 @@
+Thu Oct  5 12:39:18 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.0.php
+- Changes since 5.10.95:
+  * None
+
+---
+Thu Sep 14 14:29:05 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.95
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.95.php
+- Changes since 5.10.5:
+  * libksysguard does not appear to use QtScript, but just includes it.
+  * Inject custom style sheet with system colors (kde#360214)
+  * Use Q_DECL_OVERRIDE
+  * Fix compilation on CentOS 6
+
+---

Old:

  libksysguard-5.10.5.tar.xz

New:

  libksysguard-5.11.0.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.mtQyPa/_old  2017-10-09 19:38:53.540184981 +0200
+++ /var/tmp/diff_new_pack.mtQyPa/_new  2017-10-09 19:38:53.540184981 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.10.5
+Version:5.11.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
+Source: libksysguard-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem
@@ -42,7 +42,6 @@
 BuildRequires:  cmake(KF5WindowSystem)
 BuildRequires:  cmake(Qt5DBus) >= 5.4.0
 BuildRequires:  cmake(Qt5Network) >= 5.4.0
-BuildRequires:  cmake(Qt5Script) >= 5.4.0
 BuildRequires:  cmake(Qt5WebKitWidgets) >= 5.4.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.4.0
 BuildRequires:  cmake(Qt5X11Extras) >= 5.4.0

++ libksysguard-5.10.5.tar.xz -> libksysguard-5.11.0.tar.xz ++
 3812 lines of diff (skipped)




commit libksysguard5 for openSUSE:Factory

2017-08-24 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-08-24 18:09:13

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Thu Aug 24 18:09:13 2017 rev:51 rq:518274 version:5.10.5

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-07-25 11:37:55.653258942 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-08-24 18:09:19.101464243 +0200
@@ -1,0 +2,10 @@
+Tue Aug 22 19:11:31 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.5.php
+- Changes since 5.10.4:
+  * None
+
+---

Old:

  libksysguard-5.10.4.tar.xz

New:

  libksysguard-5.10.5.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.62GvrE/_old  2017-08-24 18:09:20.837219853 +0200
+++ /var/tmp/diff_new_pack.62GvrE/_new  2017-08-24 18:09:20.853217601 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.10.4
+Version:5.10.5
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.10.4.tar.xz -> libksysguard-5.10.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.10.4/CMakeLists.txt 
new/libksysguard-5.10.5/CMakeLists.txt
--- old/libksysguard-5.10.4/CMakeLists.txt  2017-07-18 13:26:51.0 
+0200
+++ new/libksysguard-5.10.5/CMakeLists.txt  2017-08-22 17:03:40.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.10.4")
+set(PROJECT_VERSION "5.10.5")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.10.4/po/eu/ksgrd.po 
new/libksysguard-5.10.5/po/eu/ksgrd.po
--- old/libksysguard-5.10.4/po/eu/ksgrd.po  1970-01-01 01:00:00.0 
+0100
+++ new/libksysguard-5.10.5/po/eu/ksgrd.po  2017-08-22 17:03:03.0 
+0200
@@ -0,0 +1,875 @@
+# Translation of ksgrd.po to Euskara/Basque (eu).
+# Copyright (C) 2017, Free Software Foundation, Inc.
+# This file is distributed under the same license as the kde-workspace package.
+# KDE Euskaratzeko proiektuaren arduraduna .
+#
+# Translators:
+# Osoitz , 2017.
+# Ander Elortondo , 2017.
+# Iñigo Salvador Azurmendi , 2017.
+msgid ""
+msgstr ""
+"Project-Id-Version: ksgrd\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2016-11-19 20:21+0100\n"
+"PO-Revision-Date: 2017-08-16 12:26+0100\n"
+"Last-Translator: Iñigo Salvador Azurmendi \n"
+"Language-Team: Basque \n"
+"Language: eu\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: SensorAgent.cpp:112
+#, kde-format
+msgctxt "%1 is a host name"
+msgid ""
+"Message from %1:\n"
+"%2"
+msgstr ""
+"%1(r)en mezua:\n"
+"%2"
+
+#: SensorManager.cpp:64
+#, kde-format
+msgid "Change"
+msgstr "Aldatu"
+
+#: SensorManager.cpp:65
+#, kde-format
+msgid "Rate"
+msgstr "Tasa"
+
+#: SensorManager.cpp:67
+#, kde-format
+msgid "CPU Load"
+msgstr "PUZ Karga"
+
+#: SensorManager.cpp:68
+#, kde-format
+msgid "Idling"
+msgstr "Inaktibatzen"
+
+#: SensorManager.cpp:69
+#, kde-format
+msgid "Nice Load"
+msgstr "Karga zuzena"
+
+#: SensorManager.cpp:70
+#, kde-format
+msgid "User Load"
+msgstr "Erabiltzailearen karga"
+
+#: SensorManager.cpp:71
+#, kde-format
+msgctxt "@item sensor description"
+msgid "System Load"
+msgstr "Sistemaren karga"
+
+#: SensorManager.cpp:72
+#, kde-format
+msgid "Waiting"
+msgstr "Itxaroten"
+
+#: SensorManager.cpp:73
+#, kde-format
+msgid "Interrupt Load"
+msgstr "Eten karga"
+
+#: SensorManager.cpp:74
+#, kde-format
+msgid "Total Load"
+msgstr "Karga guztira"
+
+#: SensorManager.cpp:75
+#, kde-format
+msgid "Memory"
+msgstr "Memoria"
+
+#: SensorManager.cpp:76
+#, kde-format
+msgid "Physical Memory"
+msgstr "Memoria fisikoa"
+
+#: SensorManager.cpp:77
+#, kde-format
+msgid "Swap Memory"
+msgstr "Trukaketa-memoria:"
+
+#: SensorManager.cpp:78
+#, kde-format
+msgid "Cached Memory"
+msgstr "Cacheratutako memoria"
+
+#: SensorManager.cpp:79
+#, kde-format
+msgid "Buffered Memory"
+msgstr "Bufferreratutako memoria"
+
+#: SensorManager.cpp:80
+#, kde-format
+msgid "Used Memory"
+msgstr "Erabilitako memoria"
+
+#: SensorManager.cpp:81
+#, kde-format
+m

commit libksysguard5 for openSUSE:Factory

2017-07-25 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-07-25 11:37:54

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Tue Jul 25 11:37:54 2017 rev:50 rq:511278 version:5.10.4

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-07-02 13:35:21.418931628 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-07-25 11:37:55.653258942 +0200
@@ -1,0 +2,10 @@
+Tue Jul 18 16:14:48 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.4.php
+- Changes since 5.10.3:
+  * None
+
+---

Old:

  libksysguard-5.10.3.tar.xz

New:

  libksysguard-5.10.4.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.otBQaD/_old  2017-07-25 11:37:56.245175352 +0200
+++ /var/tmp/diff_new_pack.otBQaD/_new  2017-07-25 11:37:56.249174787 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.10.3
+Version:5.10.4
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.10.3.tar.xz -> libksysguard-5.10.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.10.3/CMakeLists.txt 
new/libksysguard-5.10.4/CMakeLists.txt
--- old/libksysguard-5.10.3/CMakeLists.txt  2017-06-27 11:54:53.0 
+0200
+++ new/libksysguard-5.10.4/CMakeLists.txt  2017-07-18 13:26:51.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.10.3")
+set(PROJECT_VERSION "5.10.4")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.10.3/po/fr/ksgrd.po 
new/libksysguard-5.10.4/po/fr/ksgrd.po
--- old/libksysguard-5.10.3/po/fr/ksgrd.po  2017-06-27 11:54:31.0 
+0200
+++ new/libksysguard-5.10.4/po/fr/ksgrd.po  2017-07-18 13:24:36.0 
+0200
@@ -1,16 +1,16 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 # xavier , 2013.
-# Vincent Pinon , 2016.
+# Vincent Pinon , 2016, 2017.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:21+0100\n"
-"PO-Revision-Date: 2016-11-23 10:09+0100\n"
+"PO-Revision-Date: 2017-07-03 17:42+0100\n"
 "Last-Translator: Vincent Pinon \n"
-"Language-Team: French \n"
+"Language-Team: French \n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -713,12 +713,12 @@
 #: SensorManager.cpp:224
 #, kde-format
 msgid "Rx Invalid Crypt Packets"
-msgstr "Paquets reçus à Crypt non valable"
+msgstr "Paquets reçus à chiffrement non valable"
 
 #: SensorManager.cpp:225
 #, kde-format
 msgid "Total Rx Invalid Crypt Packets"
-msgstr "Paquets émis à Crypt non valable"
+msgstr "Paquets émis à chiffrement non valable"
 
 #: SensorManager.cpp:226
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.10.3/po/fr/processui.po 
new/libksysguard-5.10.4/po/fr/processui.po
--- old/libksysguard-5.10.3/po/fr/processui.po  2017-06-27 11:54:31.0 
+0200
+++ new/libksysguard-5.10.4/po/fr/processui.po  2017-07-18 13:24:36.0 
+0200
@@ -16,7 +16,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-02-05 04:12+0100\n"
-"PO-Revision-Date: 2017-06-23 16:24+0100\n"
+"PO-Revision-Date: 2017-07-03 21:22+0100\n"
 "Last-Translator: Vincent Pinon \n"
 "Language-Team: French \n"
 "Language: fr\n"
@@ -368,12 +368,12 @@
 #: ProcessModel.cpp:602
 #, kde-format
 msgid "- Process is doing some work."
-msgstr "- Le processus effectue une tâche."
+msgstr "- Le processus effectue une tâche."
 
 #: ProcessModel.cpp:604
 #, kde-format
 msgid "- Process is waiting for something to happen."
-msgstr "- Le processus attend que quelque chose se produise."
+msgstr "- Le processus attend que quelque chose se produise."
 
 #: ProcessModel.cpp:606
 #, kde-format
@@ -954,6 +954,8 @@
 "%1Process ID: %2"
 msgstr ""
+"%1 Identifiant du processus : %2"
 
 #: ProcessModel.cpp:1415
 #, kde-kuit-format
@@ -963,6 +965,10 @@
 "para>Parent: %3Parent's ID: %4"
 msgstr ""
+"%1 Identifiant du processus : %2Parent : %3Identifiant du pare

commit libksysguard5 for openSUSE:Factory

2017-07-02 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-07-02 13:35:13

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Sun Jul  2 13:35:13 2017 rev:49 rq:506551 version:5.10.3

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-06-16 10:50:59.471528692 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-07-02 13:35:21.418931628 +0200
@@ -1,0 +2,10 @@
+Tue Jun 27 17:50:25 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.3.php
+- Changes since 5.10.2:
+  * None
+
+---

Old:

  libksysguard-5.10.2.tar.xz

New:

  libksysguard-5.10.3.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.yGJB6M/_old  2017-07-02 13:35:23.158686301 +0200
+++ /var/tmp/diff_new_pack.yGJB6M/_new  2017-07-02 13:35:23.162685737 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.10.2
+Version:5.10.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.10.2.tar.xz -> libksysguard-5.10.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.10.2/CMakeLists.txt 
new/libksysguard-5.10.3/CMakeLists.txt
--- old/libksysguard-5.10.2/CMakeLists.txt  2017-06-13 20:25:13.0 
+0200
+++ new/libksysguard-5.10.3/CMakeLists.txt  2017-06-27 11:54:53.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.10.2")
+set(PROJECT_VERSION "5.10.3")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.10.2/po/de/processui.po 
new/libksysguard-5.10.3/po/de/processui.po
--- old/libksysguard-5.10.2/po/de/processui.po  2017-06-13 20:24:12.0 
+0200
+++ new/libksysguard-5.10.3/po/de/processui.po  2017-06-27 11:54:27.0 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-02-05 04:12+0100\n"
-"PO-Revision-Date: 2017-05-12 21:15+0100\n"
+"PO-Revision-Date: 2017-06-21 06:31+0100\n"
 "Last-Translator: Burkhard Lück \n"
 "Language-Team: German \n"
 "Language: de\n"
@@ -932,6 +932,9 @@
 "para>Parent: %3Parent's ID: %4"
 msgstr ""
+"%1Process ID: %2Mutter-Prozess: %3Mutter-ID: %4"
 
 #: ProcessModel.cpp:1422
 #, kde-kuit-format
@@ -940,6 +943,8 @@
 "%1Process ID: %2Parent's ID: %3"
 msgstr ""
+"%1Prozess-ID: %2Mutter-ID: %3"
 
 #: ProcessModel.cpp:1429 ProcessModel.cpp:1517
 #, kde-kuit-format
@@ -969,6 +974,11 @@
 "time: %4Relative start time:"
 " %5"
 msgstr ""
+"Clock-Ticks seit Systemstart: %1Sekunden seit Systemstart: %2 "
+"(System boot time: %3)Absolute "
+"Startzeit: %4Relative "
+"Startzeit: %5"
 
 #: ProcessModel.cpp:1460
 #, kde-kuit-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.10.2/po/fr/processui.po 
new/libksysguard-5.10.3/po/fr/processui.po
--- old/libksysguard-5.10.2/po/fr/processui.po  2017-06-13 20:24:22.0 
+0200
+++ new/libksysguard-5.10.3/po/fr/processui.po  2017-06-27 11:54:31.0 
+0200
@@ -9,16 +9,16 @@
 # Guillaume Pujol , 2010.
 # Sébastien Renard , 2011.
 # xavier , 2013.
-# Vincent Pinon , 2016.
+# Vincent Pinon , 2016, 2017.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-02-05 04:12+0100\n"
-"PO-Revision-Date: 2016-11-23 10:54+0100\n"
+"PO-Revision-Date: 2017-06-23 16:24+0100\n"
 "Last-Translator: Vincent Pinon \n"
-"Language-Team: French \n"
+"Language-Team: French \n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -771,20 +771,20 @@
 #, kde-kuit-format
 msgctxt "@info:tooltip"
 msgid "Login Name: %1"
-msgstr ""
+msgstr "Nom de connexion : %1"
 
 #: ProcessModel.cpp:1131
-#, fuzzy, kde-kuit-format
-#| msgid "This user is not recognized for some reason."
+#, kde-kuit-format
 msgctxt "@info:tooltip"
 msgid "This user is not recognized for some reason."
-msgstr "Cet utilisateur n'est pas reconnu pour une raison quelconque."
+msgstr ""
+"Cet utilisateur n'est pas reconnu pour une raison quelconque."
 
 #: ProcessModel.cpp:1134
 #, kde-kuit-format
 msgctxt "@info:tooltip"
 msgid "%1"
-msgstr 

commit libksysguard5 for openSUSE:Factory

2017-06-16 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-06-16 10:50:56

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Fri Jun 16 10:50:56 2017 rev:48 rq:503582 version:5.10.2

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-06-10 17:55:29.825736322 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-06-16 10:50:59.471528692 +0200
@@ -1,0 +2,10 @@
+Tue Jun 13 21:35:01 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.2.php
+- Changes since 5.10.1:
+  * None
+
+---

Old:

  libksysguard-5.10.1.tar.xz

New:

  libksysguard-5.10.2.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.MN5Q6d/_old  2017-06-16 10:51:00.495384567 +0200
+++ /var/tmp/diff_new_pack.MN5Q6d/_new  2017-06-16 10:51:00.499384003 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.10.1
+Version:5.10.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.10.1.tar.xz -> libksysguard-5.10.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.10.1/CMakeLists.txt 
new/libksysguard-5.10.2/CMakeLists.txt
--- old/libksysguard-5.10.1/CMakeLists.txt  2017-06-06 13:40:46.0 
+0200
+++ new/libksysguard-5.10.2/CMakeLists.txt  2017-06-13 20:25:13.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.10.1")
+set(PROJECT_VERSION "5.10.2")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.10.1/po/tr/processui.po 
new/libksysguard-5.10.2/po/tr/processui.po
--- old/libksysguard-5.10.1/po/tr/processui.po  2017-06-06 13:40:39.0 
+0200
+++ new/libksysguard-5.10.2/po/tr/processui.po  2017-06-13 20:25:06.0 
+0200
@@ -543,16 +543,16 @@
 msgstr ""
 "Sürecin sahibi olan kullanıcı. Efektif, setuid vs. kullanıcıları "
 "farklıysa, sürecin sahibi olan kullanıcıyı takiben efektif kullanıcı "
-"görünecektir. Araç ipucu tam bilgiyi içerir. Giriş Adı/"
-"GrubuBu süreci oluşturan Gerçek Kullanıcının/Grubun kullanıcı adıEfektif Kullanıcı/GrupSüreç Efektif Kullanıcı/Grup "
-"yetkileriyle çalışıyor. Bu durum gerçek kullanıcıdan farklıysa gösterilir.Setuid Kullanıcı/Grupİkili dosyada kayıtlı "
-"kullanıcı adı. Süreç Efektif Kullanıcı/Grup bilgilerini aşarak Setuid "
-"Kullanıcı/Grup bilgileriyle çalışabilir.Dosya Sistemi "
-"Kullanıcı/GrubuDosya sistemine erişim Dosya Sistemi Kullanıcı/Grubu "
-"kontrolüyle yapılır. Bu işlem Linux'a özgür bir çağrıdır. Daha fazla bilgi "
-"için setfsuid(2) bilgisine bakın."
+"görünecektir. Araç ipucu tam bilgiyi içerir. Giriş "
+"Adı/GrubuBu süreci oluşturan Gerçek Kullanıcının/Grubun kullanıcı "
+"adıEfektif Kullanıcı/GrupSüreç Efektif Kullanıcı/"
+"Grup yetkileriyle çalışıyor. Bu durum gerçek kullanıcıdan farklıysa "
+"gösterilir.Setuid Kullanıcı/Grupİkili dosyada "
+"kayıtlı kullanıcı adı. Süreç Efektif Kullanıcı/Grup bilgilerini aşarak "
+"Setuid Kullanıcı/Grup bilgileriyle çalışabilir.Dosya "
+"Sistemi Kullanıcı/GrubuDosya sistemine erişim Dosya Sistemi "
+"Kullanıcı/Grubu kontrolüyle yapılır. Bu işlem Linux'a özgür bir çağrıdır. "
+"Daha fazla bilgi için setfsuid(2) bilgisine bakın."
 
 #: ProcessModel.cpp:1018
 #, kde-format
@@ -566,8 +566,8 @@
 "Ayrılmış adres uzayı - bellek değil, adres uzayı. Pratikte bu değer "
 "neredeyse hiçbir anlam ifade etmemektedir. Bir süreç sistemden büyük bir "
 "bellek bloğu isteğinde bulunur ve bunun sadece küçük bir kısmını kullanırsa, "
-"gerçek kullanım düşük, VIRT yüksek değer olacaktır. Teknik bilgi: Bu bilgi /proc/*/status  adresindeki VmSize ve top programındaki VIRT "
+"gerçek kullanım düşük, VIRT yüksek değer olacaktır. Teknik bilgi: "
+"Bu bilgi /proc/*/status  adresindeki VmSize ve top programındaki VIRT "
 "bilgileridir."
 
 #: ProcessModel.cpp:1020
@@ -707,9 +707,9 @@
 msgstr ""
 "Bu sütun tüm süreçlerin IO istatistiklerini gösterir. Araç ipucu "
 "aşağıdaki bilgiyi gösterir:Okunan karakterlerBu "
-"görevin bellekten okuduğu bayt sayısı. Temel olarak sürecin read() ve "
-"pread() çağrılarına geçtiğindeki toplam baytlarının toplamıdır.Yazılan karakterlerBu görevin diske yazdığı bayt sayısı. "
+"görevin bellekten o

commit libksysguard5 for openSUSE:Factory

2017-06-10 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-06-10 17:55:25

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Sat Jun 10 17:55:25 2017 rev:47 rq:501487 version:5.10.1

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-06-01 16:26:17.521627996 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-06-10 17:55:29.825736322 +0200
@@ -1,0 +2,10 @@
+Tue Jun  6 17:19:56 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.1.php
+- Changes since 5.10.0:
+  * None
+
+---

Old:

  libksysguard-5.10.0.tar.xz

New:

  libksysguard-5.10.1.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.DWiQIC/_old  2017-06-10 17:55:30.333664602 +0200
+++ /var/tmp/diff_new_pack.DWiQIC/_new  2017-06-10 17:55:30.333664602 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.10.0
+Version:5.10.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: libksysguard-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem

++ libksysguard-5.10.0.tar.xz -> libksysguard-5.10.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.10.0/CMakeLists.txt 
new/libksysguard-5.10.1/CMakeLists.txt
--- old/libksysguard-5.10.0/CMakeLists.txt  2017-05-26 10:57:34.0 
+0200
+++ new/libksysguard-5.10.1/CMakeLists.txt  2017-06-06 13:40:46.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.10.0")
+set(PROJECT_VERSION "5.10.1")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.10.0/po/cs/processui.po 
new/libksysguard-5.10.1/po/cs/processui.po
--- old/libksysguard-5.10.0/po/cs/processui.po  2017-05-26 10:56:32.0 
+0200
+++ new/libksysguard-5.10.1/po/cs/processui.po  2017-06-06 13:39:47.0 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-02-05 04:12+0100\n"
-"PO-Revision-Date: 2017-02-22 14:58+0100\n"
+"PO-Revision-Date: 2017-05-31 17:37+0100\n"
 "Last-Translator: Vít Pelčák \n"
 "Language-Team: Czech \n"
 "Language: cs\n"
@@ -840,7 +840,7 @@
 #, kde-kuit-format
 msgctxt "@info:tooltip"
 msgid "Running on: %1"
-msgstr "Bežící na: %1"
+msgstr "Běžící na: %1"
 
 #: ProcessModel.cpp:1448
 #, kde-kuit-format




commit libksysguard5 for openSUSE:Factory

2017-06-01 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-06-01 16:26:14

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Thu Jun  1 16:26:14 2017 rev:46 rq:498807 version:5.10.0

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-04-30 21:13:55.961001637 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-06-01 16:26:17.521627996 +0200
@@ -1,0 +2,22 @@
+Fri May 26 14:10:31 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.0.php
+- Changes since 5.9.95:
+  * None
+
+---
+Thu May 11 20:26:26 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.95
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.95.php
+- Changes since 5.9.5:
+  * Make Plasma optional in exchange of disabling signalplotter
+  * Fix minor glitches
+  * Fix strings in tooltips
+
+---

Old:

  libksysguard-5.9.5.tar.xz

New:

  libksysguard-5.10.0.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.JzWmsr/_old  2017-06-01 16:26:18.225528742 +0200
+++ /var/tmp/diff_new_pack.JzWmsr/_new  2017-06-01 16:26:18.225528742 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.9.5
+Version:5.10.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
+Source: libksysguard-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem

++ libksysguard-5.9.5.tar.xz -> libksysguard-5.10.0.tar.xz ++
 52476 lines of diff (skipped)




commit libksysguard5 for openSUSE:Factory

2017-04-30 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-04-30 21:13:50

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Sun Apr 30 21:13:50 2017 rev:45 rq:491307 version:5.9.5

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-03-28 15:16:12.432682443 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-04-30 21:13:55.961001637 +0200
@@ -1,0 +2,10 @@
+Tue Apr 25 18:58:03 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.9.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.5.php
+- Changes since 5.9.4:
+  * don't reset the view to the top on gaining focus (kde#363420)
+
+---

Old:

  libksysguard-5.9.4.tar.xz

New:

  libksysguard-5.9.5.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.CSauTz/_old  2017-04-30 21:13:57.116838692 +0200
+++ /var/tmp/diff_new_pack.CSauTz/_new  2017-04-30 21:13:57.124837564 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.9.4
+Version:5.9.5
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.9.4.tar.xz -> libksysguard-5.9.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.9.4/CMakeLists.txt 
new/libksysguard-5.9.5/CMakeLists.txt
--- old/libksysguard-5.9.4/CMakeLists.txt   2017-03-21 14:57:37.0 
+0100
+++ new/libksysguard-5.9.5/CMakeLists.txt   2017-04-25 15:07:57.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.9.4")
+set(PROJECT_VERSION "5.9.5")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.9.4/po/pl/processui.po 
new/libksysguard-5.9.5/po/pl/processui.po
--- old/libksysguard-5.9.4/po/pl/processui.po   2017-03-21 14:57:23.0 
+0100
+++ new/libksysguard-5.9.5/po/pl/processui.po   2017-04-25 15:07:05.0 
+0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:21+0100\n"
-"PO-Revision-Date: 2017-03-04 06:41+0100\n"
+"PO-Revision-Date: 2017-04-22 07:58+0100\n"
 "Last-Translator: Łukasz Wojniłowicz \n"
 "Language-Team: Polish \n"
 "Language: pl\n"
@@ -232,7 +232,7 @@
 #: ksysguardprocesslist.cpp:747
 #, kde-format
 msgid "Show I/O rate"
-msgstr "Pokaż prędkość I/O"
+msgstr "Pokaż prędkość WE/WY"
 
 #: ksysguardprocesslist.cpp:774
 #, kde-format
@@ -259,8 +259,8 @@
 "You do not have the permission to change the I/O priority of the process and "
 "there was a problem trying to run as root.  Error %1 %2"
 msgstr ""
-"Nie masz wystarczających uprawnień, żeby ustawić priorytet I/O. Wystąpił też "
-"problem podczas próby działania jako administrator.  Kod błędu %1 %2"
+"Nie masz wystarczających uprawnień, żeby ustawić priorytet WE/WY. Wystąpił "
+"też problem podczas próby działania jako administrator.  Kod błędu %1 %2"
 
 #: ksysguardprocesslist.cpp:1229
 #, kde-format
@@ -1651,7 +1651,7 @@
 #: ReniceDlgUi.ui:264
 #, kde-format
 msgid "I/O Scheduler"
-msgstr "Planista I/O"
+msgstr "Planista WE/WY"
 
 #. i18n: ectx: property (toolTip), widget (QRadioButton, radioIONormal)
 #: ReniceDlgUi.ui:293
@@ -1767,11 +1767,12 @@
 "weight:600;\">Planista: bezczynne\n"
 "Program działający z "
-"priorytetem I/O bezczynny otrzymuje "
-"dostęp do dysku tylko wtedy, kiedy żaden inny progam nie potrzebował takiego "
-"dostępu przez określony czas. Wpływ procesów bezczynnych na normalne działanie systemu powinien być zerowy. W "
-"przypadku tej klasy priorytety nie mają znaczenia."
+"priorytetem WE/WY bezczynny "
+"otrzymuje dostęp do dysku tylko wtedy, kiedy żaden inny progam nie "
+"potrzebował takiego dostępu przez określony czas. Wpływ procesów bezczynnych na normalne działanie systemu "
+"powinien być zerowy. W przypadku tej klasy priorytety nie mają znaczenia."
 
 #. i18n: ectx: property (text), widget (QRadioButton, radioIdle)
 #: ReniceDlgUi.ui:323
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.9.4/po/tr/processui.po 
new/libksysguard-5.9.5/po/tr/processui.po
--- old/libksysguard-5.9.4/po/tr/processui.po   2017-03-21 14:57:32.0 
+0100
+++ new/libksysguard-5.9.5/po/tr/processui.po   2017-04-25 15:07:37.000

commit libksysguard5 for openSUSE:Factory

2017-03-28 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-03-28 15:16:11

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Tue Mar 28 15:16:11 2017 rev:44 rq:482112 version:5.9.4

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-03-03 17:24:59.742826329 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-03-28 15:16:12.432682443 +0200
@@ -1,0 +2,9 @@
+Tue Mar 21 19:21:46 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.4.php
+- Changes since 5.9.3:
+  * None
+---

Old:

  libksysguard-5.9.3.tar.xz

New:

  libksysguard-5.9.4.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.ssDHk9/_old  2017-03-28 15:16:13.124584438 +0200
+++ /var/tmp/diff_new_pack.ssDHk9/_new  2017-03-28 15:16:13.136582738 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.9.3
+Version:5.9.4
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.9.3.tar.xz -> libksysguard-5.9.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.9.3/CMakeLists.txt 
new/libksysguard-5.9.4/CMakeLists.txt
--- old/libksysguard-5.9.3/CMakeLists.txt   2017-02-28 13:59:28.0 
+0100
+++ new/libksysguard-5.9.4/CMakeLists.txt   2017-03-21 14:57:37.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.9.3")
+set(PROJECT_VERSION "5.9.4")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.9.3/po/it/ksgrd.po 
new/libksysguard-5.9.4/po/it/ksgrd.po
--- old/libksysguard-5.9.3/po/it/ksgrd.po   2017-02-28 13:58:54.0 
+0100
+++ new/libksysguard-5.9.4/po/it/ksgrd.po   2017-03-21 14:57:13.0 
+0100
@@ -6,19 +6,21 @@
 # Pino Toscano , 2006, 2007, 2009, 2013.
 # Dario Panico , 2008.
 # Luciano Montanaro , 2008.
+# Paolo Zamponi , 2017.
 msgid ""
 msgstr ""
 "Project-Id-Version: ksysguard\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:21+0100\n"
-"PO-Revision-Date: 2013-03-27 18:52+0100\n"
-"Last-Translator: Pino Toscano \n"
+"PO-Revision-Date: 2017-03-07 17:11+0100\n"
+"Last-Translator: Paolo Zamponi \n"
 "Language-Team: Italian \n"
 "Language: it\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: SensorAgent.cpp:112
 #, kde-format
@@ -58,7 +60,7 @@
 #: SensorManager.cpp:70
 #, kde-format
 msgid "User Load"
-msgstr "Carico degli utente"
+msgstr "Carico utente"
 
 #: SensorManager.cpp:71
 #, kde-format
@@ -689,84 +691,80 @@
 #: SensorManager.cpp:219
 #, kde-format
 msgid "Link Quality"
-msgstr ""
+msgstr "Qualità del collegamento"
 
 #: SensorManager.cpp:220
-#, fuzzy, kde-format
-#| msgid "Fill Level"
+#, kde-format
 msgid "Signal Level"
-msgstr "Livello di riempimento"
+msgstr "Livello del segnale"
 
 #: SensorManager.cpp:221
-#, fuzzy, kde-format
-#| msgid "Inode Level"
+#, kde-format
 msgid "Noise Level"
-msgstr "Livello di inode"
+msgstr "Livello del rumore"
 
 #: SensorManager.cpp:222
 #, kde-format
 msgid "Rx Invalid Nwid Packets"
-msgstr ""
+msgstr "Pacchetti Nwid ricevuti non validi"
 
 #: SensorManager.cpp:223
 #, kde-format
 msgid "Total Rx Invalid Nwid Packets"
-msgstr ""
+msgstr "Totale pacchetti Nwid ricevuti non validi"
 
 #: SensorManager.cpp:224
 #, kde-format
 msgid "Rx Invalid Crypt Packets"
-msgstr ""
+msgstr "Pacchetti criptati ricevuti non validi"
 
 #: SensorManager.cpp:225
 #, kde-format
 msgid "Total Rx Invalid Crypt Packets"
-msgstr ""
+msgstr "Totale pacchetti criptati ricevuti non validi"
 
 #: SensorManager.cpp:226
 #, kde-format
 msgid "Rx Invalid Frag Packets"
-msgstr ""
+msgstr "Pacchetti frammentati ricevuti non validi"
 
 #: SensorManager.cpp:227
 #, kde-format
 msgid "Total Rx Invalid Frag Packets"
-msgstr ""
+msgstr "Totale pacchetti frammentati ricevuti non validi"
 
 #: SensorManager.cpp:228
 #, kde-format
 msgid "Tx Excessive Retries Packets"
-msgstr ""
+msgstr "Pacchetti con tentativi eccessivi di trasmissione"
 
 #: SensorManager.cpp:229
 #, kde-format
 msgid "Total Tx Excessive R

commit libksysguard5 for openSUSE:Factory

2017-03-03 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-03-03 17:24:58

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Fri Mar  3 17:24:58 2017 rev:43 rq:461480 version:5.9.3

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-02-19 01:12:17.720602091 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-03-03 17:24:59.742826329 +0100
@@ -1,0 +2,10 @@
+Tue Feb 28 19:55:00 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.3.php
+- Changes since 5.9.2:
+  * None
+
+---

Old:

  libksysguard-5.9.2.tar.xz

New:

  libksysguard-5.9.3.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.jbilks/_old  2017-03-03 17:25:00.418730721 +0100
+++ /var/tmp/diff_new_pack.jbilks/_new  2017-03-03 17:25:00.422730154 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.9.2
+Version:5.9.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.9.2.tar.xz -> libksysguard-5.9.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.9.2/CMakeLists.txt 
new/libksysguard-5.9.3/CMakeLists.txt
--- old/libksysguard-5.9.2/CMakeLists.txt   2017-02-14 14:23:11.0 
+0100
+++ new/libksysguard-5.9.3/CMakeLists.txt   2017-02-28 13:59:28.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.9.2")
+set(PROJECT_VERSION "5.9.3")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.9.2/po/ca@valencia/processui.po 
new/libksysguard-5.9.3/po/ca@valencia/processui.po
--- old/libksysguard-5.9.2/po/ca@valencia/processui.po  2017-02-14 
14:22:41.0 +0100
+++ new/libksysguard-5.9.3/po/ca@valencia/processui.po  2017-02-28 
13:58:30.0 +0100
@@ -105,7 +105,7 @@
 #: ksysguardprocesslist.cpp:183
 #, kde-format
 msgid "Focus on Quick Search"
-msgstr "Focus a la cerca ràpida"
+msgstr "Focus a la busca ràpida"
 
 #: ksysguardprocesslist.cpp:338
 #, kde-format
@@ -1231,7 +1231,7 @@
 #: ProcessWidgetUI.ui:69
 #, kde-format
 msgid "Quick search"
-msgstr "Cerca ràpida"
+msgstr "Busca ràpida"
 
 #. i18n: ectx: property (whatsThis), widget (QComboBox, cmbFilter)
 #: ProcessWidgetUI.ui:98
@@ -1263,7 +1263,7 @@
 "(such as Username) do not apply.\n"
 msgstr ""
 "Canvia els processos que es mostren, i com es mostren. Els processos es "
-"poden filtrar més avant utilitzant el filtre de text de cerca ràpida.\n"
+"poden filtrar més avant utilitzant el filtre de text de busca ràpida.\n"
 "\n"
 "Tots els processosMostra tots els processos en el sistema.\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.9.2/po/cs/processui.po 
new/libksysguard-5.9.3/po/cs/processui.po
--- old/libksysguard-5.9.2/po/cs/processui.po   2017-02-14 14:22:41.0 
+0100
+++ new/libksysguard-5.9.3/po/cs/processui.po   2017-02-28 13:58:31.0 
+0100
@@ -1,6 +1,6 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Vít Pelčák , 2010, 2011, 2012, 2013, 2014, 2015.
+# Vít Pelčák , 2010, 2011, 2012, 2013, 2014, 2015, 2017.
 # Tomáš Chvátal , 2012.
 #
 msgid ""
@@ -16,7 +16,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: ksysguardprocesslist.cpp:159 ksysguardprocesslist.cpp:416
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.9.2/po/nn/processui.po 
new/libksysguard-5.9.3/po/nn/processui.po
--- old/libksysguard-5.9.2/po/nn/processui.po   2017-02-14 14:22:58.0 
+0100
+++ new/libksysguard-5.9.3/po/nn/processui.po   2017-02-28 13:59:06.0 
+0100
@@ -1,6 +1,6 @@
 # Translation of processui to Norwegian Nynorsk
 #
-# Karl Ove Hufthammer , 2007, 2008, 2009, 2010, 2011, 2012, 
2015.
+# Karl Ove Hufthammer , 2007, 2008, 2009, 2010, 2011, 2012, 
2015, 2017.
 # Håvard Korsvoll , 2008.
 # Eirik U. Birkeland , 2008, 2009, 2010, 2011.
 msgi

commit libksysguard5 for openSUSE:Factory

2017-02-18 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-02-19 01:12:16

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-02-10 09:58:34.412831037 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-02-19 01:12:17.720602091 +0100
@@ -1,0 +2,10 @@
+Tue Feb 14 17:58:12 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.2
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.2.php
+- Changes since 5.9.1:
+  * None
+
+---

Old:

  libksysguard-5.9.1.tar.xz

New:

  libksysguard-5.9.2.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.WHB595/_old  2017-02-19 01:12:18.184536848 +0100
+++ /var/tmp/diff_new_pack.WHB595/_new  2017-02-19 01:12:18.188536285 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.9.1
+Version:5.9.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.9.1.tar.xz -> libksysguard-5.9.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.9.1/CMakeLists.txt 
new/libksysguard-5.9.2/CMakeLists.txt
--- old/libksysguard-5.9.1/CMakeLists.txt   2017-02-07 12:23:50.0 
+0100
+++ new/libksysguard-5.9.2/CMakeLists.txt   2017-02-14 14:23:11.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.9.1")
+set(PROJECT_VERSION "5.9.2")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.9.1/po/sr/processui.po 
new/libksysguard-5.9.2/po/sr/processui.po
--- old/libksysguard-5.9.1/po/sr/processui.po   2017-02-07 12:23:45.0 
+0100
+++ new/libksysguard-5.9.2/po/sr/processui.po   2017-02-14 14:23:03.0 
+0100
@@ -1,12 +1,12 @@
 # Translation of processui.po into Serbian.
-# Chusslove Illich , 2007, 2008, 2009, 2010, 2011, 2012, 
2014, 2015, 2016.
+# Chusslove Illich , 2007, 2008, 2009, 2010, 2011, 2012, 
2014, 2015, 2016, 2017.
 # Dalibor Djuric , 2009, 2010, 2011.
 msgid ""
 msgstr ""
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:21+0100\n"
-"PO-Revision-Date: 2016-01-24 11:53+0100\n"
+"PO-Revision-Date: 2017-02-11 11:14+0100\n"
 "Last-Translator: Chusslove Illich \n"
 "Language-Team: Serbian \n"
 "Language: sr\n"
@@ -838,7 +838,7 @@
 #: ProcessModel.cpp:1198
 #, kde-format
 msgid "%1 (uid: %2)"
-msgstr "%1 (УИД: %2)"
+msgstr "%1 (УИД: %2)"
 
 # >> @option:radio +
 #: ProcessModel.cpp:1238
@@ -927,12 +927,12 @@
 #, kde-kuit-format
 msgctxt "name column tooltip. first item is the name"
 msgid "%1Process ID: %2Parent's ID: %3"
-msgstr "%1ИД процес: %2ИД родитеља: %3"
+msgstr "%1ИД процеса: %2ИД родитеља: %3"
 
 #: ProcessModel.cpp:1419 ProcessModel.cpp:1498
 #, kde-format
 msgid "Number of threads: %1"
-msgstr "Број нити: %1"
+msgstr "број нити: %1"
 
 #: ProcessModel.cpp:1421
 #, kde-format
@@ -950,8 +950,8 @@
 "Clock ticks since system boot: %1Seconds since system boot: %2 (System "
 "boot time: %3)Absolute start time: %4Relative start time: %5"
 msgstr ""
-"Откуцаја сата од подизања система: %1Секунди од подизања система: "
-"%2 (време подизања: %3)Апсолутно време покретања: %4Релативно "
+"откуцаја сата од подизања система: %1секунди од подизања система: "
+"%2 (време подизања: %3)апсолутно време покретања: %4релативно "
 "време покретања: %5"
 
 #: ProcessModel.cpp:1447
@@ -973,7 +973,7 @@
 #, kde-format
 msgid "This is a real time process.Scheduler priority: %1"
 msgstr ""
-"Ово је стварновременски процес.Приоритет распоређивања: %1"
+"Ово је стварновременски процес.приоритет распоређивања: %1"
 
 #: ProcessModel.cpp:1474
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.9.1/po/sr@ijekavian/processui.po 
new/libksysguard-5.9.2/po/sr@ijekavian/processui.po
--- old/libksysguard-5.9.1/po/sr@ijekavian/processui.po 2017-02-07 
12:23:46.0 +0100
+++ new/libksysguard-5.9.2/po/sr@ijekavian/processui.po 2017-02-14 
14:23:03.0 +0100
@@ -1,12 +1,12 @@
 # Translation of processui.po into Serbian.
-# Chusslove Illich , 2007, 2008, 2009, 2010, 2011, 2012, 
2014, 2015, 2016.
+# Chusslove Illich , 2007,

commit libksysguard5 for openSUSE:Factory

2017-02-10 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-02-10 09:58:33

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-02-03 17:47:52.890269220 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-02-10 09:58:34.412831037 +0100
@@ -1,0 +2,10 @@
+Tue Feb  7 18:53:32 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.1
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.1.php
+- Changes since 5.9.0:
+  * None
+
+---

Old:

  libksysguard-5.9.0.tar.xz

New:

  libksysguard-5.9.1.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.GuCLve/_old  2017-02-10 09:58:35.064738852 +0100
+++ /var/tmp/diff_new_pack.GuCLve/_new  2017-02-10 09:58:35.068738286 +0100
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.9.0
+Version:5.9.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: libksysguard-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem

++ libksysguard-5.9.0.tar.xz -> libksysguard-5.9.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.9.0/CMakeLists.txt 
new/libksysguard-5.9.1/CMakeLists.txt
--- old/libksysguard-5.9.0/CMakeLists.txt   2017-01-26 13:21:00.0 
+0100
+++ new/libksysguard-5.9.1/CMakeLists.txt   2017-02-07 12:23:50.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.9.0")
+set(PROJECT_VERSION "5.9.1")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.9.0/po/gl/processui.po 
new/libksysguard-5.9.1/po/gl/processui.po
--- old/libksysguard-5.9.0/po/gl/processui.po   2017-01-26 13:20:32.0 
+0100
+++ new/libksysguard-5.9.1/po/gl/processui.po   2017-02-07 12:23:37.0 
+0100
@@ -5,13 +5,13 @@
 # mvillarino , 2007, 2008, 2009.
 # marce villarino , 2009.
 # Marce Villarino , 2009, 2011, 2012, 2013.
-# Adrián Chaves Fernández , 2015.
+# Adrián Chaves Fernández , 2015, 2017.
 msgid ""
 msgstr ""
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:21+0100\n"
-"PO-Revision-Date: 2015-11-12 07:25+0100\n"
+"PO-Revision-Date: 2017-01-28 12:12+0100\n"
 "Last-Translator: Adrián Chaves Fernández (Gallaecio) \n"
 "Language-Team: Galician \n"
@@ -45,7 +45,7 @@
 #: ksysguardprocesslist.cpp:164
 #, kde-format
 msgid "Show Application Window"
-msgstr "Mostrar a xanela do programa"
+msgstr "Mostrar a xanela do aplicativo"
 
 #: ksysguardprocesslist.cpp:165
 #, kde-format
@@ -244,7 +244,7 @@
 "trying to run as root.  Error %1 %2"
 msgstr ""
 "Non ten permisos para mudar a prioridade do proceso. Ademais produciuse un "
-"problema ao tentar executar como root. Erro %1 %2"
+"problema ao intentar executar como root. Erro %1 %2"
 
 #: ksysguardprocesslist.cpp:1063 ksysguardprocesslist.cpp:1288
 #, kde-format
@@ -258,7 +258,7 @@
 "there was a problem trying to run as root.  Error %1 %2"
 msgstr ""
 "Non ten permisos para mudar a prioridades de E/S do proceso, ademais "
-"produciuse un problema ao tentar executar como root. Erro %1 %2"
+"produciuse un problema ao intentar executar como root. Erro %1 %2"
 
 #: ksysguardprocesslist.cpp:1229
 #, kde-format
@@ -267,7 +267,7 @@
 "and there was a problem trying to run as root.  Error %1 %2"
 msgstr ""
 "Non ten permisos para trocar o planificador de CPU do proceso. Ademais "
-"produciuse un problema ao tentar executar como root. Erro %1 %2"
+"produciuse un problema ao intentar executar como root. Erro %1 %2"
 
 #: ksysguardprocesslist.cpp:1259
 #, kde-format
@@ -276,7 +276,7 @@
 "trying to run as root.  Error %1 %2"
 msgstr ""
 "Non ten permisos para matar o proceso. Ademais produciuse un problema ao "
-"tentar executar como root. Erro %1 %2"
+"intentar executar como root. Erro %1 %2"
 
 #: ksysguardprocesslist.cpp:1297
 #, kde-format
@@ -587,10 +587,10 @@
 "Información técnica: Esta é unha aproxi

commit libksysguard5 for openSUSE:Factory

2017-02-03 Thread root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2017-01-31 12:21:52

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2017-01-04 17:25:54.683777912 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2017-02-03 17:47:52.890269220 +0100
@@ -1,0 +2,21 @@
+Thu Jan 26 19:58:39 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.0.php
+- Changes since 5.8.95:
+  * None
+
+---
+Thu Jan 12 20:39:58 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.8.95 (Plasma 5.9 Beta)
+  * New feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.8.95.php
+- Changes:
+  * Fix -Wmismatched-tags warnings.
+  * Revert "hmm didn't tag properly, let's try again".
+
+---

Old:

  libksysguard-5.8.5.tar.xz

New:

  libksysguard-5.9.0.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.LdproG/_old  2017-02-03 17:47:53.750148000 +0100
+++ /var/tmp/diff_new_pack.LdproG/_new  2017-02-03 17:47:53.754147437 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libksysguard5
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.8.5
+Version:5.9.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: 
http://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
+Source: libksysguard-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem

++ libksysguard-5.8.5.tar.xz -> libksysguard-5.9.0.tar.xz ++
 4339 lines of diff (skipped)




commit libksysguard5 for openSUSE:Factory

2016-11-25 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-11-25 12:10:07

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-11-04 20:56:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-11-25 12:10:08.0 +0100
@@ -1,0 +2,8 @@
+Wed Nov 23 10:59:30 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.8.4
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.8.4.php
+
+---

Old:

  libksysguard-5.8.3.tar.xz

New:

  libksysguard-5.8.4.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.BQkmhQ/_old  2016-11-25 12:10:09.0 +0100
+++ /var/tmp/diff_new_pack.BQkmhQ/_new  2016-11-25 12:10:09.0 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.8.3
+Version:5.8.4
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.8.3.tar.xz -> libksysguard-5.8.4.tar.xz ++
 119671 lines of diff (skipped)




commit libksysguard5 for openSUSE:Factory

2016-11-04 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-11-04 20:56:14

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-10-22 13:08:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-11-04 20:56:15.0 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 10:36:40 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.8.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.8.3.php
+
+---

Old:

  libksysguard-5.8.2.tar.xz

New:

  libksysguard-5.8.3.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.oDYdZJ/_old  2016-11-04 20:56:16.0 +0100
+++ /var/tmp/diff_new_pack.oDYdZJ/_new  2016-11-04 20:56:16.0 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.8.2
+Version:5.8.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.8.2.tar.xz -> libksysguard-5.8.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.8.2/CMakeLists.txt 
new/libksysguard-5.8.3/CMakeLists.txt
--- old/libksysguard-5.8.2/CMakeLists.txt   2016-10-18 13:39:54.0 
+0200
+++ new/libksysguard-5.8.3/CMakeLists.txt   2016-11-01 13:16:18.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.8.2")
+set(PROJECT_VERSION "5.8.3")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 




commit libksysguard5 for openSUSE:Factory

2016-10-22 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-10-22 13:08:45

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-10-18 09:59:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-10-22 13:08:46.0 +0200
@@ -1,0 +2,8 @@
+Tue Oct 18 15:16:03 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.8.2
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.8.2.php
+
+---

Old:

  libksysguard-5.8.1.tar.xz

New:

  libksysguard-5.8.2.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.Dh8Z0f/_old  2016-10-22 13:08:47.0 +0200
+++ /var/tmp/diff_new_pack.Dh8Z0f/_new  2016-10-22 13:08:47.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.8.1
+Version:5.8.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.8.1.tar.xz -> libksysguard-5.8.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.8.1/CMakeLists.txt 
new/libksysguard-5.8.2/CMakeLists.txt
--- old/libksysguard-5.8.1/CMakeLists.txt   2016-10-11 14:36:24.0 
+0200
+++ new/libksysguard-5.8.2/CMakeLists.txt   2016-10-18 13:39:54.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.8.1")
+set(PROJECT_VERSION "5.8.2")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 




commit libksysguard5 for openSUSE:Factory

2016-10-18 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-10-18 09:59:53

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-10-04 15:52:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-10-18 09:59:53.0 +0200
@@ -1,0 +2,13 @@
+Tue Oct 11 15:44:28 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.8.1
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.8.1.php
+
+---
+Wed Oct  5 07:58:48 UTC 2016 - fab...@ritter-vogt.de
+
+- Add Source: URL back
+
+---

Old:

  libksysguard-5.8.0.tar.xz

New:

  libksysguard-5.8.1.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.h2l7AJ/_old  2016-10-18 09:59:54.0 +0200
+++ /var/tmp/diff_new_pack.h2l7AJ/_new  2016-10-18 09:59:54.0 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.8.0
+Version:5.8.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.kde.org
-Source: libksysguard-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/libksysguard-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem

++ libksysguard-5.8.0.tar.xz -> libksysguard-5.8.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.8.0/CMakeLists.txt 
new/libksysguard-5.8.1/CMakeLists.txt
--- old/libksysguard-5.8.0/CMakeLists.txt   2016-09-29 13:29:36.0 
+0200
+++ new/libksysguard-5.8.1/CMakeLists.txt   2016-10-11 14:36:24.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.8.0")
+set(PROJECT_VERSION "5.8.1")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 




commit libksysguard5 for openSUSE:Factory

2016-10-04 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-10-04 15:53:12

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-08-29 15:28:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-10-04 15:52:50.0 +0200
@@ -1,0 +2,24 @@
+Thu Sep 29 16:36:28 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.8.0
+  * New LTS feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.8.0.php
+
+---
+Thu Sep 15 15:53:55 UTC 2016 - fab...@ritter-vogt.de
+
+- 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
+
+---
+Tue Sep 13 17:42:09 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.7.5
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.5.php
+
+---

Old:

  libksysguard-5.7.4.tar.xz

New:

  libksysguard-5.8.0.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.T28V6K/_old  2016-10-04 15:52:51.0 +0200
+++ /var/tmp/diff_new_pack.T28V6K/_new  2016-10-04 15:52:51.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.7.4
+Version:5.8.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.7.4.tar.xz -> libksysguard-5.8.0.tar.xz ++
 57569 lines of diff (skipped)




commit libksysguard5 for openSUSE:Factory

2016-08-29 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-08-29 15:28:23

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-08-12 15:40:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-08-29 15:28:33.0 +0200
@@ -1,0 +2,8 @@
+Fri Aug 26 20:36:41 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.7.4
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.4.php
+
+---

Old:

  libksysguard-5.7.3.tar.xz

New:

  libksysguard-5.7.4.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.jlAPaf/_old  2016-08-29 15:28:35.0 +0200
+++ /var/tmp/diff_new_pack.jlAPaf/_new  2016-08-29 15:28:35.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.7.3
+Version:5.7.4
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.7.3.tar.xz -> libksysguard-5.7.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.7.3/CMakeLists.txt 
new/libksysguard-5.7.4/CMakeLists.txt
--- old/libksysguard-5.7.3/CMakeLists.txt   2016-08-02 11:42:05.0 
+0200
+++ new/libksysguard-5.7.4/CMakeLists.txt   2016-08-23 14:50:02.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.7.3")
+set(PROJECT_VERSION "5.7.4")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 




commit libksysguard5 for openSUSE:Factory

2016-08-12 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-08-12 15:40:25

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-08-08 13:54:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-08-12 15:40:26.0 +0200
@@ -1,0 +2,8 @@
+Tue Aug  2 11:36:00 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.3.php
+
+---

Old:

  libksysguard-5.7.2.tar.xz

New:

  libksysguard-5.7.3.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.7BnY7a/_old  2016-08-12 15:40:27.0 +0200
+++ /var/tmp/diff_new_pack.7BnY7a/_new  2016-08-12 15:40:27.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.7.2
+Version:5.7.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.7.2.tar.xz -> libksysguard-5.7.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.7.2/CMakeLists.txt 
new/libksysguard-5.7.3/CMakeLists.txt
--- old/libksysguard-5.7.2/CMakeLists.txt   2016-07-19 13:03:52.0 
+0200
+++ new/libksysguard-5.7.3/CMakeLists.txt   2016-08-02 11:42:05.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.7.2")
+set(PROJECT_VERSION "5.7.3")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.7.2/po/pl/ksgrd.po 
new/libksysguard-5.7.3/po/pl/ksgrd.po
--- old/libksysguard-5.7.2/po/pl/ksgrd.po   2016-07-19 13:03:40.0 
+0200
+++ new/libksysguard-5.7.3/po/pl/ksgrd.po   2016-08-02 11:41:56.0 
+0200
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Łukasz Wojniłowicz , 2013, 2015.
+# Łukasz Wojniłowicz , 2013, 2015, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2015-10-13 10:31+\n"
-"PO-Revision-Date: 2015-10-17 08:34+0100\n"
+"PO-Revision-Date: 2016-07-23 07:44+0100\n"
 "Last-Translator: Łukasz Wojniłowicz \n"
 "Language-Team: Polish \n"
 "Language: pl\n"
@@ -59,7 +59,7 @@
 
 #: SensorManager.cpp:72
 msgid "Waiting"
-msgstr "Czekanie"
+msgstr "Oczekiwanie"
 
 #: SensorManager.cpp:73
 msgid "Interrupt Load"




commit libksysguard5 for openSUSE:Factory

2016-08-08 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-08-08 13:54:08

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-07-15 12:26:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-08-08 13:54:09.0 +0200
@@ -1,0 +2,23 @@
+Wed Jul 20 08:54:33 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.2
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.2.php
+
+---
+Wed Jul 13 06:13:32 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.1
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.1.php
+
+---
+Tue Jul  5 11:42:21 UTC 2016 - wba...@tmo.at
+
+- Use the new %kf5_find_lang macro to create the file list for the
+  lang package
+- Remove rpmlintrc file, it is not needed any more now
+
+---

Old:

  libksysguard-5.7.0.tar.xz
  libksysguard5-rpmlintrc

New:

  libksysguard-5.7.2.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.GIZujw/_old  2016-08-08 13:54:10.0 +0200
+++ /var/tmp/diff_new_pack.GIZujw/_new  2016-08-08 13:54:10.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.7.0
+Version:5.7.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+
@@ -26,7 +26,6 @@
 Url:http://www.kde.org
 Source: libksysguard-%{version}.tar.xz
 Source1:baselibs.conf
-Source99:   %{name}-rpmlintrc
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem
 BuildRequires:  xz
@@ -89,11 +88,14 @@
 %setup -q -n libksysguard-%{version}
 
 %build
-  %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=share/locale/kf5
+  %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=%{_kf5_localedir}
   %make_jobs
 
 %install
   %kf5_makeinstall -C build
+%if %{with lang}
+  %kf5_find_lang
+%endif
 
 %post   -p /sbin/ldconfig
 
@@ -129,9 +131,7 @@
 %{_kf5_libdir}/libprocessui.so
 
 %if %{with lang}
-%files lang
-%defattr(-,root,root)
-%{_kf5_localedir}/
+%files lang -f %{name}.lang
 %endif
 
 %changelog

++ libksysguard-5.7.0.tar.xz -> libksysguard-5.7.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.7.0/CMakeLists.txt 
new/libksysguard-5.7.2/CMakeLists.txt
--- old/libksysguard-5.7.0/CMakeLists.txt   2016-06-30 17:02:30.0 
+0200
+++ new/libksysguard-5.7.2/CMakeLists.txt   2016-07-19 13:03:52.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.7.0")
+set(PROJECT_VERSION "5.7.2")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.7.0/po/he/ksgrd.po 
new/libksysguard-5.7.2/po/he/ksgrd.po
--- old/libksysguard-5.7.0/po/he/ksgrd.po   1970-01-01 01:00:00.0 
+0100
+++ new/libksysguard-5.7.2/po/he/ksgrd.po   2016-07-19 13:03:27.0 
+0200
@@ -0,0 +1,715 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Elkana Bardugo , 2016.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2015-10-13 10:31+\n"
+"PO-Revision-Date: 2016-06-30 19:16+0200\n"
+"Last-Translator: Elkana Bardugo \n"
+"Language-Team: Hebrew \n"
+"Language: he\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: SensorAgent.cpp:112
+#, kde-format
+msgctxt "%1 is a host name"
+msgid ""
+"Message from %1:\n"
+"%2"
+msgstr ""
+"הודעה מ־%1:\n"
+"%2"
+
+#: SensorManager.cpp:64
+msgid "Change"
+msgstr "שינוי"
+
+#: SensorManager.cpp:65
+msgid "Rate"
+msgstr ""
+
+#: SensorManager.cpp:67
+msgid "CPU Load"
+msgstr ""
+
+#: SensorManager.cpp:68
+msgid "Idling"
+msgstr ""
+
+#: SensorManager.cpp:69
+msgid "Nice Load"
+msgstr ""
+
+#: SensorManager.cpp:70
+msgid "User Load"
+msgstr ""
+
+#: SensorManager.cpp:71
+msgctxt "@item sensor description"
+msgid "System Load"
+msgstr ""
+
+#: Se

commit libksysguard5 for openSUSE:Factory

2016-07-15 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-07-15 12:26:43

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-05-19 12:12:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-07-15 12:26:49.0 +0200
@@ -1,0 +2,8 @@
+Thu Jun 30 12:02:27 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.0
+  * New feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.0.php
+
+---

Old:

  libksysguard-5.6.4.tar.xz

New:

  libksysguard-5.7.0.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.hwuUqF/_old  2016-07-15 12:26:51.0 +0200
+++ /var/tmp/diff_new_pack.hwuUqF/_new  2016-07-15 12:26:51.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.6.4
+Version:5.7.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.6.4.tar.xz -> libksysguard-5.7.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.6.4/CMakeLists.txt 
new/libksysguard-5.7.0/CMakeLists.txt
--- old/libksysguard-5.6.4/CMakeLists.txt   2016-05-10 18:43:44.0 
+0200
+++ new/libksysguard-5.7.0/CMakeLists.txt   2016-06-30 17:02:30.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.6.4")
+set(PROJECT_VERSION "5.7.0")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
Files old/libksysguard-5.6.4/po/ar/messages.mo and 
new/libksysguard-5.7.0/po/ar/messages.mo differ
Files old/libksysguard-5.6.4/po/as/messages.mo and 
new/libksysguard-5.7.0/po/as/messages.mo differ
Files old/libksysguard-5.6.4/po/ast/messages.mo and 
new/libksysguard-5.7.0/po/ast/messages.mo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.6.4/po/ast/processui.po 
new/libksysguard-5.7.0/po/ast/processui.po
--- old/libksysguard-5.6.4/po/ast/processui.po  2016-05-10 18:42:53.0 
+0200
+++ new/libksysguard-5.7.0/po/ast/processui.po  2016-06-30 17:01:48.0 
+0200
@@ -1,15 +1,15 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# enolp , 2015.
+# enolp , 2015, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-01-26 08:37+\n"
-"PO-Revision-Date: 2015-11-21 02:59+0100\n"
+"PO-Revision-Date: 2016-03-07 01:00+0100\n"
 "Last-Translator: enolp \n"
-"Language-Team: Asturian \n"
+"Language-Team: Asturian <>\n"
 "Language: ast\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
Files old/libksysguard-5.6.4/po/be/messages.mo and 
new/libksysguard-5.7.0/po/be/messages.mo differ
Files old/libksysguard-5.6.4/po/be@latin/messages.mo and 
new/libksysguard-5.7.0/po/be@latin/messages.mo differ
Files old/libksysguard-5.6.4/po/bg/messages.mo and 
new/libksysguard-5.7.0/po/bg/messages.mo differ
Files old/libksysguard-5.6.4/po/bn_IN/messages.mo and 
new/libksysguard-5.7.0/po/bn_IN/messages.mo differ
Files old/libksysguard-5.6.4/po/bs/messages.mo and 
new/libksysguard-5.7.0/po/bs/messages.mo differ
Files old/libksysguard-5.6.4/po/ca/messages.mo and 
new/libksysguard-5.7.0/po/ca/messages.mo differ
Files old/libksysguard-5.6.4/po/ca@valencia/messages.mo and 
new/libksysguard-5.7.0/po/ca@valencia/messages.mo differ
Files old/libksysguard-5.6.4/po/cs/messages.mo and 
new/libksysguard-5.7.0/po/cs/messages.mo differ
Files old/libksysguard-5.6.4/po/csb/messages.mo and 
new/libksysguard-5.7.0/po/csb/messages.mo differ
Files old/libksysguard-5.6.4/po/da/messages.mo and 
new/libksysguard-5.7.0/po/da/messages.mo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.6.4/po/de/ksgrd.po 
new/libksysguard-5.7.0/po/de/ksgrd.po
--- old/libksysguard-5.6.4/po/de/ksgrd.po   2016-05-10 18:43:07.0 
+0200
+++ new/libksysguard-5.7.0/po/de/ksgrd.po   2016-06-30 17:01:55.0 
+0200
@@ -1,10 +1,10 @@
-# Burkhard Lück , 2013, 2014, 2015.
+# Burkhard Lück , 2013, 2014, 2015, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2015-10-13 10:31+\n"
-"PO-Revisio

commit libksysguard5 for openSUSE:Factory

2016-05-19 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-05-19 12:12:55

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-05-08 10:43:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-05-19 12:12:57.0 +0200
@@ -1,0 +2,8 @@
+Sun May 15 16:50:19 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.4
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.4.php
+
+---

Old:

  libksysguard-5.6.3.tar.xz

New:

  libksysguard-5.6.4.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.alWLPk/_old  2016-05-19 12:12:58.0 +0200
+++ /var/tmp/diff_new_pack.alWLPk/_new  2016-05-19 12:12:58.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.6.3
+Version:5.6.4
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.6.3.tar.xz -> libksysguard-5.6.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.6.3/CMakeLists.txt 
new/libksysguard-5.6.4/CMakeLists.txt
--- old/libksysguard-5.6.3/CMakeLists.txt   2016-04-19 13:14:23.0 
+0200
+++ new/libksysguard-5.6.4/CMakeLists.txt   2016-05-10 18:43:44.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.6.3")
+set(PROJECT_VERSION "5.6.4")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 




commit libksysguard5 for openSUSE:Factory

2016-05-08 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-05-08 10:43:23

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-04-12 19:05:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-05-08 10:43:24.0 +0200
@@ -1,0 +2,8 @@
+Tue Apr 19 20:45:59 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.3.php
+
+---

Old:

  libksysguard-5.6.2.tar.xz

New:

  libksysguard-5.6.3.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.eKi5NT/_old  2016-05-08 10:43:25.0 +0200
+++ /var/tmp/diff_new_pack.eKi5NT/_new  2016-05-08 10:43:25.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.6.2
+Version:5.6.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.6.2.tar.xz -> libksysguard-5.6.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.6.2/CMakeLists.txt 
new/libksysguard-5.6.3/CMakeLists.txt
--- old/libksysguard-5.6.2/CMakeLists.txt   2016-04-05 15:50:01.0 
+0200
+++ new/libksysguard-5.6.3/CMakeLists.txt   2016-04-19 13:14:23.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.6.2")
+set(PROJECT_VERSION "5.6.3")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.6.2/po/zh_TW/ksgrd.po 
new/libksysguard-5.6.3/po/zh_TW/ksgrd.po
--- old/libksysguard-5.6.2/po/zh_TW/ksgrd.po2016-04-05 15:49:58.0 
+0200
+++ new/libksysguard-5.6.3/po/zh_TW/ksgrd.po2016-04-19 13:14:22.0 
+0200
@@ -1,15 +1,15 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Franklin Weng , 2013.
+# Franklin Weng , 2013, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2015-10-13 10:31+\n"
-"PO-Revision-Date: 2013-03-11 12:52+0800\n"
-"Last-Translator: Franklin Weng \n"
-"Language-Team: Chinese Traditional \n"
+"PO-Revision-Date: 2016-04-10 22:10+0800\n"
+"Last-Translator: Franklin\n"
+"Language-Team: Chinese Traditional \n"
 "Language: zh_TW\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -559,71 +559,67 @@
 
 #: SensorManager.cpp:219
 msgid "Link Quality"
-msgstr ""
+msgstr "連線品質"
 
 #: SensorManager.cpp:220
-#, fuzzy
-#| msgid "Fill Level"
 msgid "Signal Level"
-msgstr "填入等級"
+msgstr "信號等級"
 
 #: SensorManager.cpp:221
-#, fuzzy
-#| msgid "Inode Level"
 msgid "Noise Level"
-msgstr "inode 等級"
+msgstr "雜訊等級"
 
 #: SensorManager.cpp:222
 msgid "Rx Invalid Nwid Packets"
-msgstr ""
+msgstr "讀取端不合法的 Nwid 封包"
 
 #: SensorManager.cpp:223
 msgid "Total Rx Invalid Nwid Packets"
-msgstr ""
+msgstr "讀取端不合法的 Nwid 封包總數"
 
 #: SensorManager.cpp:224
 msgid "Rx Invalid Crypt Packets"
-msgstr ""
+msgstr "讀取端不合法的加密封包"
 
 #: SensorManager.cpp:225
 msgid "Total Rx Invalid Crypt Packets"
-msgstr ""
+msgstr "讀取端不合法的加密封包總數"
 
 #: SensorManager.cpp:226
 msgid "Rx Invalid Frag Packets"
-msgstr ""
+msgstr "讀取端不合法的 Frag 封包"
 
 #: SensorManager.cpp:227
 msgid "Total Rx Invalid Frag Packets"
-msgstr ""
+msgstr "讀取端不合法的 Frag 封包總數"
 
 #: SensorManager.cpp:228
 msgid "Tx Excessive Retries Packets"
-msgstr ""
+msgstr "傳送端超過重試次數的封包"
 
 #: SensorManager.cpp:229
 msgid "Total Tx Excessive Retries Packets"
-msgstr ""
+msgstr "傳送端超過重試次數的封包總數"
 
 #: SensorManager.cpp:230
 msgid "Invalid Misc Packets"
-msgstr ""
+msgstr "不合法的 Misc 封包"
 
 #: SensorManager.cpp:231
 msgid "Total Invalid Misc Packets"
-msgstr ""
+msgstr "不合法的 Misc 封包總數"
 
 #: SensorManager.cpp:232
 msgid "Missed Beacons"
-msgstr ""
+msgstr "遺失的信標(Beacons)"
 
 #: SensorManager.cpp:233
 msgid "Total Missed Beacons"
-msgstr ""
+msgstr "遺失的信標(Beacons)總數"
 
 #: SensorManager.cpp:235
 msgid "Log Files"
-msgstr ""
+msgstr "紀錄檔"
 
 #: SensorManager.cpp:239
 msgctxt "the unit 1 per second"
@@ -684,7 +680,7 @@
 
 #: SensorManager.cpp:255
 msgid "Log File"
-msgstr ""
+msgstr "紀錄檔"
 
 #: SensorShellAgent.cpp:129
 #, kde-format
Files old/libksysguard-5.6.2/po/zh_TW/messages.mo and 
new/libksysgu

commit libksysguard5 for openSUSE:Factory

2016-04-12 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-04-12 19:05:25

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-04-07 13:30:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-04-12 19:05:26.0 +0200
@@ -1,0 +2,8 @@
+Tue Apr  5 15:53:51 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.2
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.2.php
+
+---

Old:

  libksysguard-5.6.1.tar.xz

New:

  libksysguard-5.6.2.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.DCZ1P0/_old  2016-04-12 19:05:27.0 +0200
+++ /var/tmp/diff_new_pack.DCZ1P0/_new  2016-04-12 19:05:27.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.6.1
+Version:5.6.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.6.1.tar.xz -> libksysguard-5.6.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.6.1/CMakeLists.txt 
new/libksysguard-5.6.2/CMakeLists.txt
--- old/libksysguard-5.6.1/CMakeLists.txt   2016-03-29 16:15:17.0 
+0200
+++ new/libksysguard-5.6.2/CMakeLists.txt   2016-04-05 15:50:01.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.6.1")
+set(PROJECT_VERSION "5.6.2")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
Files old/libksysguard-5.6.1/po/pt_BR/messages.mo and 
new/libksysguard-5.6.2/po/pt_BR/messages.mo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.6.1/po/pt_BR/processui.po 
new/libksysguard-5.6.2/po/pt_BR/processui.po
--- old/libksysguard-5.6.1/po/pt_BR/processui.po2016-03-29 
16:15:04.0 +0200
+++ new/libksysguard-5.6.2/po/pt_BR/processui.po2016-04-05 
15:49:44.0 +0200
@@ -1,18 +1,18 @@
 # Translation of processui.po to Brazilian Portuguese
-# Copyright (C) 2007-2015 This_file_is_part_of_KDE
+# Copyright (C) 2007-2016 This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
 # doutor.zero , 2007.
 # Diniz Bortolotto , 2007, 2008.
 # Fernando Boaglio , 2008.
-# André Marcelo Alvarenga , 2008, 2009, 2010, 2011, 2012, 
2013, 2014, 2015.
+# André Marcelo Alvarenga , 2008, 2009, 2010, 2011, 2012, 
2013, 2014, 2015, 2016.
 # Luiz Fernando Ranghetti , 2009, 2010.
 msgid ""
 msgstr ""
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-01-26 08:37+\n"
-"PO-Revision-Date: 2015-11-03 23:20-0200\n"
+"PO-Revision-Date: 2016-04-02 13:40-0300\n"
 "Last-Translator: André Marcelo Alvarenga \n"
 "Language-Team: Brazilian Portuguese \n"
 "Language: pt_BR\n"
@@ -20,7 +20,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: ksysguardprocesslist.cpp:159 ksysguardprocesslist.cpp:416
 msgid "Set Priority..."
@@ -486,7 +486,7 @@
 msgstr ""
 "O usuário que é proprietário do processo. Se o usuário efetivo, setuid, "
 "etc, for diferente, será mostrado o usuário que possui o processo, seguido "
-"do utilizador efetivo. A dica contém a informação completa. "
+"do usuário efetivo. A dica contém a informação completa. "
 "Nome do usuário/grupoO nome do usuário/grupo real "
 "que criou este processoUsuário/grupo efetivoO "
 "processo está em execução com privilégios do usuário/grupo efetivo. Este é "




commit libksysguard5 for openSUSE:Factory

2016-04-07 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-04-07 13:30:07

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-03-03 15:14:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-04-07 13:30:09.0 +0200
@@ -1,0 +2,21 @@
+Tue Mar 29 16:21:01 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.1
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.1.php
+
+---
+Sun Mar 20 09:19:55 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.0
+  * New feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.0.php
+
+---
+Fri Mar  4 15:06:46 UTC 2016 - dims...@opensuse.org
+
+- Add libksysguard5-glibc-2.23.patch: Fix build with glibc 2.23.
+
+---

Old:

  libksysguard-5.5.5.tar.xz

New:

  libksysguard-5.6.1.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.t2lFCa/_old  2016-04-07 13:30:10.0 +0200
+++ /var/tmp/diff_new_pack.t2lFCa/_new  2016-04-07 13:30:10.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.5.5
+Version:5.6.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.5.5.tar.xz -> libksysguard-5.6.1.tar.xz ++
 58530 lines of diff (skipped)




commit libksysguard5 for openSUSE:Factory

2016-03-03 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-03-03 15:14:49

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-02-11 12:34:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-03-03 15:14:51.0 +0100
@@ -1,0 +2,8 @@
+Tue Mar  1 17:33:15 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.5.5 (boo#968966)
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.5.5.php
+
+---

Old:

  libksysguard-5.5.4.tar.xz

New:

  libksysguard-5.5.5.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.ExSGY9/_old  2016-03-03 15:14:53.0 +0100
+++ /var/tmp/diff_new_pack.ExSGY9/_new  2016-03-03 15:14:53.0 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.5.4
+Version:5.5.5
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.5.4.tar.xz -> libksysguard-5.5.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.5.4/CMakeLists.txt 
new/libksysguard-5.5.5/CMakeLists.txt
--- old/libksysguard-5.5.4/CMakeLists.txt   2016-01-26 20:37:36.0 
+0100
+++ new/libksysguard-5.5.5/CMakeLists.txt   2016-03-01 14:38:03.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.5.4")
+set(PROJECT_VERSION "5.5.5")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.5.4/po/eo/processui.po 
new/libksysguard-5.5.5/po/eo/processui.po
--- old/libksysguard-5.5.4/po/eo/processui.po   2016-01-26 20:36:57.0 
+0100
+++ new/libksysguard-5.5.5/po/eo/processui.po   2016-03-01 14:37:35.0 
+0100
@@ -808,7 +808,7 @@
 #: ProcessModel.cpp:1446
 #, kde-format
 msgid "Nice level: %1 (%2)"
-msgstr "Prioritata afableco: %1 (%2)"
+msgstr "Prioritata afableco: %1 (%2)"
 
 #: ProcessModel.cpp:1450
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.5.4/po/nn/ksgrd.po 
new/libksysguard-5.5.5/po/nn/ksgrd.po
--- old/libksysguard-5.5.4/po/nn/ksgrd.po   2016-01-26 20:37:20.0 
+0100
+++ new/libksysguard-5.5.5/po/nn/ksgrd.po   2016-03-01 14:37:52.0 
+0100
@@ -1,12 +1,12 @@
 # Translation of ksgrd to Norwegian Nynorsk
 #
-# Karl Ove Hufthammer , 2015.
+# Karl Ove Hufthammer , 2015, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2015-10-13 10:31+\n"
-"PO-Revision-Date: 2015-10-18 10:04+0100\n"
+"PO-Revision-Date: 2016-01-31 14:56+0100\n"
 "Last-Translator: Karl Ove Hufthammer \n"
 "Language-Team: Norwegian Nynorsk \n"
 "Language: nn\n"
@@ -327,7 +327,7 @@
 
 #: SensorManager.cpp:145
 msgid "Sockets"
-msgstr "Soklar"
+msgstr "Socket-ar"
 
 #: SensorManager.cpp:146
 msgid "Total Number"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.5.4/po/sk/ksgrd.po 
new/libksysguard-5.5.5/po/sk/ksgrd.po
--- old/libksysguard-5.5.4/po/sk/ksgrd.po   2016-01-26 20:37:26.0 
+0100
+++ new/libksysguard-5.5.5/po/sk/ksgrd.po   2016-03-01 14:37:55.0 
+0100
@@ -1,11 +1,11 @@
 # translation of ksgrd.po to Slovak
-# Roman Paholík , 2013, 2015.
+# Roman Paholík , 2013, 2015, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: ksgrd.po\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2015-10-13 10:31+\n"
-"PO-Revision-Date: 2015-10-13 19:10+0100\n"
+"PO-Revision-Date: 2016-02-24 21:29+0100\n"
 "Last-Translator: Roman Paholik \n"
 "Language-Team: Slovak \n"
 "Language: sk\n"
@@ -569,51 +569,51 @@
 
 #: SensorManager.cpp:222
 msgid "Rx Invalid Nwid Packets"
-msgstr ""
+msgstr "Rx neplatné Nwid pakety"
 
 #: SensorManager.cpp:223
 msgid "Total Rx Invalid Nwid Packets"
-msgstr ""
+msgstr "Celkovo Rx neplatných Nwid paketov"
 
 #: SensorManager.cpp:224
 msgid "Rx Invalid Crypt Packets"
-msgstr ""
+msgstr "Rx neplatné Crypt pakety"
 
 #: SensorManager.cpp:225
 msgid "Total Rx Invalid Crypt Packets"
-msgstr ""
+msgstr "Celkovo Rx neplatných Crypt paketov"
 
 #: SensorManager.cpp:226
 msgid "Rx Invalid Frag Packets"
-msgstr ""
+msgstr "Rx

commit libksysguard5 for openSUSE:Factory

2016-02-11 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-02-11 12:34:47

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-01-20 09:51:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-02-11 12:34:48.0 +0100
@@ -1,0 +2,8 @@
+Tue Jan 26 22:20:14 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.5.4:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.5.4.php
+
+---

Old:

  libksysguard-5.5.3.tar.xz

New:

  libksysguard-5.5.4.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.GrUBEp/_old  2016-02-11 12:34:49.0 +0100
+++ /var/tmp/diff_new_pack.GrUBEp/_new  2016-02-11 12:34:49.0 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.5.3
+Version:5.5.4
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.5.3.tar.xz -> libksysguard-5.5.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.5.3/CMakeLists.txt 
new/libksysguard-5.5.4/CMakeLists.txt
--- old/libksysguard-5.5.3/CMakeLists.txt   2016-01-06 13:09:58.0 
+0100
+++ new/libksysguard-5.5.4/CMakeLists.txt   2016-01-26 20:37:36.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.5.3")
+set(PROJECT_VERSION "5.5.4")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.5.3/po/cs/ksgrd.po 
new/libksysguard-5.5.4/po/cs/ksgrd.po
--- old/libksysguard-5.5.3/po/cs/ksgrd.po   2016-01-06 13:09:16.0 
+0100
+++ new/libksysguard-5.5.4/po/cs/ksgrd.po   2016-01-26 20:36:54.0 
+0100
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-# Vit Pelcak , 2013, 2014.
+# Vit Pelcak , 2013, 2014, 2015.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2015-10-13 10:31+\n"
-"PO-Revision-Date: 2014-10-22 13:01+0200\n"
+"PO-Revision-Date: 2015-11-04 12:55+0100\n"
 "Last-Translator: Vít Pelčák \n"
 "Language-Team: Czech \n"
 "Language: cs\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "X-Language: cs_CZ\n"
 "X-Source-Language: en_US\n"
 
@@ -564,16 +564,12 @@
 msgstr ""
 
 #: SensorManager.cpp:220
-#, fuzzy
-#| msgid "Fill Level"
 msgid "Signal Level"
-msgstr "Úroveň zaplnění"
+msgstr "Úroveň signálu"
 
 #: SensorManager.cpp:221
-#, fuzzy
-#| msgid "Inode Level"
 msgid "Noise Level"
-msgstr "Úroveň inode"
+msgstr "Úroveň šumu"
 
 #: SensorManager.cpp:222
 msgid "Rx Invalid Nwid Packets"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.5.3/po/de/processui.po 
new/libksysguard-5.5.4/po/de/processui.po
--- old/libksysguard-5.5.3/po/de/processui.po   2016-01-06 13:09:18.0 
+0100
+++ new/libksysguard-5.5.4/po/de/processui.po   2016-01-26 20:36:57.0 
+0100
@@ -1,7 +1,7 @@
 # Thomas Reitelbach , 2007, 2008, 2009, 2010.
 # Burkhard Lück , 2009, 2011, 2014, 2015.
 # Johannes Obermayr , 2010.
-# Frederik Schwarzer , 2010, 2011, 2012, 2015.
+# Frederik Schwarzer , 2010, 2011, 2012, 2015, 2016.
 # Markus Slopianka , 2010.
 # Panagiotis Papadopoulos , 2010.
 msgid ""
@@ -9,7 +9,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2015-11-03 14:08+\n"
-"PO-Revision-Date: 2015-11-06 02:56+0100\n"
+"PO-Revision-Date: 2016-01-23 10:23+0100\n"
 "Last-Translator: Frederik Schwarzer \n"
 "Language-Team: German \n"
 "Language: de\n"
@@ -572,6 +572,8 @@
 "Technical information: The underlying value (clock ticks since "
 "system boot) is retrieved from /proc/[pid]/stat"
 msgstr ""
+"Technischer Hinweis: Der zugrunde liegende Wert (Clock-Ticks seit "
+"Systemstart) wird aus /proc/[pid]/stat bezogen"
 
 #: ProcessModel.cpp:1012
 msgid "Technical information: This is from /proc/*/cmdline"
@@ -854,6 +856,8 @@
 "Clock ticks s

commit libksysguard5 for openSUSE:Factory

2016-01-20 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-01-20 09:51:54

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2016-01-03 13:26:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-01-20 09:51:55.0 +0100
@@ -1,0 +2,8 @@
+Wed Jan  6 14:12:14 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.5.3:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.5.3.php
+
+---

Old:

  libksysguard-5.5.2.tar.xz

New:

  libksysguard-5.5.3.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.9O3TUv/_old  2016-01-20 09:51:57.0 +0100
+++ /var/tmp/diff_new_pack.9O3TUv/_new  2016-01-20 09:51:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libksysguard5
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.5.2
+Version:5.5.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.5.2.tar.xz -> libksysguard-5.5.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.5.2/CMakeLists.txt 
new/libksysguard-5.5.3/CMakeLists.txt
--- old/libksysguard-5.5.2/CMakeLists.txt   2015-12-22 11:38:56.0 
+0100
+++ new/libksysguard-5.5.3/CMakeLists.txt   2016-01-06 13:09:58.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.5.2")
+set(PROJECT_VERSION "5.5.3")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.5.2/po/lt/processui.po 
new/libksysguard-5.5.3/po/lt/processui.po
--- old/libksysguard-5.5.2/po/lt/processui.po   2015-12-22 11:38:36.0 
+0100
+++ new/libksysguard-5.5.3/po/lt/processui.po   2016-01-06 13:09:37.0 
+0100
@@ -5,21 +5,22 @@
 # Tomas Straupis , 2010, 2011.
 # Remigijus Jarmalavičius , 2011.
 # Donatas G. , 2012.
+# Mindaugas Baranauskas , 2015.
 msgid ""
 msgstr ""
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2015-11-03 14:08+\n"
-"PO-Revision-Date: 2012-01-15 20:16+0200\n"
-"Last-Translator: Donatas G. \n"
-"Language-Team: Lithuanian \n"
+"PO-Revision-Date: 2015-12-30 18:08+0200\n"
+"Last-Translator: Mindaugas Baranauskas \n"
+"Language-Team: lt \n"
 "Language: lt\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n"
 "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n"
-"X-Generator: Lokalize 1.2\n"
+"X-Generator: Lokalize 1.5\n"
 
 #: ksysguardprocesslist.cpp:159 ksysguardprocesslist.cpp:416
 msgid "Set Priority..."
@@ -107,7 +108,7 @@
 "Nutraukti parinktą procesą. Įspėjimas: galite prarasti neišsaugotą darbą."
 "Spauskite dešinį pelės mygtuką, jei norite nusiųsti kitus signalus."
 "Techninės informacijos rasite pažiūrėję „kas tai“.Norėdami išjungti "
-"konkretų langą, bet kuriuo metu spauskite Ctrl+Alt+Esc."
+"konkretų langą, bet kuriuo metu spauskite Vald+Alt+Esc."
 
 #: ksysguardprocesslist.cpp:418
 msgctxt "Context menu"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.5.2/po/pt_BR/ksysguardlsofwidgets.po 
new/libksysguard-5.5.3/po/pt_BR/ksysguardlsofwidgets.po
--- old/libksysguard-5.5.2/po/pt_BR/ksysguardlsofwidgets.po 2015-12-22 
11:38:44.0 +0100
+++ new/libksysguard-5.5.3/po/pt_BR/ksysguardlsofwidgets.po 2016-01-06 
13:09:45.0 +0100
@@ -1,23 +1,22 @@
-# tradução do ksysguardlsofwidgets.po para Brazilian Portuguese
-# translation of ksysguardlsofwidgets.po to Brazilian Portuguese
-# Copyright (C) YEAR This_file_is_part_of_KDE
+# Translation of ksysguardlsofwidgets.po to Brazilian Portuguese
+# Copyright (C) 2008-2016 This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# André Marcelo Alvarenga , 2008, 2010.
+# André Ma

commit libksysguard5 for openSUSE:Factory

2016-01-03 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2016-01-03 13:26:13

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2015-12-29 12:57:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2016-01-03 13:26:31.0 +0100
@@ -1,0 +2,8 @@
+Tue Dec 22 22:35:12 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.5.2:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.5.2.php
+
+---

Old:

  libksysguard-5.5.1.tar.xz

New:

  libksysguard-5.5.2.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.hLPtV9/_old  2016-01-03 13:26:32.0 +0100
+++ /var/tmp/diff_new_pack.hLPtV9/_new  2016-01-03 13:26:32.0 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.5.1
+Version:5.5.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.5.1.tar.xz -> libksysguard-5.5.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.5.1/CMakeLists.txt 
new/libksysguard-5.5.2/CMakeLists.txt
--- old/libksysguard-5.5.1/CMakeLists.txt   2015-12-15 11:27:31.0 
+0100
+++ new/libksysguard-5.5.2/CMakeLists.txt   2015-12-22 11:38:56.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.5.1")
+set(PROJECT_VERSION "5.5.2")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 




commit libksysguard5 for openSUSE:Factory

2015-12-29 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2015-12-29 12:57:11

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2015-11-24 22:27:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2015-12-29 12:57:13.0 +0100
@@ -1,0 +2,16 @@
+Tue Dec 15 17:49:57 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.5.1:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.5.1.php
+
+---
+Sat Dec 12 17:32:11 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.5.0:
+  * For more details please see:
+https://dot.kde.org/2015/12/08/plasma-55-beautiful-new-artwork
+- Move to cmake(...) BuildRequires where possible
+
+---

Old:

  libksysguard-5.4.3.tar.xz

New:

  libksysguard-5.5.1.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.7djaYq/_old  2015-12-29 12:57:14.0 +0100
+++ /var/tmp/diff_new_pack.7djaYq/_new  2015-12-29 12:57:14.0 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.4.3
+Version:5.5.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+
@@ -27,26 +27,26 @@
 Source: libksysguard-%{version}.tar.xz
 Source1:baselibs.conf
 Source99:   %{name}-rpmlintrc
-BuildRequires:  extra-cmake-modules >= 0.0.9
-BuildRequires:  gcc-c++
-BuildRequires:  kauth-devel
-BuildRequires:  kcompletion-devel
-BuildRequires:  kconfig-devel
-BuildRequires:  kconfigwidgets-devel
-BuildRequires:  kcoreaddons-devel
+BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel
-BuildRequires:  kiconthemes-devel
-BuildRequires:  kservice-devel
-BuildRequires:  kwidgetsaddons-devel
-BuildRequires:  kwindowsystem-devel
-BuildRequires:  plasma-framework-devel
 BuildRequires:  xz
-BuildRequires:  pkgconfig(Qt5DBus) >= 5.4.0
-BuildRequires:  pkgconfig(Qt5Script) >= 5.4.0
-BuildRequires:  pkgconfig(Qt5WebKitWidgets) >= 5.4.0
-BuildRequires:  pkgconfig(Qt5Widgets) >= 5.4.0
-BuildRequires:  pkgconfig(Qt5X11Extras) >= 5.4.0
+BuildRequires:  cmake(KF5Auth)
+BuildRequires:  cmake(KF5Completion)
+BuildRequires:  cmake(KF5Config)
+BuildRequires:  cmake(KF5ConfigWidgets)
+BuildRequires:  cmake(KF5CoreAddons)
+BuildRequires:  cmake(KF5I18n)
+BuildRequires:  cmake(KF5IconThemes)
+BuildRequires:  cmake(KF5Plasma)
+BuildRequires:  cmake(KF5Service)
+BuildRequires:  cmake(KF5WidgetsAddons)
+BuildRequires:  cmake(KF5WindowSystem)
+BuildRequires:  cmake(Qt5DBus) >= 5.4.0
+BuildRequires:  cmake(Qt5Network) >= 5.4.0
+BuildRequires:  cmake(Qt5Script) >= 5.4.0
+BuildRequires:  cmake(Qt5WebKitWidgets) >= 5.4.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.4.0
+BuildRequires:  cmake(Qt5X11Extras) >= 5.4.0
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xres)
 BuildRequires:  pkgconfig(zlib)
@@ -63,12 +63,12 @@
 Summary:Task management and system monitoring library -- devel files
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
-Requires:   kconfig-devel
-Requires:   ki18n-devel
-Requires:   kiconthemes-devel
-Requires:   pkgconfig(Qt5Core) >= 5.4.0
-Requires:   pkgconfig(Qt5Network) >= 5.4.0
-Requires:   pkgconfig(Qt5Widgets) >= 5.4.0
+Requires:   cmake(KF5Config)
+Requires:   cmake(KF5I18n)
+Requires:   cmake(KF5IconThemes)
+Requires:   cmake(Qt5Core) >= 5.4.0
+Requires:   cmake(Qt5Network) >= 5.4.0
+Requires:   cmake(Qt5Widgets) >= 5.4.0
 Conflicts:  kdebase4-workspace-devel
 
 %description devel

++ libksysguard-5.4.3.tar.xz -> libksysguard-5.5.1.tar.xz ++
 14695 lines of diff (skipped)




commit libksysguard5 for openSUSE:Factory

2015-11-24 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2015-11-24 22:27:18

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2015-10-19 22:18:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2015-11-24 22:27:19.0 +0100
@@ -1,0 +2,7 @@
+Sun Nov  8 18:38:58 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.4.3 (boo#955068):
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.4.3.php
+
+---

Old:

  libksysguard-5.4.2.tar.xz

New:

  libksysguard-5.4.3.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.O8bUKh/_old  2015-11-24 22:27:19.0 +0100
+++ /var/tmp/diff_new_pack.O8bUKh/_new  2015-11-24 22:27:19.0 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.4.2
+Version:5.4.3
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.4.2.tar.xz -> libksysguard-5.4.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.2/CMakeLists.txt 
new/libksysguard-5.4.3/CMakeLists.txt
--- old/libksysguard-5.4.2/CMakeLists.txt   2015-10-01 11:48:28.0 
+0200
+++ new/libksysguard-5.4.3/CMakeLists.txt   2015-11-05 13:41:49.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.4.2")
+set(PROJECT_VERSION "5.4.3")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.2/ksgrd/CMakeLists.txt 
new/libksysguard-5.4.3/ksgrd/CMakeLists.txt
--- old/libksysguard-5.4.2/ksgrd/CMakeLists.txt 2015-10-01 11:47:48.0 
+0200
+++ new/libksysguard-5.4.3/ksgrd/CMakeLists.txt 2015-11-05 13:41:06.0 
+0100
@@ -11,6 +11,8 @@
SensorSocketAgent.cpp
 )
 
+add_definitions(-DTRANSLATION_DOMAIN=\"ksgrd\")
+
 add_definitions(-DQT_USE_FAST_CONCATENATION -DQT_USE_FAST_OPERATOR_PLUS)
 remove_definitions(-DQT_NO_CAST_FROM_ASCII -DQT_STRICT_ITERATORS 
-DQT_NO_CAST_FROM_BYTEARRAY -DQT_NO_KEYWORDS)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.2/ksgrd/SensorAgent.cpp 
new/libksysguard-5.4.3/ksgrd/SensorAgent.cpp
--- old/libksysguard-5.4.2/ksgrd/SensorAgent.cpp2015-10-01 
11:47:48.0 +0200
+++ new/libksysguard-5.4.3/ksgrd/SensorAgent.cpp2015-11-05 
13:41:06.0 +0100
@@ -25,7 +25,6 @@
 
 #include "processcore/processcore_debug.h"
 #include 
-#define TRANSLATION_DOMAIN "ksgrd"
 #include 
 
 #include "SensorClient.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.2/po/ar/ksgrd.po 
new/libksysguard-5.4.3/po/ar/ksgrd.po
--- old/libksysguard-5.4.2/po/ar/ksgrd.po   2015-10-01 11:47:51.0 
+0200
+++ new/libksysguard-5.4.3/po/ar/ksgrd.po   2015-11-05 13:41:08.0 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-07 11:20+\n"
+"POT-Creation-Date: 2015-10-13 13:55+\n"
 "PO-Revision-Date: 2014-07-08 13:12+0300\n"
 "Last-Translator: Safa Alfulaij \n"
 "Language-Team: Arabic \n"
@@ -18,7 +18,7 @@
 "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: SensorAgent.cpp:113
+#: SensorAgent.cpp:112
 #, kde-format
 msgctxt "%1 is a host name"
 msgid ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.2/po/ast/ksgrd.po 
new/libksysguard-5.4.3/po/ast/ksgrd.po
--- old/libksysguard-5.4.2/po/ast/ksgrd.po  2015-10-01 11:47:51.0 
+0200
+++ new/libksysguard-5.4.3/po/ast/ksgrd.po  2015-11-05 13:41:09.0 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-07 11:20+\n"
+"POT-Creation-Date: 2015-10-13 13:55+\n"
 "PO-Revision-Date: 2015-04-06 19:50+0100\n"
 "Last-Translator: enolp \n"
 "Language-Team: Asturian \n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 2.0\n"
 
-#: SensorAgent.cpp:113
+#: SensorAgent.cpp:112
 #, kde-format
 msgctxt "%1 is a host name"
 msgid ""
diff -urN '--exclude=CVS' '--exclude=.

commit libksysguard5 for openSUSE:Factory

2015-10-19 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2015-10-19 22:18:54

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2015-09-24 07:07:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2015-10-19 22:18:55.0 +0200
@@ -1,0 +2,7 @@
+Sun Oct  4 10:43:56 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.4.2:
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.4.2.php
+
+---

Old:

  libksysguard-5.4.1.tar.xz

New:

  libksysguard-5.4.2.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.PfqVxH/_old  2015-10-19 22:18:56.0 +0200
+++ /var/tmp/diff_new_pack.PfqVxH/_new  2015-10-19 22:18:56.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.4.1
+Version:5.4.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.4.1.tar.xz -> libksysguard-5.4.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.1/CMakeLists.txt 
new/libksysguard-5.4.2/CMakeLists.txt
--- old/libksysguard-5.4.1/CMakeLists.txt   2015-09-03 12:39:29.0 
+0200
+++ new/libksysguard-5.4.2/CMakeLists.txt   2015-10-01 11:48:28.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.4.1")
+set(PROJECT_VERSION "5.4.2")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.1/po/nb/ksgrd.po 
new/libksysguard-5.4.2/po/nb/ksgrd.po
--- old/libksysguard-5.4.1/po/nb/ksgrd.po   2015-09-03 12:39:13.0 
+0200
+++ new/libksysguard-5.4.2/po/nb/ksgrd.po   2015-10-01 11:48:12.0 
+0200
@@ -1,5 +1,3 @@
-# Translation of ksgrd to Norwegian Bokmål
-#
 # Bjørn Steensrud , 2013.
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.1/po/nb/ksysguardlsofwidgets.po 
new/libksysguard-5.4.2/po/nb/ksysguardlsofwidgets.po
--- old/libksysguard-5.4.1/po/nb/ksysguardlsofwidgets.po2015-09-03 
12:39:13.0 +0200
+++ new/libksysguard-5.4.2/po/nb/ksysguardlsofwidgets.po2015-10-01 
11:48:12.0 +0200
@@ -1,5 +1,3 @@
-# Translation of ksysguardlsofwidgets to Norwegian Bokmål
-#
 # Bjørn Steensrud , 2008.
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.1/po/nb/processcore.po 
new/libksysguard-5.4.2/po/nb/processcore.po
--- old/libksysguard-5.4.1/po/nb/processcore.po 2015-09-03 12:39:13.0 
+0200
+++ new/libksysguard-5.4.2/po/nb/processcore.po 2015-10-01 11:48:12.0 
+0200
@@ -1,5 +1,3 @@
-# Translation of processcore to Norwegian Bokmål
-#
 # Bjørn Steensrud , 2007, 2010.
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.1/po/nb/processui.po 
new/libksysguard-5.4.2/po/nb/processui.po
--- old/libksysguard-5.4.1/po/nb/processui.po   2015-09-03 12:39:13.0 
+0200
+++ new/libksysguard-5.4.2/po/nb/processui.po   2015-10-01 11:48:12.0 
+0200
@@ -1,5 +1,3 @@
-# Translation of processui to Norwegian Bokmål
-#
 # Bjørn Steensrud , 2008, 2009, 2010, 2011, 
2015.
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.1/po/nn/ksgrd.po 
new/libksysguard-5.4.2/po/nn/ksgrd.po
--- old/libksysguard-5.4.1/po/nn/ksgrd.po   1970-01-01 01:00:00.0 
+0100
+++ new/libksysguard-5.4.2/po/nn/ksgrd.po   2015-10-01 11:48:14.0 
+0200
@@ -0,0 +1,652 @@
+# Translation of ksgrd to Norwegian Nynorsk
+#
+# Karl Ove Hufthammer , 2015.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2015-08-07 11:20+\n"
+"PO-Revision-Date: 2015-09-29 11:15+0100\n"
+"Last-Translator: Karl Ove Hufthammer \n"
+"Language-Team: Norwegian Nynorsk \n"
+"Language: nn\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 2.0\n"
+"X-Environment: kde\n"
+"X-Accelerator-Marker: &\n"
+"X-Te

commit libksysguard5 for openSUSE:Factory

2015-09-23 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2015-09-24 07:07:41

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2015-09-02 07:52:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2015-09-24 07:07:43.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep 10 17:18:00 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.4.1:
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.4.1.php
+
+---

Old:

  libksysguard-5.4.0.tar.xz

New:

  libksysguard-5.4.1.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.B0X3uY/_old  2015-09-24 07:07:43.0 +0200
+++ /var/tmp/diff_new_pack.B0X3uY/_new  2015-09-24 07:07:43.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.4.0
+Version:5.4.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.4.0.tar.xz -> libksysguard-5.4.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.0/CMakeLists.txt 
new/libksysguard-5.4.1/CMakeLists.txt
--- old/libksysguard-5.4.0/CMakeLists.txt   2015-08-20 14:50:42.0 
+0200
+++ new/libksysguard-5.4.1/CMakeLists.txt   2015-09-03 12:39:29.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.4.0")
+set(PROJECT_VERSION "5.4.1")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.0/po/da/processui.po 
new/libksysguard-5.4.1/po/da/processui.po
--- old/libksysguard-5.4.0/po/da/processui.po   2015-08-20 14:49:56.0 
+0200
+++ new/libksysguard-5.4.1/po/da/processui.po   2015-09-03 12:38:55.0 
+0200
@@ -8,9 +8,9 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2015-08-07 11:20+\n"
-"PO-Revision-Date: 2015-02-17 18:28+0100\n"
+"PO-Revision-Date: 2015-08-26 20:32+0200\n"
 "Last-Translator: Martin Schlander \n"
-"Language-Team: Danish \n"
+"Language-Team: Danish \n"
 "Language: da\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -419,10 +419,8 @@
 "processer som bruger dette bibliotek."
 
 #: ProcessModel.cpp:967
-#, fuzzy
-#| msgid "The command with which this process was launched."
 msgid "The elapsed time since the process was started."
-msgstr "Kommandoen som denne proces blev startet med."
+msgstr "Den tid der er gået siden processen blev startet."
 
 #: ProcessModel.cpp:969
 msgid "The command with which this process was launched."
@@ -554,6 +552,8 @@
 "Technical information: The underlying value (clock ticks since "
 "system boot) is retrieved from /proc/[pid]/stat"
 msgstr ""
+"Teknisk information: Den underliggende værdi (uret går fra boot-"
+"tidspunktet) hentes fra /proc/[pid]/stat"
 
 #: ProcessModel.cpp:1012
 msgid "Technical information: This is from /proc/*/cmdline"
@@ -826,6 +826,9 @@
 "Clock ticks since system boot: %1Seconds since system boot: %2 (System "
 "boot time: %3)Absolute start time: %4Relative start time: %5"
 msgstr ""
+"Uret går fra boot-tidspunktet: %1Sekunder siden boot: %2 (systemets "
+"boot-tidspunkt: %3)Absolut starttidspunkt: %4Relativ "
+"starttidspunkt: %5"
 
 #: ProcessModel.cpp:1429
 #, kde-format
@@ -1006,7 +1009,7 @@
 #: ProcessModel.cpp:1860
 msgctxt "process heading"
 msgid "Relative Start Time"
-msgstr ""
+msgstr "Relativ starttidspunkt"
 
 #: ProcessModel.cpp:1861
 msgctxt "process heading"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.0/po/se/processcore.po 
new/libksysguard-5.4.1/po/se/processcore.po
--- old/libksysguard-5.4.0/po/se/processcore.po 2015-08-20 14:50:24.0 
+0200
+++ new/libksysguard-5.4.1/po/se/processcore.po 2015-09-03 12:39:18.0 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: processcore\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-02-21 09:40+\n"
+"POT-Creation-Date: 2015-08-07 11:20+\n"
 "PO-Revision-Date: 2007-12-24 02:29+0100\n"
 "Last-Translator: Børre Gaup \n"
 "Language-Team: Northern Sami \n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.4.0/po/se/proces

commit libksysguard5 for openSUSE:Factory

2015-09-01 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2015-09-02 07:52:05

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2015-07-08 06:57:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2015-09-02 07:52:06.0 +0200
@@ -1,0 +2,21 @@
+Mon Aug 24 17:52:19 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.4.0:
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.4.0.php
+
+---
+Sun Aug 16 10:17:06 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.3.95 aka 5.4 beta:
+  This release of Plasma brings many nice touches for our users
+  such as much improved high DPI support, KRunner auto-completion
+  and many new beautiful Breeze icons. It also lays the ground for
+  the future with a tech preview of Wayland session available.
+  We're shipping a few new components such as an Audio Volume
+  Plasma Widget, monitor calibration tool and the User Manager
+  tool comes out beta.
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.3.95.php
+
+---

Old:

  libksysguard-5.3.2.tar.xz

New:

  libksysguard-5.4.0.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.o5ZwpX/_old  2015-09-02 07:52:07.0 +0200
+++ /var/tmp/diff_new_pack.o5ZwpX/_new  2015-09-02 07:52:07.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.3.2
+Version:5.4.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.3.2.tar.xz -> libksysguard-5.4.0.tar.xz ++
 4493 lines of diff (skipped)




commit libksysguard5 for openSUSE:Factory

2015-07-07 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2015-07-08 06:57:53

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2015-05-29 10:20:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2015-07-08 06:57:54.0 +0200
@@ -1,0 +2,8 @@
+Sun Jun 28 18:32:21 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.3.2:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.3.2.php
+
+---

Old:

  libksysguard-5.3.1.tar.xz

New:

  libksysguard-5.3.2.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.ZhMfhY/_old  2015-07-08 06:57:55.0 +0200
+++ /var/tmp/diff_new_pack.ZhMfhY/_new  2015-07-08 06:57:55.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.3.1
+Version:5.3.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.3.1.tar.xz -> libksysguard-5.3.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.3.1/CMakeLists.txt 
new/libksysguard-5.3.2/CMakeLists.txt
--- old/libksysguard-5.3.1/CMakeLists.txt   2015-05-21 18:52:51.0 
+0200
+++ new/libksysguard-5.3.2/CMakeLists.txt   2015-06-25 13:04:56.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.3.1")
+set(PROJECT_VERSION "5.3.2")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.3.1/po/ca/ksgrd.po 
new/libksysguard-5.3.2/po/ca/ksgrd.po
--- old/libksysguard-5.3.1/po/ca/ksgrd.po   2015-05-21 18:52:01.0 
+0200
+++ new/libksysguard-5.3.2/po/ca/ksgrd.po   2015-06-25 13:04:14.0 
+0200
@@ -18,8 +18,8 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 1.5\n"
 "X-Accelerator-Marker: &\n"
+"X-Generator: Lokalize 1.5\n"
 
 #: SensorAgent.cpp:113
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.3.1/po/ca/processui.po 
new/libksysguard-5.3.2/po/ca/processui.po
--- old/libksysguard-5.3.1/po/ca/processui.po   2015-05-21 18:52:01.0 
+0200
+++ new/libksysguard-5.3.2/po/ca/processui.po   2015-06-25 13:04:14.0 
+0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2015-02-21 09:40+\n"
-"PO-Revision-Date: 2015-05-19 18:08+0200\n"
+"PO-Revision-Date: 2015-05-29 22:16+0200\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -348,15 +348,16 @@
 
 #: ProcessModel.cpp:945
 msgid "The controlling terminal on which this process is running."
-msgstr "El terminal principal en el que s'executa aquest procés."
+msgstr "El terminal de control en el qual s'està executant aquest procés."
 
 #: ProcessModel.cpp:947
 msgid ""
 "The priority with which this process is being run. For the normal scheduler, "
 "this ranges from 19 (very nice, least priority) to -19 (top priority)."
 msgstr ""
-"La prioritat amb la que s'executa aquest procés. L'interval és des 19 (molt "
-"«nice», prioritat mínima) fins a -19 (prioritat màxima)."
+"La prioritat amb la qual s'executa aquest procés. Per al programador normal, "
+"l'interval és des de 19 (molt «nice», prioritat mínima) fins a -19 "
+"(prioritat màxima)."
 
 #: ProcessModel.cpp:950
 msgid "The current CPU usage of the process."
@@ -386,8 +387,8 @@
 "The total user and system time that this process has been running for, "
 "displayed as minutes:seconds."
 msgstr ""
-"El temps d'execució total d'usuari i sistema durant el que s'ha executat "
-"aquest procés, mostrat com a minuts:segons."
+"El total de temps d'usuari i del sistema durant el qual ha estat "
+"funcionant aquest procés, apareix en minuts:segons."
 
 #: ProcessModel.cpp:961
 msgid ""
@@ -430,7 +431,7 @@
 
 #: ProcessModel.cpp:969
 msgid "The command with which this process was launched."
-msgstr "L'ordre amb la que s'ha executat aquest procés."
+msgstr "L'ordre amb el qual es va posar en marxa aquest procés."
 
 #: ProcessModel.cpp:971
 msgid "The amount of pixmap memory that this process 

commit libksysguard5 for openSUSE:Factory

2015-05-29 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2015-05-29 10:20:11

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2015-05-11 19:30:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2015-05-29 10:20:12.0 +0200
@@ -1,0 +2,8 @@
+Fri May 22 15:29:58 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.3.1:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.3.1.php
+
+---

Old:

  libksysguard-5.3.0.tar.xz

New:

  libksysguard-5.3.1.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.chJ23U/_old  2015-05-29 10:20:13.0 +0200
+++ /var/tmp/diff_new_pack.chJ23U/_new  2015-05-29 10:20:13.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   libksysguard5
-Version:5.3.0
+Version:5.3.1
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.3.0.tar.xz -> libksysguard-5.3.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.3.0/CMakeLists.txt 
new/libksysguard-5.3.1/CMakeLists.txt
--- old/libksysguard-5.3.0/CMakeLists.txt   2015-04-23 11:53:37.0 
+0200
+++ new/libksysguard-5.3.1/CMakeLists.txt   2015-05-21 18:52:51.0 
+0200
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.3.0")
+set(PROJECT_VERSION "5.3.1")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.3.0/po/ca/processui.po 
new/libksysguard-5.3.1/po/ca/processui.po
--- old/libksysguard-5.3.0/po/ca/processui.po   2015-04-23 11:52:25.0 
+0200
+++ new/libksysguard-5.3.1/po/ca/processui.po   2015-05-21 18:52:01.0 
+0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: processui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2015-02-21 09:40+\n"
-"PO-Revision-Date: 2015-01-18 19:33+0100\n"
+"PO-Revision-Date: 2015-05-19 18:08+0200\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -19,7 +19,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
-"X-Generator: Lokalize 1.4\n"
+"X-Generator: Lokalize 1.5\n"
 
 #: ksysguardprocesslist.cpp:159 ksysguardprocesslist.cpp:416
 msgid "Set Priority..."
@@ -272,11 +272,11 @@
 "Are you sure you want to immediately and forcibly kill these %1 "
 "processes?  Any unsaved work may be lost"
 msgstr[0] ""
-"Esteu segur que voleu matar immediata i forçadament aquest "
+"Esteu segur que voleu matar immediatament i forçadament aquest "
 "procés? Es perdrà qualsevol treball no desat."
 msgstr[1] ""
-"Esteu segur que voleu matar immediata i forçadament aquests %1 "
-"processos? Es perdrà qualsevol treball no desat."
+"Esteu segur que voleu matar immediatament i forçadament aquests "
+"%1 processos? Es perdrà qualsevol treball no desat."
 
 #: ksysguardprocesslist.cpp:1307
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.3.0/po/ko/ksgrd.po 
new/libksysguard-5.3.1/po/ko/ksgrd.po
--- old/libksysguard-5.3.0/po/ko/ksgrd.po   2015-04-23 11:52:57.0 
+0200
+++ new/libksysguard-5.3.1/po/ko/ksgrd.po   2015-05-21 18:52:24.0 
+0200
@@ -1,6 +1,6 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-# Park Shinjo , 2013, 2015.
+# Shinjo Park , 2013, 2015.
 #
 msgid ""
 msgstr ""
@@ -8,7 +8,7 @@
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-11-07 08:16+\n"
 "PO-Revision-Date: 2015-01-17 22:43+0900\n"
-"Last-Translator: Park Shinjo \n"
+"Last-Translator: Shinjo Park \n"
 "Language-Team: Korean \n"
 "Language: ko\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.3.0/po/ko/ksysguardlsofwidgets.po 
new/libksysguard-5.3.1/po/ko/ksysguardlsofwidgets.po
--- old/libksysguard-5.3.0/po/ko/ksysguardlsofwidgets.po2015-04-23 
11:52:57.0 +0200
+++ new/libksysguard-5.3.1/po/ko/ksysguardlsofwidgets.po2015-05-21 
18:52:24.0 +0200
@@ -1,14 +1,14 @@
 # Copyright (C) 20

commit libksysguard5 for openSUSE:Factory

2015-05-11 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2015-05-11 19:30:35

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2015-03-25 09:58:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2015-05-11 19:30:40.0 +0200
@@ -1,0 +2,17 @@
+Thu Apr 23 13:27:28 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.3 Final:
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.3.0.php
+- Only conflict with kdebase4-workspace < 5.3.0
+
+---
+Sat Apr 11 18:53:44 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.2.95 aka 5.3 beta:
+  * New feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.2.95.php
+- Update required Qt version to 5.4.0
+
+---

Old:

  libksysguard-5.2.2.tar.xz

New:

  libksysguard-5.3.0.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.kJ3WMW/_old  2015-05-11 19:30:41.0 +0200
+++ /var/tmp/diff_new_pack.kJ3WMW/_new  2015-05-11 19:30:41.0 +0200
@@ -16,8 +16,9 @@
 #
 
 
+%bcond_without lang
 Name:   libksysguard5
-Version:5.2.2
+Version:5.3.0
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+
@@ -41,15 +42,17 @@
 BuildRequires:  kwindowsystem-devel
 BuildRequires:  plasma-framework-devel
 BuildRequires:  xz
-BuildRequires:  pkgconfig(Qt5DBus) >= 5.3.0
-BuildRequires:  pkgconfig(Qt5Script) >= 5.3.0
-BuildRequires:  pkgconfig(Qt5WebKitWidgets) >= 5.3.0
-BuildRequires:  pkgconfig(Qt5Widgets) >= 5.3.0
-BuildRequires:  pkgconfig(Qt5X11Extras) >= 5.3.0
+BuildRequires:  pkgconfig(Qt5DBus) >= 5.4.0
+BuildRequires:  pkgconfig(Qt5Script) >= 5.4.0
+BuildRequires:  pkgconfig(Qt5WebKitWidgets) >= 5.4.0
+BuildRequires:  pkgconfig(Qt5Widgets) >= 5.4.0
+BuildRequires:  pkgconfig(Qt5X11Extras) >= 5.4.0
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xres)
 BuildRequires:  pkgconfig(zlib)
+%if %{with lang}
 Recommends: %{name}-lang
+%endif
 #BuildRequires:  update-desktop-files
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -63,9 +66,9 @@
 Requires:   kconfig-devel
 Requires:   ki18n-devel
 Requires:   kiconthemes-devel
-Requires:   pkgconfig(Qt5Core) >= 5.3.0
-Requires:   pkgconfig(Qt5Network) >= 5.3.0
-Requires:   pkgconfig(Qt5Widgets) >= 5.3.0
+Requires:   pkgconfig(Qt5Core) >= 5.4.0
+Requires:   pkgconfig(Qt5Network) >= 5.4.0
+Requires:   pkgconfig(Qt5Widgets) >= 5.4.0
 Conflicts:  kdebase4-workspace-devel
 
 %description devel
@@ -75,7 +78,7 @@
 %package helper
 Summary:Task management and system monitoring library -- helper files
 Group:  Development/Libraries/C and C++
-Conflicts:  kdebase4-workspace
+Conflicts:  kdebase4-workspace < 5.3.0
 
 %description helper
 Task management and system monitoring library. This package contains helper 
files
@@ -125,8 +128,10 @@
 %{_kf5_libdir}/libprocesscore.so
 %{_kf5_libdir}/libprocessui.so
 
+%if %{with lang}
 %files lang
 %defattr(-,root,root)
 %{_kf5_localedir}/
+%endif
 
 %changelog

++ libksysguard-5.2.2.tar.xz -> libksysguard-5.3.0.tar.xz ++
 102053 lines of diff (skipped)




commit libksysguard5 for openSUSE:Factory

2015-03-25 Thread h_root
Hello community,

here is the log from the commit of package libksysguard5 for openSUSE:Factory 
checked in at 2015-03-25 09:58:43

Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old)
 and  /work/SRC/openSUSE:Factory/.libksysguard5.new (New)


Package is "libksysguard5"

Changes:

--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes  
2015-03-01 15:05:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new/libksysguard5.changes 
2015-03-25 09:58:44.0 +0100
@@ -1,0 +2,8 @@
+Thu Mar 19 17:42:39 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.2.2:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.2.2.php
+
+---

Old:

  libksysguard-5.2.1.tar.xz

New:

  libksysguard-5.2.2.tar.xz



Other differences:
--
++ libksysguard5.spec ++
--- /var/tmp/diff_new_pack.KVE4wp/_old  2015-03-25 09:58:45.0 +0100
+++ /var/tmp/diff_new_pack.KVE4wp/_new  2015-03-25 09:58:45.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libksysguard5
-Version:5.2.1
+Version:5.2.2
 Release:0
 Summary:Task management and system monitoring library
 License:GPL-2.0+

++ libksysguard-5.2.1.tar.xz -> libksysguard-5.2.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.2.1/CMakeLists.txt 
new/libksysguard-5.2.2/CMakeLists.txt
--- old/libksysguard-5.2.1/CMakeLists.txt   2015-02-21 21:05:07.0 
+0100
+++ new/libksysguard-5.2.2/CMakeLists.txt   2015-03-19 12:17:21.0 
+0100
@@ -1,5 +1,5 @@
 project(libksysguard)
-set(PROJECT_VERSION "5.2.1")
+set(PROJECT_VERSION "5.2.2")
 set(PROJECT_VERSION_MAJOR 5)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.2.1/po/bs/ksgrd.po 
new/libksysguard-5.2.2/po/bs/ksgrd.po
--- old/libksysguard-5.2.1/po/bs/ksgrd.po   2015-02-21 21:03:11.0 
+0100
+++ new/libksysguard-5.2.2/po/bs/ksgrd.po   2015-03-19 12:16:17.0 
+0100
@@ -8,17 +8,15 @@
 "Project-Id-Version: ksgrd\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2015-01-13 12:17+\n"
-"PO-Revision-Date: 2013-10-19 21:31+\n"
+"PO-Revision-Date: 2015-02-04 15:16+\n"
 "Last-Translator: Samir Ribić \n"
 "Language-Team: Bosnian \n"
 "Language: bs\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-10-20 05:03+\n"
-"X-Generator: Launchpad (build 16807)\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"X-Launchpad-Export-Date: 2015-02-05 07:15+\n"
+"X-Generator: Launchpad (build 17331)\n"
 
 #: SensorAgent.cpp:113
 #, kde-format
@@ -649,4 +647,4 @@
 #: SensorSocketAgent.cpp:118
 #, kde-format
 msgid "Error for host %1: %2"
-msgstr "greška za računar %1: %2"
\ No newline at end of file
+msgstr "Greška za računar %1: %2"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.2.1/po/bs/ksysguardlsofwidgets.po 
new/libksysguard-5.2.2/po/bs/ksysguardlsofwidgets.po
--- old/libksysguard-5.2.1/po/bs/ksysguardlsofwidgets.po2015-02-21 
21:03:11.0 +0100
+++ new/libksysguard-5.2.2/po/bs/ksysguardlsofwidgets.po2015-03-19 
12:16:17.0 +0100
@@ -15,10 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-01-16 05:36+\n"
-"X-Generator: Launchpad (build 16420)\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"X-Launchpad-Export-Date: 2014-10-21 06:49+\n"
+"X-Generator: Launchpad (build 17203)\n"
 
 #: lsof.cpp:21
 msgctxt "Short for File Descriptor"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.2.1/po/bs/processcore.po 
new/libksysguard-5.2.2/po/bs/processcore.po
--- old/libksysguard-5.2.1/po/bs/processcore.po 2015-02-21 21:03:11.0 
+0100
+++ new/libksysguard-5.2.2/po/bs/processcore.po 2015-03-19 12:16:17.0 
+0100
@@ -15,10 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-10-19 05:21+\n"
-"X-Generator: Launchpad (build 16807)\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || 

  1   2   >