commit ksystemlog for openSUSE:Leap:15.2

2020-06-14 Thread root
Hello community,

here is the log from the commit of package ksystemlog for openSUSE:Leap:15.2 
checked in at 2020-06-15 05:31:16

Comparing /work/SRC/openSUSE:Leap:15.2/ksystemlog (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.ksystemlog.new.3606 (New)


Package is "ksystemlog"

Mon Jun 15 05:31:16 2020 rev:46 rq:813963 version:20.04.2

Changes:

--- /work/SRC/openSUSE:Leap:15.2/ksystemlog/ksystemlog.changes  2020-05-31 
13:46:12.633764821 +0200
+++ /work/SRC/openSUSE:Leap:15.2/.ksystemlog.new.3606/ksystemlog.changes
2020-06-15 05:31:19.810345085 +0200
@@ -1,0 +2,12 @@
+Tue Jun  9 12:15:47 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 20.04.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-06-apps-update
+- Changes since 20.04.1:
+  * Disconnect `QtabWidget::currentChanged` signal on window close event 
(kde#409375)
+- Drop upstream patch:
+  * Disconnect-QtabWidget_currentChanged-signal-on-window-close.patch
+
+---

Old:

  Disconnect-QtabWidget_currentChanged-signal-on-window-close.patch
  ksystemlog-20.04.1.tar.xz
  ksystemlog-20.04.1.tar.xz.sig

New:

  ksystemlog-20.04.2.tar.xz
  ksystemlog-20.04.2.tar.xz.sig



Other differences:
--
++ ksystemlog.spec ++
--- /var/tmp/diff_new_pack.ws4AcY/_old  2020-06-15 05:31:20.278346592 +0200
+++ /var/tmp/diff_new_pack.ws4AcY/_new  2020-06-15 05:31:20.282346605 +0200
@@ -21,15 +21,13 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ksystemlog
-Version:20.04.1
+Version:20.04.2
 Release:0
 Summary:System Log Viewer Tool
 License:GPL-2.0-only
 Group:  System/Monitoring
 URL:https://www.kde.org
 Source: 
https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM
-Patch:  
Disconnect-QtabWidget_currentChanged-signal-on-window-close.patch
 BuildRequires:  extra-cmake-modules
 BuildRequires:  oxygen5-icon-theme-large
 BuildRequires:  pkgconfig
@@ -59,7 +57,6 @@
 
 %prep
 %setup -q
-%autopatch -p1
 
 %build
   %cmake_kf5 -d build


++ ksystemlog-20.04.1.tar.xz -> ksystemlog-20.04.2.tar.xz ++
 21446 lines of diff (skipped)




commit ksystemlog for openSUSE:Leap:15.2

2020-05-31 Thread root
Hello community,

here is the log from the commit of package ksystemlog for openSUSE:Leap:15.2 
checked in at 2020-05-31 13:45:43

Comparing /work/SRC/openSUSE:Leap:15.2/ksystemlog (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.ksystemlog.new.3606 (New)


Package is "ksystemlog"

Sun May 31 13:45:43 2020 rev:45 rq:809904 version:20.04.1

Changes:

--- /work/SRC/openSUSE:Leap:15.2/ksystemlog/ksystemlog.changes  2020-05-25 
13:42:23.363371962 +0200
+++ /work/SRC/openSUSE:Leap:15.2/.ksystemlog.new.3606/ksystemlog.changes
2020-05-31 13:46:12.633764821 +0200
@@ -1,0 +2,7 @@
+Wed May 27 09:56:54 UTC 2020 - Wolfgang Bauer 
+
+- Add patch to fix a possible crash when closing the window:
+  (boo#1164633, kde#409375)
+  * Disconnect-QtabWidget_currentChanged-signal-on-window-close.patch
+
+---

New:

  Disconnect-QtabWidget_currentChanged-signal-on-window-close.patch



Other differences:
--
++ ksystemlog.spec ++
--- /var/tmp/diff_new_pack.0689NW/_old  2020-05-31 13:46:13.033766059 +0200
+++ /var/tmp/diff_new_pack.0689NW/_new  2020-05-31 13:46:13.037766071 +0200
@@ -28,6 +28,8 @@
 Group:  System/Monitoring
 URL:https://www.kde.org
 Source: 
https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM
+Patch:  
Disconnect-QtabWidget_currentChanged-signal-on-window-close.patch
 BuildRequires:  extra-cmake-modules
 BuildRequires:  oxygen5-icon-theme-large
 BuildRequires:  pkgconfig
@@ -57,6 +59,7 @@
 
 %prep
 %setup -q
+%autopatch -p1
 
 %build
   %cmake_kf5 -d build

++ Disconnect-QtabWidget_currentChanged-signal-on-window-close.patch ++
>From eeab31a116535efc6d4757f027897265736ed161 Mon Sep 17 00:00:00 2001
From: Wolfgang Bauer 
Date: Sun, 17 May 2020 20:22:45 +
Subject: Disconnect `QtabWidget::currentChanged` signal on window close event

Otherwise `MainWindow::changeCurrentTab()` may still get called when things are 
already being destroyed, leading to crashes.

BUG: 409375
FIXED-IN: 20.04.2
---
 src/mainWindow.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/mainWindow.cpp b/src/mainWindow.cpp
index 3607f6c..a30449c 100644
--- a/src/mainWindow.cpp
+++ b/src/mainWindow.cpp
@@ -350,6 +350,8 @@ void MainWindow::updateReloading()
 
 void MainWindow::closeEvent(QCloseEvent *event)
 {
+disconnect(d->tabs, ::currentChanged, this, 
::changeCurrentTab);
+
 LogManager *currentLogManager = d->tabs->activeLogManager();
 if (currentLogManager) {
 currentLogManager->stopWatching();
-- 
cgit v1.1






commit ksystemlog for openSUSE:Leap:15.2

2020-05-25 Thread root
Hello community,

here is the log from the commit of package ksystemlog for openSUSE:Leap:15.2 
checked in at 2020-05-25 13:42:02

Comparing /work/SRC/openSUSE:Leap:15.2/ksystemlog (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.ksystemlog.new.2738 (New)


Package is "ksystemlog"

Mon May 25 13:42:02 2020 rev:44 rq:806602 version:20.04.1

Changes:

--- /work/SRC/openSUSE:Leap:15.2/ksystemlog/ksystemlog.changes  2020-05-13 
03:52:56.700339331 +0200
+++ /work/SRC/openSUSE:Leap:15.2/.ksystemlog.new.2738/ksystemlog.changes
2020-05-25 13:42:23.363371962 +0200
@@ -1,0 +2,9 @@
+Fri May 15 15:41:58 UTC 2020 - Luca Beltrame 
+
+- Update to 20.04.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-05-apps-update
+- No code change since 20.04.0
+
+---
@@ -16,2 +24,0 @@
-  * For more details please see:
-  * https://kde.org/announcements/releases/20.04-rc
@@ -25,2 +31,0 @@
-  * For more details please see:
-  * https://kde.org/announcements/releases/20.04-beta
@@ -40 +45 @@
-  * https://www.kde.org/announcements/releases/19.12.3
+  * https://kde.org/announcements/releases/2020-03-apps-update
@@ -54 +59 @@
-  * https://www.kde.org/announcements/releases/19.12.2
+  * https://kde.org/announcements/releases/2020-02-apps-update

Old:

  ksystemlog-20.04.0.tar.xz
  ksystemlog-20.04.0.tar.xz.sig

New:

  ksystemlog-20.04.1.tar.xz
  ksystemlog-20.04.1.tar.xz.sig



Other differences:
--
++ ksystemlog.spec ++
--- /var/tmp/diff_new_pack.pxqmUS/_old  2020-05-25 13:42:23.807372932 +0200
+++ /var/tmp/diff_new_pack.pxqmUS/_new  2020-05-25 13:42:23.811372940 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ksystemlog
-Version:20.04.0
+Version:20.04.1
 Release:0
 Summary:System Log Viewer Tool
 License:GPL-2.0-only


++ ksystemlog-20.04.0.tar.xz -> ksystemlog-20.04.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemlog-20.04.0/CMakeLists.txt 
new/ksystemlog-20.04.1/CMakeLists.txt
--- old/ksystemlog-20.04.0/CMakeLists.txt   2020-04-15 10:44:04.0 
+0200
+++ new/ksystemlog-20.04.1/CMakeLists.txt   2020-05-11 22:29:09.0 
+0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 set (RELEASE_SERVICE_VERSION_MINOR "04")
-set (RELEASE_SERVICE_VERSION_MICRO "0")
+set (RELEASE_SERVICE_VERSION_MICRO "1")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemlog-20.04.0/po/ko/ksystemlog.po 
new/ksystemlog-20.04.1/po/ko/ksystemlog.po
--- old/ksystemlog-20.04.0/po/ko/ksystemlog.po  2020-04-17 02:35:35.0 
+0200
+++ new/ksystemlog-20.04.1/po/ko/ksystemlog.po  2020-05-12 03:21:59.0 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: ksystemlog\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-04-08 09:24+0200\n"
-"PO-Revision-Date: 2020-04-06 22:43+0200\n"
+"PO-Revision-Date: 2020-04-21 00:29+0200\n"
 "Last-Translator: Shinjo Park \n"
 "Language-Team: Korean \n"
 "Language: ko\n"
@@ -749,7 +749,7 @@
 #: src/lib/logViewWidget.cpp:130
 #, kde-format
 msgid "Display/Hide the '%1' column"
-msgstr "열 '%1' 숨기기/보이기"
+msgstr "열 '%1' 표시/숨기기"
 
 #: src/lib/processOutputLogFileReader.cpp:160
 #, kde-format
@@ -1249,7 +1249,7 @@
 #: src/mainWindow.cpp:699
 #, kde-format
 msgid "Show  Bar"
-msgstr "필터 표시줄 보이기()"
+msgstr "필터 표시줄 표시()"
 
 #: src/mainWindow.cpp:706
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemlog-20.04.0/po/pl/ksystemlog.po 
new/ksystemlog-20.04.1/po/pl/ksystemlog.po
--- old/ksystemlog-20.04.0/po/pl/ksystemlog.po  2020-04-17 02:35:35.0 
+0200
+++ new/ksystemlog-20.04.1/po/pl/ksystemlog.po  2020-05-12 03:22:00.0 
+0200
@@ -7,20 +7,20 @@
 # Marta Rybczyńska , 2008, 2009.
 # Piotr Predkiewicz <1he...@wp.pl>, 2008.
 # Maciej Wikło , 2008.
-# Łukasz Wojniłowicz , 2011, 2015, 2016, 2017, 
2019.
+# Łukasz Wojniłowicz , 2011, 2015, 2016, 2017, 
2019, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: ksystemlog\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-04-08 09:24+0200\n"
-"PO-Revision-Date: 2019-09-06 09:15+0200\n"
+"PO-Revision-Date: 2020-04-19 09:33+0200\n"
 "Last-Translator: Łukasz Wojniłowicz \n"
 

commit ksystemlog for openSUSE:Leap:15.2

2020-05-12 Thread root
Hello community,

here is the log from the commit of package ksystemlog for openSUSE:Leap:15.2 
checked in at 2020-05-13 03:52:53

Comparing /work/SRC/openSUSE:Leap:15.2/ksystemlog (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.ksystemlog.new.2738 (New)


Package is "ksystemlog"

Wed May 13 03:52:53 2020 rev:43 rq:797454 version:20.04.0

Changes:

--- /work/SRC/openSUSE:Leap:15.2/ksystemlog/ksystemlog.changes  2020-03-15 
13:36:50.610855315 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.ksystemlog.new.2738/ksystemlog.changes
2020-05-13 03:52:56.700339331 +0200
@@ -1,0 +2,33 @@
+Thu Apr 23 12:22:53 UTC 2020 - Luca Beltrame 
+
+- Update to 20.04.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-04-apps-update
+- Changes since 20.03.90:
+  * Fix build with Qt >= 5.15.0-beta3
+
+---
+Sun Apr  5 20:30:27 UTC 2020 - Luca Beltrame 
+
+- Update to 20.03.90
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/releases/20.04-rc
+- No code change since 20.03.80
+
+---
+Sun Mar 22 09:17:24 UTC 2020 - Luca Beltrame 
+
+- Update to 20.03.80
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/releases/20.04-beta
+- Changes since 19.12.3:
+  * Make it compile against last qt5.15 without deprecated method
+  * Make it compile with qt5.15
+  * Remove endl at the end of QDebug. It already adds it
+  * Don't create pixmaps for logmode icons
+  * Use URLs with transport encryption
+
+---

Old:

  ksystemlog-19.12.3.tar.xz
  ksystemlog-19.12.3.tar.xz.sig

New:

  ksystemlog-20.04.0.tar.xz
  ksystemlog-20.04.0.tar.xz.sig



Other differences:
--
++ ksystemlog.spec ++
--- /var/tmp/diff_new_pack.6NiGtJ/_old  2020-05-13 03:52:57.548341109 +0200
+++ /var/tmp/diff_new_pack.6NiGtJ/_new  2020-05-13 03:52:57.552341117 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ksystemlog
 #
-# Copyright (c) 2018 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
@@ -21,23 +21,19 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ksystemlog
-Version:19.12.3
+Version:20.04.0
 Release:0
 Summary:System Log Viewer Tool
 License:GPL-2.0-only
 Group:  System/Monitoring
 URL:https://www.kde.org
 Source: 
https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz
-%if %{with lang}
-Source1:
https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig
-Source2:applications.keyring
-%endif
 BuildRequires:  extra-cmake-modules
-BuildRequires:  cmake(KF5KDELibs4Support)
 BuildRequires:  oxygen5-icon-theme-large
 BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
 BuildRequires:  xz
+BuildRequires:  cmake(KF5KDELibs4Support)
 BuildRequires:  cmake(Qt5Concurrent)
 BuildRequires:  cmake(Qt5Core)
 BuildRequires:  cmake(Qt5Test)
@@ -46,8 +42,10 @@
 Obsoletes:  ksystemlog5 < %{version}
 Provides:   ksystemlog5 = %{version}
 %if %{with lang}
-Recommends: %{name}-lang
+Source1:
https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig
+Source2:applications.keyring
 %endif
+Recommends: %{name}-lang
 
 %description
 This program is developed for use by beginner users, who do not know
@@ -55,9 +53,7 @@
 are in their computer. But it is also designed for advanced users, who
 want to quickly see problems occurring on their server.
 
-%if %{with lang}
 %lang_package
-%endif
 
 %prep
 %setup -q
@@ -75,11 +71,7 @@
   %suse_update_desktop_file org.kde.ksystemlog System Monitor
   for i in {16,22,32,48,64,128}; do
  mkdir -p %{buildroot}%{_datadir}/icons/hicolor/"$i"x"$i"/apps
-%if 0%{?suse_version} > 1320 || 0%{?sle_version} >= 120200
  cp %{_datadir}/icons/oxygen/base/"$i"x"$i"/apps/utilities-log-viewer.png 
%{buildroot}%{_datadir}/icons/hicolor/"$i"x"$i"/apps/;
-%else
- cp %{_datadir}/icons/oxygen/"$i"x"$i"/apps/utilities-log-viewer.png 
%{buildroot}%{_datadir}/icons/hicolor/"$i"x"$i"/apps/;
-%endif
   done
 
 %files


++ ksystemlog-19.12.3.tar.xz -> ksystemlog-20.04.0.tar.xz ++
 2530 lines of diff (skipped)




commit ksystemlog for openSUSE:Leap:15.2

2020-03-15 Thread root
Hello community,

here is the log from the commit of package ksystemlog for openSUSE:Leap:15.2 
checked in at 2020-03-15 13:36:49

Comparing /work/SRC/openSUSE:Leap:15.2/ksystemlog (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.ksystemlog.new.3160 (New)


Package is "ksystemlog"

Sun Mar 15 13:36:49 2020 rev:42 rq:785014 version:19.12.3

Changes:

--- /work/SRC/openSUSE:Leap:15.2/ksystemlog/ksystemlog.changes  2020-02-21 
10:47:46.246727981 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.ksystemlog.new.3160/ksystemlog.changes
2020-03-15 13:36:50.610855315 +0100
@@ -1,0 +2,9 @@
+Thu Mar  5 20:36:30 UTC 2020 - Luca Beltrame 
+
+- Update to 19.12.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/releases/19.12.3
+- No code change since 19.12.2
+
+---

Old:

  ksystemlog-19.12.2.tar.xz
  ksystemlog-19.12.2.tar.xz.sig

New:

  ksystemlog-19.12.3.tar.xz
  ksystemlog-19.12.3.tar.xz.sig



Other differences:
--
++ ksystemlog.spec ++
--- /var/tmp/diff_new_pack.IlpKpl/_old  2020-03-15 13:36:51.994856139 +0100
+++ /var/tmp/diff_new_pack.IlpKpl/_new  2020-03-15 13:36:51.994856139 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ksystemlog
-Version:19.12.2
+Version:19.12.3
 Release:0
 Summary:System Log Viewer Tool
 License:GPL-2.0-only


++ ksystemlog-19.12.2.tar.xz -> ksystemlog-19.12.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemlog-19.12.2/CMakeLists.txt 
new/ksystemlog-19.12.3/CMakeLists.txt
--- old/ksystemlog-19.12.2/CMakeLists.txt   2020-02-02 15:06:24.0 
+0100
+++ new/ksystemlog-19.12.3/CMakeLists.txt   2020-02-29 23:30:17.0 
+0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "19")
 set (KDE_APPLICATIONS_VERSION_MINOR "12")
-set (KDE_APPLICATIONS_VERSION_MICRO "2")
+set (KDE_APPLICATIONS_VERSION_MICRO "3")
 set (KDE_APPLICATIONS_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
 cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemlog-19.12.2/po/ca@valencia/ksystemlog.po 
new/ksystemlog-19.12.3/po/ca@valencia/ksystemlog.po
--- old/ksystemlog-19.12.2/po/ca@valencia/ksystemlog.po 2020-02-04 
01:52:30.0 +0100
+++ new/ksystemlog-19.12.3/po/ca@valencia/ksystemlog.po 2020-03-03 
01:26:59.0 +0100
@@ -48,7 +48,8 @@
 #, kde-format
 msgid "Option is true if the user wants to delete repeated log lines."
 msgstr ""
-"L'opció és certa quan l'usuari vol suprimir les línies repetides del 
registre."
+"L'opció és certa quan l'usuari vol suprimir les línies repetides del "
+"registre."
 
 #. i18n: ectx: label, entry (DeleteProcessIdentifier), group 
(KSystemLogGeneral)
 #: src/config/ksystemlog.kcfg:28
@@ -264,8 +265,8 @@
 #: src/generalConfigurationWidgetBase.ui:39
 #, kde-format
 msgid ""
-"The log mode loaded by default at startup. Choose 'No Log Mode' if you do not 
"
-"want this to happen."
+"The log mode loaded by default at startup. Choose 'No Log Mode' if you do "
+"not want this to happen."
 msgstr ""
 "El mode de registre que es carregarà per omissió a l'inici. Seleccioneu "
 "«Sense mode de registre» si no voleu que això passe."
@@ -343,9 +344,9 @@
 #, kde-format
 msgid ""
 "Select this option if you want to remove the process identifier from the "
-"process name. For example, the Process column may contain entries such 
"
-"as cron[3433]. If this option is activated, the bold part will "
-"be removed."
+"process name. For example, the Process column may contain entries "
+"such as cron[3433]. If this option is activated, the bold part "
+"will be removed."
 msgstr ""
 "Podeu seleccionar aquesta opció si voleu eliminar l'identificador del procés "
 "del nom del procés. Per exemple, a vegades veureu a la columna Procés "
@@ -361,7 +362,8 @@
 #. i18n: ectx: property (toolTip), widget (QCheckBox, colorizeLogLines)
 #: src/generalConfigurationWidgetBase.ui:131
 #, kde-format
-msgid "This option allows log lines to be colored depending on their log 
level."
+msgid ""
+"This option allows log lines to be colored depending on their log level."
 msgstr ""
 "Aquesta opció permet l'acoloriment de les línies de registre, en funció del "
 "seu nivell de registre."
@@ -539,7 +541,8 @@
 msgid "Reloading %1...%2"
 msgstr "S'està actualitzant %1...%2"
 
-#: src/lib/localLogFileReader.cpp:113 

commit ksystemlog for openSUSE:Leap:15.2

2020-02-21 Thread root
Hello community,

here is the log from the commit of package ksystemlog for openSUSE:Leap:15.2 
checked in at 2020-02-21 10:47:14

Comparing /work/SRC/openSUSE:Leap:15.2/ksystemlog (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.ksystemlog.new.26092 (New)


Package is "ksystemlog"

Fri Feb 21 10:47:14 2020 rev:41 rq:772030 version:19.12.2

Changes:

--- /work/SRC/openSUSE:Leap:15.2/ksystemlog/ksystemlog.changes  2020-01-17 
12:04:51.248594235 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.ksystemlog.new.26092/ksystemlog.changes   
2020-02-21 10:47:46.246727981 +0100
@@ -1,0 +2,14 @@
+Fri Feb  7 08:38:04 UTC 2020 - Christophe Giboudeaux 
+
+- Replace %make_jobs with %cmake_build.
+
+---
+Wed Feb  5 06:29:33 UTC 2020 - Luca Beltrame 
+
+- Update to 19.12.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/releases/19.12.2
+- No code change since 19.12.1
+
+---

Old:

  ksystemlog-19.12.1.tar.xz
  ksystemlog-19.12.1.tar.xz.sig

New:

  ksystemlog-19.12.2.tar.xz
  ksystemlog-19.12.2.tar.xz.sig



Other differences:
--
++ ksystemlog.spec ++
--- /var/tmp/diff_new_pack.Zqorda/_old  2020-02-21 10:47:47.510730563 +0100
+++ /var/tmp/diff_new_pack.Zqorda/_new  2020-02-21 10:47:47.522730587 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ksystemlog
-Version:19.12.1
+Version:19.12.2
 Release:0
 Summary:System Log Viewer Tool
 License:GPL-2.0-only
@@ -64,7 +64,7 @@
 
 %build
   %cmake_kf5 -d build
-  %make_jobs
+  %cmake_build
 
 %install
   %kf5_makeinstall -C build


++ ksystemlog-19.12.1.tar.xz -> ksystemlog-19.12.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemlog-19.12.1/CMakeLists.txt 
new/ksystemlog-19.12.2/CMakeLists.txt
--- old/ksystemlog-19.12.1/CMakeLists.txt   2020-01-05 05:40:21.0 
+0100
+++ new/ksystemlog-19.12.2/CMakeLists.txt   2020-02-02 15:06:24.0 
+0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "19")
 set (KDE_APPLICATIONS_VERSION_MINOR "12")
-set (KDE_APPLICATIONS_VERSION_MICRO "1")
+set (KDE_APPLICATIONS_VERSION_MICRO "2")
 set (KDE_APPLICATIONS_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
 cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemlog-19.12.1/po/ca@valencia/ksystemlog.po 
new/ksystemlog-19.12.2/po/ca@valencia/ksystemlog.po
--- old/ksystemlog-19.12.1/po/ca@valencia/ksystemlog.po 2020-01-07 
03:23:05.0 +0100
+++ new/ksystemlog-19.12.2/po/ca@valencia/ksystemlog.po 2020-02-04 
01:52:30.0 +0100
@@ -48,8 +48,7 @@
 #, kde-format
 msgid "Option is true if the user wants to delete repeated log lines."
 msgstr ""
-"L'opció és certa quan l'usuari vol suprimir les línies repetides del "
-"registre."
+"L'opció és certa quan l'usuari vol suprimir les línies repetides del 
registre."
 
 #. i18n: ectx: label, entry (DeleteProcessIdentifier), group 
(KSystemLogGeneral)
 #: src/config/ksystemlog.kcfg:28
@@ -265,8 +264,8 @@
 #: src/generalConfigurationWidgetBase.ui:39
 #, kde-format
 msgid ""
-"The log mode loaded by default at startup. Choose 'No Log Mode' if you do "
-"not want this to happen."
+"The log mode loaded by default at startup. Choose 'No Log Mode' if you do not 
"
+"want this to happen."
 msgstr ""
 "El mode de registre que es carregarà per omissió a l'inici. Seleccioneu "
 "«Sense mode de registre» si no voleu que això passe."
@@ -344,9 +343,9 @@
 #, kde-format
 msgid ""
 "Select this option if you want to remove the process identifier from the "
-"process name. For example, the Process column may contain entries "
-"such as cron[3433]. If this option is activated, the bold part "
-"will be removed."
+"process name. For example, the Process column may contain entries such 
"
+"as cron[3433]. If this option is activated, the bold part will "
+"be removed."
 msgstr ""
 "Podeu seleccionar aquesta opció si voleu eliminar l'identificador del procés "
 "del nom del procés. Per exemple, a vegades veureu a la columna Procés "
@@ -362,8 +361,7 @@
 #. i18n: ectx: property (toolTip), widget (QCheckBox, colorizeLogLines)
 #: src/generalConfigurationWidgetBase.ui:131
 #, kde-format
-msgid ""
-"This option allows log lines to be colored depending on their log level."
+msgid "This option allows log lines 

commit ksystemlog for openSUSE:Leap:15.2

2020-01-17 Thread root
Hello community,

here is the log from the commit of package ksystemlog for openSUSE:Leap:15.2 
checked in at 2020-01-17 12:04:49

Comparing /work/SRC/openSUSE:Leap:15.2/ksystemlog (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.ksystemlog.new.26092 (New)


Package is "ksystemlog"

Fri Jan 17 12:04:49 2020 rev:40 rq:764072 version:19.12.1

Changes:

--- /work/SRC/openSUSE:Leap:15.2/ksystemlog/ksystemlog.changes  2020-01-15 
15:17:48.158321611 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.ksystemlog.new.26092/ksystemlog.changes   
2020-01-17 12:04:51.248594235 +0100
@@ -1,0 +2,9 @@
+Tue Jan  7 10:01:08 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 19.12.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/releases/19.12.1
+- No code change since 19.12.0
+
+---
@@ -7 +16 @@
-  * https://www.kde.org/announcements/releases/19.12.0
+  * https://www.kde.org/announcements/releases/19.12

Old:

  ksystemlog-19.12.0.tar.xz
  ksystemlog-19.12.0.tar.xz.sig

New:

  ksystemlog-19.12.1.tar.xz
  ksystemlog-19.12.1.tar.xz.sig



Other differences:
--
++ ksystemlog.spec ++
--- /var/tmp/diff_new_pack.N6HBCY/_old  2020-01-17 12:04:51.636594405 +0100
+++ /var/tmp/diff_new_pack.N6HBCY/_new  2020-01-17 12:04:51.644594408 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ksystemlog
-Version:19.12.0
+Version:19.12.1
 Release:0
 Summary:System Log Viewer Tool
 License:GPL-2.0-only


++ ksystemlog-19.12.0.tar.xz -> ksystemlog-19.12.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemlog-19.12.0/CMakeLists.txt 
new/ksystemlog-19.12.1/CMakeLists.txt
--- old/ksystemlog-19.12.0/CMakeLists.txt   2019-12-05 20:50:13.0 
+0100
+++ new/ksystemlog-19.12.1/CMakeLists.txt   2020-01-05 05:40:21.0 
+0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "19")
 set (KDE_APPLICATIONS_VERSION_MINOR "12")
-set (KDE_APPLICATIONS_VERSION_MICRO "0")
+set (KDE_APPLICATIONS_VERSION_MICRO "1")
 set (KDE_APPLICATIONS_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
 cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemlog-19.12.0/po/ca/ksystemlog.po 
new/ksystemlog-19.12.1/po/ca/ksystemlog.po
--- old/ksystemlog-19.12.0/po/ca/ksystemlog.po  2019-12-06 02:42:50.0 
+0100
+++ new/ksystemlog-19.12.1/po/ca/ksystemlog.po  2020-01-07 03:23:05.0 
+0100
@@ -3285,21 +3285,3 @@
 #, kde-format
 msgid "No Log"
 msgstr "Sense registre"
-
-#~ msgid " short date format"
-#~ msgstr "Format de data curt "
-
-#~ msgid "Fanc long date format"
-#~ msgstr "Format de data llarg "
-
-#~ msgctxt "Size format"
-#~ msgid "%1 B"
-#~ msgstr "%1 B"
-
-#~ msgctxt "Size format"
-#~ msgid "%1 KB"
-#~ msgstr "%1 KB"
-
-#~ msgctxt "Size format"
-#~ msgid "%1 MB"
-#~ msgstr "%1 MB"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemlog-19.12.0/po/gl/ksystemlog.po 
new/ksystemlog-19.12.1/po/gl/ksystemlog.po
--- old/ksystemlog-19.12.0/po/gl/ksystemlog.po  2019-12-06 02:42:51.0 
+0100
+++ new/ksystemlog-19.12.1/po/gl/ksystemlog.po  2020-01-07 03:23:07.0 
+0100
@@ -1,17 +1,17 @@
 # translation of ksystemlog.po to galician
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-#
 # mvillarino , 2007, 2008, 2009.
 # Marce Villarino , 2009, 2013, 2014.
 # Adrián Chaves Fernández (Gallaecio) , 2015, 2017.
-# Adrián Chaves (Gallaecio) , 2017, 2018, 2019.
+# Adrián Chaves (Gallaecio) , 2017, 2018, 2019, 2020.
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: ksystemlog\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-10-12 02:57+0200\n"
-"PO-Revision-Date: 2019-10-19 21:44+0200\n"
+"PO-Revision-Date: 2020-01-05 18:35+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
@@ -19,7 +19,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.11.70\n"
+"X-Generator: Lokalize 19.08.3\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -1509,8 +1509,8 @@
 "buttons..."
 msgstr ""
 "Mostra o rexistro de ACPI na lapela actual. ACPI úsase para xestionar os "
-"compoñentes de