commit shadow for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package shadow for openSUSE:Factory checked 
in at 2022-11-04 17:31:23

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


Package is "shadow"

Fri Nov  4 17:31:23 2022 rev:50 rq:1032849 version:4.12.3

Changes:

--- /work/SRC/openSUSE:Factory/shadow/shadow.changes2022-10-26 
12:31:13.396239518 +0200
+++ /work/SRC/openSUSE:Factory/.shadow.new.2275/shadow.changes  2022-11-04 
17:31:25.151685235 +0100
@@ -1,0 +2,6 @@
+Wed Nov  2 10:59:16 UTC 2022 - Michael Vetter 
+
+- bsc#1204811: Fix chage date format string regression
+  * Add shadow-chage-format.patch
+
+---

New:

  shadow-chage-format.patch



Other differences:
--
++ shadow.spec ++
--- /var/tmp/diff_new_pack.JzJaJX/_old  2022-11-04 17:31:26.003689819 +0100
+++ /var/tmp/diff_new_pack.JzJaJX/_new  2022-11-04 17:31:26.023689926 +0100
@@ -61,6 +61,8 @@
 Patch9: disable_new_audit_function.patch
 # PATCH-FIX-UPSTREAM  shadow-prefix-overflow.patch mvet...@suse.com -- Fix 
buffer overflow when using --prefix in useradd
 Patch10:
https://github.com/shadow-maint/shadow/commit/eaebea55a495a56317ed85e959b3599f73c6bdf2.patch#/shadow-prefix-overflow.patch
+# PATCH-FIX-UPSTREAM shadow-chage-format.patch mvet...@suse.com -- Fix chage 
format string
+Patch11:
https://github.com/shadow-maint/shadow/commit/e503fd574b7dbf6b21b1168e20938f0922807916.patch#/shadow-chage-format.patch
 BuildRequires:  audit-devel > 2.3
 BuildRequires:  autoconf
 BuildRequires:  automake
@@ -132,6 +134,7 @@
 %patch9 -p1
 %endif
 %patch10 -p1
+%patch11 -p1
 
 iconv -f ISO88591 -t utf-8  doc/HOWTO > doc/HOWTO.utf8
 mv -v doc/HOWTO.utf8 doc/HOWTO


++ shadow-chage-format.patch ++
>From e503fd574b7dbf6b21b1168e20938f0922807916 Mon Sep 17 00:00:00 2001
From: Xiami <1927254+xiami2...@users.noreply.github.com>
Date: Wed, 5 Oct 2022 18:11:28 +0800
Subject: [PATCH] chage: Fix regression in print_date

Introduced by c6c8130db4319613a91dd07bbb845f6c33c5f79f

After removing snprintf, the format string should get unescaped once.

Fixes #564

Reporter and patch author: DerMouse (github.com/DerMouse)
---
 src/chage.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/chage.c b/src/chage.c
index 8cf677942..01570d725 100644
--- a/src/chage.c
+++ b/src/chage.c
@@ -228,7 +228,7 @@ static void print_date (time_t date)
if (NULL == tp) {
(void) printf ("time_t: %lu\n", (unsigned long)date);
} else {
-   (void) strftime (buf, sizeof buf, iflg ? "%%Y-%%m-%%d" : "%%b 
%%d, %%Y", tp);
+   (void) strftime (buf, sizeof buf, iflg ? "%Y-%m-%d" : "%b %d, 
%Y", tp);
(void) puts (buf);
}
 }


commit fipscheck for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package fipscheck for openSUSE:Factory 
checked in at 2022-11-04 17:31:24

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


Package is "fipscheck"

Fri Nov  4 17:31:24 2022 rev:11 rq:1032909 version:1.7.0

Changes:

--- /work/SRC/openSUSE:Factory/fipscheck/fipscheck.changes  2020-11-26 
23:08:42.624789064 +0100
+++ /work/SRC/openSUSE:Factory/.fipscheck.new.2275/fipscheck.changes
2022-11-04 17:31:26.419692057 +0100
@@ -1,0 +2,8 @@
+Wed Nov  2 14:30:29 UTC 2022 - Marcus Meissner 
+
+- updated to 1.7.0 (from a different supplier)
+  - openssl 3 support
+- dropped fipscheck-dont_generate_manpages.patch (not needed)
+- dropped fipscheck-fips.h_not_needed.patch (not needed)
+
+---

Old:

  fipscheck-1.5.0.tar.bz2
  fipscheck-dont_generate_manpages.patch
  fipscheck-fips.h_not_needed.patch

New:

  fipscheck-1.7.0.tar.bz2



Other differences:
--
++ fipscheck.spec ++
--- /var/tmp/diff_new_pack.QQEqvU/_old  2022-11-04 17:31:26.967695006 +0100
+++ /var/tmp/diff_new_pack.QQEqvU/_new  2022-11-04 17:31:26.971695027 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fipscheck
 #
-# Copyright (c) 2020 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
@@ -20,16 +20,14 @@
 %global soversion 1.2.1
 %global somajor 1
 Name:   fipscheck
-Version:1.5.0
+Version:1.7.0
 Release:0
 Summary:A library for integrity verification of FIPS validated modules
 License:BSD-2-Clause
 Group:  Development/Libraries/C and C++
-URL:https://releases.pagure.org/%{name}/
-Source0:
https://releases.pagure.org/fipscheck/%{name}-%{version}.tar.bz2
+URL:https://github.com/LairdCP/fipscheck
+Source0:fipscheck-%version.tar.bz2
 Source1:baselibs.conf
-Patch1: fipscheck-dont_generate_manpages.patch
-Patch2: fipscheck-fips.h_not_needed.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  libtool
@@ -59,8 +57,6 @@
 
 %prep
 %setup -q
-%patch1 -p1
-%patch2 -p1
 
 %build
 %configure --disable-static

++ fipscheck-1.5.0.tar.bz2 -> fipscheck-1.7.0.tar.bz2 ++
 3247 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/fipscheck-1.5.0/INSTALL new/fipscheck-1.7.0/INSTALL
--- old/fipscheck-1.5.0/INSTALL 2017-02-23 15:05:20.0 +0100
+++ new/fipscheck-1.7.0/INSTALL 2022-11-02 15:44:26.0 +0100
@@ -1,8 +1,8 @@
 Installation Instructions
 *
 
-Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
-Inc.
+   Copyright (C) 1994-1996, 1999-2002, 2004-2016 Free Software
+Foundation, Inc.
 
Copying and distribution of this file, with or without modification,
 are permitted in any medium without royalty provided the copyright
@@ -12,97 +12,96 @@
 Basic Installation
 ==
 
-   Briefly, the shell command `./configure && make && make install'
+   Briefly, the shell command './configure && make && make install'
 should configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
+more-detailed instructions are generic; see the 'README' file for
 instructions specific to this package.  Some packages provide this
-`INSTALL' file but do not implement all of the features documented
+'INSTALL' file but do not implement all of the features documented
 below.  The lack of an optional feature in a given package is not
 necessarily a bug.  More recommendations for GNU packages can be found
 in *note Makefile Conventions: (standards)Makefile Conventions.
 
-   The `configure' shell script attempts to guess correct values for
+   The 'configure' shell script attempts to guess correct values for
 various system-dependent variables used during compilation.  It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions.  Finally, it creates a shell script `config.status' that
+those values to create a 'Makefile' in each directory of the package.
+It may also create one or m

commit python-charset-normalizer for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-charset-normalizer for 
openSUSE:Factory checked in at 2022-11-04 17:31:30

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


Package is "python-charset-normalizer"

Fri Nov  4 17:31:30 2022 rev:16 rq:1032182 version:3.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-charset-normalizer/python-charset-normalizer.changes
  2022-09-18 17:32:00.929734658 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-charset-normalizer.new.2275/python-charset-normalizer.changes
2022-11-04 17:31:31.619720036 +0100
@@ -1,0 +2,27 @@
+Thu Oct 27 22:18:02 UTC 2022 - Yogalakshmi Arunachalam 
+
+- Update to 3.0.0 
+  Added
+  * Extend the capability of explain=True when cp_isolation contains at most 
two entries (min one), will log in details of the Mess-detector results
+Support for alternative language frequency set in 
charset_normalizer.assets.FREQUENCIES
+Add parameter language_threshold in from_bytes, from_path and from_fp to 
adjust the minimum expected coherence ratio
+normalizer --version now specify if current version provide extra speedup 
(meaning mypyc compilation whl)
+  * Changed
+Build with static metadata using 'build' frontend
+Make the language detection stricter
+Optional: Module md.py can be compiled using Mypyc to provide an extra 
speedup up to 4x faster than v2.1
+  * Fixed
+CLI with opt --normalize fail when using full path for files
+TooManyAccentuatedPlugin induce false positive on the mess detection when 
too few alpha character have been fed to it
+Sphinx warnings when generating the documentation
+  * Removed
+Coherence detector no longer return 'Simple English' instead return 
'English'
+Coherence detector no longer return 'Classical Chinese' instead return 
'Chinese'
+Breaking: Method first() and best() from CharsetMatch
+UTF-7 will no longer appear as "detected" without a recognized SIG/mark 
(is unreliable/conflict with ASCII)
+Breaking: Class aliases CharsetDetector, CharsetDoctor, 
CharsetNormalizerMatch and CharsetNormalizerMatches
+Breaking: Top-level function normalize
+Breaking: Properties chaos_secondary_pass, coherence_non_latin and 
w_counter from CharsetMatch
+Support for the backport unicodedata2
+
+---

Old:

  charset_normalizer-2.1.1.tar.gz

New:

  charset_normalizer-3.0.0.tar.gz



Other differences:
--
++ python-charset-normalizer.spec ++
--- /var/tmp/diff_new_pack.kjl6Y8/_old  2022-11-04 17:31:32.155722920 +0100
+++ /var/tmp/diff_new_pack.kjl6Y8/_new  2022-11-04 17:31:32.163722963 +0100
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python3-%{**}}
 %define skip_python2 1
 Name:   python-charset-normalizer
-Version:2.1.1
+Version:3.0.0
 Release:0
 Summary:Python Universal Charset detector
 License:MIT

++ charset_normalizer-2.1.1.tar.gz -> charset_normalizer-3.0.0.tar.gz ++
 2347 lines of diff (skipped)


commit bash for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package bash for openSUSE:Factory checked in 
at 2022-11-04 17:31:21

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


Package is "bash"

Fri Nov  4 17:31:21 2022 rev:183 rq:1032788 version:5.2.MACRO

Changes:

--- /work/SRC/openSUSE:Factory/bash/bash.changes2022-10-23 
16:32:41.607195934 +0200
+++ /work/SRC/openSUSE:Factory/.bash.new.2275/bash.changes  2022-11-04 
17:31:22.967673484 +0100
@@ -1,0 +2,6 @@
+Wed Nov  2 07:48:10 UTC 2022 - Dr. Werner Fink 
+
+- Set DEFAULT_LOADABLE_BUILTINS_PATH to get BASH_LOADABLES_PATH
+  correct (boo#1204567) 
+
+---



Other differences:
--
++ bash.spec ++
--- /var/tmp/diff_new_pack.bD9Min/_old  2022-11-04 17:31:24.095679553 +0100
+++ /var/tmp/diff_new_pack.bD9Min/_new  2022-11-04 17:31:24.103679596 +0100
@@ -385,6 +385,7 @@
 # cflags -fno-unwind-tables CFLAGS
 # cflags -fno-asynchronous-unwind-tables CFLAGS
 %endif
+  CFLAGS="$CFLAGS -DDEFAULT_LOADABLE_BUILTINS_PATH='\"%{_libdir}/%{name}\"'"
   CC_FOR_BUILD="$CC"
   CFLAGS_FOR_BUILD="$CFLAGS"
   export CC_FOR_BUILD CFLAGS_FOR_BUILD CFLAGS LDFLAGS CC


commit python-libvirt-python for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-libvirt-python for 
openSUSE:Factory checked in at 2022-11-04 17:31:32

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


Package is "python-libvirt-python"

Fri Nov  4 17:31:32 2022 rev:62 rq:1032949 version:8.9.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-libvirt-python/python-libvirt-python.changes  
2022-10-10 18:44:54.982914351 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-libvirt-python.new.2275/python-libvirt-python.changes
2022-11-04 17:31:33.783731679 +0100
@@ -1,0 +2,7 @@
+Wed Nov  2 19:43:19 UTC 2022 - James Fehlig 
+
+- Update to 8.9.0
+  - Add all new APIs and constants in libvirt 8.9.0
+  - jsc#PED-620, jsc#PED-1540
+
+---

Old:

  libvirt-python-8.8.0.tar.gz

New:

  libvirt-python-8.9.0.tar.gz



Other differences:
--
++ python-libvirt-python.spec ++
--- /var/tmp/diff_new_pack.2dlObZ/_old  2022-11-04 17:31:34.667736435 +0100
+++ /var/tmp/diff_new_pack.2dlObZ/_new  2022-11-04 17:31:34.679736500 +0100
@@ -23,7 +23,7 @@
 %define srcname libvirt-python
 Name:   python-libvirt-python
 URL:https://libvirt.org/
-Version:8.8.0
+Version:8.9.0
 Release:0
 Summary:Library providing a virtualization API
 License:LGPL-2.1-or-later

++ _service ++
--- /var/tmp/diff_new_pack.2dlObZ/_old  2022-11-04 17:31:34.783737059 +0100
+++ /var/tmp/diff_new_pack.2dlObZ/_new  2022-11-04 17:31:34.807737189 +0100
@@ -1,7 +1,7 @@
 
   
 libvirt-python
-v8.8.0
+v8.9.0
 git
 disable
 https://gitlab.com/libvirt/libvirt-python.git

++ libvirt-python-8.8.0.tar.gz -> libvirt-python-8.9.0.tar.gz ++
 2021 lines of diff (skipped)


commit luajit for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package luajit for openSUSE:Factory checked 
in at 2022-11-04 17:31:33

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


Package is "luajit"

Fri Nov  4 17:31:33 2022 rev:6 rq:1032964 
version:2.1.0~beta3+git.1647772157.43ebb949

Changes:

--- /work/SRC/openSUSE:Factory/luajit/luajit.changes2022-10-10 
18:44:55.834916184 +0200
+++ /work/SRC/openSUSE:Factory/.luajit.new.2275/luajit.changes  2022-11-04 
17:31:35.515740998 +0100
@@ -1,0 +2,7 @@
+Tue Nov  1 16:01:53 UTC 2022 - Michael Gorse 
+
+- Add ppc64 and ppc64le to ExcludeArch for now. This can be
+  removed if we rebase the ppc64 patch, but it is no longer being
+  maintained and seems unlikely to land upstream (bsc#1204557).
+
+---



Other differences:
--
++ luajit.spec ++
--- /var/tmp/diff_new_pack.v7JwcO/_old  2022-11-04 17:31:36.499746292 +0100
+++ /var/tmp/diff_new_pack.v7JwcO/_new  2022-11-04 17:31:36.519746399 +0100
@@ -45,7 +45,7 @@
 Obsoletes:  lua51-luajit <= 2.2.0
 Obsoletes:  moonjit <= 2.2.0
 # lj_arch.h:441:2: error: #error "No target architecture defined"
-ExcludeArch:riscv64
+ExcludeArch:riscv64 ppc64 ppc64le
 
 %description
 A Just-In-Time Compiler for Lua language


commit spdlog for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package spdlog for openSUSE:Factory checked 
in at 2022-11-04 17:31:35

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


Package is "spdlog"

Fri Nov  4 17:31:35 2022 rev:26 rq:1032966 version:1.11.0

Changes:

--- /work/SRC/openSUSE:Factory/spdlog/spdlog.changes2022-10-27 
13:53:39.484410110 +0200
+++ /work/SRC/openSUSE:Factory/.spdlog.new.2275/spdlog.changes  2022-11-04 
17:31:37.219750166 +0100
@@ -1,0 +2,40 @@
+Wed Nov  2 22:51:57 UTC 2022 - Bernd Ritter 
+
+- Update to version 1.11.0
+  * Update to fmt lib version 9.1.0 #2346, #2485, #2512, #2517 . Thanks 
@sylveon, @YunchengLiu, @tt4g, @tycho and @vitaut
+  * Fix template instantiation warning #2336 . Thanks @aengusjiang
+  * Event handlers improvements #2342, #2375 . Thanks @espkk and @kslattery
+  * Allow modifying the used Android buffer ID #2358. Thanks @tiolan
+  * Fix clone in async test #2364. Thanks @stkw0
+  * Custom formatter optimization #2365. Thanks @conr2d
+  * Fix C++14 builds for gcc 4.x (#2333) #2372 . Thanks @kslattery
+  * Add minor version to CMake's SOVERSION #2376
+  * Allow compilation with FMT_ENFORCE_COMPILE_STRING #2381. Thanks @john4744
+  * Fix pkg-config generation #2383. Thanks @alexshpilkin
+  * Remove unused code from null_mutex #2385. Thanks @panzhongxian
+  * Fix redundant std::move #2396. Thanks @polesapart
+  * Remove the empty file if in first period in hourly logger #2386. Thanks 
@panzhongxian
+  * Add reset_overrun_counter() function to the async logging #2399 Thanks 
@bergen4
+  * Set C++20 in CMake when SPDLOG_USE_STD_FORMAT option is turned on #2402. 
Thanks @cookcocck
+  * Fix mingw test #2415. Thanks @neheb
+  * Support for any std::chrono::duration type in flush_every(..) #2439. 
Thanks @LucasChollet
+  * Fix implicit casting of level_enum #2443. Thanks @ibmibmibm
+  * Comment fix #2445. Thanks @Hish15
+  * Fix gcc 4.x build #2449. Thanks @Simon-Janos
+  * Add openSUSE installation instructions #2468. Thanks @LorenDB
+  * Fixed missing include file in stopwatch.h #2434. Thanks @fabianbuettner
+  * Support for omitting source info by defining SPDLOG_NO_SOURCE_LOC #2476. 
Thanks @nigels-com
+  * Added SPDLOG_BUILD_PIC build option to CMake #2475. Thanks @nigels-com
+  * Fix include windows.h #2495. Thanks @panicgh
+  * Workaround gcc 12 warnings #2498, #2499 . Thanks @offa
+  * Migrate to Github Actions CI #2500. Thanks @offa
+  * Replace iterator difference with std::distance #2509 Thanks @kin4stat
+  * Export targets file to build directory at configure time #2514, #2515. 
Thanks @puneetmatharu
+  * MongoDB sink improvements #2519. Thanks @sandorzm
+  * Fix shadow warning in dist_sink #2431. Thanks @MohammadKanan for reporting.
+  * Fixed msvc warning C4800 in win_eventlog_sink
+  * Check IsDebuggerPresent() in msvc_sink before doing actual work #2408. To 
use old behavior pass false to the msvc_sink constructor. Thanks 
@DominikGrabiec and @sylveon
+- Removed e36b69a0ecbdfb51cc28087b11256fb88c360ba4.patch as [boo#1199306] is 
now integrated. 
+  * Updated baselibs.conf accordingly.
+
+---

Old:

  e36b69a0ecbdfb51cc28087b11256fb88c360ba4.patch
  spdlog-1.10.0.tar.gz

New:

  spdlog-1.11.0.tar.gz



Other differences:
--
++ spdlog.spec ++
--- /var/tmp/diff_new_pack.4vRGcY/_old  2022-11-04 17:31:38.083754815 +0100
+++ /var/tmp/diff_new_pack.4vRGcY/_new  2022-11-04 17:31:38.091754858 +0100
@@ -17,17 +17,15 @@
 
 
 Name:   spdlog
-%define lname  libspdlog1_10
-%define sover  1.10
-Version:1.10.0
+%define lname  libspdlog1_11
+%define sover  1.11
+Version:1.11.0
 Release:0
 Summary:C++ logging library
 License:MIT
 URL:https://github.com/gabime/spdlog
 Source0:
https://github.com/gabime/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Source99:   baselibs.conf
-# PATCH-FIX-UPSTREAM fix for bug boo#1199306
-Patch0: 
https://github.com/gabime/%{name}/commit/e36b69a0ecbdfb51cc28087b11256fb88c360ba4.patch
 BuildRequires:  cmake >= 3.10
 %if 0%{?suse_version} > 1500
 BuildRequires:  gcc-c++ >= 8

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.4vRGcY/_old  2022-11-04 17:31:38.127755051 +0100
+++ /var/tmp/diff_new_pack.4vRGcY/_new  2022-11-04 17:31:38.131755073 +0100
@@ -1,2 +1,2 @@
-libspdlog1_10
+libspdlog1_11
 

++ spdlog-1.10.0.tar.gz -> spdlog-1.11.0.tar.gz ++
 11616 lines of diff (skipped)


commit cmake for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package cmake for openSUSE:Factory checked 
in at 2022-11-04 17:31:36

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


Package is "cmake"

Fri Nov  4 17:31:36 2022 rev:223 rq:1032972 version:3.24.3

Changes:

--- /work/SRC/openSUSE:Factory/cmake/cmake.changes  2022-09-18 
17:32:03.165741182 +0200
+++ /work/SRC/openSUSE:Factory/.cmake.new.2275/cmake.changes2022-11-04 
17:31:38.991759700 +0100
@@ -1,0 +2,9 @@
+Wed Nov  2 16:09:11 UTC 2022 - Christoph G 
+
+- Update to 3.24.3
+  * LLVMFlang: Add support for mixed-language linking with Fortran
+  * FindMatlab: add R2022b 9.13 version map
+  * Intel/IntelLLVM: Fortran has distinct "-Werror"-like flag
+  * CUDA: Add support for the two new architectures in 11.8
+
+---

Old:

  cmake-3.24.2-SHA-256.txt
  cmake-3.24.2-SHA-256.txt.asc
  cmake-3.24.2.tar.gz

New:

  cmake-3.24.3-SHA-256.txt
  cmake-3.24.3-SHA-256.txt.asc
  cmake-3.24.3.tar.gz



Other differences:
--
++ cmake.spec ++
--- /var/tmp/diff_new_pack.Vx3ZI5/_old  2022-11-04 17:31:39.851764327 +0100
+++ /var/tmp/diff_new_pack.Vx3ZI5/_new  2022-11-04 17:31:39.859764371 +0100
@@ -46,7 +46,7 @@
 %endif
 %define shortversion 3.24
 Name:   cmake%{?psuffix}
-Version:3.24.2
+Version:3.24.3
 Release:0
 Summary:Cross-platform make system
 License:BSD-3-Clause

++ cmake-3.24.2-SHA-256.txt -> cmake-3.24.3-SHA-256.txt ++
--- /work/SRC/openSUSE:Factory/cmake/cmake-3.24.2-SHA-256.txt   2022-09-18 
17:32:02.837740225 +0200
+++ /work/SRC/openSUSE:Factory/.cmake.new.2275/cmake-3.24.3-SHA-256.txt 
2022-11-04 17:31:38.651757871 +0100
@@ -1,17 +1,17 @@
-cb4ceeccbf5cbb849eb3d435f090dd37f8e1e07ab45906bd0048b86336b81d91  
cmake-3.24.2-files-v1.json
-281b42627c9a1beed03e29706574d04c6c53fae4994472e90985ef018dd29c02  
cmake-3.24.2-linux-aarch64.sh
-5f1c0d49bac89915b5c68811c2430e5de6c8e606785b9f2919eabee86c2f12b4  
cmake-3.24.2-linux-aarch64.tar.gz
-739d372726cb23129d57a539ce1432453448816e345e1545f6127296926b6754  
cmake-3.24.2-linux-x86_64.sh
-71a776b6a08135092b5beb00a603b60ca39f8231c01a0356e205e0b4631747d9  
cmake-3.24.2-linux-x86_64.tar.gz
-79aa8e4a9676114489a12994fb69698127c904c62089b84d91cf93427923cb05  
cmake-3.24.2-macos-universal.dmg
-efb11a78c064dd7c54a50b8da247254d252112c402c6e48cb7db3f9c84a4e5ad  
cmake-3.24.2-macos-universal.tar.gz
-039f74dd9947886a6828ca2ad5653be8da972819c462b316fe6d7511c76322e7  
cmake-3.24.2-macos10.10-universal.dmg
-bee61a67d1a7cd79398abfeace32cf9099ebfd3a46033944981b7408f65c89d5  
cmake-3.24.2-macos10.10-universal.tar.gz
-07fa05861ba9542ab663b5abb1b1246e215bd2af807b1fe8c2e02e9618c56293  
cmake-3.24.2-windows-arm64.msi
-339c823e1e483ea73ce647586798be8101937402028fd143a071de3868759e78  
cmake-3.24.2-windows-arm64.zip
-4a2916149b678cfe41f3e16e03ba12960f8a4be0b1bc702b20ddc5fdbdef46ee  
cmake-3.24.2-windows-i386.msi
-52f174dc7f52a9c496c7a49ee35456466c07c8ce29aa2092f4b4536ce5d7ed57  
cmake-3.24.2-windows-i386.zip
-a589a1adcc631343521fef65515e2e03ba64770c82c099ab7651c5e107bd9238  
cmake-3.24.2-windows-x86_64.msi
-6af30354eecbb7113b0f0142d13c03d21abbc9f4dbdcddaf88df1f9ca1bc4d6f  
cmake-3.24.2-windows-x86_64.zip
-0d9020f06f3ddf17fb537dc228e1a56c927ee506b486f55fe2dc19f69bf0c8db  
cmake-3.24.2.tar.gz
-f0c3a042cdc97def1ebfd5f8054466aea883b2a7a2085d76ae51b6f871475cb3  
cmake-3.24.2.zip
+16f8c4487e14a1cbe0e1dc97789bddae9585f98c2b564f824be95f0df935c97a  
cmake-3.24.3-files-v1.json
+6d80926cff44630d6cea595f6721cec6f202d656e6e3e3e9191a1be0af02ad69  
cmake-3.24.3-linux-aarch64.sh
+00d6911b886f394b3b7fec8b1fa010112c98251bb8d95cedecaacc4fe7961a9a  
cmake-3.24.3-linux-aarch64.tar.gz
+06ff29c5b6f461a30b289b6004e755b197b3257d5ea46095bf9399035376f40d  
cmake-3.24.3-linux-x86_64.sh
+8e3d048c7fb26767b00db6a55025aa380d91f45d8f3749e9b9961ef25744b102  
cmake-3.24.3-linux-x86_64.tar.gz
+595b96c8723475f669cdbf0e7442847af4af6a222935d874ae1454fc4bd8ec64  
cmake-3.24.3-macos-universal.dmg
+f1658e4a9259adc74225be0dcd514b8d9bae3314e7f13dee03b6a25833ab7823  
cmake-3.24.3-macos-universal.tar.gz
+2bd30836eddcb7eb003e47c4fdd2d4daa49f1817cfd1be01b430b780fb7c2a27  
cmake-3.24.3-macos10.10-universal.dmg
+a7420134925849ea01fbc2c99f8db6f431383868954f70e4db304fc38cb973a6  
cmake-3.24.3-macos10.10-universal.tar.gz
+a0e872a328ff296eb8f4f35a2e12b644ac614cc7ccf52288271302d0ff08addf  
cmake-3.24.3-windows-arm64.msi
+d0c0fdef2705fb9b40026ddf7a2e594219c60d76d132c068fd089adbb5b7c016  
cmake-3.24.3-windows-arm64.zip
+c79ba2aaf98fd25564694af14879d02edb35ddafdb06fc7a1ea92bf6d0d7d850  
cmake-3.24.3-windows-i386.msi
+f5a1a1314e539f

commit python-bcrypt for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-bcrypt for openSUSE:Factory 
checked in at 2022-11-04 17:31:38

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


Package is "python-bcrypt"

Fri Nov  4 17:31:38 2022 rev:12 rq:1032996 version:4.0.1

Changes:

--- /work/SRC/openSUSE:Factory/python-bcrypt/python-bcrypt.changes  
2022-05-06 18:58:12.749282648 +0200
+++ /work/SRC/openSUSE:Factory/.python-bcrypt.new.2275/python-bcrypt.changes
2022-11-04 17:31:40.827769579 +0100
@@ -1,0 +2,28 @@
+Thu Nov  3 06:44:04 UTC 2022 - Daniel Garcia 
+
+- Removed not needed C build dependencies
+- Enable for all archs by default
+
+---
+Wed Nov  2 16:32:00 UTC 2022 - Daniel Garcia 
+
+- Update to 4.0.1:
+  * We now build PyPy manylinux wheels.
+  * Fixed a bug where passing an invalid salt to checkpw could result in a
+pyo3_runtime.PanicException. It now correctly raises a ValueError.
+- 4.0.0:
+  * bcrypt is now implemented in Rust. Users building from source will need to
+have a Rust compiler available. Nothing will change for users downloading
+wheels.
+  * We no longer ship manylinux2010 wheels. Users should upgrade to the latest
+pip to ensure this doesn???t cause issues downloading wheels on their
+platform. We now ship manylinux_2_28 wheels for users on new enough
+platforms.
+  * NUL bytes are now allowed in inputs.
+
+---
+Wed Nov  2 15:43:50 UTC 2022 - Daniel Garcia 
+
+- Remove not needed python-six dependency
+
+---

Old:

  bcrypt-3.2.2.tar.gz

New:

  _service
  bcrypt-4.0.1.tar.gz
  cargo_config
  vendor.tar.gz



Other differences:
--
++ python-bcrypt.spec ++
--- /var/tmp/diff_new_pack.RNmpbB/_old  2022-11-04 17:31:42.047776143 +0100
+++ /var/tmp/diff_new_pack.RNmpbB/_new  2022-11-04 17:31:42.055776186 +0100
@@ -17,29 +17,26 @@
 #
 
 
-%{?!python_module:%define python_module() python-%{**} python3-%{**}}
-%define skip_python2 1
 Name:   python-bcrypt
-Version:3.2.2
+Version:4.0.1
 Release:0
 Summary:BSD type 2a and 2b password hashing
 License:Apache-2.0
 Group:  Development/Languages/Python
 URL:https://github.com/pyca/bcrypt/
-Source: 
https://files.pythonhosted.org/packages/source/b/bcrypt/bcrypt-%{version}.tar.gz
-BuildRequires:  %{python_module cffi >= 1.1}
-BuildRequires:  %{python_module devel}
+Source0:
https://files.pythonhosted.org/packages/source/b/bcrypt/bcrypt-%{version}.tar.gz
+Source1:vendor.tar.gz
+Source2:cargo_config
+BuildRequires:  %{python_module pip}
 BuildRequires:  %{python_module pytest >= 3.2.1}
+BuildRequires:  %{python_module setuptools-rust}
+BuildRequires:  %{python_module wheel}
 # setuptools 40.8.0 is required by upstream only for a pip issue that doesn't
 # affect us, so we relax the requirement to build in SLE/Leap 15.2 with 40.5.0
 BuildRequires:  %{python_module setuptools >= 40.5.0}
-BuildRequires:  %{python_module six >= 1.4.1}
+BuildRequires:  cargo-packaging
 BuildRequires:  fdupes
-BuildRequires:  pkgconfig
 BuildRequires:  python-rpm-macros
-BuildRequires:  pkgconfig(libffi)
-Requires:   python-six >= 1.4.1
-%requires_eqpython-cffi
 Provides:   python-py-bcrypt = %{version}
 Obsoletes:  python-py-bcrypt < %{version}
 
@@ -50,14 +47,17 @@
 using the BSD-originating hashing methods known as "2a" and "2b".
 
 %prep
-%setup -q -n bcrypt-%{version}
+%autosetup -p1 -a1 -n bcrypt-%{version}
+mkdir .cargo
+cp %{SOURCE2} .cargo/config
+mv Cargo.lock src/_bcrypt
 
 %build
 export CFLAGS="%{optflags} -fno-strict-aliasing"
-%python_build
+%pyproject_wheel
 
 %install
-%python_install
+%pyproject_install
 %python_expand %fdupes %{buildroot}/%{$python_sitearch}
 
 %check
@@ -67,6 +67,6 @@
 %license LICENSE
 %doc README.rst
 %{python_sitearch}/bcrypt
-%{python_sitearch}/bcrypt-%{version}-py*.egg-info
+%{python_sitearch}/bcrypt-%{version}*-info
 
 %changelog

++ _service ++

  
https://github.com/pyca/bcrypt/
@PARENT_TAG@~@TAG_OFFSET@
git
4.0.1
  
  
 bcrypt/src/_bcrypt
 gz
 true
  
  
 bcrypt/src/_bcrypt
  


++ bcrypt-3.2.2.tar.gz -> bcrypt-4.0.1.tar.gz ++
 3709 lines of diff (skipped)

++ cargo_config ++
[source.crates-io]
replace-with = "vendored-sources"

[source.vendored-sources]
directory = "vendor"
(No newline at EOF)


commit python-bleach for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-bleach for openSUSE:Factory 
checked in at 2022-11-04 17:31:40

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


Package is "python-bleach"

Fri Nov  4 17:31:40 2022 rev:15 rq:1033010 version:5.0.1

Changes:

--- /work/SRC/openSUSE:Factory/python-bleach/python-bleach.changes  
2022-10-01 17:42:48.393631945 +0200
+++ /work/SRC/openSUSE:Factory/.python-bleach.new.2275/python-bleach.changes
2022-11-04 17:31:43.595784472 +0100
@@ -1,0 +2,7 @@
+Thu Nov  3 09:00:37 UTC 2022 - Daniel Garcia 
+
+- Remove not needed python-six dependency
+- Remove python_module macro definition
+- More specific python_sitelib in files
+
+---



Other differences:
--
++ python-bleach.spec ++
--- /var/tmp/diff_new_pack.uTn1Sd/_old  2022-11-04 17:31:44.079787076 +0100
+++ /var/tmp/diff_new_pack.uTn1Sd/_new  2022-11-04 17:31:44.087787119 +0100
@@ -17,7 +17,6 @@
 #
 
 
-%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-bleach
 Version:5.0.1
 Release:0
@@ -30,12 +29,10 @@
 BuildRequires:  %{python_module packaging}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
-BuildRequires:  %{python_module six >= 1.9}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-html5lib >= 1.1
 Requires:   python-packaging
-Requires:   python-six >= 1.9
 BuildArch:  noarch
 %python_subpackages
 
@@ -72,6 +69,7 @@
 %files %{python_files}
 %license LICENSE
 %doc CHANGES README.rst
-%{python_sitelib}/*
+%{python_sitelib}/bleach
+%{python_sitelib}/bleach-%{version}*-info
 
 %changelog


commit php7 for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package php7 for openSUSE:Factory checked in 
at 2022-11-04 17:31:42

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


Package is "php7"

Fri Nov  4 17:31:42 2022 rev:118 rq:1033030 version:7.4.33

Changes:

--- /work/SRC/openSUSE:Factory/php7/php7.changes2022-10-01 
17:42:56.509646710 +0200
+++ /work/SRC/openSUSE:Factory/.php7.new.2275/php7.changes  2022-11-04 
17:31:45.111792629 +0100
@@ -1,0 +2,10 @@
+Thu Nov  3 10:21:36 UTC 2022 - pgaj...@suse.com
+
+- version update to 7.4.33
+  * This is security release that fixes an OOB read due to insufficient
+input validation in imageloadfont(), and a buffer overflow in
+hash_update() on long parameter.
+  * CVE-2022-37454 [bsc#1204577], CVE-2022-31630 [bsc#1204979]
+  https://www.php.net/ChangeLog-7.php#7.4.33
+
+---

Old:

  php-7.4.32.tar.xz
  php-7.4.32.tar.xz.asc

New:

  php-7.4.33.tar.xz
  php-7.4.33.tar.xz.asc



Other differences:
--
++ php7.spec ++
--- /var/tmp/diff_new_pack.ldyDkS/_old  2022-11-04 17:31:46.279798913 +0100
+++ /var/tmp/diff_new_pack.ldyDkS/_new  2022-11-04 17:31:46.287798956 +0100
@@ -53,7 +53,7 @@
 %define build_argon2 1
 %endif
 Name:   %{pprefix}%{php_name}%{psuffix}
-Version:7.4.32
+Version:7.4.33
 Release:0
 Summary:Interpreter for the PHP scripting language version 7
 License:PHP-3.01

++ php-7.4.32.tar.xz -> php-7.4.33.tar.xz ++
/work/SRC/openSUSE:Factory/php7/php-7.4.32.tar.xz 
/work/SRC/openSUSE:Factory/.php7.new.2275/php-7.4.33.tar.xz differ: char 26, 
line 1


commit python-breathe for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-breathe for openSUSE:Factory 
checked in at 2022-11-04 17:31:44

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


Package is "python-breathe"

Fri Nov  4 17:31:44 2022 rev:19 rq:1033062 version:4.34.0

Changes:

--- /work/SRC/openSUSE:Factory/python-breathe/python-breathe.changes
2022-10-28 19:28:39.942371173 +0200
+++ /work/SRC/openSUSE:Factory/.python-breathe.new.2275/python-breathe.changes  
2022-11-04 17:31:48.199809243 +0100
@@ -1,0 +2,5 @@
+Thu Nov  3 12:24:28 UTC 2022 - Daniel Garcia 
+
+- Remove not needed dep python-six
+
+---



Other differences:
--
++ python-breathe.spec ++
--- /var/tmp/diff_new_pack.67dIhI/_old  2022-11-04 17:31:48.747812192 +0100
+++ /var/tmp/diff_new_pack.67dIhI/_new  2022-11-04 17:31:48.795812450 +0100
@@ -31,13 +31,11 @@
 BuildRequires:  %{python_module docutils >= 0.12}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
-BuildRequires:  %{python_module six >= 1.9}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-Sphinx >= 4.0
 Requires:   python-docutils >= 0.12
 Requires:   python-setuptools
-Requires:   python-six >= 1.9
 Requires(post): update-alternatives
 Requires(postun):update-alternatives
 Provides:   python-sphinxcontrib-breathe = %{version}


commit gstreamer-plugins-libav for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gstreamer-plugins-libav for 
openSUSE:Factory checked in at 2022-11-04 17:31:39

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


Package is "gstreamer-plugins-libav"

Fri Nov  4 17:31:39 2022 rev:35 rq:1032997 version:1.20.4

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-plugins-libav/gstreamer-plugins-libav.changes
  2022-10-25 11:18:42.501963891 +0200
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-plugins-libav.new.2275/gstreamer-plugins-libav.changes
2022-11-04 17:31:42.583779027 +0100
@@ -1,0 +2,5 @@
+Wed Nov  2 20:59:24 UTC 2022 - Cristian Rodr??guez 
+
+- Remove unused BuildRequire on yasm. 
+
+---



Other differences:
--
++ gstreamer-plugins-libav.spec ++
--- /var/tmp/diff_new_pack.rt41le/_old  2022-11-04 17:31:43.039781480 +0100
+++ /var/tmp/diff_new_pack.rt41le/_new  2022-11-04 17:31:43.043781502 +0100
@@ -31,7 +31,6 @@
 BuildRequires:  gcc-c++
 BuildRequires:  meson
 BuildRequires:  pkgconfig
-BuildRequires:  yasm
 BuildRequires:  pkgconfig(bzip2)
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(gstreamer-1.0) >= %{version}


commit qca for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qca for openSUSE:Factory checked in 
at 2022-11-04 17:31:43

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


Package is "qca"

Fri Nov  4 17:31:43 2022 rev:6 rq:1033036 version:2.3.5

Changes:

--- /work/SRC/openSUSE:Factory/qca/qca.changes  2021-10-26 20:13:32.706005094 
+0200
+++ /work/SRC/openSUSE:Factory/.qca.new.2275/qca.changes2022-11-04 
17:31:46.947802507 +0100
@@ -1,0 +2,23 @@
+Wed Oct 26 08:54:32 UTC 2022 - Fabian Vogt 
+
+- BR ca-certificates-mozilla for the testsuite
+- Have the devel package require the library
+- Drop qca-2.3.0-fixDSA.patch, that was fixed in 2014 already by
+  just disabling DSA
+- Add upstream change:
+  * 0001-hashunittest-run-sha384longtest-only-for-providers-t.patch
+
+---
+Wed Oct 19 06:15:22 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 2.3.5
+  * find dependencies of Qca when the cmake package is used by a
+project
+  * Handle openssl without case5 support
+  * Update rootcerts.pem
+  * SafeSocketNotifier: fix socket FD type and remove signal
+argument
+- Drop patch, merged upstream:
+  * 0001-Make-filewatchunittest-much-quicker.patch
+
+---

Old:

  0001-Make-filewatchunittest-much-quicker.patch
  qca-2.3.0-fixDSA.patch
  qca-2.3.4.tar.xz
  qca-2.3.4.tar.xz.sig

New:

  0001-hashunittest-run-sha384longtest-only-for-providers-t.patch
  qca-2.3.5.tar.xz
  qca-2.3.5.tar.xz.sig



Other differences:
--
++ qca.spec ++
--- /var/tmp/diff_new_pack.BwaTm2/_old  2022-11-04 17:31:47.615806101 +0100
+++ /var/tmp/diff_new_pack.BwaTm2/_new  2022-11-04 17:31:47.619806123 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package qca
 #
-# 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
@@ -38,7 +38,7 @@
 %define _soversion 2
 %bcond_without pkcs11
 Name:   qca%{pkgname_suffix}
-Version:2.3.4
+Version:2.3.5
 Release:0
 Summary:Qt Cryptographic Architecture 2
 License:LGPL-2.1-or-later
@@ -46,11 +46,9 @@
 Source0:
https://download.kde.org/stable/qca/%{version}/qca-%{version}.tar.xz
 Source1:
https://download.kde.org/stable/qca/%{version}/qca-%{version}.tar.xz.sig
 Source2:qca.keyring
-# PATCH-FIX-OPENSUSE
-Patch0: qca-2.3.0-fixDSA.patch
 # PATCH-FIX-UPSTREAM
-Patch1: 0001-Make-filewatchunittest-much-quicker.patch
-BuildRequires:  ca-certificates
+Patch0: 0001-hashunittest-run-sha384longtest-only-for-providers-t.patch
+BuildRequires:  ca-certificates-mozilla
 BuildRequires:  cmake
 BuildRequires:  gpg2
 BuildRequires:  libgcrypt-devel
@@ -104,6 +102,7 @@
 
 %package devel
 Summary:Development files for the Qt Cryptographic Architecture 2
+Requires:   libqca-%{flavor}-%{_soversion} = %{version}
 %if 0%{?qt5}
 Requires:   cmake(Qt5Core) >= %{qt_min_version}
 Requires:   cmake(Qt5Network) >= %{qt_min_version}
@@ -147,7 +146,7 @@
 %cmake \
 %else
 %cmake_qt6 \
-  -DQT6=ON \
+  -DBUILD_WITH_QT6=ON \
 %endif
   -DBUILD_TESTS=ON \
   -DQCA_INSTALL_IN_QT_PREFIX=ON \
@@ -170,6 +169,13 @@
 
 %check
 export LD_LIBRARY_PATH=%{buildroot}%{_libdir}:$LD_LIBRARY_PATH
+%if 0%{?qt5}
+export QT_PLUGIN_PATH=%{buildroot}%{_libqt5_plugindir}:%{_libqt5_plugindir}
+%else
+export QT_PLUGIN_PATH=%{buildroot}%{_qt6_pluginsdir}:%{_qt6_pluginsdir}
+%endif
+# The 'PGP' test fails randomly
+%define _smp_mflags -j1
 %ctest
 
 %post -n libqca-%{flavor}-%{_soversion} -p /sbin/ldconfig

++ 0001-hashunittest-run-sha384longtest-only-for-providers-t.patch ++
>From 33a35a699928318032f62eab0e39e263c604ad9e Mon Sep 17 00:00:00 2001
From: Pino Toscano 
Date: Sat, 22 Oct 2022 13:51:17 +0200
Subject: [PATCH] hashunittest: run sha384longtest only for providers that
 support sha384

Fixes commit bdb0e9d37d78ec8e01d4008dba5243afe9029346 that accidentally
left the wrong logic when refactoring the file, and makes the check as
done in the other longtest tests.
---
 unittest/hashunittest/hashunittest.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unittest/hashunittest/hashunittest.cpp 
b/unittest/hashunittest/hashunittest.cpp
index c2c25a0e..b208c94f 100644
--- a/unittest/hashunittest/hashunittest.cpp
+++ b/unittest/hashunittest/hashunittest.cpp
@@ -581,7 +581,7 @@ void HashUnitTest::sha384longtest()
 fillerString.fill('a', 1000);
 
 foreach (QString provider, providersToTest) {

commit openSUSE-MicroOS for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package openSUSE-MicroOS for 
openSUSE:Factory checked in at 2022-11-04 17:31:45

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


Package is "openSUSE-MicroOS"

Fri Nov  4 17:31:45 2022 rev:56 rq:1033073 version:16.0.0

Changes:

--- /work/SRC/openSUSE:Factory/openSUSE-MicroOS/openSUSE-MicroOS.changes
2022-06-01 17:34:53.466757043 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-MicroOS.new.2275/openSUSE-MicroOS.changes  
2022-11-04 17:31:49.595816754 +0100
@@ -1,0 +2,5 @@
+Tue Nov  1 13:00:31 UTC 2022 - Moritz Volz 
+
+- Add SelfInstall flavor without container runtime
+
+---



Other differences:
--
++ _multibuild ++
--- /var/tmp/diff_new_pack.t8WUZY/_old  2022-11-04 17:31:50.519821726 +0100
+++ /var/tmp/diff_new_pack.t8WUZY/_new  2022-11-04 17:31:50.523821747 +0100
@@ -26,6 +26,7 @@
 ContainerHost-RaspberryPi
 Vagrant
 ContainerHost-Vagrant
+SelfInstall
 ContainerHost-SelfInstall
 DigitalOcean-Cloud
 


commit libdrm for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libdrm for openSUSE:Factory checked 
in at 2022-11-04 17:31:48

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


Package is "libdrm"

Fri Nov  4 17:31:48 2022 rev:162 rq:1033089 version:2.4.114

Changes:

--- /work/SRC/openSUSE:Factory/libdrm/libdrm.changes2022-09-14 
13:44:44.429857754 +0200
+++ /work/SRC/openSUSE:Factory/.libdrm.new.2275/libdrm.changes  2022-11-04 
17:31:55.731849769 +0100
@@ -1,0 +2,22 @@
+Thu Nov  3 15:11:15 UTC 2022 - Stefan Dirsch 
+
+- Update to 2.4.114
+  * amdgpu.ids: use consistent formatting for RID
+  * amdgpu.ids: sort the file
+  * amdgpu.ids: update to the latest marketing name
+  * amdgpu_ids: add MI marketing names
+  * amdgpu: Add a default marketing name if none is found
+  * meson: fast-fail on unsupported OSes
+  * include/drm/drm_fourcc.h: Update from Linux v6.0-rc7
+  * include/drm/i915_drm.h: Update from Linux v6.0-rc7
+  * tests/util: add imx-lcdif driver
+  * intel: move declarations to top in drm_intel_gem_bo_unreference()
+  * build: automatically disable Intel if pciaccess is not found
+  * xf86drm: handle DRM_FORMAT_BIG_ENDIAN in drmGetFormatName()
+  * amdgpu: silence uninitialized variable warning
+  * xf86drmMode: add helpers for dumb buffers
+  * modetest: drop unused offset field in struct bo
+  * modetest: use sized integers in struct bo
+  * modetest: use dumb buffer helpers
+
+---

Old:

  libdrm-2.4.113.tar.xz

New:

  libdrm-2.4.114.tar.xz



Other differences:
--
++ libdrm.spec ++
--- /var/tmp/diff_new_pack.2OZwfR/_old  2022-11-04 17:31:56.347853083 +0100
+++ /var/tmp/diff_new_pack.2OZwfR/_new  2022-11-04 17:31:56.351853105 +0100
@@ -23,7 +23,7 @@
 %endif
 
 Name:   libdrm
-Version:2.4.113
+Version:2.4.114
 Release:0
 Summary:Userspace Interface for Kernel DRM Services
 License:MIT

++ libdrm-2.4.113.tar.xz -> libdrm-2.4.114.tar.xz ++
 3679 lines of diff (skipped)


commit libvirt for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libvirt for openSUSE:Factory checked 
in at 2022-11-04 17:31:46

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


Package is "libvirt"

Fri Nov  4 17:31:46 2022 rev:363 rq:1033076 version:8.9.0

Changes:

--- /work/SRC/openSUSE:Factory/libvirt/libvirt.changes  2022-10-10 
18:44:46.878896908 +0200
+++ /work/SRC/openSUSE:Factory/.libvirt.new.2275/libvirt.changes
2022-11-04 17:31:52.355831605 +0100
@@ -1,0 +2,11 @@
+Tue Nov  1 18:49:11 UTC 2022 - James Fehlig 
+
+- Update to libvirt 8.9.0
+  - jsc#PED-620, jsc#PED-1540
+  - Add support for modular daemons to the supportconfig plugin
+  - New subpackage libvirt-client-qemu providing client utilities
+to interact with QEMU-specific features of libvirt
+  - Many incremental improvements and bug fixes, see
+https://libvirt.org/news.html#v8-9-0-2022-11-01
+
+---

Old:

  libvirt-8.8.0.tar.xz
  libvirt-8.8.0.tar.xz.asc

New:

  libvirt-8.9.0.tar.xz
  libvirt-8.9.0.tar.xz.asc



Other differences:
--
++ libvirt.spec ++
--- /var/tmp/diff_new_pack.1XEkRP/_old  2022-11-04 17:31:54.847845012 +0100
+++ /var/tmp/diff_new_pack.1XEkRP/_new  2022-11-04 17:31:54.851845034 +0100
@@ -162,7 +162,7 @@
 
 Name:   libvirt
 URL:http://libvirt.org/
-Version:8.8.0
+Version:8.9.0
 Release:0
 Summary:Library providing a virtualization API
 License:LGPL-2.1-or-later
@@ -192,7 +192,7 @@
 # All build-time requirements. Run-time requirements are
 # listed against each sub-RPM
 BuildRequires:  gettext-tools
-BuildRequires:  meson >= 0.54.0
+BuildRequires:  meson >= 0.56.0
 BuildRequires:  ninja
 # Needed for virkmodtest in 'make check'
 BuildRequires:  modutils
@@ -760,6 +760,15 @@
 The client binaries needed to access the virtualization
 capabilities of recent versions of Linux (and other OSes).
 
+%package client-qemu
+Summary:Additional client side utilities for QEMU
+Requires:   %{name}-libs = %{version}-%{release}
+Requires:   python3-libvirt-python >= 5.1.0
+
+%description client-qemu
+The additional client binaries are used to interact
+with some QEMU specific features of libvirt.
+
 %package libs
 Summary:Client side libraries for libvirt
 # Not technically required, but makes 'out-of-box' config
@@ -1856,6 +1865,12 @@
 %{_datadir}/bash-completion/completions/virsh
 %dir %{_libdir}/%{name}
 
+%if %{with_qemu}
+%files client-qemu
+%doc %{_mandir}/man1/virt-qemu-qmp-proxy.1*
+%{_bindir}/virt-qemu-qmp-proxy
+%endif
+
 %files libs -f %{name}.lang
 %dir %attr(0700, root, root) %{_sysconfdir}/%{name}/
 %config(noreplace) %{_sysconfdir}/%{name}/libvirt.conf

++ 0001-libxl-add-support-for-BlockResize-API.patch ++
--- /var/tmp/diff_new_pack.1XEkRP/_old  2022-11-04 17:31:54.907845335 +0100
+++ /var/tmp/diff_new_pack.1XEkRP/_new  2022-11-04 17:31:54.911845357 +0100
@@ -12,10 +12,10 @@
  src/libxl/libxl_driver.c  | 90 +++
  2 files changed, 105 insertions(+)
 
-Index: libvirt-8.8.0/src/libxl/libxl_api_wrapper.h
+Index: libvirt-8.9.0/src/libxl/libxl_api_wrapper.h
 ===
 libvirt-8.8.0.orig/src/libxl/libxl_api_wrapper.h
-+++ libvirt-8.8.0/src/libxl/libxl_api_wrapper.h
+--- libvirt-8.9.0.orig/src/libxl/libxl_api_wrapper.h
 libvirt-8.9.0/src/libxl/libxl_api_wrapper.h
 @@ -215,3 +215,18 @@ libxlSetMemoryTargetWrapper(libxl_ctx *c
  
  return ret;
@@ -35,10 +35,10 @@
 +
 +return ret;
 +}
-Index: libvirt-8.8.0/src/libxl/libxl_driver.c
+Index: libvirt-8.9.0/src/libxl/libxl_driver.c
 ===
 libvirt-8.8.0.orig/src/libxl/libxl_driver.c
-+++ libvirt-8.8.0/src/libxl/libxl_driver.c
+--- libvirt-8.9.0.orig/src/libxl/libxl_driver.c
 libvirt-8.9.0/src/libxl/libxl_driver.c
 @@ -5257,6 +5257,95 @@ libxlDomainMemoryStats(virDomainPtr dom,
  
  #undef LIBXL_SET_MEMSTAT

++ 0001-util-Don-t-spawn-pkttyagent-when-stdin-is-not-a-tty.patch ++
--- /var/tmp/diff_new_pack.1XEkRP/_old  2022-11-04 17:31:54.927845443 +0100
+++ /var/tmp/diff_new_pack.1XEkRP/_new  2022-11-04 17:31:54.931845464 +0100
@@ -18,10 +18,10 @@
  src/util/virpolkit.c | 3 +++
  1 file changed, 3 insertions(+)
 
-Index: libvirt-8.8.0/src/util/virpolkit.c
+Index: libvirt-8.9.0/src/util/virpolkit.c
 ===
 libvirt-8.8.0.orig/src/util/virpolkit.c
-+++ libvirt-8.8.0/src/util/virpolkit.c
+--- libvirt-8.9.0.orig/src/util/virpolk

commit libqt5-qtbase for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtbase for openSUSE:Factory 
checked in at 2022-11-04 17:31:49

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


Package is "libqt5-qtbase"

Fri Nov  4 17:31:49 2022 rev:134 rq:1033094 version:5.15.7+kde167

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtbase/libqt5-qtbase.changes  
2022-09-27 20:09:23.793227026 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-qtbase.new.2275/libqt5-qtbase.changes
2022-11-04 17:31:57.623859949 +0100
@@ -1,0 +2,87 @@
+Thu Nov  3 08:50:33 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde167, rebased upstream:
+  * offer an opt out of automatic xdg-desktop-portal use
+  * Send string to Atspi DBus interface on name/description changed
+  * Send string to Atspi DBus interface on value changed for comboboxes
+  * iOS: Use generic simulator device for building apps via xcodebuild
+  * xcode: Allow automatic provisioning updates when calling xcodebuild
+  * Revert "[Android] Remove signal and slot mechanism to listen states in 
editor's"
+  * Android: fix error when signing bundles
+  * Doc: Fix notes in QObject
+  * Allow dragging of a floating dockwidget on macOS with a custom titlebar
+  * Http/2 - handle PADDED flag correctly
+  * QTlsBackend (OpenSSL) : detect incompatible versions
+  * Reduce the width of a hfw-widget if scrollbar would be flipping
+  * QCocoaWindow: Make window key if the app's modal window is hidden
+  * Doc: clarify case sensitivity in QCompleter
+  * Doc: Note that qmake's CONFIG values are case-sensitive
+  * Clear up QWindow::isActive() documentation
+  * QWinRtFunctions::await() - introduce early exit condition
+  * rhi: metal: Use the layer as the single source of truth
+  * Include  explicitly
+  * Update PCRE2 to 10.38
+  * Add testing of QPdfWriter output to QPainter lancelot test
+  * Update the COPYRIGHT.txt file
+  * QTranslator: Fix loading of meta catalogs from absolute .qm path
+  * tst_qtranslator: Simplify extraction of test data
+  * Cocoa: Don't call makeKeyAndOrderFront for native app-modal dialogs
+  * Fix querying font aliases that share name with other fonts
+  * Update bundled libjpeg-turbo to version 2.1.1
+  * macOS: Compute NSWindow background color without checking styleMask
+  * SQLite: Update SQLite to v3.36.0
+  * Android: Fix path of qmake_qmake_immediate.qrc in single_abi with qmake
+  * qmake: Print error when iOS simulator device could not be found
+  * Fix loading of OpenSSL on macOS versions that ship its own OpenSSL
+  * QWidgetWindow: Stabilize test on Xcb
+  * Blacklist flaky test
+  * Fix license information for libjpeg-turbo
+  * Don't unload libraries on Darwin-based operating systems
+  * QThreadPool: Fix restarting of expired threads
+  * Make test pass on machines with many cores
+  * Blacklist tst_QSocks5SocketEngine::simpleConnectToIMAP() because of 
flakiness
+  * Blacklist tst_qgl:closeAndThenShow() because of flakiness
+  * Update Android default SDK from 29 to 30
+  * Make clear why QTestLog::addB?XFail() don't add to counters
+  * Fix .qm file name calculation in lrelease.prf
+  * qmake/xcode: Do not create OBJECTS_DIR
+  * QSslCertificate(OpenSSL plugin): fix memory leaks in extension 'parser'
+  * OpenSSL: Let people opt-in to use TLS 1.3 PSK callback
+  * tst_http2: Fix flaky authentication test
+  * Cocoa: Make sure we can display multiple sheets for the same NSWindow
+  * Fix QTextCodec::canEncode() for ICU codec
+  * wasm: fix network data URI scheme
+  * Doc: add more notes about full screen windows on macOS
+  * macOS: Don't rely on invalidateCursorRectsForView when mouse is over view
+  * Doc: add note that hiding a window doesn't close a full screen space
+  * qlocale_win: Fix non-standalone month names
+  * androiddeployqt: Check if apk is already aligned
+  * Fix corner case in QTimeZonePrivate::dataForLocalTime()
+  * Improve lancelot test of dashed line painting
+  * qmake: Add support for C17/C18
+  * qmake/vcxproj: Read C language standard from QMAKE_CFLAGS
+  * qmake/vcxproj generator: Handle C standard compiler flags
+  * qmake: Make it possible to set CONFIG += c11 with MSVC 19.28
+  * qmake: Recognize MSVC 16.x as VS 2019 in the VS project generator
+  * Doc: Replace the example for QFileInfo::setFile
+  * QMetaEnum: avoid quadratic behavior in valueToKeys()
+  * QGraphicsProxyWidget: forward Window(De)Activate events
+  * QDashStroker: cap the number of repetitions of the pattern
+  * Fix bug with NoFontMerging when font does not support script
+  * Android: Fix unnecessary clipboard data access
+  * macOS: Don't wipe NSWindowStyleMaskFullSizeContentView if set manually
+  * Fix broken build when LTTng tracing is enabled
+  * Attempt to un

commit libqt5-qtcharts for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtcharts for openSUSE:Factory 
checked in at 2022-11-04 17:31:50

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


Package is "libqt5-qtcharts"

Fri Nov  4 17:31:50 2022 rev:21 rq:1033095 version:5.15.7+kde0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtcharts/libqt5-qtcharts.changes  
2022-09-27 20:09:37.953258255 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtcharts.new.2275/libqt5-qtcharts.changes
2022-11-04 17:32:06.191906048 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:51:14 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde0, rebased upstream:
+  * No code changes
+
+---

Old:

  qtcharts-everywhere-src-5.15.6+kde0.obscpio

New:

  qtcharts-everywhere-src-5.15.7+kde0.obscpio



Other differences:
--
++ libqt5-qtcharts.spec ++
--- /var/tmp/diff_new_pack.Dm4OWp/_old  2022-11-04 17:32:07.595913602 +0100
+++ /var/tmp/diff_new_pack.Dm4OWp/_new  2022-11-04 17:32:07.603913645 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQt5Charts5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtcharts-everywhere-src-%{version}
 Name:   libqt5-qtcharts
-Version:5.15.6+kde0
+Version:5.15.7+kde0
 Release:0
 Summary:Qt 5 Charts Library
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.Dm4OWp/_old  2022-11-04 17:32:07.655913925 +0100
+++ /var/tmp/diff_new_pack.Dm4OWp/_new  2022-11-04 17:32:07.659913946 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtcharts.git
git
qtcharts-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtcharts-everywhere-src-5.15.6+kde0.obscpio -> 
qtcharts-everywhere-src-5.15.7+kde0.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtcharts/qtcharts-everywhere-src-5.15.6+kde0.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtcharts.new.2275/qtcharts-everywhere-src-5.15.7+kde0.obscpio
 differ: char 48, line 1

++ qtcharts-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.Dm4OWp/_old  2022-11-04 17:32:07.727914313 +0100
+++ /var/tmp/diff_new_pack.Dm4OWp/_new  2022-11-04 17:32:07.735914355 +0100
@@ -1,5 +1,5 @@
 name: qtcharts-everywhere-src
-version: 5.15.6+kde0
-mtime: 1660671435
-commit: 841083c263f16f8acb81e4915bf24bbed0461c9a
+version: 5.15.7+kde0
+mtime: 1662996580
+commit: 055c6d6e49c5ea369990e7078fd534392a0ba6b9
 


commit libqt5-qtconnectivity for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtconnectivity for 
openSUSE:Factory checked in at 2022-11-04 17:31:52

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


Package is "libqt5-qtconnectivity"

Fri Nov  4 17:31:52 2022 rev:34 rq:1033096 version:5.15.7+kde5

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtconnectivity/libqt5-qtconnectivity.changes  
2022-09-27 20:09:40.545263972 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtconnectivity.new.2275/libqt5-qtconnectivity.changes
2022-11-04 17:32:07.947915496 +0100
@@ -1,0 +2,16 @@
+Thu Nov  3 08:51:18 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde5, rebased upstream:
+  * Refactor characteristics read for WinRT
+  * QLowEnergyControllerWinRT: refactor connection to device
+  * Move connecting to a LE device to background on Windows
+  * QLowEnergyController(WinRT): introduce timeout for connection
+  * winrt: Protect from late AdvertisementReceived callback
+  * IOBluetoothDeviceInquiry: manually interrupt Classic scan
+  * QtBluetooth (examples): add Info.plist for iOS
+  * CoreBluetooth: provide a description (in Info.plist) of BT usage
+  * Bluetooth docs: mention the Apple's specific requirements
+  * Heart-rate example: add a proper Info.plist
+  * Android: Call handleTargetLost directly on NFC TagLostException
+
+---

Old:

  qtconnectivity-everywhere-src-5.15.6+kde5.obscpio

New:

  qtconnectivity-everywhere-src-5.15.7+kde5.obscpio



Other differences:
--
++ libqt5-qtconnectivity.spec ++
--- /var/tmp/diff_new_pack.OHU7SW/_old  2022-11-04 17:32:09.167922060 +0100
+++ /var/tmp/diff_new_pack.OHU7SW/_new  2022-11-04 17:32:09.171922082 +0100
@@ -22,11 +22,11 @@
 %define qt5_snapshot 1
 %define libname libQt5Bluetooth5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtconnectivity-everywhere-src-%{version}
 Name:   libqt5-qtconnectivity
-Version:5.15.6+kde5
+Version:5.15.7+kde5
 Release:0
 Summary:Qt 5 Nfc Addon
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.OHU7SW/_old  2022-11-04 17:32:09.227922383 +0100
+++ /var/tmp/diff_new_pack.OHU7SW/_new  2022-11-04 17:32:09.231922404 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtconnectivity.git
git
qtconnectivity-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtconnectivity-everywhere-src-5.15.6+kde5.obscpio -> 
qtconnectivity-everywhere-src-5.15.7+kde5.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtconnectivity/qtconnectivity-everywhere-src-5.15.6+kde5.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtconnectivity.new.2275/qtconnectivity-everywhere-src-5.15.7+kde5.obscpio
 differ: char 49, line 1

++ qtconnectivity-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.OHU7SW/_old  2022-11-04 17:32:09.303922791 +0100
+++ /var/tmp/diff_new_pack.OHU7SW/_new  2022-11-04 17:32:09.307922814 +0100
@@ -1,5 +1,5 @@
 name: qtconnectivity-everywhere-src
-version: 5.15.6+kde5
-mtime: 1662571307
-commit: 01e8b04b121712ea0a2b2793ce13f4dd5e9cfcf8
+version: 5.15.7+kde5
+mtime: 1666952197
+commit: 6796953f92a1d3af30d0676e56ec5dfd82199611
 


commit libqt5-qtdeclarative for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtdeclarative for 
openSUSE:Factory checked in at 2022-11-04 17:31:53

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


Package is "libqt5-qtdeclarative"

Fri Nov  4 17:31:53 2022 rev:73 rq:1033098 version:5.15.7+kde18

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtdeclarative/libqt5-qtdeclarative.changes
2022-09-27 20:09:42.881269123 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtdeclarative.new.2275/libqt5-qtdeclarative.changes
  2022-11-04 17:32:09.647924643 +0100
@@ -1,0 +2,23 @@
+Thu Nov  3 08:53:44 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde18, rebased upstream:
+  * Revert "Fix ListView.isCurrentItem when used with DelegateModel"
+  * Stop using QHash::unite() in storage model manual test
+  * SaveableUnitPointer::saveToDisk restores flags incorrectly at cleanup
+  * Document that clearComponentCache() does not clear existing objects
+  * Doc: Replace return `0` with nullptr
+  * Doc: Fix QtQuick::Keys::forwardTo generic list type
+  * Doc: QQmlContext: make it more readable
+  * Fix ListView.isCurrentItem when used with DelegateModel
+  * Fix documentation on JavaScript imports
+  * doc: Remove bogus PinchHandler.minimumTouchPoints prop; improve actual
+  * tst_grabImage: Fix the cases were visually comparing invisible items
+  * Reinitialize shader data structure when effect changes
+  * Doc: mention that clipping can affect performance and link to page
+  * Ensure init of m_current_projection_matrix in single-clipped-item scene
+  * Canvas: Add a means to override the DPR used via an environment variable
+  * Fix regression in ListView/Flickable event delivery
+  * qquicktextinput: Clear pre-edit text after input method reset
+- Rebase qtdeclarative-5.15.0-FixMaxXMaxYExtent.patch
+
+---

Old:

  qtdeclarative-everywhere-src-5.15.6+kde20.obscpio

New:

  qtdeclarative-everywhere-src-5.15.7+kde18.obscpio



Other differences:
--
++ libqt5-qtdeclarative.spec ++
--- /var/tmp/diff_new_pack.NRhwIi/_old  2022-11-04 17:32:15.387955527 +0100
+++ /var/tmp/diff_new_pack.NRhwIi/_new  2022-11-04 17:32:15.395955570 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQtQuick5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtdeclarative-everywhere-src-%{version}
 Name:   libqt5-qtdeclarative
-Version:5.15.6+kde20
+Version:5.15.7+kde18
 Release:0
 Summary:Qt 5 Declarative Library
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.NRhwIi/_old  2022-11-04 17:32:15.447955849 +0100
+++ /var/tmp/diff_new_pack.NRhwIi/_new  2022-11-04 17:32:15.451955871 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtdeclarative.git
git
qtdeclarative-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtdeclarative-5.15.0-FixMaxXMaxYExtent.patch ++
--- /var/tmp/diff_new_pack.NRhwIi/_old  2022-11-04 17:32:15.483956043 +0100
+++ /var/tmp/diff_new_pack.NRhwIi/_new  2022-11-04 17:32:15.487956065 +0100
@@ -1,4 +1,4 @@
-From 6a07dafec274076303573555f256c27aaf309d7e Mon Sep 17 00:00:00 2001
+From b82b1954fd0ab4e1c8aff38dac7310f6c4f144e0 Mon Sep 17 00:00:00 2001
 From: David Redondo 
 Date: Mon, 27 Jun 2022 15:31:10 +0200
 Subject: [PATCH] QQuickItemView: Fix max(X/Y)Extent()
@@ -19,20 +19,20 @@
 Pick-to: 5.15
 ---
  src/quick/items/qquickitemview.cpp|   4 +-
- .../qquicklistview/tst_qquicklistview.cpp |   6 +
+ .../qquicklistview/tst_qquicklistview.cpp |   5 +
  .../quick/qquicklistview2/data/maxXExtent.qml |  54 +
  .../quick/qquicklistview2/data/maxYExtent.qml |  55 +
  .../quick/qquicklistview2/qquicklistview2.pro |  12 ++
  .../qquicklistview2/tst_qquicklistview2.cpp   | 114 ++
  tests/auto/quick/quick.pro|   1 +
- 7 files changed, 244 insertions(+), 2 deletions(-)
+ 7 files changed, 243 insertions(+), 2 deletions(-)
  create mode 100644 tests/auto/quick/qquicklistview2/data/maxXExtent.qml
  create mode 100644 tests/auto/quick/qquicklistview2/data/maxYExtent.qml
  create mode 100644 tests/auto/quick/qquicklistview2/qquicklistview2.pro
  create mode 100644 tests/auto/quick/qquicklistview2/tst_qquicklistview2.cpp
 
 diff --git a/src/quick/items/qquickitemview.cp

commit libqt5-qtgraphicaleffects for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtgraphicaleffects for 
openSUSE:Factory checked in at 2022-11-04 17:31:55

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


Package is "libqt5-qtgraphicaleffects"

Fri Nov  4 17:31:55 2022 rev:43 rq:1033100 version:5.15.7+kde0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtgraphicaleffects/libqt5-qtgraphicaleffects.changes
  2022-09-27 20:09:48.993282603 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtgraphicaleffects.new.2275/libqt5-qtgraphicaleffects.changes
2022-11-04 17:32:15.959958604 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:54:21 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde0, rebased upstream:
+  * No code changes
+
+---

Old:

  qtgraphicaleffects-everywhere-src-5.15.6+kde0.obscpio

New:

  qtgraphicaleffects-everywhere-src-5.15.7+kde0.obscpio



Other differences:
--
++ libqt5-qtgraphicaleffects.spec ++
--- /var/tmp/diff_new_pack.9YtWOQ/_old  2022-11-04 17:32:17.515966976 +0100
+++ /var/tmp/diff_new_pack.9YtWOQ/_new  2022-11-04 17:32:17.519966997 +0100
@@ -18,11 +18,11 @@
 
 %define qt5_snapshot 1
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtgraphicaleffects-everywhere-src-%{version}
 Name:   libqt5-qtgraphicaleffects
-Version:5.15.6+kde0
+Version:5.15.7+kde0
 Release:0
 Summary:Qt 5 Graphical Effects
 # Legal: the 'tools' folder is not built.

++ _service ++
--- /var/tmp/diff_new_pack.9YtWOQ/_old  2022-11-04 17:32:17.563967234 +0100
+++ /var/tmp/diff_new_pack.9YtWOQ/_new  2022-11-04 17:32:17.567967256 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtgraphicaleffects.git
git
qtgraphicaleffects-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtgraphicaleffects-everywhere-src-5.15.6+kde0.obscpio -> 
qtgraphicaleffects-everywhere-src-5.15.7+kde0.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtgraphicaleffects/qtgraphicaleffects-everywhere-src-5.15.6+kde0.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtgraphicaleffects.new.2275/qtgraphicaleffects-everywhere-src-5.15.7+kde0.obscpio
 differ: char 48, line 1

++ qtgraphicaleffects-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.9YtWOQ/_old  2022-11-04 17:32:17.635967622 +0100
+++ /var/tmp/diff_new_pack.9YtWOQ/_new  2022-11-04 17:32:17.635967622 +0100
@@ -1,5 +1,5 @@
 name: qtgraphicaleffects-everywhere-src
-version: 5.15.6+kde0
-mtime: 1660671444
-commit: e6e1e58ec28fd0f2e6426e6962cc4ccddb493349
+version: 5.15.7+kde0
+mtime: 1662996587
+commit: a2b1600300cda89804d48ec90e0068a075fecc8b
 


commit libqt5-qtimageformats for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtimageformats for 
openSUSE:Factory checked in at 2022-11-04 17:31:55

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


Package is "libqt5-qtimageformats"

Fri Nov  4 17:31:55 2022 rev:45 rq:1033101 version:5.15.7+kde5

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtimageformats/libqt5-qtimageformats.changes  
2022-09-27 20:09:50.413285735 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtimageformats.new.2275/libqt5-qtimageformats.changes
2022-11-04 17:32:17.871968891 +0100
@@ -1,0 +2,7 @@
+Thu Nov  3 08:54:29 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde5, rebased upstream:
+  * Reject tiled tiffs with corrupt tile size early
+  * Update bundled libwebp to version 1.2.1
+
+---

Old:

  qtimageformats-everywhere-src-5.15.6+kde4.obscpio

New:

  qtimageformats-everywhere-src-5.15.7+kde5.obscpio



Other differences:
--
++ libqt5-qtimageformats.spec ++
--- /var/tmp/diff_new_pack.DkH70r/_old  2022-11-04 17:32:20.115980965 +0100
+++ /var/tmp/diff_new_pack.DkH70r/_new  2022-11-04 17:32:20.123981008 +0100
@@ -18,11 +18,11 @@
 
 %define qt5_snapshot 1
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtimageformats-everywhere-src-%{version}
 Name:   libqt5-qtimageformats
-Version:5.15.6+kde4
+Version:5.15.7+kde5
 Release:0
 Summary:Qt 5 Image Format Plugins
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.DkH70r/_old  2022-11-04 17:32:20.175981288 +0100
+++ /var/tmp/diff_new_pack.DkH70r/_new  2022-11-04 17:32:20.179981309 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtimageformats.git
git
qtimageformats-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtimageformats-everywhere-src-5.15.6+kde4.obscpio -> 
qtimageformats-everywhere-src-5.15.7+kde5.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtimageformats/qtimageformats-everywhere-src-5.15.6+kde4.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtimageformats.new.2275/qtimageformats-everywhere-src-5.15.7+kde5.obscpio
 differ: char 49, line 1

++ qtimageformats-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.DkH70r/_old  2022-11-04 17:32:20.263981761 +0100
+++ /var/tmp/diff_new_pack.DkH70r/_new  2022-11-04 17:32:20.267981783 +0100
@@ -1,5 +1,5 @@
 name: qtimageformats-everywhere-src
-version: 5.15.6+kde4
-mtime: 1662571558
-commit: 9044695f4b1acdd7ec24e7b01f6a6ca61f982a75
+version: 5.15.7+kde5
+mtime: 1666952335
+commit: 1b83a9c73d6e5459ec4c2221b2bd7e5396b5e874
 


commit libqt5-qtlocation for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtlocation for 
openSUSE:Factory checked in at 2022-11-04 17:31:56

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


Package is "libqt5-qtlocation"

Fri Nov  4 17:31:56 2022 rev:51 rq:1033102 version:5.15.7+kde3

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtlocation/libqt5-qtlocation.changes  
2022-09-27 20:09:51.485288099 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtlocation.new.2275/libqt5-qtlocation.changes
2022-11-04 17:32:20.483982945 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:54:53 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde3, rebased upstream:
+  * No code changes
+
+---

Old:

  qtlocation-everywhere-src-5.15.6+kde3.obscpio

New:

  qtlocation-everywhere-src-5.15.7+kde3.obscpio



Other differences:
--
++ libqt5-qtlocation.spec ++
--- /var/tmp/diff_new_pack.6ELeYD/_old  2022-11-04 17:32:23.295998075 +0100
+++ /var/tmp/diff_new_pack.6ELeYD/_new  2022-11-04 17:32:23.303998118 +0100
@@ -22,11 +22,11 @@
 %define qt5_snapshot 1
 %define libname libQt5Positioning5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtlocation-everywhere-src-%{version}
 Name:   libqt5-qtlocation
-Version:5.15.6+kde3
+Version:5.15.7+kde3
 Release:0
 Summary:Qt 5 Location Library
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.6ELeYD/_old  2022-11-04 17:32:23.347998355 +0100
+++ /var/tmp/diff_new_pack.6ELeYD/_new  2022-11-04 17:32:23.351998376 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtlocation.git
git
qtlocation-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtlocation-everywhere-src-5.15.6+kde3.obscpio -> 
qtlocation-everywhere-src-5.15.7+kde3.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtlocation/qtlocation-everywhere-src-5.15.6+kde3.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtlocation.new.2275/qtlocation-everywhere-src-5.15.7+kde3.obscpio
 differ: char 49, line 1

++ qtlocation-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.6ELeYD/_old  2022-11-04 17:32:23.411998699 +0100
+++ /var/tmp/diff_new_pack.6ELeYD/_new  2022-11-04 17:32:23.415998721 +0100
@@ -1,5 +1,5 @@
 name: qtlocation-everywhere-src
-version: 5.15.6+kde3
-mtime: 1662571719
-commit: ebdf5b38da6e3fe0a183702bcca395c589c459ed
+version: 5.15.7+kde3
+mtime: 1666952735
+commit: f920a6cc2931402023840c223fce2fed321e28ea
 


commit libqt5-qtmultimedia for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtmultimedia for 
openSUSE:Factory checked in at 2022-11-04 17:31:57

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


Package is "libqt5-qtmultimedia"

Fri Nov  4 17:31:57 2022 rev:55 rq:1033104 version:5.15.7+kde1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtmultimedia/libqt5-qtmultimedia.changes  
2022-09-27 20:09:54.129293931 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtmultimedia.new.2275/libqt5-qtmultimedia.changes
2022-11-04 17:32:23.868001153 +0100
@@ -1,0 +2,7 @@
+Thu Nov  3 08:55:09 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde1, rebased upstream:
+  * PulseAudio: Call pa_stream_flush() with PulseDaemonLocker lock held
+  * Fix incorrectly generated CMake files for the QNX audio plugin
+
+---

Old:

  qtmultimedia-everywhere-src-5.15.6+kde1.obscpio

New:

  qtmultimedia-everywhere-src-5.15.7+kde1.obscpio



Other differences:
--
++ libqt5-qtmultimedia.spec ++
--- /var/tmp/diff_new_pack.TPkBDp/_old  2022-11-04 17:32:26.096013140 +0100
+++ /var/tmp/diff_new_pack.TPkBDp/_new  2022-11-04 17:32:26.104013183 +0100
@@ -28,11 +28,11 @@
 %define gles 0
 %endif
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtmultimedia-everywhere-src-%{version}
 Name:   libqt5-qtmultimedia
-Version:5.15.6+kde1
+Version:5.15.7+kde1
 Release:0
 Summary:Qt 5 Multimedia Library
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.TPkBDp/_old  2022-11-04 17:32:26.152013442 +0100
+++ /var/tmp/diff_new_pack.TPkBDp/_new  2022-11-04 17:32:26.156013463 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtmultimedia.git
git
qtmultimedia-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtmultimedia-everywhere-src-5.15.6+kde1.obscpio -> 
qtmultimedia-everywhere-src-5.15.7+kde1.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtmultimedia/qtmultimedia-everywhere-src-5.15.6+kde1.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtmultimedia.new.2275/qtmultimedia-everywhere-src-5.15.7+kde1.obscpio
 differ: char 49, line 1

++ qtmultimedia-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.TPkBDp/_old  2022-11-04 17:32:26.272014087 +0100
+++ /var/tmp/diff_new_pack.TPkBDp/_new  2022-11-04 17:32:26.276014109 +0100
@@ -1,5 +1,5 @@
 name: qtmultimedia-everywhere-src
-version: 5.15.6+kde1
-mtime: 1662571835
-commit: 76f84c545429a1b988b79f971734ef4bc3e6643f
+version: 5.15.7+kde1
+mtime: 1666952743
+commit: f3dc18968c437c993886d3bfb668b62344a10860
 


commit libqt5-qtquickcontrols for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtquickcontrols for 
openSUSE:Factory checked in at 2022-11-04 17:31:59

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


Package is "libqt5-qtquickcontrols"

Fri Nov  4 17:31:59 2022 rev:47 rq:1033107 version:5.15.7+kde0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtquickcontrols/libqt5-qtquickcontrols.changes
2022-09-27 20:09:57.321300971 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols.new.2275/libqt5-qtquickcontrols.changes
  2022-11-04 17:32:27.872022695 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:56:07 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde0, rebased upstream:
+  * No code changes
+
+---

Old:

  qtquickcontrols-everywhere-src-5.15.6+kde0.obscpio

New:

  qtquickcontrols-everywhere-src-5.15.7+kde0.obscpio



Other differences:
--
++ libqt5-qtquickcontrols.spec ++
--- /var/tmp/diff_new_pack.PXqhXH/_old  2022-11-04 17:32:29.396030896 +0100
+++ /var/tmp/diff_new_pack.PXqhXH/_new  2022-11-04 17:32:29.400030917 +0100
@@ -21,11 +21,11 @@
 
 %define qt5_snapshot 1
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtquickcontrols-everywhere-src-%{version}
 Name:   libqt5-qtquickcontrols
-Version:5.15.6+kde0
+Version:5.15.7+kde0
 Release:0
 Summary:Qt 5 Quick Controls Addon
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.PXqhXH/_old  2022-11-04 17:32:29.468031283 +0100
+++ /var/tmp/diff_new_pack.PXqhXH/_new  2022-11-04 17:32:29.472031304 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtquickcontrols.git
git
qtquickcontrols-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtquickcontrols-everywhere-src-5.15.6+kde0.obscpio -> 
qtquickcontrols-everywhere-src-5.15.7+kde0.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtquickcontrols/qtquickcontrols-everywhere-src-5.15.6+kde0.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols.new.2275/qtquickcontrols-everywhere-src-5.15.7+kde0.obscpio
 differ: char 48, line 1

++ qtquickcontrols-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.PXqhXH/_old  2022-11-04 17:32:29.528031606 +0100
+++ /var/tmp/diff_new_pack.PXqhXH/_new  2022-11-04 17:32:29.532031627 +0100
@@ -1,5 +1,5 @@
 name: qtquickcontrols-everywhere-src
-version: 5.15.6+kde0
-mtime: 1660671461
-commit: e62b8b6d2f45a79652238b33f4bbe23023004ae7
+version: 5.15.7+kde0
+mtime: 1662996600
+commit: c7dae5f6041d6c076311f2d8ed13fcfe3598be70
 


commit libqt5-qtquickcontrols2 for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtquickcontrols2 for 
openSUSE:Factory checked in at 2022-11-04 17:32:01

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


Package is "libqt5-qtquickcontrols2"

Fri Nov  4 17:32:01 2022 rev:29 rq:1033108 version:5.15.7+kde6

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtquickcontrols2/libqt5-qtquickcontrols2.changes
  2022-09-27 20:09:58.985304640 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols2.new.2275/libqt5-qtquickcontrols2.changes
2022-11-04 17:32:29.848033328 +0100
@@ -1,0 +2,8 @@
+Thu Nov  3 08:56:11 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde6, rebased upstream:
+  * implement a11y pressing of qquickabstractbutton
+  * Blacklist some flaky tst_qquickpopup functions on openSUSE
+  * Fix memory leak in Qt Quick Controls icon
+
+---

Old:

  qtquickcontrols2-everywhere-src-5.15.6+kde5.obscpio

New:

  qtquickcontrols2-everywhere-src-5.15.7+kde6.obscpio



Other differences:
--
++ libqt5-qtquickcontrols2.spec ++
--- /var/tmp/diff_new_pack.Vucivs/_old  2022-11-04 17:32:31.628042904 +0100
+++ /var/tmp/diff_new_pack.Vucivs/_new  2022-11-04 17:32:31.632042926 +0100
@@ -21,11 +21,11 @@
 
 %define qt5_snapshot 1
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtquickcontrols2-everywhere-src-%{version}
 Name:   libqt5-qtquickcontrols2
-Version:5.15.6+kde5
+Version:5.15.7+kde6
 Release:0
 Summary:Qt 5 Quick Controls Addon
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.Vucivs/_old  2022-11-04 17:32:31.680043184 +0100
+++ /var/tmp/diff_new_pack.Vucivs/_new  2022-11-04 17:32:31.684043206 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtquickcontrols2.git
git
qtquickcontrols2-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtquickcontrols2-everywhere-src-5.15.6+kde5.obscpio -> 
qtquickcontrols2-everywhere-src-5.15.7+kde6.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtquickcontrols2/qtquickcontrols2-everywhere-src-5.15.6+kde5.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols2.new.2275/qtquickcontrols2-everywhere-src-5.15.7+kde6.obscpio
 differ: char 49, line 1

++ qtquickcontrols2-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.Vucivs/_old  2022-11-04 17:32:31.744043529 +0100
+++ /var/tmp/diff_new_pack.Vucivs/_new  2022-11-04 17:32:31.744043529 +0100
@@ -1,5 +1,5 @@
 name: qtquickcontrols2-everywhere-src
-version: 5.15.6+kde5
-mtime: 1662572419
-commit: 74e8db97fdb9b55c4b4614b83f4bf17e00df55e9
+version: 5.15.7+kde6
+mtime: 1667389151
+commit: 5465566a4ad9f6f9758bed304153f0c7fec3437b
 


commit libqt5-qtnetworkauth for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtnetworkauth for 
openSUSE:Factory checked in at 2022-11-04 17:31:59

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


Package is "libqt5-qtnetworkauth"

Fri Nov  4 17:31:59 2022 rev:23 rq:1033105 version:5.15.7+kde0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtnetworkauth/libqt5-qtnetworkauth.changes
2022-09-27 20:09:55.977298006 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtnetworkauth.new.2275/libqt5-qtnetworkauth.changes
  2022-11-04 17:32:26.616015938 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:55:15 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde0, rebased upstream:
+  * No code changes
+
+---

Old:

  qtnetworkauth-everywhere-src-5.15.6+kde0.obscpio

New:

  qtnetworkauth-everywhere-src-5.15.7+kde0.obscpio



Other differences:
--
++ libqt5-qtnetworkauth.spec ++
--- /var/tmp/diff_new_pack.iXwwj1/_old  2022-11-04 17:32:27.248019338 +0100
+++ /var/tmp/diff_new_pack.iXwwj1/_new  2022-11-04 17:32:27.256019382 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQt5NetworkAuth5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtnetworkauth-everywhere-src-%{version}
 Name:   libqt5-qtnetworkauth
-Version:5.15.6+kde0
+Version:5.15.7+kde0
 Release:0
 Summary:Qt 5 NetworkAuth Library
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.iXwwj1/_old  2022-11-04 17:32:27.300019618 +0100
+++ /var/tmp/diff_new_pack.iXwwj1/_new  2022-11-04 17:32:27.304019640 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtnetworkauth.git
git
qtnetworkauth-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtnetworkauth-everywhere-src-5.15.6+kde0.obscpio -> 
qtnetworkauth-everywhere-src-5.15.7+kde0.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtnetworkauth-everywhere-src-5.15.6+kde0/.qmake.conf 
new/qtnetworkauth-everywhere-src-5.15.7+kde0/.qmake.conf
--- old/qtnetworkauth-everywhere-src-5.15.6+kde0/.qmake.conf2022-08-16 
19:37:36.0 +0200
+++ new/qtnetworkauth-everywhere-src-5.15.7+kde0/.qmake.conf2022-09-12 
17:29:56.0 +0200
@@ -3,4 +3,4 @@
 
 DEFINES += QT_NO_FOREACH QT_NO_JAVA_STYLE_ITERATORS QT_NO_LINKED_LIST
 
-MODULE_VERSION = 5.15.6
+MODULE_VERSION = 5.15.7

++ qtnetworkauth-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.iXwwj1/_old  2022-11-04 17:32:27.480020587 +0100
+++ /var/tmp/diff_new_pack.iXwwj1/_new  2022-11-04 17:32:27.484020608 +0100
@@ -1,5 +1,5 @@
 name: qtnetworkauth-everywhere-src
-version: 5.15.6+kde0
-mtime: 1660671456
-commit: 01315e31c5164c896a524175854c4b6df17fe166
+version: 5.15.7+kde0
+mtime: 1662996596
+commit: f34ac77b5955126be60faa2b801be2d19dff896f
 


commit libqt5-qtsensors for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtsensors for 
openSUSE:Factory checked in at 2022-11-04 17:32:01

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


Package is "libqt5-qtsensors"

Fri Nov  4 17:32:01 2022 rev:50 rq:1033113 version:5.15.7+kde0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtsensors/libqt5-qtsensors.changes
2022-09-27 20:10:00.549308090 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtsensors.new.2275/libqt5-qtsensors.changes  
2022-11-04 17:32:32.100045444 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:56:39 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde0, rebased upstream:
+  * No code changes
+
+---

Old:

  qtsensors-everywhere-src-5.15.6+kde0.obscpio

New:

  qtsensors-everywhere-src-5.15.7+kde0.obscpio



Other differences:
--
++ libqt5-qtsensors.spec ++
--- /var/tmp/diff_new_pack.PqujZK/_old  2022-11-04 17:32:34.020055775 +0100
+++ /var/tmp/diff_new_pack.PqujZK/_new  2022-11-04 17:32:34.064056011 +0100
@@ -22,11 +22,11 @@
 %define qt5_snapshot 1
 %define libname libQt5Sensors5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtsensors-everywhere-src-%{version}
 Name:   libqt5-qtsensors
-Version:5.15.6+kde0
+Version:5.15.7+kde0
 Release:0
 Summary:Qt 5 Sensors library
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.PqujZK/_old  2022-11-04 17:32:34.168056571 +0100
+++ /var/tmp/diff_new_pack.PqujZK/_new  2022-11-04 17:32:34.180056635 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtsensors.git
git
qtsensors-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtsensors-everywhere-src-5.15.6+kde0.obscpio -> 
qtsensors-everywhere-src-5.15.7+kde0.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtsensors/qtsensors-everywhere-src-5.15.6+kde0.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtsensors.new.2275/qtsensors-everywhere-src-5.15.7+kde0.obscpio
 differ: char 48, line 1

++ qtsensors-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.PqujZK/_old  2022-11-04 17:32:34.276057152 +0100
+++ /var/tmp/diff_new_pack.PqujZK/_new  2022-11-04 17:32:34.284057195 +0100
@@ -1,5 +1,5 @@
 name: qtsensors-everywhere-src
-version: 5.15.6+kde0
-mtime: 1660671468
-commit: 35eb5ac7eaef4745a38958c3ca780d7baa2e4f30
+version: 5.15.7+kde0
+mtime: 1662996606
+commit: 5f1f73fdba8906f58c4554cbef9c1a72edcf0230
 


commit libqt5-qtsvg for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtsvg for openSUSE:Factory 
checked in at 2022-11-04 17:32:04

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


Package is "libqt5-qtsvg"

Fri Nov  4 17:32:04 2022 rev:52 rq:1033117 version:5.15.7+kde9

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtsvg/libqt5-qtsvg.changes
2022-09-27 20:10:05.101318129 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-qtsvg.new.2275/libqt5-qtsvg.changes  
2022-11-04 17:32:38.268078631 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:56:53 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde9, rebased upstream:
+  * No code changes
+
+---

Old:

  qtsvg-everywhere-src-5.15.6+kde9.obscpio

New:

  qtsvg-everywhere-src-5.15.7+kde9.obscpio



Other differences:
--
++ libqt5-qtsvg.spec ++
--- /var/tmp/diff_new_pack.ranfX3/_old  2022-11-04 17:32:39.860087196 +0100
+++ /var/tmp/diff_new_pack.ranfX3/_new  2022-11-04 17:32:39.864087218 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQt5Svg5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtsvg-everywhere-src-%{version}
 Name:   libqt5-qtsvg
-Version:5.15.6+kde9
+Version:5.15.7+kde9
 Release:0
 Summary:Qt 5 SVG Library
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.ranfX3/_old  2022-11-04 17:32:39.912087476 +0100
+++ /var/tmp/diff_new_pack.ranfX3/_new  2022-11-04 17:32:39.924087541 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtsvg.git
git
qtsvg-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtsvg-everywhere-src-5.15.6+kde9.obscpio -> 
qtsvg-everywhere-src-5.15.7+kde9.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtsvg/qtsvg-everywhere-src-5.15.6+kde9.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtsvg.new.2275/qtsvg-everywhere-src-5.15.7+kde9.obscpio
 differ: char 49, line 1

++ qtsvg-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.ranfX3/_old  2022-11-04 17:32:40.016088036 +0100
+++ /var/tmp/diff_new_pack.ranfX3/_new  2022-11-04 17:32:40.020088057 +0100
@@ -1,5 +1,5 @@
 name: qtsvg-everywhere-src
-version: 5.15.6+kde9
-mtime: 1662633220
-commit: a9752b00a03438de8e5b080073816e12409404b7
+version: 5.15.7+kde9
+mtime: 1666952586
+commit: 83296f10ebdb9a666b11dc69f3a148c38b9c425c
 


commit libqt5-qttools for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qttools for openSUSE:Factory 
checked in at 2022-11-04 17:32:05

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


Package is "libqt5-qttools"

Fri Nov  4 17:32:05 2022 rev:56 rq:1033118 version:5.15.7+kde1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qttools/libqt5-qttools.changes
2022-09-27 20:10:06.793321860 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-qttools.new.2275/libqt5-qttools.changes  
2022-11-04 17:32:40.652091457 +0100
@@ -1,0 +2,10 @@
+Thu Nov  3 08:56:57 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde1, rebased upstream:
+  * qdoc: Fix warnings about generatelist arguments
+  * qdoc: Fix Section::reduce() omitting sections with obsolete members
+  * macdeployqt: detect debug libs by using ???_debug??? suffix
+  * Fix extensions without leading period having first character dropped
+  * Doc: Remove mention of custom filters, part 2
+
+---

Old:

  qttools-everywhere-src-5.15.6+kde1.obscpio

New:

  qttools-everywhere-src-5.15.7+kde1.obscpio



Other differences:
--
++ libqt5-qttools.spec ++
--- /var/tmp/diff_new_pack.ST6pF6/_old  2022-11-04 17:32:43.864108739 +0100
+++ /var/tmp/diff_new_pack.ST6pF6/_new  2022-11-04 17:32:43.868108761 +0100
@@ -18,8 +18,8 @@
 
 %define qt5_snapshot 1
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qttools-everywhere-src-%{version}
 %if 0%{?suse_version} >= 1330
 %bcond_without qdoc
@@ -28,7 +28,7 @@
 %bcond_with qdoc
 %endif
 Name:   libqt5-qttools
-Version:5.15.6+kde1
+Version:5.15.7+kde1
 Release:0
 Summary:Qt 5 QtTools Module
 # Legal:

++ _service ++
--- /var/tmp/diff_new_pack.ST6pF6/_old  2022-11-04 17:32:43.944109170 +0100
+++ /var/tmp/diff_new_pack.ST6pF6/_new  2022-11-04 17:32:43.948109192 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qttools.git
git
qttools-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qttools-everywhere-src-5.15.6+kde1.obscpio -> 
qttools-everywhere-src-5.15.7+kde1.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qttools/qttools-everywhere-src-5.15.6+kde1.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qttools.new.2275/qttools-everywhere-src-5.15.7+kde1.obscpio
 differ: char 49, line 1

++ qttools-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.ST6pF6/_old  2022-11-04 17:32:44.144110246 +0100
+++ /var/tmp/diff_new_pack.ST6pF6/_new  2022-11-04 17:32:44.152110289 +0100
@@ -1,5 +1,5 @@
 name: qttools-everywhere-src
-version: 5.15.6+kde1
-mtime: 1662572208
-commit: 32912a06aadfc3dcbc34e0a668ce2c78351eee6e
+version: 5.15.7+kde1
+mtime: 1666952569
+commit: c4750dd02070ce246ff98cc5d137193825043912
 


commit libqt5-qtspeech for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtspeech for openSUSE:Factory 
checked in at 2022-11-04 17:32:03

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


Package is "libqt5-qtspeech"

Fri Nov  4 17:32:03 2022 rev:23 rq:1033116 version:5.15.7+kde1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtspeech/libqt5-qtspeech.changes  
2022-09-27 20:10:03.717315077 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtspeech.new.2275/libqt5-qtspeech.changes
2022-11-04 17:32:36.632069828 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:56:49 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde1, rebased upstream:
+  * Android: Protect against a null Locale object when calling getLocale
+
+---

Old:

  qtspeech-everywhere-src-5.15.6+kde1.obscpio

New:

  qtspeech-everywhere-src-5.15.7+kde1.obscpio



Other differences:
--
++ libqt5-qtspeech.spec ++
--- /var/tmp/diff_new_pack.VZeZcQ/_old  2022-11-04 17:32:37.760075898 +0100
+++ /var/tmp/diff_new_pack.VZeZcQ/_new  2022-11-04 17:32:37.760075898 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQt5TextToSpeech5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtspeech-everywhere-src-%{version}
 Name:   libqt5-qtspeech
-Version:5.15.6+kde1
+Version:5.15.7+kde1
 Release:0
 Summary:Qt 5 Speech Addon
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.VZeZcQ/_old  2022-11-04 17:32:37.812076177 +0100
+++ /var/tmp/diff_new_pack.VZeZcQ/_new  2022-11-04 17:32:37.816076199 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtspeech.git
git
qtspeech-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtspeech-everywhere-src-5.15.6+kde1.obscpio -> 
qtspeech-everywhere-src-5.15.7+kde1.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtspeech-everywhere-src-5.15.6+kde1/.qmake.conf 
new/qtspeech-everywhere-src-5.15.7+kde1/.qmake.conf
--- old/qtspeech-everywhere-src-5.15.6+kde1/.qmake.conf 2022-09-07 
19:35:56.0 +0200
+++ new/qtspeech-everywhere-src-5.15.7+kde1/.qmake.conf 2022-10-28 
12:23:13.0 +0200
@@ -5,4 +5,4 @@
 DEFINES += QT_NO_FOREACH
 DEFINES += QT_NO_JAVA_STYLE_ITERATORS
 
-MODULE_VERSION = 5.15.6
+MODULE_VERSION = 5.15.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtspeech-everywhere-src-5.15.6+kde1/src/plugins/tts/android/jar/src/org/qtproject/qt5/android/speech/QtTextToSpeech.java
 
new/qtspeech-everywhere-src-5.15.7+kde1/src/plugins/tts/android/jar/src/org/qtproject/qt5/android/speech/QtTextToSpeech.java
--- 
old/qtspeech-everywhere-src-5.15.6+kde1/src/plugins/tts/android/jar/src/org/qtproject/qt5/android/speech/QtTextToSpeech.java
2022-09-07 19:35:56.0 +0200
+++ 
new/qtspeech-everywhere-src-5.15.7+kde1/src/plugins/tts/android/jar/src/org/qtproject/qt5/android/speech/QtTextToSpeech.java
2022-10-28 12:23:13.0 +0200
@@ -254,6 +254,8 @@
 {
 //Log.d("QtTextToSpeech", "getLocale: " + mLocale);
 final Locale language = mTts.getLanguage();
+if (language == null)
+return null;
 String languageCode = language.getLanguage();
 String countryCode = language.getCountry();
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtspeech-everywhere-src-5.15.6+kde1/src/plugins/tts/android/src/qtexttospeech_android.cpp
 
new/qtspeech-everywhere-src-5.15.7+kde1/src/plugins/tts/android/src/qtexttospeech_android.cpp
--- 
old/qtspeech-everywhere-src-5.15.6+kde1/src/plugins/tts/android/src/qtexttospeech_android.cpp
   2022-09-07 19:35:56.0 +0200
+++ 
new/qtspeech-everywhere-src-5.15.7+kde1/src/plugins/tts/android/src/qtexttospeech_android.cpp
   2022-10-28 12:23:13.0 +0200
@@ -256,11 +256,13 @@
 result.reserve(count);
 for (int i = 0; i < count; ++i) {
 auto locale = locales.callObjectMethod("get", "(I)Ljava/lang/Object;", 
i);
-auto localeLanguage = 
locale.callObjectMethod("getLanguage").toString();
-auto localeCountry = 
locale.callObjectMethod("getCountry").toString();
-if (!localeCountry.isEmpty())
-localeLanguage += QString("_%1").arg(localeCoun

commit libqt5-qtserialport for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtserialport for 
openSUSE:Factory checked in at 2022-11-04 17:32:02

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


Package is "libqt5-qtserialport"

Fri Nov  4 17:32:02 2022 rev:47 rq:1033115 version:5.15.7+kde0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtserialport/libqt5-qtserialport.changes  
2022-09-27 20:10:02.105311522 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtserialport.new.2275/libqt5-qtserialport.changes
2022-11-04 17:32:34.684059347 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:56:46 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde0, rebased upstream:
+  * No code changes
+
+---

Old:

  qtserialport-everywhere-src-5.15.6+kde0.obscpio

New:

  qtserialport-everywhere-src-5.15.7+kde0.obscpio



Other differences:
--
++ libqt5-qtserialport.spec ++
--- /var/tmp/diff_new_pack.Ib71xm/_old  2022-11-04 17:32:35.992066385 +0100
+++ /var/tmp/diff_new_pack.Ib71xm/_new  2022-11-04 17:32:35.996066406 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQt5SerialPort5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtserialport-everywhere-src-%{version}
 Name:   libqt5-qtserialport
-Version:5.15.6+kde0
+Version:5.15.7+kde0
 Release:0
 Summary:Qt 5 Serial Port Addon
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.Ib71xm/_old  2022-11-04 17:32:36.032066600 +0100
+++ /var/tmp/diff_new_pack.Ib71xm/_new  2022-11-04 17:32:36.036066621 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtserialport.git
git
qtserialport-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtserialport-everywhere-src-5.15.6+kde0.obscpio -> 
qtserialport-everywhere-src-5.15.7+kde0.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtserialport-everywhere-src-5.15.6+kde0/.qmake.conf 
new/qtserialport-everywhere-src-5.15.7+kde0/.qmake.conf
--- old/qtserialport-everywhere-src-5.15.6+kde0/.qmake.conf 2022-08-16 
19:37:51.0 +0200
+++ new/qtserialport-everywhere-src-5.15.7+kde0/.qmake.conf 2022-09-12 
17:30:08.0 +0200
@@ -2,4 +2,4 @@
 
 DEFINES += QT_NO_FOREACH QT_NO_JAVA_STYLE_ITERATORS QT_NO_LINKED_LIST
 
-MODULE_VERSION = 5.15.6
+MODULE_VERSION = 5.15.7

++ qtserialport-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.Ib71xm/_old  2022-11-04 17:32:36.332068214 +0100
+++ /var/tmp/diff_new_pack.Ib71xm/_new  2022-11-04 17:32:36.336068235 +0100
@@ -1,5 +1,5 @@
 name: qtserialport-everywhere-src
-version: 5.15.6+kde0
-mtime: 1660671471
-commit: c9abfcd5d88cb43c2a7c1d5ddecbff4cdd320694
+version: 5.15.7+kde0
+mtime: 1662996608
+commit: 966cf2a2077a8470715894363ad46ea7df0665fa
 


commit libqt5-qtvirtualkeyboard for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtvirtualkeyboard for 
openSUSE:Factory checked in at 2022-11-04 17:32:06

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


Package is "libqt5-qtvirtualkeyboard"

Fri Nov  4 17:32:06 2022 rev:24 rq:1033120 version:5.15.7+kde0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtvirtualkeyboard/libqt5-qtvirtualkeyboard.changes
2022-09-27 20:10:09.177327119 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtvirtualkeyboard.new.2275/libqt5-qtvirtualkeyboard.changes
  2022-11-04 17:32:44.944114550 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:57:12 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde0, rebased upstream:
+  * No code changes
+
+---

Old:

  qtvirtualkeyboard-everywhere-src-5.15.6+kde1.obscpio

New:

  qtvirtualkeyboard-everywhere-src-5.15.7+kde0.obscpio



Other differences:
--
++ libqt5-qtvirtualkeyboard.spec ++
--- /var/tmp/diff_new_pack.khYdKi/_old  2022-11-04 17:32:47.280127119 +0100
+++ /var/tmp/diff_new_pack.khYdKi/_new  2022-11-04 17:32:47.300127226 +0100
@@ -19,15 +19,15 @@
 %define qt5_snapshot 1
 
 Name:   libqt5-qtvirtualkeyboard
-Version:5.15.6+kde1
+Version:5.15.7+kde0
 Release:0
 Summary:Qt 5 Virtual Keyboard
 License:GPL-3.0
 Group:  Development/Libraries/X11
 Url:https://www.qt.io
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtvirtualkeyboard-everywhere-src-%{version}
 Source: %{tar_version}.tar.xz
 BuildRequires:  libQt5Gui-private-headers-devel >= %{real_version}

++ _service ++
--- /var/tmp/diff_new_pack.khYdKi/_old  2022-11-04 17:32:47.344127463 +0100
+++ /var/tmp/diff_new_pack.khYdKi/_new  2022-11-04 17:32:47.348127485 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtvirtualkeyboard.git
git
qtvirtualkeyboard-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtvirtualkeyboard-everywhere-src-5.15.6+kde1.obscpio -> 
qtvirtualkeyboard-everywhere-src-5.15.7+kde0.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtvirtualkeyboard/qtvirtualkeyboard-everywhere-src-5.15.6+kde1.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtvirtualkeyboard.new.2275/qtvirtualkeyboard-everywhere-src-5.15.7+kde0.obscpio
 differ: char 50, line 1

++ qtvirtualkeyboard-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.khYdKi/_old  2022-11-04 17:32:47.428127915 +0100
+++ /var/tmp/diff_new_pack.khYdKi/_new  2022-11-04 17:32:47.432127937 +0100
@@ -1,5 +1,5 @@
 name: qtvirtualkeyboard-everywhere-src
-version: 5.15.6+kde1
-mtime: 1662572241
-commit: 9fbb837b55887bec5d73fad142c853ef68db35b3
+version: 5.15.7+kde0
+mtime: 1662996612
+commit: 8aebadb96c1e57ba89bba2e5962399f676207a32
 


commit libqt5-qtwayland for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtwayland for 
openSUSE:Factory checked in at 2022-11-04 17:32:07

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


Package is "libqt5-qtwayland"

Fri Nov  4 17:32:07 2022 rev:47 rq:1033121 version:5.15.7+kde49

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtwayland/libqt5-qtwayland.changes
2022-09-27 20:10:18.785348309 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtwayland.new.2275/libqt5-qtwayland.changes  
2022-11-04 17:32:47.672129228 +0100
@@ -1,0 +2,9 @@
+Thu Nov  3 08:57:16 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde49, rebased upstream:
+  * Hold surface read lock throughout QWaylandEglWindow::updateSurface
+  * Keep reference to buffer until it has been replaced
+  * Implement wp_viewporter support for video buffer formats
+  * Ignore viewporter buffer size when buffer is null
+
+---

Old:

  qtwayland-everywhere-src-5.15.6+kde49.obscpio

New:

  qtwayland-everywhere-src-5.15.7+kde49.obscpio



Other differences:
--
++ libqt5-qtwayland.spec ++
--- /var/tmp/diff_new_pack.0o1MB5/_old  2022-11-04 17:32:48.836135491 +0100
+++ /var/tmp/diff_new_pack.0o1MB5/_new  2022-11-04 17:32:48.852135577 +0100
@@ -22,11 +22,11 @@
 %define qt5_snapshot 1
 %define libname libQt5WaylandCompositor5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtwayland-everywhere-src-%{version}
 Name:   libqt5-qtwayland
-Version:5.15.6+kde49
+Version:5.15.7+kde49
 Release:0
 Summary:Qt 5 Wayland Addon
 # The wayland compositor files are GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.0o1MB5/_old  2022-11-04 17:32:48.948136094 +0100
+++ /var/tmp/diff_new_pack.0o1MB5/_new  2022-11-04 17:32:48.968136201 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtwayland.git
git
qtwayland-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtwayland-everywhere-src-5.15.6+kde49.obscpio -> 
qtwayland-everywhere-src-5.15.7+kde49.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtwayland-everywhere-src-5.15.6+kde49/.qmake.conf 
new/qtwayland-everywhere-src-5.15.7+kde49/.qmake.conf
--- old/qtwayland-everywhere-src-5.15.6+kde49/.qmake.conf   2022-09-22 
13:58:55.0 +0200
+++ new/qtwayland-everywhere-src-5.15.7+kde49/.qmake.conf   2022-10-28 
12:26:51.0 +0200
@@ -4,4 +4,4 @@
 DEFINES += QT_NO_JAVA_STYLE_ITERATORS
 DEFINES += QT_NO_LINKED_LIST
 
-MODULE_VERSION = 5.15.6
+MODULE_VERSION = 5.15.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtwayland-everywhere-src-5.15.6+kde49/src/client/qwaylandwindow_p.h 
new/qtwayland-everywhere-src-5.15.7+kde49/src/client/qwaylandwindow_p.h
--- old/qtwayland-everywhere-src-5.15.6+kde49/src/client/qwaylandwindow_p.h 
2022-09-22 13:58:55.0 +0200
+++ new/qtwayland-everywhere-src-5.15.7+kde49/src/client/qwaylandwindow_p.h 
2022-10-28 12:26:51.0 +0200
@@ -220,7 +220,11 @@
 
 protected:
 QWaylandDisplay *mDisplay = nullptr;
+
+// mSurface can be written by the main thread. Other threads should claim 
a read lock for access
+mutable QReadWriteLock mSurfaceLock;
 QScopedPointer mSurface;
+
 QWaylandShellSurface *mShellSurface = nullptr;
 QWaylandSubSurface *mSubSurfaceWindow = nullptr;
 QVector mChildren;
@@ -294,8 +298,6 @@
 
 static QWaylandWindow *mMouseGrab;
 
-mutable QReadWriteLock mSurfaceLock;
-
 friend class QWaylandSubSurface;
 };
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtwayland-everywhere-src-5.15.6+kde49/src/compositor/compositor_api/qwaylandquickitem.cpp
 
new/qtwayland-everywhere-src-5.15.7+kde49/src/compositor/compositor_api/qwaylandquickitem.cpp
--- 
old/qtwayland-everywhere-src-5.15.6+kde49/src/compositor/compositor_api/qwaylandquickitem.cpp
   2022-09-22 13:58:55.0 +0200
+++ 
new/qtwayland-everywhere-src-5.15.7+kde49/src/compositor/compositor_api/qwaylandquickitem.cpp
   2022-10-28 12:26:51.0 +0200
@@ -253,6 +253,16 @@
 m_textures << nullptr;
 }
 }
+
+void QWaylandBufferMaterial::setBufferRef(QWaylandQuickItem *surfaceItem, 
const QWaylandBufferRef &ref)
+{
+Q_UNUSED(surfaceItem);
+m_buff

commit libqt5-qtwebchannel for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtwebchannel for 
openSUSE:Factory checked in at 2022-11-04 17:32:08

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


Package is "libqt5-qtwebchannel"

Fri Nov  4 17:32:08 2022 rev:32 rq:1033122 version:5.15.7+kde3

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtwebchannel/libqt5-qtwebchannel.changes  
2022-09-27 20:10:10.997331133 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtwebchannel.new.2275/libqt5-qtwebchannel.changes
2022-11-04 17:32:50.936146790 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:57:21 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde3, rebased upstream:
+  * No code changes
+
+---

Old:

  qtwebchannel-everywhere-src-5.15.6+kde3.obscpio

New:

  qtwebchannel-everywhere-src-5.15.7+kde3.obscpio



Other differences:
--
++ libqt5-qtwebchannel.spec ++
--- /var/tmp/diff_new_pack.SvQVGK/_old  2022-11-04 17:32:51.992152472 +0100
+++ /var/tmp/diff_new_pack.SvQVGK/_new  2022-11-04 17:32:52.004152536 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQt5WebChannel5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtwebchannel-everywhere-src-%{version}
 Name:   libqt5-qtwebchannel
-Version:5.15.6+kde3
+Version:5.15.7+kde3
 Release:0
 Summary:Qt 5 WebChannel Addon
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.SvQVGK/_old  2022-11-04 17:32:52.056152816 +0100
+++ /var/tmp/diff_new_pack.SvQVGK/_new  2022-11-04 17:32:52.060152837 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtwebchannel.git
git
qtwebchannel-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtwebchannel-everywhere-src-5.15.6+kde3.obscpio -> 
qtwebchannel-everywhere-src-5.15.7+kde3.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtwebchannel-everywhere-src-5.15.6+kde3/.qmake.conf 
new/qtwebchannel-everywhere-src-5.15.7+kde3/.qmake.conf
--- old/qtwebchannel-everywhere-src-5.15.6+kde3/.qmake.conf 2022-09-07 
19:37:36.0 +0200
+++ new/qtwebchannel-everywhere-src-5.15.7+kde3/.qmake.conf 2022-10-28 
12:21:55.0 +0200
@@ -1,4 +1,4 @@
 load(qt_build_config)
 CONFIG += warning_clean
 
-MODULE_VERSION = 5.15.6
+MODULE_VERSION = 5.15.7

++ qtwebchannel-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.SvQVGK/_old  2022-11-04 17:32:52.388154602 +0100
+++ /var/tmp/diff_new_pack.SvQVGK/_new  2022-11-04 17:32:52.396154645 +0100
@@ -1,5 +1,5 @@
 name: qtwebchannel-everywhere-src
-version: 5.15.6+kde3
-mtime: 1662572256
-commit: fb1ca87aa1a12048199d2aabe9015b7222d2b773
+version: 5.15.7+kde3
+mtime: 1666952515
+commit: 4e35fe9429920067c17596986b486fb1c1e95db0
 


commit libqt5-qtwebsockets for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtwebsockets for 
openSUSE:Factory checked in at 2022-11-04 17:32:08

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


Package is "libqt5-qtwebsockets"

Fri Nov  4 17:32:08 2022 rev:41 rq:1033123 version:5.15.7+kde2

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtwebsockets/libqt5-qtwebsockets.changes  
2022-09-27 20:10:12.489334423 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtwebsockets.new.2275/libqt5-qtwebsockets.changes
2022-11-04 17:32:52.852157099 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:57:24 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde2, rebased upstream:
+  * No code changes
+
+---

Old:

  qtwebsockets-everywhere-src-5.15.6+kde2.obscpio

New:

  qtwebsockets-everywhere-src-5.15.7+kde2.obscpio



Other differences:
--
++ libqt5-qtwebsockets.spec ++
--- /var/tmp/diff_new_pack.RmSzE3/_old  2022-11-04 17:32:53.724161790 +0100
+++ /var/tmp/diff_new_pack.RmSzE3/_new  2022-11-04 17:32:53.732161833 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQt5WebSockets5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtwebsockets-everywhere-src-%{version}
 Name:   libqt5-qtwebsockets
-Version:5.15.6+kde2
+Version:5.15.7+kde2
 Release:0
 Summary:Qt 5 WebSockets Library
 License:LGPL-3.0-only OR  (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.RmSzE3/_old  2022-11-04 17:32:53.772162048 +0100
+++ /var/tmp/diff_new_pack.RmSzE3/_new  2022-11-04 17:32:53.776162070 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtwebsockets.git
git
qtwebsockets-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtwebsockets-everywhere-src-5.15.6+kde2.obscpio -> 
qtwebsockets-everywhere-src-5.15.7+kde2.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtwebsockets-everywhere-src-5.15.6+kde2/.qmake.conf 
new/qtwebsockets-everywhere-src-5.15.7+kde2/.qmake.conf
--- old/qtwebsockets-everywhere-src-5.15.6+kde2/.qmake.conf 2022-09-07 
19:38:20.0 +0200
+++ new/qtwebsockets-everywhere-src-5.15.7+kde2/.qmake.conf 2022-10-28 
12:21:00.0 +0200
@@ -3,4 +3,4 @@
 CONFIG += warning_clean
 DEFINES += QT_NO_FOREACH
 
-MODULE_VERSION = 5.15.6
+MODULE_VERSION = 5.15.7

++ qtwebsockets-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.RmSzE3/_old  2022-11-04 17:32:54.088163749 +0100
+++ /var/tmp/diff_new_pack.RmSzE3/_new  2022-11-04 17:32:54.092163770 +0100
@@ -1,5 +1,5 @@
 name: qtwebsockets-everywhere-src
-version: 5.15.6+kde2
-mtime: 1662572300
-commit: a066371747a7eb9de9b1ae38fbc41b2059080802
+version: 5.15.7+kde2
+mtime: 1666952460
+commit: 594477769ecac4032ba116196493f3ba3db1aaed
 


commit libqt5-qtwebview for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtwebview for 
openSUSE:Factory checked in at 2022-11-04 17:32:09

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


Package is "libqt5-qtwebview"

Fri Nov  4 17:32:09 2022 rev:21 rq:1033124 version:5.15.7+kde0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtwebview/libqt5-qtwebview.changes
2022-09-29 18:12:15.051125569 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtwebview.new.2275/libqt5-qtwebview.changes  
2022-11-04 17:32:54.332165062 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:57:27 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde0, rebased upstream:
+  * No code changes
+
+---

Old:

  qtwebview-everywhere-src-5.15.6+kde0.obscpio

New:

  qtwebview-everywhere-src-5.15.7+kde0.obscpio



Other differences:
--
++ libqt5-qtwebview.spec ++
--- /var/tmp/diff_new_pack.KEbmkn/_old  2022-11-04 17:32:55.068169022 +0100
+++ /var/tmp/diff_new_pack.KEbmkn/_new  2022-11-04 17:32:55.072169043 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQt5WebView5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtwebview-everywhere-src-%{version}
 Name:   libqt5-qtwebview
-Version:5.15.6+kde0
+Version:5.15.7+kde0
 Release:0
 Summary:Qt 5 WebView Library
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.KEbmkn/_old  2022-11-04 17:32:55.120169302 +0100
+++ /var/tmp/diff_new_pack.KEbmkn/_new  2022-11-04 17:32:55.124169323 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtwebview.git
git
qtwebview-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtwebview-everywhere-src-5.15.6+kde0.obscpio -> 
qtwebview-everywhere-src-5.15.7+kde0.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtwebview-everywhere-src-5.15.6+kde0/.qmake.conf 
new/qtwebview-everywhere-src-5.15.7+kde0/.qmake.conf
--- old/qtwebview-everywhere-src-5.15.6+kde0/.qmake.conf2022-08-16 
19:38:04.0 +0200
+++ new/qtwebview-everywhere-src-5.15.7+kde0/.qmake.conf2022-09-12 
17:30:16.0 +0200
@@ -2,4 +2,4 @@
 
 DEFINES += QT_NO_FOREACH
 
-MODULE_VERSION = 5.15.6
+MODULE_VERSION = 5.15.7

++ qtwebview-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.KEbmkn/_old  2022-11-04 17:32:55.292170226 +0100
+++ /var/tmp/diff_new_pack.KEbmkn/_new  2022-11-04 17:32:55.296170249 +0100
@@ -1,5 +1,5 @@
 name: qtwebview-everywhere-src
-version: 5.15.6+kde0
-mtime: 1660671484
-commit: 87577dde04ed219bda776dabca86176149736331
+version: 5.15.7+kde0
+mtime: 1662996616
+commit: b1605fea61a6bbb599b720c54282bc8ddb0aacf0
 


commit libqt5-qtx11extras for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtx11extras for 
openSUSE:Factory checked in at 2022-11-04 17:32:10

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


Package is "libqt5-qtx11extras"

Fri Nov  4 17:32:10 2022 rev:45 rq:1033125 version:5.15.7+kde0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtx11extras/libqt5-qtx11extras.changes
2022-09-27 20:10:13.997337749 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtx11extras.new.2275/libqt5-qtx11extras.changes
  2022-11-04 17:32:55.876173369 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:57:34 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde0, rebased upstream:
+  * No code changes
+
+---

Old:

  qtx11extras-everywhere-src-5.15.6+kde0.obscpio

New:

  qtx11extras-everywhere-src-5.15.7+kde0.obscpio



Other differences:
--
++ libqt5-qtx11extras.spec ++
--- /var/tmp/diff_new_pack.A345yb/_old  2022-11-04 17:32:57.132180127 +0100
+++ /var/tmp/diff_new_pack.A345yb/_new  2022-11-04 17:32:57.136180148 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQt5X11Extras5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtx11extras-everywhere-src-%{version}
 Name:   libqt5-qtx11extras
-Version:5.15.6+kde0
+Version:5.15.7+kde0
 Release:0
 Summary:Qt 5 X11 Extras Addon
 License:LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)

++ _service ++
--- /var/tmp/diff_new_pack.A345yb/_old  2022-11-04 17:32:57.176180364 +0100
+++ /var/tmp/diff_new_pack.A345yb/_new  2022-11-04 17:32:57.180180385 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtx11extras.git
git
qtx11extras-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtx11extras-everywhere-src-5.15.6+kde0.obscpio -> 
qtx11extras-everywhere-src-5.15.7+kde0.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtx11extras-everywhere-src-5.15.6+kde0/.qmake.conf 
new/qtx11extras-everywhere-src-5.15.7+kde0/.qmake.conf
--- old/qtx11extras-everywhere-src-5.15.6+kde0/.qmake.conf  2022-08-16 
19:39:29.0 +0200
+++ new/qtx11extras-everywhere-src-5.15.7+kde0/.qmake.conf  2022-09-12 
17:30:18.0 +0200
@@ -3,4 +3,4 @@
 CONFIG += warning_clean
 DEFINES += QT_NO_FOREACH
 
-MODULE_VERSION = 5.15.6
+MODULE_VERSION = 5.15.7

++ qtx11extras-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.A345yb/_old  2022-11-04 17:32:57.444181806 +0100
+++ /var/tmp/diff_new_pack.A345yb/_new  2022-11-04 17:32:57.448181827 +0100
@@ -1,5 +1,5 @@
 name: qtx11extras-everywhere-src
-version: 5.15.6+kde0
-mtime: 1660671569
-commit: 982f20eb585d77e5b5c721e05a466d7161f7f2d1
+version: 5.15.7+kde0
+mtime: 1662996618
+commit: 9134cdba9386e408ce2ffe515ca0c3f6f6c66685
 


commit libqt5-qtxmlpatterns for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtxmlpatterns for 
openSUSE:Factory checked in at 2022-11-04 17:32:10

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


Package is "libqt5-qtxmlpatterns"

Fri Nov  4 17:32:10 2022 rev:47 rq:1033126 version:5.15.7+kde0

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtxmlpatterns/libqt5-qtxmlpatterns.changes
2022-09-27 20:10:15.233340475 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtxmlpatterns.new.2275/libqt5-qtxmlpatterns.changes
  2022-11-04 17:32:57.616182731 +0100
@@ -1,0 +2,6 @@
+Thu Nov  3 08:57:37 UTC 2022 - Fabian Vogt 
+
+- Update to version 5.15.7+kde0, rebased upstream:
+  * No code changes
+
+---

Old:

  qtxmlpatterns-everywhere-src-5.15.6+kde0.obscpio

New:

  qtxmlpatterns-everywhere-src-5.15.7+kde0.obscpio



Other differences:
--
++ libqt5-qtxmlpatterns.spec ++
--- /var/tmp/diff_new_pack.9sFIBX/_old  2022-11-04 17:33:03.116212323 +0100
+++ /var/tmp/diff_new_pack.9sFIBX/_new  2022-11-04 17:33:03.124212366 +0100
@@ -19,11 +19,11 @@
 %define qt5_snapshot 1
 %define libname libQt5XmlPatterns5
 %define base_name libqt5
-%define real_version 5.15.6
-%define so_version 5.15.6
+%define real_version 5.15.7
+%define so_version 5.15.7
 %define tar_version qtxmlpatterns-everywhere-src-%{version}
 Name:   libqt5-qtxmlpatterns
-Version:5.15.6+kde0
+Version:5.15.7+kde0
 Release:0
 Summary:Qt 5 XmlPatterns Library
 # Legal:

++ _service ++
--- /var/tmp/diff_new_pack.9sFIBX/_old  2022-11-04 17:33:03.168212603 +0100
+++ /var/tmp/diff_new_pack.9sFIBX/_new  2022-11-04 17:33:03.172212625 +0100
@@ -1,12 +1,12 @@
 
   
enable
-   5.15.6+kde@TAG_OFFSET@
+   5.15.7+kde@TAG_OFFSET@
https://invent.kde.org/qt/qt/qtxmlpatterns.git
git
qtxmlpatterns-everywhere-src
kde/5.15
-   v5.15.6-lts-lgpl
+   v5.15.7-lts-lgpl
enable
   
   

++ qtxmlpatterns-everywhere-src-5.15.6+kde0.obscpio -> 
qtxmlpatterns-everywhere-src-5.15.7+kde0.obscpio ++
/work/SRC/openSUSE:Factory/libqt5-qtxmlpatterns/qtxmlpatterns-everywhere-src-5.15.6+kde0.obscpio
 
/work/SRC/openSUSE:Factory/.libqt5-qtxmlpatterns.new.2275/qtxmlpatterns-everywhere-src-5.15.7+kde0.obscpio
 differ: char 48, line 1

++ qtxmlpatterns-everywhere-src.obsinfo ++
--- /var/tmp/diff_new_pack.9sFIBX/_old  2022-11-04 17:33:03.248213033 +0100
+++ /var/tmp/diff_new_pack.9sFIBX/_new  2022-11-04 17:33:03.252213054 +0100
@@ -1,5 +1,5 @@
 name: qtxmlpatterns-everywhere-src
-version: 5.15.6+kde0
-mtime: 1660671571
-commit: 30e6c84fe2752cde8b53aff9d38c2095cd7c8761
+version: 5.15.7+kde0
+mtime: 1662996619
+commit: b798a0f0265538a9dd12b5c7e4dad84ba8e1db4e
 


commit sqlite3 for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package sqlite3 for openSUSE:Factory checked 
in at 2022-11-04 17:32:11

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


Package is "sqlite3"

Fri Nov  4 17:32:11 2022 rev:138 rq:1033127 version:3.39.4

Changes:

--- /work/SRC/openSUSE:Factory/sqlite3/sqlite3.changes  2022-09-19 
16:39:40.411808546 +0200
+++ /work/SRC/openSUSE:Factory/.sqlite3.new.2275/sqlite3.changes
2022-11-04 17:33:03.884216456 +0100
@@ -1,0 +2,15 @@
+Wed Nov  2 20:24:07 UTC 2022 - Andreas Stieger 
+
+- update to 3.39.4:
+  * Fix a long-standing problem in the btree balancer that might,
+in rare cases, cause database corruption if the application
+uses an application-defined page cache
+  * Enhance SQLITE_DBCONFIG_DEFENSIVE so that it disallows
+CREATE TRIGGER statements if one or more of the statements in
+the body of the trigger write into shadow tables
+  * Fix a possible integer overflow in the size computation for a
+memory allocation in FTS3.
+  * Fix a misuse of the sqlite3_set_auxdata() interface in the ICU
+Extension
+
+---

Old:

  sqlite-doc-3390300.zip
  sqlite-src-3390300.zip

New:

  sqlite-doc-3390400.zip
  sqlite-src-3390400.zip



Other differences:
--
++ sqlite3.spec ++
--- /var/tmp/diff_new_pack.lxRpWR/_old  2022-11-04 17:33:05.636225881 +0100
+++ /var/tmp/diff_new_pack.lxRpWR/_new  2022-11-04 17:33:05.640225904 +0100
@@ -17,11 +17,11 @@
 
 
 %define oname sqlite
-%define tarversion 3390300
+%define tarversion 3390400
 %bcond_with icu
 %bcond_without check
 Name:   sqlite3
-Version:3.39.3
+Version:3.39.4
 Release:0
 Summary:Embeddable SQL Database Engine
 License:SUSE-Public-Domain


commit libmfx for openSUSE:Factory

2022-11-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libmfx for openSUSE:Factory checked 
in at 2022-11-04 17:32:13

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


Package is "libmfx"

Fri Nov  4 17:32:13 2022 rev:16 rq:1033154 version:22.6.1

Changes:

--- /work/SRC/openSUSE:Factory/libmfx/libmfx.changes2022-07-09 
16:59:12.464451460 +0200
+++ /work/SRC/openSUSE:Factory/.libmfx.new.2275/libmfx.changes  2022-11-04 
17:33:05.980227733 +0100
@@ -1,0 +2,13 @@
+Thu Nov  3 18:22:45 UTC 2022 - Stefan Dirsch 
+
+- Update to version 22.6.1
+  * latest bugfix release 
+
+---
+Mon Jul 11 11:15:10 UTC 2022 - Stefan Dirsch 
+
+- No code changes
+- Update to version 22.4.4 was part of Intel oneVPL GPU Runtime
+  2022Q2 Release 22.4.4 
+
+---

Old:

  intel-mediasdk-22.4.4.tar.gz

New:

  intel-mediasdk-22.6.1.tar.gz



Other differences:
--
++ libmfx.spec ++
--- /var/tmp/diff_new_pack.JYJ99L/_old  2022-11-04 17:33:06.528230681 +0100
+++ /var/tmp/diff_new_pack.JYJ99L/_new  2022-11-04 17:33:06.536230724 +0100
@@ -19,7 +19,7 @@
 %global sover 1
 Name:   libmfx
 %define lname   libmfx%{sover}
-Version:22.4.4
+Version:22.6.1
 Release:0
 Summary:The Intel Media SDK
 License:MIT

++ intel-mediasdk-22.4.4.tar.gz -> intel-mediasdk-22.6.1.tar.gz ++
/work/SRC/openSUSE:Factory/libmfx/intel-mediasdk-22.4.4.tar.gz 
/work/SRC/openSUSE:Factory/.libmfx.new.2275/intel-mediasdk-22.6.1.tar.gz 
differ: char 13, line 1


commit akonadi-calendar for openSUSE:Factory

2022-11-04 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-11-04 17:32:15

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


Package is "akonadi-calendar"

Fri Nov  4 17:32:15 2022 rev:90 rq:1033186 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/akonadi-calendar/akonadi-calendar.changes
2022-10-15 16:33:29.617581894 +0200
+++ 
/work/SRC/openSUSE:Factory/.akonadi-calendar.new.2275/akonadi-calendar.changes  
2022-11-04 17:33:06.876232554 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:37 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  akonadi-calendar-22.08.3.tar.xz
  akonadi-calendar-22.08.3.tar.xz.sig



Other differences:
--
++ akonadi-calendar.spec ++
--- /var/tmp/diff_new_pack.QdpW2k/_old  2022-11-04 17:33:07.480235803 +0100
+++ /var/tmp/diff_new_pack.QdpW2k/_new  2022-11-04 17:33:07.488235847 +0100
@@ -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.2
+Version:22.08.3
 Release:0
 Summary:Akonadi calendar integration
 License:LGPL-2.1-or-later

++ akonadi-calendar-22.08.2.tar.xz -> akonadi-calendar-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-calendar-22.08.2/CMakeLists.txt 
new/akonadi-calendar-22.08.3/CMakeLists.txt
--- old/akonadi-calendar-22.08.2/CMakeLists.txt 2022-09-27 04:46:01.0 
+0200
+++ new/akonadi-calendar-22.08.3/CMakeLists.txt 2022-10-14 06:50:04.0 
+0200
@@ -3,7 +3,7 @@
 
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 
-set(PIM_VERSION "5.21.2")
+set(PIM_VERSION "5.21.3")
 project(Akonadi-Calendar  VERSION ${PIM_VERSION})
 
 # ECM setup
@@ -33,11 +33,11 @@
 
 
 set(AKONADICALENDAR_LIB_VERSION ${PIM_VERSION})
-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")
+set(AKONADICONTACT_LIB_VERSION "5.21.3")
+set(AKONADI_LIB_VERSION "5.21.3")
+set(MAILTRANSPORT_LIB_VERSION "5.21.3")
+set(CALENDARUTILS_LIB_VERSION "5.21.3")
+set(IDENTITYMANAGEMENT_LIB_VERSION "5.21.3")
 
 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.2/po/ca@valencia/libakonadi-calendar5.po 
new/akonadi-calendar-22.08.3/po/ca@valencia/libakonadi-calendar5.po
--- old/akonadi-calendar-22.08.2/po/ca@valencia/libakonadi-calendar5.po 
2022-10-11 07:01:45.0 +0200
+++ new/akonadi-calendar-22.08.3/po/ca@valencia/libakonadi-calendar5.po 
2022-11-01 01:14:34.0 +0100
@@ -253,7 +253,7 @@
 #, kde-format
 msgid "Mail transport to use for sending e-mail messages"
 msgstr ""
-"Transport de correu que s'utilitzar?? per a enviar missatges de correu "
+"Transport de correu que s'ha d'utilitzar per a enviar missatges de correu "
 "electr??nic"
 
 #. i18n: ectx: whatsthis, entry, group (Group Scheduling)
@@ -507,7 +507,7 @@
 #: icalimporter.cpp:172
 #, kde-format
 msgid "Url to import is malformed."
-msgstr "L'URL que s'ha d'importar est?? amb format incorrecte."
+msgstr "L'URL que s'importar?? est?? amb format incorrecte."
 
 #: icalimporter.cpp:179
 #, kde-format
@@ -956,7 +956,7 @@
 msgid ""
 "Click the Help button to read more information about Group Scheduling."
 msgstr ""
-"Cliqueu el bot?? Ajuda per a llegir m??s informaci?? quant a la "
+"Cliqueu en el bot?? Ajuda per a llegir m??s informaci?? quant a la "
 "planificaci?? de grup."
 
 #: publishdialog.cpp:122
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akonadi-calendar-22.08.2/po/ta/libakonadi-calendar5.po 
new/akonadi-calendar-22.08.3/po/ta/libakonadi-calendar5.po
--- old/akonadi-calendar-22.08.2/po/ta/libakonadi-calendar5.po  2022-10-11 
07:01:45.0 +0200
+++ new/akonadi-calendar-22.08.3/po/ta/libakonadi-calendar5.po  2022-11-01 
01:14:34.0 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: akonadi-calendar\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-

commit akonadi-calendar-tools for openSUSE:Factory

2022-11-04 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-11-04 17:32:17

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"

Fri Nov  4 17:32:17 2022 rev:74 rq:1033187 version:22.08.3

Changes:

--- 
/work/SRC/openSUSE:Factory/akonadi-calendar-tools/akonadi-calendar-tools.changes
2022-10-15 16:33:31.341586037 +0200
+++ 
/work/SRC/openSUSE:Factory/.akonadi-calendar-tools.new.2275/akonadi-calendar-tools.changes
  2022-11-04 17:33:08.404240775 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:37 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

  akonadi-calendar-tools-22.08.2.tar.xz
  akonadi-calendar-tools-22.08.2.tar.xz.sig

New:

  akonadi-calendar-tools-22.08.3.tar.xz
  akonadi-calendar-tools-22.08.3.tar.xz.sig



Other differences:
--
++ akonadi-calendar-tools.spec ++
--- /var/tmp/diff_new_pack.bHuL88/_old  2022-11-04 17:33:09.076244391 +0100
+++ /var/tmp/diff_new_pack.bHuL88/_new  2022-11-04 17:33:09.080244412 +0100
@@ -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.2
+Version:22.08.3
 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.2.tar.xz -> 
akonadi-calendar-tools-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-calendar-tools-22.08.2/CMakeLists.txt 
new/akonadi-calendar-tools-22.08.3/CMakeLists.txt
--- old/akonadi-calendar-tools-22.08.2/CMakeLists.txt   2022-09-11 
10:01:12.0 +0200
+++ new/akonadi-calendar-tools-22.08.3/CMakeLists.txt   2022-10-14 
06:50:15.0 +0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.2")
+set(PIM_VERSION "5.21.3")
 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.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(AKONADICALENDAR_LIB_VERSION "5.21.3")
+set(AKONADI_VERSION "5.21.3")
+set(CALENDARSUPPORT_LIB_VERSION "5.21.3")
+set(KCALENDARCORE_LIB_VERSION "5.21.3")
+set(CALENDARUTILS_LIB_VERSION "5.21.3")
 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.2/po/ca@valencia/konsolekalendar.po 
new/akonadi-calendar-tools-22.08.3/po/ca@valencia/konsolekalendar.po
--- old/akonadi-calendar-tools-22.08.2/po/ca@valencia/konsolekalendar.po
2022-10-11 07:02:02.0 +0200
+++ new/akonadi-calendar-tools-22.08.3/po/ca@valencia/konsolekalendar.po
2022-11-01 01:14:49.0 +0100
@@ -448,7 +448,7 @@
 #: main.cpp:109
 #, kde-format
 msgid "Calendar to use when creating a new incidence"
-msgstr "Calendari que s'utilitzar?? en crear una incid??ncia nova"
+msgstr "Calendari que s'ha d'utilitzar en crear una incid??ncia nova"
 
 #: main.cpp:112
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akonadi-calendar-tools-22.08.2/po/zh_CN/calendarjanitor.po 
new/akonadi-calendar-tools-22.08.3/po/zh_CN/calendarjanitor.po
--- old/akonadi-calendar-tools-22.08.2/po/zh_CN/calendarjanitor.po  
2022-10-11 07:02:02.0 +0200
+++ new/akonadi-calendar-tools-22.08.3/po/zh_CN/calendarjanitor.po  
2022-11-01 01:14:49.0 +0100
@@ -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-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\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.2/po/zh_CN/konsolekalendar.po 
new/akonadi-calendar-tools-22.08.3/po/zh_CN/konsolekalendar.po
--- old/akonadi-calendar-tools-22.08.2/po/zh_CN/konsolekalendar.po  
2

commit akonadi-contact for openSUSE:Factory

2022-11-04 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-11-04 17:32:17

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


Package is "akonadi-contact"

Fri Nov  4 17:32:17 2022 rev:80 rq:1033188 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/akonadi-contact/akonadi-contact.changes  
2022-10-15 16:33:33.593591449 +0200
+++ 
/work/SRC/openSUSE:Factory/.akonadi-contact.new.2275/akonadi-contact.changes
2022-11-04 17:33:09.728247899 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:38 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  akonadi-contacts-22.08.3.tar.xz
  akonadi-contacts-22.08.3.tar.xz.sig



Other differences:
--
++ akonadi-contact.spec ++
--- /var/tmp/diff_new_pack.SomEc7/_old  2022-11-04 17:33:10.836253860 +0100
+++ /var/tmp/diff_new_pack.SomEc7/_new  2022-11-04 17:33:10.852253946 +0100
@@ -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.2
+Version:22.08.3
 Release:0
 Summary:KDE PIM Libraries for Akonadi Contacts
 License:LGPL-2.1-or-later

++ akonadi-contacts-22.08.2.tar.xz -> akonadi-contacts-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-contacts-22.08.2/CMakeLists.txt 
new/akonadi-contacts-22.08.3/CMakeLists.txt
--- old/akonadi-contacts-22.08.2/CMakeLists.txt 2022-10-07 11:27:17.0 
+0200
+++ new/akonadi-contacts-22.08.3/CMakeLists.txt 2022-10-14 06:50:38.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.2")
+set(PIM_VERSION "5.21.3")
 
 project(Akonadi-Contact VERSION ${PIM_VERSION})
 
@@ -38,9 +38,9 @@
 
 
 set(AKONADI_CONTACTS_VERSION ${PIM_VERSION})
-set(KMIMELIB_VERSION "5.21.2")
-set(AKONADI_VERSION "5.21.2")
-set(GRANTLEETHEME_LIB_VERSION "5.21.2")
+set(KMIMELIB_VERSION "5.21.3")
+set(AKONADI_VERSION "5.21.3")
+set(GRANTLEETHEME_LIB_VERSION "5.21.3")
 set(GRANTLEE_LIB_VERSION "5.2")
 
 set(QT_REQUIRED_VERSION "5.15.2")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-contacts-22.08.2/po/nb/akonadicontact5.po 
new/akonadi-contacts-22.08.3/po/nb/akonadicontact5.po
--- old/akonadi-contacts-22.08.2/po/nb/akonadicontact5.po   2022-10-11 
07:01:50.0 +0200
+++ new/akonadi-contacts-22.08.3/po/nb/akonadicontact5.po   2022-11-01 
01:14:37.0 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2022-06-28 00:45+\n"
+"POT-Creation-Date: 2022-10-08 02:38+\n"
 "PO-Revision-Date: 2014-03-16 18:00+0100\n"
 "Last-Translator: Bj??rn Steensrud \n"
 "Language-Team: Norwegian Bokm??l \n"
@@ -209,15 +209,15 @@
 msgid "Ignore and Overwrite changes"
 msgstr "Ignorer og overskriv endringer"
 
-#: akonadi-contacts/contacteditor.cpp:275
-#: akonadi-contacts/contactgroupeditor.cpp:287
+#: akonadi-contacts/contacteditor.cpp:278
+#: akonadi-contacts/contactgroupeditor.cpp:290
 #: akonadi-contacts/selectaddressbookdialog.cpp:24
 #, kde-format
 msgctxt "@title:window"
 msgid "Select Address Book"
 msgstr "Velg adressebok"
 
-#: akonadi-contacts/contacteditor.cpp:276
+#: akonadi-contacts/contacteditor.cpp:279
 #, kde-format
 msgid "Select the address book the new contact shall be saved in:"
 msgstr "Velg den adresseboka der den nye kontakten skal lagres:"
@@ -296,12 +296,12 @@
 "Noen andre har endret kontaktgruppa.\n"
 "Hva skal gj??res?"
 
-#: akonadi-contacts/contactgroupeditor.cpp:172
+#: akonadi-contacts/contactgroupeditor.cpp:175
 #, kde-format
 msgid "The name of the contact group must not be empty."
 msgstr "Navnet p?? kontakgruppa kan ikke v??re tomt."
 
-#: akonadi-contacts/contactgroupeditor.cpp:288
+#: akonadi-contacts/contactgroupeditor.cpp:291
 #, kde-format
 msgid "Select the address book the new contact group shall be saved in:"
 msgstr "Velg den adresseboka der den nye kontaktgruppa skal lagres:"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-contacts-22.08.2/po/nn/akonadicontact5.po 
new/akonadi-contacts-2

commit akonadi-import-wizard for openSUSE:Factory

2022-11-04 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-11-04 17:32:19

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"

Fri Nov  4 17:32:19 2022 rev:76 rq:1033189 version:22.08.3

Changes:

--- 
/work/SRC/openSUSE:Factory/akonadi-import-wizard/akonadi-import-wizard.changes  
2022-10-15 16:33:36.181597668 +0200
+++ 
/work/SRC/openSUSE:Factory/.akonadi-import-wizard.new.2275/akonadi-import-wizard.changes
2022-11-04 17:33:11.776258917 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:39 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

  akonadi-import-wizard-22.08.2.tar.xz
  akonadi-import-wizard-22.08.2.tar.xz.sig

New:

  akonadi-import-wizard-22.08.3.tar.xz
  akonadi-import-wizard-22.08.3.tar.xz.sig



Other differences:
--
++ akonadi-import-wizard.spec ++
--- /var/tmp/diff_new_pack.3TFXWf/_old  2022-11-04 17:33:12.388262210 +0100
+++ /var/tmp/diff_new_pack.3TFXWf/_new  2022-11-04 17:33:12.392262232 +0100
@@ -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.2
+Version:22.08.3
 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.2.tar.xz -> 
akonadi-import-wizard-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-import-wizard-22.08.2/CMakeLists.txt 
new/akonadi-import-wizard-22.08.3/CMakeLists.txt
--- old/akonadi-import-wizard-22.08.2/CMakeLists.txt2022-09-11 
10:01:42.0 +0200
+++ new/akonadi-import-wizard-22.08.3/CMakeLists.txt2022-10-14 
06:50:48.0 +0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.2")
+set(PIM_VERSION "5.21.3")
 project(AkonadiImportWizard VERSION ${PIM_VERSION})
 
 
@@ -32,7 +32,7 @@
 
 # Do NOT add quote
 set(KDEPIM_DEV_VERSION )
-set(RELEASE_SERVICE_VERSION "22.08.2")
+set(RELEASE_SERVICE_VERSION "22.08.3")
 
 # 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.2")
-set(AKONADI_VERSION "5.21.2")
+set(KMAILTRANSPORT_LIB_VERSION "5.21.3")
+set(AKONADI_VERSION "5.21.3")
 
 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.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")
+set(MAILIMPORTER_VERSION "5.21.3")
+set(MAILCOMMON_LIB_VERSION "5.21.3")
+set(MESSAGELIB_LIB_VERSION "5.21.3")
+set(PIMCOMMON_LIB_VERSION "5.21.3")
+set(IDENTITYMANAGEMENT_LIB_VERSION "5.21.3")
 
 # 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.2/po/ca@valencia/akonadiimportwizard.po 
new/akonadi-import-wizard-22.08.3/po/ca@valencia/akonadiimportwizard.po
--- old/akonadi-import-wizard-22.08.2/po/ca@valencia/akonadiimportwizard.po 
2022-10-11 07:02:09.0 +0200
+++ new/akonadi-import-wizard-22.08.3/po/ca@valencia/akonadiimportwizard.po 
2022-11-01 01:14:54.0 +0100
@@ -69,7 +69,7 @@
 #: importwizard.cpp:165
 #, kde-format
 msgid "Select material to import"
-msgstr "Seleccioneu el material que s'importar??"
+msgstr "Seleccioneu el material que s'ha d'importar"
 
 #: importwizard.cpp:169
 #, kde-format
@@ -305,7 +305,7 @@
 "KAddressBook."
 msgstr ""
 "La llibreta d'adreces d'Evolution s'exportar?? com a vCard. S'importar?? la "
-"vCard a KAddressBook."
+"vCard en KAddressBook."
 
 #: plugins/evolutionv3/evolutionaddressbook.cpp:23
 #, kde-format
@@ -448,7 +448,7 @@
 #: ui/autodetect/selectcomponentpage.ui:136
 #, kde-format
 msgid "Or select types of material to import:"
-msgstr "O seleccioneu els tipus de material que s'han d'importar:"
+msgstr "O seleccioneu els tipus de material que s'hagen d'importar:"
 
 #. i18n: ectx: property (text), widget (QCheckBo

commit akonadi-notes for openSUSE:Factory

2022-11-04 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-11-04 17:32:21

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


Package is "akonadi-notes"

Fri Nov  4 17:32:21 2022 rev:76 rq:1033191 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/akonadi-notes/akonadi-notes.changes  
2022-10-15 16:33:39.513605675 +0200
+++ /work/SRC/openSUSE:Factory/.akonadi-notes.new.2275/akonadi-notes.changes
2022-11-04 17:33:13.996270862 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:40 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  akonadi-notes-22.08.3.tar.xz
  akonadi-notes-22.08.3.tar.xz.sig



Other differences:
--
++ akonadi-notes.spec ++
--- /var/tmp/diff_new_pack.1eeRzI/_old  2022-11-04 17:33:14.684274564 +0100
+++ /var/tmp/diff_new_pack.1eeRzI/_new  2022-11-04 17:33:14.692274607 +0100
@@ -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.2
+Version:22.08.3
 Release:0
 Summary:Library to implement management of notes in Akonadi
 License:LGPL-2.1-or-later

++ akonadi-notes-22.08.2.tar.xz -> akonadi-notes-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-22.08.2/CMakeLists.txt 
new/akonadi-notes-22.08.3/CMakeLists.txt
--- old/akonadi-notes-22.08.2/CMakeLists.txt2022-09-11 10:02:02.0 
+0200
+++ new/akonadi-notes-22.08.3/CMakeLists.txt2022-10-14 06:51:08.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.2")
+set(PIM_VERSION "5.21.3")
 
 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.2")
-set(AKONADI_VERSION "5.21.2")
+set(KMIMELIB_VERSION "5.21.3")
+set(AKONADI_VERSION "5.21.3")
 
 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.2/po/zh_CN/akonadinotes5.po 
new/akonadi-notes-22.08.3/po/zh_CN/akonadinotes5.po
--- old/akonadi-notes-22.08.2/po/zh_CN/akonadinotes5.po 2022-10-11 
07:01:55.0 +0200
+++ new/akonadi-notes-22.08.3/po/zh_CN/akonadinotes5.po 2022-11-01 
01:14:42.0 +0100
@@ -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-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit akonadi-mime for openSUSE:Factory

2022-11-04 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-11-04 17:32:20

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


Package is "akonadi-mime"

Fri Nov  4 17:32:20 2022 rev:76 rq:1033190 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/akonadi-mime/akonadi-mime.changes
2022-10-15 16:33:38.193602503 +0200
+++ /work/SRC/openSUSE:Factory/.akonadi-mime.new.2275/akonadi-mime.changes  
2022-11-04 17:33:12.876264836 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:39 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  akonadi-mime-22.08.3.tar.xz
  akonadi-mime-22.08.3.tar.xz.sig



Other differences:
--
++ akonadi-mime.spec ++
--- /var/tmp/diff_new_pack.Hqvg27/_old  2022-11-04 17:33:13.472268042 +0100
+++ /var/tmp/diff_new_pack.Hqvg27/_new  2022-11-04 17:33:13.480268086 +0100
@@ -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.2
+Version:22.08.3
 Release:0
 Summary:MIME email parser for KDE PIM
 License:LGPL-2.1-or-later

++ akonadi-mime-22.08.2.tar.xz -> akonadi-mime-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-mime-22.08.2/CMakeLists.txt 
new/akonadi-mime-22.08.3/CMakeLists.txt
--- old/akonadi-mime-22.08.2/CMakeLists.txt 2022-09-11 10:01:51.0 
+0200
+++ new/akonadi-mime-22.08.3/CMakeLists.txt 2022-10-14 06:50:58.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.2")
+set(PIM_VERSION "5.21.3")
 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.2")
-set(KF5_MIME_VERSION "5.21.2")
+set(AKONADI_VERSION "5.21.3")
+set(KF5_MIME_VERSION "5.21.3")
 
 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.2/po/es/libakonadi-kmime5.po 
new/akonadi-mime-22.08.3/po/es/libakonadi-kmime5.po
--- old/akonadi-mime-22.08.2/po/es/libakonadi-kmime5.po 2022-10-11 
07:01:58.0 +0200
+++ new/akonadi-mime-22.08.3/po/es/libakonadi-kmime5.po 2022-11-01 
01:14:45.0 +0100
@@ -3,13 +3,13 @@
 #
 # Cristina Yenyxe Gonz??lez Garc??a , 2010.
 # Javier Vinal , 2011, 2012, 2013, 2014, 2015, 2016.
-# Eloy Cuadra , 2020, 2021.
+# Eloy Cuadra , 2020, 2021, 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-06-14 00:49+\n"
-"PO-Revision-Date: 2021-11-06 22:18+0100\n"
+"PO-Revision-Date: 2022-10-23 21:26+0200\n"
 "Last-Translator: Eloy Cuadra \n"
 "Language-Team: Spanish \n"
 "Language: es\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 21.08.3\n"
+"X-Generator: Lokalize 22.08.2\n"
 
 #: emptytrashcommand.cpp:46
 #, kde-format
@@ -27,7 +27,7 @@
 #: emptytrashcommand.cpp:47
 #, kde-format
 msgid "Are you sure you want to empty the trash folders of all accounts?"
-msgstr "??Seguro qu?? desea vaciar las papeleras de todas las cuentas?"
+msgstr "??Seguro que desea vaciar las papeleras de todas las cuentas?"
 
 #: markascommand.cpp:122
 #, kde-format
@@ -35,8 +35,8 @@
 "Are you sure you want to mark all messages in this folder and all its "
 "subfolders?"
 msgstr ""
-"??Esta usted seguro de qu?? quiere marcar todos los mensajes en esta carpeta 
y "
-"todas sus subcarpetas?"
+"??Seguro que quiere marcar todos los mensajes de esta carpeta y de todas sus "
+"subcarpetas?"
 
 #: markascommand.cpp:123
 #, kde-format
@@ -135,7 +135,7 @@
 #, kde-format
 msgctxt "local mail folder"
 msgid "sent-mail"
-msgstr "correo-enviado"
+msgstr "correo enviado"
 
 #: specialmailcollections.cpp:139
 #, kde-format
@@ -169,7 +169,7 @@
 #: standardmailactionmanager.cpp:120 standardmailactionmanager.cpp:121
 #, kde-form

commit akonadi-search for openSUSE:Factory

2022-11-04 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-11-04 17:32:22

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


Package is "akonadi-search"

Fri Nov  4 17:32:22 2022 rev:90 rq:1033192 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/akonadi-search/akonadi-search.changes
2022-10-15 16:33:42.033611731 +0200
+++ /work/SRC/openSUSE:Factory/.akonadi-search.new.2275/akonadi-search.changes  
2022-11-04 17:33:15.152277082 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:41 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  akonadi-search-22.08.3.tar.xz
  akonadi-search-22.08.3.tar.xz.sig



Other differences:
--
++ akonadi-search.spec ++
--- /var/tmp/diff_new_pack.te4bN8/_old  2022-11-04 17:33:15.920281214 +0100
+++ /var/tmp/diff_new_pack.te4bN8/_new  2022-11-04 17:33:15.924281236 +0100
@@ -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.2
+Version:22.08.3
 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.2.tar.xz -> akonadi-search-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-search-22.08.2/CMakeLists.txt 
new/akonadi-search-22.08.3/CMakeLists.txt
--- old/akonadi-search-22.08.2/CMakeLists.txt   2022-10-08 05:14:33.0 
+0200
+++ new/akonadi-search-22.08.3/CMakeLists.txt   2022-10-14 06:51:20.0 
+0200
@@ -2,7 +2,7 @@
 # SPDX-FileCopyrightText: none
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 
-set(PIM_VERSION "5.21.2")
+set(PIM_VERSION "5.21.3")
 project(AkonadiSearch VERSION ${PIM_VERSION})
 
 # ECM setup
@@ -43,9 +43,9 @@
 
 set(AKONADISEARCH_VERSION ${PIM_VERSION})
 
-set(AKONADI_VERSION "5.21.2")
-set(AKONADI_MIMELIB_VERSION "5.21.2")
-set(KMIME_LIB_VERSION "5.21.2")
+set(AKONADI_VERSION "5.21.3")
+set(AKONADI_MIMELIB_VERSION "5.21.3")
+set(KMIME_LIB_VERSION "5.21.3")
 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.2/po/zh_CN/akonadi_search.po 
new/akonadi-search-22.08.3/po/zh_CN/akonadi_search.po
--- old/akonadi-search-22.08.2/po/zh_CN/akonadi_search.po   2022-10-11 
07:00:52.0 +0200
+++ new/akonadi-search-22.08.3/po/zh_CN/akonadi_search.po   2022-11-01 
01:13:57.0 +0100
@@ -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-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit akonadi-server for openSUSE:Factory

2022-11-04 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-11-04 17:32:22

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


Package is "akonadi-server"

Fri Nov  4 17:32:22 2022 rev:104 rq:1033193 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/akonadi-server/akonadi-server.changes
2022-10-20 11:09:50.471792319 +0200
+++ /work/SRC/openSUSE:Factory/.akonadi-server.new.2275/akonadi-server.changes  
2022-11-04 17:33:17.348288897 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:36 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  akonadi-22.08.3.tar.xz
  akonadi-22.08.3.tar.xz.sig



Other differences:
--
++ akonadi-server.spec ++
--- /var/tmp/diff_new_pack.g5LMRs/_old  2022-11-04 17:33:18.288293955 +0100
+++ /var/tmp/diff_new_pack.g5LMRs/_new  2022-11-04 17:33:18.292293976 +0100
@@ -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.2
+Version:22.08.3
 Release:0
 Summary:PIM Storage Service
 License:LGPL-2.1-or-later

++ akonadi-22.08.2.tar.xz -> akonadi-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-22.08.2/CMakeLists.txt 
new/akonadi-22.08.3/CMakeLists.txt
--- old/akonadi-22.08.2/CMakeLists.txt  2022-09-08 19:35:16.0 +0200
+++ new/akonadi-22.08.3/CMakeLists.txt  2022-10-13 13:39:14.0 +0200
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 
-set(PIM_VERSION "5.21.2")
+set(PIM_VERSION "5.21.3")
 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.2")
+set(RELEASE_SERVICE_VERSION "22.08.3")
 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.2/po/ca@valencia/libakonadi5.po 
new/akonadi-22.08.3/po/ca@valencia/libakonadi5.po
--- old/akonadi-22.08.2/po/ca@valencia/libakonadi5.po   2022-10-11 
07:00:46.0 +0200
+++ new/akonadi-22.08.3/po/ca@valencia/libakonadi5.po   2022-11-01 
01:13:52.0 +0100
@@ -1030,7 +1030,7 @@
 msgstr ""
 "Els vostres canvis entren en conflicte amb els d'alg?? altre. A menys 
"
 "que es puga llen??ar alguna versi??, els haureu d'integrar manualment.Feu 
"
-"clic a ??Obri l'editor de text?? per a "
+"clic en ??Obri l'editor de text?? per a "
 "mantindre una c??pia dels textos, seleccioneu la versi?? m??s correcta, 
torneu-"
 "la a obrir i modifiqueu-la de nou per a afegir-hi el que falta."
 
@@ -1142,7 +1142,7 @@
 msgstr ""
 "El marc de treball per a la gesti?? de la informaci?? personal Akonadi no es "
 "troba operatiu.\n"
-"Feu clic a ??Detalls...?? per a obtindre informaci?? detallada quant a este "
+"Feu clic en ??Detalls...?? per a obtindre informaci?? detallada quant a este "
 "problema."
 
 #. i18n: ectx: property (text), widget (QLabel, brokenDescription)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-22.08.2/po/it/libakonadi5.po 
new/akonadi-22.08.3/po/it/libakonadi5.po
--- old/akonadi-22.08.2/po/it/libakonadi5.po2022-10-11 07:00:46.0 
+0200
+++ new/akonadi-22.08.3/po/it/libakonadi5.po2022-11-01 01:13:52.0 
+0100
@@ -19,7 +19,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 22.04.2\n"
+"X-Generator: Lokalize 22.08.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-22.08.2/po/tr/libakonadi5.po 
new/akonadi-22.08.3/po/tr/libakonadi5.po
--- old/akonadi-22.08.2/po/tr/libakonadi5.po2022-10-11 07:00:46.0 
+0200
+++ new/akonadi-22.08.3/po/tr/libakonadi5.po2022-11-01 01:13:52.0 
+0100
@@ -14,7 +14,7 @@
 "Project-Id-Version: libakonadi\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "P

commit akregator for openSUSE:Factory

2022-11-04 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-11-04 17:32:24

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


Package is "akregator"

Fri Nov  4 17:32:24 2022 rev:80 rq:1033195 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/akregator/akregator.changes  2022-10-15 
16:33:45.541620161 +0200
+++ /work/SRC/openSUSE:Factory/.akregator.new.2275/akregator.changes
2022-11-04 17:33:19.380299831 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:41 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  akregator-22.08.3.tar.xz
  akregator-22.08.3.tar.xz.sig



Other differences:
--
++ akregator.spec ++
--- /var/tmp/diff_new_pack.jLQGXv/_old  2022-11-04 17:33:20.928308159 +0100
+++ /var/tmp/diff_new_pack.jLQGXv/_new  2022-11-04 17:33:20.936308202 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   akregator
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:RSS Feed Reader
 License:GPL-2.0-or-later

++ akregator-22.08.2.tar.xz -> akregator-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akregator-22.08.2/CMakeLists.txt 
new/akregator-22.08.3/CMakeLists.txt
--- old/akregator-22.08.2/CMakeLists.txt2022-10-10 22:25:42.0 
+0200
+++ new/akregator-22.08.3/CMakeLists.txt2022-10-30 22:25:53.0 
+0100
@@ -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.2")
+set(PIM_VERSION "5.21.3")
 project(akregator VERSION ${PIM_VERSION})
 
 set(KF5_MIN_VERSION "5.95.0")
-set(RELEASE_SERVICE_VERSION "22.08.2")
+set(RELEASE_SERVICE_VERSION "22.08.3")
 
 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.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")
+set(KONTACTINTERFACE_LIB_VERSION "5.21.3")
+set(KPIMTEXTEDIT_LIB_VERSION "5.21.3")
+set(LIBGRANTLEETHEME_LIB_VERSION "5.21.3")
+set(LIBKDEPIM_LIB_VERSION "5.21.3")
+set(LIBKLEO_LIB_VERSION "5.21.3")
+set(MESSAGELIB_LIB_VERSION "5.21.3")
+set(PIMCOMMON_LIB_VERSION "5.21.3")
 
 option(KDEPIM_KUSERFEEDBACK "Enable user feedback support (experimental)" 
FALSE)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akregator-22.08.2/po/ca/akregator.po 
new/akregator-22.08.3/po/ca/akregator.po
--- old/akregator-22.08.2/po/ca/akregator.po2022-10-11 07:02:13.0 
+0200
+++ new/akregator-22.08.3/po/ca/akregator.po2022-11-01 01:14:57.0 
+0100
@@ -11,7 +11,7 @@
 "Project-Id-Version: akregator\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-07-17 02:17+\n"
-"PO-Revision-Date: 2022-04-26 09:23+0200\n"
+"PO-Revision-Date: 2022-10-26 08:42+0200\n"
 "Last-Translator: Josep M. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -2208,7 +2208,7 @@
 "This will hide the menu bar completely. You can show it again by typing "
 "%1."
 msgstr ""
-"Aix?? ocultar?? la barra de men??s completament. La podeu tornar a 
mostrar "
+"Aix?? ocultar?? completament la barra de men??s. La podeu tornar a 
mostrar "
 "prement %1."
 
 #: src/mainwindow.cpp:127
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akregator-22.08.2/po/ca@valencia/akregator.po 
new/akregator-22.08.3/po/ca@valencia/akregator.po
--- old/akregator-22.08.2/po/ca@valencia/akregator.po   2022-10-11 
07:02:14.0 +0200
+++ new/akregator-22.08.3/po/ca@valencia/akregator.po   2022-11-01 
01:14:57.0 +0100
@@ -11,7 +11,7 @@
 "Project-Id-Version: akregator\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-07-17 02:17+\n"
-"PO-Revision-Date: 2022-04-26 09:23+0200\n"
+"PO-Revision-Date: 2022-10-26 08:42+0200\n"
 "Last-Translator: Josep M. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca@v

commit baloo5-widgets for openSUSE:Factory

2022-11-04 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-11-04 17:32:25

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


Package is "baloo5-widgets"

Fri Nov  4 17:32:25 2022 rev:88 rq:1033199 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/baloo5-widgets/baloo5-widgets.changes
2022-10-15 16:33:48.633627591 +0200
+++ /work/SRC/openSUSE:Factory/.baloo5-widgets.new.2275/baloo5-widgets.changes  
2022-11-04 17:33:23.688323009 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:44 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  baloo-widgets-22.08.3.tar.xz
  baloo-widgets-22.08.3.tar.xz.sig



Other differences:
--
++ baloo5-widgets.spec ++
--- /var/tmp/diff_new_pack.F7iJa4/_old  2022-11-04 17:33:24.364326647 +0100
+++ /var/tmp/diff_new_pack.F7iJa4/_new  2022-11-04 17:33:24.368326668 +0100
@@ -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.2
+Version:22.08.3
 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.2.tar.xz -> baloo-widgets-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-22.08.2/CMakeLists.txt 
new/baloo-widgets-22.08.3/CMakeLists.txt
--- old/baloo-widgets-22.08.2/CMakeLists.txt2022-10-10 21:38:58.0 
+0200
+++ new/baloo-widgets-22.08.3/CMakeLists.txt2022-10-30 21:43:02.0 
+0100
@@ -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 "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/po/ca@valencia/baloowidgets5.po 
new/baloo-widgets-22.08.3/po/ca@valencia/baloowidgets5.po
--- old/baloo-widgets-22.08.2/po/ca@valencia/baloowidgets5.po   2022-10-11 
07:00:42.0 +0200
+++ new/baloo-widgets-22.08.3/po/ca@valencia/baloowidgets5.po   2022-11-01 
01:13:49.0 +0100
@@ -118,7 +118,7 @@
 #, kde-format
 msgctxt "@label"
 msgid "Link to"
-msgstr "Enlla?? a"
+msgstr "Enlla?? cap a"
 
 #: src/filemetadataprovider.cpp:451
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-22.08.2/po/zh_CN/baloowidgets5.po 
new/baloo-widgets-22.08.3/po/zh_CN/baloowidgets5.po
--- old/baloo-widgets-22.08.2/po/zh_CN/baloowidgets5.po 2022-10-11 
07:00:42.0 +0200
+++ new/baloo-widgets-22.08.3/po/zh_CN/baloowidgets5.po 2022-11-01 
01:13:49.0 +0100
@@ -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-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/baloo-widgets-22.08.2/src/filepropertiesplugin/baloofilepropertiesplugin.json
 
new/baloo-widgets-22.08.3/src/filepropertiesplugin/baloofilepropertiesplugin.json
--- 
old/baloo-widgets-22.08.2/src/filepropertiesplugin/baloofilepropertiesplugin.json
   2022-10-10 21:38:58.0 +0200
+++ 
new/baloo-widgets-22.08.3/src/filepropertiesplugin/baloofilepropertiesplugin.json
   2022-10-30 21:43:02.0 +0100
@@ -17,6 +17,7 @@
 "Description[hu]": "A f??jlok metaadatait megjelen??t?? tulajdons??gok 
oldal, mint p??ld??ul k??pm??retek, el??ad??inform??ci??k ??s egyebek",
 "Description[ia]": "Pagina de propeietates monstrante meta dtos de 
file, tal como grandr de image, information de artista e altere cosas",
 "Description[it]": "Pagina delle propriet?? che mostra i metadati dei 
file, come le dimensioni dell'immagine, le informazioni sull'artista e altro",
+"Description[ka

commit ark for openSUSE:Factory

2022-11-04 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-11-04 17:32:25

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


Package is "ark"

Fri Nov  4 17:32:25 2022 rev:150 rq:1033197 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ark/ark.changes  2022-10-15 16:33:47.189624122 
+0200
+++ /work/SRC/openSUSE:Factory/.ark.new.2275/ark.changes2022-11-04 
17:33:21.956313690 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:42 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  ark-22.08.3.tar.xz
  ark-22.08.3.tar.xz.sig



Other differences:
--
++ ark.spec ++
--- /var/tmp/diff_new_pack.8LZWup/_old  2022-11-04 17:33:22.604317177 +0100
+++ /var/tmp/diff_new_pack.8LZWup/_new  2022-11-04 17:33:22.608317198 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   ark
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE Archiver Tool
 License:GPL-2.0-or-later


++ ark-22.08.2.tar.xz -> ark-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.2/CMakeLists.txt 
new/ark-22.08.3/CMakeLists.txt
--- old/ark-22.08.2/CMakeLists.txt  2022-10-10 21:59:24.0 +0200
+++ new/ark-22.08.3/CMakeLists.txt  2022-10-30 21:58:35.0 +0100
@@ -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 "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/app/ark_dndextract.desktop.cmake 
new/ark-22.08.3/app/ark_dndextract.desktop.cmake
--- old/ark-22.08.2/app/ark_dndextract.desktop.cmake2022-10-10 
21:59:24.0 +0200
+++ new/ark-22.08.3/app/ark_dndextract.desktop.cmake2022-10-30 
21:58:35.0 +0100
@@ -29,6 +29,7 @@
 Name[is]=Ark af??jappa hinga??
 Name[it]=Ark Estrai qui
 Name[ja]=Ark ???
+Name[ka]=Ark ?? ???
 Name[kk]=?? ??
 Name[km]= Ark 
 Name[ko]=Ark ? ??
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.2/app/compressfileitemaction.json 
new/ark-22.08.3/app/compressfileitemaction.json
--- old/ark-22.08.2/app/compressfileitemaction.json 2022-10-10 
21:59:24.0 +0200
+++ new/ark-22.08.3/app/compressfileitemaction.json 2022-10-30 
21:58:35.0 +0100
@@ -30,6 +30,7 @@
 "Name[is]": "'??jappa' ??j??nustuvalmynd",
 "Name[it]": "Menu di servizio ??Comprimi??",
 "Name[ja]": "'??'",
+"Name[ka]": "''  
?",
 "Name[ko]": "'??' ? ??",
 "Name[nl]": "Servicemenu 'Comprimeren'",
 "Name[nn]": "??Komprimer??-tenestemeny",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.2/app/extractfileitemaction.json 
new/ark-22.08.3/app/extractfileitemaction.json
--- old/ark-22.08.2/app/extractfileitemaction.json  2022-10-10 
21:59:24.0 +0200
+++ new/ark-22.08.3/app/extractfileitemaction.json  2022-10-30 
21:58:35.0 +0100
@@ -29,6 +29,7 @@
 "Name[is]": "'Af??jappa' ??j??nustuvalmynd",
 "Name[it]": "Menu di servizio ??Estrai??",
 "Name[ja]": "'??'",
+"Name[ka]": "'???'  
?",
 "Name[ko]": "'?? ??' ? ??",
 "Name[nl]": "Servicemenu 'Uitpakken'",
 "Name[nn]": "??Pakk ut??-tenestemeny",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.2/app/org.kde.ark.appdata.xml 
new/ark-22.08.3/app/org.kde.ark.appdata.xml
--- old/ark-22.08.2/app/org.kde.ark.appdata.xml 2022-10-10 21:59:24.0 
+0200
+++ new/ark-22.08.3/app/org.kde.ark.appdata.

commit calendarsupport for openSUSE:Factory

2022-11-04 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-11-04 17:32:26

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


Package is "calendarsupport"

Fri Nov  4 17:32:26 2022 rev:82 rq:1033203 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/calendarsupport/calendarsupport.changes  
2022-10-15 16:33:49.577629860 +0200
+++ 
/work/SRC/openSUSE:Factory/.calendarsupport.new.2275/calendarsupport.changes
2022-11-04 17:33:24.980329960 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:47 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  calendarsupport-22.08.3.tar.xz
  calendarsupport-22.08.3.tar.xz.sig



Other differences:
--
++ calendarsupport.spec ++
--- /var/tmp/diff_new_pack.WlKEAS/_old  2022-11-04 17:33:25.664333641 +0100
+++ /var/tmp/diff_new_pack.WlKEAS/_new  2022-11-04 17:33:25.668333663 +0100
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   calendarsupport
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE PIM calendaring support library
 License:GPL-2.0-or-later AND LGPL-2.1-or-later


++ calendarsupport-22.08.2.tar.xz -> calendarsupport-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/calendarsupport-22.08.2/CMakeLists.txt 
new/calendarsupport-22.08.3/CMakeLists.txt
--- old/calendarsupport-22.08.2/CMakeLists.txt  2022-09-11 10:02:31.0 
+0200
+++ new/calendarsupport-22.08.3/CMakeLists.txt  2022-10-14 06:51:43.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.2")
+set(PIM_VERSION "5.21.3")
 
 project(calendarsupport 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(CALENDARSUPPORT_LIB_VERSION ${PIM_VERSION})
-set(AKONADI_MIMELIB_VERSION "5.21.2")
+set(AKONADI_MIMELIB_VERSION "5.21.3")
 set(QT_REQUIRED_VERSION "5.15.2")
-set(KMIME_LIB_VERSION "5.21.2")
-set(CALENDARUTILS_LIB_VERSION "5.21.2")
-set(IDENTITYMANAGEMENT_LIB_VERSION "5.21.2")
-set(AKONADICALENDAR_LIB_VERSION "5.21.2")
-set(AKONADI_VERSION "5.21.2")
-set(AKONADI_NOTES_VERSION "5.21.2")
+set(KMIME_LIB_VERSION "5.21.3")
+set(CALENDARUTILS_LIB_VERSION "5.21.3")
+set(IDENTITYMANAGEMENT_LIB_VERSION "5.21.3")
+set(AKONADICALENDAR_LIB_VERSION "5.21.3")
+set(AKONADI_VERSION "5.21.3")
+set(AKONADI_NOTES_VERSION "5.21.3")
 find_package(KF5Akonadi ${AKONADI_VERSION} CONFIG REQUIRED)
 find_package(Qt${QT_MAJOR_VERSION} ${QT_REQUIRED_VERSION} CONFIG REQUIRED 
Widgets Test PrintSupport)
 find_package(KF5I18n ${KF5_MIN_VERSION} CONFIG REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/calendarsupport-22.08.2/po/ca@valencia/calendarsupport.po 
new/calendarsupport-22.08.3/po/ca@valencia/calendarsupport.po
--- old/calendarsupport-22.08.2/po/ca@valencia/calendarsupport.po   
2022-10-11 07:03:43.0 +0200
+++ new/calendarsupport-22.08.3/po/ca@valencia/calendarsupport.po   
2022-11-01 01:16:15.0 +0100
@@ -139,9 +139,8 @@
 "The age of the events and to-dos to archive. All older items will be saved "
 "and deleted, the newer will be kept."
 msgstr ""
-"L'antiguitat dels esdeveniments i tasques pendents que s'han d'arxivar. Tots "
-"els elements anteriors es guardaran i suprimiran, els posteriors es "
-"conservaran."
+"L'antiguitat dels esdeveniments i tasques pendents que s'arxivaran. Tots els "
+"elements anteriors es guardaran i suprimiran, els posteriors es conservaran."
 
 #: archivedialog.cpp:130
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/calendarsupport-22.08.2/po/fi/calendarsupport.po 
new/calendarsupport-22.08.3/po/fi/calendarsupport.po
--- old/calendarsupport-22.08.2/po/fi/calendarsupport.po2022-10-11 
07:03:43.0 +0200
+++ new/calendarsupport-22.08.3/po/fi/calendarsupport.po2022-11-01 
01:16:15.0 +0100
@@ -13,7 +13,7 @@
 "POT-Creation-Date: 2022-06-23 00:44+\n"
 "PO-Revision-Date: 2022-07-29 11:35+0300\n"
 "Last-

commit dolphin for openSUSE:Factory

2022-11-04 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-11-04 17:32:28

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


Package is "dolphin"

Fri Nov  4 17:32:28 2022 rev:101 rq:1033206 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/dolphin/dolphin.changes  2022-10-15 
16:33:50.821632849 +0200
+++ /work/SRC/openSUSE:Factory/.dolphin.new.2275/dolphin.changes
2022-11-04 17:33:27.056341043 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:48 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  dolphin-22.08.3.tar.xz
  dolphin-22.08.3.tar.xz.sig



Other differences:
--
++ dolphin.spec ++
--- /var/tmp/diff_new_pack.fmewHh/_old  2022-11-04 17:33:27.904345430 +0100
+++ /var/tmp/diff_new_pack.fmewHh/_new  2022-11-04 17:33:27.908345451 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   dolphin
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE File Manager
 License:GPL-2.0-or-later


++ dolphin-22.08.2.tar.xz -> dolphin-22.08.3.tar.xz ++
 79850 lines of diff (skipped)


commit dragonplayer for openSUSE:Factory

2022-11-04 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-11-04 17:32:29

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


Package is "dragonplayer"

Fri Nov  4 17:32:29 2022 rev:129 rq:1033208 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/dragonplayer/dragonplayer.changes
2022-10-15 16:33:54.529641760 +0200
+++ /work/SRC/openSUSE:Factory/.dragonplayer.new.2275/dragonplayer.changes  
2022-11-04 17:33:29.832355405 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:50 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  dragon-22.08.3.tar.xz
  dragon-22.08.3.tar.xz.sig



Other differences:
--
++ dragonplayer.spec ++
--- /var/tmp/diff_new_pack.vUwdGt/_old  2022-11-04 17:33:30.492358819 +0100
+++ /var/tmp/diff_new_pack.vUwdGt/_new  2022-11-04 17:33:30.496358839 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   dragonplayer
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Multimedia Player
 License:GPL-2.0-or-later


++ dragon-22.08.2.tar.xz -> dragon-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dragon-22.08.2/CMakeLists.txt 
new/dragon-22.08.3/CMakeLists.txt
--- old/dragon-22.08.2/CMakeLists.txt   2022-10-10 22:05:09.0 +0200
+++ new/dragon-22.08.3/CMakeLists.txt   2022-10-30 22:03:57.0 +0100
@@ -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 "2")
+set(RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/misc/dragonplayer-openaudiocd.desktop 
new/dragon-22.08.3/misc/dragonplayer-openaudiocd.desktop
--- old/dragon-22.08.2/misc/dragonplayer-openaudiocd.desktop2022-10-10 
22:05:09.0 +0200
+++ new/dragon-22.08.3/misc/dragonplayer-openaudiocd.desktop2022-10-30 
22:03:57.0 +0100
@@ -25,6 +25,7 @@
 Name[id]=Putar Audio CD menggunakan Dragon Player
 Name[is]=Spila CD-hlj??mdisk me?? Dragon spilaranum
 Name[it]=Leggi CD Audio con Dragon Player
+Name[ka]= ??? CD Dragon -??
 Name[ko]=Dragon Player??? ? CD ??
 Name[nb]=Spill lyd-CD med Dragon Player
 Name[nl]=Met Dragon Player een audio-cd afspelen
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dragon-22.08.2/misc/dragonplayer-opendvd.desktop 
new/dragon-22.08.3/misc/dragonplayer-opendvd.desktop
--- old/dragon-22.08.2/misc/dragonplayer-opendvd.desktop2022-10-10 
22:05:09.0 +0200
+++ new/dragon-22.08.3/misc/dragonplayer-opendvd.desktop2022-10-30 
22:03:57.0 +0100
@@ -29,6 +29,7 @@
 Name[is]=Opna me?? v??de??spilara (Dragon spilarinn)
 Name[it]=Apri con riproduttore video (Dragon Player)
 Name[ja]=? (Dragon Player) ?
+Name[ka]=? (Dragon) 
??
 Name[kk]=?? (Dragon)  ??
 
Name[km]=?
 ( Dragon)
 Name[ko]=?  ?? (Dragon Player)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dragon-22.08.2/misc/dragonplayer_part.desktop.in 
new/dragon-22.08.3/misc/dragonplayer_part.desktop.in
--- old/dragon-22.08.2/misc/dragonplayer_part.desktop.in2022-10-10 
22:05:09.0 +0200
+++ new/dragon-22.08.3/misc/dragonplayer_part.desktop.in2022-10-30 
22:03:57.0 +0100
@@ -26,6 +26,7 @@
 Name[is]=Dragon spilaraeining
 Name[it]=Componente Dragon Player
 Name[ja]=Dragon Player ?
+Name[ka]=??? Dragon-?? ??
 Name[kk]=Dragon  ??
 Name[km]=??? Dragon
 Name[ko]=Dra

commit eventviews for openSUSE:Factory

2022-11-04 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-11-04 17:32:29

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


Package is "eventviews"

Fri Nov  4 17:32:29 2022 rev:83 rq:1033210 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/eventviews/eventviews.changes2022-10-15 
16:33:56.457646393 +0200
+++ /work/SRC/openSUSE:Factory/.eventviews.new.2275/eventviews.changes  
2022-11-04 17:33:31.200362482 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:51 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  eventviews-22.08.3.tar.xz
  eventviews-22.08.3.tar.xz.sig



Other differences:
--
++ eventviews.spec ++
--- /var/tmp/diff_new_pack.pl0VW4/_old  2022-11-04 17:33:32.072366993 +0100
+++ /var/tmp/diff_new_pack.pl0VW4/_new  2022-11-04 17:33:32.088367076 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   eventviews
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Eventviews Library
 License:GPL-2.0-or-later AND LGPL-2.1-or-later


++ eventviews-22.08.2.tar.xz -> eventviews-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eventviews-22.08.2/CMakeLists.txt 
new/eventviews-22.08.3/CMakeLists.txt
--- old/eventviews-22.08.2/CMakeLists.txt   2022-09-15 04:25:45.0 
+0200
+++ new/eventviews-22.08.3/CMakeLists.txt   2022-10-19 05:22:46.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.2")
+set(PIM_VERSION "5.21.3")
 
 project(eventviews VERSION ${PIM_VERSION})
 
@@ -34,13 +34,13 @@
 
 
 set(EVENTVIEW_LIB_VERSION ${PIM_VERSION})
-set(CALENDARUTILS_LIB_VERSION "5.21.2")
-set(AKONADI_LIB_VERSION "5.21.2")
+set(CALENDARUTILS_LIB_VERSION "5.21.3")
+set(AKONADI_LIB_VERSION "5.21.3")
 set(QT_REQUIRED_VERSION "5.15.2")
-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")
+set(AKONADICALENDAR_LIB_VERSION "5.21.3")
+set(KMIME_LIB_VERSION "5.21.3")
+set(LIBKDEPIM_LIB_VERSION "5.21.3")
+set(CALENDARSUPPORT_LIB_VERSION "5.21.3")
 
 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.2/po/ca@valencia/libeventviews.po 
new/eventviews-22.08.3/po/ca@valencia/libeventviews.po
--- old/eventviews-22.08.2/po/ca@valencia/libeventviews.po  2022-10-11 
07:03:48.0 +0200
+++ new/eventviews-22.08.3/po/ca@valencia/libeventviews.po  2022-11-01 
01:16:19.0 +0100
@@ -596,7 +596,7 @@
 "Check this box to select a working week when clicking on the Date "
 "Navigator's week numbers, or uncheck it to choose the whole week."
 msgstr ""
-"Marqueu esta casella per a seleccionar una setmana laboral en clicar als "
+"Marqueu esta casella per a seleccionar una setmana laboral clicant en els "
 "n??meros de la setmana del navegador de dates, o desmarqueu-la per a "
 "seleccionar la setmana sencera."
 
@@ -975,7 +975,7 @@
 "Check this box to display scrollbars when clicking on a cell in the month "
 "view; they will only appear when needed though."
 msgstr ""
-"Marqueu esta casella per a mostrar barres de despla??ament en clicar a una "
+"Marqueu esta casella per a mostrar barres de despla??ament clicant en una "
 "cel??la en la vista mensual. Nom??s apareixeran quan calga."
 
 #. i18n: ectx: label, entry (EnableMonthItemIcons), group (Month View)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eventviews-22.08.2/po/tr/libeventviews.po 
new/eventviews-22.08.3/po/tr/libeventviews.po
--- old/eventviews-22.08.2/po/tr/libeventviews.po   2022-10-11 
07:03:48.0 +0200
+++ new/eventviews-22.08.3/po/tr/libeventviews.po   2022-11-01 
01:16:19.0 +0100
@@ -12,7 +12,7 @@
 "Project-Id-Version: kdepim-kde4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-08-20 02:13+\n"
-"PO-Revision-Date: 2022-08-03 11:17+0300\n"
+"PO-R

commit gwenview5 for openSUSE:Factory

2022-11-04 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-11-04 17:32:32

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


Package is "gwenview5"

Fri Nov  4 17:32:32 2022 rev:90 rq:1033217 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/gwenview5/gwenview5.changes  2022-10-15 
16:34:01.169657716 +0200
+++ /work/SRC/openSUSE:Factory/.gwenview5.new.2275/gwenview5.changes
2022-11-04 17:33:35.568385080 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:55 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  gwenview-22.08.3.tar.xz
  gwenview-22.08.3.tar.xz.sig



Other differences:
--
++ gwenview5.spec ++
--- /var/tmp/diff_new_pack.tzXFwc/_old  2022-11-04 17:33:36.268388700 +0100
+++ /var/tmp/diff_new_pack.tzXFwc/_new  2022-11-04 17:33:36.272388722 +0100
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   gwenview5
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Image Viewer by KDE
 License:GPL-2.0-or-later


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


commit grantleetheme for openSUSE:Factory

2022-11-04 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-11-04 17:32:30

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


Package is "grantleetheme"

Fri Nov  4 17:32:30 2022 rev:81 rq:1033216 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/grantleetheme/grantleetheme.changes  
2022-10-15 16:33:58.481651257 +0200
+++ /work/SRC/openSUSE:Factory/.grantleetheme.new.2275/grantleetheme.changes
2022-11-04 17:33:32.920371380 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:54 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  grantleetheme-22.08.3.tar.xz
  grantleetheme-22.08.3.tar.xz.sig



Other differences:
--
++ grantleetheme.spec ++
--- /var/tmp/diff_new_pack.DOHFFt/_old  2022-11-04 17:33:34.640380278 +0100
+++ /var/tmp/diff_new_pack.DOHFFt/_new  2022-11-04 17:33:34.644380299 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   grantleetheme
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Grantlee theme support
 License:GPL-2.0-only


++ grantleetheme-22.08.2.tar.xz -> grantleetheme-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grantleetheme-22.08.2/CMakeLists.txt 
new/grantleetheme-22.08.3/CMakeLists.txt
--- old/grantleetheme-22.08.2/CMakeLists.txt2022-09-08 19:37:19.0 
+0200
+++ new/grantleetheme-22.08.3/CMakeLists.txt2022-10-13 13:41:24.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.2")
+set(PIM_VERSION "5.21.3")
 
 project(GrantleeTheme VERSION ${PIM_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grantleetheme-22.08.2/po/zh_CN/libgrantleetheme.po 
new/grantleetheme-22.08.3/po/zh_CN/libgrantleetheme.po
--- old/grantleetheme-22.08.2/po/zh_CN/libgrantleetheme.po  2022-10-11 
07:03:53.0 +0200
+++ new/grantleetheme-22.08.3/po/zh_CN/libgrantleetheme.po  2022-11-01 
01:16:22.0 +0100
@@ -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-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kaccounts-integration for openSUSE:Factory

2022-11-04 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-11-04 17:32:34

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


Package is "kaccounts-integration"

Fri Nov  4 17:32:34 2022 rev:95 rq:1033222 version:22.08.3

Changes:

--- 
/work/SRC/openSUSE:Factory/kaccounts-integration/kaccounts-integration.changes  
2022-10-15 16:34:03.449663195 +0200
+++ 
/work/SRC/openSUSE:Factory/.kaccounts-integration.new.2275/kaccounts-integration.changes
2022-11-04 17:33:38.784401717 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:58 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kaccounts-integration-22.08.3.tar.xz
  kaccounts-integration-22.08.3.tar.xz.sig



Other differences:
--
++ kaccounts-integration.spec ++
--- /var/tmp/diff_new_pack.bpTsqR/_old  2022-11-04 17:33:39.440405111 +0100
+++ /var/tmp/diff_new_pack.bpTsqR/_new  2022-11-04 17:33:39.05132 +0100
@@ -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.2
+Version:22.08.3
 Release:0
 Summary:KDE Accounts Providers
 License:GPL-2.0-or-later


++ kaccounts-integration-22.08.2.tar.xz -> 
kaccounts-integration-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kaccounts-integration-22.08.2/CMakeLists.txt 
new/kaccounts-integration-22.08.3/CMakeLists.txt
--- old/kaccounts-integration-22.08.2/CMakeLists.txt2022-10-10 
21:38:54.0 +0200
+++ new/kaccounts-integration-22.08.3/CMakeLists.txt2022-10-30 
21:42:59.0 +0100
@@ -2,7 +2,7 @@
 
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "2")
+set(RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/po/ca@valencia/kaccounts-integration.po 
new/kaccounts-integration-22.08.3/po/ca@valencia/kaccounts-integration.po
--- old/kaccounts-integration-22.08.2/po/ca@valencia/kaccounts-integration.po   
2022-10-11 07:00:27.0 +0200
+++ new/kaccounts-integration-22.08.3/po/ca@valencia/kaccounts-integration.po   
2022-11-01 01:13:34.0 +0100
@@ -69,7 +69,7 @@
 "Button which spawns a dialog allowing the user to change the displayed "
 "account's human-readable name"
 msgid "Change Account Display Name"
-msgstr "Canvia el nom que es mostrar?? del compte"
+msgstr "Canvia el nom que s'ha de mostrar del compte"
 
 #: src/kcm/package/contents/ui/AccountDetails.qml:81
 #, kde-format
@@ -168,7 +168,7 @@
 "The title for a dialog which lets you set the human-readable name of an "
 "account"
 msgid "Rename Account"
-msgstr "Canvia el nom el compte"
+msgstr "Canvia el nom del compte"
 
 #: src/kcm/package/contents/ui/RenameAccountDialog.qml:31
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kaccounts-integration-22.08.2/po/zh_CN/kaccounts-integration.po 
new/kaccounts-integration-22.08.3/po/zh_CN/kaccounts-integration.po
--- old/kaccounts-integration-22.08.2/po/zh_CN/kaccounts-integration.po 
2022-10-11 07:00:27.0 +0200
+++ new/kaccounts-integration-22.08.3/po/zh_CN/kaccounts-integration.po 
2022-11-01 01:13:34.0 +0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-09-17 02:08+\n"
-"PO-Revision-Date: 2022-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit incidenceeditor for openSUSE:Factory

2022-11-04 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-11-04 17:32:33

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


Package is "incidenceeditor"

Fri Nov  4 17:32:33 2022 rev:81 rq:1033218 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/incidenceeditor/incidenceeditor.changes  
2022-10-15 16:34:02.161660100 +0200
+++ 
/work/SRC/openSUSE:Factory/.incidenceeditor.new.2275/incidenceeditor.changes
2022-11-04 17:33:37.320394143 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:56 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  incidenceeditor-22.08.3.tar.xz
  incidenceeditor-22.08.3.tar.xz.sig



Other differences:
--
++ incidenceeditor.spec ++
--- /var/tmp/diff_new_pack.ZI45Lg/_old  2022-11-04 17:33:37.940397351 +0100
+++ /var/tmp/diff_new_pack.ZI45Lg/_new  2022-11-04 17:33:37.944397371 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   incidenceeditor
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Incidenceeditor library
 License:GPL-2.0-or-later AND LGPL-2.1-or-later


++ incidenceeditor-22.08.2.tar.xz -> incidenceeditor-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/incidenceeditor-22.08.2/CMakeLists.txt 
new/incidenceeditor-22.08.3/CMakeLists.txt
--- old/incidenceeditor-22.08.2/CMakeLists.txt  2022-09-11 10:02:59.0 
+0200
+++ new/incidenceeditor-22.08.3/CMakeLists.txt  2022-10-14 06:52:17.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.2")
+set(PIM_VERSION "5.21.3")
 
 project(incidenceeditor VERSION ${PIM_VERSION})
 
@@ -33,20 +33,20 @@
 
 
 set(INCIDENCEEDITOR_LIB_VERSION ${PIM_VERSION})
-set(AKONADI_MIMELIB_VERSION "5.21.2")
-set(KDEPIM_LIB_VERSION "5.21.2")
+set(AKONADI_MIMELIB_VERSION "5.21.3")
+set(KDEPIM_LIB_VERSION "5.21.3")
 set(QT_REQUIRED_VERSION "5.15.2")
-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(KMIME_LIB_VERSION "5.21.3")
+set(KMAILTRANSPORT_LIB_VERSION "5.21.3")
+set(KLDAP_LIB_VERSION "5.21.3")
+set(CALENDARUTILS_LIB_VERSION "5.21.3")
+set(CALENDARSUPPORT_LIB_VERSION "5.21.3")
+set(LIBKDEPIM_LIB_VERSION "5.21.3")
+set(EVENTVIEW_LIB_VERSION "5.21.3")
+set(AKONADI_VERSION "5.21.3")
+set(AKONADICONTACT_LIB_VERSION "5.21.3")
+set(AKONADICALENDAR_LIB_VERSION "5.21.3")
+set(PIMCOMMON_LIB_VERSION "5.21.3")
 
 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.2/po/ar/libincidenceeditors.po 
new/incidenceeditor-22.08.3/po/ar/libincidenceeditors.po
--- old/incidenceeditor-22.08.2/po/ar/libincidenceeditors.po2022-10-11 
07:03:57.0 +0200
+++ new/incidenceeditor-22.08.3/po/ar/libincidenceeditors.po2022-11-01 
01:16:24.0 +0100
@@ -2,32 +2,31 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Safa Alfulaij , 2018.
+# Zayed Al-Saidi , 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-08-20 02:13+\n"
-"PO-Revision-Date: 2018-01-31 14:57+0300\n"
-"Last-Translator: Safa Alfulaij \n"
-"Language-Team: Arabic \n"
+"PO-Revision-Date: 2022-10-27 12:51+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"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 21.12.3\n"
 
 #: alarmdialog.cpp:25
-#, fuzzy, kde-for

commit kaccounts-providers for openSUSE:Factory

2022-11-04 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-11-04 17:32:35

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


Package is "kaccounts-providers"

Fri Nov  4 17:32:35 2022 rev:92 rq:1033223 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kaccounts-providers/kaccounts-providers.changes  
2022-10-15 16:34:05.653668492 +0200
+++ 
/work/SRC/openSUSE:Factory/.kaccounts-providers.new.2275/kaccounts-providers.changes
2022-11-04 17:33:39.896407470 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:59 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kaccounts-providers-22.08.3.tar.xz
  kaccounts-providers-22.08.3.tar.xz.sig



Other differences:
--
++ kaccounts-providers.spec ++
--- /var/tmp/diff_new_pack.TvJaZ2/_old  2022-11-04 17:33:40.688411567 +0100
+++ /var/tmp/diff_new_pack.TvJaZ2/_new  2022-11-04 17:33:40.700411629 +0100
@@ -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.2
+Version:22.08.3
 Release:0
 Summary:KDE Accounts Providers
 License:GPL-2.0-or-later


++ kaccounts-providers-22.08.2.tar.xz -> kaccounts-providers-22.08.3.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kaccounts-providers-22.08.2/CMakeLists.txt 
new/kaccounts-providers-22.08.3/CMakeLists.txt
--- old/kaccounts-providers-22.08.2/CMakeLists.txt  2022-10-10 
21:38:55.0 +0200
+++ new/kaccounts-providers-22.08.3/CMakeLists.txt  2022-10-30 
21:42:59.0 +0100
@@ -2,7 +2,7 @@
 
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "2")
+set(RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/po/zh_CN/kaccounts-providers.po 
new/kaccounts-providers-22.08.3/po/zh_CN/kaccounts-providers.po
--- old/kaccounts-providers-22.08.2/po/zh_CN/kaccounts-providers.po 
2022-10-11 07:00:31.0 +0200
+++ new/kaccounts-providers-22.08.3/po/zh_CN/kaccounts-providers.po 
2022-11-01 01:13:38.0 +0100
@@ -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-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kaddressbook for openSUSE:Factory

2022-11-04 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-11-04 17:32:36

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


Package is "kaddressbook"

Fri Nov  4 17:32:36 2022 rev:78 rq:1033224 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kaddressbook/kaddressbook.changes
2022-10-15 16:34:07.889673865 +0200
+++ /work/SRC/openSUSE:Factory/.kaddressbook.new.2275/kaddressbook.changes  
2022-11-04 17:33:41.092413657 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:59 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kaddressbook-22.08.3.tar.xz
  kaddressbook-22.08.3.tar.xz.sig



Other differences:
--
++ kaddressbook.spec ++
--- /var/tmp/diff_new_pack.QZDOyv/_old  2022-11-04 17:33:42.264419721 +0100
+++ /var/tmp/diff_new_pack.QZDOyv/_new  2022-11-04 17:33:42.272419762 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kaddressbook
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Address book application to manage contacts
 License:LGPL-2.1-or-later AND GPL-2.0-or-later


++ kaddressbook-22.08.2.tar.xz -> kaddressbook-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kaddressbook-22.08.2/CMakeLists.txt 
new/kaddressbook-22.08.3/CMakeLists.txt
--- old/kaddressbook-22.08.2/CMakeLists.txt 2022-10-11 05:02:41.0 
+0200
+++ new/kaddressbook-22.08.3/CMakeLists.txt 2022-10-30 22:26:14.0 
+0100
@@ -1,9 +1,9 @@
 # SPDX-License-Identifier: CC0-1.0
 # SPDX-FileCopyrightText: none
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.2")
+set(PIM_VERSION "5.21.3")
 project(kaddressbook VERSION ${PIM_VERSION})
-set(RELEASE_SERVICE_VERSION "22.08.2")
+set(RELEASE_SERVICE_VERSION "22.08.3")
 set(KF5_MIN_VERSION "5.95.0")
 
 find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED)
@@ -43,9 +43,9 @@
 
 set(KDEPIM_VERSION "${PIM_VERSION}${KDEPIM_DEV_VERSION} 
(${RELEASE_SERVICE_VERSION})")
 
-set(KPIMTEXTEDIT_LIB_VERSION "5.21.2")
-set(AKONADI_VERSION "5.21.2")
-set(KONTACTINTERFACE_LIB_VERSION "5.21.2")
+set(KPIMTEXTEDIT_LIB_VERSION "5.21.3")
+set(AKONADI_VERSION "5.21.3")
+set(KONTACTINTERFACE_LIB_VERSION "5.21.3")
 
 set(KDEPIM_LIB_VERSION "${PIM_VERSION}")
 set(KDEPIM_LIB_SOVERSION "5")
@@ -53,11 +53,11 @@
 
 set(QT_REQUIRED_VERSION "5.15.2")
 find_package(Qt${QT_MAJOR_VERSION} ${QT_REQUIRED_VERSION} CONFIG REQUIRED 
Widgets Test DBus PrintSupport)
-set(LIBKDEPIM_LIB_VERSION "5.21.2")
-set(LIBGRANTLEETHEME_LIB_VERSION "5.21.2")
-set(PIMCOMMON_LIB_VERSION "5.21.2")
-set(AKONADI_SEARCH_VERSION "5.21.2")
-set(AKONADI_CONTACT_VERSION "5.21.2")
+set(LIBKDEPIM_LIB_VERSION "5.21.3")
+set(LIBGRANTLEETHEME_LIB_VERSION "5.21.3")
+set(PIMCOMMON_LIB_VERSION "5.21.3")
+set(AKONADI_SEARCH_VERSION "5.21.3")
+set(AKONADI_CONTACT_VERSION "5.21.3")
 
 # Find KF5 package
 find_package(KF5DBusAddons ${KF5_MIN_VERSION} CONFIG REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kaddressbook-22.08.2/po/ca/kaddressbook.po 
new/kaddressbook-22.08.3/po/ca/kaddressbook.po
--- old/kaddressbook-22.08.2/po/ca/kaddressbook.po  2022-10-11 
07:02:23.0 +0200
+++ new/kaddressbook-22.08.3/po/ca/kaddressbook.po  2022-11-01 
01:15:03.0 +0100
@@ -4,21 +4,21 @@
 # Sebasti?? Pla i Sanz , 2001, 2004, 2006.
 # Antoni Bella P??rez , 2003, 2004, 2013, 2014, 2015, 
2016, 2017, 2018, 2019, 2020, 2021, 2022.
 # Albert Astals Cid , 2004, 2005.
-# Josep M. Ferrer , 2006, 2007, 2008, 2009, 2010, 2012, 
2013, 2014, 2015, 2016, 2018, 2019, 2020, 2021.
+# Josep M. Ferrer , 2006, 2007, 2008, 2009, 2010, 2012, 
2013, 2014, 2015, 2016, 2018, 2019, 2020, 2021, 2022.
 # Manuel Tortosa Moreno , 2009, 2010, 2011.
 msgid ""
 msgstr ""
 "Project-Id-Version: kaddressbook\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-06-22 00:46+\n"
-"PO-Revision-Date: 2022-08-25 16:36+0200\n"
-"Last-Translator: Antoni Bella P??rez \n"
+"PO-Revision-Date: 2022-10-26 08:39+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-

commit kamera for openSUSE:Factory

2022-11-04 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-11-04 17:32:38

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


Package is "kamera"

Fri Nov  4 17:32:38 2022 rev:146 rq:1033230 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kamera/kamera.changes2022-10-15 
16:34:09.661678123 +0200
+++ /work/SRC/openSUSE:Factory/.kamera.new.2275/kamera.changes  2022-11-04 
17:33:43.792427626 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:03 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kamera-22.08.3.tar.xz
  kamera-22.08.3.tar.xz.sig



Other differences:
--
++ kamera.spec ++
--- /var/tmp/diff_new_pack.6bR6S5/_old  2022-11-04 17:33:44.668432158 +0100
+++ /var/tmp/diff_new_pack.6bR6S5/_new  2022-11-04 17:33:44.676432199 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kamera
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Digital camera support for KDE applications
 License:LGPL-2.1-or-later


++ kamera-22.08.2.tar.xz -> kamera-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-22.08.2/CMakeLists.txt 
new/kamera-22.08.3/CMakeLists.txt
--- old/kamera-22.08.2/CMakeLists.txt   2022-10-10 21:56:31.0 +0200
+++ new/kamera-22.08.3/CMakeLists.txt   2022-10-30 21:55:48.0 +0100
@@ -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 "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/org.kde.kamera.metainfo.xml 
new/kamera-22.08.3/org.kde.kamera.metainfo.xml
--- old/kamera-22.08.2/org.kde.kamera.metainfo.xml  2022-10-10 
21:56:31.0 +0200
+++ new/kamera-22.08.3/org.kde.kamera.metainfo.xml  2022-10-30 
21:55:48.0 +0100
@@ -141,9 +141,9 @@
   
   camera-photo
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-22.08.2/po/zh_CN/kcmkamera.po 
new/kamera-22.08.3/po/zh_CN/kcmkamera.po
--- old/kamera-22.08.2/po/zh_CN/kcmkamera.po2022-10-11 06:50:09.0 
+0200
+++ new/kamera-22.08.3/po/zh_CN/kcmkamera.po2022-11-01 01:05:06.0 
+0100
@@ -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-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\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.2/po/zh_CN/kio5_kamera.po 
new/kamera-22.08.3/po/zh_CN/kio5_kamera.po
--- old/kamera-22.08.2/po/zh_CN/kio5_kamera.po  2022-10-11 06:50:09.0 
+0200
+++ new/kamera-22.08.3/po/zh_CN/kio5_kamera.po  2022-11-01 01:05:06.0 
+0100
@@ -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-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kate for openSUSE:Factory

2022-11-04 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-11-04 17:32:38

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


Package is "kate"

Fri Nov  4 17:32:38 2022 rev:150 rq:1033235 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kate/kate.changes2022-10-15 
16:34:11.389682276 +0200
+++ /work/SRC/openSUSE:Factory/.kate.new.2275/kate.changes  2022-11-04 
17:33:45.488436400 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:06 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kate-22.08.3.tar.xz
  kate-22.08.3.tar.xz.sig



Other differences:
--
++ kate.spec ++
--- /var/tmp/diff_new_pack.jIPUjl/_old  2022-11-04 17:33:46.648442401 +0100
+++ /var/tmp/diff_new_pack.jIPUjl/_new  2022-11-04 17:33:46.652442422 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kate
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Advanced Text Editor
 License:GPL-3.0-or-later


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


commit kcalutils for openSUSE:Factory

2022-11-04 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-11-04 17:32:40

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


Package is "kcalutils"

Fri Nov  4 17:32:40 2022 rev:89 rq:1033245 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kcalutils/kcalutils.changes  2022-10-15 
16:34:14.457689649 +0200
+++ /work/SRC/openSUSE:Factory/.kcalutils.new.2275/kcalutils.changes
2022-11-04 17:33:49.036454756 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:12 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kcalutils-22.08.3.tar.xz
  kcalutils-22.08.3.tar.xz.sig



Other differences:
--
++ kcalutils.spec ++
--- /var/tmp/diff_new_pack.3kRX4V/_old  2022-11-04 17:33:50.016459825 +0100
+++ /var/tmp/diff_new_pack.3kRX4V/_new  2022-11-04 17:33:50.016459825 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kcalutils
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Library with utility functions for handling calendar data
 License:LGPL-2.1-or-later


++ kcalutils-22.08.2.tar.xz -> kcalutils-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalutils-22.08.2/CMakeLists.txt 
new/kcalutils-22.08.3/CMakeLists.txt
--- old/kcalutils-22.08.2/CMakeLists.txt2022-09-11 10:03:27.0 
+0200
+++ new/kcalutils-22.08.3/CMakeLists.txt2022-10-14 06:52:52.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.2")
+set(PIM_VERSION "5.21.3")
 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.2")
+set(IDENTITYMANAGER_LIB_VERSION "5.21.3")
 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.2/po/zh_CN/libkcalutils5.po 
new/kcalutils-22.08.3/po/zh_CN/libkcalutils5.po
--- old/kcalutils-22.08.2/po/zh_CN/libkcalutils5.po 2022-10-11 
07:00:56.0 +0200
+++ new/kcalutils-22.08.3/po/zh_CN/libkcalutils5.po 2022-11-01 
01:13:59.0 +0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-07-05 00:45+\n"
-"PO-Revision-Date: 2022-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kcalc for openSUSE:Factory

2022-11-04 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-11-04 17:32:39

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


Package is "kcalc"

Fri Nov  4 17:32:39 2022 rev:138 rq:1033244 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kcalc/kcalc.changes  2022-10-15 
16:34:12.525685006 +0200
+++ /work/SRC/openSUSE:Factory/.kcalc.new.2275/kcalc.changes2022-11-04 
17:33:47.404446313 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:11 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kcalc-22.08.3.tar.xz
  kcalc-22.08.3.tar.xz.sig



Other differences:
--
++ kcalc.spec ++
--- /var/tmp/diff_new_pack.Z5FhWb/_old  2022-11-04 17:33:48.480451879 +0100
+++ /var/tmp/diff_new_pack.Z5FhWb/_new  2022-11-04 17:33:48.484451900 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kcalc
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Scientific Calculator
 License:GPL-2.0-or-later


++ kcalc-22.08.2.tar.xz -> kcalc-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalc-22.08.2/CMakeLists.txt 
new/kcalc-22.08.3/CMakeLists.txt
--- old/kcalc-22.08.2/CMakeLists.txt2022-10-10 22:00:13.0 +0200
+++ new/kcalc-22.08.3/CMakeLists.txt2022-10-30 21:59:09.0 +0100
@@ -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 "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/org.kde.kcalc.appdata.xml 
new/kcalc-22.08.3/org.kde.kcalc.appdata.xml
--- old/kcalc-22.08.2/org.kde.kcalc.appdata.xml 2022-10-10 22:00:13.0 
+0200
+++ new/kcalc-22.08.3/org.kde.kcalc.appdata.xml 2022-10-30 21:59:09.0 
+0100
@@ -25,6 +25,7 @@
   KCalc
   KCalc
   KCalc
+  KCalc
   KCalc
   KCalc
   KCalc
@@ -69,6 +70,7 @@
   Kalkulator Ilmiah
   Calcolatrice scientifica
   
+  ?? 
?
   ? ?
   Wetenschappelijke rekenmachine
   Vitskapleg kalkulator
@@ -155,6 +157,7 @@
   Fungsi trigonometri, operasi logika dan perhitungan 
statistik
   Funzioni trigonometriche, operazioni logiche e calcoli 
statistici
   ??
+  ? 
???,  
?? ??  
??
   , ?? ?? ??? ?? 
???
   Goniometrische functies, logische bewerkingen en 
statistische berekeningen
   Trigonometriske funksjonar, logiske operatorar og 
statistiske utrekningar
@@ -228,6 +231,7 @@
   Presisi dapat ditentukan pengguna
   La precisione ?? definibile dall'utente
   ??
+   
 
     ? ??? 

   Precisie is door de gebruiker te defini??ren
   Talpresisjon kan veljast av brukaren
@@ -265,6 +269,7 @@
   Displai memungkinkan pemotongan dan penempelan 
angka
   Il display permette di copiare e incollare i 
numeri
   
+   
??? ?? ?? ???
   ?? ?  ??? 
??? ??? ??? 
   Het scherm biedt knippen en plakken van getallen
   Kan kopiera og lim inn tal
@@ -382,6 +387,7 @@
   Jendela utama KCalc
   Finestra principale di KCalc
   KCalc ???
+  KCalc-?? ? 
?
   KCalc ??? ???
   Hoofdvenster van KCalc
   Hovudvindaugeet i KC

commit kcolorchooser for openSUSE:Factory

2022-11-04 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-11-04 17:32:42

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


Package is "kcolorchooser"

Fri Nov  4 17:32:42 2022 rev:145 rq:1033247 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kcolorchooser/kcolorchooser.changes  
2022-10-15 16:34:16.837695368 +0200
+++ /work/SRC/openSUSE:Factory/.kcolorchooser.new.2275/kcolorchooser.changes
2022-11-04 17:33:51.812469117 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:13 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kcolorchooser-22.08.3.tar.xz
  kcolorchooser-22.08.3.tar.xz.sig



Other differences:
--
++ kcolorchooser.spec ++
--- /var/tmp/diff_new_pack.hZOKtQ/_old  2022-11-04 17:33:52.428472303 +0100
+++ /var/tmp/diff_new_pack.hZOKtQ/_new  2022-11-04 17:33:52.432472324 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kcolorchooser
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Color Chooser
 License:MIT


++ kcolorchooser-22.08.2.tar.xz -> kcolorchooser-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcolorchooser-22.08.2/CMakeLists.txt 
new/kcolorchooser-22.08.3/CMakeLists.txt
--- old/kcolorchooser-22.08.2/CMakeLists.txt2022-10-10 21:56:50.0 
+0200
+++ new/kcolorchooser-22.08.3/CMakeLists.txt2022-10-30 21:56:09.0 
+0100
@@ -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 "2")
+set(RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/org.kde.kcolorchooser.appdata.xml 
new/kcolorchooser-22.08.3/org.kde.kcolorchooser.appdata.xml
--- old/kcolorchooser-22.08.2/org.kde.kcolorchooser.appdata.xml 2022-10-10 
21:56:50.0 +0200
+++ new/kcolorchooser-22.08.3/org.kde.kcolorchooser.appdata.xml 2022-10-30 
21:56:09.0 +0100
@@ -145,10 +145,10 @@
   
   org.kde.kcolorchooser.desktop
   
+
 
 
 
-
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcolorchooser-22.08.2/po/zh_CN/kcolorchooser.po 
new/kcolorchooser-22.08.3/po/zh_CN/kcolorchooser.po
--- old/kcolorchooser-22.08.2/po/zh_CN/kcolorchooser.po 2022-10-11 
06:50:13.0 +0200
+++ new/kcolorchooser-22.08.3/po/zh_CN/kcolorchooser.po 2022-11-01 
01:05:08.0 +0100
@@ -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-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kcharselect for openSUSE:Factory

2022-11-04 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-11-04 17:32:41

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


Package is "kcharselect"

Fri Nov  4 17:32:41 2022 rev:139 rq:1033246 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kcharselect/kcharselect.changes  2022-10-15 
16:34:15.989693330 +0200
+++ /work/SRC/openSUSE:Factory/.kcharselect.new.2275/kcharselect.changes
2022-11-04 17:33:50.688463301 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:12 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kcharselect-22.08.3.tar.xz
  kcharselect-22.08.3.tar.xz.sig



Other differences:
--
++ kcharselect.spec ++
--- /var/tmp/diff_new_pack.5IVtbM/_old  2022-11-04 17:33:51.372466840 +0100
+++ /var/tmp/diff_new_pack.5IVtbM/_new  2022-11-04 17:33:51.372466840 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kcharselect
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE Character Selector
 License:GPL-2.0-or-later


++ kcharselect-22.08.2.tar.xz -> kcharselect-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcharselect-22.08.2/CMakeLists.txt 
new/kcharselect-22.08.3/CMakeLists.txt
--- old/kcharselect-22.08.2/CMakeLists.txt  2022-10-10 23:27:17.0 
+0200
+++ new/kcharselect-22.08.3/CMakeLists.txt  2022-10-30 21:59:29.0 
+0100
@@ -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 "2")
+set(RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/org.kde.kcharselect.appdata.xml 
new/kcharselect-22.08.3/org.kde.kcharselect.appdata.xml
--- old/kcharselect-22.08.2/org.kde.kcharselect.appdata.xml 2022-10-10 
23:27:17.0 +0200
+++ new/kcharselect-22.08.3/org.kde.kcharselect.appdata.xml 2022-10-30 
21:59:29.0 +0100
@@ -280,9 +280,9 @@
   
   org.kde.kcharselect.desktop
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcharselect-22.08.2/po/zh_CN/kcharselect.po 
new/kcharselect-22.08.3/po/zh_CN/kcharselect.po
--- old/kcharselect-22.08.2/po/zh_CN/kcharselect.po 2022-10-11 
06:51:21.0 +0200
+++ new/kcharselect-22.08.3/po/zh_CN/kcharselect.po 2022-11-01 
01:06:01.0 +0100
@@ -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-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kde-print-manager for openSUSE:Factory

2022-11-04 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-11-04 17:32:43

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"

Fri Nov  4 17:32:43 2022 rev:92 rq:1033250 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kde-print-manager/kde-print-manager.changes  
2022-10-15 16:34:19.521701817 +0200
+++ 
/work/SRC/openSUSE:Factory/.kde-print-manager.new.2275/kde-print-manager.changes
2022-11-04 17:33:52.732473877 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:21:50 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  print-manager-22.08.3.tar.xz
  print-manager-22.08.3.tar.xz.sig



Other differences:
--
++ kde-print-manager.spec ++
--- /var/tmp/diff_new_pack.kieTmu/_old  2022-11-04 17:33:53.592478325 +0100
+++ /var/tmp/diff_new_pack.kieTmu/_new  2022-11-04 17:33:53.596478346 +0100
@@ -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.2
+Version:22.08.3
 Release:0
 Summary:Tools for managing print jobs and printers
 License:GPL-2.0-or-later


++ print-manager-22.08.2.tar.xz -> print-manager-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/print-manager-22.08.2/CMakeLists.txt 
new/print-manager-22.08.3/CMakeLists.txt
--- old/print-manager-22.08.2/CMakeLists.txt2022-10-10 22:03:00.0 
+0200
+++ new/print-manager-22.08.3/CMakeLists.txt2022-10-30 22:01:53.0 
+0100
@@ -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 "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/add-printer/org.kde.kde-add-printer.desktop 
new/print-manager-22.08.3/add-printer/org.kde.kde-add-printer.desktop
--- old/print-manager-22.08.2/add-printer/org.kde.kde-add-printer.desktop   
2022-10-10 22:03:00.0 +0200
+++ new/print-manager-22.08.3/add-printer/org.kde.kde-add-printer.desktop   
2022-10-30 22:01:53.0 +0100
@@ -22,6 +22,7 @@
 Name[id]=Tambahkan Printer
 Name[it]=Aggiungi stampante
 Name[ja]=?
+Name[ka]=??? 
 Name[ko]=? ??
 Name[lt]=Prid??ti spausdintuv??
 Name[nl]=Printer toevoegen
@@ -68,6 +69,7 @@
 Comment[ia]=Instrumento pro adder nove imprimitores
 Comment[id]=Alat untuk menambahkan printer baru
 Comment[it]=Strumento per aggiungere nuove stampanti
+Comment[ka]=??? ? 
? ?
 Comment[ko]=??? ? ?? ??
 Comment[lt]=Nauj?? spausdintuv?? prid??jimo ??rankis
 Comment[nl]=Hulpmiddel voor het toevoegen van nieuwe printers
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/print-manager-22.08.2/configure-printer/org.kde.ConfigurePrinter.desktop 
new/print-manager-22.08.3/configure-printer/org.kde.ConfigurePrinter.desktop
--- 
old/print-manager-22.08.2/configure-printer/org.kde.ConfigurePrinter.desktop
2022-10-10 22:03:00.0 +0200
+++ 
new/print-manager-22.08.3/configure-printer/org.kde.ConfigurePrinter.desktop
2022-10-30 22:01:53.0 +0100
@@ -22,6 +22,7 @@
 Name[id]=Konfigurasi Printer
 Name[it]=Configura stampante
 Name[ja]=?
+Name[ka]=??? ?
 Name[ko]=? ??
 Name[lt]=Konfig??ruoti spausdintuv??
 Name[nl]=Printer instellen
@@ -68,6 +69,7 @@
 Comment[ia]=Configura tu imprimitor
 Comment[id]=Konfigurasi printer Anda
 Comment[it]=Configura la tua stampante
+Comment[ka]=? ?? 
 Comment[ko]=??? ? ??
 Comment[lt]=Konfig??ruoti savo spausdintuv??
 Comment[nl]=Uw printer instellen
diff -urN '--exclude=C

commit kdeconnect-kde for openSUSE:Factory

2022-11-04 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-11-04 17:32:45

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


Package is "kdeconnect-kde"

Fri Nov  4 17:32:45 2022 rev:56 rq:1033252 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kdeconnect-kde/kdeconnect-kde.changes
2022-10-15 16:34:22.493708959 +0200
+++ /work/SRC/openSUSE:Factory/.kdeconnect-kde.new.2275/kdeconnect-kde.changes  
2022-11-04 17:33:54.200481471 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:15 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kdeconnect-kde-22.08.3.tar.xz
  kdeconnect-kde-22.08.3.tar.xz.sig



Other differences:
--
++ kdeconnect-kde.spec ++
--- /var/tmp/diff_new_pack.rjpQKY/_old  2022-11-04 17:33:55.196486624 +0100
+++ /var/tmp/diff_new_pack.rjpQKY/_new  2022-11-04 17:33:55.204486665 +0100
@@ -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.2
+Version:22.08.3
 Release:0
 Summary:Integration of Android with Linux desktops
 License:GPL-2.0-or-later


++ kdeconnect-kde-22.08.2.tar.xz -> kdeconnect-kde-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeconnect-kde-22.08.2/CMakeLists.txt 
new/kdeconnect-kde-22.08.3/CMakeLists.txt
--- old/kdeconnect-kde-22.08.2/CMakeLists.txt   2022-10-10 22:31:42.0 
+0200
+++ new/kdeconnect-kde-22.08.3/CMakeLists.txt   2022-10-30 22:31:41.0 
+0100
@@ -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 "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/app/org.kde.kdeconnect.app.desktop 
new/kdeconnect-kde-22.08.3/app/org.kde.kdeconnect.app.desktop
--- old/kdeconnect-kde-22.08.2/app/org.kde.kdeconnect.app.desktop   
2022-10-10 22:31:42.0 +0200
+++ new/kdeconnect-kde-22.08.3/app/org.kde.kdeconnect.app.desktop   
2022-10-30 22:31:41.0 +0100
@@ -25,6 +25,7 @@
 Name[is]=KDE Connect
 Name[it]=KDE Connect
 Name[ja]=KDE Connect
+Name[ka]=KDE Connect
 Name[ko]=KDE Connect
 Name[lt]=KDE Connect
 Name[ml]=??.??.??? 
@@ -73,6 +74,7 @@
 GenericName[is]=Samstilling t??kja
 GenericName[it]=Sincronizzazione dispositivo
 GenericName[ja]=??
+GenericName[ka]= 
???
 GenericName[ko]=?? ?
 GenericName[lt]=??rengini?? sinchronizavimas
 GenericName[nl]=Synchronisatie van apparaat
@@ -120,6 +122,7 @@
 Comment[is]=Ger??u ??ll t??kin n a?? einu
 Comment[it]=Unisce tutti i tuoi dispositivi
 Comment[ja]=???
+Comment[ka]=??? ?? 
 ?
 Comment[ko]=?? ? ? ?
 Comment[lt]=Paverskite visus savo ??renginius vienu
 Comment[nl]=Al uw apparaten een maken
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeconnect-kde-22.08.2/daemon/org.kde.kdeconnect.daemon.desktop.cmake 
new/kdeconnect-kde-22.08.3/daemon/org.kde.kdeconnect.daemon.desktop.cmake
--- old/kdeconnect-kde-22.08.2/daemon/org.kde.kdeconnect.daemon.desktop.cmake   
2022-10-10 22:31:42.0 +0200
+++ new/kdeconnect-kde-22.08.3/daemon/org.kde.kdeconnect.daemon.desktop.cmake   
2022-10-30 22:31:41.0 +0100
@@ -34,6 +34,7 @@
 Name[is]=KDE Connect
 Name[it]=KDE Connect
 Name[ja]=KDE Connect
+Name[ka]=KDE Connect
 Name[ko]=KDE Connect
 Name[lt]=KDE Connect
 Name[ml]=??.??.??? 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeconnect-kde-22.08.2/data/kdeconnect-dde.desktop 
new/kdeconnect-kde-22.0

commit kdepim-runtime for openSUSE:Factory

2022-11-04 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-11-04 17:32:47

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


Package is "kdepim-runtime"

Fri Nov  4 17:32:47 2022 rev:98 rq:1033258 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kdepim-runtime/kdepim-runtime.changes
2022-10-15 16:34:27.849721830 +0200
+++ /work/SRC/openSUSE:Factory/.kdepim-runtime.new.2275/kdepim-runtime.changes  
2022-11-04 17:33:59.612509469 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:20 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kdepim-runtime-22.08.3.tar.xz
  kdepim-runtime-22.08.3.tar.xz.sig



Other differences:
--
++ kdepim-runtime.spec ++
--- /var/tmp/diff_new_pack.JzX3a2/_old  2022-11-04 17:34:00.252512781 +0100
+++ /var/tmp/diff_new_pack.JzX3a2/_new  2022-11-04 17:34:00.260512822 +0100
@@ -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.2
+Version:22.08.3
 Release:0
 Summary:Akonadi resources for PIM applications
 License:GPL-2.0-or-later AND GPL-3.0-or-later


++ kdepim-runtime-22.08.2.tar.xz -> kdepim-runtime-22.08.3.tar.xz ++
 2061 lines of diff (skipped)


commit kdialog for openSUSE:Factory

2022-11-04 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-11-04 17:32:48

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


Package is "kdialog"

Fri Nov  4 17:32:48 2022 rev:72 rq:1033266 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kdialog/kdialog.changes  2022-10-15 
16:34:29.509725819 +0200
+++ /work/SRC/openSUSE:Factory/.kdialog.new.2275/kdialog.changes
2022-11-04 17:34:01.832520955 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:25 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kdialog-22.08.3.tar.xz
  kdialog-22.08.3.tar.xz.sig



Other differences:
--
++ kdialog.spec ++
--- /var/tmp/diff_new_pack.yPWgPw/_old  2022-11-04 17:34:02.444524121 +0100
+++ /var/tmp/diff_new_pack.yPWgPw/_new  2022-11-04 17:34:02.452524163 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kdialog
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE version of xdialog
 License:GPL-2.0-or-later


++ kdialog-22.08.2.tar.xz -> kdialog-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdialog-22.08.2/CMakeLists.txt 
new/kdialog-22.08.3/CMakeLists.txt
--- old/kdialog-22.08.2/CMakeLists.txt  2022-10-10 21:45:17.0 +0200
+++ new/kdialog-22.08.3/CMakeLists.txt  2022-10-30 21:45:02.0 +0100
@@ -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 "2")
+set(RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/org.kde.kdialog.metainfo.xml 
new/kdialog-22.08.3/org.kde.kdialog.metainfo.xml
--- old/kdialog-22.08.2/org.kde.kdialog.metainfo.xml2022-10-10 
21:45:17.0 +0200
+++ new/kdialog-22.08.3/org.kde.kdialog.metainfo.xml2022-10-30 
21:45:02.0 +0100
@@ -23,6 +23,7 @@
   KDialog
   KDialog
   KDialog
+  KDialog
   KDialog
   KDialog
   KDialog
@@ -58,6 +59,7 @@
   Monstra quadratos de dialogo ex scripts de 
shell
   Displai kotak dialog dari skrip shell
   Visualizza finestre di dialogo da script di 
shell
+   
??? ?
   ??? ?? ?? ?? ??
   Dialoogvensters uit shell-scripts
   Vis dialogvindauge fr?? kommandolinjeskript
@@ -134,9 +136,9 @@
 Utility
   
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdialog-22.08.2/po/zh_CN/kdialog.po 
new/kdialog-22.08.3/po/zh_CN/kdialog.po
--- old/kdialog-22.08.2/po/zh_CN/kdialog.po 2022-10-11 06:45:29.0 
+0200
+++ new/kdialog-22.08.3/po/zh_CN/kdialog.po 2022-11-01 01:00:42.0 
+0100
@@ -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-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:50\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kdepim-addons for openSUSE:Factory

2022-11-04 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-11-04 17:32:45

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


Package is "kdepim-addons"

Fri Nov  4 17:32:45 2022 rev:84 rq:1033257 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kdepim-addons/kdepim-addons.changes  
2022-10-15 16:34:24.417713583 +0200
+++ /work/SRC/openSUSE:Factory/.kdepim-addons.new.2275/kdepim-addons.changes
2022-11-04 17:33:56.852495191 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:20 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kdepim-addons-22.08.3.tar.xz
  kdepim-addons-22.08.3.tar.xz.sig



Other differences:
--
++ kdepim-addons.spec ++
--- /var/tmp/diff_new_pack.5ZBieT/_old  2022-11-04 17:33:57.504498564 +0100
+++ /var/tmp/diff_new_pack.5ZBieT/_new  2022-11-04 17:33:57.516498626 +0100
@@ -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.2
+Version:22.08.3
 Release:0
 Summary:Addons for KDE PIM applications
 License:GPL-2.0-only


++ kdepim-addons-22.08.2.tar.xz -> kdepim-addons-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdepim-addons-22.08.2/CMakeLists.txt 
new/kdepim-addons-22.08.3/CMakeLists.txt
--- old/kdepim-addons-22.08.2/CMakeLists.txt2022-10-11 05:03:07.0 
+0200
+++ new/kdepim-addons-22.08.3/CMakeLists.txt2022-10-14 06:53: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.2")
+set(PIM_VERSION "5.21.3")
 
 project(kdepim-addons VERSION ${PIM_VERSION})
 
@@ -71,31 +71,31 @@
 find_package(KF5Holidays ${KF5_MIN_VERSION} CONFIG REQUIRED)
 find_package(KF5GuiAddons ${KF5_MIN_VERSION} CONFIG REQUIRED)
 
-set(MAILCOMMON_LIB_VERSION "5.21.2")
-set(GRAVATAR_LIB_VERSION "5.21.2")
-set(PIMCOMMON_LIB_VERSION "5.21.2")
-set(GRANTLEETHEME_LIB_VERSION "5.21.2")
-set(CALENDARSUPPORT_LIB_VERSION "5.21.2")
-set(EVENTVIEW_LIB_VERSION "5.21.2")
-set(LIBKDEPIM_LIB_VERSION "5.21.2")
-set(KADDRESSBOOK_IMPORTEXPORT_LIB_VERSION "5.21.2")
-set(LIBKLEO_LIB_VERSION "5.21.2")
-set(AKONADI_LIB_VERSION "5.21.2")
-set(INCIDENCEEDITOR_LIB_VERSION "5.21.2")
-set(KTNEF_LIB_VERSION "5.21.2")
-set(MESSAGELIB_LIB_VERSION "5.21.2")
-set(AKONADICALENDAR_LIB_VERSION "5.21.2")
-set(CALENDAR_UTILS_VERSION "5.21.2")
-set(KPIMTEXTEDIT_LIB_VERSION "5.21.2")
-set(KIMAP_LIB_VERSION "5.21.2")
-set(LIBKSIEVE_LIB_VERSION "5.21.2")
-set(KMAILTRANSPORT_LIB_VERSION "5.21.2")
-set(AKONADICONTACT_LIB_VERSION "5.21.2")
-set(IMPORTWIZARD_LIB_VERSION "5.21.2")
-set(MAILIMPORTER_LIB_VERSION "5.21.2")
-set(KPIMPKPASS_LIB_VERSION "5.21.2")
-set(KPIMITINERARY_LIB_VERSION "5.21.2")
-set(AKONADINOTES_LIB_VERSION "5.21.2")
+set(MAILCOMMON_LIB_VERSION "5.21.3")
+set(GRAVATAR_LIB_VERSION "5.21.3")
+set(PIMCOMMON_LIB_VERSION "5.21.3")
+set(GRANTLEETHEME_LIB_VERSION "5.21.3")
+set(CALENDARSUPPORT_LIB_VERSION "5.21.3")
+set(EVENTVIEW_LIB_VERSION "5.21.3")
+set(LIBKDEPIM_LIB_VERSION "5.21.3")
+set(KADDRESSBOOK_IMPORTEXPORT_LIB_VERSION "5.21.3")
+set(LIBKLEO_LIB_VERSION "5.21.3")
+set(AKONADI_LIB_VERSION "5.21.3")
+set(INCIDENCEEDITOR_LIB_VERSION "5.21.3")
+set(KTNEF_LIB_VERSION "5.21.3")
+set(MESSAGELIB_LIB_VERSION "5.21.3")
+set(AKONADICALENDAR_LIB_VERSION "5.21.3")
+set(CALENDAR_UTILS_VERSION "5.21.3")
+set(KPIMTEXTEDIT_LIB_VERSION "5.21.3")
+set(KIMAP_LIB_VERSION "5.21.3")
+set(LIBKSIEVE_LIB_VERSION "5.21.3")
+set(KMAILTRANSPORT_LIB_VERSION "5.21.3")
+set(AKONADICONTACT_LIB_VERSION "5.21.3")
+set(IMPORTWIZARD_LIB_VERSION "5.21.3")
+set(MAILIMPORTER_LIB_VERSION "5.21.3")
+set(KPIMPKPASS_LIB_VERSION "5.21.3")
+set(KPIMITINERARY_LIB_VERSION "5.21.3")
+set(AKONADINOTES_LIB_VERSION "5.21.3")
 find_package(KF5AkonadiNotes ${AKONADINOTES_LIB_VERSION} CONFIG REQUIRED)
 find_package(KF5CalendarCore ${KF5_MIN_VERSION} CONFIG REQUIRED)
 find_package(KF5CalendarUtils ${CALENDAR_UTILS_VERSION} CONFIG REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdepim-addons-22.08.2/po/ca/korganizer_plugins.po 
new/kdepim-addons-22.08.3/po/ca/korganizer_plugins.po
--- ol

commit khelpcenter5 for openSUSE:Factory

2022-11-04 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-11-04 17:32:49

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


Package is "khelpcenter5"

Fri Nov  4 17:32:49 2022 rev:94 rq:1033278 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/khelpcenter5/khelpcenter5.changes
2022-10-15 16:34:31.721731135 +0200
+++ /work/SRC/openSUSE:Factory/.khelpcenter5.new.2275/khelpcenter5.changes  
2022-11-04 17:34:05.468539766 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:31 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  khelpcenter-22.08.3.tar.xz
  khelpcenter-22.08.3.tar.xz.sig



Other differences:
--
++ khelpcenter5.spec ++
--- /var/tmp/diff_new_pack.Etbk5e/_old  2022-11-04 17:34:06.112543097 +0100
+++ /var/tmp/diff_new_pack.Etbk5e/_new  2022-11-04 17:34:06.120543139 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   khelpcenter5
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE Documentation Application
 License:GPL-2.0-or-later


++ khelpcenter-22.08.2.tar.xz -> khelpcenter-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khelpcenter-22.08.2/CMakeLists.txt 
new/khelpcenter-22.08.3/CMakeLists.txt
--- old/khelpcenter-22.08.2/CMakeLists.txt  2022-10-10 21:46:57.0 
+0200
+++ new/khelpcenter-22.08.3/CMakeLists.txt  2022-10-30 21:46:23.0 
+0100
@@ -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 "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 set (RELEASE_SERVICE_COMPACT_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}${RELEASE_SERVICE_VERSION_MINOR}${RELEASE_SERVICE_VERSION_MICRO}")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khelpcenter-22.08.2/org.kde.khelpcenter.metainfo.xml 
new/khelpcenter-22.08.3/org.kde.khelpcenter.metainfo.xml
--- old/khelpcenter-22.08.2/org.kde.khelpcenter.metainfo.xml2022-10-10 
21:46:57.0 +0200
+++ new/khelpcenter-22.08.3/org.kde.khelpcenter.metainfo.xml2022-10-30 
21:46:23.0 +0100
@@ -324,9 +324,9 @@
   
   org.kde.khelpcenter.desktop
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khelpcenter-22.08.2/plugins/kicmodules.desktop 
new/khelpcenter-22.08.3/plugins/kicmodules.desktop
--- old/khelpcenter-22.08.2/plugins/kicmodules.desktop  2022-10-10 
21:46:57.0 +0200
+++ new/khelpcenter-22.08.3/plugins/kicmodules.desktop  2022-10-30 
21:46:23.0 +0100
@@ -11,7 +11,7 @@
 Name[br]=Mollado?? KInfoCenter
 Name[bs]=Moduli K???infocentra
 Name[ca]=M??duls del KInfoCenter
-Name[ca@valencia]=M??duls del KInfoCenter
+Name[ca@valencia]=M??duls de KInfoCenter
 Name[cs]=Moduly Informa??n??ho centra
 Name[csb]=W??dowi??dn?? m??du centr??m k??ntrol??
 Name[cy]=Modiwlau KInfoCenter
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khelpcenter-22.08.2/plugins/kioworkers.desktop 
new/khelpcenter-22.08.3/plugins/kioworkers.desktop
--- old/khelpcenter-22.08.2/plugins/kioworkers.desktop  2022-10-10 
21:46:57.0 +0200
+++ new/khelpcenter-22.08.3/plugins/kioworkers.desktop  2022-10-30 
21:46:23.0 +0100
@@ -23,6 +23,7 @@
 Name[nn]=KIO-arbeidarar
 Name[pl]=Pracownicy KIO
 Name[pt]=M??dulos do KIO
+Name[pt_BR]=KIO workers
 Name[ru]= KIO
 Name[sk]=KIO pracovn??ci
 Name[sl]=KIO Workers
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/khelpcenter-22.08.2/po/ca@valencia/docs/fundamentals/tasks.docbook 
new/khelpcenter-22.08.3/po/ca@valencia/docs/fundamentals/tasks.docbook
--- old/khelpcenter-22.08.2/po/ca@valencia/docs/fundamentals/tasks.docbook  
2022-10-11 06:46:04.0 +0200
+++ new/khelpcenter-22.08.3/po/ca@valencia/docs/fundamentals/tasks.docbook  
2022-11-01 01:01:18.0 +0100
@@ -1227,7 +1227,7 @@
 >F. Despr??s, en 

commit kidentitymanagement for openSUSE:Factory

2022-11-04 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-11-04 17:32:51

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


Package is "kidentitymanagement"

Fri Nov  4 17:32:51 2022 rev:86 rq:1033280 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kidentitymanagement/kidentitymanagement.changes  
2022-10-15 16:34:33.893736355 +0200
+++ 
/work/SRC/openSUSE:Factory/.kidentitymanagement.new.2275/kidentitymanagement.changes
2022-11-04 17:34:07.624550920 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:32 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kidentitymanagement-22.08.3.tar.xz
  kidentitymanagement-22.08.3.tar.xz.sig



Other differences:
--
++ kidentitymanagement.spec ++
--- /var/tmp/diff_new_pack.cFH3XZ/_old  2022-11-04 17:34:08.240554106 +0100
+++ /var/tmp/diff_new_pack.cFH3XZ/_new  2022-11-04 17:34:08.248554148 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kidentitymanagement
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE PIM Libraries: Identity Management
 License:LGPL-2.1-or-later


++ kidentitymanagement-22.08.2.tar.xz -> kidentitymanagement-22.08.3.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kidentitymanagement-22.08.2/CMakeLists.txt 
new/kidentitymanagement-22.08.3/CMakeLists.txt
--- old/kidentitymanagement-22.08.2/CMakeLists.txt  2022-09-11 
10:03:58.0 +0200
+++ new/kidentitymanagement-22.08.3/CMakeLists.txt  2022-10-14 
06:53:24.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.2")
+set(PIM_VERSION "5.21.3")
 
 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.2")
+set(PIMTEXTEDIT_LIB_VERSION "5.21.3")
 
 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.2/po/zh_CN/libkpimidentities5.po 
new/kidentitymanagement-22.08.3/po/zh_CN/libkpimidentities5.po
--- old/kidentitymanagement-22.08.2/po/zh_CN/libkpimidentities5.po  
2022-10-11 07:01:00.0 +0200
+++ new/kidentitymanagement-22.08.3/po/zh_CN/libkpimidentities5.po  
2022-11-01 01:14:02.0 +0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-05-05 00:46+\n"
-"PO-Revision-Date: 2022-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kimap for openSUSE:Factory

2022-11-04 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-11-04 17:32:52

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


Package is "kimap"

Fri Nov  4 17:32:52 2022 rev:88 rq:1033285 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kimap/kimap.changes  2022-10-15 
16:34:35.833741017 +0200
+++ /work/SRC/openSUSE:Factory/.kimap.new.2275/kimap.changes2022-11-04 
17:34:08.668556320 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:35 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kimap-22.08.3.tar.xz
  kimap-22.08.3.tar.xz.sig



Other differences:
--
++ kimap.spec ++
--- /var/tmp/diff_new_pack.ucs2HQ/_old  2022-11-04 17:34:09.312559652 +0100
+++ /var/tmp/diff_new_pack.ucs2HQ/_new  2022-11-04 17:34:09.316559673 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kimap
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE PIM Libraries: IMAP library
 License:LGPL-2.1-or-later


++ kimap-22.08.2.tar.xz -> kimap-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimap-22.08.2/CMakeLists.txt 
new/kimap-22.08.3/CMakeLists.txt
--- old/kimap-22.08.2/CMakeLists.txt2022-09-11 10:04:10.0 +0200
+++ new/kimap-22.08.3/CMakeLists.txt2022-10-14 06:53:34.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.2")
+set(PIM_VERSION "5.21.3")
 
 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.2")
+set(KMIME_LIBS_VERSION "5.21.3")
 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.2/po/zh_CN/libkimap5.po 
new/kimap-22.08.3/po/zh_CN/libkimap5.po
--- old/kimap-22.08.2/po/zh_CN/libkimap5.po 2022-10-11 07:01:04.0 
+0200
+++ new/kimap-22.08.3/po/zh_CN/libkimap5.po 2022-11-01 01:14:05.0 
+0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-05-11 00:45+\n"
-"PO-Revision-Date: 2022-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kio-extras5 for openSUSE:Factory

2022-11-04 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-11-04 17:32:54

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


Package is "kio-extras5"

Fri Nov  4 17:32:54 2022 rev:116 rq:1033286 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kio-extras5/kio-extras5.changes  2022-10-15 
16:34:36.673743035 +0200
+++ /work/SRC/openSUSE:Factory/.kio-extras5.new.2275/kio-extras5.changes
2022-11-04 17:34:10.344564991 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:35 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kio-extras-22.08.3.tar.xz
  kio-extras-22.08.3.tar.xz.sig



Other differences:
--
++ kio-extras5.spec ++
--- /var/tmp/diff_new_pack.of5OLB/_old  2022-11-04 17:34:11.052568654 +0100
+++ /var/tmp/diff_new_pack.of5OLB/_new  2022-11-04 17:34:11.060568695 +0100
@@ -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.2
+Version:22.08.3
 Release:0
 Summary:Additional KIO slaves for KDE applications
 License:GPL-2.0-or-later


++ kio-extras-22.08.2.tar.xz -> kio-extras-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-22.08.2/CMakeLists.txt 
new/kio-extras-22.08.3/CMakeLists.txt
--- old/kio-extras-22.08.2/CMakeLists.txt   2022-10-10 21:38:37.0 
+0200
+++ new/kio-extras-22.08.3/CMakeLists.txt   2022-10-30 21:42:45.0 
+0100
@@ -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 "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/po/ca@valencia/kio5_bookmarks.po 
new/kio-extras-22.08.3/po/ca@valencia/kio5_bookmarks.po
--- old/kio-extras-22.08.2/po/ca@valencia/kio5_bookmarks.po 2022-10-11 
06:59:00.0 +0200
+++ new/kio-extras-22.08.3/po/ca@valencia/kio5_bookmarks.po 2022-11-01 
01:12:18.0 +0100
@@ -48,7 +48,7 @@
 #: kio_bookmarks_html.cpp:85
 #, kde-format
 msgid "There are no bookmarks to display yet."
-msgstr "Encara no hi ha adreces d'inter??s a mostrar."
+msgstr "Encara no hi ha adreces d'inter??s que s'hagen de mostrar."
 
 #: kio_bookmarks_html.cpp:124
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-22.08.2/po/fr/kio5_fish.po 
new/kio-extras-22.08.3/po/fr/kio5_fish.po
--- old/kio-extras-22.08.2/po/fr/kio5_fish.po   2022-10-11 06:59:00.0 
+0200
+++ new/kio-extras-22.08.3/po/fr/kio5_fish.po   2022-11-01 01:12:19.0 
+0100
@@ -4,6 +4,7 @@
 # Matthieu Robin , 2003, 2004.
 # aminesay , 2007.
 # xavier , 2013.
+# Xavier Besnard , 2022.
 #
 msgid ""
 msgstr ""
@@ -12,13 +13,13 @@
 "POT-Creation-Date: 2022-07-04 00:45+\n"
 "PO-Revision-Date: 2013-04-09 14:17+0200\n"
 "Last-Translator: xavier \n"
-"Language-Team: French \n"
+"Language-Team: French \n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 22.08.2\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-22.08.2/po/nn/kio5_fish.po 
new/kio-extras-22.08.3/po/nn/kio5_fish.po
--- old/kio-extras-22.08.2/po/nn/kio5_fish.po   2022-10-11 06:59:01.0 
+0200
+++ new/kio-extras-22.08.3/po/nn/kio5_fish.po   2022-11-01 01:12:19.0 
+0100
@@ -1,7 +1,7 @@
 # Translation of kio5_fish to Norwegian Nynorsk
 #
 # Gaute Hvoslef Kvalnes , 2003, 2004.
-# Karl Ove Hufthammer , 2007, 2008, 2015.
+# Karl Ove Hufthammer , 2007, 2008, 2015, 2022.
 # Eirik U. Birkeland , 2009.
 msgid ""
 msgstr ""
@@ -15,7 +15,7 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content

commit kio_audiocd for openSUSE:Factory

2022-11-04 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-11-04 17:32:54

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


Package is "kio_audiocd"

Fri Nov  4 17:32:54 2022 rev:130 rq:1033288 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kio_audiocd/kio_audiocd.changes  2022-10-15 
16:34:38.665747822 +0200
+++ /work/SRC/openSUSE:Factory/.kio_audiocd.new.2275/kio_audiocd.changes
2022-11-04 17:34:12.252574862 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:19:44 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  audiocd-kio-22.08.3.tar.xz
  audiocd-kio-22.08.3.tar.xz.sig



Other differences:
--
++ kio_audiocd.spec ++
--- /var/tmp/diff_new_pack.WJFPUP/_old  2022-11-04 17:34:12.984578649 +0100
+++ /var/tmp/diff_new_pack.WJFPUP/_new  2022-11-04 17:34:12.988578669 +0100
@@ -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.2
+Version:22.08.3
 Release:0
 Summary:KDE I/O Slave for Audio CDs
 License:GPL-2.0-or-later


++ audiocd-kio-22.08.2.tar.xz -> audiocd-kio-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/audiocd-kio-22.08.2/data/audiocd.desktop 
new/audiocd-kio-22.08.3/data/audiocd.desktop
--- old/audiocd-kio-22.08.2/data/audiocd.desktop2022-10-10 
22:04:48.0 +0200
+++ new/audiocd-kio-22.08.3/data/audiocd.desktop2022-10-30 
22:03:37.0 +0100
@@ -28,6 +28,7 @@
 Name[is]=T??nlistardiskaflakkari
 Name[it]=Browser di CD Audio
 Name[ja]=??? CD 
+Name[ka]=Audio CD -?? 
 Name[kk]=?? CD ??
 
Name[km]=
 Name[ko]=? CD ?
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/audiocd-kio-22.08.2/data/org.kde.kio_audiocd.metainfo.xml 
new/audiocd-kio-22.08.3/data/org.kde.kio_audiocd.metainfo.xml
--- old/audiocd-kio-22.08.2/data/org.kde.kio_audiocd.metainfo.xml   
2022-10-10 22:04:48.0 +0200
+++ new/audiocd-kio-22.08.3/data/org.kde.kio_audiocd.metainfo.xml   
2022-10-30 22:03:37.0 +0100
@@ -26,6 +26,7 @@
   KIO AudioCD
   KIO AudioCD
   KIO CD audio
+  KIO AudioCD
   KIO ? CD
   KIO AudioCD
   KIO AudioCD
@@ -61,6 +62,7 @@
   Integration transparente de audio CDs con KDE Plasma 
e applicationes de KDE con capacitates de conversion de datos
   CD audio yang terintegrasi transparan dengan Plasma 
KDE dan aplikasi KDE
   Integrazione trasparente con KDE Plasma e le 
applicazioni di KDE dei CD audio con capacit?? di conversione dei dati
+  AudioCD- 
? ?? KDE 
Plasma- ?? KDE-?? ??? 
? ?? 
?
   KDE Plasma ??? KDE ??? ? CD 
?? ??? ? ?? ??
   Transparante integratie van audio cd's met KDE Plasma 
en KDE applications met mogelijkheden om gegevensconversie te doen
   Direkte integrering av lyd-CD-ar med KDE Plasma og 
KDE-programma, med moglegheit formatkonvertering
@@ -92,11 +94,13 @@
 KIO AudioCD est un module d'entr??es??/ sorties 
permettant aux applications compatibles kio (comme Dolphin ou k3b) 
d'acc??der aux donn??es audio et texte des disques compacts (CD) audio. Ce 
module permet de convertir les donn??es audio dans de nombreux formats 
populaires ?? l'aide d'une op??ration de glisser-d??poser. Il dispose d'un 
module dans la section Multim??dia de la Configuration du syst??me.
 KIO AudioCD es un travaliator (worker) KIO que habilita 
applicationes conscie de KIO (tal como Dolphin o K3b) a acceder a datos audio e 
de texto de CD sur discos de compacte audio. Illo permitte conversion 
transparente de traher e  deponer de datos audio in le formatos popular e ha un 
modulo de Preferentias de Systema de configuration  disponibile in le section 
"Multipedia"
 KIO AudioCD ?? un KIO worker che consente alle 
applicazioni che gestiscono KIO (

commit kitinerary for openSUSE:Factory

2022-11-04 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-11-04 17:32:55

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


Package is "kitinerary"

Fri Nov  4 17:32:55 2022 rev:55 rq:1033293 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kitinerary/kitinerary.changes2022-10-15 
16:34:39.837750638 +0200
+++ /work/SRC/openSUSE:Factory/.kitinerary.new.2275/kitinerary.changes  
2022-11-04 17:34:14.564586823 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:40 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kitinerary-22.08.3.tar.xz
  kitinerary-22.08.3.tar.xz.sig



Other differences:
--
++ kitinerary.spec ++
--- /var/tmp/diff_new_pack.7Qtsan/_old  2022-11-04 17:34:15.532591830 +0100
+++ /var/tmp/diff_new_pack.7Qtsan/_new  2022-11-04 17:34:15.556591955 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without released
 Name:   kitinerary
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Data model and extraction system for travel reservations
 License:LGPL-2.1-or-later


++ kitinerary-22.08.2.tar.xz -> kitinerary-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitinerary-22.08.2/CMakeLists.txt 
new/kitinerary-22.08.3/CMakeLists.txt
--- old/kitinerary-22.08.2/CMakeLists.txt   2022-10-10 22:29:22.0 
+0200
+++ new/kitinerary-22.08.3/CMakeLists.txt   2022-10-30 22:29:24.0 
+0100
@@ -3,7 +3,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.2")
+set(PIM_VERSION "5.21.3")
 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.2")
-set(PIM_PKPASS "5.21.2")
+set(KMIME_VERSION "5.21.3")
+set(PIM_PKPASS "5.21.3")
 
 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.2/po/ru/kitinerary.po 
new/kitinerary-22.08.3/po/ru/kitinerary.po
--- old/kitinerary-22.08.2/po/ru/kitinerary.po  2022-10-11 07:04:57.0 
+0200
+++ new/kitinerary-22.08.3/po/ru/kitinerary.po  2022-11-01 01:17:15.0 
+0100
@@ -3,26 +3,25 @@
 #
 # Alexander Potashev , 2018.
 # Alexander Yavorsky , 2021.
+# Olesya Gerasimenko , 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-07-03 00:47+\n"
-"PO-Revision-Date: 2021-05-30 10:05+0300\n"
-"Last-Translator: Alexander Yavorsky \n"
-"Language-Team: Russian \n"
+"PO-Revision-Date: 2022-10-11 11:08+0300\n"
+"Last-Translator: Olesya Gerasimenko \n"
+"Language-Team: Basealt Translation Team\n"
 "Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=4; plural=n==1 ? 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 21.04.1\n"
+"X-Generator: Lokalize 22.04.3\n"
 
 #: calendarhandler.cpp:156
-#, fuzzy, kde-format
-#| msgctxt "canceled train/flight/loding reservation"
-#| msgid "Canceled: %1"
+#, kde-format
 msgctxt "canceled train/flight/loading reservation"
 msgid "Canceled: %1"
 msgstr ": %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kitinerary-22.08.2/po/zh_CN/kitinerary.po 
new/kitinerary-22.08.3/po/zh_CN/kitinerary.po
--- old/kitinerary-22.08.2/po/zh_CN/kitinerary.po   2022-10-11 
07:04:57.0 +0200
+++ new/kitinerary-22.08.3/po/zh_CN/kitinerary.po   2022-11-01 
01:17:15.0 +0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-07-03 00:47+\n"
-"PO-Revision-Date: 2022-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kitinerary-22.08.2/src/cli/org.kde.kitinerary-extractor.appdata.xml 
new/kitinerary-22.08.3/src/cli/org.kde.kitinerary-extractor.appdata.xml
--- old

commit kldap for openSUSE:Factory

2022-11-04 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-11-04 17:32:57

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


Package is "kldap"

Fri Nov  4 17:32:57 2022 rev:88 rq:1033295 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kldap/kldap.changes  2022-10-15 
16:34:41.413754426 +0200
+++ /work/SRC/openSUSE:Factory/.kldap.new.2275/kldap.changes2022-11-04 
17:34:17.256600750 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:41 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kldap-22.08.3.tar.xz
  kldap-22.08.3.tar.xz.sig



Other differences:
--
++ kldap.spec ++
--- /var/tmp/diff_new_pack.2CUMM3/_old  2022-11-04 17:34:17.836603751 +0100
+++ /var/tmp/diff_new_pack.2CUMM3/_new  2022-11-04 17:34:17.840603771 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kldap
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE PIM Libraries
 License:LGPL-2.1-or-later


++ kldap-22.08.2.tar.xz -> kldap-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kldap-22.08.2/CMakeLists.txt 
new/kldap-22.08.3/CMakeLists.txt
--- old/kldap-22.08.2/CMakeLists.txt2022-09-08 19:38:54.0 +0200
+++ new/kldap-22.08.3/CMakeLists.txt2022-10-13 13:43:07.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.2")
+set(PIM_VERSION "5.21.3")
 
 project(KLdap VERSION ${PIM_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kldap-22.08.2/po/ca@valencia/libkldap5.po 
new/kldap-22.08.3/po/ca@valencia/libkldap5.po
--- old/kldap-22.08.2/po/ca@valencia/libkldap5.po   2022-10-11 
07:01:07.0 +0200
+++ new/kldap-22.08.3/po/ca@valencia/libkldap5.po   2022-11-01 
01:14:07.0 +0100
@@ -112,7 +112,7 @@
 msgid ""
 "LDAP password is stored as clear text, do you want to store it in kwallet?"
 msgstr ""
-"La contrasenya LDAP s'emmagatzema com a text, voleu guardar-la a KWallet?"
+"La contrasenya LDAP s'emmagatzema com a text, voleu guardar-la en KWallet?"
 
 #: widgets/ldapclientsearchconfigreadconfigjob.cpp:113
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kldap-22.08.2/po/zh_CN/kio_ldap.po 
new/kldap-22.08.3/po/zh_CN/kio_ldap.po
--- old/kldap-22.08.2/po/zh_CN/kio_ldap.po  2022-10-11 07:01:08.0 
+0200
+++ new/kldap-22.08.3/po/zh_CN/kio_ldap.po  2022-11-01 01:14:07.0 
+0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-07-04 00:46+\n"
-"PO-Revision-Date: 2022-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kldap-22.08.2/po/zh_CN/libkldap5.po 
new/kldap-22.08.3/po/zh_CN/libkldap5.po
--- old/kldap-22.08.2/po/zh_CN/libkldap5.po 2022-10-11 07:01:08.0 
+0200
+++ new/kldap-22.08.3/po/zh_CN/libkldap5.po 2022-11-01 01:14:07.0 
+0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-01-11 00:44+\n"
-"PO-Revision-Date: 2022-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kmag for openSUSE:Factory

2022-11-04 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-11-04 17:32:59

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


Package is "kmag"

Fri Nov  4 17:32:59 2022 rev:133 rq:1033300 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kmag/kmag.changes2022-10-15 
16:34:44.645762193 +0200
+++ /work/SRC/openSUSE:Factory/.kmag.new.2275/kmag.changes  2022-11-04 
17:34:21.116620719 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:44 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kmag-22.08.3.tar.xz
  kmag-22.08.3.tar.xz.sig



Other differences:
--
++ kmag.spec ++
--- /var/tmp/diff_new_pack.OHqhsj/_old  2022-11-04 17:34:21.728623885 +0100
+++ /var/tmp/diff_new_pack.OHqhsj/_new  2022-11-04 17:34:21.732623906 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kmag
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Screen Magnifier
 License:GPL-2.0-only


++ kmag-22.08.2.tar.xz -> kmag-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmag-22.08.2/CMakeLists.txt 
new/kmag-22.08.3/CMakeLists.txt
--- old/kmag-22.08.2/CMakeLists.txt 2022-10-10 22:03:41.0 +0200
+++ new/kmag-22.08.3/CMakeLists.txt 2022-10-30 22:02:33.0 +0100
@@ -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 "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/po/zh_CN/kmag.po 
new/kmag-22.08.3/po/zh_CN/kmag.po
--- old/kmag-22.08.2/po/zh_CN/kmag.po   2022-10-11 06:51:58.0 +0200
+++ new/kmag-22.08.3/po/zh_CN/kmag.po   2022-11-01 01:06:28.0 +0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-01-02 00:39+\n"
-"PO-Revision-Date: 2022-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmag-22.08.2/src/org.kde.kmag.appdata.xml 
new/kmag-22.08.3/src/org.kde.kmag.appdata.xml
--- old/kmag-22.08.2/src/org.kde.kmag.appdata.xml   2022-10-10 
22:03:41.0 +0200
+++ new/kmag-22.08.3/src/org.kde.kmag.appdata.xml   2022-10-30 
22:02:33.0 +0100
@@ -24,6 +24,7 @@
   KMag
   KMag
   KMag
+  KMag
   KMag
   KMag
   KMag
@@ -62,6 +63,7 @@
   Memperbesar Layar
   Skj??st??kkari
   Lente d'ingrandimento
+  ? 

   ?? ?
   Schermvergroter
   Skjermforst??rrar
@@ -146,6 +148,7 @@
   KMag beraksi
   KMag a?? verki
   KMag in azione
+  KMag -?? 
??
   KMag ?? ??
   KMag in actie
   KMag i praksis
@@ -172,9 +175,9 @@
   
   org.kde.kmag.desktop
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmag-22.08.2/src/org.kde.kmag.desktop 
new/kmag-22.08.3/src/org.kde.kmag.desktop
--- old/kmag-22.08.2/src/org.kde.kmag.desktop   2022-10-10 22:03:41.0 
+0200
+++ new/kmag-22.08.3/src/org.kde.kmag.desktop   2022-10-30 22:02:33.0 
+0100
@@ -35,6 +35,7 @@
 Name[is]=KMag
 Name[it]=Lente d'ingrandimento
 Name[ja]=KMag
+Name[ka]=KMag
 Name[kk]=KMag
 Name[km]=KMag
 Name[ko]=KMag
@@ -105,6 +106,7 @@
 GenericName[is]=Skj??st??kkari
 GenericName[it]=Lente di ingrandimento per lo schermo
 GenericName[ja]=???
+GenericName[ka]=? 
 GenericName[kk]=?? 
 GenericName[km]= 

 GenericName[ko]=?? ?
@@ -165,6 +167,7 @@
 Comment[ia]=Un instrumento per aggrandir le schermo
 Comment[is]=Einfalt skj??st??kku

commit kmail for openSUSE:Factory

2022-11-04 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-11-04 17:33:00

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


Package is "kmail"

Fri Nov  4 17:33:00 2022 rev:78 rq:1033302 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kmail/kmail.changes  2022-10-15 
16:34:46.181765884 +0200
+++ /work/SRC/openSUSE:Factory/.kmail.new.2275/kmail.changes2022-11-04 
17:34:22.972630321 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:45 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kmail-22.08.3.tar.xz
  kmail-22.08.3.tar.xz.sig



Other differences:
--
++ kmail.spec ++
--- /var/tmp/diff_new_pack.8xkoxk/_old  2022-11-04 17:34:23.636633756 +0100
+++ /var/tmp/diff_new_pack.8xkoxk/_new  2022-11-04 17:34:23.648633818 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kmail
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Mail Client
 License:GPL-2.0-only


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


commit kleopatra for openSUSE:Factory

2022-11-04 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-11-04 17:32:58

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


Package is "kleopatra"

Fri Nov  4 17:32:58 2022 rev:75 rq:1033296 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kleopatra/kleopatra.changes  2022-10-15 
16:34:42.497757031 +0200
+++ /work/SRC/openSUSE:Factory/.kleopatra.new.2275/kleopatra.changes
2022-11-04 17:34:18.996609752 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:42 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kleopatra-22.08.3.tar.xz
  kleopatra-22.08.3.tar.xz.sig



Other differences:
--
++ kleopatra.spec ++
--- /var/tmp/diff_new_pack.eckM2y/_old  2022-11-04 17:34:19.720613497 +0100
+++ /var/tmp/diff_new_pack.eckM2y/_new  2022-11-04 17:34:19.724613518 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kleopatra
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Certificate manager and GUI for OpenPGP and CMS cryptography
 License:GPL-2.0-or-later


++ kleopatra-22.08.2.tar.xz -> kleopatra-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kleopatra-22.08.2/CMakeLists.txt 
new/kleopatra-22.08.3/CMakeLists.txt
--- old/kleopatra-22.08.2/CMakeLists.txt2022-10-10 22:24:57.0 
+0200
+++ new/kleopatra-22.08.3/CMakeLists.txt2022-10-30 22:25:18.0 
+0100
@@ -4,7 +4,7 @@
 
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "2")
+set(RELEASE_SERVICE_VERSION_MICRO "3")
 
 # 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.2")
-set(KMAILTRANSPORT_VERSION "5.21.2")
-set(KMIME_VERSION "5.21.2")
-set(LIBKLEO_VERSION "5.21.2")
+set(KIDENTITYMANAGEMENT_VERSION "5.21.3")
+set(KMAILTRANSPORT_VERSION "5.21.3")
+set(KMIME_VERSION "5.21.3")
+set(LIBKLEO_VERSION "5.21.3")
 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.2/po/ca/kleopatra.po 
new/kleopatra-22.08.3/po/ca/kleopatra.po
--- old/kleopatra-22.08.2/po/ca/kleopatra.po2022-10-11 07:01:12.0 
+0200
+++ new/kleopatra-22.08.3/po/ca/kleopatra.po2022-11-01 01:14:10.0 
+0100
@@ -11,7 +11,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-09-07 19:16+0200\n"
+"PO-Revision-Date: 2022-10-27 12:02+0200\n"
 "Last-Translator: Josep M. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -5678,7 +5678,7 @@
 #: src/dialogs/certificatedetailswidget.cpp:461
 #, kde-format
 msgid "Compliance:"
-msgstr "Compliment:"
+msgstr "Conformitat:"
 
 #: src/dialogs/certificatedetailswidget.cpp:466
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kleopatra-22.08.2/po/ca@valencia/kleopatra.po 
new/kleopatra-22.08.3/po/ca@valencia/kleopatra.po
--- old/kleopatra-22.08.2/po/ca@valencia/kleopatra.po   2022-10-11 
07:01:12.0 +0200
+++ new/kleopatra-22.08.3/po/ca@valencia/kleopatra.po   2022-11-01 
01:14:10.0 +0100
@@ -11,7 +11,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-09-07 19:16+0200\n"
+"PO-Revision-Date: 2022-10-27 12:02+0200\n"
 "Last-Translator: Josep M. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca@valencia\n"
@@ -738,7 +738,7 @@
 #: src/commands/decryptverifyfilescommand.cpp:185
 #, kde-format
 msgid "Select One or More Files to Decrypt and/or Verify"
-msgstr "Seleccioneu un o m??s fitxers a desencriptar i/o verificar"
+msgstr "Seleccioneu un o m??s fitxers que s'han de desencriptar i/o verificar"
 
 #: src/commands/deletecertificatescommand.cpp:78
 #, kde-format
@@ -1624,7 +1624,8 @@
 #, kde-format
 msgid "Sorry! No certificate to import from this card s

commit kmail-account-wizard for openSUSE:Factory

2022-11-04 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-11-04 17:33:01

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"

Fri Nov  4 17:33:01 2022 rev:75 rq:1033303 version:22.08.3

Changes:

--- 
/work/SRC/openSUSE:Factory/kmail-account-wizard/kmail-account-wizard.changes
2022-10-15 16:34:46.985767815 +0200
+++ 
/work/SRC/openSUSE:Factory/.kmail-account-wizard.new.2275/kmail-account-wizard.changes
  2022-11-04 17:34:23.924635246 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:46 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

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



Other differences:
--
++ kmail-account-wizard.spec ++
--- /var/tmp/diff_new_pack.66NKor/_old  2022-11-04 17:34:25.000640813 +0100
+++ /var/tmp/diff_new_pack.66NKor/_new  2022-11-04 17:34:25.004640834 +0100
@@ -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.2
+Version:22.08.3
 Release:0
 Summary:Account wizard for KMail
 License:GPL-2.0-or-later AND LGPL-2.1-or-later


++ kmail-account-wizard-22.08.2.tar.xz -> 
kmail-account-wizard-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmail-account-wizard-22.08.2/CMakeLists.txt 
new/kmail-account-wizard-22.08.3/CMakeLists.txt
--- old/kmail-account-wizard-22.08.2/CMakeLists.txt 2022-09-28 
05:04:53.0 +0200
+++ new/kmail-account-wizard-22.08.3/CMakeLists.txt 2022-10-24 
05:10:17.0 +0200
@@ -1,7 +1,7 @@
 # SPDX-FileCopyrightText: none
 # SPDX-License-Identifier: BSD-3-Clause
 
-set(PIM_VERSION "5.21.2")
+set(PIM_VERSION "5.21.3")
 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.2")
+set(RELEASE_SERVICE_VERSION "22.08.3")
 
 # 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.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(AKONADI_MIMELIB_VERSION "5.21.3")
+set(IDENTITYMANAGEMENT_LIB_VERSION "5.21.3")
+set(KLDAP_LIB_VERSION "5.21.3")
+set(KMAILTRANSPORT_LIB_VERSION "5.21.3")
+set(AKONADI_VERSION "5.21.3")
+set(KIMAP_LIB_VERSION "5.21.3")
+set(AKONADI_MIMELIB_VERSION "5.21.3")
 
 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.2")
-set(LIBKDEPIM_LIB_VERSION "5.21.2")
-set(LIBKLEO_LIB_VERSION "5.21.2")
+set(PIMCOMMON_LIB_VERSION "5.21.3")
+set(LIBKDEPIM_LIB_VERSION "5.21.3")
+set(LIBKLEO_LIB_VERSION "5.21.3")
 
 # 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.2/po/ca@valencia/accountwizard.po 
new/kmail-account-wizard-22.08.3/po/ca@valencia/accountwizard.po
--- old/kmail-account-wizard-22.08.2/po/ca@valencia/accountwizard.po
2022-10-11 07:02:50.0 +0200
+++ new/kmail-account-wizard-22.08.3/po/ca@valencia/accountwizard.po
2022-11-01 01:15:27.0 +0100
@@ -320,7 +320,7 @@
 #: ldap.cpp:155
 #, kde-format
 msgid "No config found to edit"
-msgstr "No s'ha trobat la configuraci?? a editar"
+msgstr "No s'ha trobat la configuraci?? que s'ha d'editar"
 
 #: loadpage.cpp:35
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kmail-account-wizard-22.08.2/po/zh_CN/accountwizard.po 
new/kmail-account-wizard-22.08.3/po/zh_CN/accountwizard.po
--- old/kmail-account-wizard-22.08.2/po/zh_CN/accountwizard.po  2022-10-11 
07:02:50.0 +0200
+++ new/kmail-account-wizard-22.08.

commit kmailtransport for openSUSE:Factory

2022-11-04 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-11-04 17:33:02

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


Package is "kmailtransport"

Fri Nov  4 17:33:02 2022 rev:89 rq:1033304 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kmailtransport/kmailtransport.changes
2022-10-15 16:34:47.969770180 +0200
+++ /work/SRC/openSUSE:Factory/.kmailtransport.new.2275/kmailtransport.changes  
2022-11-04 17:34:25.948645717 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:46 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kmailtransport-22.08.3.tar.xz
  kmailtransport-22.08.3.tar.xz.sig



Other differences:
--
++ kmailtransport.spec ++
--- /var/tmp/diff_new_pack.P34H7E/_old  2022-11-04 17:34:26.640649298 +0100
+++ /var/tmp/diff_new_pack.P34H7E/_new  2022-11-04 17:34:26.648649338 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kmailtransport
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE PIM Libraries: Mailtransport layer
 License:LGPL-2.1-or-later


++ kmailtransport-22.08.2.tar.xz -> kmailtransport-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmailtransport-22.08.2/CMakeLists.txt 
new/kmailtransport-22.08.3/CMakeLists.txt
--- old/kmailtransport-22.08.2/CMakeLists.txt   2022-09-11 10:05:00.0 
+0200
+++ new/kmailtransport-22.08.3/CMakeLists.txt   2022-10-24 05:10:25.0 
+0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.2")
+set(PIM_VERSION "5.21.3")
 project(MailTransport VERSION ${PIM_VERSION})
 
 # ECM setup
@@ -35,11 +35,11 @@
 
 set(KMAILTRANSPORT_LIB_VERSION ${PIM_VERSION})
 
-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(KMIME_LIB_VERSION "5.21.3")
+set(AKONADI_LIB_VERSION "5.21.3")
+set(AKONADIMIME_LIB_VERSION "5.21.3")
+set(KSMTP_LIB_VERSION "5.21.3")
+set(KGAPI_LIB_VERSION "5.21.3")
 
 set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5MailTransport")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kmailtransport-22.08.2/po/ca@valencia/libmailtransport5.po 
new/kmailtransport-22.08.3/po/ca@valencia/libmailtransport5.po
--- old/kmailtransport-22.08.2/po/ca@valencia/libmailtransport5.po  
2022-10-11 07:01:21.0 +0200
+++ new/kmailtransport-22.08.3/po/ca@valencia/libmailtransport5.po  
2022-11-01 01:14:18.0 +0100
@@ -82,7 +82,7 @@
 #: kmailtransport/mailtransport.kcfg:34
 #, kde-format
 msgid "The user name to send to the server for authorization."
-msgstr "El nom d'usuari a enviar al servidor per a l'autoritzaci??."
+msgstr "El nom d'usuari que s'enviar?? al servidor per a l'autoritzaci??."
 
 #. i18n: ectx: label, entry (precommand), group (Transport $(transportId))
 #: kmailtransport/mailtransport.kcfg:37
@@ -97,7 +97,7 @@
 "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 ""
-"Una ordre que s'ha d'executar localment, abans d'enviar un correu. A pot "
+"Una ordre que s'executar?? localment, abans d'enviar un correu. A pot "
 "servir per a establir t??nels SSH, per exemple. Deixeu-ho buit si no s'ha "
 "d'executar cap ordre."
 
@@ -253,7 +253,7 @@
 #: kmailtransport/plugins/smtp/smtpconfigwidget.cpp:144
 #, kde-format
 msgid "The password to send to the server for authorization."
-msgstr "La contrasenya a enviar al servidor per a l'autoritzaci??."
+msgstr "La contrasenya que s'enviar?? al servidor per a l'autoritzaci??."
 
 #: kmailtransport/plugins/smtp/smtpconfigwidget.cpp:274
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmailtransport-22.08.2/po/fr/libmailtransport5.po 
new/kmailtransport-22.08.3/po/fr/libmailtransport5.po
--- old/kmailtransport-22.08.2/po/fr/libmailtransport5.po   2022-10-11 
07:01:21.0 +0200
+++ new/kmailtransport-22.08.3/po/fr/libmailtransport5.po   2022-11-01 
01:14:18.0 +0100
@

commit kmbox for openSUSE:Factory

2022-11-04 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-11-04 17:33:03

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


Package is "kmbox"

Fri Nov  4 17:33:03 2022 rev:87 rq:1033305 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kmbox/kmbox.changes  2022-10-15 
16:34:50.833777063 +0200
+++ /work/SRC/openSUSE:Factory/.kmbox.new.2275/kmbox.changes2022-11-04 
17:34:27.144651905 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:47 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kmbox-22.08.3.tar.xz
  kmbox-22.08.3.tar.xz.sig



Other differences:
--
++ kmbox.spec ++
--- /var/tmp/diff_new_pack.b4QgBg/_old  2022-11-04 17:34:27.904655836 +0100
+++ /var/tmp/diff_new_pack.b4QgBg/_new  2022-11-04 17:34:27.908655857 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kmbox
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE PIM Libraries: Mailbox functionality
 License:LGPL-2.1-or-later


++ kmbox-22.08.2.tar.xz -> kmbox-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmbox-22.08.2/CMakeLists.txt 
new/kmbox-22.08.3/CMakeLists.txt
--- old/kmbox-22.08.2/CMakeLists.txt2022-09-11 10:05:09.0 +0200
+++ new/kmbox-22.08.3/CMakeLists.txt2022-10-14 06:54:37.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.2")
+set(PIM_VERSION "5.21.3")
 
 project(KMbox VERSION ${PIM_VERSION})
 
@@ -33,7 +33,7 @@
 
 
 set(KMBOX_LIB_VERSION ${PIM_VERSION})
-set(KMIME_LIB_VERSION "5.21.2")
+set(KMIME_LIB_VERSION "5.21.3")
 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 kmime for openSUSE:Factory

2022-11-04 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-11-04 17:33:04

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


Package is "kmime"

Fri Nov  4 17:33:04 2022 rev:88 rq:1033306 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kmime/kmime.changes  2022-10-15 
16:34:51.589778880 +0200
+++ /work/SRC/openSUSE:Factory/.kmime.new.2275/kmime.changes2022-11-04 
17:34:29.420663679 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:48 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kmime-22.08.3.tar.xz
  kmime-22.08.3.tar.xz.sig



Other differences:
--
++ kmime.spec ++
--- /var/tmp/diff_new_pack.ETHIfz/_old  2022-11-04 17:34:30.112667260 +0100
+++ /var/tmp/diff_new_pack.ETHIfz/_new  2022-11-04 17:34:30.120667301 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kmime
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE PIM libraries MIME support
 License:LGPL-2.1-or-later


++ kmime-22.08.2.tar.xz -> kmime-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmime-22.08.2/CMakeLists.txt 
new/kmime-22.08.3/CMakeLists.txt
--- old/kmime-22.08.2/CMakeLists.txt2022-09-08 19:39:43.0 +0200
+++ new/kmime-22.08.3/CMakeLists.txt2022-10-14 09:15:58.0 +0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.2")
+set(PIM_VERSION "5.21.3")
 
 project(KMime VERSION ${PIM_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmime-22.08.2/po/zh_CN/libkmime5.po 
new/kmime-22.08.3/po/zh_CN/libkmime5.po
--- old/kmime-22.08.2/po/zh_CN/libkmime5.po 2022-10-11 07:01:29.0 
+0200
+++ new/kmime-22.08.3/po/zh_CN/libkmime5.po 2022-11-01 01:14:24.0 
+0100
@@ -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-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmime-22.08.2/src/kmime_content.cpp 
new/kmime-22.08.3/src/kmime_content.cpp
--- old/kmime-22.08.2/src/kmime_content.cpp 2022-09-08 19:39:43.0 
+0200
+++ new/kmime-22.08.3/src/kmime_content.cpp 2022-10-14 09:15:58.0 
+0200
@@ -440,16 +440,17 @@
 QVector result;
 
 auto ct = contentType(false);
-if (ct && ct->isMultipart() && !ct->isSubtype("related") && 
!ct->isSubtype("alternative")) {
-const QVector contentsList = contents();
-result.reserve(contentsList.count());
-for (Content *child : contentsList) {
-if (isAttachment(child)) {
-result.push_back(child);
-} else {
-result += child->attachments();
-}
+if (ct && ct->isMultipart() &&
+!ct->isSubtype("related") /* && !ct->isSubtype("alternative")*/) {
+  const QVector contentsList = contents();
+  result.reserve(contentsList.count());
+  for (Content *child : contentsList) {
+if (isAttachment(child)) {
+  result.push_back(child);
+} else {
+  result += child->attachments();
 }
+  }
 }
 
 return result;


commit knotes for openSUSE:Factory

2022-11-04 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-11-04 17:33:05

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


Package is "knotes"

Fri Nov  4 17:33:05 2022 rev:75 rq:1033315 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/knotes/knotes.changes2022-10-15 
16:34:55.561788424 +0200
+++ /work/SRC/openSUSE:Factory/.knotes.new.2275/knotes.changes  2022-11-04 
17:34:31.672675330 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:53 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  knotes-22.08.3.tar.xz
  knotes-22.08.3.tar.xz.sig



Other differences:
--
++ knotes.spec ++
--- /var/tmp/diff_new_pack.CkfEeA/_old  2022-11-04 17:34:32.240678269 +0100
+++ /var/tmp/diff_new_pack.CkfEeA/_new  2022-11-04 17:34:32.244678289 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   knotes
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Popup Notes
 License:GPL-2.0-or-later


++ knotes-22.08.2.tar.xz -> knotes-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotes-22.08.2/CMakeLists.txt 
new/knotes-22.08.3/CMakeLists.txt
--- old/knotes-22.08.2/CMakeLists.txt   2022-10-10 22:27:17.0 +0200
+++ new/knotes-22.08.3/CMakeLists.txt   2022-10-30 22:27:19.0 +0100
@@ -1,9 +1,9 @@
 # SPDX-FileCopyrightText: none
 # SPDX-License-Identifier: BSD-3-Clause
-set(PIM_VERSION "5.21.2")
+set(PIM_VERSION "5.21.3")
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 project(knotes VERSION ${PIM_VERSION})
-set(RELEASE_SERVICE_VERSION "22.08.2")
+set(RELEASE_SERVICE_VERSION "22.08.3")
 
 
 set(KF5_MIN_VERSION "5.95.0")
@@ -49,16 +49,16 @@
 set(KDEPIM_LIB_SOVERSION "5")
 
 
-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(AKONADINOTES_LIB_VERSION "5.21.3")
+set(AKONADI_VERSION "5.21.3")
+set(CALENDARUTILS_LIB_VERSION "5.21.3")
+set(KONTACTINTERFACE_LIB_VERSION "5.21.3")
+set(KPIMTEXTEDIT_LIB_VERSION "5.21.3")
+set(LIBKDEPIM_LIB_VERSION "5.21.3")
+set(KMIME_LIB_VERSION "5.21.3")
+set(PIMCOMMON_LIB_VERSION "5.21.3")
+set(GRANTLEETHEME_LIB_VERSION "5.21.3")
+set(AKONADI_SEARCH_VERSION "5.21.3")
 
 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.2/po/ca@valencia/knotes.po 
new/knotes-22.08.3/po/ca@valencia/knotes.po
--- old/knotes-22.08.2/po/ca@valencia/knotes.po 2022-10-11 07:02:54.0 
+0200
+++ new/knotes-22.08.3/po/ca@valencia/knotes.po 2022-11-01 01:15:30.0 
+0100
@@ -274,7 +274,7 @@
 #: configdialog/knotecollectionconfigwidget.cpp:161
 #, kde-format
 msgid "Rename notes..."
-msgstr "Canvia el nom les notes..."
+msgstr "Canvia el nom de les notes..."
 
 #: configdialog/knotecollectionconfigwidget.cpp:165
 #, kde-format
@@ -295,7 +295,7 @@
 #: configdialog/knotecollectionconfigwidget.cpp:218
 #, kde-format
 msgid "Rename Notes"
-msgstr "Canvia el nom les notes"
+msgstr "Canvia el nom de les notes"
 
 #: configdialog/knotecollectionconfigwidget.cpp:218
 #, kde-format
@@ -310,7 +310,7 @@
 #: configdialog/knotecollectionconfigwidget.cpp:236
 #, kde-format
 msgid "Rename note"
-msgstr "Canvia el nom la nota"
+msgstr "Canvia el nom de la nota"
 
 #: configdialog/knotedisplayconfigwidget.cpp:26
 #, kde-format
@@ -393,7 +393,7 @@
 #, kde-format
 msgctxt "@title:window"
 msgid "Select notes to delete"
-msgstr "Seleccioneu les notes a suprimir"
+msgstr "Seleccioneu les notes que s'han de suprimir"
 
 #: dialog/knoteselectednotesdialog.cpp:21
 #: print/knoteprintselectednotesdialog.cpp:27
@@ -752,7 +752,7 @@
 #, kde-format
 msgctxt "@title:window"
 msgid "Rename Popup Note"
-msgstr "Canvia el nom la nota emergent"
+msgstr "Canvia el nom de la nota emergent"
 
 #: kontactplugin/knotes_part.cpp:535
 #, kde-format
d

commit kmousetool for openSUSE:Factory

2022-11-04 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-11-04 17:33:05

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


Package is "kmousetool"

Fri Nov  4 17:33:05 2022 rev:139 rq:1033309 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kmousetool/kmousetool.changes2022-10-15 
16:34:53.553783599 +0200
+++ /work/SRC/openSUSE:Factory/.kmousetool.new.2275/kmousetool.changes  
2022-11-04 17:34:30.660670095 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:49 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kmousetool-22.08.3.tar.xz
  kmousetool-22.08.3.tar.xz.sig



Other differences:
--
++ kmousetool.spec ++
--- /var/tmp/diff_new_pack.OeudU4/_old  2022-11-04 17:34:31.308673447 +0100
+++ /var/tmp/diff_new_pack.OeudU4/_new  2022-11-04 17:34:31.312673468 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kmousetool
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Automatic Mouse Click
 License:GPL-2.0-or-later


++ kmousetool-22.08.2.tar.xz -> kmousetool-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmousetool-22.08.2/CMakeLists.txt 
new/kmousetool-22.08.3/CMakeLists.txt
--- old/kmousetool-22.08.2/CMakeLists.txt   2022-10-10 22:04:06.0 
+0200
+++ new/kmousetool-22.08.3/CMakeLists.txt   2022-10-30 22:02:53.0 
+0100
@@ -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 "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/kmousetool/org.kde.kmousetool.appdata.xml 
new/kmousetool-22.08.3/kmousetool/org.kde.kmousetool.appdata.xml
--- old/kmousetool-22.08.2/kmousetool/org.kde.kmousetool.appdata.xml
2022-10-10 22:04:06.0 +0200
+++ new/kmousetool-22.08.3/kmousetool/org.kde.kmousetool.appdata.xml
2022-10-30 22:02:53.0 +0100
@@ -126,9 +126,9 @@
   
   org.kde.kmousetool.desktop
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmousetool-22.08.2/po/zh_CN/kmousetool.po 
new/kmousetool-22.08.3/po/zh_CN/kmousetool.po
--- old/kmousetool-22.08.2/po/zh_CN/kmousetool.po   2022-10-11 
06:52:02.0 +0200
+++ new/kmousetool-22.08.3/po/zh_CN/kmousetool.po   2022-11-01 
01:06:30.0 +0100
@@ -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-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kontact for openSUSE:Factory

2022-11-04 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-11-04 17:33:08

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


Package is "kontact"

Fri Nov  4 17:33:08 2022 rev:74 rq:1033323 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kontact/kontact.changes  2022-10-15 
16:35:01.957803795 +0200
+++ /work/SRC/openSUSE:Factory/.kontact.new.2275/kontact.changes
2022-11-04 17:34:36.368699625 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:58 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kontact-22.08.3.tar.xz
  kontact-22.08.3.tar.xz.sig



Other differences:
--
++ kontact.spec ++
--- /var/tmp/diff_new_pack.OZk8nP/_old  2022-11-04 17:34:37.200703929 +0100
+++ /var/tmp/diff_new_pack.OZk8nP/_new  2022-11-04 17:34:37.208703970 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kontact
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Personal Information Manager
 License:GPL-2.0-or-later


++ kontact-22.08.2.tar.xz -> kontact-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontact-22.08.2/CMakeLists.txt 
new/kontact-22.08.3/CMakeLists.txt
--- old/kontact-22.08.2/CMakeLists.txt  2022-10-10 22:27:36.0 +0200
+++ new/kontact-22.08.3/CMakeLists.txt  2022-10-30 22:27:41.0 +0100
@@ -1,7 +1,7 @@
-set(PIM_VERSION "5.21.2")
+set(PIM_VERSION "5.21.3")
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 project(kontact VERSION ${PIM_VERSION})
-set(RELEASE_SERVICE_VERSION "22.08.2")
+set(RELEASE_SERVICE_VERSION "22.08.3")
 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.2")
-set(AKONADI_VERSION "5.21.2")
-set(KONTACTINTERFACE_LIB_VERSION "5.21.2")
-set(PIMCOMMON_LIB_VERSION "5.21.2")
+set(KPIMTEXTEDIT_LIB_VERSION "5.21.3")
+set(AKONADI_VERSION "5.21.3")
+set(KONTACTINTERFACE_LIB_VERSION "5.21.3")
+set(PIMCOMMON_LIB_VERSION "5.21.3")
 
 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.2")
-set(LIBGRANTLEETHEME_LIB_VERSION "5.21.2")
+set(LIBKDEPIM_LIB_VERSION "5.21.3")
+set(LIBGRANTLEETHEME_LIB_VERSION "5.21.3")
 # 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.2/po/ca@valencia/kontact.po 
new/kontact-22.08.3/po/ca@valencia/kontact.po
--- old/kontact-22.08.2/po/ca@valencia/kontact.po   2022-10-11 
07:02:58.0 +0200
+++ new/kontact-22.08.3/po/ca@valencia/kontact.po   2022-11-01 
01:15:33.0 +0100
@@ -203,7 +203,7 @@
 #, kde-format
 msgctxt "@info:tooltip"
 msgid "Select the initial plugin to use on each start"
-msgstr "Seleccioneu el connector inicial a utilitzar en cada inici"
+msgstr "Seleccioneu el connector inicial que s'ha d'utilitzar en cada inici"
 
 #: src/kcmkontact.cpp:40
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontact-22.08.2/po/fr/kontact.po 
new/kontact-22.08.3/po/fr/kontact.po
--- old/kontact-22.08.2/po/fr/kontact.po2022-10-11 07:02:58.0 
+0200
+++ new/kontact-22.08.3/po/fr/kontact.po2022-11-01 01:15:34.0 
+0100
@@ -30,7 +30,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.1\n"
+"X-Generator: Lokalize 22.08.2\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontact-22.08.2/po/nn/kontact.po 
new/kontact-22.08.3/po/nn/kontact.po
--- old/kontact-22.08.2/po/nn/kontact.po2022-10-11 07:02:58.0 
+0200
+++ new/kontact-22.08.3/po/nn/kontact.po2022

commit kompare for openSUSE:Factory

2022-11-04 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-11-04 17:33:06

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


Package is "kompare"

Fri Nov  4 17:33:06 2022 rev:118 rq:1033319 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kompare/kompare.changes  2022-10-15 
16:34:57.573793259 +0200
+++ /work/SRC/openSUSE:Factory/.kompare.new.2275/kompare.changes
2022-11-04 17:34:32.780681063 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:55 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kompare-22.08.3.tar.xz
  kompare-22.08.3.tar.xz.sig



Other differences:
--
++ kompare.spec ++
--- /var/tmp/diff_new_pack.Dx2eGu/_old  2022-11-04 17:34:33.440684477 +0100
+++ /var/tmp/diff_new_pack.Dx2eGu/_new  2022-11-04 17:34:33.444684498 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kompare
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:File Comparator
 License:GPL-2.0-only AND GFDL-1.2-only


++ kompare-22.08.2.tar.xz -> kompare-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-22.08.2/CMakeLists.txt 
new/kompare-22.08.3/CMakeLists.txt
--- old/kompare-22.08.2/CMakeLists.txt  2022-10-10 22:22:40.0 +0200
+++ new/kompare-22.08.3/CMakeLists.txt  2022-10-30 22:21:51.0 +0100
@@ -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 "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/po/es/kompare.po 
new/kompare-22.08.3/po/es/kompare.po
--- old/kompare-22.08.2/po/es/kompare.po2022-10-11 06:58:07.0 
+0200
+++ new/kompare-22.08.3/po/es/kompare.po2022-11-01 01:11:32.0 
+0100
@@ -3,21 +3,21 @@
 #
 # Miguel Revilla Rodr??guez , 2002,2003.
 # Pablo de Vicente , 2005.
-# Eloy Cuadra , 2005, 2007, 2008, 2009, 2010, 2011, 2012, 
2013, 2014, 2016, 2017, 2020.
+# Eloy Cuadra , 2005, 2007, 2008, 2009, 2010, 2011, 2012, 
2013, 2014, 2016, 2017, 2020, 2022.
 # Javier Vi??al , 2013.
 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: 2020-05-04 12:18+0200\n"
+"PO-Revision-Date: 2022-10-14 21:39+0200\n"
 "Last-Translator: Eloy Cuadra \n"
 "Language-Team: Spanish \n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 20.04.0\n"
+"X-Generator: Lokalize 22.08.2\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 #, kde-format
@@ -1045,7 +1045,7 @@
 #: komparepart/kompare_part.cpp:305 komparepart/kompare_part.cpp:318
 #, kde-format
 msgid "The URL %1 cannot be downloaded."
-msgstr "La URL %1 no se pudo descargar."
+msgstr "La URL %1 no se ha podido descargar."
 
 #: komparepart/kompare_part.cpp:356
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-22.08.2/po/eu/kompare.po 
new/kompare-22.08.3/po/eu/kompare.po
--- old/kompare-22.08.2/po/eu/kompare.po2022-10-11 06:58:07.0 
+0200
+++ new/kompare-22.08.3/po/eu/kompare.po2022-11-01 01:11:32.0 
+0100
@@ -1,6 +1,6 @@
 # Translation for kompare.po to Euskara/Basque (eu).
 # Copyright (C) 2003, 2005, 2009 Free Software Foundation, Inc.
-# Copyright (C) 2010-2021, This file is copyright:
+# Copyright (C) 2010-2022, This file is copyright:
 # This file is distributed under the same license as the kompare package.
 # KDE euskaratzeko proiektuko arduraduna 
 #
@@ -8,20 +8,20 @@
 # Marcos  , 2003, 2005.
 # Ion Gazta??aga , 2005.
 # Ion Gazta??aga , 2005.
-# I??igo Salvador Azurmendi , 2009, 2011, 2021.
+# I??igo Salvador Azurmendi , 2009, 2011, 2021, 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: 

commit konsole for openSUSE:Factory

2022-11-04 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-11-04 17:33:07

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


Package is "konsole"

Fri Nov  4 17:33:07 2022 rev:161 rq:1033322 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/konsole/konsole.changes  2022-10-15 
16:34:59.781798565 +0200
+++ /work/SRC/openSUSE:Factory/.konsole.new.2275/konsole.changes
2022-11-04 17:34:34.296688905 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:57 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  konsole-22.08.3.tar.xz
  konsole-22.08.3.tar.xz.sig



Other differences:
--
++ konsole.spec ++
--- /var/tmp/diff_new_pack.MEnoSf/_old  2022-11-04 17:34:35.060692858 +0100
+++ /var/tmp/diff_new_pack.MEnoSf/_new  2022-11-04 17:34:35.064692879 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   konsole
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE Terminal
 License:GPL-2.0-or-later


++ konsole-22.08.2.tar.xz -> konsole-22.08.3.tar.xz ++
 10668 lines of diff (skipped)


commit konversation for openSUSE:Factory

2022-11-04 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-11-04 17:33:10

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


Package is "konversation"

Fri Nov  4 17:33:10 2022 rev:84 rq:1033326 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/konversation/konversation.changes
2022-10-15 16:35:05.149811465 +0200
+++ /work/SRC/openSUSE:Factory/.konversation.new.2275/konversation.changes  
2022-11-04 17:34:39.800717380 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:21:00 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  konversation-22.08.3.tar.xz
  konversation-22.08.3.tar.xz.sig



Other differences:
--
++ konversation.spec ++
--- /var/tmp/diff_new_pack.tjU0PW/_old  2022-11-04 17:34:40.452720753 +0100
+++ /var/tmp/diff_new_pack.tjU0PW/_new  2022-11-04 17:34:40.456720774 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   konversation
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:A graphical IRC client by KDE
 License:GPL-2.0-or-later


++ konversation-22.08.2.tar.xz -> konversation-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konversation-22.08.2/CMakeLists.txt 
new/konversation-22.08.3/CMakeLists.txt
--- old/konversation-22.08.2/CMakeLists.txt 2022-10-10 22:33:56.0 
+0200
+++ new/konversation-22.08.3/CMakeLists.txt 2022-10-30 22:33:39.0 
+0100
@@ -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 "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/data/org.kde.konversation.appdata.xml 
new/konversation-22.08.3/data/org.kde.konversation.appdata.xml
--- old/konversation-22.08.2/data/org.kde.konversation.appdata.xml  
2022-10-10 22:33:56.0 +0200
+++ new/konversation-22.08.3/data/org.kde.konversation.appdata.xml  
2022-10-30 22:33:39.0 +0100
@@ -645,10 +645,10 @@
 konversation
   
   
+
 
 
 
-
   
   
 #konversation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konversation-22.08.2/po/ca/konversation.po 
new/konversation-22.08.3/po/ca/konversation.po
--- old/konversation-22.08.2/po/ca/konversation.po  2022-10-11 
07:06:12.0 +0200
+++ new/konversation-22.08.3/po/ca/konversation.po  2022-11-01 
01:18:18.0 +0100
@@ -12,7 +12,7 @@
 "Project-Id-Version: konversation\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-06-21 00:44+\n"
-"PO-Revision-Date: 2022-09-07 19:08+0200\n"
+"PO-Revision-Date: 2022-10-26 08:42+0200\n"
 "Last-Translator: Josep M. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -8568,7 +8568,7 @@
 "This will hide the menu bar completely. You can show it again by typing "
 "%1."
 msgstr ""
-"Aix?? ocultar?? la barra de men??s completament. La podeu tornar a 
mostrar "
+"Aix?? ocultar?? completament la barra de men??s. La podeu tornar a 
mostrar "
 "prement %1."
 
 #: src/mainwindow.cpp:801
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konversation-22.08.2/po/ca@valencia/konversation.po 
new/konversation-22.08.3/po/ca@valencia/konversation.po
--- old/konversation-22.08.2/po/ca@valencia/konversation.po 2022-10-11 
07:06:12.0 +0200
+++ new/konversation-22.08.3/po/ca@valencia/konversation.po 2022-11-01 
01:18:18.0 +0100
@@ -12,7 +12,7 @@
 "Project-Id-Version: konversation\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-06-21 00:44+\n"
-"PO-Revision-Date: 2022-09-07 19:08+0200\n"
+"PO-Revision-Date: 2022-10-26 08:42+0200\n"
 "Last-Translator: Josep M. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca@valencia\n"
@@ -113,7 +113,7 @@
 msgctxt "REGEX_FIXUP is

commit kontactinterface for openSUSE:Factory

2022-11-04 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-11-04 17:33:09

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


Package is "kontactinterface"

Fri Nov  4 17:33:09 2022 rev:86 rq:1033324 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kontactinterface/kontactinterface.changes
2022-10-15 16:35:03.733808062 +0200
+++ 
/work/SRC/openSUSE:Factory/.kontactinterface.new.2275/kontactinterface.changes  
2022-11-04 17:34:37.792706992 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:58 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kontactinterface-22.08.3.tar.xz
  kontactinterface-22.08.3.tar.xz.sig



Other differences:
--
++ kontactinterface.spec ++
--- /var/tmp/diff_new_pack.lfLbKt/_old  2022-11-04 17:34:38.428710282 +0100
+++ /var/tmp/diff_new_pack.lfLbKt/_new  2022-11-04 17:34:38.432710303 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kontactinterface
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE PIM Libraries: Interface to Contacts
 License:LGPL-2.1-or-later


++ kontactinterface-22.08.2.tar.xz -> kontactinterface-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-22.08.2/CMakeLists.txt 
new/kontactinterface-22.08.3/CMakeLists.txt
--- old/kontactinterface-22.08.2/CMakeLists.txt 2022-09-08 19:40:12.0 
+0200
+++ new/kontactinterface-22.08.3/CMakeLists.txt 2022-10-13 13:44:38.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.2")
+set(PIM_VERSION "5.21.3")
 
 project(KontactInterface VERSION ${PIM_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kontactinterface-22.08.2/po/zh_CN/kontactinterfaces5.po 
new/kontactinterface-22.08.3/po/zh_CN/kontactinterfaces5.po
--- old/kontactinterface-22.08.2/po/zh_CN/kontactinterfaces5.po 2022-10-11 
07:01:33.0 +0200
+++ new/kontactinterface-22.08.3/po/zh_CN/kontactinterfaces5.po 2022-11-01 
01:14:26.0 +0100
@@ -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-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kpimtextedit for openSUSE:Factory

2022-11-04 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-11-04 17:33:12

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


Package is "kpimtextedit"

Fri Nov  4 17:33:12 2022 rev:89 rq:102 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kpimtextedit/kpimtextedit.changes
2022-10-15 16:35:09.857822779 +0200
+++ /work/SRC/openSUSE:Factory/.kpimtextedit.new.2275/kpimtextedit.changes  
2022-11-04 17:34:43.644737267 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:21:03 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kpimtextedit-22.08.3.tar.xz
  kpimtextedit-22.08.3.tar.xz.sig



Other differences:
--
++ kpimtextedit.spec ++
--- /var/tmp/diff_new_pack.YNEzMu/_old  2022-11-04 17:34:44.180740040 +0100
+++ /var/tmp/diff_new_pack.YNEzMu/_new  2022-11-04 17:34:44.184740060 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kpimtextedit
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:KDE PIM Libraries: Text edit functionality
 License:LGPL-2.1-or-later

++ kpimtextedit-22.08.2.tar.xz -> kpimtextedit-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpimtextedit-22.08.2/CMakeLists.txt 
new/kpimtextedit-22.08.3/CMakeLists.txt
--- old/kpimtextedit-22.08.2/CMakeLists.txt 2022-09-12 20:52:16.0 
+0200
+++ new/kpimtextedit-22.08.3/CMakeLists.txt 2022-10-13 13:44:57.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.2")
+set(PIM_VERSION "5.21.3")
 
 project(KPimTextEdit VERSION ${PIM_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kpimtextedit-22.08.2/po/ca@valencia/libkpimtextedit.po 
new/kpimtextedit-22.08.3/po/ca@valencia/libkpimtextedit.po
--- old/kpimtextedit-22.08.2/po/ca@valencia/libkpimtextedit.po  2022-10-11 
07:01:36.0 +0200
+++ new/kpimtextedit-22.08.3/po/ca@valencia/libkpimtextedit.po  2022-11-01 
01:14:28.0 +0100
@@ -946,7 +946,7 @@
 #: texteditor/commonwidget/textfindreplacewidget.cpp:75
 #, kde-format
 msgid "Text to search for"
-msgstr "Text que cal buscar"
+msgstr "Text que s'ha de buscar"
 
 #: texteditor/commonwidget/textfindreplacewidget.cpp:81
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpimtextedit-22.08.2/po/ru/libkpimtextedit.po 
new/kpimtextedit-22.08.3/po/ru/libkpimtextedit.po
--- old/kpimtextedit-22.08.2/po/ru/libkpimtextedit.po   2022-10-11 
07:01:36.0 +0200
+++ new/kpimtextedit-22.08.3/po/ru/libkpimtextedit.po   2022-11-01 
01:14:28.0 +0100
@@ -5,19 +5,20 @@
 # Alexander Lakhin , 2013.
 # ??  , 2018.
 # Alexander Yavorsky , 2019, 2020.
+# Olesya Gerasimenko , 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-09-13 02:12+\n"
-"PO-Revision-Date: 2020-08-23 13:04+0300\n"
-"Last-Translator: Alexander Yavorsky \n"
-"Language-Team: Russian \n"
+"PO-Revision-Date: 2022-10-11 11:41+0300\n"
+"Last-Translator: Olesya Gerasimenko \n"
+"Language-Team: Basealt Translation Team\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.0\n"
+"X-Generator: Lokalize 22.04.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"
@@ -448,7 +449,7 @@
 #: emoticon/emoticonrecentlistview.cpp:25
 #, kde-format
 msgid "Clear Recents"
-msgstr ""
+msgstr "  "
 
 #: emoticon/emoticontexteditaction.cpp:41
 #, kde-format
@@ -458,18 +459,17 @@
 #: emoticon/emoticontexteditselector.cpp:31
 #, kde-format
 msgid "Search Emoticon..."
-msgstr ""
+msgstr "?? ???"
 
 #: emoticon/emoticonunicodetab.cpp:51
 #, kde-format
 msgid "Result"
-msgstr ""
+msgstr "??"
 
 #: emoticon/emoticonunicodetab.cpp:62
-#, fuzzy, kde-format
-#| msgid "Ev

commit ksanecore for openSUSE:Factory

2022-11-04 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-11-04 17:33:16

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


Package is "ksanecore"

Fri Nov  4 17:33:16 2022 rev:4 rq:1033342 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ksanecore/ksanecore.changes  2022-10-15 
16:35:12.965830248 +0200
+++ /work/SRC/openSUSE:Factory/.ksanecore.new.2275/ksanecore.changes
2022-11-04 17:34:46.588752498 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:21:09 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  ksanecore-22.08.3.tar.xz
  ksanecore-22.08.3.tar.xz.sig



Other differences:
--
++ ksanecore.spec ++
--- /var/tmp/diff_new_pack.JG8GMb/_old  2022-11-04 17:34:47.104755167 +0100
+++ /var/tmp/diff_new_pack.JG8GMb/_new  2022-11-04 17:34:47.108755188 +0100
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   ksanecore
-Version:22.08.2
+Version:22.08.3
 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.2.tar.xz -> ksanecore-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-22.08.2/CMakeLists.txt 
new/ksanecore-22.08.3/CMakeLists.txt
--- old/ksanecore-22.08.2/CMakeLists.txt2022-10-10 21:40:01.0 
+0200
+++ new/ksanecore-22.08.3/CMakeLists.txt2022-10-30 21:44:14.0 
+0100
@@ -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 "2")
+set(RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/po/zh_CN/ksanecore.po 
new/ksanecore-22.08.3/po/zh_CN/ksanecore.po
--- old/ksanecore-22.08.2/po/zh_CN/ksanecore.po 2022-10-11 07:07:35.0 
+0200
+++ new/ksanecore-22.08.3/po/zh_CN/ksanecore.po 2022-11-01 01:19:34.0 
+0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-06-17 00:43+\n"
-"PO-Revision-Date: 2022-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


commit kpkpass for openSUSE:Factory

2022-11-04 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-11-04 17:33:14

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


Package is "kpkpass"

Fri Nov  4 17:33:14 2022 rev:52 rq:103 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kpkpass/kpkpass.changes  2022-10-15 
16:35:10.781824999 +0200
+++ /work/SRC/openSUSE:Factory/.kpkpass.new.2275/kpkpass.changes
2022-11-04 17:34:44.584742130 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:21:04 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kpkpass-22.08.3.tar.xz
  kpkpass-22.08.3.tar.xz.sig



Other differences:
--
++ kpkpass.spec ++
--- /var/tmp/diff_new_pack.SjQmBG/_old  2022-11-04 17:34:45.168745151 +0100
+++ /var/tmp/diff_new_pack.SjQmBG/_new  2022-11-04 17:34:45.172745172 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without released
 Name:   kpkpass
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Library to parse Passbook files
 License:LGPL-2.1-or-later


++ kpkpass-22.08.2.tar.xz -> kpkpass-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpkpass-22.08.2/CMakeLists.txt 
new/kpkpass-22.08.3/CMakeLists.txt
--- old/kpkpass-22.08.2/CMakeLists.txt  2022-09-08 19:40:44.0 +0200
+++ new/kpkpass-22.08.3/CMakeLists.txt  2022-10-13 13:45:07.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.2")
+set(PIM_VERSION "5.21.3")
 project(KPkPass VERSION ${PIM_VERSION})
 
 set(KF5_MIN_VERSION "5.95.0")


commit korganizer for openSUSE:Factory

2022-11-04 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-11-04 17:33:12

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


Package is "korganizer"

Fri Nov  4 17:33:12 2022 rev:77 rq:1033329 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/korganizer/korganizer.changes2022-10-15 
16:35:08.157818693 +0200
+++ /work/SRC/openSUSE:Factory/.korganizer.new.2275/korganizer.changes  
2022-11-04 17:34:41.916728327 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:21:02 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  korganizer-22.08.3.tar.xz
  korganizer-22.08.3.tar.xz.sig



Other differences:
--
++ korganizer.spec ++
--- /var/tmp/diff_new_pack.guTrFO/_old  2022-11-04 17:34:42.492731307 +0100
+++ /var/tmp/diff_new_pack.guTrFO/_new  2022-11-04 17:34:42.500731349 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   korganizer
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Personal Organizer
 License:GPL-2.0-only


++ korganizer-22.08.2.tar.xz -> korganizer-22.08.3.tar.xz ++
 33071 lines of diff (skipped)


commit kruler for openSUSE:Factory

2022-11-04 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-11-04 17:33:14

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


Package is "kruler"

Fri Nov  4 17:33:14 2022 rev:145 rq:1033341 version:22.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kruler/kruler.changes2022-10-15 
16:35:11.913827720 +0200
+++ /work/SRC/openSUSE:Factory/.kruler.new.2275/kruler.changes  2022-11-04 
17:34:45.584747304 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:21:09 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+---

Old:

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

New:

  kruler-22.08.3.tar.xz
  kruler-22.08.3.tar.xz.sig



Other differences:
--
++ kruler.spec ++
--- /var/tmp/diff_new_pack.EItmmN/_old  2022-11-04 17:34:46.244750718 +0100
+++ /var/tmp/diff_new_pack.EItmmN/_new  2022-11-04 17:34:46.252750759 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:   kruler
-Version:22.08.2
+Version:22.08.3
 Release:0
 Summary:Screen Ruler
 License:GPL-2.0-or-later


++ kruler-22.08.2.tar.xz -> kruler-22.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kruler-22.08.2/CMakeLists.txt 
new/kruler-22.08.3/CMakeLists.txt
--- old/kruler-22.08.2/CMakeLists.txt   2022-10-10 21:57:34.0 +0200
+++ new/kruler-22.08.3/CMakeLists.txt   2022-10-30 21:57:11.0 +0100
@@ -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 "2")
+set(RELEASE_SERVICE_VERSION_MICRO "3")
 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.2/kruler.notifyrc 
new/kruler-22.08.3/kruler.notifyrc
--- old/kruler-22.08.2/kruler.notifyrc  2022-10-10 21:57:34.0 +0200
+++ new/kruler-22.08.3/kruler.notifyrc  2022-10-30 21:57:11.0 +0100
@@ -26,6 +26,7 @@
 Comment[is]=Reglustika skj??inn
 Comment[it]=Righello sullo schermo
 Comment[ja]=???
+Comment[ka]=? 
 Comment[kk]=?? 
 Comment[km]=??
 Comment[ko]=?? ???
@@ -89,6 +90,7 @@
 Name[is]=F??rt me?? Bendillyklum
 Name[it]=Spostato dai tasti cursore
 Name[ja]=???
+Name[ka]= ??? 

 Name[kk]=  ??
 
Name[km]=
 Name[ko]=?? ?? ?
@@ -156,6 +158,7 @@
 Comment[is]=Reglustikan hefur veri?? f??r?? um nokkra d??la me?? notkun 
Bendillykla
 Comment[it]=Il righello ?? stato spostato usando i tasti cursore
 
Comment[ja]=
+Comment[ka]= ? 
 ???
 Comment[kk]=?? ?? ??  
 ??
 
Comment[km]=???
 

 Comment[ko]=?? ?? ?? ??  ?? ? ?
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kruler-22.08.2/org.kde.kruler.appdata.xml 
new/kruler-22.08.3/org.kde.kruler.appdata.xml
--- old/kruler-22.08.2/org.kde.kruler.appdata.xml   2022-10-10 
21:57:34.0 +0200
+++ new/kruler-22.08.3/org.kde.kruler.appdata.xml   2022-10-30 
21:57:11.0 +0100
@@ -23,6 +23,7 @@
   KRuler
   KReglustika
   KRuler
+  KRuler
   KRuler
   KRuler
   KRuler
@@ -62,6 +63,7 @@
   Penggaris Layar
   Skj??reglustika
   Righello per lo schermo
+  ? 
??

  1   2   3   4   >