commit libstorage-ng for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libstorage-ng for openSUSE:Factory 
checked in at 2022-10-15 16:35:00

Comparing /work/SRC/openSUSE:Factory/libstorage-ng (Old)
 and  /work/SRC/openSUSE:Factory/.libstorage-ng.new.2275 (New)


Package is "libstorage-ng"

Sat Oct 15 16:35:00 2022 rev:183 rq:1010931 version:4.5.46

Changes:

--- /work/SRC/openSUSE:Factory/libstorage-ng/libstorage-ng.changes  
2022-09-14 13:44:49.673870956 +0200
+++ /work/SRC/openSUSE:Factory/.libstorage-ng.new.2275/libstorage-ng.changes
2022-10-15 16:36:16.885983852 +0200
@@ -1,0 +2,7 @@
+Fri Oct 14 12:50:44 UTC 2022 - aschn...@suse.com
+
+- merge gh#openSUSE/libstorage-ng#899
+- allow to work with other linux flavours
+- 4.5.46
+
+

Old:

  libstorage-ng-4.5.45.tar.xz

New:

  libstorage-ng-4.5.46.tar.xz



Other differences:
--
++ libstorage-ng.spec ++
--- /var/tmp/diff_new_pack.AS58jS/_old  2022-10-15 16:36:18.017986573 +0200
+++ /var/tmp/diff_new_pack.AS58jS/_new  2022-10-15 16:36:18.021986582 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libstorage-ng
 #
-# Copyright (c) 2022 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,18 +12,18 @@
 # 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/
 #
 
 
 %define libname %{name}1
 Name:   libstorage-ng
-Version:4.5.45
+Version:4.5.46
 Release:0
 Summary:Library for storage management
 License:GPL-2.0-only
 Group:  System/Libraries
-Url:https://github.com/openSUSE/libstorage-ng
+URL:https://github.com/openSUSE/libstorage-ng
 Source: %{name}-%{version}.tar.xz
 %if 0%{?suse_version} >= 1330
 BuildRequires:  libboost_headers-devel
@@ -139,8 +139,8 @@
 %package utils
 Summary:Utils for libstorage-ng
 Group:  Development/Tools/Other
-Recommends: graphviz
 Recommends: ImageMagick
+Recommends: graphviz
 
 %description utils
 This package contains utils for libstorage-ng.

++ libstorage-ng-4.5.45.tar.xz -> libstorage-ng-4.5.46.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-ng-4.5.45/LIBVERSION 
new/libstorage-ng-4.5.46/LIBVERSION
--- old/libstorage-ng-4.5.45/LIBVERSION 2022-09-13 15:34:04.0 +0200
+++ new/libstorage-ng-4.5.46/LIBVERSION 2022-10-14 14:50:44.0 +0200
@@ -1 +1 @@
-1.80.1
+1.81.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-ng-4.5.45/VERSION 
new/libstorage-ng-4.5.46/VERSION
--- old/libstorage-ng-4.5.45/VERSION2022-09-13 15:34:04.0 +0200
+++ new/libstorage-ng-4.5.46/VERSION2022-10-14 14:50:44.0 +0200
@@ -1 +1 @@
-4.5.45
+4.5.46
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-ng-4.5.45/configure.ac 
new/libstorage-ng-4.5.46/configure.ac
--- old/libstorage-ng-4.5.45/configure.ac   2022-09-13 15:34:04.0 
+0200
+++ new/libstorage-ng-4.5.46/configure.ac   2022-10-14 14:50:44.0 
+0200
@@ -88,6 +88,9 @@
 RUBY_ARCH_NAME=$(RBCONFIG(arch))
 AC_SUBST(RUBY_ARCH_NAME)
 
+AC_MSG_RESULT(checking for OS_FLAVOUR... $build_vendor)
+AC_DEFINE_UNQUOTED([OS_FLAVOUR], ["$build_vendor"], [Operating system 
flavour.])
+
 AC_CONFIG_FILES([
Makefile
storage/Makefile
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libstorage-ng-4.5.45/storage/Devices/PartitionImpl.cc 
new/libstorage-ng-4.5.46/storage/Devices/PartitionImpl.cc
--- old/libstorage-ng-4.5.45/storage/Devices/PartitionImpl.cc   2022-09-13 
15:34:04.0 +0200
+++ new/libstorage-ng-4.5.46/storage/Devices/PartitionImpl.cc   2022-10-14 
14:50:44.0 +0200
@@ -916,10 +916,12 @@
 
do_create_pre_hack(tmps);
 
-   // Note: --wipesignatures is not available in upstream parted 
(2021-07-26).
+   string cmd_line = PARTED_BIN " --script ";
 
-   string cmd_line = PARTED_BIN " --script --wipesignatures " + 
quote(partitionable->get_name()) +
-   " unit s mkpart ";
+   if (PartedVersion::supports_wipe_signatures())
+   cmd_line += "--wipesignatures ";
+
+   cmd_line += quote(partitionable->get_name()) + " unit s mkpart ";
 

commit python-google-auth for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-google-auth for 
openSUSE:Factory checked in at 2022-10-15 16:34:57

Comparing /work/SRC/openSUSE:Factory/python-google-auth (Old)
 and  /work/SRC/openSUSE:Factory/.python-google-auth.new.2275 (New)


Package is "python-google-auth"

Sat Oct 15 16:34:57 2022 rev:22 rq:1010915 version:2.12.0

Changes:

--- /work/SRC/openSUSE:Factory/python-google-auth/python-google-auth.changes
2022-09-09 18:22:53.680155641 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-google-auth.new.2275/python-google-auth.changes
  2022-10-15 16:36:12.933974355 +0200
@@ -1,0 +2,10 @@
+Fri Oct 14 09:30:55 UTC 2022 - John Paul Adrian Glaubitz 

+
+- Update to 2.12.0
+  * Retry behavior (#1113)
+  * Modify RefreshError exception to use gcloud ADC command. (#1149)
+  * Revert "Update token refresh threshold from 20 seconds to 5 minutes". 
(186464b)
+- Refresh patches for new version
+  * python-google-auth-no-mock.patch
+
+---

Old:

  google-auth-2.11.0.tar.gz

New:

  google-auth-2.12.0.tar.gz



Other differences:
--
++ python-google-auth.spec ++
--- /var/tmp/diff_new_pack.eu8sbx/_old  2022-10-15 16:36:14.629978431 +0200
+++ /var/tmp/diff_new_pack.eu8sbx/_new  2022-10-15 16:36:14.637978450 +0200
@@ -19,7 +19,7 @@
 %define skip_python2 1
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-google-auth
-Version:2.11.0
+Version:2.12.0
 Release:0
 Summary:Google Authentication Library
 License:Apache-2.0

++ google-auth-2.11.0.tar.gz -> google-auth-2.12.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/google-auth-2.11.0/PKG-INFO 
new/google-auth-2.12.0/PKG-INFO
--- old/google-auth-2.11.0/PKG-INFO 2022-08-20 01:29:58.960029000 +0200
+++ new/google-auth-2.12.0/PKG-INFO 2022-09-27 22:42:06.128310700 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: google-auth
-Version: 2.11.0
+Version: 2.12.0
 Summary: Google Authentication Library
 Home-page: https://github.com/googleapis/google-auth-library-python
 Author: Google Cloud Platform
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/google-auth-2.11.0/google/auth/_exponential_backoff.py 
new/google-auth-2.12.0/google/auth/_exponential_backoff.py
--- old/google-auth-2.11.0/google/auth/_exponential_backoff.py  1970-01-01 
01:00:00.0 +0100
+++ new/google-auth-2.12.0/google/auth/_exponential_backoff.py  2022-09-27 
22:38:30.0 +0200
@@ -0,0 +1,111 @@
+# Copyright 2022 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import random
+import time
+
+import six
+
+# The default amount of retry attempts
+_DEFAULT_RETRY_TOTAL_ATTEMPTS = 3
+
+# The default initial backoff period (1.0 second).
+_DEFAULT_INITIAL_INTERVAL_SECONDS = 1.0
+
+# The default randomization factor (0.1 which results in a random period 
ranging
+# between 10% below and 10% above the retry interval).
+_DEFAULT_RANDOMIZATION_FACTOR = 0.1
+
+# The default multiplier value (2 which is 100% increase per back off).
+_DEFAULT_MULTIPLIER = 2.0
+
+"""Exponential Backoff Utility
+
+This is a private module that implements the exponential back off algorithm.
+It can be used as a utility for code that needs to retry on failure, for 
example
+an HTTP request.
+"""
+
+
+class ExponentialBackoff(six.Iterator):
+"""An exponential backoff iterator. This can be used in a for loop to
+perform requests with exponential backoff.
+
+Args:
+total_attempts Optional[int]:
+The maximum amount of retries that should happen.
+The default value is 3 attempts.
+initial_wait_seconds Optional[int]:
+The amount of time to sleep in the first backoff. This parameter
+should be in seconds.
+The default value is 1 second.
+randomization_factor Optional[float]:
+The amount of jitter that should be in each backoff. For example,
+a value of 0.1 will introduce a jitter range of 10% to the
+

commit swig for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package swig for openSUSE:Factory checked in 
at 2022-10-15 16:34:58

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


Package is "swig"

Sat Oct 15 16:34:58 2022 rev:78 rq:1010916 version:4.0.2

Changes:

--- /work/SRC/openSUSE:Factory/swig/swig.changes2022-09-27 
20:13:07.941721376 +0200
+++ /work/SRC/openSUSE:Factory/.swig.new.2275/swig.changes  2022-10-15 
16:36:14.949979200 +0200
@@ -1,0 +2,9 @@
+Thu Oct 13 17:47:25 UTC 2022 - Michal Suchanek 
+
+- Fix SystemError: PY_SSIZE_T_CLEAN macro must be defined for '#' formats
+  with python 3.10 gh#swig/swig#2277
+  + swig-Python-define-PY_SSIZE_T_CLEAN.patch
+  + swig-Define-PY_SSIZE_T_CLEAN-macro.patch
+  + swig-Define-PY_SSIZE_T_CLEAN-only-when-not-defined-yet.patch
+
+---

New:

  swig-Define-PY_SSIZE_T_CLEAN-macro.patch
  swig-Define-PY_SSIZE_T_CLEAN-only-when-not-defined-yet.patch
  swig-Python-define-PY_SSIZE_T_CLEAN.patch



Other differences:
--
++ swig.spec ++
--- /var/tmp/diff_new_pack.DMHxIF/_old  2022-10-15 16:36:16.585983131 +0200
+++ /var/tmp/diff_new_pack.DMHxIF/_new  2022-10-15 16:36:16.589983141 +0200
@@ -47,6 +47,12 @@
 # PATCH-FIX-UPSTREAM 15515f390c5e3316a7faf0cf85d661a297d45a50.patch - 
gh#swig/swig#2138, remove obsolete pcre1
 # from 
https://github.com/swig/swig/commit/15515f390c5e3316a7faf0cf85d661a297d45a50.patch
 Patch3: 15515f390c5e3316a7faf0cf85d661a297d45a50.patch
+# PATCH-FIX-UPSTREAM https://github.com/swig/swig/pull/2277
+Patch4: swig-Python-define-PY_SSIZE_T_CLEAN.patch
+# PATCH-FIX-UPSTREAM https://github.com/swig/swig/pull/2277
+Patch5: swig-Define-PY_SSIZE_T_CLEAN-macro.patch
+# PATCH-FIX-UPSTREAM https://github.com/swig/swig/pull/2401
+Patch6: swig-Define-PY_SSIZE_T_CLEAN-only-when-not-defined-yet.patch
 Patch308:   swig308-isfinite.diff
 
 BuildRequires:  autoconf

++ swig-Define-PY_SSIZE_T_CLEAN-macro.patch ++
>From abc8e0bb277f7a54ff4ee209845dde910d267819 Mon Sep 17 00:00:00 2001
From: William S Fulton 
Date: Fri, 27 May 2022 18:58:04 +0100
Subject: [PATCH] Define PY_SSIZE_T_CLEAN macro

before #include "Python.h" as recommended in Python 3.7 and later.

Issue #2277
---
 CHANGES.current  | 11 +++
 Lib/python/embed.i   |  2 +-
 Lib/python/pyruntime.swg |  2 +-
 3 files changed, 13 insertions(+), 2 deletions(-)

Index: swig-4.0.2/CHANGES.current
===
--- swig-4.0.2.orig/CHANGES.current
+++ swig-4.0.2/CHANGES.current
@@ -7,6 +7,17 @@ the issue number to the end of the URL:
 Version 4.0.2 (8 Jun 2020)
 ==
 
+2022-05-27: xypron
+[Python] #2277 Define PY_SSIZE_T_CLEAN macro before #include 
"Python.h" as
+recommended in Python 3.7 and later.
+
+To avoid this macro definition, add the following to your 
interface file so
+that SWIG_NO_PY_SSIZE_T_CLEAN is defined at the beginning of the 
C++ wrappers:
+
+  %begin %{
+  #define SWIG_NO_PY_SSIZE_T_CLEAN
+  %}
+
 2020-06-07  vigsterkr
 [Ruby] #1717 Nil fix mangling strings
 
Index: swig-4.0.2/Lib/python/embed.i
===
--- swig-4.0.2.orig/Lib/python/embed.i
+++ swig-4.0.2/Lib/python/embed.i
@@ -29,7 +29,7 @@ As far as I know, this module is C++ saf
 #endif
 
 %wrapper %{
-#ifndef PY_SSIZE_T_CLEAN
+#ifndef SWIG_NO_PY_SSIZE_T_CLEAN
 #define PY_SSIZE_T_CLEAN
 #endif
 #include 
Index: swig-4.0.2/Lib/python/pyruntime.swg
===
--- swig-4.0.2.orig/Lib/python/pyruntime.swg
+++ swig-4.0.2/Lib/python/pyruntime.swg
@@ -4,7 +4,7 @@
 # include 
 #endif
 
-#ifndef PY_SSIZE_T_CLEAN
+#ifndef SWIG_NO_PY_SSIZE_T_CLEAN
 #define PY_SSIZE_T_CLEAN
 #endif
 #if defined(_DEBUG) && defined(SWIG_PYTHON_INTERPRETER_NO_DEBUG)

++ swig-Define-PY_SSIZE_T_CLEAN-only-when-not-defined-yet.patch ++
>From c3f17b415dc63906218306135da49bf1f941588f Mon Sep 17 00:00:00 2001
From: Michal Suchanek 
Date: Thu, 13 Oct 2022 23:25:52 +0200
Subject: [PATCH] Define PY_SSIZE_T_CLEAN only when not defined yet

Users of swig 4.0.2 and python 3.10 will likely define the
PY_SSIZE_T_CLEAN macro by hand when relevant because their bindings
won't build otherwise.

Unconditionally defining PY_SSIZE_T_CLEAN in swig 4.10 will lead to
macro redefinition warning.

Signed-off-by: Michal Suchanek 
---
 Lib/python/embed.i   | 2 +-
 Lib/python/pyruntime.swg | 2 +-
 2 files changed, 2 

commit skelcd-openSUSE for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package skelcd-openSUSE for openSUSE:Factory 
checked in at 2022-10-15 16:34:55

Comparing /work/SRC/openSUSE:Factory/skelcd-openSUSE (Old)
 and  /work/SRC/openSUSE:Factory/.skelcd-openSUSE.new.2275 (New)


Package is "skelcd-openSUSE"

Sat Oct 15 16:34:55 2022 rev:113 rq:1010709 version:84.87.20221014.a1fea0d

Changes:

--- /work/SRC/openSUSE:Factory/skelcd-openSUSE/skelcd-openSUSE.changes  
2022-05-20 17:51:02.227243001 +0200
+++ 
/work/SRC/openSUSE:Factory/.skelcd-openSUSE.new.2275/skelcd-openSUSE.changes
2022-10-15 16:36:10.717969030 +0200
@@ -1,0 +2,9 @@
+Fri Oct 14 09:27:53 UTC 2022 - opensuse-packag...@opensuse.org
+
+- Update to version 84.87.20221014.a1fea0d:
+  * Update email in README
+  * Update SUSE business address
+  * Translated using Weblate (Italian)
+  * Translated using Weblate (Russian)
+
+---

Old:

  skelcd-openSUSE-84.87.20220519.bf4df4b.tar.xz

New:

  skelcd-openSUSE-84.87.20221014.a1fea0d.tar.xz



Other differences:
--
++ skelcd-openSUSE.spec ++
--- /var/tmp/diff_new_pack.5cbA8I/_old  2022-10-15 16:36:11.449970789 +0200
+++ /var/tmp/diff_new_pack.5cbA8I/_new  2022-10-15 16:36:11.457970808 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define version_unconverted 84.87.20220519.bf4df4b
+%define version_unconverted 84.87.20221014.a1fea0d
 # changed by pre_checkin
 %define is_non_oss 0
 #
@@ -28,7 +28,7 @@
 %bcond_without  java
 #
 Name:   skelcd-openSUSE
-Version:84.87.20220519.bf4df4b
+Version:84.87.20221014.a1fea0d
 Release:0
 Summary:Skeleton for openSUSE OSS Media Sets
 License:MIT

++ _servicedata ++
--- /var/tmp/diff_new_pack.5cbA8I/_old  2022-10-15 16:36:11.497970904 +0200
+++ /var/tmp/diff_new_pack.5cbA8I/_new  2022-10-15 16:36:11.501970914 +0200
@@ -3,6 +3,6 @@
 git://github.com/openSUSE/skelcd-openSUSE.git
   f6ddfa3f640978f02d050f738796e0c6fca8
 https://github.com/openSUSE/skelcd-openSUSE.git
-  8ba236ef606b01151b5b742b88d3cc82e3da0f5e
+  6c5e42519173188636990f655aca8c8aed2b9446
 (No newline at EOF)
 

++ skelcd-openSUSE-84.87.20220519.bf4df4b.tar.xz -> 
skelcd-openSUSE-84.87.20221014.a1fea0d.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/skelcd-openSUSE-84.87.20220519.bf4df4b/.gitignore 
new/skelcd-openSUSE-84.87.20221014.a1fea0d/.gitignore
--- old/skelcd-openSUSE-84.87.20220519.bf4df4b/.gitignore   1970-01-01 
01:00:00.0 +0100
+++ new/skelcd-openSUSE-84.87.20221014.a1fea0d/.gitignore   2022-10-14 
11:20:33.0 +0200
@@ -0,0 +1,2 @@
+skelcd/license.tar.gz
+license/license.*.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/skelcd-openSUSE-84.87.20220519.bf4df4b/license/license.it.po 
new/skelcd-openSUSE-84.87.20221014.a1fea0d/license/license.it.po
--- old/skelcd-openSUSE-84.87.20220519.bf4df4b/license/license.it.po
2022-05-19 14:04:49.0 +0200
+++ new/skelcd-openSUSE-84.87.20221014.a1fea0d/license/license.it.po
2022-10-14 11:20:33.0 +0200
@@ -4,7 +4,7 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-08-31 11:11+0200\n"
-"PO-Revision-Date: 2021-06-11 16:59+\n"
+"PO-Revision-Date: 2022-10-13 18:14+\n"
 "Last-Translator: Paolo Za \n"
 "Language-Team: Italian \n"
@@ -13,7 +13,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.6.2\n"
+"X-Generator: Weblate 4.9.1\n"
 
 #: license/TEMPLATE:1
 msgid ""
@@ -52,15 +52,19 @@
 "Public License version 2. By downloading, installing, or using\n"
 "openSUSE #VERSION#, you agree to the terms of this agreement."
 msgstr ""
-"Questo contratto regola il download, l'installazione o l'uso di\n"
-"openSUSE #VERSION# e dei suoi aggiornamenti, indipendentemente dalla\n"
-"modalit?? di consegna. openSUSE #VERSION# ?? un lavoro collettivo in\n"
-"base alle leggi degli Stati Uniti sul copyright. In conformit?? ai\n"
-"termini seguenti, The openSUSE Project concede all'utente una licenza\n"
-"per l'uso di questo lavoro collettivo secondo quanto definito nella\n"
-"versione della 2 della licenza pubblica generica (GNU). Il download,\n"
-"l'installazione o l'uso di openSUSE #VERSION# implica l'accettazione\n"
-"dei termini di questo contratto."
+"Questo contratto regola lo scaricamento, l'installazione o l'uso di openSUSE "
+"#VERSION#\n"
+"e dei 

commit kimageformats for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kimageformats for openSUSE:Factory 
checked in at 2022-10-15 16:34:56

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


Package is "kimageformats"

Sat Oct 15 16:34:56 2022 rev:112 rq:1010886 version:5.99.0

Changes:

--- /work/SRC/openSUSE:Factory/kimageformats/kimageformats.changes  
2022-10-11 18:01:55.749733627 +0200
+++ /work/SRC/openSUSE:Factory/.kimageformats.new.2275/kimageformats.changes
2022-10-15 16:36:11.793971616 +0200
@@ -1,0 +2,5 @@
+Sun Oct  9 07:21:20 UTC 2022 - Enrico Belleri 
+
+- Enable JPEG-XL plugin
+
+---



Other differences:
--
++ kimageformats.spec ++
--- /var/tmp/diff_new_pack.efyW4a/_old  2022-10-15 16:36:12.773973971 +0200
+++ /var/tmp/diff_new_pack.efyW4a/_new  2022-10-15 16:36:12.777973980 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kimageformats
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,6 +22,9 @@
 %if 0%{?suse_version} > 1500 || (0%{?is_opensuse} && 0%{?sle_version} >= 
150300)
 %define with_heif 1
 %endif
+%if 0%{?suse_version} > 1500 || (0%{?is_opensuse} && 0%{?sle_version} > 150400)
+%define with_jxl 1
+%endif
 %define _tar_path 5.99
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
@@ -44,21 +47,24 @@
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
-BuildRequires:  openexr
 BuildRequires:  openexr-devel
 BuildRequires:  cmake(KF5Archive) >= %{_kf5_bugfix_version}
-BuildRequires:  cmake(Qt5Gui) >= 5.15.0
-BuildRequires:  cmake(Qt5PrintSupport) >= 5.15.0
-BuildRequires:  cmake(Qt5Test) >= 5.15.0
+BuildRequires:  cmake(Qt5Gui) >= 5.15.2
+BuildRequires:  cmake(Qt5PrintSupport) >= 5.15.2
+BuildRequires:  cmake(Qt5Test) >= 5.15.2
 %if 0%{?with_avif}
 BuildRequires:  cmake(libavif) >= 0.8.2
 %endif
 %if 0%{?with_heif}
 BuildRequires:  cmake(libheif) >= 1.10.0
 %endif
+%if 0%{?with_jxl}
+BuildRequires:  pkgconfig(libjxl) >= 0.6.1
+BuildRequires:  pkgconfig(libjxl_threads) >= 0.6.1
+%endif
 %requires_gelibQt5Gui5
 %requires_gelibQt5PrintSupport5
-Recommends: libqt5-qtimageformats >= 5.12.0
+Recommends: libqt5-qtimageformats >= 5.15.2
 Suggests:   %{name}-eps
 
 %description
@@ -99,6 +105,9 @@
 %if 0%{?with_heif}
 %{_kf5_plugindir}/imageformats/kimg_heif.so
 %endif
+%if 0%{?with_jxl}
+%{_kf5_plugindir}/imageformats/kimg_jxl.so
+%endif
 %{_kf5_plugindir}/imageformats/kimg_exr.so
 %{_kf5_plugindir}/imageformats/kimg_hdr.so
 %{_kf5_plugindir}/imageformats/kimg_kra.so
@@ -118,6 +127,9 @@
 %if 0%{?with_heif}
 %{_kf5_servicesdir}/qimageioplugins/heif.desktop
 %endif
+%if 0%{?with_jxl}
+%{_kf5_servicesdir}/qimageioplugins/jxl.desktop
+%endif
 %{_kf5_servicesdir}/qimageioplugins/dds.desktop
 %{_kf5_servicesdir}/qimageioplugins/exr.desktop
 %{_kf5_servicesdir}/qimageioplugins/hdr.desktop


commit spectacle for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package spectacle for openSUSE:Factory 
checked in at 2022-10-15 16:34:50

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


Package is "spectacle"

Sat Oct 15 16:34:50 2022 rev:84 rq:1010877 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/spectacle/spectacle.changes  2022-09-09 
18:24:53.212505298 +0200
+++ /work/SRC/openSUSE:Factory/.spectacle.new.2275/spectacle.changes
2022-10-15 16:36:04.913955083 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:59 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  spectacle-22.08.1.tar.xz
  spectacle-22.08.1.tar.xz.sig

New:

  spectacle-22.08.2.tar.xz
  spectacle-22.08.2.tar.xz.sig



Other differences:
--
++ spectacle.spec ++
--- /var/tmp/diff_new_pack.m41PMz/_old  2022-10-15 16:36:06.709959399 +0200
+++ /var/tmp/diff_new_pack.m41PMz/_new  2022-10-15 16:36:06.717959418 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   spectacle
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Screen Capture Program
 License:LGPL-2.0-or-later AND GPL-2.0-or-later


++ spectacle-22.08.1.tar.xz -> spectacle-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/spectacle-22.08.1/CMakeLists.txt 
new/spectacle-22.08.2/CMakeLists.txt
--- old/spectacle-22.08.1/CMakeLists.txt2022-09-03 00:08:21.0 
+0200
+++ new/spectacle-22.08.2/CMakeLists.txt2022-10-10 21:57:56.0 
+0200
@@ -2,7 +2,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 set(RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 set(SPECTACLE_VERSION ${RELEASE_SERVICE_VERSION})
 # minimum requirements
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/spectacle-22.08.1/desktop/org.kde.spectacle.appdata.xml 
new/spectacle-22.08.2/desktop/org.kde.spectacle.appdata.xml
--- old/spectacle-22.08.1/desktop/org.kde.spectacle.appdata.xml 2022-09-03 
00:08:21.0 +0200
+++ new/spectacle-22.08.2/desktop/org.kde.spectacle.appdata.xml 2022-10-10 
21:57:56.0 +0200
@@ -112,7 +112,7 @@
 Spectacle je jednory program za fotografowanje 
d??oweho  powjercha. Me wobrazy stwori?? wot cy??eho d??oweho 
powjercha, w??steje wobrazowki, aktiwneho wokna, wokna pod my??ku, abo 
praworkateho wur??zka wobrazowki. Wobrazy hod??a so potom wu??ie??, 
druhim aplikacijam p??s??a?? za dal??e wobd??anje, abo zaw??s??i??, kajke?? 
su.
 A Spectacle egy egyszer?? k??perny??k??p-r??gz??t?? 
alkalmaz??s. K??pes a teljes asztal, egy monitor, az akt??v ablak, az eg??r 
alatti ablak vagy egy t??glalap alak?? k??perny??ter??let r??gz??t??s??re is. A 
k??peket ezut??n ki lehet nyomtatni, ??tadni m??s alkalmaz??soknak 
szerkeszt??sre vagy csak gyorsan elmenteni.
 Spectacle es un simple application per capturar 
instantaneo de schermo. Il  pote capturar imagines del integre scriptorio, un 
singule monitor, le currente  fenestra active, le fenestra currentemente sub le 
mus, o un region rectangular del schermo. Le images pote esser imprimite, 
inviate a altere applicationes  per manipolation, o rapidemente esser 
salveguardate assi como es.
-Spectacle adalah aplikasi sederhana untuk menangkap 
screenshot desktop. Hal ini bisa menangkap gambar dari seluruh desktop, monitor 
tunggal, window yang sedang aktif, window saat ini yang sedang di bawah mouse, 
atau bidang persegi pada layar. Gambar kemudian bisa di-print, dikirim ke 
aplikasi lain untuk manipulasi, atau secara cepat disimpan sebagai apa.
+Spectacle adalah aplikasi sederhana untuk menangkap 
screenshot desktop. Hal ini bisa menangkap gambar dari seluruh desktop, monitor 
tunggal, jendela yang sedang aktif, jendela saat ini yang sedang di bawah 
mouse, atau bidang persegi pada layar. Gambar kemudian bisa di-print, dikirim 
ke aplikasi lain untuk manipulasi, atau secara cepat disimpan sebagai apa.
 Spectacle ?? una semplice applicazione per catturare 
schermate. Pu?? acquisire immagini dell'intero desktop, di un singolo monitor, 

commit python-pyudev for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-pyudev for openSUSE:Factory 
checked in at 2022-10-15 16:34:53

Comparing /work/SRC/openSUSE:Factory/python-pyudev (Old)
 and  /work/SRC/openSUSE:Factory/.python-pyudev.new.2275 (New)


Package is "python-pyudev"

Sat Oct 15 16:34:53 2022 rev:30 rq:1010622 version:0.24.0

Changes:

--- /work/SRC/openSUSE:Factory/python-pyudev/python-pyudev.changes  
2022-10-03 13:44:42.321341951 +0200
+++ /work/SRC/openSUSE:Factory/.python-pyudev.new.2275/python-pyudev.changes
2022-10-15 16:36:08.849964541 +0200
@@ -1,0 +2,6 @@
+Fri Oct 14 08:25:20 UTC 2022 - Dirk M??ller 
+
+- update hypothesis_settings.patch:
+  * extend deadlines to handle qemu emulated arches better 
+
+---



Other differences:
--
++ hypothesis_settings.patch ++
--- /var/tmp/diff_new_pack.97beBQ/_old  2022-10-15 16:36:10.509968530 +0200
+++ /var/tmp/diff_new_pack.97beBQ/_new  2022-10-15 16:36:10.513968540 +0200
@@ -16,7 +16,7 @@
  @failed_health_check_wrapper
  @given(_CONTEXT_STRATEGY, _SUBSYSTEM_STRATEGY)
 -@settings(max_examples=1)
-+@settings(max_examples=1, deadline=500)
++@settings(max_examples=1, deadline=2000)
  def test_match_subsystem_nomatch_complete(self, context, subsystem):
  """
  Test that w/ respect to the universe of devices returned by
@@ -25,7 +25,7 @@
  @failed_health_check_wrapper
  @given(_CONTEXT_STRATEGY, _MATCH_PROPERTY_STRATEGY.filter(lambda x: 
_is_bool(x[1])))
 -@settings(max_examples=10)
-+@settings(max_examples=10, deadline=500)
++@settings(max_examples=10, deadline=2000)
  def test_match_property_bool(self, context, pair):
  """
  Verify that a probably boolean property lookup works.
@@ -34,7 +34,7 @@
  _CONTEXT_STRATEGY, device_strategy(filter_func=lambda d: d.parent is 
not None)
  )
 -@settings(max_examples=5)
-+@settings(max_examples=5, deadline=500)
++@settings(max_examples=5, deadline=2000)
  def test_match_parent(self, context, device):
  """
  For a given device, verify that it is in its parent's children.
@@ -43,7 +43,7 @@
  _MATCH_PROPERTY_STRATEGY,
  )
 -@settings(max_examples=10)
-+@settings(max_examples=10, deadline=500)
++@settings(max_examples=10, deadline=2000)
  def test_match(self, context, subsystem, sysname, ppair):
  """
  Test that matches from different categories are a conjunction.
@@ -52,7 +52,7 @@
  
  @given(_ENUMERATOR_STRATEGY)
 -@settings(max_examples=1)
-+@settings(max_examples=1, deadline=500)
++@settings(max_examples=1, deadline=2000)
  def test_match_passthrough_tag(self, enumerator):
  """
  Test that special keyword tag results in a match_tag call.
@@ -61,7 +61,7 @@
  @_UDEV_TEST(172, "test_match_passthrough_parent")
  @given(_ENUMERATOR_STRATEGY)
 -@settings(max_examples=1)
-+@settings(max_examples=1, deadline=500)
++@settings(max_examples=1, deadline=2000)
  def test_match_passthrough_parent(self, enumerator):
  """
  Test that special keyword 'parent' results in a match parent call.
@@ -70,7 +70,7 @@
  
  @given(_ENUMERATOR_STRATEGY)
 -@settings(max_examples=1)
-+@settings(max_examples=1, deadline=500)
++@settings(max_examples=1, deadline=2000)
  def test_match_passthrough_property(self, enumerator):
  """
  Test that non-special keyword args are treated as properties.


commit pam for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package pam for openSUSE:Factory checked in 
at 2022-10-15 16:34:52

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


Package is "pam"

Sat Oct 15 16:34:52 2022 rev:123 rq:1010468 version:1.5.2

Changes:

--- /work/SRC/openSUSE:Factory/pam/pam.changes  2022-07-07 12:57:16.615315470 
+0200
+++ /work/SRC/openSUSE:Factory/.pam.new.2275/pam.changes2022-10-15 
16:36:07.469961225 +0200
@@ -1,0 +2,6 @@
+Tue Oct 11 14:44:56 UTC 2022 - Stefan Schubert 
+
+- pam_env: Using libeconf for reading configuration and environment
+  files. (Patch: pam_env_econf.patch; Testcase: tst-pam_env-retval.c)
+
+---

New:

  pam_env_econf.patch
  tst-pam_env-retval.c



Other differences:
--
++ pam.spec ++
--- /var/tmp/diff_new_pack.pjJ57O/_old  2022-10-15 16:36:08.537963791 +0200
+++ /var/tmp/diff_new_pack.pjJ57O/_new  2022-10-15 16:36:08.541963801 +0200
@@ -64,12 +64,14 @@
 Source13:   pam.tmpfiles
 Source14:   Linux-PAM-%{version}-docs.tar.xz.asc
 Source15:   Linux-PAM-%{version}.tar.xz.asc
+Source16:   tst-pam_env-retval.c
 Patch1: pam-limit-nproc.patch
 Patch2: pam-hostnames-in-access_conf.patch
 Patch3: pam-xauth_ownership.patch
 Patch4: pam-bsc1177858-dont-free-environment-string.patch
 Patch10:pam_xauth_data.3.xml.patch
 Patch11:pam-git.diff
+Patch12:pam_env_econf.patch
 BuildRequires:  audit-devel
 BuildRequires:  bison
 BuildRequires:  flex
@@ -175,12 +177,14 @@
 %prep
 %setup -q -n Linux-PAM-%{version} -b 1
 cp -a %{SOURCE12} .
+cp %{SOURCE16} ./modules/pam_env
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
 %patch10 -p1
 %patch11 -p1
+%patch12 -p1
 
 %build
 bash ./pam-login_defs-check.sh



++ pam_env_econf.patch ++
 1020 lines (skipped)

++ tst-pam_env-retval.c ++
/*
 * Check pam_env return values.
 *
 * Copyright (c) 2020-2022 Dmitry V. Levin 
 * Copyright (c) 2022 Stefan Schubert 
 */

#include "test_assert.h"

#include 
#include 
#include 
#include 
#include 
#include 
#include 

#define MODULE_NAME "pam_env"
#define TEST_NAME "tst-" MODULE_NAME "-retval"
#define TEST_NAME_DIR TEST_NAME ".dir"

static const char service_file[] = TEST_NAME ".service";
static const char missing_file[] = TEST_NAME ".missing";
static const char dir[] = TEST_NAME_DIR;
static const char dir_usr[] = TEST_NAME_DIR "/usr";
static const char dir_usr_etc[] = TEST_NAME_DIR "/usr/etc";
static const char dir_usr_etc_security[] = TEST_NAME_DIR "/usr/etc/security";
static const char my_conf[] = TEST_NAME ".conf";
static const char my_env[] = TEST_NAME ".env";
static const char usr_env[] = TEST_NAME_DIR "/usr/etc/environment";
static const char usr_conf[] = TEST_NAME_DIR "/usr/etc/security/pam_env.conf";

static struct pam_conv conv;

static void
setup(void)
{
FILE *fp;

ASSERT_EQ(0, mkdir(dir, 0755));
ASSERT_EQ(0, mkdir(dir_usr, 0755));
ASSERT_EQ(0, mkdir(dir_usr_etc, 0755));
ASSERT_EQ(0, mkdir(dir_usr_etc_security, 0755));

ASSERT_NE(NULL, fp = fopen(my_conf, "w"));
ASSERT_LT(0, fprintf(fp,
 "EDITOR\tDEFAULT=vim\n"
 "PAGER\tDEFAULT=more\n"));
ASSERT_EQ(0, fclose(fp));

ASSERT_NE(NULL, fp = fopen(my_env, "w"));
ASSERT_LT(0, fprintf(fp,
 "test_value=foo\n"
 "test2_value=bar\n"));
ASSERT_EQ(0, fclose(fp));

ASSERT_NE(NULL, fp = fopen(usr_env, "w"));
ASSERT_LT(0, fprintf(fp,
 "usr_etc_test=foo\n"
 "usr_etc_test2=bar\n"));
ASSERT_EQ(0, fclose(fp));

ASSERT_NE(NULL, fp = fopen(usr_conf, "w"));
ASSERT_LT(0, fprintf(fp,
 "PAGER DEFAULT=emacs\n"
 "MANPAGER  DEFAULT=less\n"));
ASSERT_EQ(0, fclose(fp));
}

static void
cleanup(void)
{
ASSERT_EQ(0, unlink(my_conf));
ASSERT_EQ(0, unlink(my_env));
ASSERT_EQ(0, unlink(usr_env));
ASSERT_EQ(0, unlink(usr_conf));
ASSERT_EQ(0, rmdir(dir_usr_etc_security));
ASSERT_EQ(0, rmdir(dir_usr_etc));
ASSERT_EQ(0, rmdir(dir_usr));
ASSERT_EQ(0, rmdir(dir));
}

static void
check_array(const char **array1, char **array2)
{
for (const char **a1 = array1; *a1 != NULL; ++a1) {
char **a2;
for (a2 = array2; *a2 != NULL; ++a2) {
if (strcmp(*a1, *a2) == 0)
  

commit skanlite for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package skanlite for openSUSE:Factory 
checked in at 2022-10-15 16:34:49

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


Package is "skanlite"

Sat Oct 15 16:34:49 2022 rev:59 rq:1010875 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/skanlite/skanlite.changes2022-09-09 
18:24:52.184502269 +0200
+++ /work/SRC/openSUSE:Factory/.skanlite.new.2275/skanlite.changes  
2022-10-15 16:36:03.445951555 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:58 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  skanlite-22.08.1.tar.xz
  skanlite-22.08.1.tar.xz.sig

New:

  skanlite-22.08.2.tar.xz
  skanlite-22.08.2.tar.xz.sig



Other differences:
--
++ skanlite.spec ++
--- /var/tmp/diff_new_pack.V0dx8J/_old  2022-10-15 16:36:04.345953718 +0200
+++ /var/tmp/diff_new_pack.V0dx8J/_new  2022-10-15 16:36:04.345953718 +0200
@@ -19,7 +19,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   skanlite
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Image Scanner Application
 License:LGPL-2.1-or-later


++ skanlite-22.08.1.tar.xz -> skanlite-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/skanlite-22.08.1/CMakeLists.txt 
new/skanlite-22.08.2/CMakeLists.txt
--- old/skanlite-22.08.1/CMakeLists.txt 2022-09-03 00:46:23.0 +0200
+++ new/skanlite-22.08.2/CMakeLists.txt 2022-10-10 22:34:54.0 +0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 
 set(RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/skanlite-22.08.1/po/bg/skanlite.po 
new/skanlite-22.08.2/po/bg/skanlite.po
--- old/skanlite-22.08.1/po/bg/skanlite.po  2022-09-06 02:18:11.0 
+0200
+++ new/skanlite-22.08.2/po/bg/skanlite.po  2022-10-11 07:06:36.0 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: skanlight\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-05-10 00:43+\n"
-"PO-Revision-Date: 2022-05-22 20:27+0200\n"
+"PO-Revision-Date: 2022-09-17 08:45+0200\n"
 "Last-Translator: Mincho Kondarev \n"
 "Language-Team: Bulgarian \n"
 "Language: bg\n"
@@ -16,7 +16,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 22.04.0\n"
+"X-Generator: Lokalize 22.08.1\n"
 "X-Poedit-SourceCharset: UTF-8\n"
 
 #: ImageViewer.cpp:43
@@ -343,8 +343,8 @@
 "The image will be saved in the PNG format, as the selected image type does "
 "not support saving 16 bit color images."
 msgstr ""
-"??    ??  
PNG,  Skanlite    "
-" ?? 16- ??."
+"??    ??  
PNG,  Skanlite   "
+"  ?? 16- ??."
 
 #: skanlite.cpp:500
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/skanlite-22.08.1/po/ja/skanlite.po 
new/skanlite-22.08.2/po/ja/skanlite.po
--- old/skanlite-22.08.1/po/ja/skanlite.po  2022-09-06 02:18:11.0 
+0200
+++ new/skanlite-22.08.2/po/ja/skanlite.po  2022-10-11 07:06:36.0 
+0200
@@ -375,6 +375,3 @@
 msgctxt "@title:window %1 = scanner device"
 msgid "%1 - Skanlite"
 msgstr "%1 - Skanlite"
-
-#~ msgid "About"
-#~ msgstr "??"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/skanlite-22.08.1/po/tr/skanlite.po 
new/skanlite-22.08.2/po/tr/skanlite.po
--- old/skanlite-22.08.1/po/tr/skanlite.po  2022-09-06 02:18:11.0 
+0200
+++ new/skanlite-22.08.2/po/tr/skanlite.po  2022-10-11 07:06:36.0 
+0200
@@ -12,7 +12,7 @@
 "Project-Id-Version: extragear-graphics-kde4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-05-10 

commit signon-kwallet-extension for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package signon-kwallet-extension for 
openSUSE:Factory checked in at 2022-10-15 16:34:48

Comparing /work/SRC/openSUSE:Factory/signon-kwallet-extension (Old)
 and  /work/SRC/openSUSE:Factory/.signon-kwallet-extension.new.2275 (New)


Package is "signon-kwallet-extension"

Sat Oct 15 16:34:48 2022 rev:89 rq:1010874 version:22.08.2

Changes:

--- 
/work/SRC/openSUSE:Factory/signon-kwallet-extension/signon-kwallet-extension.changes
2022-09-09 18:24:51.300499665 +0200
+++ 
/work/SRC/openSUSE:Factory/.signon-kwallet-extension.new.2275/signon-kwallet-extension.changes
  2022-10-15 16:36:01.385946605 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:57 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  signon-kwallet-extension-22.08.1.tar.xz
  signon-kwallet-extension-22.08.1.tar.xz.sig

New:

  signon-kwallet-extension-22.08.2.tar.xz
  signon-kwallet-extension-22.08.2.tar.xz.sig



Other differences:
--
++ signon-kwallet-extension.spec ++
--- /var/tmp/diff_new_pack.Ujt6kL/_old  2022-10-15 16:36:02.917950286 +0200
+++ /var/tmp/diff_new_pack.Ujt6kL/_new  2022-10-15 16:36:02.929950315 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   signon-kwallet-extension
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KWallet integration for signon framework
 License:GPL-2.0-or-later


++ signon-kwallet-extension-22.08.1.tar.xz -> 
signon-kwallet-extension-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/signon-kwallet-extension-22.08.1/CMakeLists.txt 
new/signon-kwallet-extension-22.08.2/CMakeLists.txt
--- old/signon-kwallet-extension-22.08.1/CMakeLists.txt 2022-09-02 
23:48:42.0 +0200
+++ new/signon-kwallet-extension-22.08.2/CMakeLists.txt 2022-10-10 
21:38:56.0 +0200
@@ -2,7 +2,7 @@
 
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 set(kwalletsignon_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(kwalletsignon5 VERSION ${kwalletsignon_VERSION})


commit pimcommon for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package pimcommon for openSUSE:Factory 
checked in at 2022-10-15 16:34:47

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


Package is "pimcommon"

Sat Oct 15 16:34:47 2022 rev:82 rq:1010871 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/pimcommon/pimcommon.changes  2022-09-09 
18:24:50.228496506 +0200
+++ /work/SRC/openSUSE:Factory/.pimcommon.new.2275/pimcommon.changes
2022-10-15 16:35:57.437937117 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:53 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  pimcommon-22.08.1.tar.xz
  pimcommon-22.08.1.tar.xz.sig

New:

  pimcommon-22.08.2.tar.xz
  pimcommon-22.08.2.tar.xz.sig



Other differences:
--
++ pimcommon.spec ++
--- /var/tmp/diff_new_pack.MRq8St/_old  2022-10-15 16:36:00.765945114 +0200
+++ /var/tmp/diff_new_pack.MRq8St/_new  2022-10-15 16:36:00.773945134 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   pimcommon
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Base package of KDE PIM PimCommon library
 License:GPL-2.0-only AND LGPL-2.1-or-later


++ pimcommon-22.08.1.tar.xz -> pimcommon-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pimcommon-22.08.1/CMakeLists.txt 
new/pimcommon-22.08.2/CMakeLists.txt
--- old/pimcommon-22.08.1/CMakeLists.txt2022-08-20 17:03:56.0 
+0200
+++ new/pimcommon-22.08.2/CMakeLists.txt2022-09-11 10:07:07.0 
+0200
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: CC0-1.0
 # SPDX-FileCopyrightText: none
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(pimcommon VERSION ${PIM_VERSION})
 
@@ -37,14 +37,14 @@
 add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
 
 set(PIMCOMMON_LIB_VERSION ${PIM_VERSION})
-set(LIBKDEPIM_LIB_VERSION "5.21.1")
+set(LIBKDEPIM_LIB_VERSION "5.21.2")
 set(QT_REQUIRED_VERSION "5.15.2")
-set(KIMAP_LIB_VERSION "5.21.1")
-set(KPIMTEXTEDIT_LIB_VERSION "5.21.1")
-set(KLDAP_LIB_VERSION "5.21.1")
+set(KIMAP_LIB_VERSION "5.21.2")
+set(KPIMTEXTEDIT_LIB_VERSION "5.21.2")
+set(KLDAP_LIB_VERSION "5.21.2")
 
-set(AKONADICONTACT_LIB_VERSION "5.21.1")
-set(AKONADI_VERSION "5.21.1")
+set(AKONADICONTACT_LIB_VERSION "5.21.2")
+set(AKONADI_VERSION "5.21.2")
 
 find_package(Qt${QT_MAJOR_VERSION} ${QT_REQUIRED_VERSION} CONFIG REQUIRED 
Widgets DBus Network Test Xml)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pimcommon-22.08.1/po/ca@valencia/libpimcommon.po 
new/pimcommon-22.08.2/po/ca@valencia/libpimcommon.po
--- old/pimcommon-22.08.1/po/ca@valencia/libpimcommon.po2022-09-06 
02:16:47.0 +0200
+++ new/pimcommon-22.08.2/po/ca@valencia/libpimcommon.po2022-10-11 
07:04:49.0 +0200
@@ -53,7 +53,7 @@
 #: pimcommon/autocorrection/ui/autocorrectionwidget.ui:575
 #, kde-format
 msgid ""
-msgstr ""
+msgstr "Afi"
 
 #: pimcommon/autocorrection/autocorrectionwidget.cpp:549
 #, kde-format
@@ -377,7 +377,7 @@
 #: pimcommon/autocorrection/ui/autocorrectionwidget.ui:502
 #, kde-format
 msgid "Re"
-msgstr "??x"
+msgstr "Su??x"
 
 #. i18n: ectx: property (text), widget (PimCommon::AutoCorrectionTreeWidget, 
treeWidget)
 #: pimcommon/autocorrection/ui/autocorrectionwidget.ui:537
@@ -1062,7 +1062,7 @@
 #: pimcommon/widgets/renamefiledialog.cpp:124
 #, kde-format
 msgid ""
-msgstr " el nom"
+msgstr "Ca el nom"
 
 #: pimcommon/widgets/renamefiledialog.cpp:134
 #, kde-format
@@ -1099,7 +1099,7 @@
 #: pimcommon/widgets/simplestringlisteditor.cpp:94
 #, kde-format
 msgid ""
-msgstr ""
+msgstr "Afi"
 
 #: pimcommon/widgets/simplestringlisteditor.cpp:105
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pimcommon-22.08.1/po/ko/libpimcommon.po 
new/pimcommon-22.08.2/po/ko/libpimcommon.po
--- old/pimcommon-22.08.1/po/ko/libpimcommon.po 2022-09-06 02:16:47.0 
+0200
+++ new/pimcommon-22.08.2/po/ko/libpimcommon.po 2022-10-11 07:04:49.0 
+0200
@@ -9,7 +9,7 @@
 "POT-Creation-Date: 2022-05-20 00:46+\n"
 "PO-Revision-Date: 2022-07-13 12:12+0200\n"
 "Last-Translator: Shinjo Park \n"
-"Language-Team: Korean \n"

commit okular for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package okular for openSUSE:Factory checked 
in at 2022-10-15 16:34:46

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


Package is "okular"

Sat Oct 15 16:34:46 2022 rev:153 rq:1010864 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/okular/okular.changes2022-09-09 
18:24:48.980492828 +0200
+++ /work/SRC/openSUSE:Factory/.okular.new.2275/okular.changes  2022-10-15 
16:35:54.169929264 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:50 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  okular-22.08.1.tar.xz
  okular-22.08.1.tar.xz.sig

New:

  okular-22.08.2.tar.xz
  okular-22.08.2.tar.xz.sig



Other differences:
--
++ okular.spec ++
--- /var/tmp/diff_new_pack.iwqrtC/_old  2022-10-15 16:35:57.033936146 +0200
+++ /var/tmp/diff_new_pack.iwqrtC/_new  2022-10-15 16:35:57.037936156 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   okular
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Document Viewer
 # GPL-3.0+ license used by a runtime plugin


++ okular-22.08.1.tar.xz -> okular-22.08.2.tar.xz ++
/work/SRC/openSUSE:Factory/okular/okular-22.08.1.tar.xz 
/work/SRC/openSUSE:Factory/.okular.new.2275/okular-22.08.2.tar.xz differ: char 
27, line 1


commit mobipocket for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package mobipocket for openSUSE:Factory 
checked in at 2022-10-15 16:34:46

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


Package is "mobipocket"

Sat Oct 15 16:34:46 2022 rev:145 rq:1010863 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/mobipocket/mobipocket.changes2022-09-09 
18:24:46.292484909 +0200
+++ /work/SRC/openSUSE:Factory/.mobipocket.new.2275/mobipocket.changes  
2022-10-15 16:35:52.469925179 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:22 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kdegraphics-mobipocket-22.08.1.tar.xz
  kdegraphics-mobipocket-22.08.1.tar.xz.sig

New:

  kdegraphics-mobipocket-22.08.2.tar.xz
  kdegraphics-mobipocket-22.08.2.tar.xz.sig



Other differences:
--
++ mobipocket.spec ++
--- /var/tmp/diff_new_pack.dUthbO/_old  2022-10-15 16:35:53.605927909 +0200
+++ /var/tmp/diff_new_pack.dUthbO/_new  2022-10-15 16:35:53.609927918 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   mobipocket
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:E-book plugin and library
 License:GPL-2.0-or-later


++ kdegraphics-mobipocket-22.08.1.tar.xz -> 
kdegraphics-mobipocket-22.08.2.tar.xz ++


commit mailimporter for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package mailimporter for openSUSE:Factory 
checked in at 2022-10-15 16:34:43

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


Package is "mailimporter"

Sat Oct 15 16:34:43 2022 rev:80 rq:1010857 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/mailimporter/mailimporter.changes
2022-09-09 18:24:35.600453406 +0200
+++ /work/SRC/openSUSE:Factory/.mailimporter.new.2275/mailimporter.changes  
2022-10-15 16:35:49.777918710 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:47 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  mailimporter-22.08.1.tar.xz
  mailimporter-22.08.1.tar.xz.sig

New:

  mailimporter-22.08.2.tar.xz
  mailimporter-22.08.2.tar.xz.sig



Other differences:
--
++ mailimporter.spec ++
--- /var/tmp/diff_new_pack.Dr7FyU/_old  2022-10-15 16:35:50.325920027 +0200
+++ /var/tmp/diff_new_pack.Dr7FyU/_new  2022-10-15 16:35:50.329920036 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   mailimporter
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Mail import functionality for KDE PIM applications
 License:GPL-2.0-or-later


++ mailimporter-22.08.1.tar.xz -> mailimporter-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mailimporter-22.08.1/CMakeLists.txt 
new/mailimporter-22.08.2/CMakeLists.txt
--- old/mailimporter-22.08.1/CMakeLists.txt 2022-08-20 17:03:25.0 
+0200
+++ new/mailimporter-22.08.2/CMakeLists.txt 2022-09-11 10:06:37.0 
+0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(MailImporter VERSION ${PIM_VERSION})
 
@@ -35,11 +35,11 @@
 add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
 
 
-set(AKONADIMIME_LIB_VERSION "5.21.1")
+set(AKONADIMIME_LIB_VERSION "5.21.2")
 set(QT_REQUIRED_VERSION "5.15.2")
-set(KMIME_LIB_VERSION "5.21.1")
-set(AKONADI_VERSION "5.21.1")
-set(PIMCOMMON_LIB_VERSION "5.21.1")
+set(KMIME_LIB_VERSION "5.21.2")
+set(AKONADI_VERSION "5.21.2")
+set(PIMCOMMON_LIB_VERSION "5.21.2")
 
 find_package(Qt${QT_MAJOR_VERSION} ${QT_REQUIRED_VERSION} CONFIG REQUIRED 
Widgets Test Xml)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mailimporter-22.08.1/po/ar/libmailimporter.po 
new/mailimporter-22.08.2/po/ar/libmailimporter.po
--- old/mailimporter-22.08.1/po/ar/libmailimporter.po   2022-09-06 
02:16:25.0 +0200
+++ new/mailimporter-22.08.2/po/ar/libmailimporter.po   2022-10-11 
07:04:27.0 +0200
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 &&"
-" n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 "X-Generator: Lokalize 21.12.3\n"
 "X-POOTLE-MTIME: 1381756473.0\n"
 
@@ -32,8 +32,7 @@
 "Balsa mailfolder (usually ~/mail/).Since it is possible to recreate "
 "the folder structure, the folders will be stored under: \"Balsa-Import\"."
 msgstr ""
-" ?? x ?? ?? 
?? ??   ??"
-" s "
+" ?? x ?? ?? 
?? ??   ?? s "
 "?? ?? ??  ??   
?? ??"
 
 #: mailimporter/filters/filterbalsa.cpp:39
@@ -213,8 +212,7 @@
 "recreate the folder structure, the folders will be stored under: \"Evolution-"
 "Import\"."
 msgstr ""
-" ?? x ?? ?? 
?? ??   ??"
-" s "
+" ?? x ?? ?? 
?? ??   ?? s "
 "?? ?? ??  ??   
?? ??"
 
 #: mailimporter/filters/filterevolution.cpp:35
@@ -264,8 +262,7 @@
 "be stored under: \"Evolution-Import\"."
 msgstr ""
 " ?? x 

commit libkomparediff2 for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libkomparediff2 for openSUSE:Factory 
checked in at 2022-10-15 16:34:39

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


Package is "libkomparediff2"

Sat Oct 15 16:34:39 2022 rev:110 rq:1010850 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/libkomparediff2/libkomparediff2.changes  
2022-09-09 18:24:31.636441726 +0200
+++ 
/work/SRC/openSUSE:Factory/.libkomparediff2.new.2275/libkomparediff2.changes
2022-10-15 16:35:44.677906454 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:43 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  libkomparediff2-22.08.1.tar.xz
  libkomparediff2-22.08.1.tar.xz.sig

New:

  libkomparediff2-22.08.2.tar.xz
  libkomparediff2-22.08.2.tar.xz.sig



Other differences:
--
++ libkomparediff2.spec ++
--- /var/tmp/diff_new_pack.sqdcNq/_old  2022-10-15 16:35:45.209907732 +0200
+++ /var/tmp/diff_new_pack.sqdcNq/_new  2022-10-15 16:35:45.209907732 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   libkomparediff2
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:A library to compare files and strings
 License:(GPL-2.0-or-later AND LGPL-2.0-or-later) AND BSD-2-Clause


++ libkomparediff2-22.08.1.tar.xz -> libkomparediff2-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkomparediff2-22.08.1/po/zh_CN/libkomparediff2.po 
new/libkomparediff2-22.08.2/po/zh_CN/libkomparediff2.po
--- old/libkomparediff2-22.08.1/po/zh_CN/libkomparediff2.po 2022-09-06 
02:11:29.0 +0200
+++ new/libkomparediff2-22.08.2/po/zh_CN/libkomparediff2.po 2022-10-11 
06:58:11.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-03-14 00:46+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit mailcommon for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package mailcommon for openSUSE:Factory 
checked in at 2022-10-15 16:34:42

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


Package is "mailcommon"

Sat Oct 15 16:34:42 2022 rev:80 rq:1010856 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/mailcommon/mailcommon.changes2022-09-09 
18:24:34.372449787 +0200
+++ /work/SRC/openSUSE:Factory/.mailcommon.new.2275/mailcommon.changes  
2022-10-15 16:35:47.861914105 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:46 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  mailcommon-22.08.1.tar.xz
  mailcommon-22.08.1.tar.xz.sig

New:

  mailcommon-22.08.2.tar.xz
  mailcommon-22.08.2.tar.xz.sig



Other differences:
--
++ mailcommon.spec ++
--- /var/tmp/diff_new_pack.m8tFu2/_old  2022-10-15 16:35:49.205917335 +0200
+++ /var/tmp/diff_new_pack.m8tFu2/_new  2022-10-15 16:35:49.213917354 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   mailcommon
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Base KDE PIM library for mail-handling applications
 License:GPL-2.0-only AND LGPL-2.1-or-later


++ mailcommon-22.08.1.tar.xz -> mailcommon-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mailcommon-22.08.1/CMakeLists.txt 
new/mailcommon-22.08.2/CMakeLists.txt
--- old/mailcommon-22.08.1/CMakeLists.txt   2022-08-20 17:03:15.0 
+0200
+++ new/mailcommon-22.08.2/CMakeLists.txt   2022-10-05 20:59:20.0 
+0200
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: CC0-1.0
 # SPDX-FileCopyrightText: none
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(mailcommon VERSION ${PIM_VERSION})
 
@@ -37,20 +37,24 @@
 set(QT_REQUIRED_VERSION "5.15.2")
 
 set(MAILCOMMON_LIB_VERSION ${PIM_VERSION})
-set(AKONADIMIME_LIB_VERSION "5.21.1")
-set(AKONADICONTACT_LIB_VERSION "5.21.1")
-set(MESSAGELIB_LIB_VERSION "5.21.1")
-set(KMIME_LIB_VERSION "5.21.1")
-set(KMAILTRANSPORT_LIB_VERSION "5.21.1")
-set(MAILIMPORTER_LIB_VERSION "5.21.1")
-set(LIBKDEPIM_LIB_VERSION "5.21.1")
-set(PIMCOMMON_LIB_VERSION "5.21.1")
+set(AKONADIMIME_LIB_VERSION "5.21.2")
+set(AKONADICONTACT_LIB_VERSION "5.21.2")
+set(MESSAGELIB_LIB_VERSION "5.21.2")
+set(KMIME_LIB_VERSION "5.21.2")
+set(KMAILTRANSPORT_LIB_VERSION "5.21.2")
+set(MAILIMPORTER_LIB_VERSION "5.21.2")
+set(LIBKDEPIM_LIB_VERSION "5.21.2")
+set(PIMCOMMON_LIB_VERSION "5.21.2")
 
 set(PHONON_LIB_VERSION "4.11.1")
-set(AKONADI_VERSION "5.21.1")
+set(AKONADI_VERSION "5.21.2")
 
 find_package(Qt${QT_MAJOR_VERSION} ${QT_REQUIRED_VERSION} CONFIG REQUIRED 
Widgets DBus Test Xml)
 
+set(GPGMEPP_LIB_VERSION "1.16.0")
+find_package(Gpgmepp ${GPGMEPP_LIB_VERSION} CONFIG REQUIRED)
+find_package(QGpgme ${GPGMEPP_LIB_VERSION} CONFIG REQUIRED)
+
 find_package(KF5Archive ${KF5_MIN_VERSION} CONFIG REQUIRED)
 find_package(KF5Completion ${KF5_MIN_VERSION} CONFIG REQUIRED)
 find_package(KF5Config ${KF5_MIN_VERSION} CONFIG REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mailcommon-22.08.1/po/ar/libmailcommon.po 
new/mailcommon-22.08.2/po/ar/libmailcommon.po
--- old/mailcommon-22.08.1/po/ar/libmailcommon.po   2022-09-06 
02:16:21.0 +0200
+++ new/mailcommon-22.08.2/po/ar/libmailcommon.po   2022-10-11 
07:04:22.0 +0200
@@ -8,15 +8,15 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-07-04 00:46+\n"
-"PO-Revision-Date: 2022-09-05 21:56+0400\n"
+"PO-Revision-Date: 2022-09-25 18:05+0400\n"
 "Last-Translator: Zayed Al-Saidi \n"
 "Language-Team: ar\n"
 "Language: ar\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 &&"
-" n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 "X-Generator: Lokalize 21.12.3\n"
 
 #: collectionpage/collectionexpirypage.cpp:27
@@ -50,22 +50,19 @@
 msgstr ""
 
 #: collectionpage/collectionexpirywidget.cpp:68
-#, fuzzy, kde-format
-#| msgid "Expire read messages after"
+#, 

commit messagelib for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package messagelib for openSUSE:Factory 
checked in at 2022-10-15 16:34:44

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


Package is "messagelib"

Sat Oct 15 16:34:44 2022 rev:90 rq:1010861 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/messagelib/messagelib.changes2022-09-09 
18:24:38.468461855 +0200
+++ /work/SRC/openSUSE:Factory/.messagelib.new.2275/messagelib.changes  
2022-10-15 16:35:50.829921238 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:49 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  messagelib-22.08.1.tar.xz
  messagelib-22.08.1.tar.xz.sig

New:

  messagelib-22.08.2.tar.xz
  messagelib-22.08.2.tar.xz.sig



Other differences:
--
++ messagelib.spec ++
--- /var/tmp/diff_new_pack.LaSTud/_old  2022-10-15 16:35:52.061924198 +0200
+++ /var/tmp/diff_new_pack.LaSTud/_new  2022-10-15 16:35:52.065924208 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   messagelib
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE PIM library for e-mail message parsing and display
 License:GPL-2.0-only AND GPL-3.0-only AND LGPL-2.1-or-later


++ messagelib-22.08.1.tar.xz -> messagelib-22.08.2.tar.xz ++
/work/SRC/openSUSE:Factory/messagelib/messagelib-22.08.1.tar.xz 
/work/SRC/openSUSE:Factory/.messagelib.new.2275/messagelib-22.08.2.tar.xz 
differ: char 26, line 1


commit libksieve for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libksieve for openSUSE:Factory 
checked in at 2022-10-15 16:34:40

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


Package is "libksieve"

Sat Oct 15 16:34:40 2022 rev:80 rq:1010852 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/libksieve/libksieve.changes  2022-09-09 
18:24:33.368446829 +0200
+++ /work/SRC/openSUSE:Factory/.libksieve.new.2275/libksieve.changes
2022-10-15 16:35:46.477910779 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:44 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  libksieve-22.08.1.tar.xz
  libksieve-22.08.1.tar.xz.sig

New:

  libksieve-22.08.2.tar.xz
  libksieve-22.08.2.tar.xz.sig



Other differences:
--
++ libksieve.spec ++
--- /var/tmp/diff_new_pack.kmzrAO/_old  2022-10-15 16:35:47.293912741 +0200
+++ /var/tmp/diff_new_pack.kmzrAO/_new  2022-10-15 16:35:47.293912741 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   libksieve
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Sieve and Managesieve support library for KDE PIM applications
 License:GPL-2.0-only AND LGPL-2.1-or-later


++ libksieve-22.08.1.tar.xz -> libksieve-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksieve-22.08.1/CMakeLists.txt 
new/libksieve-22.08.2/CMakeLists.txt
--- old/libksieve-22.08.1/CMakeLists.txt2022-08-20 17:03:06.0 
+0200
+++ new/libksieve-22.08.2/CMakeLists.txt2022-09-11 10:06:16.0 
+0200
@@ -1,7 +1,7 @@
 # SPDX-FileCopyrightText: 2011-2022 Laurent Montel 
 # SPDX-License-Identifier: BSD-3-Clause
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(libksieve VERSION ${PIM_VERSION})
 
@@ -35,13 +35,13 @@
 
 set(LIBKSIEVE_LIB_VERSION ${PIM_VERSION})
 set(QT_REQUIRED_VERSION "5.15.2")
-set(KMIME_LIB_VERSION "5.21.1")
-set(IDENTITYMANAGEMENT_LIB_VERSION "5.21.1")
-set(KMAILTRANSPORT_LIB_VERSION "5.21.1")
-set(KPIMTEXTEDIT_LIB_VERSION "5.21.1")
-set(LIBKDEPIM_LIB_VERSION "5.21.1")
-set(PIMCOMMON_LIB_VERSION "5.21.1")
-set(KIMAP_LIB_VERSION "5.21.1")
+set(KMIME_LIB_VERSION "5.21.2")
+set(IDENTITYMANAGEMENT_LIB_VERSION "5.21.2")
+set(KMAILTRANSPORT_LIB_VERSION "5.21.2")
+set(KPIMTEXTEDIT_LIB_VERSION "5.21.2")
+set(LIBKDEPIM_LIB_VERSION "5.21.2")
+set(PIMCOMMON_LIB_VERSION "5.21.2")
+set(KIMAP_LIB_VERSION "5.21.2")
 
 option(USE_UNITY_CMAKE_SUPPORT "Use UNITY cmake support (speedup compile 
time)" OFF)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksieve-22.08.1/po/ca@valencia/libksieve.po 
new/libksieve-22.08.2/po/ca@valencia/libksieve.po
--- old/libksieve-22.08.1/po/ca@valencia/libksieve.po   2022-09-06 
02:16:18.0 +0200
+++ new/libksieve-22.08.2/po/ca@valencia/libksieve.po   2022-10-11 
07:04:18.0 +0200
@@ -637,7 +637,7 @@
 "the text supplied in the command."
 msgstr ""
 "L'ordre ??substitu??x?? es definix per a permetre que una part MIME siga "
-"substitu??da pel text subministrat a l'ordre."
+"substitu??da pel text subministrat en l'ordre."
 
 #: ksieveui/autocreatescripts/sieveactions/sieveactionreturn.cpp:13
 #, kde-format
@@ -995,8 +995,8 @@
 msgstr ""
 "La prova ??adre??a?? coincidix amb les adreces d'Internet en les cap??aleres "
 "estructurades que contenen les adreces. Retorna cert si qualsevol cap??alera "
-"cont?? una clau a la part especificada de l'adre??a, modificada pel 
comparador "
-"i la paraula clau coincident."
+"cont?? una clau en la part especificada de l'adre??a, modificada pel "
+"comparador i la paraula clau coincident."
 
 #: ksieveui/autocreatescripts/sieveconditions/sieveconditionbody.cpp:20
 #, kde-format
@@ -1103,7 +1103,7 @@
 "argument exist within the message.  All of the headers must exist or the "
 "test is false."
 msgstr ""
-"La prova ??existix?? retornar?? cert si les cap??aleres llistades a 
l'argument "
+"La prova ??existix?? retornar?? cert si les cap??aleres llistades en 
l'argument "
 "noms de cap??alera existixen dins del missatge. Totes les cap??aleres hauran "
 "d'existir o la prova retornar?? fals."
 
@@ -1197,7 +1197,7 @@
 "context the Sieve script runs to \"deliver\" messages into it."
 msgstr ""
 "La prova ??b??stia de correu existix?? retornar?? cert 

commit libkleo for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libkleo for openSUSE:Factory checked 
in at 2022-10-15 16:34:38

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


Package is "libkleo"

Sat Oct 15 16:34:38 2022 rev:82 rq:1010848 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/libkleo/libkleo.changes  2022-09-09 
18:24:30.828439345 +0200
+++ /work/SRC/openSUSE:Factory/.libkleo.new.2275/libkleo.changes
2022-10-15 16:35:42.705901715 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:41 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  libkleo-22.08.1.tar.xz
  libkleo-22.08.1.tar.xz.sig

New:

  libkleo-22.08.2.tar.xz
  libkleo-22.08.2.tar.xz.sig



Other differences:
--
++ libkleo.spec ++
--- /var/tmp/diff_new_pack.ZLm7OV/_old  2022-10-15 16:35:43.585903830 +0200
+++ /var/tmp/diff_new_pack.ZLm7OV/_new  2022-10-15 16:35:43.597903859 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   libkleo
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Base package of Kleopatra, a key manager by KDE
 License:GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later


++ libkleo-22.08.1.tar.xz -> libkleo-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkleo-22.08.1/CMakeLists.txt 
new/libkleo-22.08.2/CMakeLists.txt
--- old/libkleo-22.08.1/CMakeLists.txt  2022-08-23 20:25:43.0 +0200
+++ new/libkleo-22.08.2/CMakeLists.txt  2022-09-11 10:06:07.0 +0200
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: CC0-1.0
 # SPDX-FileCopyrightText: none
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(libkleo VERSION ${PIM_VERSION})
 
@@ -37,7 +37,7 @@
 
 set(LIBKLEO_LIB_VERSION ${PIM_VERSION})
 set(QT_REQUIRED_VERSION "5.15.2")
-set(KDEPIMTEXTEDIT_VERSION "5.21.1")
+set(KDEPIMTEXTEDIT_VERSION "5.21.2")
 set(GPGME_REQUIRED_VERSION "1.15.0")
 
 find_package(Qt${QT_MAJOR_VERSION} ${QT_REQUIRED_VERSION} CONFIG REQUIRED 
Widgets)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkleo-22.08.1/po/ca/libkleopatra.po 
new/libkleo-22.08.2/po/ca/libkleopatra.po
--- old/libkleo-22.08.1/po/ca/libkleopatra.po   2022-09-06 02:16:14.0 
+0200
+++ new/libkleo-22.08.2/po/ca/libkleopatra.po   2022-10-11 07:04:13.0 
+0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: libkleo\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-07-13 02:23+\n"
-"PO-Revision-Date: 2022-06-25 13:37+0200\n"
+"PO-Revision-Date: 2022-09-07 18:44+0200\n"
 "Last-Translator: Josep M. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -1327,7 +1327,7 @@
 #: ui/messagebox.cpp:82 ui/messagebox.cpp:88
 #, kde-format
 msgid "GnuPG Audit Log Viewer"
-msgstr "Visor del registre d'auditoria del GnuPG"
+msgstr "Visualitzador del registre d'auditoria del GnuPG"
 
 #: ui/messagebox.cpp:94
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkleo-22.08.1/po/ca@valencia/libkleopatra.po 
new/libkleo-22.08.2/po/ca@valencia/libkleopatra.po
--- old/libkleo-22.08.1/po/ca@valencia/libkleopatra.po  2022-09-06 
02:16:14.0 +0200
+++ new/libkleo-22.08.2/po/ca@valencia/libkleopatra.po  2022-10-11 
07:04:13.0 +0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: libkleo\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-07-13 02:23+\n"
-"PO-Revision-Date: 2022-06-25 13:37+0200\n"
+"PO-Revision-Date: 2022-09-07 18:44+0200\n"
 "Last-Translator: Josep M. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca@valencia\n"
@@ -35,7 +35,7 @@
 #: kleo/checksumdefinition.cpp:156
 #, kde-format
 msgid "Quoting error in '%1' entry"
-msgstr "S'ha produ??t un error de citaci?? a l'entrada ??%1??"
+msgstr "S'ha produ??t un error de citaci?? en l'entrada ??%1??"
 
 #: kleo/checksumdefinition.cpp:159
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkleo-22.08.1/po/cs/libkleopatra.po 
new/libkleo-22.08.2/po/cs/libkleopatra.po
--- old/libkleo-22.08.1/po/cs/libkleopatra.po   2022-09-06 02:16:14.0 
+0200
+++ new/libkleo-22.08.2/po/cs/libkleopatra.po   2022-10-11 07:04:13.0 
+0200
@@ -9,7 +9,7 @@
 

commit libksane for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libksane for openSUSE:Factory 
checked in at 2022-10-15 16:34:40

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


Package is "libksane"

Sat Oct 15 16:34:40 2022 rev:148 rq:1010851 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/libksane/libksane.changes2022-09-09 
18:24:32.392443953 +0200
+++ /work/SRC/openSUSE:Factory/.libksane.new.2275/libksane.changes  
2022-10-15 16:35:45.513908463 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:43 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  libksane-22.08.1.tar.xz
  libksane-22.08.1.tar.xz.sig

New:

  libksane-22.08.2.tar.xz
  libksane-22.08.2.tar.xz.sig



Other differences:
--
++ libksane.spec ++
--- /var/tmp/diff_new_pack.KkgTGO/_old  2022-10-15 16:35:46.089909847 +0200
+++ /var/tmp/diff_new_pack.KkgTGO/_new  2022-10-15 16:35:46.093909857 +0200
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   libksane
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE scanning library
 License:LGPL-2.1-only OR LGPL-3.0-only


++ libksane-22.08.1.tar.xz -> libksane-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksane-22.08.1/CMakeLists.txt 
new/libksane-22.08.2/CMakeLists.txt
--- old/libksane-22.08.1/CMakeLists.txt 2022-09-02 23:47:17.0 +0200
+++ new/libksane-22.08.2/CMakeLists.txt 2022-10-10 21:37:10.0 +0200
@@ -3,7 +3,7 @@
 # KDE Applications version, managed by release script.
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 set(RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(KSane VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksane-22.08.1/po/id/libksane.po 
new/libksane-22.08.2/po/id/libksane.po
--- old/libksane-22.08.1/po/id/libksane.po  2022-09-06 02:05:31.0 
+0200
+++ new/libksane-22.08.2/po/id/libksane.po  2022-10-11 06:50:48.0 
+0200
@@ -7,9 +7,9 @@
 "Project-Id-Version: libksane\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-06-13 00:54+\n"
-"PO-Revision-Date: 2022-08-26 23:44+0700\n"
+"PO-Revision-Date: 2022-09-27 15:39+0700\n"
 "Last-Translator: Wantoy??k \n"
-"Language-Team: https://t.me/Localizations_KDE_Indonesia\n;
+"Language-Team: https://matrix.to/#/#i18n_kde_id:matrix.org\n;
 "Language: id\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -65,7 +65,7 @@
 #: i18n-hplip.cpp:11
 #, kde-format
 msgid "Advanced"
-msgstr "Tingkat lanjut"
+msgstr "Tingkat Lanjut"
 
 #: i18n-hplip.cpp:12
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksane-22.08.1/po/ja/libksane.po 
new/libksane-22.08.2/po/ja/libksane.po
--- old/libksane-22.08.1/po/ja/libksane.po  2022-09-06 02:05:31.0 
+0200
+++ new/libksane-22.08.2/po/ja/libksane.po  2022-10-11 06:50:48.0 
+0200
@@ -565,6 +565,3 @@
 msgid_plural " s"
 msgstr[0] ""
 msgstr[1] ""
-
-#~ msgid "Invert colors"
-#~ msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksane-22.08.1/po/zh_CN/libksane.po 
new/libksane-22.08.2/po/zh_CN/libksane.po
--- old/libksane-22.08.1/po/zh_CN/libksane.po   2022-09-06 02:05:31.0 
+0200
+++ new/libksane-22.08.2/po/zh_CN/libksane.po   2022-10-11 06:50:48.0 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-06-13 00:54+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit libkexiv2 for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libkexiv2 for openSUSE:Factory 
checked in at 2022-10-15 16:34:35

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


Package is "libkexiv2"

Sat Oct 15 16:34:35 2022 rev:148 rq:1010845 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/libkexiv2/libkexiv2.changes  2022-09-09 
18:24:28.228431684 +0200
+++ /work/SRC/openSUSE:Factory/.libkexiv2.new.2275/libkexiv2.changes
2022-10-15 16:35:37.061888152 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:40 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  libkexiv2-22.08.1.tar.xz
  libkexiv2-22.08.1.tar.xz.sig

New:

  libkexiv2-22.08.2.tar.xz
  libkexiv2-22.08.2.tar.xz.sig



Other differences:
--
++ libkexiv2.spec ++
--- /var/tmp/diff_new_pack.FzW31W/_old  2022-10-15 16:35:37.941890267 +0200
+++ /var/tmp/diff_new_pack.FzW31W/_new  2022-10-15 16:35:37.945890276 +0200
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   libkexiv2
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Library to manipulate picture meta data
 License:GPL-2.0-or-later


++ libkexiv2-22.08.1.tar.xz -> libkexiv2-22.08.2.tar.xz ++


commit libkipi for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libkipi for openSUSE:Factory checked 
in at 2022-10-15 16:34:37

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


Package is "libkipi"

Sat Oct 15 16:34:37 2022 rev:147 rq:1010847 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/libkipi/libkipi.changes  2022-09-09 
18:24:30.148437341 +0200
+++ /work/SRC/openSUSE:Factory/.libkipi.new.2275/libkipi.changes
2022-10-15 16:35:41.745899408 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:41 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  libkipi-22.08.1.tar.xz
  libkipi-22.08.1.tar.xz.sig

New:

  libkipi-22.08.2.tar.xz
  libkipi-22.08.2.tar.xz.sig



Other differences:
--
++ libkipi.spec ++
--- /var/tmp/diff_new_pack.98uIPA/_old  2022-10-15 16:35:42.429901052 +0200
+++ /var/tmp/diff_new_pack.98uIPA/_new  2022-10-15 16:35:42.433901061 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   libkipi
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE Image Plugin Interface
 License:BSD-3-Clause AND GPL-2.0-or-later AND LGPL-2.1-or-later AND MIT


++ libkipi-22.08.1.tar.xz -> libkipi-22.08.2.tar.xz ++


commit libkgapi for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libkgapi for openSUSE:Factory 
checked in at 2022-10-15 16:34:36

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


Package is "libkgapi"

Sat Oct 15 16:34:36 2022 rev:90 rq:1010846 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/libkgapi/libkgapi.changes2022-09-09 
18:24:29.248434689 +0200
+++ /work/SRC/openSUSE:Factory/.libkgapi.new.2275/libkgapi.changes  
2022-10-15 16:35:38.533891690 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:40 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  libkgapi-22.08.1.tar.xz
  libkgapi-22.08.1.tar.xz.sig

New:

  libkgapi-22.08.2.tar.xz
  libkgapi-22.08.2.tar.xz.sig



Other differences:
--
++ libkgapi.spec ++
--- /var/tmp/diff_new_pack.JZxe6Y/_old  2022-10-15 16:35:41.129897928 +0200
+++ /var/tmp/diff_new_pack.JZxe6Y/_new  2022-10-15 16:35:41.133897938 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   libkgapi
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Extension for accessing Google data
 License:GPL-2.0-or-later AND LGPL-2.1-or-later


++ libkgapi-22.08.1.tar.xz -> libkgapi-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkgapi-22.08.1/CMakeLists.txt 
new/libkgapi-22.08.2/CMakeLists.txt
--- old/libkgapi-22.08.1/CMakeLists.txt 2022-08-19 07:00:46.0 +0200
+++ new/libkgapi-22.08.2/CMakeLists.txt 2022-09-08 19:41:31.0 +0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 set(KGAPI_LIB_VERSION ${PIM_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkgapi-22.08.1/poqm/ca@valencia/libkgapi_qt.po 
new/libkgapi-22.08.2/poqm/ca@valencia/libkgapi_qt.po
--- old/libkgapi-22.08.1/poqm/ca@valencia/libkgapi_qt.po2022-09-06 
02:16:12.0 +0200
+++ new/libkgapi-22.08.2/poqm/ca@valencia/libkgapi_qt.po2022-10-11 
07:04:09.0 +0200
@@ -238,7 +238,7 @@
 "\n"
 "Google replied '%1'"
 msgstr ""
-"Error intern del servidor. Torneu-ho a provar m??s tard.\n"
+"S'ha produ??t un error intern en el servidor. Torneu-ho a provar m??s tard.\n"
 "\n"
 "Google ha respost ??%1??"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkgapi-22.08.1/poqm/zh_CN/libkgapi_qt.po 
new/libkgapi-22.08.2/poqm/zh_CN/libkgapi_qt.po
--- old/libkgapi-22.08.1/poqm/zh_CN/libkgapi_qt.po  2022-09-06 
02:16:12.0 +0200
+++ new/libkgapi-22.08.2/poqm/zh_CN/libkgapi_qt.po  2022-10-11 
07:04:09.0 +0200
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"


commit libkcompactdisc for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libkcompactdisc for openSUSE:Factory 
checked in at 2022-10-15 16:34:33

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


Package is "libkcompactdisc"

Sat Oct 15 16:34:33 2022 rev:72 rq:1010840 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/libkcompactdisc/libkcompactdisc.changes  
2022-09-09 18:24:25.924424896 +0200
+++ 
/work/SRC/openSUSE:Factory/.libkcompactdisc.new.2275/libkcompactdisc.changes
2022-10-15 16:35:30.973873522 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:37 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  libkcompactdisc-22.08.1.tar.xz
  libkcompactdisc-22.08.1.tar.xz.sig

New:

  libkcompactdisc-22.08.2.tar.xz
  libkcompactdisc-22.08.2.tar.xz.sig



Other differences:
--
++ libkcompactdisc.spec ++
--- /var/tmp/diff_new_pack.NWWUpw/_old  2022-10-15 16:35:31.481874743 +0200
+++ /var/tmp/diff_new_pack.NWWUpw/_new  2022-10-15 16:35:31.489874762 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   libkcompactdisc
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:CD drive library for KDE Platform
 License:GPL-2.0-or-later


++ libkcompactdisc-22.08.1.tar.xz -> libkcompactdisc-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkcompactdisc-22.08.1/po/ca@valencia/libkcompactdisc.po 
new/libkcompactdisc-22.08.2/po/ca@valencia/libkcompactdisc.po
--- old/libkcompactdisc-22.08.1/po/ca@valencia/libkcompactdisc.po   
2022-09-06 02:07:36.0 +0200
+++ new/libkcompactdisc-22.08.2/po/ca@valencia/libkcompactdisc.po   
2022-10-11 06:53:24.0 +0200
@@ -54,7 +54,7 @@
 #: src/kcompactdisc_p.cpp:237
 #, kde-format
 msgid "Error"
-msgstr "Error"
+msgstr "S'ha produ??t un error"
 
 #: src/phonon_interface.cpp:334 src/phonon_interface.cpp:337
 #: src/wmlib_interface.cpp:237 src/wmlib_interface.cpp:240
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcompactdisc-22.08.1/po/zh_CN/libkcompactdisc.po 
new/libkcompactdisc-22.08.2/po/zh_CN/libkcompactdisc.po
--- old/libkcompactdisc-22.08.1/po/zh_CN/libkcompactdisc.po 2022-09-06 
02:07:37.0 +0200
+++ new/libkcompactdisc-22.08.2/po/zh_CN/libkcompactdisc.po 2022-10-11 
06:53:25.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-05-06 00:45+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit libkcddb for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libkcddb for openSUSE:Factory 
checked in at 2022-10-15 16:34:32

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


Package is "libkcddb"

Sat Oct 15 16:34:32 2022 rev:73 rq:1010839 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/libkcddb/libkcddb.changes2022-09-09 
18:24:25.100422468 +0200
+++ /work/SRC/openSUSE:Factory/.libkcddb.new.2275/libkcddb.changes  
2022-10-15 16:35:29.877870889 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:36 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  libkcddb-22.08.1.tar.xz
  libkcddb-22.08.1.tar.xz.sig

New:

  libkcddb-22.08.2.tar.xz
  libkcddb-22.08.2.tar.xz.sig



Other differences:
--
++ libkcddb.spec ++
--- /var/tmp/diff_new_pack.aSTNaE/_old  2022-10-15 16:35:30.521872436 +0200
+++ /var/tmp/diff_new_pack.aSTNaE/_new  2022-10-15 16:35:30.525872445 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   libkcddb
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:CDDB library for KDE Applications
 License:GPL-2.0-or-later


++ libkcddb-22.08.1.tar.xz -> libkcddb-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.08.1/po/ca@valencia/libkcddb.po 
new/libkcddb-22.08.2/po/ca@valencia/libkcddb.po
--- old/libkcddb-22.08.1/po/ca@valencia/libkcddb.po 2022-09-06 
02:07:33.0 +0200
+++ new/libkcddb-22.08.2/po/ca@valencia/libkcddb.po 2022-10-11 
06:53:20.0 +0200
@@ -254,7 +254,7 @@
 #: libkcddb/categories.cpp:29
 #, kde-format
 msgid "Miscellaneous"
-msgstr "Miscel??nea"
+msgstr "Miscel??l??nia"
 
 #: libkcddb/categories.cpp:30 libkcddb/genres.cpp:86
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.08.1/po/zh_CN/kcmcddb.po 
new/libkcddb-22.08.2/po/zh_CN/kcmcddb.po
--- old/libkcddb-22.08.1/po/zh_CN/kcmcddb.po2022-09-06 02:07:34.0 
+0200
+++ new/libkcddb-22.08.2/po/zh_CN/kcmcddb.po2022-10-11 06:53:20.0 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-12-30 02:41+0100\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.08.1/po/zh_CN/libkcddb.po 
new/libkcddb-22.08.2/po/zh_CN/libkcddb.po
--- old/libkcddb-22.08.1/po/zh_CN/libkcddb.po   2022-09-06 02:07:34.0 
+0200
+++ new/libkcddb-22.08.2/po/zh_CN/libkcddb.po   2022-10-11 06:53:20.0 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-01-01 00:43+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit libgravatar for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libgravatar for openSUSE:Factory 
checked in at 2022-10-15 16:34:31

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


Package is "libgravatar"

Sat Oct 15 16:34:31 2022 rev:80 rq:1010838 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/libgravatar/libgravatar.changes  2022-09-09 
18:24:24.276420040 +0200
+++ /work/SRC/openSUSE:Factory/.libgravatar.new.2275/libgravatar.changes
2022-10-15 16:35:25.557860507 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:35 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  libgravatar-22.08.1.tar.xz
  libgravatar-22.08.1.tar.xz.sig

New:

  libgravatar-22.08.2.tar.xz
  libgravatar-22.08.2.tar.xz.sig



Other differences:
--
++ libgravatar.spec ++
--- /var/tmp/diff_new_pack.qJfgGx/_old  2022-10-15 16:35:29.125869081 +0200
+++ /var/tmp/diff_new_pack.qJfgGx/_new  2022-10-15 16:35:29.129869091 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   libgravatar
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Library to download and display gravatars
 License:GPL-2.0-only AND LGPL-2.1-or-later


++ libgravatar-22.08.1.tar.xz -> libgravatar-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libgravatar-22.08.1/CMakeLists.txt 
new/libgravatar-22.08.2/CMakeLists.txt
--- old/libgravatar-22.08.1/CMakeLists.txt  2022-08-20 17:02:47.0 
+0200
+++ new/libgravatar-22.08.2/CMakeLists.txt  2022-09-11 10:05:58.0 
+0200
@@ -1,7 +1,7 @@
 # SPDX-FileCopyrightText: none
 # SPDX-License-Identifier: BSD-3-Clause
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(gravatar VERSION ${PIM_VERSION})
 
@@ -36,7 +36,7 @@
 
 set(QT_REQUIRED_VERSION "5.15.2")
 set(LIBGRAVATAR_LIB_VERSION ${PIM_VERSION})
-set(PIMCOMMON_LIB_VERSION "5.21.1")
+set(PIMCOMMON_LIB_VERSION "5.21.2")
 find_package(Qt${QT_MAJOR_VERSION} ${QT_REQUIRED_VERSION} CONFIG REQUIRED 
Widgets Network)
 find_package(KF5I18n ${KF5_MIN_VERSION} CONFIG REQUIRED)
 find_package(KF5Config ${KF5_MIN_VERSION} CONFIG REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libgravatar-22.08.1/po/zh_CN/libgravatar.po 
new/libgravatar-22.08.2/po/zh_CN/libgravatar.po
--- old/libgravatar-22.08.1/po/zh_CN/libgravatar.po 2022-09-06 
02:16:07.0 +0200
+++ new/libgravatar-22.08.2/po/zh_CN/libgravatar.po 2022-10-11 
07:04:02.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2021-11-24 00:29+\n"
-"PO-Revision-Date: 2022-08-20 14:21\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit libkdepim for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libkdepim for openSUSE:Factory 
checked in at 2022-10-15 16:34:35

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


Package is "libkdepim"

Sat Oct 15 16:34:35 2022 rev:81 rq:1010843 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/libkdepim/libkdepim.changes  2022-09-09 
18:24:27.476429469 +0200
+++ /work/SRC/openSUSE:Factory/.libkdepim.new.2275/libkdepim.changes
2022-10-15 16:35:35.501884403 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:38 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  libkdepim-22.08.1.tar.xz
  libkdepim-22.08.1.tar.xz.sig

New:

  libkdepim-22.08.2.tar.xz
  libkdepim-22.08.2.tar.xz.sig



Other differences:
--
++ libkdepim.spec ++
--- /var/tmp/diff_new_pack.Me6Aqt/_old  2022-10-15 16:35:36.621887095 +0200
+++ /var/tmp/diff_new_pack.Me6Aqt/_new  2022-10-15 16:35:36.625887104 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without released
 Name:   libkdepim
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Base package of kdepim
 License:GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later


++ libkdepim-22.08.1.tar.xz -> libkdepim-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkdepim-22.08.1/CMakeLists.txt 
new/libkdepim-22.08.2/CMakeLists.txt
--- old/libkdepim-22.08.1/CMakeLists.txt2022-08-19 07:00:36.0 
+0200
+++ new/libkdepim-22.08.2/CMakeLists.txt2022-09-08 19:41:22.0 
+0200
@@ -1,7 +1,7 @@
 # SPDX-FileCopyrightText: none
 # SPDX-License-Identifier: BSD-3-Clause
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(libkdepim VERSION ${PIM_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkdepim-22.08.1/po/zh_CN/libkdepim.po 
new/libkdepim-22.08.2/po/zh_CN/libkdepim.po
--- old/libkdepim-22.08.1/po/zh_CN/libkdepim.po 2022-09-06 02:16:09.0 
+0200
+++ new/libkdepim-22.08.2/po/zh_CN/libkdepim.po 2022-10-11 07:04:05.0 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-03-11 00:47+\n"
-"PO-Revision-Date: 2022-08-20 14:21\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit libkdcraw for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libkdcraw for openSUSE:Factory 
checked in at 2022-10-15 16:34:34

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


Package is "libkdcraw"

Sat Oct 15 16:34:34 2022 rev:147 rq:1010841 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/libkdcraw/libkdcraw.changes  2022-09-09 
18:24:26.728427265 +0200
+++ /work/SRC/openSUSE:Factory/.libkdcraw.new.2275/libkdcraw.changes
2022-10-15 16:35:31.813875541 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:37 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  libkdcraw-22.08.1.tar.xz
  libkdcraw-22.08.1.tar.xz.sig

New:

  libkdcraw-22.08.2.tar.xz
  libkdcraw-22.08.2.tar.xz.sig



Other differences:
--
++ libkdcraw.spec ++
--- /var/tmp/diff_new_pack.YVecLh/_old  2022-10-15 16:35:35.197883673 +0200
+++ /var/tmp/diff_new_pack.YVecLh/_new  2022-10-15 16:35:35.201883683 +0200
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   libkdcraw
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Shared library interface around dcraw
 License:LGPL-2.0-or-later AND GPL-2.0-or-later AND GPL-3.0-or-later


++ libkdcraw-22.08.1.tar.xz -> libkdcraw-22.08.2.tar.xz ++


commit kwalletmanager5 for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kwalletmanager5 for openSUSE:Factory 
checked in at 2022-10-15 16:34:30

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


Package is "kwalletmanager5"

Sat Oct 15 16:34:30 2022 rev:90 rq:1010835 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kwalletmanager5/kwalletmanager5.changes  
2022-09-09 18:24:23.352417317 +0200
+++ 
/work/SRC/openSUSE:Factory/.kwalletmanager5.new.2275/kwalletmanager5.changes
2022-10-15 16:35:23.501855566 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:33 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kwalletmanager-22.08.1.tar.xz
  kwalletmanager-22.08.1.tar.xz.sig

New:

  kwalletmanager-22.08.2.tar.xz
  kwalletmanager-22.08.2.tar.xz.sig



Other differences:
--
++ kwalletmanager5.spec ++
--- /var/tmp/diff_new_pack.x0Coiu/_old  2022-10-15 16:35:25.021859219 +0200
+++ /var/tmp/diff_new_pack.x0Coiu/_new  2022-10-15 16:35:25.029859238 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kwalletmanager5
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Wallet Management Tool
 License:GPL-2.0-or-later


++ kwalletmanager-22.08.1.tar.xz -> kwalletmanager-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwalletmanager-22.08.1/CMakeLists.txt 
new/kwalletmanager-22.08.2/CMakeLists.txt
--- old/kwalletmanager-22.08.1/CMakeLists.txt   2022-09-05 20:32:40.0 
+0200
+++ new/kwalletmanager-22.08.2/CMakeLists.txt   2022-10-10 22:02:39.0 
+0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 project(kwalletmanager5 VERSION ${RELEASE_SERVICE_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kwalletmanager-22.08.1/kwalletmanager5-kwalletd.desktop 
new/kwalletmanager-22.08.2/kwalletmanager5-kwalletd.desktop
--- old/kwalletmanager-22.08.1/kwalletmanager5-kwalletd.desktop 2022-09-05 
20:32:40.0 +0200
+++ new/kwalletmanager-22.08.2/kwalletmanager5-kwalletd.desktop 2022-10-10 
22:02:39.0 +0200
@@ -32,6 +32,7 @@
 Name[sv]=KDE:s verktyg f??r pl??nbokshantering
 Name[tr]=KDE C??zdan Y??netim Arac??
 Name[uk]=?? KDE ?? ?? 
+Name[vi]=C??ng c??? qu???n l?? V?? KDE
 Name[x-test]=xxKDE Wallet Management Toolxx
 Name[zh_CN]=KDE ?
 Comment=KDE Wallet Management Tool
@@ -74,6 +75,7 @@
 Comment[sv]=KDE:s hanteringsverktyg f??r pl??nbok
 Comment[tr]=KDE C??zdan Y??netim Arac??
 Comment[uk]=?? KDE ?? ?? 
+Comment[vi]=C??ng c??? qu???n l?? V?? KDE
 Comment[x-test]=xxKDE Wallet Management Toolxx
 Comment[zh_CN]=KDE ?
 Comment[zh_TW]=KDE ??
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kwalletmanager-22.08.1/org.kde.kwalletmanager5.appdata.xml 
new/kwalletmanager-22.08.2/org.kde.kwalletmanager5.appdata.xml
--- old/kwalletmanager-22.08.1/org.kde.kwalletmanager5.appdata.xml  
2022-09-05 20:32:40.0 +0200
+++ new/kwalletmanager-22.08.2/org.kde.kwalletmanager5.appdata.xml  
2022-10-10 22:02:39.0 +0200
@@ -39,6 +39,7 @@
   Pl??nbokshanteraren
   K C??zdan Y??neticisi
   KWalletManager
+  KWalletManager
   xxKWalletManagerxx
   KWalletManager ??
   KWalletManager
@@ -78,6 +79,7 @@
   Hanteringsverktyg f??r pl??nbok
   C??zdan Y??netim Arac??
   ?? ??  
??
+  C??ng c??? qu???n l?? v??
   xxWallet Management Toolxx
   ?
   ?
@@ -118,6 +120,7 @@
 Pl??nbokshanteraren ??r ett verktyg f??r att hantera 
l??senorden p?? systemet. Genom att anv??nda Ramverkens pl??nboksdelsystem 
l??ter det dig beh??lla egna hemligheter, men ocks?? komma ??t och hantera 
l??senord f??r alla program som ??r integrerade med pl??nboken.
 K C??zdan Y??neticisi, sisteminizdeki 

commit ktp-auth-handler for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ktp-auth-handler for 
openSUSE:Factory checked in at 2022-10-15 16:34:27

Comparing /work/SRC/openSUSE:Factory/ktp-auth-handler (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-auth-handler.new.2275 (New)


Package is "ktp-auth-handler"

Sat Oct 15 16:34:27 2022 rev:44 rq:1010823 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/ktp-auth-handler/ktp-auth-handler.changes
2022-09-09 18:24:21.148410823 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-auth-handler.new.2275/ktp-auth-handler.changes  
2022-10-15 16:35:18.449843426 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:25 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  ktp-auth-handler-22.08.1.tar.xz
  ktp-auth-handler-22.08.1.tar.xz.sig

New:

  ktp-auth-handler-22.08.2.tar.xz
  ktp-auth-handler-22.08.2.tar.xz.sig



Other differences:
--
++ ktp-auth-handler.spec ++
--- /var/tmp/diff_new_pack.oM6toN/_old  2022-10-15 16:35:19.441845810 +0200
+++ /var/tmp/diff_new_pack.oM6toN/_new  2022-10-15 16:35:19.449845829 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   ktp-auth-handler
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Telepathy auth handler
 License:LGPL-2.1-or-later


++ ktp-auth-handler-22.08.1.tar.xz -> ktp-auth-handler-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-auth-handler-22.08.1/CMakeLists.txt 
new/ktp-auth-handler-22.08.2/CMakeLists.txt
--- old/ktp-auth-handler-22.08.1/CMakeLists.txt 2022-09-02 23:48:34.0 
+0200
+++ new/ktp-auth-handler-22.08.2/CMakeLists.txt 2022-10-10 21:38:44.0 
+0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 set(KTP_AUTH_HANDLER_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(ktp-auth-handler VERSION ${KTP_AUTH_HANDLER_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-auth-handler-22.08.1/po/ca@valencia/ktp-auth-handler.po 
new/ktp-auth-handler-22.08.2/po/ca@valencia/ktp-auth-handler.po
--- old/ktp-auth-handler-22.08.1/po/ca@valencia/ktp-auth-handler.po 
2022-09-06 02:12:51.0 +0200
+++ new/ktp-auth-handler-22.08.2/po/ca@valencia/ktp-auth-handler.po 
2022-10-11 06:59:48.0 +0200
@@ -102,7 +102,7 @@
 #: tls-cert-verifier-op.cpp:159
 #, kde-format
 msgid ""
-msgstr "??la"
+msgstr "C??la"
 
 #: tls-cert-verifier-op.cpp:171
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-auth-handler-22.08.1/po/zh_CN/ktp-auth-handler.po 
new/ktp-auth-handler-22.08.2/po/zh_CN/ktp-auth-handler.po
--- old/ktp-auth-handler-22.08.1/po/zh_CN/ktp-auth-handler.po   2022-09-06 
02:12:51.0 +0200
+++ new/ktp-auth-handler-22.08.2/po/zh_CN/ktp-auth-handler.po   2022-10-11 
06:59:48.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 03:11+0200\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit ktp-accounts-kcm for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ktp-accounts-kcm for 
openSUSE:Factory checked in at 2022-10-15 16:34:26

Comparing /work/SRC/openSUSE:Factory/ktp-accounts-kcm (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-accounts-kcm.new.2275 (New)


Package is "ktp-accounts-kcm"

Sat Oct 15 16:34:26 2022 rev:43 rq:1010821 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/ktp-accounts-kcm/ktp-accounts-kcm.changes
2022-09-09 18:24:20.344408454 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-accounts-kcm.new.2275/ktp-accounts-kcm.changes  
2022-10-15 16:35:16.965839860 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:24 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  ktp-accounts-kcm-22.08.1.tar.xz
  ktp-accounts-kcm-22.08.1.tar.xz.sig

New:

  ktp-accounts-kcm-22.08.2.tar.xz
  ktp-accounts-kcm-22.08.2.tar.xz.sig



Other differences:
--
++ ktp-accounts-kcm.spec ++
--- /var/tmp/diff_new_pack.0JnsHK/_old  2022-10-15 16:35:17.801841869 +0200
+++ /var/tmp/diff_new_pack.0JnsHK/_new  2022-10-15 16:35:17.805841878 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   ktp-accounts-kcm
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Configuration module to set up Telepathy accounts
 License:LGPL-2.1-or-later


++ ktp-accounts-kcm-22.08.1.tar.xz -> ktp-accounts-kcm-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-accounts-kcm-22.08.1/CMakeLists.txt 
new/ktp-accounts-kcm-22.08.2/CMakeLists.txt
--- old/ktp-accounts-kcm-22.08.1/CMakeLists.txt 2022-09-02 23:48:32.0 
+0200
+++ new/ktp-accounts-kcm-22.08.2/CMakeLists.txt 2022-10-10 21:38:42.0 
+0200
@@ -3,7 +3,7 @@
 # KDE Gear Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 
 set(KTP_ACCOUNTS_KCM_SONUMBER "9")
 set(KTP_ACCOUNTS_KCM_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-accounts-kcm-22.08.1/po/ca@valencia/kcm_ktp_accounts.po 
new/ktp-accounts-kcm-22.08.2/po/ca@valencia/kcm_ktp_accounts.po
--- old/ktp-accounts-kcm-22.08.1/po/ca@valencia/kcm_ktp_accounts.po 
2022-09-06 02:12:45.0 +0200
+++ new/ktp-accounts-kcm-22.08.2/po/ca@valencia/kcm_ktp_accounts.po 
2022-10-11 06:59:40.0 +0200
@@ -657,4 +657,4 @@
 #: salut-message-widget.cpp:104
 #, kde-format
 msgid "You will appear as \"%1\" on your local network."
-msgstr "Apareixereu com a ??%1?? a la vostra xarxa local."
+msgstr "Apareixereu com a ??%1?? en la vostra xarxa local."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-accounts-kcm-22.08.1/po/ca@valencia/kcmtelepathyaccounts_plugin_rakia.po
 
new/ktp-accounts-kcm-22.08.2/po/ca@valencia/kcmtelepathyaccounts_plugin_rakia.po
--- 
old/ktp-accounts-kcm-22.08.1/po/ca@valencia/kcmtelepathyaccounts_plugin_rakia.po
2022-09-06 02:12:45.0 +0200
+++ 
new/ktp-accounts-kcm-22.08.2/po/ca@valencia/kcmtelepathyaccounts_plugin_rakia.po
2022-10-11 06:59:40.0 +0200
@@ -251,8 +251,8 @@
 "weight:600;\">Registre: Mant?? el registre amb peticions 
REGISTER\n"
 "STUN: Mant?? el registre amb l'STUN tal com es descriu a 
"
-"l'esborrany ??sip-outbound?? de l'IETF \n"
+"weight:600;\">STUN: Mant?? el registre amb l'STUN tal com es descriu "
+"en l'esborrany ??sip-outbound?? de l'IETF \n"
 "Inactiva: Desactiva la gesti?? de la detecci?? "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-accounts-kcm-22.08.1/po/zh_CN/kcm_ktp_accounts.po 
new/ktp-accounts-kcm-22.08.2/po/zh_CN/kcm_ktp_accounts.po
--- old/ktp-accounts-kcm-22.08.1/po/zh_CN/kcm_ktp_accounts.po   2022-09-06 
02:12:46.0 +0200
+++ new/ktp-accounts-kcm-22.08.2/po/zh_CN/kcm_ktp_accounts.po   2022-10-11 
06:59:41.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 03:11+0200\n"
-"PO-Revision-Date: 2022-08-20 14:21\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN 

commit ktp-kded-module for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ktp-kded-module for openSUSE:Factory 
checked in at 2022-10-15 16:34:29

Comparing /work/SRC/openSUSE:Factory/ktp-kded-module (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-kded-module.new.2275 (New)


Package is "ktp-kded-module"

Sat Oct 15 16:34:29 2022 rev:43 rq:1010829 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/ktp-kded-module/ktp-kded-module.changes  
2022-09-09 18:24:22.620415161 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-kded-module.new.2275/ktp-kded-module.changes
2022-10-15 16:35:21.969851885 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:29 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  ktp-kded-module-22.08.1.tar.xz
  ktp-kded-module-22.08.1.tar.xz.sig

New:

  ktp-kded-module-22.08.2.tar.xz
  ktp-kded-module-22.08.2.tar.xz.sig



Other differences:
--
++ ktp-kded-module.spec ++
--- /var/tmp/diff_new_pack.hW6MlC/_old  2022-10-15 16:35:22.913854153 +0200
+++ /var/tmp/diff_new_pack.hW6MlC/_new  2022-10-15 16:35:22.917854163 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   ktp-kded-module
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDED module that manages the telepathy interactions with the 
KDE Desktop
 License:LGPL-2.1-or-later


++ ktp-kded-module-22.08.1.tar.xz -> ktp-kded-module-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-kded-module-22.08.1/CMakeLists.txt 
new/ktp-kded-module-22.08.2/CMakeLists.txt
--- old/ktp-kded-module-22.08.1/CMakeLists.txt  2022-09-02 23:48:38.0 
+0200
+++ new/ktp-kded-module-22.08.2/CMakeLists.txt  2022-10-10 21:38:51.0 
+0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 set(KTP_KDED_MODULE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(ktp-kded-integration-module VERSION ${KTP_KDED_MODULE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-kded-module-22.08.1/po/zh_CN/kded_ktp_integration_module.po 
new/ktp-kded-module-22.08.2/po/zh_CN/kded_ktp_integration_module.po
--- old/ktp-kded-module-22.08.1/po/zh_CN/kded_ktp_integration_module.po 
2022-09-06 02:13:10.0 +0200
+++ new/ktp-kded-module-22.08.2/po/zh_CN/kded_ktp_integration_module.po 
2022-10-11 07:00:15.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 03:11+0200\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit ktp-common-internals for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ktp-common-internals for 
openSUSE:Factory checked in at 2022-10-15 16:34:28

Comparing /work/SRC/openSUSE:Factory/ktp-common-internals (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-common-internals.new.2275 (New)


Package is "ktp-common-internals"

Sat Oct 15 16:34:28 2022 rev:45 rq:1010824 version:22.08.2

Changes:

--- 
/work/SRC/openSUSE:Factory/ktp-common-internals/ktp-common-internals.changes
2022-09-09 18:24:21.860412921 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-common-internals.new.2275/ktp-common-internals.changes
  2022-10-15 16:35:19.857846810 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:26 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  ktp-common-internals-22.08.1.tar.xz
  ktp-common-internals-22.08.1.tar.xz.sig

New:

  ktp-common-internals-22.08.2.tar.xz
  ktp-common-internals-22.08.2.tar.xz.sig



Other differences:
--
++ ktp-common-internals.spec ++
--- /var/tmp/diff_new_pack.h7LTsr/_old  2022-10-15 16:35:21.597850991 +0200
+++ /var/tmp/diff_new_pack.h7LTsr/_new  2022-10-15 16:35:21.605851010 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   ktp-common-internals
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Telepathy common module
 License:LGPL-2.1-or-later


++ ktp-common-internals-22.08.1.tar.xz -> 
ktp-common-internals-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-common-internals-22.08.1/CMakeLists.txt 
new/ktp-common-internals-22.08.2/CMakeLists.txt
--- old/ktp-common-internals-22.08.1/CMakeLists.txt 2022-09-02 
23:48:35.0 +0200
+++ new/ktp-common-internals-22.08.2/CMakeLists.txt 2022-10-10 
21:38:46.0 +0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 
 # Bump for every 0.x release, or whenever BC changes
 set (KTP_SONUMBER 9) # SO 9 is for 15.08 release
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-common-internals-22.08.1/po/ca@valencia/ktp-common-internals.po 
new/ktp-common-internals-22.08.2/po/ca@valencia/ktp-common-internals.po
--- old/ktp-common-internals-22.08.1/po/ca@valencia/ktp-common-internals.po 
2022-09-06 02:12:56.0 +0200
+++ new/ktp-common-internals-22.08.2/po/ca@valencia/ktp-common-internals.po 
2022-10-11 06:59:55.0 +0200
@@ -423,7 +423,7 @@
 msgctxt "Verbose user visible error string"
 msgid "An internal error has occurred (known as the 'Confused service error')"
 msgstr ""
-"S'ha produ??t un error intern del sistema (conegut com a ??Error conf??s del "
+"S'ha produ??t un error intern en el sistema (conegut com a ??Error conf??s 
del "
 "servei??)"
 
 #: KTp/error-dictionary.cpp:127
@@ -737,7 +737,7 @@
 #, kde-format
 msgctxt "Short user visible error string"
 msgid "Internal error"
-msgstr "Error intern"
+msgstr "S'ha produ??t un error intern"
 
 #: KTp/error-dictionary.cpp:234
 #, kde-format
@@ -761,7 +761,7 @@
 #, kde-format
 msgctxt "Short user visible error string"
 msgid "Internal component error"
-msgstr "Error intern del component"
+msgstr "S'ha produ??t un error intern en el component"
 
 #: KTp/error-dictionary.cpp:244
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-common-internals-22.08.1/po/zh_CN/ktp-common-internals.po 
new/ktp-common-internals-22.08.2/po/zh_CN/ktp-common-internals.po
--- old/ktp-common-internals-22.08.1/po/zh_CN/ktp-common-internals.po   
2022-09-06 02:12:56.0 +0200
+++ new/ktp-common-internals-22.08.2/po/zh_CN/ktp-common-internals.po   
2022-10-11 06:59:55.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-02-18 03:18+0100\n"
-"PO-Revision-Date: 2022-08-20 14:21\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-common-internals-22.08.1/po/zh_CN/ktp-debugger.po 
new/ktp-common-internals-22.08.2/po/zh_CN/ktp-debugger.po
--- 

commit kruler for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kruler for openSUSE:Factory checked 
in at 2022-10-15 16:34:22

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


Package is "kruler"

Sat Oct 15 16:34:22 2022 rev:144 rq:1010804 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kruler/kruler.changes2022-09-09 
18:24:14.884392367 +0200
+++ /work/SRC/openSUSE:Factory/.kruler.new.2275/kruler.changes  2022-10-15 
16:35:11.913827720 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:15 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kruler-22.08.1.tar.xz
  kruler-22.08.1.tar.xz.sig

New:

  kruler-22.08.2.tar.xz
  kruler-22.08.2.tar.xz.sig



Other differences:
--
++ kruler.spec ++
--- /var/tmp/diff_new_pack.Q1IAOr/_old  2022-10-15 16:35:12.541829229 +0200
+++ /var/tmp/diff_new_pack.Q1IAOr/_new  2022-10-15 16:35:12.545829238 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kruler
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Screen Ruler
 License:GPL-2.0-or-later


++ kruler-22.08.1.tar.xz -> kruler-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kruler-22.08.1/CMakeLists.txt 
new/kruler-22.08.2/CMakeLists.txt
--- old/kruler-22.08.1/CMakeLists.txt   2022-09-03 00:08:19.0 +0200
+++ new/kruler-22.08.2/CMakeLists.txt   2022-10-10 21:57:34.0 +0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 set(RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(kruler VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kruler-22.08.1/org.kde.kruler.appdata.xml 
new/kruler-22.08.2/org.kde.kruler.appdata.xml
--- old/kruler-22.08.1/org.kde.kruler.appdata.xml   2022-09-03 
00:08:19.0 +0200
+++ new/kruler-22.08.2/org.kde.kruler.appdata.xml   2022-10-10 
21:57:34.0 +0200
@@ -86,7 +86,7 @@
  ??  ?? ??  
?? .  0 ??  ?? ?? 
?? ??  ?? ??  
?? ??.
 KRuler ?? ?? ??  
??  ??.  
 ?? ?? ?? ??  
??  ?? ?? ?? ??.
 El KRuler ??s un regle a la pantalla que permet mesurar 
p??xels. Situeu el 0 al punt d'inici i mesureu la dist??ncia precisa en p??xels 
entre el punt d'inici i el cursor.
-KRuler ??s un regle a la pantalla que permet 
mesurar p??xels. Situeu el 0 al punt d'inici i mesureu la dist??ncia precisa en 
p??xels entre el punt d'inici i el cursor.
+KRuler ??s un regle en la pantalla que permet 
mesurar p??xels. Situeu el 0 al punt d'inici i mesureu la dist??ncia precisa en 
p??xels entre el punt d'inici i el cursor.
 KRuler er en lineal p?? sk??rmen til at m??le pixel. 
Placer 0 ved dit startpunkt og m??l den pr??cise pixelafstand mellem 
startpunktet og din mark??r.
 KRuler ist ein Bildschirmlineal zu Messen von Pixeln. 
Setzen Sie den Ursprung des Lineals auf den Startpunkt und messen Sie dann den 
genauen Abstand zum Cursor.
  KRuler ??  ?? 
 ??  ?? ??. 
??  0 ??   ?? 
 ?? ?? ??   ?? 
 ?? ??   ??  
.
@@ -134,10 +134,10 @@
 
   
   
+
 
 
 
-
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kruler-22.08.1/po/ca@valencia/kruler.po 
new/kruler-22.08.2/po/ca@valencia/kruler.po
--- old/kruler-22.08.1/po/ca@valencia/kruler.po 2022-09-06 02:05:18.0 
+0200
+++ new/kruler-22.08.2/po/ca@valencia/kruler.po 2022-10-11 

commit kpimtextedit for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kpimtextedit for openSUSE:Factory 
checked in at 2022-10-15 16:34:19

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


Package is "kpimtextedit"

Sat Oct 15 16:34:19 2022 rev:88 rq:1010795 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kpimtextedit/kpimtextedit.changes
2022-09-09 18:24:12.616385684 +0200
+++ /work/SRC/openSUSE:Factory/.kpimtextedit.new.2275/kpimtextedit.changes  
2022-10-15 16:35:09.857822779 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:09 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kpimtextedit-22.08.1.tar.xz
  kpimtextedit-22.08.1.tar.xz.sig

New:

  kpimtextedit-22.08.2.tar.xz
  kpimtextedit-22.08.2.tar.xz.sig



Other differences:
--
++ kpimtextedit.spec ++
--- /var/tmp/diff_new_pack.cXBV40/_old  2022-10-15 16:35:10.393824067 +0200
+++ /var/tmp/diff_new_pack.cXBV40/_new  2022-10-15 16:35:10.397824076 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kpimtextedit
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE PIM Libraries: Text edit functionality
 License:LGPL-2.1-or-later

++ kpimtextedit-22.08.1.tar.xz -> kpimtextedit-22.08.2.tar.xz ++
 2312 lines of diff (skipped)

++ kpimtextedit-22.08.1.tar.xz.sig -> kpimtextedit-22.08.2.tar.xz.sig ++
--- /work/SRC/openSUSE:Factory/kpimtextedit/kpimtextedit-22.08.1.tar.xz.sig 
2022-09-09 18:24:12.592385614 +0200
+++ 
/work/SRC/openSUSE:Factory/.kpimtextedit.new.2275/kpimtextedit-22.08.2.tar.xz.sig
   2022-10-15 16:35:09.833822721 +0200
@@ -1,16 +1,16 @@
 -BEGIN PGP SIGNATURE-
 
-iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmMWkM8ACgkQu0YzUNbv
-Me8o6hAAlNQ4Gv1zCDYwsitB/wCSfNe9jBpuk/S7DXpT9fqRS+PrrUQfolc7ZUiM
-aiRZEznicubIE1ibfkH3eEh+vRjPkkYkn4iomlPKSOM75MwAqj1K0pG4C1cfCz0v
-yvoQMEVOmtXoRUK9xUcHAAsEAWhD9phgCflb4gDXlQkzOqXMlLpCrBfgDh9rpN3W
-gLYGIcJ2efCZncw+ZpgozKj6IGJ/FImZPaZuF3xFtGQSiv6WzjUSDT9nljubLEvT
-SsuqSzhdO32OD2PoReGniR5o8Ujj3/mySGk5H15pNOtjVBOCub6N8zLWh0cAoM15
-d0rbzg2i73PTm3wo9NHqQJ4h5V7dZ0tK9r/N+1Zfi1knvotMKYpp9H59xDZrQDhx
-YIrFRPLlvIZvQd6jeXM2dEBwE9GlUQziev8wP1umjLTxobJv1qOzqbG6AANEnYuZ
-uBtCFHVf6AfhzKmctrHDyFlvuwSX3blFHFSODWpX7RNtSf5cyIR9ZBLIaL1dEjRf
-zorXcw6txFn41OgqcIv1PMQZgQvOuSIRhTLxbaLjC26LKURoAMswnnrbUQ51m9dR
-ZhJoHE/P7XADn5/lejmsQw5xP/xRGD+sz0PCWPRI0mPWTOUyFF94UKXQueiTffke
-81Gs/6M0ch7V+LnPPkKnDbDEs5yek+BBd16IeN/3cxuKknZ1aCU=
-=v3Ww
+iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmNE+LIACgkQu0YzUNbv
+Me+Zmg//ZK6KDaA9nP6Y7WVqUarkEwqMnrsh+hgn3FDi3kVtlMtxp9El7MMnWk9j
+zgYgC1MRUlcw9AQe6iWHmY/Ik0fnVwcLvS52Yrtu2XxRtgRqFIAl7600EJ8nGr+O
+lf9bQBb0tQlq6IBkRi8Eg3PiTyGKU30NgVlI7briDjcojV0lflQadp3b/Xsrz4gm
+Vm9XjbjaENM8v53v3b0DZOPUAzk7hSwMRA16cDwmWclCm20r6A5S5n06pBdTVOYg
+OCx5a00qXsM+EoSp0iDuJiwnNLUlCHyQVQzhVGTU7moE8D+W7Y3N4+jvCtOWxThM
+itseVo86OrWiTIdqzjn9m+fsmj5KuWWnlnFThckAereT8qN1h8/WKeRoguHXDikm
++f02JizAtR8vP4Zixh7DuRC9Nq7hN7nhYOmXPiGB6OgPL6KB0Nn0WaV5m8tw+Qn/
+licoT2RU03F8LhO9JkJHrmMPo0YBYRzrr6roqvsXTguMCTrHgx1vDrqUesFa45uS
+cHGz5PB1iKFGcTA461Upa46XW48g1M+esplSc/25M3p8riCQviHJbjod6I8Nhdg2
+ri+kjk9P/g5XJRF3HneQ/71NG9snEvRtN5KM967HGkUQ3Q4ZCPXrxhRhPQIT3o50
+ZE++/v0eAZLY325vEooJo4OIpwpilX6NB3f/tl8pllj85SutXww=
+=fWxw
 -END PGP SIGNATURE-


commit ksanecore for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ksanecore for openSUSE:Factory 
checked in at 2022-10-15 16:34:23

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


Package is "ksanecore"

Sat Oct 15 16:34:23 2022 rev:3 rq:1010805 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/ksanecore/ksanecore.changes  2022-09-09 
18:24:16.572397341 +0200
+++ /work/SRC/openSUSE:Factory/.ksanecore.new.2275/ksanecore.changes
2022-10-15 16:35:12.965830248 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:15 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  ksanecore-22.08.1.tar.xz
  ksanecore-22.08.1.tar.xz.sig

New:

  ksanecore-22.08.2.tar.xz
  ksanecore-22.08.2.tar.xz.sig



Other differences:
--
++ ksanecore.spec ++
--- /var/tmp/diff_new_pack.24iUKe/_old  2022-10-15 16:35:13.501831536 +0200
+++ /var/tmp/diff_new_pack.24iUKe/_new  2022-10-15 16:35:13.505831545 +0200
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   ksanecore
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Qt interface for the SANE library for scanner hardware
 License:LGPL-2.1-only OR LGPL-3.0-only


++ ksanecore-22.08.1.tar.xz -> ksanecore-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.08.1/CMakeLists.txt 
new/ksanecore-22.08.2/CMakeLists.txt
--- old/ksanecore-22.08.1/CMakeLists.txt2022-09-02 23:49:37.0 
+0200
+++ new/ksanecore-22.08.2/CMakeLists.txt2022-10-10 21:40:01.0 
+0200
@@ -7,7 +7,7 @@
 # KDE Applications version, managed by release script.
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 set(RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(KSaneCore VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.08.1/po/ja/ksanecore.po 
new/ksanecore-22.08.2/po/ja/ksanecore.po
--- old/ksanecore-22.08.1/po/ja/ksanecore.po1970-01-01 01:00:00.0 
+0100
+++ new/ksanecore-22.08.2/po/ja/ksanecore.po2022-10-11 07:07:35.0 
+0200
@@ -0,0 +1,67 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: ksanecore\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n;
+"POT-Creation-Date: 2022-06-17 00:43+\n"
+"PO-Revision-Date: 2022-01-02 23:13-0800\n"
+"Last-Translator: Japanese KDE translation team \n"
+"Language-Team: Japanese \n"
+"Language: ja\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-Accelerator-Marker: &\n"
+"X-Text-Markup: kde4\n"
+
+#: interface.cpp:221
+#, kde-format
+msgid "Scanning stopped by user."
+msgstr ""
+
+#: options/batchdelayoption.cpp:31
+#, kde-format
+msgid "Batch mode time delay"
+msgstr ""
+
+#: options/batchdelayoption.cpp:36
+#, kde-format
+msgid "Specify the time delay between each scan when batch mode is enabled."
+msgstr ""
+
+#: options/batchmodeoption.cpp:31
+#, kde-format
+msgid "Batch mode with time delay"
+msgstr ""
+
+#: options/batchmodeoption.cpp:36
+#, kde-format
+msgid ""
+"Enables batch mode scanning. Continues scanning after a delay until canceled."
+msgstr ""
+
+#: options/invertoption.cpp:58
+#, kde-format
+msgid "Invert colors"
+msgstr ""
+
+#: options/invertoption.cpp:63
+#, kde-format
+msgid "Invert the colors of the scanned image."
+msgstr ""
+
+#: options/pagesizeoption.cpp:98
+#, kde-format
+msgctxt "Page size landscape"
+msgid "Landscape %1"
+msgstr ""
+
+#: options/pagesizeoption.cpp:173
+#, kde-format
+msgid "Scan area size"
+msgstr ""
+
+#: options/pagesizeoption.cpp:178
+#, kde-format
+msgid "Select a predefined page size for the scanning area."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.08.1/po/ru/ksanecore.po 
new/ksanecore-22.08.2/po/ru/ksanecore.po
--- old/ksanecore-22.08.1/po/ru/ksanecore.po1970-01-01 01:00:00.0 
+0100
+++ new/ksanecore-22.08.2/po/ru/ksanecore.po2022-10-11 07:07:35.0 
+0200
@@ -0,0 +1,75 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is 

commit ktnef for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ktnef for openSUSE:Factory checked 
in at 2022-10-15 16:34:25

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


Package is "ktnef"

Sat Oct 15 16:34:25 2022 rev:85 rq:1010818 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/ktnef/ktnef.changes  2022-09-09 
18:24:18.628403398 +0200
+++ /work/SRC/openSUSE:Factory/.ktnef.new.2275/ktnef.changes2022-10-15 
16:35:15.473836274 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:22 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  ktnef-22.08.1.tar.xz
  ktnef-22.08.1.tar.xz.sig

New:

  ktnef-22.08.2.tar.xz
  ktnef-22.08.2.tar.xz.sig



Other differences:
--
++ ktnef.spec ++
--- /var/tmp/diff_new_pack.NuITQh/_old  2022-10-15 16:35:16.569838908 +0200
+++ /var/tmp/diff_new_pack.NuITQh/_new  2022-10-15 16:35:16.573838918 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   ktnef
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE PIM Libraries: TNEF support
 License:LGPL-2.1-or-later


++ ktnef-22.08.1.tar.xz -> ktnef-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktnef-22.08.1/CMakeLists.txt 
new/ktnef-22.08.2/CMakeLists.txt
--- old/ktnef-22.08.1/CMakeLists.txt2022-08-20 17:02:39.0 +0200
+++ new/ktnef-22.08.2/CMakeLists.txt2022-09-11 10:05:48.0 +0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(KTnef VERSION ${PIM_VERSION})
 
@@ -29,7 +29,7 @@
 
 
 set(KTNEF_LIB_VERSION ${PIM_VERSION})
-set(CALENDARUTILS_LIB_VERSION "5.21.1")
+set(CALENDARUTILS_LIB_VERSION "5.21.2")
 set(QT_REQUIRED_VERSION "5.15.2")
 ecm_setup_version(PROJECT VARIABLE_PREFIX KTNEF
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/ktnef_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktnef-22.08.1/po/zh_CN/libktnef5.po 
new/ktnef-22.08.2/po/zh_CN/libktnef5.po
--- old/ktnef-22.08.1/po/zh_CN/libktnef5.po 2022-09-06 02:14:10.0 
+0200
+++ new/ktnef-22.08.2/po/zh_CN/libktnef5.po 2022-10-11 07:01:41.0 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-01-12 00:46+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit ksmtp for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ksmtp for openSUSE:Factory checked 
in at 2022-10-15 16:34:24

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


Package is "ksmtp"

Sat Oct 15 16:34:24 2022 rev:61 rq:1010808 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/ksmtp/ksmtp.changes  2022-09-09 
18:24:17.776400888 +0200
+++ /work/SRC/openSUSE:Factory/.ksmtp.new.2275/ksmtp.changes2022-10-15 
16:35:13.921832545 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:17 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  ksmtp-22.08.1.tar.xz
  ksmtp-22.08.1.tar.xz.sig

New:

  ksmtp-22.08.2.tar.xz
  ksmtp-22.08.2.tar.xz.sig



Other differences:
--
++ ksmtp.spec ++
--- /var/tmp/diff_new_pack.FW96At/_old  2022-10-15 16:35:14.905834909 +0200
+++ /var/tmp/diff_new_pack.FW96At/_new  2022-10-15 16:35:14.909834919 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without released
 Name:   ksmtp
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Job-based library to send email through an SMTP server
 License:LGPL-2.1-or-later


++ ksmtp-22.08.1.tar.xz -> ksmtp-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-22.08.1/CMakeLists.txt 
new/ksmtp-22.08.2/CMakeLists.txt
--- old/ksmtp-22.08.1/CMakeLists.txt2022-08-19 07:00:04.0 +0200
+++ new/ksmtp-22.08.2/CMakeLists.txt2022-09-08 19:40:54.0 +0200
@@ -1,7 +1,7 @@
 # SPDX-FileCopyrightText: none
 # SPDX-License-Identifier: BSD-3-Clause
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(KSMTP VERSION ${PIM_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-22.08.1/po/zh_CN/libksmtp5.po 
new/ksmtp-22.08.2/po/zh_CN/libksmtp5.po
--- old/ksmtp-22.08.1/po/zh_CN/libksmtp5.po 2022-09-06 02:16:58.0 
+0200
+++ new/ksmtp-22.08.2/po/zh_CN/libksmtp5.po 2022-10-11 07:05:04.0 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-04-14 00:45+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit korganizer for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package korganizer for openSUSE:Factory 
checked in at 2022-10-15 16:34:18

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


Package is "korganizer"

Sat Oct 15 16:34:18 2022 rev:76 rq:1010792 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/korganizer/korganizer.changes2022-09-09 
18:24:11.044381053 +0200
+++ /work/SRC/openSUSE:Factory/.korganizer.new.2275/korganizer.changes  
2022-10-15 16:35:08.157818693 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:08 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  korganizer-22.08.1.tar.xz
  korganizer-22.08.1.tar.xz.sig

New:

  korganizer-22.08.2.tar.xz
  korganizer-22.08.2.tar.xz.sig



Other differences:
--
++ korganizer.spec ++
--- /var/tmp/diff_new_pack.C7NAGT/_old  2022-10-15 16:35:08.853820366 +0200
+++ /var/tmp/diff_new_pack.C7NAGT/_new  2022-10-15 16:35:08.857820376 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   korganizer
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Personal Organizer
 License:GPL-2.0-only


++ korganizer-22.08.1.tar.xz -> korganizer-22.08.2.tar.xz ++
 1603 lines of diff (skipped)


commit kpkpass for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kpkpass for openSUSE:Factory checked 
in at 2022-10-15 16:34:20

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


Package is "kpkpass"

Sat Oct 15 16:34:20 2022 rev:51 rq:1010796 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kpkpass/kpkpass.changes  2022-09-09 
18:24:13.936389574 +0200
+++ /work/SRC/openSUSE:Factory/.kpkpass.new.2275/kpkpass.changes
2022-10-15 16:35:10.781824999 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:10 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kpkpass-22.08.1.tar.xz
  kpkpass-22.08.1.tar.xz.sig

New:

  kpkpass-22.08.2.tar.xz
  kpkpass-22.08.2.tar.xz.sig



Other differences:
--
++ kpkpass.spec ++
--- /var/tmp/diff_new_pack.1YVkmG/_old  2022-10-15 16:35:11.613826999 +0200
+++ /var/tmp/diff_new_pack.1YVkmG/_new  2022-10-15 16:35:11.617827008 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without released
 Name:   kpkpass
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Library to parse Passbook files
 License:LGPL-2.1-or-later


++ kpkpass-22.08.1.tar.xz -> kpkpass-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpkpass-22.08.1/CMakeLists.txt 
new/kpkpass-22.08.2/CMakeLists.txt
--- old/kpkpass-22.08.1/CMakeLists.txt  2022-08-19 06:59:54.0 +0200
+++ new/kpkpass-22.08.2/CMakeLists.txt  2022-09-08 19:40:44.0 +0200
@@ -3,7 +3,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 project(KPkPass VERSION ${PIM_VERSION})
 
 set(KF5_MIN_VERSION "5.95.0")


commit konversation for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package konversation for openSUSE:Factory 
checked in at 2022-10-15 16:34:17

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


Package is "konversation"

Sat Oct 15 16:34:17 2022 rev:83 rq:1010789 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/konversation/konversation.changes
2022-09-09 18:24:08.200372673 +0200
+++ /work/SRC/openSUSE:Factory/.konversation.new.2275/konversation.changes  
2022-10-15 16:35:05.149811465 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:06 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  konversation-22.08.1.tar.xz
  konversation-22.08.1.tar.xz.sig

New:

  konversation-22.08.2.tar.xz
  konversation-22.08.2.tar.xz.sig



Other differences:
--
++ konversation.spec ++
--- /var/tmp/diff_new_pack.LvalXQ/_old  2022-10-15 16:35:06.709815214 +0200
+++ /var/tmp/diff_new_pack.LvalXQ/_new  2022-10-15 16:35:06.713815224 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   konversation
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:A graphical IRC client by KDE
 License:GPL-2.0-or-later


++ konversation-22.08.1.tar.xz -> konversation-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konversation-22.08.1/CMakeLists.txt 
new/konversation-22.08.2/CMakeLists.txt
--- old/konversation-22.08.1/CMakeLists.txt 2022-09-03 00:45:14.0 
+0200
+++ new/konversation-22.08.2/CMakeLists.txt 2022-10-10 22:33:56.0 
+0200
@@ -3,7 +3,7 @@
 # Release Service version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set (RELEASE_SERVICE_COMPACT_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}${RELEASE_SERVICE_VERSION_MINOR}${RELEASE_SERVICE_VERSION_MICRO}")
 
 # Bump KONVERSATION_BASE_VERSION once new features are added
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/konversation-22.08.1/data/org.kde.konversation.appdata.xml 
new/konversation-22.08.2/data/org.kde.konversation.appdata.xml
--- old/konversation-22.08.1/data/org.kde.konversation.appdata.xml  
2022-09-03 00:45:14.0 +0200
+++ new/konversation-22.08.2/data/org.kde.konversation.appdata.xml  
2022-10-10 22:33:56.0 +0200
@@ -95,6 +95,7 @@
 Konversation on KDE:n k??ytt??j??yst??v??llinen 
IRC-asiakas (Internet Relay Chat), joka tarjoaa helpon psyn 
IRC-vakioverkkoihin kuten Liberaan, mist?? l??ytyv??t KDE:n IRC-kanavat.
 Konversation est un client IRC (Internet Relay Chat) 
convivial de KDE. Il fournit un acc??s facile aux r??seaux IRC standards tels 
que Libera, o?? les canaux IRC de KDE se trouvent.
 A Konversation a KDE felhaszn??l??bar??t Internet Relay 
Chat (IRC) kliense. K??nny?? hozz??f??r??st biztos??t a szabv??nyos IRC 
h??l??zatokhoz, mint p??ld??ul a Libera, ahol a KDE IRC csatorn??k 
tal??lhat??k.
+Konversation adalah klien Internet Relay Chat (IRC) yang 
mudah digunakan oleh KDE. Ini menyediakan akses mudah ke jaringan IRC standar 
seperti Libera, di mana saluran IRC KDE bisa ditemukan.
 Konversation ?? un client per Internet Relay Chat (IRC) 
facile da usare sviluppato da KDE. Fornisce un acceso rapido alle reti IRC 
standard come Libera, dove si possono trovare i canali IRC di KDE.
 Konversaion??? KDE??? IRC . KDE 
IRC ? ?? Libera??? ?? IRC ??? ?? ? ??? 
.
 Konversation is een gebruikersvriendelijke Internet Relay 
Chat (IRC)-client door KDE. Het biedt gemakkelijk toegang tot standaard 
IRC-netwerken zoals Libera, waar de KDE IRC-kanalen zijn te vinden.
@@ -313,7 +314,7 @@
   Varios servidores e canles nunha mesma xanela.
    ?? ?? ?? 
??
   T??bb kiszolg??l?? ??s csatorna megjelen??t??se egy 
ablakon bel??l
-  Multipel channel dan server di satu window tunggal
+  Multipel channel dan server di satu jendela 
tunggal
   Diversi server e canali in un'unica finestra
   ? ? ?? ? ?? ??
   Meerdere servers and kanalen in een enkel venster
@@ -644,10 +645,10 @@
 

commit konsole for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package konsole for openSUSE:Factory checked 
in at 2022-10-15 16:34:15

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


Package is "konsole"

Sat Oct 15 16:34:15 2022 rev:160 rq:1010785 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/konsole/konsole.changes  2022-09-09 
18:24:03.076357576 +0200
+++ /work/SRC/openSUSE:Factory/.konsole.new.2275/konsole.changes
2022-10-15 16:34:59.781798565 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:03 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  konsole-22.08.1.tar.xz
  konsole-22.08.1.tar.xz.sig

New:

  konsole-22.08.2.tar.xz
  konsole-22.08.2.tar.xz.sig



Other differences:
--
++ konsole.spec ++
--- /var/tmp/diff_new_pack.XjSbdK/_old  2022-10-15 16:35:01.133801814 +0200
+++ /var/tmp/diff_new_pack.XjSbdK/_new  2022-10-15 16:35:01.137801824 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   konsole
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE Terminal
 License:GPL-2.0-or-later


++ konsole-22.08.1.tar.xz -> konsole-22.08.2.tar.xz ++
 5617 lines of diff (skipped)


commit kompare for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kompare for openSUSE:Factory checked 
in at 2022-10-15 16:34:14

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


Package is "kompare"

Sat Oct 15 16:34:14 2022 rev:117 rq:1010782 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kompare/kompare.changes  2022-09-09 
18:24:01.836353922 +0200
+++ /work/SRC/openSUSE:Factory/.kompare.new.2275/kompare.changes
2022-10-15 16:34:57.573793259 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:01 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kompare-22.08.1.tar.xz
  kompare-22.08.1.tar.xz.sig

New:

  kompare-22.08.2.tar.xz
  kompare-22.08.2.tar.xz.sig



Other differences:
--
++ kompare.spec ++
--- /var/tmp/diff_new_pack.lMZj3q/_old  2022-10-15 16:34:59.169797095 +0200
+++ /var/tmp/diff_new_pack.lMZj3q/_new  2022-10-15 16:34:59.173797104 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kompare
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:File Comparator
 License:GPL-2.0-only AND GFDL-1.2-only


++ kompare-22.08.1.tar.xz -> kompare-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-22.08.1/CMakeLists.txt 
new/kompare-22.08.2/CMakeLists.txt
--- old/kompare-22.08.1/CMakeLists.txt  2022-09-03 00:32:56.0 +0200
+++ new/kompare-22.08.2/CMakeLists.txt  2022-10-10 22:22:40.0 +0200
@@ -3,7 +3,7 @@
 # Release Service version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set (RELEASE_SERVICE_COMPACT_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}${RELEASE_SERVICE_VERSION_MINOR}${RELEASE_SERVICE_VERSION_MICRO}")
 
 # Bump KOMPARE_BASE_VERSION once new features are added
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-22.08.1/po/ca/docs/kompare/index.docbook 
new/kompare-22.08.2/po/ca/docs/kompare/index.docbook
--- old/kompare-22.08.1/po/ca/docs/kompare/index.docbook2022-09-06 
02:11:26.0 +0200
+++ new/kompare-22.08.2/po/ca/docs/kompare/index.docbook2022-10-11 
06:58:07.0 +0200
@@ -1584,7 +1584,7 @@
 >diff cvs | kompare -o -. El  far?? una comprovaci?? per a veure si pot trobar el/s fitxer/s 
original/s i aleshores fusionar?? l'original a la sortida del diff i la 
mostrar?? en el visor. . El  far?? una comprovaci?? per a veure si pot trobar el/s fitxer/s 
original/s i aleshores fusionar?? l'original a la sortida del diff i la 
mostrar?? en el visualitzador. -n desactiva la comprovaci??.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-22.08.1/po/ca/kompare.po 
new/kompare-22.08.2/po/ca/kompare.po
--- old/kompare-22.08.1/po/ca/kompare.po2022-09-06 02:11:25.0 
+0200
+++ new/kompare-22.08.2/po/ca/kompare.po2022-10-11 06:58:07.0 
+0200
@@ -1,18 +1,18 @@
 # Translation of kompare.po to Catalan
-# Copyright (C) 2002-2021 This_file_is_part_of_KDE
+# Copyright (C) 2002-2022 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.
 #
 # Albert Astals Cid , 2002, 2003, 2004, 2005.
 # Antoni Bella P??rez , 2003, 2006, 2012, 2014, 2015, 
2020.
-# Josep M. Ferrer , 2007, 2008, 2009, 2010, 2012, 2013, 
2014, 2015, 2016, 2017, 2020, 2021.
+# Josep M. Ferrer , 2007, 2008, 2009, 2010, 2012, 2013, 
2014, 2015, 2016, 2017, 2020, 2021, 2022.
 # Manuel Tortosa , 2009, 2010, 2011, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2021-05-17 00:26+\n"
-"PO-Revision-Date: 2021-11-01 11:11+0100\n"
+"PO-Revision-Date: 2022-09-07 19:12+0200\n"
 "Last-Translator: Josep M. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -352,7 +352,7 @@
 #: app/main.cpp:62
 #, kde-format
 msgid "Cervisia diff viewer"
-msgstr "Visor ??diff?? del Cervisia"
+msgstr "Visualitzador ??diff?? del Cervisia"
 
 #: app/main.cpp:69
 #, kde-format
@@ -372,7 +372,8 @@
 "i aleshores es llegir?? a l'entrada est??ndard. Per exemple, es pot emprar 
per "
 "a ??diff cvs | kompare 

commit kontactinterface for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kontactinterface for 
openSUSE:Factory checked in at 2022-10-15 16:34:16

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


Package is "kontactinterface"

Sat Oct 15 16:34:16 2022 rev:85 rq:1010787 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kontactinterface/kontactinterface.changes
2022-09-09 18:24:06.948368984 +0200
+++ 
/work/SRC/openSUSE:Factory/.kontactinterface.new.2275/kontactinterface.changes  
2022-10-15 16:35:03.733808062 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:05 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kontactinterface-22.08.1.tar.xz
  kontactinterface-22.08.1.tar.xz.sig

New:

  kontactinterface-22.08.2.tar.xz
  kontactinterface-22.08.2.tar.xz.sig



Other differences:
--
++ kontactinterface.spec ++
--- /var/tmp/diff_new_pack.bbl6wt/_old  2022-10-15 16:35:04.637810235 +0200
+++ /var/tmp/diff_new_pack.bbl6wt/_new  2022-10-15 16:35:04.641810244 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kontactinterface
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE PIM Libraries: Interface to Contacts
 License:LGPL-2.1-or-later


++ kontactinterface-22.08.1.tar.xz -> kontactinterface-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-22.08.1/CMakeLists.txt 
new/kontactinterface-22.08.2/CMakeLists.txt
--- old/kontactinterface-22.08.1/CMakeLists.txt 2022-08-19 06:59:16.0 
+0200
+++ new/kontactinterface-22.08.2/CMakeLists.txt 2022-09-08 19:40:12.0 
+0200
@@ -1,7 +1,7 @@
 # SPDX-FileCopyrightText: none
 # SPDX-License-Identifier: BSD-3-Clause
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(KontactInterface VERSION ${PIM_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kontactinterface-22.08.1/po/zh_CN/kontactinterfaces5.po 
new/kontactinterface-22.08.2/po/zh_CN/kontactinterfaces5.po
--- old/kontactinterface-22.08.1/po/zh_CN/kontactinterfaces5.po 2022-09-06 
02:14:04.0 +0200
+++ new/kontactinterface-22.08.2/po/zh_CN/kontactinterfaces5.po 2022-10-11 
07:01:33.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 03:17+0200\n"
-"PO-Revision-Date: 2022-08-20 14:21\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kontact for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kontact for openSUSE:Factory checked 
in at 2022-10-15 16:34:15

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


Package is "kontact"

Sat Oct 15 16:34:15 2022 rev:73 rq:1010786 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kontact/kontact.changes  2022-09-09 
18:24:04.868362856 +0200
+++ /work/SRC/openSUSE:Factory/.kontact.new.2275/kontact.changes
2022-10-15 16:35:01.957803795 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:04 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kontact-22.08.1.tar.xz
  kontact-22.08.1.tar.xz.sig

New:

  kontact-22.08.2.tar.xz
  kontact-22.08.2.tar.xz.sig



Other differences:
--
++ kontact.spec ++
--- /var/tmp/diff_new_pack.m4D6HO/_old  2022-10-15 16:35:03.245806890 +0200
+++ /var/tmp/diff_new_pack.m4D6HO/_new  2022-10-15 16:35:03.249806899 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kontact
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Personal Information Manager
 License:GPL-2.0-or-later


++ kontact-22.08.1.tar.xz -> kontact-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontact-22.08.1/CMakeLists.txt 
new/kontact-22.08.2/CMakeLists.txt
--- old/kontact-22.08.1/CMakeLists.txt  2022-09-03 00:39:05.0 +0200
+++ new/kontact-22.08.2/CMakeLists.txt  2022-10-10 22:27:36.0 +0200
@@ -1,7 +1,7 @@
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 project(kontact VERSION ${PIM_VERSION})
-set(RELEASE_SERVICE_VERSION "22.08.1")
+set(RELEASE_SERVICE_VERSION "22.08.2")
 set(KF5_MIN_VERSION "5.95.0")
 find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
 
@@ -40,10 +40,10 @@
 
 set(KDEPIM_VERSION "${PIM_VERSION}${KDEPIM_DEV_VERSION} 
(${RELEASE_SERVICE_VERSION})")
 
-set(KPIMTEXTEDIT_LIB_VERSION "5.21.1")
-set(AKONADI_VERSION "5.21.1")
-set(KONTACTINTERFACE_LIB_VERSION "5.21.1")
-set(PIMCOMMON_LIB_VERSION "5.21.1")
+set(KPIMTEXTEDIT_LIB_VERSION "5.21.2")
+set(AKONADI_VERSION "5.21.2")
+set(KONTACTINTERFACE_LIB_VERSION "5.21.2")
+set(PIMCOMMON_LIB_VERSION "5.21.2")
 
 set(KDEPIM_LIB_VERSION "${PIM_VERSION}")
 set(KDEPIM_LIB_SOVERSION "5")
@@ -51,8 +51,8 @@
 
 set(QT_REQUIRED_VERSION "5.15.2")
 find_package(Qt${QT_MAJOR_VERSION} ${QT_REQUIRED_VERSION} CONFIG REQUIRED DBus 
Widgets WebEngineWidgets)
-set(LIBKDEPIM_LIB_VERSION "5.21.1")
-set(LIBGRANTLEETHEME_LIB_VERSION "5.21.1")
+set(LIBKDEPIM_LIB_VERSION "5.21.2")
+set(LIBGRANTLEETHEME_LIB_VERSION "5.21.2")
 # Find KF5 package
 find_package(KF5I18n ${KF5_MIN_VERSION} CONFIG REQUIRED)
 find_package(KF5DBusAddons ${KF5_MIN_VERSION} CONFIG REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontact-22.08.1/po/ca@valencia/kontact.po 
new/kontact-22.08.2/po/ca@valencia/kontact.po
--- old/kontact-22.08.1/po/ca@valencia/kontact.po   2022-09-06 
02:15:13.0 +0200
+++ new/kontact-22.08.2/po/ca@valencia/kontact.po   2022-10-11 
07:02:58.0 +0200
@@ -276,13 +276,13 @@
 #: src/kontactui.rc:6
 #, kde-format
 msgid ""
-msgstr ""
+msgstr "Fi"
 
 #. i18n: ectx: Menu (view)
 #: src/kontactui.rc:14
 #, kde-format
 msgid ""
-msgstr ""
+msgstr "Vi"
 
 #. i18n: ectx: Menu (settings)
 #: src/kontactui.rc:20
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontact-22.08.1/po/id/kontact.po 
new/kontact-22.08.2/po/id/kontact.po
--- old/kontact-22.08.1/po/id/kontact.po2022-09-06 02:15:13.0 
+0200
+++ new/kontact-22.08.2/po/id/kontact.po2022-10-11 07:02:58.0 
+0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: kontact\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-06-12 00:46+\n"
-"PO-Revision-Date: 2022-08-11 19:12+0700\n"
+"PO-Revision-Date: 2022-09-28 09:27+0700\n"
 "Last-Translator: Wantoy??k \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
@@ -93,7 +93,7 @@
 #, kde-format
 msgctxt "@action:inmenu"
 msgid "Show Icons && Text"
-msgstr "Tampilkan Ikon &"
+msgstr "Tampilkan Ikon && Teks"
 
 #: src/iconsidepane.cpp:281
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontact-22.08.1/po/ja/kontact.po 

commit kmailtransport for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kmailtransport for openSUSE:Factory 
checked in at 2022-10-15 16:34:09

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


Package is "kmailtransport"

Sat Oct 15 16:34:09 2022 rev:88 rq:1010766 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kmailtransport/kmailtransport.changes
2022-09-09 18:23:54.86480 +0200
+++ /work/SRC/openSUSE:Factory/.kmailtransport.new.2275/kmailtransport.changes  
2022-10-15 16:34:47.969770180 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:52 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kmailtransport-22.08.1.tar.xz
  kmailtransport-22.08.1.tar.xz.sig

New:

  kmailtransport-22.08.2.tar.xz
  kmailtransport-22.08.2.tar.xz.sig



Other differences:
--
++ kmailtransport.spec ++
--- /var/tmp/diff_new_pack.xPKRaF/_old  2022-10-15 16:34:50.497776255 +0200
+++ /var/tmp/diff_new_pack.xPKRaF/_new  2022-10-15 16:34:50.501776265 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kmailtransport
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE PIM Libraries: Mailtransport layer
 License:LGPL-2.1-or-later


++ kmailtransport-22.08.1.tar.xz -> kmailtransport-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmailtransport-22.08.1/CMakeLists.txt 
new/kmailtransport-22.08.2/CMakeLists.txt
--- old/kmailtransport-22.08.1/CMakeLists.txt   2022-08-20 17:01:46.0 
+0200
+++ new/kmailtransport-22.08.2/CMakeLists.txt   2022-09-11 10:05:00.0 
+0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 project(MailTransport VERSION ${PIM_VERSION})
 
 # ECM setup
@@ -35,11 +35,11 @@
 
 set(KMAILTRANSPORT_LIB_VERSION ${PIM_VERSION})
 
-set(KMIME_LIB_VERSION "5.21.1")
-set(AKONADI_LIB_VERSION "5.21.1")
-set(AKONADIMIME_LIB_VERSION "5.21.1")
-set(KSMTP_LIB_VERSION "5.21.1")
-set(KGAPI_LIB_VERSION "5.21.1")
+set(KMIME_LIB_VERSION "5.21.2")
+set(AKONADI_LIB_VERSION "5.21.2")
+set(AKONADIMIME_LIB_VERSION "5.21.2")
+set(KSMTP_LIB_VERSION "5.21.2")
+set(KGAPI_LIB_VERSION "5.21.2")
 
 set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5MailTransport")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmailtransport-22.08.1/po/ar/libmailtransport5.po 
new/kmailtransport-22.08.2/po/ar/libmailtransport5.po
--- old/kmailtransport-22.08.1/po/ar/libmailtransport5.po   2022-09-06 
02:13:57.0 +0200
+++ new/kmailtransport-22.08.2/po/ar/libmailtransport5.po   2022-10-11 
07:01:21.0 +0200
@@ -8,15 +8,15 @@
 "Project-Id-Version: libmailtransport\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-05-05 00:46+\n"
-"PO-Revision-Date: 2022-09-05 21:50+0400\n"
+"PO-Revision-Date: 2022-09-12 21:04+0400\n"
 "Last-Translator: Zayed Al-Saidi \n"
 "Language-Team: ar\n"
 "Language: ar\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 &&"
-" n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 "X-Generator: Lokalize 21.12.3\n"
 
 #. i18n: ectx: label, entry (id), group (Transport $(transportId))
@@ -92,8 +92,8 @@
 "A command to run locally, prior to sending email. This can be used to set up "
 "SSH tunnels, for example. Leave it empty if no command should be run."
 msgstr ""
-"??  ?? ?? ?? ??  
.  ?? ?? "
-" ?? SSH?? ??  . ??  
??  ?? ??  ??."
+"??  ?? ?? ?? ??  
.  ?? ??  "
+"?? SSH?? ??  . ??  ?? 
 ?? ??  ??."
 
 #. i18n: ectx: label, entry (options), group (Transport $(transportId))
 #: kmailtransport/mailtransport.kcfg:41
@@ -109,14 +109,13 @@
 
 #. i18n: 

commit kmousetool for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kmousetool for openSUSE:Factory 
checked in at 2022-10-15 16:34:12

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


Package is "kmousetool"

Sat Oct 15 16:34:12 2022 rev:138 rq:1010772 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kmousetool/kmousetool.changes2022-09-09 
18:23:57.692341712 +0200
+++ /work/SRC/openSUSE:Factory/.kmousetool.new.2275/kmousetool.changes  
2022-10-15 16:34:53.553783599 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:55 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kmousetool-22.08.1.tar.xz
  kmousetool-22.08.1.tar.xz.sig

New:

  kmousetool-22.08.2.tar.xz
  kmousetool-22.08.2.tar.xz.sig



Other differences:
--
++ kmousetool.spec ++
--- /var/tmp/diff_new_pack.AupPWh/_old  2022-10-15 16:34:55.213787588 +0200
+++ /var/tmp/diff_new_pack.AupPWh/_new  2022-10-15 16:34:55.217787598 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kmousetool
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Automatic Mouse Click
 License:GPL-2.0-or-later


++ kmousetool-22.08.1.tar.xz -> kmousetool-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmousetool-22.08.1/CMakeLists.txt 
new/kmousetool-22.08.2/CMakeLists.txt
--- old/kmousetool-22.08.1/CMakeLists.txt   2022-09-03 00:13:25.0 
+0200
+++ new/kmousetool-22.08.2/CMakeLists.txt   2022-10-10 22:04:06.0 
+0200
@@ -3,7 +3,7 @@
 # Release service version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(kmousetool VERSION "${RELEASE_SERVICE_VERSION}")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kmousetool-22.08.1/kmousetool/org.kde.kmousetool.appdata.xml 
new/kmousetool-22.08.2/kmousetool/org.kde.kmousetool.appdata.xml
--- old/kmousetool-22.08.1/kmousetool/org.kde.kmousetool.appdata.xml
2022-09-03 00:13:25.0 +0200
+++ new/kmousetool-22.08.2/kmousetool/org.kde.kmousetool.appdata.xml
2022-10-10 22:04:06.0 +0200
@@ -126,9 +126,9 @@
   
   org.kde.kmousetool.desktop
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmousetool-22.08.1/po/zh_CN/kmousetool.po 
new/kmousetool-22.08.2/po/zh_CN/kmousetool.po
--- old/kmousetool-22.08.1/po/zh_CN/kmousetool.po   2022-09-06 
02:06:27.0 +0200
+++ new/kmousetool-22.08.2/po/zh_CN/kmousetool.po   2022-10-11 
06:52:02.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-06-12 00:38+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit knotes for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package knotes for openSUSE:Factory checked 
in at 2022-10-15 16:34:13

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


Package is "knotes"

Sat Oct 15 16:34:13 2022 rev:74 rq:1010778 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/knotes/knotes.changes2022-09-09 
18:24:00.700350575 +0200
+++ /work/SRC/openSUSE:Factory/.knotes.new.2275/knotes.changes  2022-10-15 
16:34:55.561788424 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:59 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  knotes-22.08.1.tar.xz
  knotes-22.08.1.tar.xz.sig

New:

  knotes-22.08.2.tar.xz
  knotes-22.08.2.tar.xz.sig



Other differences:
--
++ knotes.spec ++
--- /var/tmp/diff_new_pack.U3ZVKF/_old  2022-10-15 16:34:57.089792096 +0200
+++ /var/tmp/diff_new_pack.U3ZVKF/_new  2022-10-15 16:34:57.093792106 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   knotes
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Popup Notes
 License:GPL-2.0-or-later


++ knotes-22.08.1.tar.xz -> knotes-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotes-22.08.1/CMakeLists.txt 
new/knotes-22.08.2/CMakeLists.txt
--- old/knotes-22.08.1/CMakeLists.txt   2022-09-03 00:38:43.0 +0200
+++ new/knotes-22.08.2/CMakeLists.txt   2022-10-10 22:27:17.0 +0200
@@ -1,9 +1,9 @@
 # SPDX-FileCopyrightText: none
 # SPDX-License-Identifier: BSD-3-Clause
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 project(knotes VERSION ${PIM_VERSION})
-set(RELEASE_SERVICE_VERSION "22.08.1")
+set(RELEASE_SERVICE_VERSION "22.08.2")
 
 
 set(KF5_MIN_VERSION "5.95.0")
@@ -49,16 +49,16 @@
 set(KDEPIM_LIB_SOVERSION "5")
 
 
-set(AKONADINOTES_LIB_VERSION "5.21.1")
-set(AKONADI_VERSION "5.21.1")
-set(CALENDARUTILS_LIB_VERSION "5.21.1")
-set(KONTACTINTERFACE_LIB_VERSION "5.21.1")
-set(KPIMTEXTEDIT_LIB_VERSION "5.21.1")
-set(LIBKDEPIM_LIB_VERSION "5.21.1")
-set(KMIME_LIB_VERSION "5.21.1")
-set(PIMCOMMON_LIB_VERSION "5.21.1")
-set(GRANTLEETHEME_LIB_VERSION "5.21.1")
-set(AKONADI_SEARCH_VERSION "5.21.1")
+set(AKONADINOTES_LIB_VERSION "5.21.2")
+set(AKONADI_VERSION "5.21.2")
+set(CALENDARUTILS_LIB_VERSION "5.21.2")
+set(KONTACTINTERFACE_LIB_VERSION "5.21.2")
+set(KPIMTEXTEDIT_LIB_VERSION "5.21.2")
+set(LIBKDEPIM_LIB_VERSION "5.21.2")
+set(KMIME_LIB_VERSION "5.21.2")
+set(PIMCOMMON_LIB_VERSION "5.21.2")
+set(GRANTLEETHEME_LIB_VERSION "5.21.2")
+set(AKONADI_SEARCH_VERSION "5.21.2")
 
 set(QT_REQUIRED_VERSION "5.15.2")
 find_package(Qt${QT_MAJOR_VERSION} ${QT_REQUIRED_VERSION} CONFIG REQUIRED DBus 
Network PrintSupport Test Widgets Xml)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotes-22.08.1/po/ca@valencia/knotes.po 
new/knotes-22.08.2/po/ca@valencia/knotes.po
--- old/knotes-22.08.1/po/ca@valencia/knotes.po 2022-09-06 02:15:09.0 
+0200
+++ new/knotes-22.08.2/po/ca@valencia/knotes.po 2022-10-11 07:02:54.0 
+0200
@@ -445,7 +445,7 @@
 #: knoteconfigmodule.cpp:80
 #, kde-format
 msgid "Show number of notes in tray icon"
-msgstr "Mostra el nombre de notes a la icona de la safata"
+msgstr "Mostra el nombre de notes en la icona de la safata"
 
 #: knoteconfigmodule.cpp:87
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotes-22.08.1/po/zh_CN/akonadi_notes_agent.po 
new/knotes-22.08.2/po/zh_CN/akonadi_notes_agent.po
--- old/knotes-22.08.1/po/zh_CN/akonadi_notes_agent.po  2022-09-06 
02:15:09.0 +0200
+++ new/knotes-22.08.2/po/zh_CN/akonadi_notes_agent.po  2022-10-11 
07:02:54.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-06-23 00:45+\n"
-"PO-Revision-Date: 2022-08-20 14:21\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotes-22.08.1/po/zh_CN/knotes.po 
new/knotes-22.08.2/po/zh_CN/knotes.po
--- old/knotes-22.08.1/po/zh_CN/knotes.po   2022-09-06 02:15:09.0 
+0200
+++ new/knotes-22.08.2/po/zh_CN/knotes.po   

commit kleopatra for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kleopatra for openSUSE:Factory 
checked in at 2022-10-15 16:34:05

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


Package is "kleopatra"

Sat Oct 15 16:34:05 2022 rev:74 rq:1010758 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kleopatra/kleopatra.changes  2022-09-09 
18:23:49.904318765 +0200
+++ /work/SRC/openSUSE:Factory/.kleopatra.new.2275/kleopatra.changes
2022-10-15 16:34:42.497757031 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:47 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kleopatra-22.08.1.tar.xz
  kleopatra-22.08.1.tar.xz.sig

New:

  kleopatra-22.08.2.tar.xz
  kleopatra-22.08.2.tar.xz.sig



Other differences:
--
++ kleopatra.spec ++
--- /var/tmp/diff_new_pack.h2z0Ij/_old  2022-10-15 16:34:43.665759838 +0200
+++ /var/tmp/diff_new_pack.h2z0Ij/_new  2022-10-15 16:34:43.669759847 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kleopatra
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Certificate manager and GUI for OpenPGP and CMS cryptography
 License:GPL-2.0-or-later


++ kleopatra-22.08.1.tar.xz -> kleopatra-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kleopatra-22.08.1/CMakeLists.txt 
new/kleopatra-22.08.2/CMakeLists.txt
--- old/kleopatra-22.08.1/CMakeLists.txt2022-09-03 00:36:36.0 
+0200
+++ new/kleopatra-22.08.2/CMakeLists.txt2022-10-10 22:24:57.0 
+0200
@@ -4,7 +4,7 @@
 
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 
 # The RELEASE_SERVICE_VERSION is used by Gpg4win to add the Gpg4win version
 if (NOT RELEASE_SERVICE_VERSION)
@@ -31,10 +31,10 @@
 
 # Standalone build. Find / include everything necessary.
 set(KF5_MIN_VERSION "5.95.0")
-set(KIDENTITYMANAGEMENT_VERSION "5.21.1")
-set(KMAILTRANSPORT_VERSION "5.21.1")
-set(KMIME_VERSION "5.21.1")
-set(LIBKLEO_VERSION "5.21.1")
+set(KIDENTITYMANAGEMENT_VERSION "5.21.2")
+set(KMAILTRANSPORT_VERSION "5.21.2")
+set(KMIME_VERSION "5.21.2")
+set(LIBKLEO_VERSION "5.21.2")
 set(QT_REQUIRED_VERSION "5.15.2")
 set(GPGME_REQUIRED_VERSION "1.16.0")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kleopatra-22.08.1/po/bg/kleopatra.po 
new/kleopatra-22.08.2/po/bg/kleopatra.po
--- old/kleopatra-22.08.1/po/bg/kleopatra.po2022-09-06 02:13:48.0 
+0200
+++ new/kleopatra-22.08.2/po/bg/kleopatra.po2022-10-11 07:01:12.0 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kleopatra\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-07-13 02:22+\n"
-"PO-Revision-Date: 2022-08-03 13:30+0200\n"
+"PO-Revision-Date: 2022-09-17 08:44+0200\n"
 "Last-Translator: Mincho Kondarev \n"
 "Language-Team: Bulgarian \n"
 "Language: bg\n"
@@ -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 22.04.3\n"
+"X-Generator: Lokalize 22.08.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -558,7 +558,7 @@
 #: src/commands/checksumverifyfilescommand.cpp:151
 #, kde-format
 msgid "Verify Checksum Files Error"
-msgstr "   ?? ?? ?? 
?? "
+msgstr " ??   ?? ?? 
?? "
 
 #: src/commands/checksumverifyfilescommand.cpp:164
 #, kde-format
@@ -726,7 +726,7 @@
 #: src/commands/decryptverifyfilescommand.cpp:172
 #, kde-format
 msgid "Decrypt/Verify Files Error"
-msgstr "??/   ?? 
??"
+msgstr " ?? ??/  
??"
 
 #: src/commands/decryptverifyfilescommand.cpp:185
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kleopatra-22.08.1/po/ca/docs/kleopatra/index.docbook 
new/kleopatra-22.08.2/po/ca/docs/kleopatra/index.docbook
--- old/kleopatra-22.08.1/po/ca/docs/kleopatra/index.docbook2022-09-06 
02:13:49.0 +0200
+++ 

commit kmail-account-wizard for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kmail-account-wizard for 
openSUSE:Factory checked in at 2022-10-15 16:34:08

Comparing /work/SRC/openSUSE:Factory/kmail-account-wizard (Old)
 and  /work/SRC/openSUSE:Factory/.kmail-account-wizard.new.2275 (New)


Package is "kmail-account-wizard"

Sat Oct 15 16:34:08 2022 rev:74 rq:1010765 version:22.08.2

Changes:

--- 
/work/SRC/openSUSE:Factory/kmail-account-wizard/kmail-account-wizard.changes
2022-09-09 18:23:53.720330009 +0200
+++ 
/work/SRC/openSUSE:Factory/.kmail-account-wizard.new.2275/kmail-account-wizard.changes
  2022-10-15 16:34:46.985767815 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:52 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kmail-account-wizard-22.08.1.tar.xz
  kmail-account-wizard-22.08.1.tar.xz.sig

New:

  kmail-account-wizard-22.08.2.tar.xz
  kmail-account-wizard-22.08.2.tar.xz.sig



Other differences:
--
++ kmail-account-wizard.spec ++
--- /var/tmp/diff_new_pack.1tQC1M/_old  2022-10-15 16:34:47.633769373 +0200
+++ /var/tmp/diff_new_pack.1tQC1M/_new  2022-10-15 16:34:47.641769392 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kmail-account-wizard
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Account wizard for KMail
 License:GPL-2.0-or-later AND LGPL-2.1-or-later


++ kmail-account-wizard-22.08.1.tar.xz -> 
kmail-account-wizard-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmail-account-wizard-22.08.1/CMakeLists.txt 
new/kmail-account-wizard-22.08.2/CMakeLists.txt
--- old/kmail-account-wizard-22.08.1/CMakeLists.txt 2022-08-31 
04:52:03.0 +0200
+++ new/kmail-account-wizard-22.08.2/CMakeLists.txt 2022-09-28 
05:04:53.0 +0200
@@ -1,7 +1,7 @@
 # SPDX-FileCopyrightText: none
 # SPDX-License-Identifier: BSD-3-Clause
 
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 project(kmail-account-wizard VERSION ${PIM_VERSION})
 
@@ -33,7 +33,7 @@
 
 # Do NOT add quote
 set(KDEPIM_DEV_VERSION )
-set(RELEASE_SERVICE_VERSION "22.08.1")
+set(RELEASE_SERVICE_VERSION "22.08.2")
 
 # add an extra space
 if(DEFINED KDEPIM_DEV_VERSION)
@@ -42,22 +42,22 @@
 
 set(KDEPIM_VERSION "${PIM_VERSION}${KDEPIM_DEV_VERSION} 
(${RELEASE_SERVICE_VERSION})")
 
-set(AKONADI_MIMELIB_VERSION "5.21.1")
-set(IDENTITYMANAGEMENT_LIB_VERSION "5.21.1")
-set(KLDAP_LIB_VERSION "5.21.1")
-set(KMAILTRANSPORT_LIB_VERSION "5.21.1")
-set(AKONADI_VERSION "5.21.1")
-set(KIMAP_LIB_VERSION "5.21.1")
-set(AKONADI_MIMELIB_VERSION "5.21.1")
+set(AKONADI_MIMELIB_VERSION "5.21.2")
+set(IDENTITYMANAGEMENT_LIB_VERSION "5.21.2")
+set(KLDAP_LIB_VERSION "5.21.2")
+set(KMAILTRANSPORT_LIB_VERSION "5.21.2")
+set(AKONADI_VERSION "5.21.2")
+set(KIMAP_LIB_VERSION "5.21.2")
+set(AKONADI_MIMELIB_VERSION "5.21.2")
 
 set(KDEPIM_LIB_VERSION "${PIM_VERSION}")
 set(KDEPIM_LIB_SOVERSION "5")
 
 set(QT_REQUIRED_VERSION "5.15.2")
 find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED Widgets Xml DBus Test)
-set(PIMCOMMON_LIB_VERSION "5.21.1")
-set(LIBKDEPIM_LIB_VERSION "5.21.1")
-set(LIBKLEO_LIB_VERSION "5.21.1")
+set(PIMCOMMON_LIB_VERSION "5.21.2")
+set(LIBKDEPIM_LIB_VERSION "5.21.2")
+set(LIBKLEO_LIB_VERSION "5.21.2")
 
 # Find KF5 package
 find_package(KF5Wallet ${KF5_MIN_VERSION} CONFIG REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmail-account-wizard-22.08.1/po/eu/accountwizard.po 
new/kmail-account-wizard-22.08.2/po/eu/accountwizard.po
--- old/kmail-account-wizard-22.08.1/po/eu/accountwizard.po 1970-01-01 
01:00:00.0 +0100
+++ new/kmail-account-wizard-22.08.2/po/eu/accountwizard.po 2022-10-11 
07:02:50.0 +0200
@@ -0,0 +1,746 @@
+# Translation for accountwizard.po to Euskara/Basque (eu).
+# Copyright (C) 2022 This file is copyright:
+# This file is distributed under the same license as the kmail-account-wizard 
package.
+# KDE euskaratzeko proiektuko arduraduna .
+#
+# Translators:
+# I??igo Salvador Azurmendi , 2022.
+msgid ""
+msgstr ""
+"Project-Id-Version: kmail-account-wizard\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n;
+"POT-Creation-Date: 2022-06-12 00:46+\n"
+"PO-Revision-Date: 2022-09-29 07:40+0200\n"
+"Last-Translator: I??igo Salvador Azurmendi \n"
+"Language-Team: Basque \n"
+"Language: eu\n"

commit kmime for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kmime for openSUSE:Factory checked 
in at 2022-10-15 16:34:11

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


Package is "kmime"

Sat Oct 15 16:34:11 2022 rev:87 rq:1010768 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kmime/kmime.changes  2022-09-09 
18:23:56.700338790 +0200
+++ /work/SRC/openSUSE:Factory/.kmime.new.2275/kmime.changes2022-10-15 
16:34:51.589778880 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:54 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kmime-22.08.1.tar.xz
  kmime-22.08.1.tar.xz.sig

New:

  kmime-22.08.2.tar.xz
  kmime-22.08.2.tar.xz.sig



Other differences:
--
++ kmime.spec ++
--- /var/tmp/diff_new_pack.kgBVRl/_old  2022-10-15 16:34:52.941782128 +0200
+++ /var/tmp/diff_new_pack.kgBVRl/_new  2022-10-15 16:34:52.941782128 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kmime
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE PIM libraries MIME support
 License:LGPL-2.1-or-later


++ kmime-22.08.1.tar.xz -> kmime-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmime-22.08.1/CMakeLists.txt 
new/kmime-22.08.2/CMakeLists.txt
--- old/kmime-22.08.1/CMakeLists.txt2022-08-19 06:58:27.0 +0200
+++ new/kmime-22.08.2/CMakeLists.txt2022-09-08 19:39:43.0 +0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(KMime VERSION ${PIM_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmime-22.08.1/po/ca@valencia/libkmime5.po 
new/kmime-22.08.2/po/ca@valencia/libkmime5.po
--- old/kmime-22.08.1/po/ca@valencia/libkmime5.po   2022-09-06 
02:14:01.0 +0200
+++ new/kmime-22.08.2/po/ca@valencia/libkmime5.po   2022-10-11 
07:01:29.0 +0200
@@ -96,4 +96,4 @@
 msgstr ""
 "No s'ha pogut generar d'una Notificaci?? de processament del missatge (MDN) "
 "per al missatge enviat el ${date} a ${to} amb l'assumpte ??${subject}??. El "
-"motiu s'especifica a la cap??alera ??Failure:?? de davall."
+"motiu s'especifica en la cap??alera ??Failure:?? de davall."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmime-22.08.1/po/zh_CN/libkmime5.po 
new/kmime-22.08.2/po/zh_CN/libkmime5.po
--- old/kmime-22.08.1/po/zh_CN/libkmime5.po 2022-09-06 02:14:02.0 
+0200
+++ new/kmime-22.08.2/po/zh_CN/libkmime5.po 2022-10-11 07:01:29.0 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2021-12-14 00:45+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kmail for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kmail for openSUSE:Factory checked 
in at 2022-10-15 16:34:07

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


Package is "kmail"

Sat Oct 15 16:34:07 2022 rev:77 rq:1010764 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kmail/kmail.changes  2022-09-09 
18:23:52.888327557 +0200
+++ /work/SRC/openSUSE:Factory/.kmail.new.2275/kmail.changes2022-10-15 
16:34:46.181765884 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:51 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kmail-22.08.1.tar.xz
  kmail-22.08.1.tar.xz.sig

New:

  kmail-22.08.2.tar.xz
  kmail-22.08.2.tar.xz.sig



Other differences:
--
++ kmail.spec ++
--- /var/tmp/diff_new_pack.smNDgv/_old  2022-10-15 16:34:46.781767325 +0200
+++ /var/tmp/diff_new_pack.smNDgv/_new  2022-10-15 16:34:46.789767345 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kmail
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Mail Client
 License:GPL-2.0-only


++ kmail-22.08.1.tar.xz -> kmail-22.08.2.tar.xz ++
/work/SRC/openSUSE:Factory/kmail/kmail-22.08.1.tar.xz 
/work/SRC/openSUSE:Factory/.kmail.new.2275/kmail-22.08.2.tar.xz differ: char 
26, line 1


commit kmag for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kmag for openSUSE:Factory checked in 
at 2022-10-15 16:34:06

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


Package is "kmag"

Sat Oct 15 16:34:06 2022 rev:132 rq:1010762 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kmag/kmag.changes2022-09-09 
18:23:51.768324257 +0200
+++ /work/SRC/openSUSE:Factory/.kmag.new.2275/kmag.changes  2022-10-15 
16:34:44.645762193 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:50 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kmag-22.08.1.tar.xz
  kmag-22.08.1.tar.xz.sig

New:

  kmag-22.08.2.tar.xz
  kmag-22.08.2.tar.xz.sig



Other differences:
--
++ kmag.spec ++
--- /var/tmp/diff_new_pack.clduin/_old  2022-10-15 16:34:45.673764663 +0200
+++ /var/tmp/diff_new_pack.clduin/_new  2022-10-15 16:34:45.681764682 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kmag
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Screen Magnifier
 License:GPL-2.0-only


++ kmag-22.08.1.tar.xz -> kmag-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmag-22.08.1/CMakeLists.txt 
new/kmag-22.08.2/CMakeLists.txt
--- old/kmag-22.08.1/CMakeLists.txt 2022-09-03 00:13:01.0 +0200
+++ new/kmag-22.08.2/CMakeLists.txt 2022-10-10 22:03:41.0 +0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(kmag VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmag-22.08.1/po/ca@valencia/kmag.po 
new/kmag-22.08.2/po/ca@valencia/kmag.po
--- old/kmag-22.08.1/po/ca@valencia/kmag.po 2022-09-06 02:06:24.0 
+0200
+++ new/kmag-22.08.2/po/ca@valencia/kmag.po 2022-10-11 06:51:58.0 
+0200
@@ -136,7 +136,7 @@
 "usage)"
 msgstr ""
 "En fer clic sobre esta icona s'iniciar?? / parar?? "
-"l'actualitzaci?? de la imatge. Si s'para l'actualitzaci??, el consum de "
+"l'actualitzaci?? de la imatge. Si es para l'actualitzaci??, el consum de "
 "pot??ncia del processador ser?? zero (??s de la CPU)"
 
 #: kmag.cpp:134
@@ -328,7 +328,7 @@
 #: kmag.cpp:227
 #, kde-format
 msgid ""
-msgstr ""
+msgstr "Act"
 
 #: kmag.cpp:230
 #, kde-format
@@ -460,7 +460,7 @@
 #: kmagui.rc:25
 #, kde-format
 msgid ""
-msgstr ""
+msgstr "Fi"
 
 #. i18n: ectx: Menu (edit)
 #: kmagui.rc:32
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmag-22.08.1/po/tr/kmag.po 
new/kmag-22.08.2/po/tr/kmag.po
--- old/kmag-22.08.1/po/tr/kmag.po  2022-09-06 02:06:25.0 +0200
+++ new/kmag-22.08.2/po/tr/kmag.po  2022-10-11 06:51:58.0 +0200
@@ -15,7 +15,7 @@
 "Project-Id-Version: kdeaccessibility-kde4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-01-02 00:39+\n"
-"PO-Revision-Date: 2022-04-12 10:49+0300\n"
+"PO-Revision-Date: 2022-10-08 12:47+0300\n"
 "Last-Translator: Emir SARI \n"
 "Language-Team: Turkish \n"
 "Language: tr\n"
@@ -23,7 +23,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 21.12.3\n"
+"X-Generator: Lokalize 22.08.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -94,7 +94,7 @@
 #: kmag.cpp:85
 #, kde-format
 msgid " Rotation (0 Degrees)"
-msgstr "??evir Yok (0??)"
+msgstr "D??n??rme Yok (0??)"
 
 #: kmag.cpp:85
 #, kde-format
@@ -295,17 +295,17 @@
 #: kmag.cpp:209
 #, kde-format
 msgid ""
-msgstr "??nla??"
+msgstr "??nla??t??r"
 
 #: kmag.cpp:212
 #, kde-format
 msgid "Select the zoom factor."
-msgstr "Yak??nla??ma oran??n?? se??."
+msgstr "Yak??nla??t??rma oran??n?? se??."
 
 #: kmag.cpp:213
 #, kde-format
 msgid "Zoom factor"
-msgstr "Yak??nla??ma oran??"
+msgstr "Yak??nla??t??rma oran??"
 
 #: kmag.cpp:216
 #, kde-format
@@ -315,22 +315,22 @@
 #: kmag.cpp:218
 #, kde-format
 msgid ""
-msgstr "??evi"
+msgstr "Drme"
 
 #: kmag.cpp:221
 #, kde-format
 msgid 

commit kmbox for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kmbox for openSUSE:Factory checked 
in at 2022-10-15 16:34:11

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


Package is "kmbox"

Sat Oct 15 16:34:11 2022 rev:86 rq:1010767 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kmbox/kmbox.changes  2022-09-09 
18:23:55.720335902 +0200
+++ /work/SRC/openSUSE:Factory/.kmbox.new.2275/kmbox.changes2022-10-15 
16:34:50.833777063 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:53 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kmbox-22.08.1.tar.xz
  kmbox-22.08.1.tar.xz.sig

New:

  kmbox-22.08.2.tar.xz
  kmbox-22.08.2.tar.xz.sig



Other differences:
--
++ kmbox.spec ++
--- /var/tmp/diff_new_pack.GT647P/_old  2022-10-15 16:34:51.305778197 +0200
+++ /var/tmp/diff_new_pack.GT647P/_new  2022-10-15 16:34:51.309778207 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kmbox
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE PIM Libraries: Mailbox functionality
 License:LGPL-2.1-or-later


++ kmbox-22.08.1.tar.xz -> kmbox-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmbox-22.08.1/CMakeLists.txt 
new/kmbox-22.08.2/CMakeLists.txt
--- old/kmbox-22.08.1/CMakeLists.txt2022-08-20 17:01:57.0 +0200
+++ new/kmbox-22.08.2/CMakeLists.txt2022-09-11 10:05:09.0 +0200
@@ -2,7 +2,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(KMbox VERSION ${PIM_VERSION})
 
@@ -33,7 +33,7 @@
 
 
 set(KMBOX_LIB_VERSION ${PIM_VERSION})
-set(KMIME_LIB_VERSION "5.21.1")
+set(KMIME_LIB_VERSION "5.21.2")
 option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt 
Assistant, Qt Creator & KDevelop)" OFF)
 add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
 ecm_setup_version(PROJECT VARIABLE_PREFIX KMBOX


commit kldap for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kldap for openSUSE:Factory checked 
in at 2022-10-15 16:34:04

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


Package is "kldap"

Sat Oct 15 16:34:04 2022 rev:87 rq:1010757 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kldap/kldap.changes  2022-09-09 
18:23:48.800315513 +0200
+++ /work/SRC/openSUSE:Factory/.kldap.new.2275/kldap.changes2022-10-15 
16:34:41.413754426 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:47 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kldap-22.08.1.tar.xz
  kldap-22.08.1.tar.xz.sig

New:

  kldap-22.08.2.tar.xz
  kldap-22.08.2.tar.xz.sig



Other differences:
--
++ kldap.spec ++
--- /var/tmp/diff_new_pack.Y09LzB/_old  2022-10-15 16:34:42.161756223 +0200
+++ /var/tmp/diff_new_pack.Y09LzB/_new  2022-10-15 16:34:42.169756243 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kldap
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE PIM Libraries
 License:LGPL-2.1-or-later


++ kldap-22.08.1.tar.xz -> kldap-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kldap-22.08.1/CMakeLists.txt 
new/kldap-22.08.2/CMakeLists.txt
--- old/kldap-22.08.1/CMakeLists.txt2022-08-19 06:57:31.0 +0200
+++ new/kldap-22.08.2/CMakeLists.txt2022-09-08 19:38:54.0 +0200
@@ -1,7 +1,7 @@
 # SPDX-FileCopyrightText: none
 # SPDX-License-Identifier: BSD-3-Clause
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(KLdap VERSION ${PIM_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kldap-22.08.1/po/ca@valencia/kio_ldap.po 
new/kldap-22.08.2/po/ca@valencia/kio_ldap.po
--- old/kldap-22.08.1/po/ca@valencia/kio_ldap.po2022-09-06 
02:13:46.0 +0200
+++ new/kldap-22.08.2/po/ca@valencia/kio_ldap.po2022-10-11 
07:01:07.0 +0200
@@ -68,4 +68,4 @@
 #: kio_ldap.cpp:687 kio_ldap.cpp:689
 #, kde-format
 msgid "Invalid Ldif file in line %1."
-msgstr "Fitxer LDIF no v??lid a la l??nia %1."
+msgstr "Fitxer LDIF no v??lid en la l??nia %1."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kldap-22.08.1/po/ca@valencia/libkldap5.po 
new/kldap-22.08.2/po/ca@valencia/libkldap5.po
--- old/kldap-22.08.1/po/ca@valencia/libkldap5.po   2022-09-06 
02:13:46.0 +0200
+++ new/kldap-22.08.2/po/ca@valencia/libkldap5.po   2022-10-11 
07:01:07.0 +0200
@@ -117,7 +117,7 @@
 #: widgets/ldapclientsearchconfigreadconfigjob.cpp:113
 #, kde-format
 msgid "Store clear text password in Wallet"
-msgstr "Guarda la contrasenya de text a la Cartera"
+msgstr "Guarda la contrasenya de text en la Cartera"
 
 #: widgets/ldapconfigurewidget.cpp:96
 #, kde-format
@@ -143,7 +143,7 @@
 #: widgets/ldapconfigurewidget.cpp:306
 #, kde-format
 msgid " Host..."
-msgstr " una m??quina..."
+msgstr "Afi una m??quina..."
 
 #: widgets/ldapconfigurewidget.cpp:308
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kldap-22.08.1/po/eu/kio_ldap.po 
new/kldap-22.08.2/po/eu/kio_ldap.po
--- old/kldap-22.08.1/po/eu/kio_ldap.po 2022-09-06 02:13:46.0 +0200
+++ new/kldap-22.08.2/po/eu/kio_ldap.po 2022-10-11 07:01:08.0 +0200
@@ -1,21 +1,26 @@
-# translation of kio_ldap.po to Basque
+# Translation for kio_ldap.po to Euskara/Basque (eu).
+# Copyright (C) 2004-2022 This file is copyright:
+# This file is distributed under the same license as the original file.
+# KDE euskaratzeko proiektuko arduraduna .
 #
+# Translators:
 # Marcos  , 2004.
 # Juan Irigoien , 2004.
 # marcos , 2006.
+# I??igo Salvador Azurmendi , 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio_ldap\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-07-04 00:46+\n"
-"PO-Revision-Date: 2006-02-07 11:05+0100\n"
-"Last-Translator: marcos \n"
-"Language-Team: Basque \n"
+"PO-Revision-Date: 2022-09-11 08:05+0200\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"
-"X-Generator: KBabel 1.11.1\n"

commit kitinerary for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kitinerary for openSUSE:Factory 
checked in at 2022-10-15 16:34:03

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


Package is "kitinerary"

Sat Oct 15 16:34:03 2022 rev:54 rq:1010755 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kitinerary/kitinerary.changes2022-09-09 
18:23:46.848309761 +0200
+++ /work/SRC/openSUSE:Factory/.kitinerary.new.2275/kitinerary.changes  
2022-10-15 16:34:39.837750638 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:46 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kitinerary-22.08.1.tar.xz
  kitinerary-22.08.1.tar.xz.sig

New:

  kitinerary-22.08.2.tar.xz
  kitinerary-22.08.2.tar.xz.sig



Other differences:
--
++ kitinerary.spec ++
--- /var/tmp/diff_new_pack.XXXWjj/_old  2022-10-15 16:34:40.357751888 +0200
+++ /var/tmp/diff_new_pack.XXXWjj/_new  2022-10-15 16:34:40.361751898 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without released
 Name:   kitinerary
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Data model and extraction system for travel reservations
 License:LGPL-2.1-or-later


++ kitinerary-22.08.1.tar.xz -> kitinerary-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitinerary-22.08.1/CMakeLists.txt 
new/kitinerary-22.08.2/CMakeLists.txt
--- old/kitinerary-22.08.1/CMakeLists.txt   2022-09-03 00:41:00.0 
+0200
+++ new/kitinerary-22.08.2/CMakeLists.txt   2022-10-10 22:29:22.0 
+0200
@@ -3,7 +3,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 project(KItinerary VERSION ${PIM_VERSION})
 
 set(KF5_MIN_VERSION "5.91.0")
@@ -41,8 +41,8 @@
 find_package(SharedMimeInfo 1.3 REQUIRED)
 endif()
 
-set(KMIME_VERSION "5.21.1")
-set(PIM_PKPASS "5.21.1")
+set(KMIME_VERSION "5.21.2")
+set(PIM_PKPASS "5.21.2")
 
 find_package(KF5Mime ${KMIME_VERSION} CONFIG REQUIRED)
 find_package(KPimPkPass ${PIM_PKPASS} CONFIG REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitinerary-22.08.1/autotests/locationutiltest.cpp 
new/kitinerary-22.08.2/autotests/locationutiltest.cpp
--- old/kitinerary-22.08.1/autotests/locationutiltest.cpp   2022-09-03 
00:41:00.0 +0200
+++ new/kitinerary-22.08.2/autotests/locationutiltest.cpp   2022-10-10 
22:29:22.0 +0200
@@ -42,6 +42,7 @@
 Airport txlAddress;
 txlAddress.setAddress(addr);
 Airport sxfAddress;
+addr.setAddressLocality(_("BERLIN"));
 sxfAddress.setAddress(addr);
 
 QVERIFY(LocationUtil::isSameLocation(txlAddress, sxfAddress, 
LocationUtil::CityLevel));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitinerary-22.08.1/autotests/mergeutiltest.cpp 
new/kitinerary-22.08.2/autotests/mergeutiltest.cpp
--- old/kitinerary-22.08.1/autotests/mergeutiltest.cpp  2022-09-03 
00:41:00.0 +0200
+++ new/kitinerary-22.08.2/autotests/mergeutiltest.cpp  2022-10-10 
22:29:22.0 +0200
@@ -143,6 +143,11 @@
 {_("DANIEL VRATIL"), {}, {} },
 {_("DANIEL VRATIL"), _("DANIEL"), _("VRATIL") }
 };
+
+QTest::newRow("transliteration") << QVector {
+{_("Bj??rn Lastname"), {}, {} },
+{_("BJAERN LASTNAME"), _("BJAERN"), _("LASTNAME") },
+};
 }
 
 void testIsSamePerson()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitinerary-22.08.1/autotests/scriptenginedata/iata-bcbp-demo.pdf-no-zxing.json
 
new/kitinerary-22.08.2/autotests/scriptenginedata/iata-bcbp-demo.pdf-no-zxing.json
--- 
old/kitinerary-22.08.1/autotests/scriptenginedata/iata-bcbp-demo.pdf-no-zxing.json
  2022-09-03 00:41:00.0 +0200
+++ 
new/kitinerary-22.08.2/autotests/scriptenginedata/iata-bcbp-demo.pdf-no-zxing.json
  2022-10-10 22:29:22.0 +0200
@@ -20,6 +20,7 @@
 "text": "  Akademy Airways\n  
Boarding Pass\nFrom: Vienna International, Terminal 2\nTo: Milano Malpensa, 
Terminal 1\nFlight: AK 1996\nGate: A36\nBoarding Time: 15:20\nDeparture Time: 
15:45\nArrival Time: 17:20\nPassenger: Dragon, Dr. Konqi\n"
 }
 ],
+"producer": "cairo 1.16.0 

commit kio_audiocd for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kio_audiocd for openSUSE:Factory 
checked in at 2022-10-15 16:34:02

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


Package is "kio_audiocd"

Sat Oct 15 16:34:02 2022 rev:129 rq:1010750 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kio_audiocd/kio_audiocd.changes  2022-09-09 
18:23:45.892306944 +0200
+++ /work/SRC/openSUSE:Factory/.kio_audiocd.new.2275/kio_audiocd.changes
2022-10-15 16:34:38.665747822 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:47 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  audiocd-kio-22.08.1.tar.xz
  audiocd-kio-22.08.1.tar.xz.sig

New:

  audiocd-kio-22.08.2.tar.xz
  audiocd-kio-22.08.2.tar.xz.sig



Other differences:
--
++ kio_audiocd.spec ++
--- /var/tmp/diff_new_pack.jLuehC/_old  2022-10-15 16:34:39.409749610 +0200
+++ /var/tmp/diff_new_pack.jLuehC/_new  2022-10-15 16:34:39.413749619 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kio_audiocd
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE I/O Slave for Audio CDs
 License:GPL-2.0-or-later


++ audiocd-kio-22.08.1.tar.xz -> audiocd-kio-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/audiocd-kio-22.08.1/data/org.kde.kio_audiocd.metainfo.xml 
new/audiocd-kio-22.08.2/data/org.kde.kio_audiocd.metainfo.xml
--- old/audiocd-kio-22.08.1/data/org.kde.kio_audiocd.metainfo.xml   
2022-09-03 00:14:08.0 +0200
+++ new/audiocd-kio-22.08.2/data/org.kde.kio_audiocd.metainfo.xml   
2022-10-10 22:04:48.0 +0200
@@ -82,7 +82,7 @@
 KIO AudioCD modulu, Dolphin fayl meneceri v?? ya K3b disk 
yazma t??tbiqi kimi, K??O i??l??yici modulunda i??l??m??k ??n istifad?? 
olunan t??tbiql??rin k??m??yi il?? kompakt-disk?? yaz??lan s??s v?? CD m??tni 
m??lumatlar??na giri?? ??ld?? etm??y?? imkan verir. Bu modul, kompakt-diskd??n 
audio m??lumatlar??n?? sad??c?? k??rm??kl?? onlar?? tan??nm audio 
formatlara ??evirm??y?? icaz?? verir. Modulun parametrl??rini "Multimedia" 
b??lm??sind??ki "Sistem ayarlar??"nda t??nziml??y?? bil??rsiniz.
 KIO AudioCD ??  
,  ?? KIO (  
Dolphin ?? k3b)     ?? ?? CD 
 ??  ?? ??. 
 ?? ?? 
?? ?? ?? ?? ??  ?? 
?? ??  ?? ?? ?? ?? 
??  ??  ??, 
 ??  "".
 El KIO AudioCD ??s un proc??s de treball KIO que habilita 
les aplicacions que admeten el KIO (com el Dolphin o el K3b) per a accedir a 
l'??udio CD i a les dades de text dels discs compactes d'??udio. Permet la 
conversi?? transparent de dades d'??udio en arrossegar i deixar anar cap als 
formats usuals i t?? un m??dul de configuraci?? a l'Arranjament del sistema a 
la secci?? ??Multim??dia??.
-KIO AudioCD ??s un proc??s de treball KIO que 
habilita les aplicacions que admeten KIO (com Dolphin o K3b) per a accedir a 
l'??udio CD i a les dades de text dels discs compactes d'??udio. Permet la 
conversi?? transparent de dades d'??udio en arrossegar i deixar anar cap als 
formats usuals i t?? un m??dul a Configuraci?? del sistema a la secci?? 
??Multim??dia??.
+KIO AudioCD ??s un proc??s de treball KIO que 
habilita les aplicacions que admeten KIO (com Dolphin o K3b) per a accedir a 
l'??udio CD i a les dades de text dels discs compactes d'??udio. Permet la 
conversi?? transparent de dades d'??udio en arrossegar i deixar anar cap als 
formats usuals i t?? un m??dul a Configuraci?? del sistema en la secci?? 
??Multim??dia??.
 KIO AudioCD er en KIO-worker der lader KIO-opm??rksomme 
programmer (s??som Dolphin eller k3b) tilg?? lyd og og cd-tekstdata p?? 
lyd-cd'er. Det muligg??r transparent tr??k og slip-konvertering af lyddata til 
de popul??re formater og har et konfigurationsmodul til Systemindstillinger 
tilg??ngeligt i Multimedie-sektionen.
 KIO AudioCD ist ein Ein-/Ausgabemodul, mit dem 
Anwendungen wie Dolphin oder K3b 

commit kio-extras5 for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kio-extras5 for openSUSE:Factory 
checked in at 2022-10-15 16:34:02

Comparing /work/SRC/openSUSE:Factory/kio-extras5 (Old)
 and  /work/SRC/openSUSE:Factory/.kio-extras5.new.2275 (New)


Package is "kio-extras5"

Sat Oct 15 16:34:02 2022 rev:115 rq:1010748 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kio-extras5/kio-extras5.changes  2022-09-09 
18:23:44.876303951 +0200
+++ /work/SRC/openSUSE:Factory/.kio-extras5.new.2275/kio-extras5.changes
2022-10-15 16:34:36.673743035 +0200
@@ -1,0 +2,10 @@
+Tue Oct 11 14:32:41 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+- Drop 0001-smb-kio_smb_browse-Check-error-code-EINVAL-to-prompt.patch
+  Fixed upstream
+
+---

Old:

  0001-smb-kio_smb_browse-Check-error-code-EINVAL-to-prompt.patch
  kio-extras-22.08.1.tar.xz
  kio-extras-22.08.1.tar.xz.sig

New:

  kio-extras-22.08.2.tar.xz
  kio-extras-22.08.2.tar.xz.sig



Other differences:
--
++ kio-extras5.spec ++
--- /var/tmp/diff_new_pack.Pqdmcu/_old  2022-10-15 16:34:37.797745736 +0200
+++ /var/tmp/diff_new_pack.Pqdmcu/_new  2022-10-15 16:34:37.805745756 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kio-extras5
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Additional KIO slaves for KDE applications
 License:GPL-2.0-or-later
@@ -32,8 +32,6 @@
 Source1:
https://download.kde.org/stable/release-service/%{version}/src/%{rname}-%{version}.tar.xz.sig
 Source2:applications.keyring
 %endif
-# PATCH-FIX-UPSTREAM 
https://invent.kde.org/network/kio-extras/-/merge_requests/165
-Patch0: 0001-smb-kio_smb_browse-Check-error-code-EINVAL-to-prompt.patch
 # openEXR causes build issues for Leap 15.2 & 15.3
 %if 0%{?suse_version} > 1500
 BuildRequires:  OpenEXR-devel


++ kio-extras-22.08.1.tar.xz -> kio-extras-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-22.08.1/CMakeLists.txt 
new/kio-extras-22.08.2/CMakeLists.txt
--- old/kio-extras-22.08.1/CMakeLists.txt   2022-09-02 23:48:28.0 
+0200
+++ new/kio-extras-22.08.2/CMakeLists.txt   2022-10-10 21:38:37.0 
+0200
@@ -3,7 +3,7 @@
 # KDE Applications Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 project(kio-extras VERSION ${RELEASE_SERVICE_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-22.08.1/po/ca/kio5_man.po 
new/kio-extras-22.08.2/po/ca/kio5_man.po
--- old/kio-extras-22.08.1/po/ca/kio5_man.po2022-09-06 02:12:09.0 
+0200
+++ new/kio-extras-22.08.2/po/ca/kio5_man.po2022-10-11 06:59:00.0 
+0200
@@ -1,25 +1,25 @@
 # Translation of kio5_man.po to Catalan
-# Copyright (C) 2000-2021 This_file_is_part_of_KDE
+# Copyright (C) 2000-2022 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.
 #
 # Sebasti?? Pla i Sanz , 2000, 2001, 2004, 2006.
 # Antoni Bella P??rez , 2002, 2003, 2016, 2020, 2021.
 # Albert Astals Cid , 2005.
-# Josep M. Ferrer , 2007, 2008, 2009, 2012, 2013, 2015, 
2019, 2020.
+# Josep M. Ferrer , 2007, 2008, 2009, 2012, 2013, 2015, 
2019, 2020, 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-07-07 00:44+\n"
-"PO-Revision-Date: 2021-09-03 16:15+0200\n"
-"Last-Translator: Antoni Bella P??rez \n"
+"PO-Revision-Date: 2022-09-07 19:17+0200\n"
+"Last-Translator: Josep M. Ferrer \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"
-"X-Generator: Lokalize 21.07.90\n"
+"X-Generator: Lokalize 20.12.0\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
@@ -68,7 +68,7 @@
 #: kio_man.cpp:660
 #, kde-format
 msgid "Manual Page Viewer Error"
-msgstr "Error del visor de les p??gines de manual"
+msgstr "Error del visualitzador de les p??gines de manual"
 
 #: 

commit khelpcenter5 for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package khelpcenter5 for openSUSE:Factory 
checked in at 2022-10-15 16:33:58

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


Package is "khelpcenter5"

Sat Oct 15 16:33:58 2022 rev:93 rq:1010741 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/khelpcenter5/khelpcenter5.changes
2022-09-09 18:23:39.572288323 +0200
+++ /work/SRC/openSUSE:Factory/.khelpcenter5.new.2275/khelpcenter5.changes  
2022-10-15 16:34:31.721731135 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:37 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  khelpcenter-22.08.1.tar.xz
  khelpcenter-22.08.1.tar.xz.sig

New:

  khelpcenter-22.08.2.tar.xz
  khelpcenter-22.08.2.tar.xz.sig



Other differences:
--
++ khelpcenter5.spec ++
--- /var/tmp/diff_new_pack.Hfogf3/_old  2022-10-15 16:34:32.677733433 +0200
+++ /var/tmp/diff_new_pack.Hfogf3/_new  2022-10-15 16:34:32.681733442 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   khelpcenter5
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE Documentation Application
 License:GPL-2.0-or-later


++ khelpcenter-22.08.1.tar.xz -> khelpcenter-22.08.2.tar.xz ++
 9011 lines of diff (skipped)


commit kidentitymanagement for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kidentitymanagement for 
openSUSE:Factory checked in at 2022-10-15 16:33:59

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


Package is "kidentitymanagement"

Sat Oct 15 16:33:59 2022 rev:85 rq:1010742 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kidentitymanagement/kidentitymanagement.changes  
2022-09-09 18:23:42.844297964 +0200
+++ 
/work/SRC/openSUSE:Factory/.kidentitymanagement.new.2275/kidentitymanagement.changes
2022-10-15 16:34:33.893736355 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:37 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kidentitymanagement-22.08.1.tar.xz
  kidentitymanagement-22.08.1.tar.xz.sig

New:

  kidentitymanagement-22.08.2.tar.xz
  kidentitymanagement-22.08.2.tar.xz.sig



Other differences:
--
++ kidentitymanagement.spec ++
--- /var/tmp/diff_new_pack.QFPZVb/_old  2022-10-15 16:34:35.557740353 +0200
+++ /var/tmp/diff_new_pack.QFPZVb/_new  2022-10-15 16:34:35.561740363 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kidentitymanagement
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE PIM Libraries: Identity Management
 License:LGPL-2.1-or-later


++ kidentitymanagement-22.08.1.tar.xz -> kidentitymanagement-22.08.2.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kidentitymanagement-22.08.1/CMakeLists.txt 
new/kidentitymanagement-22.08.2/CMakeLists.txt
--- old/kidentitymanagement-22.08.1/CMakeLists.txt  2022-08-20 
17:00:45.0 +0200
+++ new/kidentitymanagement-22.08.2/CMakeLists.txt  2022-09-11 
10:03:58.0 +0200
@@ -1,7 +1,7 @@
 # SPDX-FileCopyrightText: none
 # SPDX-License-Identifier: BSD-3-Clause
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(KIdentityManagement VERSION ${PIM_VERSION})
 
@@ -35,7 +35,7 @@
 add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
 
 set(KIDENTITYMANAGEMENT_LIB_VERSION ${PIM_VERSION})
-set(PIMTEXTEDIT_LIB_VERSION "5.21.1")
+set(PIMTEXTEDIT_LIB_VERSION "5.21.2")
 
 ecm_setup_version(PROJECT VARIABLE_PREFIX KIDENTITYMANAGEMENT
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kidentitymanagement_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kidentitymanagement-22.08.1/po/ca@valencia/libkpimidentities5.po 
new/kidentitymanagement-22.08.2/po/ca@valencia/libkpimidentities5.po
--- old/kidentitymanagement-22.08.1/po/ca@valencia/libkpimidentities5.po
2022-09-06 02:13:41.0 +0200
+++ new/kidentitymanagement-22.08.2/po/ca@valencia/libkpimidentities5.po
2022-10-11 07:01:00.0 +0200
@@ -109,7 +109,7 @@
 #: widgets/signatureconfigurator.cpp:203 widgets/signatureconfigurator.cpp:439
 #, kde-format
 msgid " HTML"
-msgstr " HTML"
+msgstr "Utilit HTML"
 
 #: widgets/signatureconfigurator.cpp:221
 #, kde-format
@@ -146,8 +146,8 @@
 "\"ksig -random\". (Be careful, script needs a shebang line)."
 msgstr ""
 "Ac?? podeu afegir una ordre arbitr??ria, amb cam?? o b?? sense, depenent de 
si "
-"l'ordre ??s o no a la variable d'entorn PATH. Per a cada correu nou, KMail "
-"executar?? l'ordre i utilitzar?? l'eixida (a l'eixida est??ndard) com a "
+"l'ordre es troba o no en la variable d'entorn PATH. Per a cada correu nou, "
+"KMail executar?? l'ordre i utilitzar?? l'eixida (a l'eixida est??ndard) com a 
"
 "signatura. Algunes ordres que s'utilitzen habitualment amb este mecanisme "
 "s??n ??fortune?? o ??ksig-random??. (Aneu amb compte, l'script necessita una "
 "l??nia ??shebang??)."
@@ -170,4 +170,4 @@
 #: widgets/signatureconfigurator.cpp:449
 #, kde-format
 msgid " HTML (disabling removes formatting)"
-msgstr " HTML (la inhabilitaci?? elimina el format)"
+msgstr "Utilit HTML (la inhabilitaci?? elimina el format)"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kidentitymanagement-22.08.1/po/ru/libkpimidentities5.po 
new/kidentitymanagement-22.08.2/po/ru/libkpimidentities5.po
--- old/kidentitymanagement-22.08.1/po/ru/libkpimidentities5.po 2022-09-06 
02:13:41.0 +0200
+++ 

commit kimap for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kimap for openSUSE:Factory checked 
in at 2022-10-15 16:34:00

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


Package is "kimap"

Sat Oct 15 16:34:00 2022 rev:87 rq:1010747 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kimap/kimap.changes  2022-09-09 
18:23:43.660300368 +0200
+++ /work/SRC/openSUSE:Factory/.kimap.new.2275/kimap.changes2022-10-15 
16:34:35.833741017 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:41 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kimap-22.08.1.tar.xz
  kimap-22.08.1.tar.xz.sig

New:

  kimap-22.08.2.tar.xz
  kimap-22.08.2.tar.xz.sig



Other differences:
--
++ kimap.spec ++
--- /var/tmp/diff_new_pack.kGHwrb/_old  2022-10-15 16:34:36.345742247 +0200
+++ /var/tmp/diff_new_pack.kGHwrb/_new  2022-10-15 16:34:36.349742257 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kimap
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE PIM Libraries: IMAP library
 License:LGPL-2.1-or-later


++ kimap-22.08.1.tar.xz -> kimap-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimap-22.08.1/CMakeLists.txt 
new/kimap-22.08.2/CMakeLists.txt
--- old/kimap-22.08.1/CMakeLists.txt2022-08-20 17:00:55.0 +0200
+++ new/kimap-22.08.2/CMakeLists.txt2022-09-11 10:04:10.0 +0200
@@ -2,7 +2,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(KIMAP VERSION ${PIM_VERSION})
 
@@ -35,7 +35,7 @@
 set(QT_REQUIRED_VERSION "5.15.2")
 
 set(KIMAP_LIB_VERSION ${PIM_VERSION})
-set(KMIME_LIBS_VERSION "5.21.1")
+set(KMIME_LIBS_VERSION "5.21.2")
 ecm_setup_version(PROJECT VARIABLE_PREFIX KIMAP
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kimap_version.h"
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5IMAPConfigVersion.cmake"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimap-22.08.1/po/ca@valencia/libkimap5.po 
new/kimap-22.08.2/po/ca@valencia/libkimap5.po
--- old/kimap-22.08.1/po/ca@valencia/libkimap5.po   2022-09-06 
02:13:44.0 +0200
+++ new/kimap-22.08.2/po/ca@valencia/libkimap5.po   2022-10-11 
07:01:04.0 +0200
@@ -171,7 +171,8 @@
 #: loginjob.cpp:353
 #, kde-format
 msgid "Internal error, tried to login before encryption"
-msgstr "Error intern, s'ha intentat l'entrada abans de l'encriptaci??"
+msgstr ""
+"S'ha produ??t un error intern, s'ha intentat l'entrada abans de 
l'encriptaci??"
 
 #: loginjob.cpp:362
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimap-22.08.1/po/ru/libkimap5.po 
new/kimap-22.08.2/po/ru/libkimap5.po
--- old/kimap-22.08.1/po/ru/libkimap5.po2022-09-06 02:13:44.0 
+0200
+++ new/kimap-22.08.2/po/ru/libkimap5.po2022-10-11 07:01:04.0 
+0200
@@ -4,20 +4,20 @@
 # Alexander Potashev , 2011, 2014, 2015.
 # Alexander Lakhin , 2013.
 # ??  , 2018.
-# Alexander Yavorsky , 2020.
+# Alexander Yavorsky , 2020, 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-05-11 00:45+\n"
-"PO-Revision-Date: 2020-11-08 22:07+0300\n"
+"PO-Revision-Date: 2022-10-01 15:04+0300\n"
 "Last-Translator: Alexander Yavorsky \n"
 "Language-Team: Russian \n"
 "Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 20.08.3\n"
+"X-Generator: Lokalize 21.08.3\n"
 "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n"
 "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Environment: kde\n"
@@ -218,7 +218,7 @@
 #: loginjob.cpp:353
 #, kde-format
 msgid "Internal error, tried to login before encryption"
-msgstr ""
+msgstr " : ?? ??  
 ?? "
 
 #: loginjob.cpp:362
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimap-22.08.1/po/zh_CN/libkimap5.po 

commit kdepim-addons for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kdepim-addons for openSUSE:Factory 
checked in at 2022-10-15 16:33:55

Comparing /work/SRC/openSUSE:Factory/kdepim-addons (Old)
 and  /work/SRC/openSUSE:Factory/.kdepim-addons.new.2275 (New)


Package is "kdepim-addons"

Sat Oct 15 16:33:55 2022 rev:83 rq:1010718 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kdepim-addons/kdepim-addons.changes  
2022-09-09 18:23:34.760274145 +0200
+++ /work/SRC/openSUSE:Factory/.kdepim-addons.new.2275/kdepim-addons.changes
2022-10-15 16:34:24.417713583 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:24 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kdepim-addons-22.08.1.tar.xz
  kdepim-addons-22.08.1.tar.xz.sig

New:

  kdepim-addons-22.08.2.tar.xz
  kdepim-addons-22.08.2.tar.xz.sig



Other differences:
--
++ kdepim-addons.spec ++
--- /var/tmp/diff_new_pack.ifwnUy/_old  2022-10-15 16:34:25.957717284 +0200
+++ /var/tmp/diff_new_pack.ifwnUy/_new  2022-10-15 16:34:25.961717294 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kdepim-addons
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Addons for KDE PIM applications
 License:GPL-2.0-only


++ kdepim-addons-22.08.1.tar.xz -> kdepim-addons-22.08.2.tar.xz ++
 8963 lines of diff (skipped)


commit kdepim-runtime for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kdepim-runtime for openSUSE:Factory 
checked in at 2022-10-15 16:33:56

Comparing /work/SRC/openSUSE:Factory/kdepim-runtime (Old)
 and  /work/SRC/openSUSE:Factory/.kdepim-runtime.new.2275 (New)


Package is "kdepim-runtime"

Sat Oct 15 16:33:56 2022 rev:97 rq:1010719 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kdepim-runtime/kdepim-runtime.changes
2022-09-09 18:23:36.680279802 +0200
+++ /work/SRC/openSUSE:Factory/.kdepim-runtime.new.2275/kdepim-runtime.changes  
2022-10-15 16:34:27.849721830 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:25 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kdepim-runtime-22.08.1.tar.xz
  kdepim-runtime-22.08.1.tar.xz.sig

New:

  kdepim-runtime-22.08.2.tar.xz
  kdepim-runtime-22.08.2.tar.xz.sig



Other differences:
--
++ kdepim-runtime.spec ++
--- /var/tmp/diff_new_pack.Tebfrm/_old  2022-10-15 16:34:28.473723330 +0200
+++ /var/tmp/diff_new_pack.Tebfrm/_new  2022-10-15 16:34:28.477723339 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kdepim-runtime
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Akonadi resources for PIM applications
 License:GPL-2.0-or-later AND GPL-3.0-or-later


++ kdepim-runtime-22.08.1.tar.xz -> kdepim-runtime-22.08.2.tar.xz ++
 1821 lines of diff (skipped)


commit kdialog for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kdialog for openSUSE:Factory checked 
in at 2022-10-15 16:33:57

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


Package is "kdialog"

Sat Oct 15 16:33:57 2022 rev:71 rq:1010728 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kdialog/kdialog.changes  2022-09-09 
18:23:38.476285094 +0200
+++ /work/SRC/openSUSE:Factory/.kdialog.new.2275/kdialog.changes
2022-10-15 16:34:29.509725819 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:29 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kdialog-22.08.1.tar.xz
  kdialog-22.08.1.tar.xz.sig

New:

  kdialog-22.08.2.tar.xz
  kdialog-22.08.2.tar.xz.sig



Other differences:
--
++ kdialog.spec ++
--- /var/tmp/diff_new_pack.dBX8VY/_old  2022-10-15 16:34:30.617728482 +0200
+++ /var/tmp/diff_new_pack.dBX8VY/_new  2022-10-15 16:34:30.621728492 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kdialog
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE version of xdialog
 License:GPL-2.0-or-later


++ kdialog-22.08.1.tar.xz -> kdialog-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdialog-22.08.1/CMakeLists.txt 
new/kdialog-22.08.2/CMakeLists.txt
--- old/kdialog-22.08.1/CMakeLists.txt  2022-09-02 23:57:21.0 +0200
+++ new/kdialog-22.08.2/CMakeLists.txt  2022-10-10 21:45:17.0 +0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 set(RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(KDialog VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdialog-22.08.1/org.kde.kdialog.metainfo.xml 
new/kdialog-22.08.2/org.kde.kdialog.metainfo.xml
--- old/kdialog-22.08.1/org.kde.kdialog.metainfo.xml2022-09-02 
23:57:21.0 +0200
+++ new/kdialog-22.08.2/org.kde.kdialog.metainfo.xml2022-10-10 
21:45:17.0 +0200
@@ -134,9 +134,9 @@
 Utility
   
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdialog-22.08.1/po/zh_CN/kdialog.po 
new/kdialog-22.08.2/po/zh_CN/kdialog.po
--- old/kdialog-22.08.1/po/zh_CN/kdialog.po 2022-09-06 02:00:41.0 
+0200
+++ new/kdialog-22.08.2/po/zh_CN/kdialog.po 2022-10-11 06:45:29.0 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-05-25 00:48+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kdeconnect-kde for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kdeconnect-kde for openSUSE:Factory 
checked in at 2022-10-15 16:33:54

Comparing /work/SRC/openSUSE:Factory/kdeconnect-kde (Old)
 and  /work/SRC/openSUSE:Factory/.kdeconnect-kde.new.2275 (New)


Package is "kdeconnect-kde"

Sat Oct 15 16:33:54 2022 rev:55 rq:1010713 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kdeconnect-kde/kdeconnect-kde.changes
2022-09-09 18:23:33.652270881 +0200
+++ /work/SRC/openSUSE:Factory/.kdeconnect-kde.new.2275/kdeconnect-kde.changes  
2022-10-15 16:34:22.493708959 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:19 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kdeconnect-kde-22.08.1.tar.xz
  kdeconnect-kde-22.08.1.tar.xz.sig

New:

  kdeconnect-kde-22.08.2.tar.xz
  kdeconnect-kde-22.08.2.tar.xz.sig



Other differences:
--
++ kdeconnect-kde.spec ++
--- /var/tmp/diff_new_pack.Bhs9Tl/_old  2022-10-15 16:34:23.877712285 +0200
+++ /var/tmp/diff_new_pack.Bhs9Tl/_new  2022-10-15 16:34:23.881712295 +0200
@@ -20,7 +20,7 @@
 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 Name:   kdeconnect-kde
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Integration of Android with Linux desktops
 License:GPL-2.0-or-later


++ kdeconnect-kde-22.08.1.tar.xz -> kdeconnect-kde-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeconnect-kde-22.08.1/CMakeLists.txt 
new/kdeconnect-kde-22.08.2/CMakeLists.txt
--- old/kdeconnect-kde-22.08.1/CMakeLists.txt   2022-09-05 04:46:13.0 
+0200
+++ new/kdeconnect-kde-22.08.2/CMakeLists.txt   2022-10-10 22:31:42.0 
+0200
@@ -3,7 +3,7 @@
 # KDE Release Service Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(kdeconnect VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeconnect-kde-22.08.1/data/org.kde.kdeconnect.metainfo.xml 
new/kdeconnect-kde-22.08.2/data/org.kde.kdeconnect.metainfo.xml
--- old/kdeconnect-kde-22.08.1/data/org.kde.kdeconnect.metainfo.xml 
2022-09-05 04:46:13.0 +0200
+++ new/kdeconnect-kde-22.08.2/data/org.kde.kdeconnect.metainfo.xml 
2022-10-10 22:31:42.0 +0200
@@ -178,9 +178,9 @@
 https://apps.apple.com/app/kde-connect/id1580245991
   
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeconnect-kde-22.08.1/kcm/kcm_kdeconnect.desktop 
new/kdeconnect-kde-22.08.2/kcm/kcm_kdeconnect.desktop
--- old/kdeconnect-kde-22.08.1/kcm/kcm_kdeconnect.desktop   2022-09-05 
04:46:13.0 +0200
+++ new/kdeconnect-kde-22.08.2/kcm/kcm_kdeconnect.desktop   2022-10-10 
22:31:42.0 +0200
@@ -124,6 +124,7 @@
 X-KDE-Keywords[hu]=h??l??zat,kde 
connect,csatlakoztat??s,telefon,szinkroniz??l??s,mobil,android,ios,f??jlok 
k??ld??se,f??jlok megoszt??sa,f??jlok ??tvitele,f??jlok 
fogad??sa,eszk??z??k,eszk??z,szinkroniz??ci??,h??v??sok,telefon,okostelefon,n??vjegyek,sms,telefonos
 ??rtes??t??sek,hanger??szab??lyz??s,rendszer 
hanger??,cseng??hang,hanglej??tsz??s,prezent??ci??,k??p k??sz??t??se,f??nyk??p 
k??sz??t??se,megosztott v??g??lap,kapcsol??d??sfigyel??,t??voli bevitel,t??voli 
eg??r,t??voli billenty??zet,mpris,telefonos integr??ci??,parancsok,eszk??z 
z??rol??sa,multim??dia vez??rl??k,sftp,telefon b??ng??sz??se,megoszt??s
 X-KDE-Keywords[ia]=rete,kde 
connect,connecte,telephono,sync,mobile,android,ios,invia files,comparti 
files,transfere files,recipe 
files,dispositivos,dispossitivo,synchronization,appellos,telephono,smartphone,contactos,sms,notificationes
 de telephono,volumine de controlo, volumine de systema, soneria,sona 
sono,presentation,prende photo,area de transferentia compartite,monitor de 
connectivitate, entrata remote, mus remote,claviero remote,mpris,integration de 
telephono,commandos,bloca dispositivo,controlo de multimedia, sftp,naviga 
telephono,comparti
 X-KDE-Keywords[id]=Jaringan,kde 
connect,koneksi,telepon,sinkronkan,mobile,android,ios,kirim 

commit kcalc for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kcalc for openSUSE:Factory checked 
in at 2022-10-15 16:33:50

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


Package is "kcalc"

Sat Oct 15 16:33:50 2022 rev:137 rq:1010703 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kcalc/kcalc.changes  2022-09-09 
18:23:27.664253237 +0200
+++ /work/SRC/openSUSE:Factory/.kcalc.new.2275/kcalc.changes2022-10-15 
16:34:12.525685006 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:15 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kcalc-22.08.1.tar.xz
  kcalc-22.08.1.tar.xz.sig

New:

  kcalc-22.08.2.tar.xz
  kcalc-22.08.2.tar.xz.sig



Other differences:
--
++ kcalc.spec ++
--- /var/tmp/diff_new_pack.uFqn2C/_old  2022-10-15 16:34:13.805688082 +0200
+++ /var/tmp/diff_new_pack.uFqn2C/_new  2022-10-15 16:34:13.809688091 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kcalc
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Scientific Calculator
 License:GPL-2.0-or-later


++ kcalc-22.08.1.tar.xz -> kcalc-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalc-22.08.1/CMakeLists.txt 
new/kcalc-22.08.2/CMakeLists.txt
--- old/kcalc-22.08.1/CMakeLists.txt2022-09-03 00:09:17.0 +0200
+++ new/kcalc-22.08.2/CMakeLists.txt2022-10-10 22:00:13.0 +0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 project(kcalc VERSION ${RELEASE_SERVICE_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalc-22.08.1/org.kde.kcalc.appdata.xml 
new/kcalc-22.08.2/org.kde.kcalc.appdata.xml
--- old/kcalc-22.08.1/org.kde.kcalc.appdata.xml 2022-09-03 00:09:17.0 
+0200
+++ new/kcalc-22.08.2/org.kde.kcalc.appdata.xml 2022-10-10 22:00:13.0 
+0200
@@ -249,8 +249,8 @@
    ??   ?? 
??
   R??q??ml??rin k??silm??si v?? yerldirilm??si
   ?? ?? ?? ?? 
??  ?? ?? ??
-  El visor permet retallar i enganxar nombres
-  El visor permet retallar i apegar nombres
+  La pantalla permet retallar i enganxar nombres
+  La pantalla permet retallar i apegar 
nombres
   In der Anzeige k??nnen Zahlen kopiert und eingef??gt 
werden
   ?? ?? ?? ?? ?? 
 ??
   The display allows cut and paste of numbers
@@ -286,8 +286,8 @@
   ?? ??   
?? ?? ?? ??  
   ??riftl??rin v?? r??ngl??rin ayarlanmas?? 
m??mk??nl??y??
      ??  
??     -?? 
??
-  Els colors del visor i el tipus de lletra s??n 
configurables, ajudant a la usabilitat
-  Els colors del visor i el tipus de lletra 
s??n configurables, ajudant a la usabilitat
+  Els colors i el tipus de lletra de la pantalla s??n 
configurables, ajudant a la usabilitat
+  Els colors i el tipus de lletra de la 
pantalla s??n configurables, ajudant a la usabilitat
   Farbe und Zeichensatz der Anzeige k??nnen angepasst 
werden und verbessern damit die Lesbarkeit
    ?? ?? ?? 
?? ??  ?? 
, ?? ?? 
??
   The display colours and font are configurable, 
aiding usability
@@ -379,7 +379,7 @@
   Xanela principal de KCalc
   A KCalc f??ablaka
   Fenestra principal de KCalc
-  Window utama KCalc
+  Jendela utama KCalc
   Finestra principale di KCalc
   KCalc ???
   KCalc ??? ???
@@ -418,7 +418,7 @@
   Fen??tre de KCalc en mode Syst??me 
num??rique
   A KCalc sz??mrendszer m??dj??nak ablaka
   

commit kcolorchooser for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kcolorchooser for openSUSE:Factory 
checked in at 2022-10-15 16:33:52

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


Package is "kcolorchooser"

Sat Oct 15 16:33:52 2022 rev:144 rq:1010706 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kcolorchooser/kcolorchooser.changes  
2022-09-09 18:23:31.600264834 +0200
+++ /work/SRC/openSUSE:Factory/.kcolorchooser.new.2275/kcolorchooser.changes
2022-10-15 16:34:16.837695368 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:17 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kcolorchooser-22.08.1.tar.xz
  kcolorchooser-22.08.1.tar.xz.sig

New:

  kcolorchooser-22.08.2.tar.xz
  kcolorchooser-22.08.2.tar.xz.sig



Other differences:
--
++ kcolorchooser.spec ++
--- /var/tmp/diff_new_pack.NtdtjA/_old  2022-10-15 16:34:18.889700299 +0200
+++ /var/tmp/diff_new_pack.NtdtjA/_new  2022-10-15 16:34:18.893700309 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kcolorchooser
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Color Chooser
 License:MIT


++ kcolorchooser-22.08.1.tar.xz -> kcolorchooser-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcolorchooser-22.08.1/CMakeLists.txt 
new/kcolorchooser-22.08.2/CMakeLists.txt
--- old/kcolorchooser-22.08.1/CMakeLists.txt2022-09-05 04:09:15.0 
+0200
+++ new/kcolorchooser-22.08.2/CMakeLists.txt2022-10-10 21:56:50.0 
+0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 set(RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(kcolorchooser VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kcolorchooser-22.08.1/org.kde.kcolorchooser.appdata.xml 
new/kcolorchooser-22.08.2/org.kde.kcolorchooser.appdata.xml
--- old/kcolorchooser-22.08.1/org.kde.kcolorchooser.appdata.xml 2022-09-05 
04:09:15.0 +0200
+++ new/kcolorchooser-22.08.2/org.kde.kcolorchooser.appdata.xml 2022-10-10 
21:56:50.0 +0200
@@ -145,10 +145,10 @@
   
   org.kde.kcolorchooser.desktop
   
+
 
 
 
-
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcolorchooser-22.08.1/po/zh_CN/kcolorchooser.po 
new/kcolorchooser-22.08.2/po/zh_CN/kcolorchooser.po
--- old/kcolorchooser-22.08.1/po/zh_CN/kcolorchooser.po 2022-09-06 
02:05:07.0 +0200
+++ new/kcolorchooser-22.08.2/po/zh_CN/kcolorchooser.po 2022-10-11 
06:50:13.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2021-12-23 00:42+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kde-print-manager for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kde-print-manager for 
openSUSE:Factory checked in at 2022-10-15 16:33:53

Comparing /work/SRC/openSUSE:Factory/kde-print-manager (Old)
 and  /work/SRC/openSUSE:Factory/.kde-print-manager.new.2275 (New)


Package is "kde-print-manager"

Sat Oct 15 16:33:53 2022 rev:91 rq:1010711 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kde-print-manager/kde-print-manager.changes  
2022-09-09 18:23:32.576267710 +0200
+++ 
/work/SRC/openSUSE:Factory/.kde-print-manager.new.2275/kde-print-manager.changes
2022-10-15 16:34:19.521701817 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:33:56 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  print-manager-22.08.1.tar.xz
  print-manager-22.08.1.tar.xz.sig

New:

  print-manager-22.08.2.tar.xz
  print-manager-22.08.2.tar.xz.sig



Other differences:
--
++ kde-print-manager.spec ++
--- /var/tmp/diff_new_pack.qAwTxT/_old  2022-10-15 16:34:22.101708018 +0200
+++ /var/tmp/diff_new_pack.qAwTxT/_new  2022-10-15 16:34:22.105708027 +0200
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kde-print-manager
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Tools for managing print jobs and printers
 License:GPL-2.0-or-later


++ print-manager-22.08.1.tar.xz -> print-manager-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/print-manager-22.08.1/CMakeLists.txt 
new/print-manager-22.08.2/CMakeLists.txt
--- old/print-manager-22.08.1/CMakeLists.txt2022-09-03 00:12:21.0 
+0200
+++ new/print-manager-22.08.2/CMakeLists.txt2022-10-10 22:03:00.0 
+0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(print-manager VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/print-manager-22.08.1/org.kde.print-manager.metainfo.xml 
new/print-manager-22.08.2/org.kde.print-manager.metainfo.xml
--- old/print-manager-22.08.1/org.kde.print-manager.metainfo.xml
2022-09-03 00:12:21.0 +0200
+++ new/print-manager-22.08.2/org.kde.print-manager.metainfo.xml
2022-10-10 22:03:00.0 +0200
@@ -173,9 +173,9 @@
   
   printer
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/print-manager-22.08.1/po/id/print-manager.po 
new/print-manager-22.08.2/po/id/print-manager.po
--- old/print-manager-22.08.1/po/id/print-manager.po2022-09-06 
02:06:19.0 +0200
+++ new/print-manager-22.08.2/po/id/print-manager.po2022-10-11 
06:51:50.0 +0200
@@ -8,9 +8,9 @@
 "Project-Id-Version: print-manager\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-05-16 00:48+\n"
-"PO-Revision-Date: 2022-08-26 23:44+0700\n"
+"PO-Revision-Date: 2022-09-27 17:15+0700\n"
 "Last-Translator: Wantoy??k \n"
-"Language-Team: https://t.me/Localizations_KDE_Indonesia\n;
+"Language-Team: Indonesian \n"
 "Language: id\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -374,7 +374,7 @@
 #: add-printer/main.cpp:41
 #, kde-format
 msgid "Parent Window ID"
-msgstr "ID Window Induk"
+msgstr "ID Jendela Induk"
 
 #: add-printer/main.cpp:44
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/print-manager-22.08.1/po/ja/plasma_applet_org.kde.plasma.printmanager.po 
new/print-manager-22.08.2/po/ja/plasma_applet_org.kde.plasma.printmanager.po
--- 
old/print-manager-22.08.1/po/ja/plasma_applet_org.kde.plasma.printmanager.po
2022-09-06 02:06:19.0 +0200
+++ 
new/print-manager-22.08.2/po/ja/plasma_applet_org.kde.plasma.printmanager.po
2022-10-11 06:51:50.0 +0200
@@ -94,6 +94,3 @@
 #: plasmoid/package/contents/ui/printmanager.qml:149
 msgid " Printers..."
 msgstr "?()..."
-
-#~ msgid "Search for a printer..."
-#~ msgstr "?..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit kcalutils for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kcalutils for openSUSE:Factory 
checked in at 2022-10-15 16:33:51

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


Package is "kcalutils"

Sat Oct 15 16:33:51 2022 rev:88 rq:1010704 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kcalutils/kcalutils.changes  2022-09-09 
18:23:29.328258140 +0200
+++ /work/SRC/openSUSE:Factory/.kcalutils.new.2275/kcalutils.changes
2022-10-15 16:34:14.457689649 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:16 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kcalutils-22.08.1.tar.xz
  kcalutils-22.08.1.tar.xz.sig

New:

  kcalutils-22.08.2.tar.xz
  kcalutils-22.08.2.tar.xz.sig



Other differences:
--
++ kcalutils.spec ++
--- /var/tmp/diff_new_pack.V1KLra/_old  2022-10-15 16:34:15.549692273 +0200
+++ /var/tmp/diff_new_pack.V1KLra/_new  2022-10-15 16:34:15.553692282 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kcalutils
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Library with utility functions for handling calendar data
 License:LGPL-2.1-or-later


++ kcalutils-22.08.1.tar.xz -> kcalutils-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalutils-22.08.1/CMakeLists.txt 
new/kcalutils-22.08.2/CMakeLists.txt
--- old/kcalutils-22.08.1/CMakeLists.txt2022-08-20 17:00:12.0 
+0200
+++ new/kcalutils-22.08.2/CMakeLists.txt2022-09-11 10:03:27.0 
+0200
@@ -2,7 +2,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 project(KCalUtils VERSION ${PIM_VERSION})
 
 # ECM setup
@@ -38,7 +38,7 @@
 add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
 
 set(CALENDARUTILS_LIB_VERSION ${PIM_VERSION})
-set(IDENTITYMANAGER_LIB_VERSION "5.21.1")
+set(IDENTITYMANAGER_LIB_VERSION "5.21.2")
 ecm_setup_version(PROJECT VARIABLE_PREFIX KCALUTILS
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kcalutils_version.h"
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5CalendarUtilsConfigVersion.cmake"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalutils-22.08.1/po/ca@valencia/libkcalutils5.po 
new/kcalutils-22.08.2/po/ca@valencia/libkcalutils5.po
--- old/kcalutils-22.08.1/po/ca@valencia/libkcalutils5.po   2022-09-06 
02:13:38.0 +0200
+++ new/kcalutils-22.08.2/po/ca@valencia/libkcalutils5.po   2022-10-11 
07:00:56.0 +0200
@@ -755,7 +755,7 @@
 #: src/incidenceformatter.cpp:1991
 #, kde-format
 msgid "Record invitation in my to-do list"
-msgstr "Grava la invitaci?? a la meua llista de tasques pendents"
+msgstr "Grava la invitaci?? en la meua llista de tasques pendents"
 
 #: src/incidenceformatter.cpp:1992
 #, kde-format
@@ -765,7 +765,7 @@
 #: src/incidenceformatter.cpp:2005
 #, kde-format
 msgid "Record response in my to-do list"
-msgstr "Grava la resposta a la meua llista de tasques pendents"
+msgstr "Grava la resposta en la meua llista de tasques pendents"
 
 #: src/incidenceformatter.cpp:2005
 #, kde-format
@@ -1954,13 +1954,13 @@
 #, kde-format
 msgctxt "@item"
 msgid "Parse Error in libical"
-msgstr "S'ha produ??t un error d'an??lisi a la ??libical??"
+msgstr "S'ha produ??t un error d'an??lisi en la ??libical??"
 
 #: src/stringify.cpp:167
 #, kde-format
 msgctxt "@item"
 msgid "Parse Error in the kcalcore library"
-msgstr "S'ha produ??t un error d'an??lisi a la biblioteca ??kcalcore??"
+msgstr "S'ha produ??t un error d'an??lisi en la biblioteca ??kcalcore??"
 
 #: src/stringify.cpp:170
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalutils-22.08.1/po/ja/libkcalutils5.po 
new/kcalutils-22.08.2/po/ja/libkcalutils5.po
--- old/kcalutils-22.08.1/po/ja/libkcalutils5.po2022-09-06 
02:13:38.0 +0200
+++ new/kcalutils-22.08.2/po/ja/libkcalutils5.po2022-10-11 
07:00:56.0 +0200
@@ -2485,8 +2485,3 @@
 #| msgid "Percent Done:"
 msgid "Percent done:"
 msgstr "?:"
-
-#~ msgid "Category:"
-#~ msgid_plural "Categories:"
-#~ msgstr[0] ":"

commit kcharselect for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kcharselect for openSUSE:Factory 
checked in at 2022-10-15 16:33:52

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


Package is "kcharselect"

Sat Oct 15 16:33:52 2022 rev:138 rq:1010705 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kcharselect/kcharselect.changes  2022-09-09 
18:23:30.704262195 +0200
+++ /work/SRC/openSUSE:Factory/.kcharselect.new.2275/kcharselect.changes
2022-10-15 16:34:15.989693330 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:17 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kcharselect-22.08.1.tar.xz
  kcharselect-22.08.1.tar.xz.sig

New:

  kcharselect-22.08.2.tar.xz
  kcharselect-22.08.2.tar.xz.sig



Other differences:
--
++ kcharselect.spec ++
--- /var/tmp/diff_new_pack.1i8hFT/_old  2022-10-15 16:34:16.501694560 +0200
+++ /var/tmp/diff_new_pack.1i8hFT/_new  2022-10-15 16:34:16.505694570 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kcharselect
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE Character Selector
 License:GPL-2.0-or-later


++ kcharselect-22.08.1.tar.xz -> kcharselect-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcharselect-22.08.1/CMakeLists.txt 
new/kcharselect-22.08.2/CMakeLists.txt
--- old/kcharselect-22.08.1/CMakeLists.txt  2022-09-05 04:47:15.0 
+0200
+++ new/kcharselect-22.08.2/CMakeLists.txt  2022-10-10 23:27:17.0 
+0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 set(RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(kcharselect VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcharselect-22.08.1/org.kde.kcharselect.appdata.xml 
new/kcharselect-22.08.2/org.kde.kcharselect.appdata.xml
--- old/kcharselect-22.08.1/org.kde.kcharselect.appdata.xml 2022-09-05 
04:47:15.0 +0200
+++ new/kcharselect-22.08.2/org.kde.kcharselect.appdata.xml 2022-10-10 
23:27:17.0 +0200
@@ -274,16 +274,15 @@
   https://www.kde.org/images/screenshots/kcharselect.png
 
   
-  
   KDE
   
 kcharselect
   
   org.kde.kcharselect.desktop
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcharselect-22.08.1/po/zh_CN/kcharselect.po 
new/kcharselect-22.08.2/po/zh_CN/kcharselect.po
--- old/kcharselect-22.08.1/po/zh_CN/kcharselect.po 2022-09-06 
02:05:58.0 +0200
+++ new/kcharselect-22.08.2/po/zh_CN/kcharselect.po 2022-10-11 
06:51:21.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2021-12-23 00:47+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kamera for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kamera for openSUSE:Factory checked 
in at 2022-10-15 16:33:48

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


Package is "kamera"

Sat Oct 15 16:33:48 2022 rev:145 rq:1010688 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kamera/kamera.changes2022-09-09 
18:23:24.948245235 +0200
+++ /work/SRC/openSUSE:Factory/.kamera.new.2275/kamera.changes  2022-10-15 
16:34:09.661678123 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:07 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kamera-22.08.1.tar.xz
  kamera-22.08.1.tar.xz.sig

New:

  kamera-22.08.2.tar.xz
  kamera-22.08.2.tar.xz.sig



Other differences:
--
++ kamera.spec ++
--- /var/tmp/diff_new_pack.bdTdQ0/_old  2022-10-15 16:34:10.709680641 +0200
+++ /var/tmp/diff_new_pack.bdTdQ0/_new  2022-10-15 16:34:10.713680651 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kamera
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Digital camera support for KDE applications
 License:LGPL-2.1-or-later


++ kamera-22.08.1.tar.xz -> kamera-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-22.08.1/CMakeLists.txt 
new/kamera-22.08.2/CMakeLists.txt
--- old/kamera-22.08.1/CMakeLists.txt   2022-09-04 04:12:20.0 +0200
+++ new/kamera-22.08.2/CMakeLists.txt   2022-10-10 21:56:31.0 +0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set(RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 set(PROJECT_VERSION ${RELEASE_SERVICE_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-22.08.1/kcontrol/kamera.json 
new/kamera-22.08.2/kcontrol/kamera.json
--- old/kamera-22.08.1/kcontrol/kamera.json 2022-09-04 04:12:20.0 
+0200
+++ new/kamera-22.08.2/kcontrol/kamera.json 2022-10-10 21:56:31.0 
+0200
@@ -27,6 +27,7 @@
 "Description[pt]": "Configurar o Kamera",
 "Description[pt_BR]": "Configurar o Kamera",
 "Description[ro]": "Configureaz?? Kamera",
+"Description[ru]": "?? Kamera",
 "Description[sk]": "Nastavenie fotoapar??tu",
 "Description[sl]": "Nastavi Kamero",
 "Description[sv]": "Anpassa Kamera",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-22.08.1/org.kde.kamera.metainfo.xml 
new/kamera-22.08.2/org.kde.kamera.metainfo.xml
--- old/kamera-22.08.1/org.kde.kamera.metainfo.xml  2022-09-04 
04:12:20.0 +0200
+++ new/kamera-22.08.2/org.kde.kamera.metainfo.xml  2022-10-10 
21:56:31.0 +0200
@@ -141,9 +141,9 @@
   
   camera-photo
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-22.08.1/po/zh_CN/kcmkamera.po 
new/kamera-22.08.2/po/zh_CN/kcmkamera.po
--- old/kamera-22.08.1/po/zh_CN/kcmkamera.po2022-09-06 02:05:04.0 
+0200
+++ new/kamera-22.08.2/po/zh_CN/kcmkamera.po2022-10-11 06:50:09.0 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-10-24 02:16+0200\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-22.08.1/po/zh_CN/kio5_kamera.po 
new/kamera-22.08.2/po/zh_CN/kio5_kamera.po
--- old/kamera-22.08.1/po/zh_CN/kio5_kamera.po  2022-09-06 02:05:04.0 
+0200
+++ new/kamera-22.08.2/po/zh_CN/kio5_kamera.po  2022-10-11 06:50:09.0 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-02-17 00:42+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kate for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kate for openSUSE:Factory checked in 
at 2022-10-15 16:33:49

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


Package is "kate"

Sat Oct 15 16:33:49 2022 rev:149 rq:1010693 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kate/kate.changes2022-09-09 
18:23:26.660250278 +0200
+++ /work/SRC/openSUSE:Factory/.kate.new.2275/kate.changes  2022-10-15 
16:34:11.389682276 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:10 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kate-22.08.1.tar.xz
  kate-22.08.1.tar.xz.sig

New:

  kate-22.08.2.tar.xz
  kate-22.08.2.tar.xz.sig



Other differences:
--
++ kate.spec ++
--- /var/tmp/diff_new_pack.G1BOkv/_old  2022-10-15 16:34:11.993683727 +0200
+++ /var/tmp/diff_new_pack.G1BOkv/_new  2022-10-15 16:34:12.001683746 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kate
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Advanced Text Editor
 License:GPL-3.0-or-later


++ kate-22.08.1.tar.xz -> kate-22.08.2.tar.xz ++
/work/SRC/openSUSE:Factory/kate/kate-22.08.1.tar.xz 
/work/SRC/openSUSE:Factory/.kate.new.2275/kate-22.08.2.tar.xz differ: char 26, 
line 1


commit kaddressbook for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kaddressbook for openSUSE:Factory 
checked in at 2022-10-15 16:33:48

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


Package is "kaddressbook"

Sat Oct 15 16:33:48 2022 rev:77 rq:1010682 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kaddressbook/kaddressbook.changes
2022-09-09 18:23:23.360240555 +0200
+++ /work/SRC/openSUSE:Factory/.kaddressbook.new.2275/kaddressbook.changes  
2022-10-15 16:34:07.889673865 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:03 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kaddressbook-22.08.1.tar.xz
  kaddressbook-22.08.1.tar.xz.sig

New:

  kaddressbook-22.08.2.tar.xz
  kaddressbook-22.08.2.tar.xz.sig



Other differences:
--
++ kaddressbook.spec ++
--- /var/tmp/diff_new_pack.hmz44m/_old  2022-10-15 16:34:08.397675086 +0200
+++ /var/tmp/diff_new_pack.hmz44m/_new  2022-10-15 16:34:08.401675095 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kaddressbook
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Address book application to manage contacts
 License:LGPL-2.1-or-later AND GPL-2.0-or-later


++ kaddressbook-22.08.1.tar.xz -> kaddressbook-22.08.2.tar.xz ++
 1796 lines of diff (skipped)


commit kaccounts-providers for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kaccounts-providers for 
openSUSE:Factory checked in at 2022-10-15 16:33:47

Comparing /work/SRC/openSUSE:Factory/kaccounts-providers (Old)
 and  /work/SRC/openSUSE:Factory/.kaccounts-providers.new.2275 (New)


Package is "kaccounts-providers"

Sat Oct 15 16:33:47 2022 rev:91 rq:1010681 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/kaccounts-providers/kaccounts-providers.changes  
2022-09-09 18:23:20.684232671 +0200
+++ 
/work/SRC/openSUSE:Factory/.kaccounts-providers.new.2275/kaccounts-providers.changes
2022-10-15 16:34:05.653668492 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:02 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kaccounts-providers-22.08.1.tar.xz
  kaccounts-providers-22.08.1.tar.xz.sig

New:

  kaccounts-providers-22.08.2.tar.xz
  kaccounts-providers-22.08.2.tar.xz.sig



Other differences:
--
++ kaccounts-providers.spec ++
--- /var/tmp/diff_new_pack.0afcwZ/_old  2022-10-15 16:34:06.965671645 +0200
+++ /var/tmp/diff_new_pack.0afcwZ/_new  2022-10-15 16:34:06.969671654 +0200
@@ -27,7 +27,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kaccounts-providers
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE Accounts Providers
 License:GPL-2.0-or-later


++ kaccounts-providers-22.08.1.tar.xz -> kaccounts-providers-22.08.2.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kaccounts-providers-22.08.1/CMakeLists.txt 
new/kaccounts-providers-22.08.2/CMakeLists.txt
--- old/kaccounts-providers-22.08.1/CMakeLists.txt  2022-09-02 
23:48:41.0 +0200
+++ new/kaccounts-providers-22.08.2/CMakeLists.txt  2022-10-10 
21:38:55.0 +0200
@@ -2,7 +2,7 @@
 
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 set(KACCOUNTS_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(kde-account-providers LANGUAGES CXX VERSION ${KACCOUNTS_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kaccounts-providers-22.08.1/po/zh_CN/kaccounts-providers.po 
new/kaccounts-providers-22.08.2/po/zh_CN/kaccounts-providers.po
--- old/kaccounts-providers-22.08.1/po/zh_CN/kaccounts-providers.po 
2022-09-06 02:13:21.0 +0200
+++ new/kaccounts-providers-22.08.2/po/zh_CN/kaccounts-providers.po 
2022-10-11 07:00:31.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-02-19 00:43+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kaccounts-integration for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kaccounts-integration for 
openSUSE:Factory checked in at 2022-10-15 16:33:46

Comparing /work/SRC/openSUSE:Factory/kaccounts-integration (Old)
 and  /work/SRC/openSUSE:Factory/.kaccounts-integration.new.2275 (New)


Package is "kaccounts-integration"

Sat Oct 15 16:33:46 2022 rev:94 rq:1010680 version:22.08.2

Changes:

--- 
/work/SRC/openSUSE:Factory/kaccounts-integration/kaccounts-integration.changes  
2022-09-09 18:23:19.640229595 +0200
+++ 
/work/SRC/openSUSE:Factory/.kaccounts-integration.new.2275/kaccounts-integration.changes
2022-10-15 16:34:03.449663195 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:32:01 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  kaccounts-integration-22.08.1.tar.xz
  kaccounts-integration-22.08.1.tar.xz.sig

New:

  kaccounts-integration-22.08.2.tar.xz
  kaccounts-integration-22.08.2.tar.xz.sig



Other differences:
--
++ kaccounts-integration.spec ++
--- /var/tmp/diff_new_pack.L92ekW/_old  2022-10-15 16:34:05.349667761 +0200
+++ /var/tmp/diff_new_pack.L92ekW/_new  2022-10-15 16:34:05.353667771 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kaccounts-integration
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE Accounts Providers
 License:GPL-2.0-or-later


++ kaccounts-integration-22.08.1.tar.xz -> 
kaccounts-integration-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kaccounts-integration-22.08.1/CMakeLists.txt 
new/kaccounts-integration-22.08.2/CMakeLists.txt
--- old/kaccounts-integration-22.08.1/CMakeLists.txt2022-09-02 
23:48:40.0 +0200
+++ new/kaccounts-integration-22.08.2/CMakeLists.txt2022-10-10 
21:38:54.0 +0200
@@ -2,7 +2,7 @@
 
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 set(KACCOUNTS_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(KAccounts LANGUAGES CXX VERSION ${KACCOUNTS_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kaccounts-integration-22.08.1/po/ar/kaccounts-integration.po 
new/kaccounts-integration-22.08.2/po/ar/kaccounts-integration.po
--- old/kaccounts-integration-22.08.1/po/ar/kaccounts-integration.po
2022-09-06 02:13:18.0 +0200
+++ new/kaccounts-integration-22.08.2/po/ar/kaccounts-integration.po
2022-10-11 07:00:27.0 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
-"POT-Creation-Date: 2021-03-24 02:21+0100\n"
+"POT-Creation-Date: 2022-09-17 02:08+\n"
 "PO-Revision-Date: 2021-07-10 19:37+0400\n"
 "Last-Translator: Zayed Al-Saidi \n"
 "Language-Team: ar\n"
@@ -112,7 +112,7 @@
 msgstr ""
 " ?? ??  ...  
 ?? "
 
-#: src/kcm/package/contents/ui/Accounts.qml:89
+#: src/kcm/package/contents/ui/Accounts.qml:88
 #, kde-format
 msgid "Add New Account..."
 msgstr "??  ..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kaccounts-integration-22.08.1/po/ast/kaccounts-integration.po 
new/kaccounts-integration-22.08.2/po/ast/kaccounts-integration.po
--- old/kaccounts-integration-22.08.1/po/ast/kaccounts-integration.po   
2022-09-06 02:13:18.0 +0200
+++ new/kaccounts-integration-22.08.2/po/ast/kaccounts-integration.po   
2022-10-11 07:00:27.0 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kaccounts-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
-"POT-Creation-Date: 2021-03-24 02:21+0100\n"
+"POT-Creation-Date: 2022-09-17 02:08+\n"
 "PO-Revision-Date: 2021-01-14 19:06+0100\n"
 "Last-Translator: enolp \n"
 "Language-Team: Asturian \n"
@@ -109,7 +109,7 @@
 "Click the Add New Account... button below to add one"
 msgstr ""
 
-#: src/kcm/package/contents/ui/Accounts.qml:89
+#: src/kcm/package/contents/ui/Accounts.qml:88
 #, kde-format
 msgid "Add New Account..."
 msgstr "Amestar una cuenta nueva???"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kaccounts-integration-22.08.1/po/az/kaccounts-integration.po 

commit gwenview5 for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gwenview5 for openSUSE:Factory 
checked in at 2022-10-15 16:33:44

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


Package is "gwenview5"

Sat Oct 15 16:33:44 2022 rev:89 rq:1010675 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/gwenview5/gwenview5.changes  2022-09-09 
18:23:17.636223690 +0200
+++ /work/SRC/openSUSE:Factory/.gwenview5.new.2275/gwenview5.changes
2022-10-15 16:34:01.169657716 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:58 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  gwenview-22.08.1.tar.xz
  gwenview-22.08.1.tar.xz.sig

New:

  gwenview-22.08.2.tar.xz
  gwenview-22.08.2.tar.xz.sig



Other differences:
--
++ gwenview5.spec ++
--- /var/tmp/diff_new_pack.owCdvv/_old  2022-10-15 16:34:01.893659456 +0200
+++ /var/tmp/diff_new_pack.owCdvv/_new  2022-10-15 16:34:01.897659466 +0200
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   gwenview5
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Image Viewer by KDE
 License:GPL-2.0-or-later


++ gwenview-22.08.1.tar.xz -> gwenview-22.08.2.tar.xz ++
/work/SRC/openSUSE:Factory/gwenview5/gwenview-22.08.1.tar.xz 
/work/SRC/openSUSE:Factory/.gwenview5.new.2275/gwenview-22.08.2.tar.xz differ: 
char 27, line 1


commit incidenceeditor for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package incidenceeditor for openSUSE:Factory 
checked in at 2022-10-15 16:33:45

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


Package is "incidenceeditor"

Sat Oct 15 16:33:45 2022 rev:80 rq:1010676 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/incidenceeditor/incidenceeditor.changes  
2022-09-09 18:23:18.576226459 +0200
+++ 
/work/SRC/openSUSE:Factory/.incidenceeditor.new.2275/incidenceeditor.changes
2022-10-15 16:34:02.161660100 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:59 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  incidenceeditor-22.08.1.tar.xz
  incidenceeditor-22.08.1.tar.xz.sig

New:

  incidenceeditor-22.08.2.tar.xz
  incidenceeditor-22.08.2.tar.xz.sig



Other differences:
--
++ incidenceeditor.spec ++
--- /var/tmp/diff_new_pack.DkLTA9/_old  2022-10-15 16:34:02.609661176 +0200
+++ /var/tmp/diff_new_pack.DkLTA9/_new  2022-10-15 16:34:02.609661176 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   incidenceeditor
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Incidenceeditor library
 License:GPL-2.0-or-later AND LGPL-2.1-or-later


++ incidenceeditor-22.08.1.tar.xz -> incidenceeditor-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/incidenceeditor-22.08.1/CMakeLists.txt 
new/incidenceeditor-22.08.2/CMakeLists.txt
--- old/incidenceeditor-22.08.1/CMakeLists.txt  2022-08-20 16:59:43.0 
+0200
+++ new/incidenceeditor-22.08.2/CMakeLists.txt  2022-09-11 10:02:59.0 
+0200
@@ -1,7 +1,7 @@
 # SPDX-FileCopyrightText: none
 # SPDX-License-Identifier: BSD-3-Clause
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(incidenceeditor VERSION ${PIM_VERSION})
 
@@ -33,20 +33,20 @@
 
 
 set(INCIDENCEEDITOR_LIB_VERSION ${PIM_VERSION})
-set(AKONADI_MIMELIB_VERSION "5.21.1")
-set(KDEPIM_LIB_VERSION "5.21.1")
+set(AKONADI_MIMELIB_VERSION "5.21.2")
+set(KDEPIM_LIB_VERSION "5.21.2")
 set(QT_REQUIRED_VERSION "5.15.2")
-set(KMIME_LIB_VERSION "5.21.1")
-set(KMAILTRANSPORT_LIB_VERSION "5.21.1")
-set(KLDAP_LIB_VERSION "5.21.1")
-set(CALENDARUTILS_LIB_VERSION "5.21.1")
-set(CALENDARSUPPORT_LIB_VERSION "5.21.1")
-set(LIBKDEPIM_LIB_VERSION "5.21.1")
-set(EVENTVIEW_LIB_VERSION "5.21.1")
-set(AKONADI_VERSION "5.21.1")
-set(AKONADICONTACT_LIB_VERSION "5.21.1")
-set(AKONADICALENDAR_LIB_VERSION "5.21.1")
-set(PIMCOMMON_LIB_VERSION "5.21.1")
+set(KMIME_LIB_VERSION "5.21.2")
+set(KMAILTRANSPORT_LIB_VERSION "5.21.2")
+set(KLDAP_LIB_VERSION "5.21.2")
+set(CALENDARUTILS_LIB_VERSION "5.21.2")
+set(CALENDARSUPPORT_LIB_VERSION "5.21.2")
+set(LIBKDEPIM_LIB_VERSION "5.21.2")
+set(EVENTVIEW_LIB_VERSION "5.21.2")
+set(AKONADI_VERSION "5.21.2")
+set(AKONADICONTACT_LIB_VERSION "5.21.2")
+set(AKONADICALENDAR_LIB_VERSION "5.21.2")
+set(PIMCOMMON_LIB_VERSION "5.21.2")
 
 set(KDIAGRAM_LIB_VERSION "1.4.0")
 find_package(KGantt ${KDIAGRAM_LIB_VERSION} CONFIG REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/incidenceeditor-22.08.1/po/ca@valencia/libincidenceeditors.po 
new/incidenceeditor-22.08.2/po/ca@valencia/libincidenceeditors.po
--- old/incidenceeditor-22.08.1/po/ca@valencia/libincidenceeditors.po   
2022-09-06 02:16:03.0 +0200
+++ new/incidenceeditor-22.08.2/po/ca@valencia/libincidenceeditors.po   
2022-10-11 07:03:57.0 +0200
@@ -582,7 +582,7 @@
 #, kde-format
 msgctxt "@action:inmenu open the attachment in a viewer"
 msgid ""
-msgstr ""
+msgstr "O"
 
 #: incidenceattachment.cpp:480
 #, kde-format
@@ -2144,7 +2144,7 @@
 "and from your address book."
 msgstr ""
 "Establix la identitat corresponent a l'organitzador d'esta tasca pendent o "
-"esdeveniment. Les identitats es poden establir a la secci?? ??Personal?? de 
la "
+"esdeveniment. Les identitats es poden establir en la secci?? ??Personal?? de 
la "
 "configuraci?? de KOrganizer. De manera addicional, les identitats s'obtenen "
 "de la configuraci?? de KMail i des de la llibreta d'adreces."
 
@@ -2776,7 +2776,7 @@
 #, kde-format
 msgctxt "@info:tooltip"
 msgid "Center the Gantt chart on the event start date and time"
-msgstr "Centra el diagrama de Gantt a la data i l'hora de l'esdeveniment"

commit dragonplayer for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package dragonplayer for openSUSE:Factory 
checked in at 2022-10-15 16:33:42

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


Package is "dragonplayer"

Sat Oct 15 16:33:42 2022 rev:128 rq:1010666 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/dragonplayer/dragonplayer.changes
2022-09-09 18:23:14.808215358 +0200
+++ /work/SRC/openSUSE:Factory/.dragonplayer.new.2275/dragonplayer.changes  
2022-10-15 16:33:54.529641760 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:53 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  dragon-22.08.1.tar.xz
  dragon-22.08.1.tar.xz.sig

New:

  dragon-22.08.2.tar.xz
  dragon-22.08.2.tar.xz.sig



Other differences:
--
++ dragonplayer.spec ++
--- /var/tmp/diff_new_pack.3igMKa/_old  2022-10-15 16:33:55.653644461 +0200
+++ /var/tmp/diff_new_pack.3igMKa/_new  2022-10-15 16:33:55.657644471 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   dragonplayer
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Multimedia Player
 License:GPL-2.0-or-later


++ dragon-22.08.1.tar.xz -> dragon-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dragon-22.08.1/CMakeLists.txt 
new/dragon-22.08.2/CMakeLists.txt
--- old/dragon-22.08.1/CMakeLists.txt   2022-09-05 04:10:01.0 +0200
+++ new/dragon-22.08.2/CMakeLists.txt   2022-10-10 22:05:09.0 +0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 set(RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(DragonPlayer VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dragon-22.08.1/misc/org.kde.dragonplayer.appdata.xml 
new/dragon-22.08.2/misc/org.kde.dragonplayer.appdata.xml
--- old/dragon-22.08.1/misc/org.kde.dragonplayer.appdata.xml2022-09-05 
04:10:01.0 +0200
+++ new/dragon-22.08.2/misc/org.kde.dragonplayer.appdata.xml2022-10-10 
22:05:09.0 +0200
@@ -453,9 +453,9 @@
 Player
   
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dragon-22.08.1/po/ja/dragonplayer.po 
new/dragon-22.08.2/po/ja/dragonplayer.po
--- old/dragon-22.08.1/po/ja/dragonplayer.po2022-09-06 02:06:37.0 
+0200
+++ new/dragon-22.08.2/po/ja/dragonplayer.po2022-10-11 06:52:16.0 
+0200
@@ -592,16 +592,3 @@
 msgctxt "@option:radio audio language"
 msgid ""
 msgstr "??()"
-
-#~ msgid ""
-#~ "IRC:\n"
-#~ "irc.freenode.net #dragonplayer\n"
-#~ "\n"
-#~ "Feedback:\n"
-#~ "imon...@kde.org"
-#~ msgstr ""
-#~ "IRC:\n"
-#~ "irc.freenode.net #dragonplayer\n"
-#~ "\n"
-#~ "?:\n"
-#~ "imon...@kde.org"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dragon-22.08.1/po/zh_CN/dragonplayer.po 
new/dragon-22.08.2/po/zh_CN/dragonplayer.po
--- old/dragon-22.08.1/po/zh_CN/dragonplayer.po 2022-09-06 02:06:37.0 
+0200
+++ new/dragon-22.08.2/po/zh_CN/dragonplayer.po 2022-10-11 06:52:16.0 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2021-08-15 00:17+\n"
-"PO-Revision-Date: 2022-08-20 14:21\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit grantleetheme for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package grantleetheme for openSUSE:Factory 
checked in at 2022-10-15 16:33:43

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


Package is "grantleetheme"

Sat Oct 15 16:33:43 2022 rev:80 rq:1010674 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/grantleetheme/grantleetheme.changes  
2022-09-09 18:23:16.856221392 +0200
+++ /work/SRC/openSUSE:Factory/.grantleetheme.new.2275/grantleetheme.changes
2022-10-15 16:33:58.481651257 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:57 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  grantleetheme-22.08.1.tar.xz
  grantleetheme-22.08.1.tar.xz.sig

New:

  grantleetheme-22.08.2.tar.xz
  grantleetheme-22.08.2.tar.xz.sig



Other differences:
--
++ grantleetheme.spec ++
--- /var/tmp/diff_new_pack.02qrxw/_old  2022-10-15 16:34:00.185655351 +0200
+++ /var/tmp/diff_new_pack.02qrxw/_new  2022-10-15 16:34:00.189655361 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   grantleetheme
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Grantlee theme support
 License:GPL-2.0-only


++ grantleetheme-22.08.1.tar.xz -> grantleetheme-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grantleetheme-22.08.1/CMakeLists.txt 
new/grantleetheme-22.08.2/CMakeLists.txt
--- old/grantleetheme-22.08.1/CMakeLists.txt2022-08-23 21:59:00.0 
+0200
+++ new/grantleetheme-22.08.2/CMakeLists.txt2022-09-08 19:37:19.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 
 set(KF5_MIN_VERSION "5.95.0")
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(GrantleeTheme VERSION ${PIM_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grantleetheme-22.08.1/po/ru/libgrantleetheme.po 
new/grantleetheme-22.08.2/po/ru/libgrantleetheme.po
--- old/grantleetheme-22.08.1/po/ru/libgrantleetheme.po 2022-09-06 
02:16:01.0 +0200
+++ new/grantleetheme-22.08.2/po/ru/libgrantleetheme.po 2022-10-11 
07:03:53.0 +0200
@@ -3,13 +3,13 @@
 #
 # Alexander Lakhin , 2013.
 # Alexander Potashev , 2016.
-# Alexander Yavorsky , 2018.
+# Alexander Yavorsky , 2018, 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-05-17 00:45+\n"
-"PO-Revision-Date: 2018-10-02 20:54+0300\n"
+"PO-Revision-Date: 2022-10-02 14:48+0300\n"
 "Last-Translator: Alexander Yavorsky \n"
 "Language-Team: Russian \n"
 "Language: ru\n"
@@ -18,7 +18,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n"
 "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 21.08.3\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -49,10 +49,9 @@
 msgstr " ?? ??   
??"
 
 #: grantleethememanager.cpp:42
-#, fuzzy, kde-format
-#| msgid "Download New Themes..."
+#, kde-format
 msgid "Download new Templates..."
-msgstr "?? ?? ..."
+msgstr " ?? ?"
 
 #~ msgid "Download New Themes..."
 #~ msgstr "?? ?? ..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grantleetheme-22.08.1/po/zh_CN/libgrantleetheme.po 
new/grantleetheme-22.08.2/po/zh_CN/libgrantleetheme.po
--- old/grantleetheme-22.08.1/po/zh_CN/libgrantleetheme.po  2022-09-06 
02:16:01.0 +0200
+++ new/grantleetheme-22.08.2/po/zh_CN/libgrantleetheme.po  2022-10-11 
07:03:53.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-05-17 00:45+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -45,4 +45,4 @@
 #: grantleethememanager.cpp:42
 #, kde-format
 msgid "Download new Templates..."
-msgstr ""
+msgstr "???..."


commit dolphin for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package dolphin for openSUSE:Factory checked 
in at 2022-10-15 16:33:41

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


Package is "dolphin"

Sat Oct 15 16:33:41 2022 rev:100 rq:1010664 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/dolphin/dolphin.changes  2022-09-09 
18:23:12.508208581 +0200
+++ /work/SRC/openSUSE:Factory/.dolphin.new.2275/dolphin.changes
2022-10-15 16:33:50.821632849 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:51 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  dolphin-22.08.1.tar.xz
  dolphin-22.08.1.tar.xz.sig

New:

  dolphin-22.08.2.tar.xz
  dolphin-22.08.2.tar.xz.sig



Other differences:
--
++ dolphin.spec ++
--- /var/tmp/diff_new_pack.wDoZEL/_old  2022-10-15 16:33:52.665637280 +0200
+++ /var/tmp/diff_new_pack.wDoZEL/_new  2022-10-15 16:33:52.669637290 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   dolphin
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE File Manager
 License:GPL-2.0-or-later


++ dolphin-22.08.1.tar.xz -> dolphin-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-22.08.1/CMakeLists.txt 
new/dolphin-22.08.2/CMakeLists.txt
--- old/dolphin-22.08.1/CMakeLists.txt  2022-09-06 02:01:30.0 +0200
+++ new/dolphin-22.08.2/CMakeLists.txt  2022-10-11 06:46:17.0 +0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 project(Dolphin VERSION ${RELEASE_SERVICE_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-22.08.1/doc/index.docbook 
new/dolphin-22.08.2/doc/index.docbook
--- old/dolphin-22.08.1/doc/index.docbook   2022-09-03 04:47:07.0 
+0200
+++ new/dolphin-22.08.2/doc/index.docbook   2022-10-10 21:48:09.0 
+0200
@@ -1453,7 +1453,7 @@
 
 
 
-Trash
+User Feedback
 
 
 This group contains settings which control your contributing information on 
the  usage to its developers.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-22.08.1/po/ca/docs/dolphin/index.docbook 
new/dolphin-22.08.2/po/ca/docs/dolphin/index.docbook
--- old/dolphin-22.08.1/po/ca/docs/dolphin/index.docbook2022-09-06 
02:01:30.0 +0200
+++ new/dolphin-22.08.2/po/ca/docs/dolphin/index.docbook2022-10-11 
06:46:17.0 +0200
@@ -136,7 +136,7 @@
 >Introducci??
 
 El  ??s el gestor de fitxers predeterminat del . El seu 
objectiu ??s millorar la usabilitat en l'??mbit de la interf??cie d'usuari. El 
 se centra nom??s a ser un gestor de fitxers, mentre que el 
, que en el  3 era el gestor de fitxers predeterminat, i encara 
es pot utilitzar per a la gesti?? de fitxers, ??s un visor universal per a 
molts tipus de fitxer. 
+>El  ??s el gestor de fitxers predeterminat del . El seu 
objectiu ??s millorar la usabilitat en l'??mbit de la interf??cie d'usuari. El 
 se centra nom??s a ser un gestor de fitxers, mentre que el 
, que en el  3 era el gestor de fitxers predeterminat, i encara 
es pot utilitzar per a la gesti?? de fitxers, ??s un visualitzador universal 
per a molts tipus de fitxer. 
 
 Aquest enfocament del disseny permet als desenvolupadors concentrar-se en 
 >l'optimitzaci?? de la interf??cie d'usuari per a la tasca espec??fica de la 
 >gesti?? de fitxers. 
@@ -1893,7 +1893,7 @@
 
 
 Paperera
+>Comentaris de l'usuari
 
 Aquest grup cont?? les opcions de configuraci?? que controlen la vostra 
 >informaci?? de contribuci?? sobre l'??s del  que compartiu amb els 
 >seus desenvolupadors. 
@@ -3229,7 +3229,7 @@
 
 
 El  no pret??n ser un competidor del : El  
actua com un visor universal, capa?? de mostrar p??gines , documents de 
text, carpetes i molt m??s, mentre que el  pret??n ser ??nicament un 
gestor de fitxers. Aquest enfocament permet optimitzar la interf??cie d'usuari 
per a la tasca de la gesti?? de fitxers. 
+>El  no pret??n ser un competidor del : El  
actua com un 

commit eventviews for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package eventviews for openSUSE:Factory 
checked in at 2022-10-15 16:33:42

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


Package is "eventviews"

Sat Oct 15 16:33:42 2022 rev:82 rq:1010668 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/eventviews/eventviews.changes2022-09-09 
18:23:15.872218492 +0200
+++ /work/SRC/openSUSE:Factory/.eventviews.new.2275/eventviews.changes  
2022-10-15 16:33:56.457646393 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:54 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  eventviews-22.08.1.tar.xz
  eventviews-22.08.1.tar.xz.sig

New:

  eventviews-22.08.2.tar.xz
  eventviews-22.08.2.tar.xz.sig



Other differences:
--
++ eventviews.spec ++
--- /var/tmp/diff_new_pack.5OZaDo/_old  2022-10-15 16:33:57.625649200 +0200
+++ /var/tmp/diff_new_pack.5OZaDo/_new  2022-10-15 16:33:57.629649209 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   eventviews
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Eventviews Library
 License:GPL-2.0-or-later AND LGPL-2.1-or-later


++ eventviews-22.08.1.tar.xz -> eventviews-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eventviews-22.08.1/CMakeLists.txt 
new/eventviews-22.08.2/CMakeLists.txt
--- old/eventviews-22.08.1/CMakeLists.txt   2022-08-20 16:59:24.0 
+0200
+++ new/eventviews-22.08.2/CMakeLists.txt   2022-09-15 04:25:45.0 
+0200
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: CC0-1.0
 # SPDX-FileCopyrightText: none
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(eventviews VERSION ${PIM_VERSION})
 
@@ -34,13 +34,13 @@
 
 
 set(EVENTVIEW_LIB_VERSION ${PIM_VERSION})
-set(CALENDARUTILS_LIB_VERSION "5.21.1")
-set(AKONADI_LIB_VERSION "5.21.1")
+set(CALENDARUTILS_LIB_VERSION "5.21.2")
+set(AKONADI_LIB_VERSION "5.21.2")
 set(QT_REQUIRED_VERSION "5.15.2")
-set(AKONADICALENDAR_LIB_VERSION "5.21.1")
-set(KMIME_LIB_VERSION "5.21.1")
-set(LIBKDEPIM_LIB_VERSION "5.21.1")
-set(CALENDARSUPPORT_LIB_VERSION "5.21.1")
+set(AKONADICALENDAR_LIB_VERSION "5.21.2")
+set(KMIME_LIB_VERSION "5.21.2")
+set(LIBKDEPIM_LIB_VERSION "5.21.2")
+set(CALENDARSUPPORT_LIB_VERSION "5.21.2")
 
 find_package(KF5Akonadi ${AKONADI_LIB_VERSION} CONFIG REQUIRED)
 find_package(Qt${QT_MAJOR_VERSION} ${QT_REQUIRED_VERSION} CONFIG REQUIRED 
Widgets)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eventviews-22.08.1/po/ca/libeventviews.po 
new/eventviews-22.08.2/po/ca/libeventviews.po
--- old/eventviews-22.08.1/po/ca/libeventviews.po   2022-09-06 
02:15:58.0 +0200
+++ new/eventviews-22.08.2/po/ca/libeventviews.po   2022-10-11 
07:03:48.0 +0200
@@ -5,14 +5,14 @@
 #
 # Manuel Tortosa , 2010, 2011.
 # Josep M. Ferrer , 2010, 2011, 2012, 2013, 2014, 2015, 
2017, 2018, 2019, 2020, 2021, 2022.
-# Antoni Bella P??rez , 2013, 2014, 2015, 2016, 2017, 
2018, 2019, 2020, 2021.
+# Antoni Bella P??rez , 2013, 2014, 2015, 2016, 2017, 
2018, 2019, 2020, 2021, 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: eventviews\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-08-20 02:13+\n"
-"PO-Revision-Date: 2022-05-07 12:09+0200\n"
-"Last-Translator: Josep M. Ferrer \n"
+"PO-Revision-Date: 2022-09-20 23:03+0200\n"
+"Last-Translator: Antoni Bella P??rez \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
@@ -20,7 +20,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
-"X-Generator: Lokalize 20.12.0\n"
+"X-Generator: Lokalize 22.08.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -613,16 +613,16 @@
 "Select the height of the hour rows in the agenda grid, in pixels. Increasing "
 "this value will make each row in the agenda grid taller."
 msgstr ""
-"Seleccioneu l'al??ada de les files de l'hora a la graella de l'agenda, en "
-"p??xels. L'augment d'aquest valor far?? que cada fila de la graella l'agenda "
-"sigui m??s alta."
+"Seleccioneu l'al??ada de les files de l'hora en la quadr??cula de l'agenda, 
en "
+"p??xels. L'augment d'aquest valor far?? que cada fila en la quadr??cula de "
+"l'agenda sigui m??s 

commit ark for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ark for openSUSE:Factory checked in 
at 2022-10-15 16:33:38

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


Package is "ark"

Sat Oct 15 16:33:38 2022 rev:149 rq:1010655 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/ark/ark.changes  2022-09-09 18:23:07.432193625 
+0200
+++ /work/SRC/openSUSE:Factory/.ark.new.2275/ark.changes2022-10-15 
16:33:47.189624122 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:45 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  ark-22.08.1.tar.xz
  ark-22.08.1.tar.xz.sig

New:

  ark-22.08.2.tar.xz
  ark-22.08.2.tar.xz.sig



Other differences:
--
++ ark.spec ++
--- /var/tmp/diff_new_pack.jtbNPR/_old  2022-10-15 16:33:47.765625505 +0200
+++ /var/tmp/diff_new_pack.jtbNPR/_new  2022-10-15 16:33:47.773625525 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   ark
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE Archiver Tool
 License:GPL-2.0-or-later


++ ark-22.08.1.tar.xz -> ark-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/CMakeLists.txt 
new/ark-22.08.2/CMakeLists.txt
--- old/ark-22.08.1/CMakeLists.txt  2022-09-03 04:47:18.0 +0200
+++ new/ark-22.08.2/CMakeLists.txt  2022-10-10 21:59:24.0 +0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 project(ark VERSION ${RELEASE_SERVICE_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/app/compressfileitemaction.cpp 
new/ark-22.08.2/app/compressfileitemaction.cpp
--- old/ark-22.08.1/app/compressfileitemaction.cpp  2022-09-03 
04:47:18.0 +0200
+++ new/ark-22.08.2/app/compressfileitemaction.cpp  2022-10-10 
21:59:24.0 +0200
@@ -100,7 +100,8 @@
 QAction *action = new QAction(icon, name, parent);
 
 connect(action, ::triggered, this, [fileExtension, urls, name, 
parent, this]() {
-auto *addToArchiveJob = new AddToArchive(parent);
+// Don't pass a parent to the job, otherwise it will be killed if 
dolphin gets closed.
+auto *addToArchiveJob = new AddToArchive(nullptr);
 addToArchiveJob->setImmediateProgressReporting(true);
 addToArchiveJob->setChangeToFirstPath(true);
 for (const QUrl  : urls) {
@@ -121,6 +122,7 @@
 } else if (!addToArchiveJob->errorString().isEmpty()) {
 Q_EMIT error(addToArchiveJob->errorString());
 }
+addToArchiveJob->deleteLater();
 });
 });
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/app/extractfileitemaction.cpp 
new/ark-22.08.2/app/extractfileitemaction.cpp
--- old/ark-22.08.1/app/extractfileitemaction.cpp   2022-09-03 
04:47:18.0 +0200
+++ new/ark-22.08.2/app/extractfileitemaction.cpp   2022-10-10 
21:59:24.0 +0200
@@ -100,7 +100,8 @@
 {
 QAction *action = new QAction(icon, name, parent);
 connect(action, ::triggered, this, [urls,name, option, 
parent,this]() {
-auto *batchExtractJob = new BatchExtract(parent);
+// Don't pass a parent to the job, otherwise it will be killed if 
dolphin gets closed.
+auto *batchExtractJob = new BatchExtract(nullptr);
 
batchExtractJob->setDestinationFolder(QFileInfo(urls.first().toLocalFile()).path());
 
batchExtractJob->setOpenDestinationAfterExtraction(ArkSettings::openDestinationFolderAfterExtraction());
 if (option == AutoSubfolder) {
@@ -119,6 +120,7 @@
 if (!batchExtractJob->errorString().isEmpty()) {
 Q_EMIT error(batchExtractJob->errorString());
 }
+batchExtractJob->deleteLater();
 });
 });
 return action;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/app/org.kde.ark.appdata.xml 

commit calendarsupport for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package calendarsupport for openSUSE:Factory 
checked in at 2022-10-15 16:33:40

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


Package is "calendarsupport"

Sat Oct 15 16:33:40 2022 rev:81 rq:1010661 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/calendarsupport/calendarsupport.changes  
2022-09-09 18:23:10.876203772 +0200
+++ 
/work/SRC/openSUSE:Factory/.calendarsupport.new.2275/calendarsupport.changes
2022-10-15 16:33:49.577629860 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:50 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  calendarsupport-22.08.1.tar.xz
  calendarsupport-22.08.1.tar.xz.sig

New:

  calendarsupport-22.08.2.tar.xz
  calendarsupport-22.08.2.tar.xz.sig



Other differences:
--
++ calendarsupport.spec ++
--- /var/tmp/diff_new_pack.5KSMmB/_old  2022-10-15 16:33:50.337631686 +0200
+++ /var/tmp/diff_new_pack.5KSMmB/_new  2022-10-15 16:33:50.341631696 +0200
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   calendarsupport
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE PIM calendaring support library
 License:GPL-2.0-or-later AND LGPL-2.1-or-later


++ calendarsupport-22.08.1.tar.xz -> calendarsupport-22.08.2.tar.xz ++
 1623 lines of diff (skipped)


commit baloo5-widgets for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package baloo5-widgets for openSUSE:Factory 
checked in at 2022-10-15 16:33:39

Comparing /work/SRC/openSUSE:Factory/baloo5-widgets (Old)
 and  /work/SRC/openSUSE:Factory/.baloo5-widgets.new.2275 (New)


Package is "baloo5-widgets"

Sat Oct 15 16:33:39 2022 rev:87 rq:1010657 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/baloo5-widgets/baloo5-widgets.changes
2022-09-09 18:23:08.808197679 +0200
+++ /work/SRC/openSUSE:Factory/.baloo5-widgets.new.2275/baloo5-widgets.changes  
2022-10-15 16:33:48.633627591 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:47 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  baloo-widgets-22.08.1.tar.xz
  baloo-widgets-22.08.1.tar.xz.sig

New:

  baloo-widgets-22.08.2.tar.xz
  baloo-widgets-22.08.2.tar.xz.sig



Other differences:
--
++ baloo5-widgets.spec ++
--- /var/tmp/diff_new_pack.tL1mis/_old  2022-10-15 16:33:49.229629023 +0200
+++ /var/tmp/diff_new_pack.tL1mis/_new  2022-10-15 16:33:49.233629033 +0200
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   baloo5-widgets
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Framework for searching and managing metadata
 License:GPL-2.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-only


++ baloo-widgets-22.08.1.tar.xz -> baloo-widgets-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-22.08.1/CMakeLists.txt 
new/baloo-widgets-22.08.2/CMakeLists.txt
--- old/baloo-widgets-22.08.1/CMakeLists.txt2022-09-02 23:48:43.0 
+0200
+++ new/baloo-widgets-22.08.2/CMakeLists.txt2022-10-10 21:38:58.0 
+0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 project(baloo-widgets VERSION ${RELEASE_SERVICE_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-22.08.1/po/zh_CN/baloowidgets5.po 
new/baloo-widgets-22.08.2/po/zh_CN/baloowidgets5.po
--- old/baloo-widgets-22.08.1/po/zh_CN/baloowidgets5.po 2022-09-06 
02:13:28.0 +0200
+++ new/baloo-widgets-22.08.2/po/zh_CN/baloowidgets5.po 2022-10-11 
07:00:42.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-06-02 00:43+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit akregator for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package akregator for openSUSE:Factory 
checked in at 2022-10-15 16:33:37

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


Package is "akregator"

Sat Oct 15 16:33:37 2022 rev:79 rq:1010653 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/akregator/akregator.changes  2022-09-09 
18:23:05.628188309 +0200
+++ /work/SRC/openSUSE:Factory/.akregator.new.2275/akregator.changes
2022-10-15 16:33:45.541620161 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:44 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  akregator-22.08.1.tar.xz
  akregator-22.08.1.tar.xz.sig

New:

  akregator-22.08.2.tar.xz
  akregator-22.08.2.tar.xz.sig



Other differences:
--
++ akregator.spec ++
--- /var/tmp/diff_new_pack.WjIlEw/_old  2022-10-15 16:33:46.045621372 +0200
+++ /var/tmp/diff_new_pack.WjIlEw/_new  2022-10-15 16:33:46.049621382 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   akregator
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:RSS Feed Reader
 License:GPL-2.0-or-later

++ akregator-22.08.1.tar.xz -> akregator-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akregator-22.08.1/CMakeLists.txt 
new/akregator-22.08.2/CMakeLists.txt
--- old/akregator-22.08.1/CMakeLists.txt2022-09-03 00:37:16.0 
+0200
+++ new/akregator-22.08.2/CMakeLists.txt2022-10-10 22:25:42.0 
+0200
@@ -1,11 +1,11 @@
 # SPDX-License-Identifier: CC0-1.0
 # SPDX-FileCopyrightText: none
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 project(akregator VERSION ${PIM_VERSION})
 
 set(KF5_MIN_VERSION "5.95.0")
-set(RELEASE_SERVICE_VERSION "22.08.1")
+set(RELEASE_SERVICE_VERSION "22.08.2")
 
 find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
@@ -46,13 +46,13 @@
 set(KDEPIM_LIB_SOVERSION "5")
 
 set(QT_REQUIRED_VERSION "5.15.2")
-set(KONTACTINTERFACE_LIB_VERSION "5.21.1")
-set(KPIMTEXTEDIT_LIB_VERSION "5.21.1")
-set(LIBGRANTLEETHEME_LIB_VERSION "5.21.1")
-set(LIBKDEPIM_LIB_VERSION "5.21.1")
-set(LIBKLEO_LIB_VERSION "5.21.1")
-set(MESSAGELIB_LIB_VERSION "5.21.1")
-set(PIMCOMMON_LIB_VERSION "5.21.1")
+set(KONTACTINTERFACE_LIB_VERSION "5.21.2")
+set(KPIMTEXTEDIT_LIB_VERSION "5.21.2")
+set(LIBGRANTLEETHEME_LIB_VERSION "5.21.2")
+set(LIBKDEPIM_LIB_VERSION "5.21.2")
+set(LIBKLEO_LIB_VERSION "5.21.2")
+set(MESSAGELIB_LIB_VERSION "5.21.2")
+set(PIMCOMMON_LIB_VERSION "5.21.2")
 
 option(KDEPIM_KUSERFEEDBACK "Enable user feedback support (experimental)" 
FALSE)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akregator-22.08.1/configuration/akregator_config_security.json 
new/akregator-22.08.2/configuration/akregator_config_security.json
--- old/akregator-22.08.1/configuration/akregator_config_security.json  
2022-09-03 00:37:16.0 +0200
+++ new/akregator-22.08.2/configuration/akregator_config_security.json  
2022-10-10 22:25:42.0 +0200
@@ -61,6 +61,7 @@
 "Name[ia]": "Securitate",
 "Name[is]": "??ryggi",
 "Name[it]": "Sicurezza",
+"Name[ja]": "??",
 "Name[ka]": "?",
 "Name[kk]": "??",
 "Name[km]": "??",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akregator-22.08.1/po/ca/docs/akregator/index.docbook 
new/akregator-22.08.2/po/ca/docs/akregator/index.docbook
--- old/akregator-22.08.1/po/ca/docs/akregator/index.docbook2022-09-06 
02:14:34.0 +0200
+++ new/akregator-22.08.2/po/ca/docs/akregator/index.docbook2022-10-11 
07:02:14.0 +0200
@@ -159,7 +159,7 @@
 
 
 La finestra principal es compon de la llista de fonts, la llista i el visor 
d'articles. 
+>La finestra principal es compon de la llista de fonts, la llista i el 
visualitzador d'articles. 
 La llista de fonts es troba a l'esquerra. En l'arbre, teniu les fonts de 
 >not??cies que podeu seleccionar. Una font de not??cies ??s un recull 
 >d'articles: per exemple, les not??cies recents d'un lloc de not??cies o les 
 >entrades noves d'un blog. La llista per omissi?? cont?? les fonts 
 

commit akonadi-server for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package akonadi-server for openSUSE:Factory 
checked in at 2022-10-15 16:33:37

Comparing /work/SRC/openSUSE:Factory/akonadi-server (Old)
 and  /work/SRC/openSUSE:Factory/.akonadi-server.new.2275 (New)


Package is "akonadi-server"

Sat Oct 15 16:33:37 2022 rev:102 rq:1010651 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/akonadi-server/akonadi-server.changes
2022-09-09 18:23:04.248184243 +0200
+++ /work/SRC/openSUSE:Factory/.akonadi-server.new.2275/akonadi-server.changes  
2022-10-15 16:33:42.893613798 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:39 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  akonadi-22.08.1.tar.xz
  akonadi-22.08.1.tar.xz.sig

New:

  akonadi-22.08.2.tar.xz
  akonadi-22.08.2.tar.xz.sig



Other differences:
--
++ akonadi-server.spec ++
--- /var/tmp/diff_new_pack.12KaYP/_old  2022-10-15 16:33:44.773618316 +0200
+++ /var/tmp/diff_new_pack.12KaYP/_new  2022-10-15 16:33:44.777618325 +0200
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   akonadi-server
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:PIM Storage Service
 License:LGPL-2.1-or-later

++ akonadi-22.08.1.tar.xz -> akonadi-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-22.08.1/CMakeLists.txt 
new/akonadi-22.08.2/CMakeLists.txt
--- old/akonadi-22.08.1/CMakeLists.txt  2022-08-31 13:38:47.0 +0200
+++ new/akonadi-22.08.2/CMakeLists.txt  2022-09-08 19:35:16.0 +0200
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 project(Akonadi VERSION ${PIM_VERSION})
 
 
@@ -45,7 +45,7 @@
 add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
 
 set(QT_REQUIRED_VERSION "5.15.2")
-set(RELEASE_SERVICE_VERSION "22.08.1")
+set(RELEASE_SERVICE_VERSION "22.08.2")
 set(AKONADI_FULL_VERSION "${PIM_VERSION} (${RELEASE_SERVICE_VERSION})")
 
 configure_file(akonadifull-version.h.cmake 
${CMAKE_CURRENT_BINARY_DIR}/akonadifull-version.h @ONLY)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-22.08.1/po/ca/libakonadi5.po 
new/akonadi-22.08.2/po/ca/libakonadi5.po
--- old/akonadi-22.08.1/po/ca/libakonadi5.po2022-09-06 02:13:30.0 
+0200
+++ new/akonadi-22.08.2/po/ca/libakonadi5.po2022-10-11 07:00:46.0 
+0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: akonadi\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-07-09 00:46+\n"
-"PO-Revision-Date: 2022-07-06 12:38+0200\n"
+"PO-Revision-Date: 2022-10-10 10:19+0200\n"
 "Last-Translator: Josep M. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -2440,7 +2440,7 @@
 #, kde-format
 msgctxt "@info"
 msgid "Delete tag"
-msgstr "Elimina l'etiqueta"
+msgstr "Suprimeix l'etiqueta"
 
 #. i18n: ectx: property (text), widget (QLabel, selectLabel)
 #: widgets/tageditwidget.ui:29
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akonadi-22.08.1/po/ca@valencia/akonadi_knut_resource.po 
new/akonadi-22.08.2/po/ca@valencia/akonadi_knut_resource.po
--- old/akonadi-22.08.1/po/ca@valencia/akonadi_knut_resource.po 2022-09-06 
02:13:30.0 +0200
+++ new/akonadi-22.08.2/po/ca@valencia/akonadi_knut_resource.po 2022-10-11 
07:00:46.0 +0200
@@ -72,7 +72,7 @@
 #: knutresource.cpp:250 knutresource.cpp:308 knutresource.cpp:315
 #, kde-format
 msgid "Parent collection '%1' not found in DOM tree."
-msgstr "No s'ha trobat la col??lecci?? pare ??%1?? a l'arbre DOM."
+msgstr "No s'ha trobat la col??lecci?? pare ??%1?? en l'arbre DOM."
 
 #: knutresource.cpp:258 knutresource.cpp:328
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-22.08.1/po/ca@valencia/libakonadi5.po 
new/akonadi-22.08.2/po/ca@valencia/libakonadi5.po
--- old/akonadi-22.08.1/po/ca@valencia/libakonadi5.po   2022-09-06 
02:13:30.0 +0200
+++ new/akonadi-22.08.2/po/ca@valencia/libakonadi5.po   2022-10-11 
07:00:46.0 +0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: akonadi\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-07-09 00:46+\n"
-"PO-Revision-Date: 2022-07-06 12:38+0200\n"

commit akonadi-search for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package akonadi-search for openSUSE:Factory 
checked in at 2022-10-15 16:33:34

Comparing /work/SRC/openSUSE:Factory/akonadi-search (Old)
 and  /work/SRC/openSUSE:Factory/.akonadi-search.new.2275 (New)


Package is "akonadi-search"

Sat Oct 15 16:33:34 2022 rev:89 rq:1010650 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/akonadi-search/akonadi-search.changes
2022-09-09 18:23:02.708179706 +0200
+++ /work/SRC/openSUSE:Factory/.akonadi-search.new.2275/akonadi-search.changes  
2022-10-15 16:33:42.033611731 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:44 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  akonadi-search-22.08.1.tar.xz
  akonadi-search-22.08.1.tar.xz.sig

New:

  akonadi-search-22.08.2.tar.xz
  akonadi-search-22.08.2.tar.xz.sig



Other differences:
--
++ akonadi-search.spec ++
--- /var/tmp/diff_new_pack.ch9epa/_old  2022-10-15 16:33:42.545612962 +0200
+++ /var/tmp/diff_new_pack.ch9epa/_new  2022-10-15 16:33:42.549612971 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   akonadi-search
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Framework for searching and managing PIM metadata
 License:GPL-2.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-only

++ akonadi-search-22.08.1.tar.xz -> akonadi-search-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-search-22.08.1/CMakeLists.txt 
new/akonadi-search-22.08.2/CMakeLists.txt
--- old/akonadi-search-22.08.1/CMakeLists.txt   2022-08-31 13:31:27.0 
+0200
+++ new/akonadi-search-22.08.2/CMakeLists.txt   2022-10-08 05:14:33.0 
+0200
@@ -2,7 +2,7 @@
 # SPDX-FileCopyrightText: none
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 project(AkonadiSearch VERSION ${PIM_VERSION})
 
 # ECM setup
@@ -43,9 +43,9 @@
 
 set(AKONADISEARCH_VERSION ${PIM_VERSION})
 
-set(AKONADI_VERSION "5.21.1")
-set(AKONADI_MIMELIB_VERSION "5.21.1")
-set(KMIME_LIB_VERSION "5.21.1")
+set(AKONADI_VERSION "5.21.2")
+set(AKONADI_MIMELIB_VERSION "5.21.2")
+set(KMIME_LIB_VERSION "5.21.2")
 set(QT_REQUIRED_VERSION "5.15.2")
 
 find_package(Qt${QT_MAJOR_VERSION} ${QT_REQUIRED_VERSION} CONFIG REQUIRED Core 
Test)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-search-22.08.1/po/zh_CN/akonadi_search.po 
new/akonadi-search-22.08.2/po/zh_CN/akonadi_search.po
--- old/akonadi-search-22.08.1/po/zh_CN/akonadi_search.po   2022-09-06 
02:13:36.0 +0200
+++ new/akonadi-search-22.08.2/po/zh_CN/akonadi_search.po   2022-10-11 
07:00:52.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-05-04 00:46+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akonadi-search-22.08.1/runner/plasma-krunner-pimcontacts.json.cmake 
new/akonadi-search-22.08.2/runner/plasma-krunner-pimcontacts.json.cmake
--- old/akonadi-search-22.08.1/runner/plasma-krunner-pimcontacts.json.cmake 
2022-08-31 13:31:27.0 +0200
+++ new/akonadi-search-22.08.2/runner/plasma-krunner-pimcontacts.json.cmake 
2022-10-08 05:14:33.0 +0200
@@ -24,6 +24,7 @@
 "Name[pl]": "Daniel Vr??til",
 "Name[pt]": "Daniel Vr??til",
 "Name[pt_BR]": "Daniel Vr??til",
+"Name[ru]": "Daniel Vr??til",
 "Name[sk]": "Daniel Vr??til",
 "Name[sl]": "Daniel Vr??til",
 "Name[sv]": "Daniel Vr??til",
@@ -52,6 +53,7 @@
 "Description[pl]": "Wyszukuje kontakty",
 "Description[pt]": "Um m??dulo de execuo que pesquisa nos seus 
contactos",
 "Description[pt_BR]": "M??dulo de execuo que pesquisa nos seus 
contatos",
+"Description[ru]": " ??  ?? 
 ??",
 "Description[sk]": "Program, ktor?? preh??ad??va va??e kontakty",
 "Description[sl]": "Teka??, ki preie va??e stike",
 "Description[sv]": "K??rprogram som s??ker igenom kontakter",

commit akonadi-notes for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package akonadi-notes for openSUSE:Factory 
checked in at 2022-10-15 16:33:34

Comparing /work/SRC/openSUSE:Factory/akonadi-notes (Old)
 and  /work/SRC/openSUSE:Factory/.akonadi-notes.new.2275 (New)


Package is "akonadi-notes"

Sat Oct 15 16:33:34 2022 rev:75 rq:1010649 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/akonadi-notes/akonadi-notes.changes  
2022-09-09 18:23:01.668176786 +0200
+++ /work/SRC/openSUSE:Factory/.akonadi-notes.new.2275/akonadi-notes.changes
2022-10-15 16:33:39.513605675 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:43 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  akonadi-notes-22.08.1.tar.xz
  akonadi-notes-22.08.1.tar.xz.sig

New:

  akonadi-notes-22.08.2.tar.xz
  akonadi-notes-22.08.2.tar.xz.sig



Other differences:
--
++ akonadi-notes.spec ++
--- /var/tmp/diff_new_pack.oaD9Av/_old  2022-10-15 16:33:41.749611049 +0200
+++ /var/tmp/diff_new_pack.oaD9Av/_new  2022-10-15 16:33:41.753611058 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   akonadi-notes
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Library to implement management of notes in Akonadi
 License:LGPL-2.1-or-later

++ akonadi-notes-22.08.1.tar.xz -> akonadi-notes-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-22.08.1/CMakeLists.txt 
new/akonadi-notes-22.08.2/CMakeLists.txt
--- old/akonadi-notes-22.08.1/CMakeLists.txt2022-08-20 16:58:43.0 
+0200
+++ new/akonadi-notes-22.08.2/CMakeLists.txt2022-09-11 10:02:02.0 
+0200
@@ -1,7 +1,7 @@
 # SPDX-FileCopyrightText: none
 # SPDX-License-Identifier: BSD-3-Clause
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 
 project(Akonadi-Notes VERSION ${PIM_VERSION})
 
@@ -37,8 +37,8 @@
 set(QT_REQUIRED_VERSION "5.15.2")
 set(AKONADI_NOTES_VERSION ${PIM_VERSION})
 
-set(KMIMELIB_VERSION "5.21.1")
-set(AKONADI_VERSION "5.21.1")
+set(KMIMELIB_VERSION "5.21.2")
+set(AKONADI_VERSION "5.21.2")
 
 ecm_setup_version(PROJECT VARIABLE_PREFIX AKONADINOTES
 VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/akonadi-notes_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-22.08.1/po/zh_CN/akonadinotes5.po 
new/akonadi-notes-22.08.2/po/zh_CN/akonadinotes5.po
--- old/akonadi-notes-22.08.1/po/zh_CN/akonadinotes5.po 2022-09-06 
02:14:19.0 +0200
+++ new/akonadi-notes-22.08.2/po/zh_CN/akonadinotes5.po 2022-10-11 
07:01:55.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2021-11-26 00:28+\n"
-"PO-Revision-Date: 2022-08-20 14:21\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit akonadi-mime for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package akonadi-mime for openSUSE:Factory 
checked in at 2022-10-15 16:33:32

Comparing /work/SRC/openSUSE:Factory/akonadi-mime (Old)
 and  /work/SRC/openSUSE:Factory/.akonadi-mime.new.2275 (New)


Package is "akonadi-mime"

Sat Oct 15 16:33:32 2022 rev:75 rq:1010648 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/akonadi-mime/akonadi-mime.changes
2022-09-09 18:23:00.564173863 +0200
+++ /work/SRC/openSUSE:Factory/.akonadi-mime.new.2275/akonadi-mime.changes  
2022-10-15 16:33:38.193602503 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:42 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  akonadi-mime-22.08.1.tar.xz
  akonadi-mime-22.08.1.tar.xz.sig

New:

  akonadi-mime-22.08.2.tar.xz
  akonadi-mime-22.08.2.tar.xz.sig



Other differences:
--
++ akonadi-mime.spec ++
--- /var/tmp/diff_new_pack.b1jYtx/_old  2022-10-15 16:33:39.169604849 +0200
+++ /var/tmp/diff_new_pack.b1jYtx/_new  2022-10-15 16:33:39.173604858 +0200
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   akonadi-mime
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:MIME email parser for KDE PIM
 License:LGPL-2.1-or-later

++ akonadi-mime-22.08.1.tar.xz -> akonadi-mime-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-mime-22.08.1/CMakeLists.txt 
new/akonadi-mime-22.08.2/CMakeLists.txt
--- old/akonadi-mime-22.08.1/CMakeLists.txt 2022-08-31 04:51:07.0 
+0200
+++ new/akonadi-mime-22.08.2/CMakeLists.txt 2022-09-11 10:01:51.0 
+0200
@@ -2,7 +2,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 project(Akonadi-Mime VERSION ${PIM_VERSION})
 
 # ECM setup
@@ -36,8 +36,8 @@
 add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
 
 set(AKONADI_MIME_VERSION ${PIM_VERSION})
-set(AKONADI_VERSION "5.21.1")
-set(KF5_MIME_VERSION "5.21.1")
+set(AKONADI_VERSION "5.21.2")
+set(KF5_MIME_VERSION "5.21.2")
 
 ecm_setup_version(PROJECT VARIABLE_PREFIX AKONADIMIME
 VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/akonadi-mime_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akonadi-mime-22.08.1/po/ca@valencia/libakonadi-kmime5.po 
new/akonadi-mime-22.08.2/po/ca@valencia/libakonadi-kmime5.po
--- old/akonadi-mime-22.08.1/po/ca@valencia/libakonadi-kmime5.po
2022-09-06 02:14:22.0 +0200
+++ new/akonadi-mime-22.08.2/po/ca@valencia/libakonadi-kmime5.po
2022-10-11 07:01:58.0 +0200
@@ -344,7 +344,7 @@
 #: standardmailactionmanager.cpp:205
 #, kde-format
 msgid "Add "
-msgstr " un compte..."
+msgstr "Afi un compte..."
 
 #: standardmailactionmanager.cpp:207
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-mime-22.08.1/po/zh_CN/libakonadi-kmime5.po 
new/akonadi-mime-22.08.2/po/zh_CN/libakonadi-kmime5.po
--- old/akonadi-mime-22.08.1/po/zh_CN/libakonadi-kmime5.po  2022-09-06 
02:14:22.0 +0200
+++ new/akonadi-mime-22.08.2/po/zh_CN/libakonadi-kmime5.po  2022-10-11 
07:01:58.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-06-14 00:49+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit akonadi-import-wizard for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package akonadi-import-wizard for 
openSUSE:Factory checked in at 2022-10-15 16:33:31

Comparing /work/SRC/openSUSE:Factory/akonadi-import-wizard (Old)
 and  /work/SRC/openSUSE:Factory/.akonadi-import-wizard.new.2275 (New)


Package is "akonadi-import-wizard"

Sat Oct 15 16:33:31 2022 rev:75 rq:1010647 version:22.08.2

Changes:

--- 
/work/SRC/openSUSE:Factory/akonadi-import-wizard/akonadi-import-wizard.changes  
2022-09-09 18:22:59.648171439 +0200
+++ 
/work/SRC/openSUSE:Factory/.akonadi-import-wizard.new.2275/akonadi-import-wizard.changes
2022-10-15 16:33:36.181597668 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:42 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  akonadi-import-wizard-22.08.1.tar.xz
  akonadi-import-wizard-22.08.1.tar.xz.sig

New:

  akonadi-import-wizard-22.08.2.tar.xz
  akonadi-import-wizard-22.08.2.tar.xz.sig



Other differences:
--
++ akonadi-import-wizard.spec ++
--- /var/tmp/diff_new_pack.rQ83Lt/_old  2022-10-15 16:33:37.625601138 +0200
+++ /var/tmp/diff_new_pack.rQ83Lt/_new  2022-10-15 16:33:37.633601158 +0200
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   akonadi-import-wizard
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Assistant to import PIM data
 License:GPL-2.0-or-later AND LGPL-2.1-or-later

++ akonadi-import-wizard-22.08.1.tar.xz -> 
akonadi-import-wizard-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-import-wizard-22.08.1/CMakeLists.txt 
new/akonadi-import-wizard-22.08.2/CMakeLists.txt
--- old/akonadi-import-wizard-22.08.1/CMakeLists.txt2022-08-31 
04:50:58.0 +0200
+++ new/akonadi-import-wizard-22.08.2/CMakeLists.txt2022-09-11 
10:01:42.0 +0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 project(AkonadiImportWizard VERSION ${PIM_VERSION})
 
 
@@ -32,7 +32,7 @@
 
 # Do NOT add quote
 set(KDEPIM_DEV_VERSION )
-set(RELEASE_SERVICE_VERSION "22.08.1")
+set(RELEASE_SERVICE_VERSION "22.08.2")
 
 # add an extra space
 if(DEFINED KDEPIM_DEV_VERSION)
@@ -44,19 +44,19 @@
 set(KDEPIM_VERSION "${PIM_VERSION}${KDEPIM_DEV_VERSION} 
(${RELEASE_SERVICE_VERSION})")
 
 
-set(KMAILTRANSPORT_LIB_VERSION "5.21.1")
-set(AKONADI_VERSION "5.21.1")
+set(KMAILTRANSPORT_LIB_VERSION "5.21.2")
+set(AKONADI_VERSION "5.21.2")
 
 set(KDEPIM_LIB_VERSION "${PIM_VERSION}")
 set(KDEPIM_LIB_SOVERSION "5")
 
 set(QT_REQUIRED_VERSION "5.15.2")
 find_package(Qt${QT_MAJOR_VERSION} ${QT_REQUIRED_VERSION} CONFIG REQUIRED 
Widgets Gui)
-set(MAILIMPORTER_VERSION "5.21.1")
-set(MAILCOMMON_LIB_VERSION "5.21.1")
-set(MESSAGELIB_LIB_VERSION "5.21.1")
-set(PIMCOMMON_LIB_VERSION "5.21.1")
-set(IDENTITYMANAGEMENT_LIB_VERSION "5.21.1")
+set(MAILIMPORTER_VERSION "5.21.2")
+set(MAILCOMMON_LIB_VERSION "5.21.2")
+set(MESSAGELIB_LIB_VERSION "5.21.2")
+set(PIMCOMMON_LIB_VERSION "5.21.2")
+set(IDENTITYMANAGEMENT_LIB_VERSION "5.21.2")
 
 # Find KF5 package
 find_package(KF5Config ${KF5_MIN_VERSION} CONFIG REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akonadi-import-wizard-22.08.1/po/ca@valencia/akonadiimportwizard.po 
new/akonadi-import-wizard-22.08.2/po/ca@valencia/akonadiimportwizard.po
--- old/akonadi-import-wizard-22.08.1/po/ca@valencia/akonadiimportwizard.po 
2022-09-06 02:14:31.0 +0200
+++ new/akonadi-import-wizard-22.08.2/po/ca@valencia/akonadiimportwizard.po 
2022-10-11 07:02:09.0 +0200
@@ -514,7 +514,7 @@
 "family:'DejaVu Sans'; font-size:9pt;\"> Este programa vos "
 "ajudar?? a importar el vostre correu electr??nic des del programa de correu "
 "electr??nic anterior.Seleccioneu el programa des del qual voleu "
-"importar. Despr??s, seleccioneu la carpeta a la qual voleu importar, i "
+"importar. Despr??s, seleccioneu la carpeta cap a la qual voleu importar, i "
 "cliqueu ??Seg??ent??."
 
 #. i18n: ectx: property (text), widget (QCheckBox, remDupMsg)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akonadi-import-wizard-22.08.1/po/zh_CN/akonadiimportwizard.po 
new/akonadi-import-wizard-22.08.2/po/zh_CN/akonadiimportwizard.po
--- old/akonadi-import-wizard-22.08.1/po/zh_CN/akonadiimportwizard.po   
2022-09-06 02:14:31.0 

commit akonadi-calendar for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package akonadi-calendar for 
openSUSE:Factory checked in at 2022-10-15 16:33:28

Comparing /work/SRC/openSUSE:Factory/akonadi-calendar (Old)
 and  /work/SRC/openSUSE:Factory/.akonadi-calendar.new.2275 (New)


Package is "akonadi-calendar"

Sat Oct 15 16:33:28 2022 rev:89 rq:1010644 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/akonadi-calendar/akonadi-calendar.changes
2022-09-09 18:22:56.584163329 +0200
+++ 
/work/SRC/openSUSE:Factory/.akonadi-calendar.new.2275/akonadi-calendar.changes  
2022-10-15 16:33:29.617581894 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:39 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  akonadi-calendar-22.08.1.tar.xz
  akonadi-calendar-22.08.1.tar.xz.sig

New:

  akonadi-calendar-22.08.2.tar.xz
  akonadi-calendar-22.08.2.tar.xz.sig



Other differences:
--
++ akonadi-calendar.spec ++
--- /var/tmp/diff_new_pack.HJ6kLR/_old  2022-10-15 16:33:30.457583913 +0200
+++ /var/tmp/diff_new_pack.HJ6kLR/_new  2022-10-15 16:33:30.461583923 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   akonadi-calendar
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Akonadi calendar integration
 License:LGPL-2.1-or-later

++ akonadi-calendar-22.08.1.tar.xz -> akonadi-calendar-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-calendar-22.08.1/CMakeLists.txt 
new/akonadi-calendar-22.08.2/CMakeLists.txt
--- old/akonadi-calendar-22.08.1/CMakeLists.txt 2022-08-31 04:50:37.0 
+0200
+++ new/akonadi-calendar-22.08.2/CMakeLists.txt 2022-09-27 04:46:01.0 
+0200
@@ -3,7 +3,7 @@
 
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 project(Akonadi-Calendar  VERSION ${PIM_VERSION})
 
 # ECM setup
@@ -33,11 +33,11 @@
 
 
 set(AKONADICALENDAR_LIB_VERSION ${PIM_VERSION})
-set(AKONADICONTACT_LIB_VERSION "5.21.1")
-set(AKONADI_LIB_VERSION "5.21.1")
-set(MAILTRANSPORT_LIB_VERSION "5.21.1")
-set(CALENDARUTILS_LIB_VERSION "5.21.1")
-set(IDENTITYMANAGEMENT_LIB_VERSION "5.21.1")
+set(AKONADICONTACT_LIB_VERSION "5.21.2")
+set(AKONADI_LIB_VERSION "5.21.2")
+set(MAILTRANSPORT_LIB_VERSION "5.21.2")
+set(CALENDARUTILS_LIB_VERSION "5.21.2")
+set(IDENTITYMANAGEMENT_LIB_VERSION "5.21.2")
 
 ecm_setup_version(PROJECT VARIABLE_PREFIX AKONADICALENDAR
 VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/akonadi-calendar_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akonadi-calendar-22.08.1/po/ca/libakonadi-calendar5.po 
new/akonadi-calendar-22.08.2/po/ca/libakonadi-calendar5.po
--- old/akonadi-calendar-22.08.1/po/ca/libakonadi-calendar5.po  2022-09-06 
02:14:12.0 +0200
+++ new/akonadi-calendar-22.08.2/po/ca/libakonadi-calendar5.po  2022-10-11 
07:01:45.0 +0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: akonadi-calendar\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-05-08 00:46+\n"
-"PO-Revision-Date: 2022-05-08 10:21+0200\n"
+"PO-Revision-Date: 2022-10-10 10:16+0200\n"
 "Last-Translator: Josep M. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -1126,7 +1126,7 @@
 "trobar cap versi?? pr??via de l'element en el calendari.Aix?? 
pot "
 "haver passat perqu??:l'organitzador no us ha incl??s en la "
 "invitaci?? originalencara no heu acceptat la invitaci?? 
original heu eliminat la invitaci?? original del calendari no 
"
+"item> heu suprimit la invitaci?? original del calendari no 
"
 "teniu acc??s al calendari que cont?? la invitaci?? "
 "Aix?? no ??s cap problema, per?? haur??eu de con??ixer-ho."
 
@@ -1144,7 +1144,7 @@
 #: scheduler_p.cpp:338
 #, kde-format
 msgid "Could not find incidence to delete."
-msgstr "No s'ha pogut trobar cap incid??ncia a eliminar."
+msgstr "No s'ha pogut trobar cap incid??ncia a suprimir."
 
 #: scheduler_p.cpp:391
 #, kde-format
@@ -1297,7 +1297,7 @@
 #: standardcalendaractionmanager.cpp:73
 #, kde-format
 msgid "Delete the selected calendar folders from the calendar."
-msgstr "Elimina les carpetes de calendari seleccionades del calendari."
+msgstr "Suprimeix les carpetes de calendari seleccionades del calendari."
 
 #: standardcalendaractionmanager.cpp:76
 #, kde-format
@@ -1306,10 +1306,10 @@
 msgid_plural ""
 "Do you really 

commit akonadi-contact for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package akonadi-contact for openSUSE:Factory 
checked in at 2022-10-15 16:33:30

Comparing /work/SRC/openSUSE:Factory/akonadi-contact (Old)
 and  /work/SRC/openSUSE:Factory/.akonadi-contact.new.2275 (New)


Package is "akonadi-contact"

Sat Oct 15 16:33:30 2022 rev:79 rq:1010646 version:22.08.2

Changes:

--- /work/SRC/openSUSE:Factory/akonadi-contact/akonadi-contact.changes  
2022-09-09 18:22:58.512168432 +0200
+++ 
/work/SRC/openSUSE:Factory/.akonadi-contact.new.2275/akonadi-contact.changes
2022-10-15 16:33:33.593591449 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:41 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  akonadi-contacts-22.08.1.tar.xz
  akonadi-contacts-22.08.1.tar.xz.sig

New:

  akonadi-contacts-22.08.2.tar.xz
  akonadi-contacts-22.08.2.tar.xz.sig



Other differences:
--
++ akonadi-contact.spec ++
--- /var/tmp/diff_new_pack.jaO4KC/_old  2022-10-15 16:33:35.709596534 +0200
+++ /var/tmp/diff_new_pack.jaO4KC/_new  2022-10-15 16:33:35.713596544 +0200
@@ -23,7 +23,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   akonadi-contact
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:KDE PIM Libraries for Akonadi Contacts
 License:LGPL-2.1-or-later

++ akonadi-contacts-22.08.1.tar.xz -> akonadi-contacts-22.08.2.tar.xz ++
 2385 lines of diff (skipped)


commit akonadi-calendar-tools for openSUSE:Factory

2022-10-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package akonadi-calendar-tools for 
openSUSE:Factory checked in at 2022-10-15 16:33:29

Comparing /work/SRC/openSUSE:Factory/akonadi-calendar-tools (Old)
 and  /work/SRC/openSUSE:Factory/.akonadi-calendar-tools.new.2275 (New)


Package is "akonadi-calendar-tools"

Sat Oct 15 16:33:29 2022 rev:73 rq:1010645 version:22.08.2

Changes:

--- 
/work/SRC/openSUSE:Factory/akonadi-calendar-tools/akonadi-calendar-tools.changes
2022-09-09 18:22:57.784166505 +0200
+++ 
/work/SRC/openSUSE:Factory/.akonadi-calendar-tools.new.2275/akonadi-calendar-tools.changes
  2022-10-15 16:33:31.341586037 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:40 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+---

Old:

  akonadi-calendar-tools-22.08.1.tar.xz
  akonadi-calendar-tools-22.08.1.tar.xz.sig

New:

  akonadi-calendar-tools-22.08.2.tar.xz
  akonadi-calendar-tools-22.08.2.tar.xz.sig



Other differences:
--
++ akonadi-calendar-tools.spec ++
--- /var/tmp/diff_new_pack.Uu5GvP/_old  2022-10-15 16:33:32.965589940 +0200
+++ /var/tmp/diff_new_pack.Uu5GvP/_new  2022-10-15 16:33:32.969589949 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   akonadi-calendar-tools
-Version:22.08.1
+Version:22.08.2
 Release:0
 Summary:Console applications and utilities for managing calendars
 License:GPL-2.0-or-later AND LGPL-2.1-or-later

++ akonadi-calendar-tools-22.08.1.tar.xz -> 
akonadi-calendar-tools-22.08.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-calendar-tools-22.08.1/CMakeLists.txt 
new/akonadi-calendar-tools-22.08.2/CMakeLists.txt
--- old/akonadi-calendar-tools-22.08.1/CMakeLists.txt   2022-08-20 
16:57:54.0 +0200
+++ new/akonadi-calendar-tools-22.08.2/CMakeLists.txt   2022-09-11 
10:01:12.0 +0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.1")
+set(PIM_VERSION "5.21.2")
 project(akonadi-calendar-tools VERSION ${PIM_VERSION})
 
 set(KF5_MIN_VERSION "5.95.0")
@@ -41,11 +41,11 @@
 set(KDEPIM_VERSION "${PIM_VERSION}${KDEPIM_DEV_VERSION}")
 
 
-set(AKONADICALENDAR_LIB_VERSION "5.21.1")
-set(AKONADI_VERSION "5.21.1")
-set(CALENDARSUPPORT_LIB_VERSION "5.21.1")
-set(KCALENDARCORE_LIB_VERSION "5.21.1")
-set(CALENDARUTILS_LIB_VERSION "5.21.1")
+set(AKONADICALENDAR_LIB_VERSION "5.21.2")
+set(AKONADI_VERSION "5.21.2")
+set(CALENDARSUPPORT_LIB_VERSION "5.21.2")
+set(KCALENDARCORE_LIB_VERSION "5.21.2")
+set(CALENDARUTILS_LIB_VERSION "5.21.2")
 set(KDEPIM_LIB_VERSION "${PIM_VERSION}")
 set(KDEPIM_LIB_SOVERSION "5")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akonadi-calendar-tools-22.08.1/po/zh_CN/calendarjanitor.po 
new/akonadi-calendar-tools-22.08.2/po/zh_CN/calendarjanitor.po
--- old/akonadi-calendar-tools-22.08.1/po/zh_CN/calendarjanitor.po  
2022-09-06 02:14:25.0 +0200
+++ new/akonadi-calendar-tools-22.08.2/po/zh_CN/calendarjanitor.po  
2022-10-11 07:02:02.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2022-04-24 00:44+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akonadi-calendar-tools-22.08.1/po/zh_CN/konsolekalendar.po 
new/akonadi-calendar-tools-22.08.2/po/zh_CN/konsolekalendar.po
--- old/akonadi-calendar-tools-22.08.1/po/zh_CN/konsolekalendar.po  
2022-09-06 02:14:25.0 +0200
+++ new/akonadi-calendar-tools-22.08.2/po/zh_CN/konsolekalendar.po  
2022-10-11 07:02:02.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2021-11-26 00:28+\n"
-"PO-Revision-Date: 2022-08-20 14:20\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


<    1   2   3