commit python-agate-dbf for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package python-agate-dbf for 
openSUSE:Factory checked in at 2020-11-10 15:08:56

Comparing /work/SRC/openSUSE:Factory/python-agate-dbf (Old)
 and  /work/SRC/openSUSE:Factory/.python-agate-dbf.new.11331 (New)


Package is "python-agate-dbf"

Tue Nov 10 15:08:56 2020 rev:4 rq:847491 version:0.2.2

Changes:

--- /work/SRC/openSUSE:Factory/python-agate-dbf/python-agate-dbf.changes
2020-04-16 23:07:10.759884487 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-agate-dbf.new.11331/python-agate-dbf.changes 
2020-11-10 15:09:04.633474187 +0100
@@ -1,0 +2,6 @@
+Tue Nov 10 12:49:23 UTC 2020 - Marketa Machova 
+
+- Update to 0.2.2
+  * No longer lowercase column names.
+
+---
@@ -25,0 +32 @@
+

Old:

  0.2.1.tar.gz

New:

  0.2.2.tar.gz



Other differences:
--
++ python-agate-dbf.spec ++
--- /var/tmp/diff_new_pack.YVmF2m/_old  2020-11-10 15:09:05.165473086 +0100
+++ /var/tmp/diff_new_pack.YVmF2m/_new  2020-11-10 15:09:05.165473086 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-agate-dbf
-Version:0.2.1
+Version:0.2.2
 Release:0
 Summary:Read support for dbf files for agate
 License:MIT

++ 0.2.1.tar.gz -> 0.2.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/agate-dbf-0.2.1/CHANGELOG.rst 
new/agate-dbf-0.2.2/CHANGELOG.rst
--- old/agate-dbf-0.2.1/CHANGELOG.rst   2019-03-16 17:18:51.0 +0100
+++ new/agate-dbf-0.2.2/CHANGELOG.rst   2020-07-07 19:34:14.0 +0200
@@ -1,3 +1,8 @@
+0.2.2 - July 7, 2020
+
+
+* No longer lowercase column names.
+
 0.2.1 - March 16, 2019
 --
 
@@ -8,7 +13,7 @@
 -
 
 * Remove dependency on monkeypatching.
-* Upgraded required agate to ``1.5.0``.
+* Upgrade required agate to ``1.5.0``.
 
 0.1.0 - February 5, 2016
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/agate-dbf-0.2.1/agatedbf/table.py 
new/agate-dbf-0.2.2/agatedbf/table.py
--- old/agate-dbf-0.2.1/agatedbf/table.py   2019-03-16 17:18:51.0 
+0100
+++ new/agate-dbf-0.2.2/agatedbf/table.py   2020-07-07 19:34:14.0 
+0200
@@ -18,7 +18,7 @@
 Path to an DBF file to load. Note that due to limitations of the
 dependency you can not pass a file handle. It must be a path.
 """
-dbf = DBF(path, load=True, lowernames=True, encoding=encoding, 
recfactory=recfactory)
+dbf = DBF(path, load=True, encoding=encoding, recfactory=recfactory)
 table = agate.Table(dbf.records, column_names=dbf.field_names)
 
 return table
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/agate-dbf-0.2.1/docs/conf.py 
new/agate-dbf-0.2.2/docs/conf.py
--- old/agate-dbf-0.2.1/docs/conf.py2019-03-16 17:18:51.0 +0100
+++ new/agate-dbf-0.2.2/docs/conf.py2020-07-07 19:34:14.0 +0200
@@ -52,9 +52,9 @@
 # built documents.
 #
 # The short X.Y version.
-version = '0.2.1'
+version = '0.2.2'
 # The full version, including alpha/beta/rc tags.
-release = '0.2.1'
+release = '0.2.2'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/agate-dbf-0.2.1/examples/testdbf_converted.csv 
new/agate-dbf-0.2.2/examples/testdbf_converted.csv
--- old/agate-dbf-0.2.1/examples/testdbf_converted.csv  2019-03-16 
17:18:51.0 +0100
+++ new/agate-dbf-0.2.2/examples/testdbf_converted.csv  2020-07-07 
19:34:14.0 +0200
@@ -1,4 +1,4 @@
-statefp10,cd111fp,geoid10,namelsad10,lsad10,cdsessn,mtfcc10,funcstat10,aland10,awater10,intptlat10,intptlon10
+STATEFP10,CD111FP,GEOID10,NAMELSAD10,LSAD10,CDSESSN,MTFCC10,FUNCSTAT10,ALAND10,AWATER10,INTPTLAT10,INTPTLON10
 27,8,2708,Congressional District 
8,C2,111,G5200,False,71546663636,12416573076,47.2400052,-92.9323194
 27,5,2705,Congressional District 
5,C2,111,G5200,False,320220379,15485125,44.9781144,-93.2928317
 27,4,2704,Congressional District 
4,C2,111,G5200,False,510623511,58464019,44.9957711,-93.0835230
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/agate-dbf-0.2.1/setup.py new/agate-dbf-0.2.2/setup.py
--- old/agate-dbf-0.2.1/setup.py2019-03-16 17:18:51.0 +0100
+++ new/agate-dbf-0.2.2/setup.py2020-07-07 19:34:14.0 +0200
@@ -9,7 +9,7 @@
 
 setup(
 name='agate-dbf',
-version='0.2.1',
+

commit python-py2pack for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package python-py2pack for openSUSE:Factory 
checked in at 2020-11-10 15:08:54

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


Package is "python-py2pack"

Tue Nov 10 15:08:54 2020 rev:50 rq:847493 version:0.8.6

Changes:

--- /work/SRC/openSUSE:Factory/python-py2pack/python-py2pack.changes
2020-10-27 19:01:47.406867446 +0100
+++ /work/SRC/openSUSE:Factory/.python-py2pack.new.11331/python-py2pack.changes 
2020-11-10 15:09:03.741476034 +0100
@@ -1,0 +2,16 @@
+Tue Nov 10 13:04:27 UTC 2020 - Thomas Bechtold 
+
+- update to 0.8.6:
+  * Fix test/exampes/py2pack-opensuse.dsc
+  * enhance test\_template with augmented opensuse and update examples to 0.8.5
+  * cleanup script basename filter
+  * update test reference
+  * Fix flake8 errors
+  * remove python2 from travis and tox
+  * change test suite block
+  * Replace python3\_only scripts with python\_alternatives
+  * migrate metadate fetch to JSON API
+  * remove python2 shims
+  * update copyright header
+
+---

Old:

  py2pack-0.8.5.tar.gz

New:

  py2pack-0.8.6.tar.gz



Other differences:
--
++ python-py2pack.spec ++
--- /var/tmp/diff_new_pack.vleANu/_old  2020-11-10 15:09:04.321474834 +0100
+++ /var/tmp/diff_new_pack.vleANu/_new  2020-11-10 15:09:04.325474825 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-py2pack
-Version:0.8.5
+Version:0.8.6
 Release:0
 Summary:Script for generating distribution packages from Python 
packages on PyPI
 License:Apache-2.0

++ py2pack-0.8.5.tar.gz -> py2pack-0.8.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/py2pack-0.8.5/.travis.yml 
new/py2pack-0.8.6/.travis.yml
--- old/py2pack-0.8.5/.travis.yml   2020-10-27 09:59:12.0 +0100
+++ new/py2pack-0.8.6/.travis.yml   2020-11-10 10:44:47.0 +0100
@@ -8,8 +8,6 @@
 env: TOX_ENV=py38
   - python: 3.8
 env: TOX_ENV=docs
-  - python: 2.7
-env: TOX_ENV=py27
   - python: 3.6
 env: TOX_ENV=py36
 install:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/py2pack-0.8.5/AUTHORS new/py2pack-0.8.6/AUTHORS
--- old/py2pack-0.8.5/AUTHORS   2020-10-27 09:59:45.0 +0100
+++ new/py2pack-0.8.6/AUTHORS   2020-11-10 10:45:22.0 +0100
@@ -1,16 +1,14 @@
 Adam Spiers 
 Antonio Larrosa 
+Ben Greiner 
 Christopher Yeleighton 
 Dan Čermák 
 Dirk Mueller 
 Karol Babioch 
-Manuel Schnitzer 
 Markéta Calábková 
 Matěj Cepl 
 MeggyCal 
 Oliver Kurz 
-Sascha Peilicke 
-Sascha Peilicke 
 Sebastian Wagner 
 Thomas Bechtold 
 Tomáš Chvátal 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/py2pack-0.8.5/ChangeLog new/py2pack-0.8.6/ChangeLog
--- old/py2pack-0.8.5/ChangeLog 2020-10-27 09:59:45.0 +0100
+++ new/py2pack-0.8.6/ChangeLog 2020-11-10 10:45:22.0 +0100
@@ -1,6 +1,21 @@
 CHANGES
 ===
 
+0.8.6
+-
+
+* Fix test/exampes/py2pack-opensuse.dsc
+* enhance test\_template with augmented opensuse and update examples to 0.8.5
+* cleanup script basename filter
+* update test reference
+* Fix flake8 errors
+* remove python2 from travis and tox
+* change test suite block
+* Replace python3\_only scripts with python\_alternatives
+* migrate metadate fetch to JSON API
+* remove python2 shims
+* update copyright header
+
 0.8.5
 -
 
@@ -160,9 +175,6 @@
 * Remove py33 and py34 from travis and tox
 * travis: Fix python 3 test env variables
 * Don't list "./" in names for extracted zip/tar file
-* Fix minimal version detection for requirements
-* Support requirement markers
-* Fix tests\_require handling
 * Adjust docs for testing
 * Remove whitespaces from README
 
@@ -173,15 +185,3 @@
 * Add myself as co-maintainer
 * Mention the "--run" as note in README
 * protect against failed eval of setup.py code fragments
-* Also collect tests\_require metadata
-* Remove distutils cleanup command
-* Remove pypip.in images from README
-* Relicense under Apache-2.0
-* Move setup.py sandbox run to extra file
-* Also parse entry\_points when given as dict
-* Fix company name in spec template
-
-0.5.0
--
-
-* Bump version to 0.5.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/py2pack-0.8.5/PKG-INFO new/py2pack-0.8.6/PKG-INFO
--- old/py2pack-0.8.5/PKG-INFO  2020-10-27 09:59:45.669325400 +0100
+++ new/py2pack-0.8.6/PKG-INFO  2020-11-10 10:45:22.593189200 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 

commit rssguard for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package rssguard for openSUSE:Factory 
checked in at 2020-11-10 15:08:51

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


Package is "rssguard"

Tue Nov 10 15:08:51 2020 rev:20 rq:847496 version:3.8.0

Changes:

--- /work/SRC/openSUSE:Factory/rssguard/rssguard.changes2020-09-01 
20:11:05.720696003 +0200
+++ /work/SRC/openSUSE:Factory/.rssguard.new.11331/rssguard.changes 
2020-11-10 15:09:02.537478527 +0100
@@ -1,0 +2,61 @@
+Tue Nov 10 12:01:28 UTC 2020 - aloi...@gmx.com
+
+- Update to version 3.8.0
+  Added:
+  * Support for labels:
++ Labels are even synchronizable for Inoreader and TT-RSS.
++ Each message can have assigned multiple labels.
++ Feed's view now offers "Labels" folder with handy
+  per-label filtering.
++ Labels assigned in message are now even available in
+  message filtering.
++ You can assign arbitrary color to each of your labels.
+  * Numix is now default icon theme.
+  * Built-in web-base message viewer now uses mini.css
+(https://minicss.org) instead of Bootstrap. This will make
+viewing of messages quite faster while being more
+lightweight.
+  * Message body now has "auto" reading direction - enhances
+support for RTL messages.
+  * JSON feeds (https://www.jsonfeed.org) are now supported.
+  * Added basic CLI interface, run "rssguard --help" to see its
+API overview.
+  * Message view header context menu now uses non-closable menu
+for column show/hide operations.
+  * Background color of rows in feed/message list can now be
+alternated.
+  * Message titles are now properly sanitized before messages
+are processed by message filters.
+  * There is a new documentation
+
(https://github.com/martinrotter/rssguard/blob/master/resources/docs/Documentation.md#documentation)
+  Fixed/changed:
+  * Correct icons are now downloaded when fetching metadata for
+RSS/ATOM/JSON feeds.
+  * Fixed crash when clearing contents of statusbar.
+  * Translations synchronized.
+  * Message previwers were completely overhauled to support
+displaying of (active) labels.
+  * Codebase of web-based and text-based message previwers was
+unified, they now share all common code.
+  * Some fixes for message filtering mechanism.
+  * Scroll position within message viewer is now remembered if
+message gets reloaded.
+  * Text-based message viewer now handles newlines better.
+  * Fixed OPML export/import for some feeds/categories which
+could be skipped due to various specific errors.
+  * Synchronization logic for "feeds" is now more universal,
+resulting in better behavior when running "Sync in" actions.
+  * Obsolete Qt-related code removed/replaced.
+  * Source code does not use hardcoded GUI colors anymore. They
+are fetched from active skin instead, making some texts more
+readable and GUI more consistent.
+  * Fixed various MySQL-related problems and errors which
+rendered MySQL DB backend unusable for many users.
+  * Icon themes are not bundled on Linux anymore, RSS Guard
+fully relies on system-wide themes now.
+  * Big thanks to ttrss.info for providing Tiny Tiny RSS account
+for testing.
+- Rebased rssguard-3.6.3-add_library_version.patch as
+  rssguard-3.8.0-add_library_version.patch
+
+---

Old:

  rssguard-3.6.3-add_library_version.patch
  rssguard-3.7.2.tar.gz

New:

  rssguard-3.8.0-add_library_version.patch
  rssguard-3.8.0.tar.gz



Other differences:
--
++ rssguard.spec ++
--- /var/tmp/diff_new_pack.sPHfx6/_old  2020-11-10 15:09:03.361476821 +0100
+++ /var/tmp/diff_new_pack.sPHfx6/_new  2020-11-10 15:09:03.365476813 +0100
@@ -16,17 +16,17 @@
 #
 
 
-%define libver  3_7_2
+%define libver  3_8_0
 Name:   rssguard
-Version:3.7.2
+Version:3.8.0
 Release:0
 Summary:RSS/ATOM/RDF feed reader
 License:GPL-3.0-only AND AGPL-3.0-or-later
 URL:https://github.com/martinrotter/rssguard
 Source0:
https://github.com/martinrotter/rssguard/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Source1:%{name}.changes
-# PATCH-FIX-OPENSUSE rssguard-3.6.3-add_library_version.patch aloi...@gmx.com 
-- add version to shared library
-Patch2: rssguard-3.6.3-add_library_version.patch
+# PATCH-FIX-OPENSUSE rssguard-3.8.0-add_library_version.patch aloi...@gmx.com 
-- add version to shared library
+Patch2: rssguard-3.8.0-add_library_version.patch
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  hicolor-icon-theme

++ rssguard-3.6.3-add_library_version.patch 

commit u-boot for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package u-boot for openSUSE:Factory checked 
in at 2020-11-10 14:22:28

Comparing /work/SRC/openSUSE:Factory/u-boot (Old)
 and  /work/SRC/openSUSE:Factory/.u-boot.new.11331 (New)


Package is "u-boot"

Tue Nov 10 14:22:28 2020 rev:135 rq:847487 version:2020.10

Changes:

--- /work/SRC/openSUSE:Factory/u-boot/u-boot.changes2020-11-09 
13:58:16.083852007 +0100
+++ /work/SRC/openSUSE:Factory/.u-boot.new.11331/u-boot.changes 2020-11-10 
14:22:29.719285440 +0100
@@ -16 +16,3 @@
-  Fixes CVE-2020-8432 (bsc#1162198) and CVE-2020-10648 (bsc#1167209).
+  * Fixes bsc#1175902, bsc#1166971, bsc#1160464, CVE-2020-8432 (bsc#1162198)
+and CVE-2020-10648 (bsc#1167209)
+  * Implements jsc#SLE-12150
@@ -80,0 +83 @@
+  * Fixes bsc#1172283
@@ -197,0 +201 @@
+  * Fixes bsc#1174029



Other differences:
--





commit xfce4-weather-plugin for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package xfce4-weather-plugin for 
openSUSE:Factory checked in at 2020-11-10 13:46:45

Comparing /work/SRC/openSUSE:Factory/xfce4-weather-plugin (Old)
 and  /work/SRC/openSUSE:Factory/.xfce4-weather-plugin.new.11331 (New)


Package is "xfce4-weather-plugin"

Tue Nov 10 13:46:45 2020 rev:4 rq:847433 version:0.10.2

Changes:

--- 
/work/SRC/openSUSE:Factory/xfce4-weather-plugin/xfce4-weather-plugin.changes
2020-02-24 15:55:56.043938864 +0100
+++ 
/work/SRC/openSUSE:Factory/.xfce4-weather-plugin.new.11331/xfce4-weather-plugin.changes
 2020-11-10 13:53:35.630834059 +0100
@@ -1,0 +2,19 @@
+Tue Nov 10 02:24:02 UTC 2020 - Maurizio Galli 
+
+- Update to 0.10.2
+  - Switch to the 2.0 API of met.no (1.9 was deprecated)
+  - weather-icon: fix use-after-free in get_user_icons_dir
+  - Fix GTimeVal deprecation
+  - Update copyright/bugzilla URLs
+  - Add basic GitLab pipeline
+  - bxo#16717: Move from exo-csource to xdt-csource
+  - Fix unprintable character in summary subtitle (bug #16394)
+  - Improve contrast in weather report, similar to GTK2 + Adwaita 
+(bxo#15806)
+  - Enable keyboard scrolling in Details panel (bxo#15912)
+  - Support solarnoon and solarmidnight (bxo#15771)
+  - Fix day/night calculation (bxo#16091)
+  - Translation Updates
+- Removed obsolete patch 
+  xfce4-weather-plugin-fix-no-return-in-nonvoid-function.patch
+---

Old:

  xfce4-weather-plugin-0.10.1.tar.bz2
  xfce4-weather-plugin-fix-no-return-in-nonvoid-function.patch

New:

  xfce4-weather-plugin-0.10.2.tar.bz2



Other differences:
--
++ xfce4-weather-plugin.spec ++
--- /var/tmp/diff_new_pack.vHxTtn/_old  2020-11-10 13:53:36.206832970 +0100
+++ /var/tmp/diff_new_pack.vHxTtn/_new  2020-11-10 13:53:36.210832963 +0100
@@ -20,15 +20,13 @@
 %define panel_version 4.12.0
 %define plugin weather
 Name:   xfce4-weather-plugin
-Version:0.10.1
+Version:0.10.2
 Release:0
 Summary:Weather Condition Monitoring Plugin for the Xfce Panel
 License:GPL-2.0-or-later
 Group:  System/GUI/XFCE
 URL:https://docs.xfce.org/panel-plugins/xfce4-weather-plugin
 Source0:
https://archive.xfce.org/src/panel-plugins/%{name}/0.10/%{name}-%{version}.tar.bz2
-# PATCH-FIX-UPSTREAM 
xfce4-panel-plugin-weather-fix-no-return-in-nonvoid-function.patch 
g...@opensuse.org -- Return bogus value in case of an unhandled switch case
-Patch0: xfce4-weather-plugin-fix-no-return-in-nonvoid-function.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  pkgconfig
@@ -71,7 +69,7 @@
 Provides translations for the "%{name}" package.
 
 %prep
-%autosetup -p1
+%autosetup
 
 %build
 %if %{with git}

++ xfce4-weather-plugin-0.10.1.tar.bz2 -> 
xfce4-weather-plugin-0.10.2.tar.bz2 ++
 89172 lines of diff (skipped)




commit selinux-autorelabel for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package selinux-autorelabel for 
openSUSE:Factory checked in at 2020-11-10 13:53:17

Comparing /work/SRC/openSUSE:Factory/selinux-autorelabel (Old)
 and  /work/SRC/openSUSE:Factory/.selinux-autorelabel.new.11331 (New)


Package is "selinux-autorelabel"

Tue Nov 10 13:53:17 2020 rev:2 rq:847452 version:3.1

Changes:

--- /work/SRC/openSUSE:Factory/selinux-autorelabel/selinux-autorelabel.changes  
2020-11-02 09:42:30.989732161 +0100
+++ 
/work/SRC/openSUSE:Factory/.selinux-autorelabel.new.11331/selinux-autorelabel.changes
   2020-11-10 13:53:49.406808020 +0100
@@ -1,0 +2,6 @@
+Tue Nov 10 11:05:33 UTC 2020 - Thorsten Kukuk 
+
+- Set PATH in selinux-autorelabel, some systemd versions strip too
+  much
+
+---



Other differences:
--
++ selinux-autorelabel.spec ++
--- /var/tmp/diff_new_pack.aU7wd4/_old  2020-11-10 13:53:49.946806999 +0100
+++ /var/tmp/diff_new_pack.aU7wd4/_new  2020-11-10 13:53:49.950806992 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
+
 Name:   selinux-autorelabel
 Version:3.1
 Release:0

++ selinux-autorelabel ++
--- /var/tmp/diff_new_pack.aU7wd4/_old  2020-11-10 13:53:49.970806954 +0100
+++ /var/tmp/diff_new_pack.aU7wd4/_new  2020-11-10 13:53:49.974806946 +0100
@@ -3,7 +3,8 @@
 # Do automatic relabelling
 #
 
-# . /etc/init.d/functions
+# Set PATH, some systemd versions strip it too much
+PATH=/usr/sbin:/sbin:$PATH
 
 # If the user has this (or similar) UEFI boot order:
 #
@@ -51,7 +52,7 @@
echo $"*** Relabeling could take a very long time, depending on file"
echo $"*** system size and speed of hard drives."
 
-   FORCE=`cat /.autorelabel`
+   FORCE=$(cat /.autorelabel)
 [ -x "/usr/sbin/quotaoff" ] && /usr/sbin/quotaoff -aug
/usr/sbin/fixfiles $FORCE restore
 fi




commit perl-Class-C3 for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package perl-Class-C3 for openSUSE:Factory 
checked in at 2020-11-10 13:46:47

Comparing /work/SRC/openSUSE:Factory/perl-Class-C3 (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Class-C3.new.11331 (New)


Package is "perl-Class-C3"

Tue Nov 10 13:46:47 2020 rev:23 rq:847428 version:0.35

Changes:

--- /work/SRC/openSUSE:Factory/perl-Class-C3/perl-Class-C3.changes  
2018-04-25 10:00:52.731883391 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Class-C3.new.11331/perl-Class-C3.changes   
2020-11-10 13:53:38.466828699 +0100
@@ -1,0 +2,12 @@
+Tue Nov 10 03:07:00 UTC 2020 - Tina Müller 
+
+- updated to 0.35
+   see /usr/share/doc/packages/perl-Class-C3/Changes
+
+  0.35 - 2020-11-09
+  - update bundled ExtUtils::HasCompiler to 0.022
+  - support PUREPERL_ONLY environment variable during installation
+  - fix no-XS test to not require newer Test::More that declared prereq
+  - drop optional Devel::Hide prereq
+
+---

Old:

  Class-C3-0.34.tar.gz

New:

  Class-C3-0.35.tar.gz



Other differences:
--
++ perl-Class-C3.spec ++
--- /var/tmp/diff_new_pack.0N50wk/_old  2020-11-10 13:53:38.978827731 +0100
+++ /var/tmp/diff_new_pack.0N50wk/_new  2020-11-10 13:53:38.982827723 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Class-C3
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,18 +12,18 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   perl-Class-C3
-Version:0.34
+Version:0.35
 Release:0
 %define cpan_name Class-C3
-Summary:Pragma to Use the C3 Method Resolution Order Algorithm
+Summary:Pragma to use the C3 method resolution order algorithm
 License:Artistic-1.0 OR GPL-1.0-or-later
 Group:  Development/Libraries/Perl
-Url:http://search.cpan.org/dist/Class-C3/
+URL:https://metacpan.org/release/%{cpan_name}
 Source0:
https://cpan.metacpan.org/authors/id/H/HA/HAARG/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
@@ -48,11 +48,11 @@
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %check
-%{__make} test
+make test
 
 %install
 %perl_make_install
@@ -62,5 +62,6 @@
 %files -f %{name}.files
 %defattr(-,root,root,755)
 %doc Changes README
+%license LICENSE
 
 %changelog

++ Class-C3-0.34.tar.gz -> Class-C3-0.35.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-C3-0.34/Changes new/Class-C3-0.35/Changes
--- old/Class-C3-0.34/Changes   2018-04-19 18:26:49.0 +0200
+++ new/Class-C3-0.35/Changes   2020-11-09 07:20:13.0 +0100
@@ -1,5 +1,11 @@
 Revision history for Perl extension Class::C3.
 
+0.35 - 2020-11-09
+- update bundled ExtUtils::HasCompiler to 0.022
+- support PUREPERL_ONLY environment variable during installation
+- fix no-XS test to not require newer Test::More that declared prereq
+- drop optional Devel::Hide prereq
+
 0.34 - 2018-04-19
 - update bundled ExtUtils::HasCompiler to 0.021
 - fix some examples in pod
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-C3-0.34/LICENSE new/Class-C3-0.35/LICENSE
--- old/Class-C3-0.34/LICENSE   1970-01-01 01:00:00.0 +0100
+++ new/Class-C3-0.35/LICENSE   2020-11-09 07:20:32.0 +0100
@@ -0,0 +1,374 @@
+Terms of the Perl programming language system itself
+
+a) the GNU General Public License as published by the Free
+   Software Foundation; either version 1, or (at your option) any
+   later version, or
+b) the "Artistic License"
+
+--- The GNU General Public License, Version 1, February 1989 ---
+
+This software is Copyright (c) 2020 by Stevan Little, 
.
+
+This is free software, licensed under:
+
+  The GNU General Public License, Version 1, February 1989
+
+GNU GENERAL PUBLIC LICENSE
+ Version 1, February 1989
+
+ Copyright (C) 1989 Free Software Foundation, Inc.
+ 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+
+ Everyone is permitted to copy and distribute verbatim c

commit kea for openSUSE:Factory

2020-11-10 Thread root
Hello community,

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

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


Package is "kea"

Tue Nov 10 13:47:10 2020 rev:5 rq:847461 version:1.9.1

Changes:

--- /work/SRC/openSUSE:Factory/kea/kea.changes  2020-09-07 21:34:39.317361282 
+0200
+++ /work/SRC/openSUSE:Factory/.kea.new.11331/kea.changes   2020-11-10 
13:53:47.370811868 +0100
@@ -1,0 +2,11 @@
+Tue Nov 10 08:04:38 UTC 2020 - Jan Engelhardt 
+
+- Update to release 1.9.1
+  * New parameters: ddns-use-conflict-resolution,
+ip-reservations-unique, ddns-update-on-renew,
+cache-threshold, cache-max-age.
+  * Support for new IPv6-only-preferred option for DHCPv4.
+  * Added support of basic HTTP authentication in HTTP library,
+control agent.
+
+---

Old:

  kea-1.8.0.tar.gz
  kea-1.8.0.tar.gz.asc

New:

  kea-1.9.1.tar.gz
  kea-1.9.1.tar.gz.asc



Other differences:
--
++ kea.spec ++
--- /var/tmp/diff_new_pack.aEZQwJ/_old  2020-11-10 13:53:47.894810878 +0100
+++ /var/tmp/diff_new_pack.aEZQwJ/_new  2020-11-10 13:53:47.898810870 +0100
@@ -17,33 +17,33 @@
 
 
 %define asiodns_sover 1
-%define asiolink_sover 9
+%define asiolink_sover 19
 %define cc_sover 8
 %define cfgclient_sover 10
 %define cryptolink_sover 5
 %define database_sover 6
-%define dhcppp_sover 19
-%define dhcp_ddns_sover 3
-%define dhcpsrv_sover 27
+%define dhcppp_sover 30
+%define dhcp_ddns_sover 14
+%define dhcpsrv_sover 39
 %define dnspp_sover 5
-%define eval_sover 12
+%define eval_sover 22
 %define exceptions_sover 0
-%define hooks_sover 15
-%define http_sover 7
+%define hooks_sover 27
+%define http_sover 20
 %define log_sover 6
-%define mysql_sover 6
-%define pgsql_sover 4
-%define process_sover 11
-%define stats_sover 6
+%define mysql_sover 17
+%define pgsql_sover 15
+%define process_sover 22
+%define stats_sover 16
 %define util_io_sover 0
-%define util_sover 16
+%define util_sover 28
 %if 0%{?suse_version} >= 1500
 %bcond_without regen_files
 %else
 %bcond_withregen_files
 %endif
 Name:   kea
-Version:1.8.0
+Version:1.9.1
 Release:0
 Summary:Dynamic Host Configuration Protocol daemon
 License:MPL-2.0
@@ -61,7 +61,7 @@
 BuildRequires:  libmysqlclient-devel
 BuildRequires:  libtool >= 2
 BuildRequires:  log4cplus-devel
-BuildRequires:  pkgconfig >= 0.23
+BuildRequires:  pkg-config >= 0.23
 BuildRequires:  postgresql-server-devel
 BuildRequires:  python-rpm-macros
 BuildRequires:  python3

++ kea-1.8.0.tar.gz -> kea-1.9.1.tar.gz ++
/work/SRC/openSUSE:Factory/kea/kea-1.8.0.tar.gz 
/work/SRC/openSUSE:Factory/.kea.new.11331/kea-1.9.1.tar.gz differ: char 5, line 
1





commit gsequencer for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package gsequencer for openSUSE:Factory 
checked in at 2020-11-10 13:53:14

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


Package is "gsequencer"

Tue Nov 10 13:53:14 2020 rev:81 rq:847463 version:3.6.14

Changes:

--- /work/SRC/openSUSE:Factory/gsequencer/gsequencer.changes2020-11-04 
18:30:31.920395169 +0100
+++ /work/SRC/openSUSE:Factory/.gsequencer.new.11331/gsequencer.changes 
2020-11-10 13:53:48.558809623 +0100
@@ -1,0 +2,19 @@
+Mon Nov  9 22:32:55 UTC 2020 - Joël Krähemann 
+
+- new upstream v3.6.14 fixed AgsPlayback cleanup. 
+
+---
+Mon Nov  9 17:07:27 UTC 2020 - Joël Krähemann 
+
+- new upstream v3.6.13 fixed double free as accessing fx recalls
+  of Ags*DssiBridge and Ags*Lv2Bridge.
+- new functional tests and a new parallel integration tests make
+  target.
+
+---
+Thu Nov  5 18:47:34 UTC 2020 - Joël Krähemann 
+
+- new upstream v3.6.7 fixed more pthread remains, caused a SIGSEGV
+  while opening SF2 or SFZ files.
+
+---

Old:

  gsequencer-3.6.6.tar.gz

New:

  gsequencer-3.6.14.tar.gz



Other differences:
--
++ gsequencer.spec ++
--- /var/tmp/diff_new_pack.SjuEwb/_old  2020-11-10 13:53:49.210808391 +0100
+++ /var/tmp/diff_new_pack.SjuEwb/_new  2020-11-10 13:53:49.214808383 +0100
@@ -22,7 +22,7 @@
 # activated with --with run_functional_tests command line switch.
 %bcond_with run_functional_tests
 Name:   gsequencer
-Version:3.6.6
+Version:3.6.14
 Release:0
 Summary:Audio processing engine
 License:GPL-3.0-or-later AND AGPL-3.0-or-later AND GFDL-1.3-only

++ gsequencer-3.6.6.tar.gz -> gsequencer-3.6.14.tar.gz ++
/work/SRC/openSUSE:Factory/gsequencer/gsequencer-3.6.6.tar.gz 
/work/SRC/openSUSE:Factory/.gsequencer.new.11331/gsequencer-3.6.14.tar.gz 
differ: char 13, line 1




commit python-daiquiri for openSUSE:Factory

2020-11-10 Thread root
iquiri-2.1.1/daiquiri/__init__.py 
new/daiquiri-3.0.0/daiquiri/__init__.py
--- old/daiquiri-2.1.1/daiquiri/__init__.py 2020-02-27 10:43:46.0 
+0100
+++ new/daiquiri-3.0.0/daiquiri/__init__.py 2020-11-06 13:43:33.0 
+0100
@@ -19,7 +19,7 @@
 
 
 class KeywordArgumentAdapter(logging.LoggerAdapter):
-"""Logger adapter to add keyword arguments to log record's extra data
+"""Logger adapter to add keyword arguments to log record's extra data.
 
 Keywords passed to the log call are added to the "extra"
 dictionary passed to the underlying logger so they are emitted
@@ -37,23 +37,22 @@
 # Make a new extra dictionary combining the values we were
 # given when we were constructed and anything from kwargs.
 extra = self.extra.copy()
-if 'extra' in kwargs:
-extra.update(kwargs.pop('extra'))
+if "extra" in kwargs:
+extra.update(kwargs.pop("extra"))
 # Move any unknown keyword arguments into the extra
 # dictionary.
 for name in list(kwargs.keys()):
-if name == 'exc_info':
+if name == "exc_info":
 continue
 extra[name] = kwargs.pop(name)
-extra['_daiquiri_extra_keys'] = set(extra.keys())
-kwargs['extra'] = extra
+extra["_daiquiri_extra_keys"] = set(extra.keys())
+kwargs["extra"] = extra
 return msg, kwargs
 
 if sys.version_info.major == 2:
+
 def setLevel(self, level):
-"""
-Set the specified level on the underlying logger.
-"""
+"""Set the specified level on the underlying logger."""
 self.logger.setLevel(level)
 
 
@@ -67,16 +66,21 @@
 return KeywordArgumentAdapter(logging.getLogger(name), kwargs)
 
 
-def setup(level=logging.WARNING, outputs=[output.STDERR], program_name=None,
-  capture_warnings=True, set_excepthook=True):
-"""Setup Python logging.
+def setup(
+level=logging.WARNING,
+    outputs=[output.STDERR],
+program_name=None,
+capture_warnings=True,
+set_excepthook=True,
+):
+"""Set up Python logging.
 
-This will setup basic handlers for Python logging.
+This sets up basic handlers for Python logging.
 
 :param level: Root log level.
 :param outputs: Iterable of outputs to log to.
 :param program_name: The name of the program. Auto-detected if not set.
-:param capture_warnings: Capture warnings from the `warnings' module.
+:param capture_warnings: Capture warnings from the `warnings` module.
 """
 root_logger = logging.getLogger(None)
 
@@ -99,7 +103,8 @@
 
 def logging_excepthook(exc_type, value, tb):
 program_logger.critical(
-"".join(traceback.format_exception(exc_type, value, tb)))
+"".join(traceback.format_exception(exc_type, value, tb))
+)
 
 sys.excepthook = logging_excepthook
 
@@ -107,15 +112,15 @@
 logging.captureWarnings(True)
 
 
-def parse_and_set_default_log_levels(default_log_levels, separator='='):
+def parse_and_set_default_log_levels(default_log_levels, separator="="):
 """Set default log levels for some loggers.
 
 :param default_log_levels: List of strings with format
-
-
+   
 """
-return set_default_log_levels((pair.split(separator, 1)
-   for pair in default_log_levels))
+return set_default_log_levels(
+(pair.split(separator, 1) for pair in default_log_levels)
+)
 
 
 def set_default_log_levels(loggers_and_log_levels):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/daiquiri-2.1.1/daiquiri/formatter.py 
new/daiquiri-3.0.0/daiquiri/formatter.py
--- old/daiquiri-2.1.1/daiquiri/formatter.py2020-01-16 11:05:47.0 
+0100
+++ new/daiquiri-3.0.0/daiquiri/formatter.py2020-11-06 13:43:33.0 
+0100
@@ -9,6 +9,8 @@
 #WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 #License for the specific language governing permissions and limitations
 #under the License.
+"""Formatters."""
+
 import logging
 
 from pythonjsonlogger import jsonlogger
@@ -26,20 +28,21 @@
 
 
 class ColorFormatter(logging.Formatter):
-"""Colorizes log output"""
+"""Colorizes log output."""
 
 # TODO(jd) Allow configuration
 LEVEL_COLORS = {
-logging.DEBUG: '\033[00;32m',  # GREEN
-logging.INFO: '\033[00;36m',  # CYAN
-logging.WARN: '\033[01;33m',  # BOLD YELLOW
-logging.ERROR: '\033[01;31m',  # BOLD RED
-logg

commit python-kafka-python for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package python-kafka-python for 
openSUSE:Factory checked in at 2020-11-10 13:46:39

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


Package is "python-kafka-python"

Tue Nov 10 13:46:39 2020 rev:8 rq:847416 version:2.0.2

Changes:

--- /work/SRC/openSUSE:Factory/python-kafka-python/python-kafka-python.changes  
2020-04-16 23:04:29.907741277 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-kafka-python.new.11331/python-kafka-python.changes
   2020-11-10 13:53:32.538839903 +0100
@@ -1,0 +2,8 @@
+Tue Nov 10 08:03:56 UTC 2020 - Dirk Mueller 
+
+- update to 2.0.2:
+  * KIP-54: Implement sticky partition assignment strategy (aynroot / PR #2057)
+  * Fix consumer deadlock when heartbeat thread request timeout (huangcuiyang 
/ PR #2064)
+  * Python 3.8 support (Photonios / PR #2088)
+
+---

Old:

  kafka-python-2.0.1.tar.gz

New:

  kafka-python-2.0.2.tar.gz



Other differences:
--
++ python-kafka-python.spec ++
--- /var/tmp/diff_new_pack.odHHJf/_old  2020-11-10 13:53:33.058838921 +0100
+++ /var/tmp/diff_new_pack.odHHJf/_new  2020-11-10 13:53:33.058838921 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-kafka-python
-Version:2.0.1
+Version:2.0.2
 Release:0
 Summary:Pure Python client for Apache Kafka
 License:Apache-2.0

++ kafka-python-2.0.1.tar.gz -> kafka-python-2.0.2.tar.gz ++
 3853 lines of diff (skipped)




commit rss2email for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package rss2email for openSUSE:Factory 
checked in at 2020-11-10 13:46:14

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


Package is "rss2email"

Tue Nov 10 13:46:14 2020 rev:8 rq:847327 version:3.12.2

Changes:

--- /work/SRC/openSUSE:Factory/rss2email/rss2email.changes  2020-09-04 
11:11:28.947011750 +0200
+++ /work/SRC/openSUSE:Factory/.rss2email.new.11331/rss2email.changes   
2020-11-10 13:53:17.270868763 +0100
@@ -1,0 +2,7 @@
+Sun Nov  8 13:22:23 UTC 2020 - Andreas Stieger 
+
+- fix failure with Feedparser 6 [boo#1178085]
+  adding rss2email-3.12.2-feedparser-6.patch from upstream
+- clean up spec file to current python Macros, run tests
+
+---

New:

  rss2email-3.12.2-feedparser-6.patch



Other differences:
--
++ rss2email.spec ++
--- /var/tmp/diff_new_pack.QObF5x/_old  2020-11-10 13:53:17.830867704 +0100
+++ /var/tmp/diff_new_pack.QObF5x/_new  2020-11-10 13:53:17.838867689 +0100
@@ -22,44 +22,43 @@
 Summary:Receive RSS feeds by email
 License:GPL-2.0-only OR GPL-3.0-only
 Group:  Development/Languages/Python
-URL:http://pypi.python.org/pypi/rss2email/
-Source: rss2email-%{version}.tar.gz
-BuildRequires:  python3
-BuildRequires:  python3-feedparser
-BuildRequires:  python3-html2text
-BuildRequires:  python3-setuptools
-Requires:   python3
-Requires:   python3-feedparser
-Requires:   python3-html2text
-Requires:   python3-xml
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+URL:https://github.com/rss2email/rss2email
+Source: 
https://github.com/rss2email/rss2email/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
+Patch0: rss2email-3.12.2-feedparser-6.patch
+BuildRequires:  %{python_module feedparser >= 6.0.0}
+BuildRequires:  %{python_module html2text >= 3.0.1}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{pythons}
+BuildRequires:  python-rpm-generators
 BuildArch:  noarch
+%{?python_enable_dependency_generator}
 
 %description
-A free, open-source tool for Windows, Mac OS and UNIX for
-getting news from RSS feeds in email. It is a simple program which you
-can run in your crontab.  It watches RSS feeds and sends you nicely
-formatted email message for each new item.
+Lets users receive news from RSS feeds in email. Intended to be run from
+a crontab, watches RSS feeds and sends formatted email messages for new
+items.
 
 %prep
-%setup -q -n rss2email-%{version}
+%autosetup -p1
 
 %build
-python3 setup.py build
+%python_build
 
 %install
-python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
+%python_install
 install -Dm644 r2e.1 %{buildroot}/%{_mandir}/man1/r2e.1
 
+%check
+pushd test
+%pyunittest --verbose
+popd
+
 %files
-%defattr(-,root,root,-)
-%dir %{python3_sitelib}/rss2email
-%{python3_sitelib}/rss2email/*
-%dir %{python3_sitelib}/rss2email-%{version}-py*.egg-info
-%{python3_sitelib}/rss2email-%{version}-py*.egg-info
-%_mandir/*/r2e.1*
-%doc AUTHORS CHANGELOG README.rst
 %license COPYING
-/usr/bin/r2e
+%doc AUTHORS CHANGELOG README.rst
+%{python3_sitelib}/rss2email
+%{python3_sitelib}/rss2email-%{version}-py*.egg-info
+%{_bindir}/r2e
+%{_mandir}/*/r2e.1%{?ext_man}
 
 %changelog

++ rss2email-3.12.2-feedparser-6.patch ++
From: Andreas Stieger 
Date: Sun, 08 Nov 2020 13:11:39 +
Subject: Support feedparser 6
References: https://github.com/rss2email/rss2email/issues/73 
https://github.com/rss2email/rss2email/pull/149 
https://bugzilla.opensuse.org/show_bug.cgi?id=1178085

Traceback (most recent call last):
  File "/usr/bin/r2e", line 5, in 
rss2email.main.run()
  File "/usr/lib/python3.8/site-packages/rss2email/main.py", line 186, in run
args.func(feeds=feeds, args=args)
  File "/usr/lib/python3.8/site-packages/rss2email/command.py", line 90, in run
feed.run(send=args.send)
  File "/usr/lib/python3.8/site-packages/rss2email/feed.py", line 912, in run
for (guid, state, sender, message) in self._process(parsed):
  File "/usr/lib/python3.8/site-packages/rss2email/feed.py", line 381, in 
_process
self._check_for_errors(parsed)
  File "/usr/lib/python3.8/site-packages/rss2email/feed.py", line 436, in 
_check_for_errors
elif isinstance(exc, _feedparser.zlib.error):
AttributeError: module 'feedparser' has no attribute 'zlib'

Index: rss2email-3.12.2/rss2email/feed.py
===
--- rss2email-3.12.2.orig/rss2email/feed.py
+++ rss2email-3.12.2/rss2email/feed.py
@@ -433,7

commit cvise for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package cvise for openSUSE:Factory checked 
in at 2020-11-10 13:46:41

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


Package is "cvise"

Tue Nov 10 13:46:41 2020 rev:20 rq:847448 version:1.9.0+git.20201110.a000f9e

Changes:

--- /work/SRC/openSUSE:Factory/cvise/cvise.changes  2020-11-06 
23:46:13.647133603 +0100
+++ /work/SRC/openSUSE:Factory/.cvise.new.11331/cvise.changes   2020-11-10 
13:53:33.498838089 +0100
@@ -1,0 +2,20 @@
+Tue Nov 10 09:01:19 UTC 2020 - mli...@suse.cz
+
+- Update to version 1.9.0+git.20201110.a000f9e:
+  * Improve printing of multiple reduced test-cases.
+  * Remove -n auto from pytest config.
+  * Start reduction for multiple files by the biggest.
+  * Fix reduction for multiple files when --commands is used.
+
+---
+Tue Nov 10 07:17:30 UTC 2020 - mli...@suse.cz
+
+- Update to version 1.8.0+git.20201110.8cdd0e5:
+  * Bump to v1.9.0.
+  * Use -n auto for pytest.
+  * Clean up Cmake warnings.
+  * Disable builds with older LLVM releases.
+  * Add setup.cfg file for pytest.
+  * Update build configurations.
+
+---

Old:

  cvise-1.8.0+git.20201106.e7821e8.tar.xz

New:

  cvise-1.9.0+git.20201110.a000f9e.tar.xz



Other differences:
--
++ cvise.spec ++
--- /var/tmp/diff_new_pack.Li3dNd/_old  2020-11-10 13:53:34.550836101 +0100
+++ /var/tmp/diff_new_pack.Li3dNd/_new  2020-11-10 13:53:34.550836101 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   cvise
-Version:1.8.0+git.20201106.e7821e8
+Version:1.9.0+git.20201110.a000f9e
 Release:0
 Summary:Super-parallel Python port of the C-Reduce
 License:BSD-3-Clause

++ _service ++
--- /var/tmp/diff_new_pack.Li3dNd/_old  2020-11-10 13:53:34.598836009 +0100
+++ /var/tmp/diff_new_pack.Li3dNd/_new  2020-11-10 13:53:34.598836009 +0100
@@ -4,7 +4,7 @@
 git
 enable
 cvise
-1.8.0+git.%cd.%h
+1.9.0+git.%cd.%h
   
   
 *.tar

++ cvise-1.8.0+git.20201106.e7821e8.tar.xz -> 
cvise-1.9.0+git.20201110.a000f9e.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvise-1.8.0+git.20201106.e7821e8/.travis.yml 
new/cvise-1.9.0+git.20201110.a000f9e/.travis.yml
--- old/cvise-1.8.0+git.20201106.e7821e8/.travis.yml2020-11-06 
13:13:21.0 +0100
+++ new/cvise-1.9.0+git.20201110.a000f9e/.travis.yml2020-11-10 
09:54:40.0 +0100
@@ -27,47 +27,35 @@
 
 matrix:
   - include:
-- name: DEBUG build (LLVM 9)
-  stage: build
-  env:
-- BUILD_TYPE=DEBUG
-- DIST=opensusetw-llvm9
-
-- name: DEBUG build (LLVM 10)
-  stage: build
-  env:
-- BUILD_TYPE=DEBUG
-- DIST=opensusetw-llvm10
-
-- name: COVERAGE build (LLVM 10)
+- name: COVERAGE build (LLVM 11)
   stage: build
   env:
 - BUILD_TYPE=COVERAGE
-- DIST=opensusetw-llvm10
+- DIST=opensusetw-llvm11
 
-- name: UBSAN build (LLVM 10)
+- name: UBSAN build (LLVM 11)
   stage: build
   env:
 - BUILD_TYPE=UBSAN
-- DIST=opensusetw-llvm10
+- DIST=opensusetw-llvm11
 
-- name: ASAN build (LLVM 10)
+- name: ASAN build (LLVM 11)
   stage: build
   env:
 - BUILD_TYPE=ASAN
-- DIST=opensusetw-llvm10
+- DIST=opensusetw-llvm11
 
-- name: Fedora 32 DEBUG build (LLVM 9)
+- name: Fedora 33 DEBUG build (LLVM 11)
   stage: build
   env:
 - BUILD_TYPE=DEBUG
-- DIST=fedora32-llvm9
+- DIST=fedora33-llvm11
 
-- name: Fedora dev DEBUG build (LLVM 10)
+- name: Fedora dev DEBUG build (LLVM 11)
   stage: build
   env:
 - BUILD_TYPE=DEBUG
-- DIST=fedoradev-llvm10
+- DIST=fedoradev-llvm11
 
 before_install:
   # podman needs a basic register set up (packaging bug in the ppa)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvise-1.8.0+git.20201106.e7821e8/CMakeLists.txt 
new/cvise-1.9.0+git.20201110.a000f9e/CMakeLists.txt
--- old/cvise-1.8.0+git.20201106.e7821e8/CMakeLists.txt 2020-11-06 
13:13:21.0 +0100
+++ new/cvise-1.9.0+git.20201110.a000f9e/CMakeLists.txt 2020-11-10 
09:54:40.0 +0100
@@ -122,11 +122,11 @@
 set(cvise_PACKAGE "cvise")
 set(cvise_PACKAGE_BUGREPORT   "https://github.com/marxin/cvise/issues;)
 set(cvise_PACKAGE_NAME"cvise")
-set(cvise_PACKAGE_STRING  "cvise 1.8.0")
+set(cvise_PACKAGE_STRING  "cvise 1.9.0")
 set(cvise_PACKAGE_TARNAME "cvise")
 set(cvise_PACKAGE_URL  

commit ledger for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ledger for openSUSE:Factory checked 
in at 2020-11-10 13:46:00

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


Package is "ledger"

Tue Nov 10 13:46:00 2020 rev:11 rq:847335 version:3.2.1

Changes:

--- /work/SRC/openSUSE:Factory/ledger/ledger.changes2020-06-03 
20:34:40.941578812 +0200
+++ /work/SRC/openSUSE:Factory/.ledger.new.11331/ledger.changes 2020-11-10 
13:53:10.674881230 +0100
@@ -1,0 +2,6 @@
+Mon Nov  2 15:15:15 UTC 2020 - o...@aepfle.de
+
+- Remove trailing .sh suffix from bash-completion to make sure
+  ledger is actually recognized as a command with completions
+
+---



Other differences:
--
++ ledger.spec ++
--- /var/tmp/diff_new_pack.fSTzsQ/_old  2020-11-10 13:53:11.194880248 +0100
+++ /var/tmp/diff_new_pack.fSTzsQ/_new  2020-11-10 13:53:11.198880240 +0100
@@ -52,13 +52,13 @@
 
 %install
 %cmake_install
-install -m 644 -D contrib/ledger-completion.bash 
%{buildroot}%{_datadir}/bash-completion/completions/ledger.sh
+install -m 644 -D contrib/ledger-completion.bash 
%{buildroot}%{_datadir}/bash-completion/completions/ledger
 
 %files
 %license LICENSE.md
 %doc README.md
 %{_mandir}/man1/%{name}.1%{?ext_man}
 %{_bindir}/ledger
-%{_datadir}/bash-completion/completions/ledger.sh
+%{_datadir}/bash-completion/completions/ledger
 
 %changelog




commit python-gphoto2 for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package python-gphoto2 for openSUSE:Factory 
checked in at 2020-11-10 13:47:05

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


Package is "python-gphoto2"

Tue Nov 10 13:47:05 2020 rev:8 rq:847465 version:2.2.4

Changes:

--- /work/SRC/openSUSE:Factory/python-gphoto2/python-gphoto2.changes
2020-10-13 15:46:08.469462539 +0200
+++ /work/SRC/openSUSE:Factory/.python-gphoto2.new.11331/python-gphoto2.changes 
2020-11-10 13:53:44.562817176 +0100
@@ -1,0 +2,7 @@
+Tue Nov 10 07:17:16 UTC 2020 - aloi...@gmx.com
+
+- Update to version 2.2.4
+  * Built with SWIG version 4.0.2 to provide Python 3.8
+compatibility.
+
+---

Old:

  gphoto2-2.2.3.tar.gz

New:

  gphoto2-2.2.4.tar.gz



Other differences:
--
++ python-gphoto2.spec ++
--- /var/tmp/diff_new_pack.YTEKcQ/_old  2020-11-10 13:53:44.998816352 +0100
+++ /var/tmp/diff_new_pack.YTEKcQ/_new  2020-11-10 13:53:45.002816344 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python-gphoto2
-Version:2.2.3
+Version:2.2.4
 Release:0
 Summary:Python interface to libgphoto2
 License:GPL-3.0-or-later

++ gphoto2-2.2.3.tar.gz -> gphoto2-2.2.4.tar.gz ++
 156818 lines of diff (skipped)




commit ibus-rime for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ibus-rime for openSUSE:Factory 
checked in at 2020-11-10 13:47:03

Comparing /work/SRC/openSUSE:Factory/ibus-rime (Old)
 and  /work/SRC/openSUSE:Factory/.ibus-rime.new.11331 (New)


Package is "ibus-rime"

Tue Nov 10 13:47:03 2020 rev:14 rq:847437 version:1.4.1~git20200712.33b2755

Changes:

--- /work/SRC/openSUSE:Factory/ibus-rime/ibus-rime.changes  2020-09-29 
19:01:51.11027 +0200
+++ /work/SRC/openSUSE:Factory/.ibus-rime.new.11331/ibus-rime.changes   
2020-11-10 13:53:43.758818696 +0100
@@ -1,0 +2,5 @@
+Mon Nov  9 13:07:56 UTC 2020 - Hillwood Yang 
+
+- Set Requires tag for brise, ibus-rime need it. 
+
+---



Other differences:
--
++ ibus-rime.spec ++
--- /var/tmp/diff_new_pack.s89yD4/_old  2020-11-10 13:53:44.282817705 +0100
+++ /var/tmp/diff_new_pack.s89yD4/_new  2020-11-10 13:53:44.286817697 +0100
@@ -37,6 +37,7 @@
 BuildRequires:  libnotify-devel
 BuildRequires:  librime-devel >= 1.0
 BuildRequires:  opencc-devel
+Requires:   brise
 Requires:   rime
 
 %description
@@ -46,10 +47,10 @@
 %setup -q
 
 %build
-make %{?_smp_mflags}
+%make_build
 
 %install
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+%make_install
 
 %files
 %defattr(-,root,root)




commit yakuake for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package yakuake for openSUSE:Factory checked 
in at 2020-11-10 13:45:52

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


Package is "yakuake"

Tue Nov 10 13:45:52 2020 rev:61 rq:846811 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/yakuake/yakuake.changes  2020-10-13 
15:43:30.201394224 +0200
+++ /work/SRC/openSUSE:Factory/.yakuake.new.11331/yakuake.changes   
2020-11-10 13:53:07.198887801 +0100
@@ -1,0 +2,11 @@
+Thu Nov  5 22:48:08 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- Changes since 20.08.2:
+  * Consider renaming tabs via DBus interactive. This allows it
+to override a previouly interactively set title. (kde#428400)
+
+---

Old:

  yakuake-20.08.2.tar.xz
  yakuake-20.08.2.tar.xz.sig

New:

  yakuake-20.08.3.tar.xz
  yakuake-20.08.3.tar.xz.sig



Other differences:
--
++ yakuake.spec ++
--- /var/tmp/diff_new_pack.KLALLJ/_old  2020-11-10 13:53:07.726886803 +0100
+++ /var/tmp/diff_new_pack.KLALLJ/_new  2020-11-10 13:53:07.730886795 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   yakuake
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Terminal for KDE
 License:GPL-2.0-or-later


++ yakuake-20.08.2.tar.xz -> yakuake-20.08.3.tar.xz ++
 1790 lines of diff (skipped)




commit python-web.py for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package python-web.py for openSUSE:Factory 
checked in at 2020-11-10 13:46:27

Comparing /work/SRC/openSUSE:Factory/python-web.py (Old)
 and  /work/SRC/openSUSE:Factory/.python-web.py.new.11331 (New)


Package is "python-web.py"

Tue Nov 10 13:46:27 2020 rev:13 rq:847353 version:0.62

Changes:

--- /work/SRC/openSUSE:Factory/python-web.py/python-web.py.changes  
2020-08-13 10:12:50.102591522 +0200
+++ /work/SRC/openSUSE:Factory/.python-web.py.new.11331/python-web.py.changes   
2020-11-10 13:53:27.962848553 +0100
@@ -1,0 +2,9 @@
+Mon Nov  9 21:01:36 UTC 2020 - Michael Ströder 
+
+- version update to 0.62:
+  * Fixed: application.load() assumes ctx.path will be a latin1 string #687
+  * Fixed: can not reset session data to same value as initialized. #683
+  * Fixed: can not set session expire time. #655
+  * Fixed: not export session store `MemoryStore`.
+
+---

Old:

  web.py-0.61.tar.gz

New:

  web.py-0.62.tar.gz



Other differences:
--
++ python-web.py.spec ++
--- /var/tmp/diff_new_pack.ElIAe1/_old  2020-11-10 13:53:28.878846822 +0100
+++ /var/tmp/diff_new_pack.ElIAe1/_new  2020-11-10 13:53:28.882846814 +0100
@@ -15,11 +15,12 @@
 # Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
+
 %define skip_python2 1
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-web.py
-Version:0.61
+Version:0.62
 Release:0
 Summary:web.py: makes web apps
 License:SUSE-Public-Domain AND BSD-3-Clause

++ web.py-0.61.tar.gz -> web.py-0.62.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/web.py-0.61/PKG-INFO new/web.py-0.62/PKG-INFO
--- old/web.py-0.61/PKG-INFO2020-07-27 17:34:14.777639600 +0200
+++ new/web.py-0.62/PKG-INFO2020-11-09 12:20:52.308910800 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: web.py
-Version: 0.61
+Version: 0.62
 Summary: web.py: makes web apps
 Home-page: http://webpy.org/
 Author: Aaron Swartz
@@ -15,11 +15,11 @@
 [![build 
status](https://secure.travis-ci.org/webpy/webpy.png?branch=master)](https://travis-ci.org/webpy/webpy)
 [![Codecov Test 
Coverage](https://codecov.io/gh/webpy/webpy/branch/master/graphs/badge.svg?style=flat)](https://codecov.io/gh/webpy/webpy)
 
-The latest stable release `0.61` only supports Python >= 3.5.
+The latest stable release `0.62` only supports Python >= 3.5.
 To install it, please run:
 ```
 # For Python 3
-python3 -m pip install web.py==0.61
+python3 -m pip install web.py==0.62
 ```
 
 If you are still using Python 2.7, then please use web.py version 0.51
@@ -32,12 +32,13 @@
 You can also download it from [GitHub 
Releases](https://github.com/webpy/webpy/releases)
 page, then install it manually:
 ```
-unzip webpy-0.61.zip
-cd webpy-0.61/
+unzip webpy-0.62.zip
+cd webpy-0.62/
 python3 setup.py install
 ```
 
 Note: `0.5x` (e.g. 0.50, 0.51) are our last releases which support 
Python 2.
+Note: `0.6x` (e.g. 0.60, 0.61, 0.62) are our last releases which 
support Python 3.5.
 
 Platform: any
 Classifier: License :: Public Domain
@@ -47,5 +48,6 @@
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: 3.8
+Classifier: Programming Language :: Python :: 3.9
 Requires-Python: >=3.5
 Description-Content-Type: text/markdown
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/web.py-0.61/README.md new/web.py-0.62/README.md
--- old/web.py-0.61/README.md   2020-07-27 16:43:53.0 +0200
+++ new/web.py-0.62/README.md   2020-11-09 10:11:31.0 +0100
@@ -5,11 +5,11 @@
 [![build 
status](https://secure.travis-ci.org/webpy/webpy.png?branch=master)](https://travis-ci.org/webpy/webpy)
 [![Codecov Test 
Coverage](https://codecov.io/gh/webpy/webpy/branch/master/graphs/badge.svg?style=flat)](https://codecov.io/gh/webpy/webpy)
 
-The latest stable release `0.61` only supports Python >= 3.5.
+The latest stable release `0.62` only supports Python >= 3.5.
 To install it, please run:
 ```
 # For Python 3
-python3 -m pip install web.py==0.61
+python3 -m pip install web.py==0.62
 ```
 
 If you are still using Python 2.7, then please use web.py version 0.51
@@ -22,9 +22,10 @@
 You can also download it from [GitHub 
Releases](https://github.com/webpy/webpy/releases)
 page, then install it manually:
 

commit perl-String-CRC32 for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package perl-String-CRC32 for 
openSUSE:Factory checked in at 2020-11-10 13:46:51

Comparing /work/SRC/openSUSE:Factory/perl-String-CRC32 (Old)
 and  /work/SRC/openSUSE:Factory/.perl-String-CRC32.new.11331 (New)


Package is "perl-String-CRC32"

Tue Nov 10 13:46:51 2020 rev:4 rq:847431 version:2

Changes:

--- /work/SRC/openSUSE:Factory/perl-String-CRC32/perl-String-CRC32.changes  
2019-11-06 14:04:30.512685709 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-String-CRC32.new.11331/perl-String-CRC32.changes
   2020-11-10 13:53:39.362827005 +0100
@@ -1,0 +2,9 @@
+Tue Nov 10 03:11:21 UTC 2020 - Tina Müller 
+
+- updated to 2
+   see /usr/share/doc/packages/perl-String-CRC32/Changes
+
+  2.000 2020-11-09
+  - Switch to XSLoader rather than DynaLoader (GH #5, thanks to 
atoomic)
+
+---

Old:

  String-CRC32-1.8.tar.gz

New:

  String-CRC32-2.tar.gz



Other differences:
--
++ perl-String-CRC32.spec ++
--- /var/tmp/diff_new_pack.Zr04Cv/_old  2020-11-10 13:53:39.822826136 +0100
+++ /var/tmp/diff_new_pack.Zr04Cv/_new  2020-11-10 13:53:39.826826128 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-String-CRC32
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   perl-String-CRC32
-Version:1.8
+Version:2
 Release:0
 %define cpan_name String-CRC32
 Summary:Perl interface for cyclic redundancy check generation
 License:SUSE-Public-Domain
 Group:  Development/Libraries/Perl
-Url:https://metacpan.org/release/%{cpan_name}
+URL:https://metacpan.org/release/%{cpan_name}
 Source0:
https://cpan.metacpan.org/authors/id/L/LE/LEEJO/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ String-CRC32-1.8.tar.gz -> String-CRC32-2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/String-CRC32-1.8/CRC32.pm new/String-CRC32-2/CRC32.pm
--- old/String-CRC32-1.8/CRC32.pm   2019-11-01 08:58:46.0 +0100
+++ new/String-CRC32-2/CRC32.pm 2020-11-09 08:19:22.0 +0100
@@ -5,13 +5,13 @@
 use warnings;
 
 require Exporter;
-require DynaLoader;
+use XSLoader ();
 
 use vars qw/ @ISA $VERSION @EXPORT_OK @EXPORT /;
 
-@ISA = qw(Exporter DynaLoader);
+@ISA = qw(Exporter);
 
-$VERSION = 1.800;
+$VERSION = 2.000;
 
 # Items to export into caller's namespace by default
 @EXPORT = qw(crc32);
@@ -19,6 +19,6 @@
 # Other items we are prepared to export if requested
 @EXPORT_OK = qw();
 
-bootstrap String::CRC32;
+XSLoader::load( 'String::CRC32', $VERSION );
 
 1;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/String-CRC32-1.8/Changes new/String-CRC32-2/Changes
--- old/String-CRC32-1.8/Changes2019-11-01 08:58:46.0 +0100
+++ new/String-CRC32-2/Changes  2020-11-09 08:19:22.0 +0100
@@ -1,5 +1,8 @@
 Revision history for String::CRC32
 
+2.000 2020-11-09
+- Switch to XSLoader rather than DynaLoader (GH #5, thanks to atoomic)
+
 1.800 2019-11-01
 - Perldoc tweaks, GH #3, thanks to mattias-p
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/String-CRC32-1.8/META.json 
new/String-CRC32-2/META.json
--- old/String-CRC32-1.8/META.json  2019-11-01 08:59:35.0 +0100
+++ new/String-CRC32-2/META.json2020-11-09 08:19:42.0 +0100
@@ -44,6 +44,6 @@
  "url" : "https://github.com/leejo/string-crc32;
   }
},
-   "version" : 1.8,
+   "version" : 2,
"x_serialization_backend" : "JSON::PP version 4.02"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/String-CRC32-1.8/META.yml new/String-CRC32-2/META.yml
--- old/String-CRC32-1.8/META.yml   2019-11-01 08:59:35.0 +0100
+++ new/String-CRC32-2/META.yml 2020-11-09 08:19:42.0 +0100
@@ -22,5 +22,5 @@
   homepage: https://metacpan.org/module/String::CRC32
   license: https://wiki.creativecommons.org/wiki/Public_domain
   repository: https://github.com/leejo/string-crc32
-version: 1.8
+version: 2
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/String-CRC32-1.8/README.md 
new/String-CRC32-2/README.md
--- old/String-CRC32-1.8/README.md  2019-11-01 

commit amsynth for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package amsynth for openSUSE:Factory checked 
in at 2020-11-10 13:47:07

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


Package is "amsynth"

Tue Nov 10 13:47:07 2020 rev:9 rq:847466 version:1.12.0

Changes:

--- /work/SRC/openSUSE:Factory/amsynth/amsynth.changes  2020-09-22 
21:15:03.292132749 +0200
+++ /work/SRC/openSUSE:Factory/.amsynth.new.11331/amsynth.changes   
2020-11-10 13:53:45.794814847 +0100
@@ -1,0 +2,19 @@
+Mon Nov  9 22:36:56 UTC 2020 - Atri Bhattacharya 
+
+- Update to version 1.12.0:
+  + Improved HiDPI autodetection and added
+--force-device-scale-factor command line option
+(gh#amsynth/amsynth#174).
+  + Presets are now available to be loaded in VST hosts using the
+generic GUI (e.g. REAPER).
+  + Fixed a bug that caused MIDI channel and polyphony settings
+from the command line or configuration file to be ignored
+(gh#amsynth/amsynth#170).
+  + Fixed a bug that caused MIDI channel setting to be ignored
+when sending MIDI over JACK (gh#amsynth/amsynth#170).
+  + Fixed a MIDI parsing bug in the VST plugin that caused stuck
+notes in REAPER.
+  + Fixed a crash when compiled with LASH support but without a
+LASH server running.
+
+---

Old:

  amsynth-1.11.0.tar.gz

New:

  amsynth-1.12.0.tar.gz



Other differences:
--
++ amsynth.spec ++
--- /var/tmp/diff_new_pack.4XIoB5/_old  2020-11-10 13:53:46.374813750 +0100
+++ /var/tmp/diff_new_pack.4XIoB5/_new  2020-11-10 13:53:46.378813744 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   amsynth
-Version:1.11.0
+Version:1.12.0
 Release:0
 Summary:Analog modelling (a.k.a virtual analog) software synthesizer
 License:GPL-2.0-or-later

++ amsynth-1.11.0.tar.gz -> amsynth-1.12.0.tar.gz ++
 55740 lines of diff (skipped)




commit arpwatch-ethercodes for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package arpwatch-ethercodes for 
openSUSE:Factory checked in at 2020-11-10 13:46:54

Comparing /work/SRC/openSUSE:Factory/arpwatch-ethercodes (Old)
 and  /work/SRC/openSUSE:Factory/.arpwatch-ethercodes.new.11331 (New)


Package is "arpwatch-ethercodes"

Tue Nov 10 13:46:54 2020 rev:765 rq:847429 version:20201026_100149

Changes:

--- /work/SRC/openSUSE:Factory/arpwatch-ethercodes/arpwatch-ethercodes.changes  
2016-04-12 19:34:28.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.arpwatch-ethercodes.new.11331/arpwatch-ethercodes.changes
   2020-11-10 13:53:40.538824782 +0100
@@ -1,0 +2,17 @@
+Tue Nov 10 08:42:20 UTC 2020 - Johannes Segitz 
+
+- Removed URL for source0 as this causes issues with our bots
+
+---
+Mon Oct 26 10:14:43 UTC 2020 - Hans-Peter Jansen 
+
+- Update to version 20201026_100149
+
+---
+Wed Sep 26 09:51:54 UTC 2018 - Hans-Peter Jansen 
+
+- supply a new python3 script, that fetches (in local builds) and
+  generates ethercodes.dat 
+- update to version 20180926_160344
+
+---
@@ -4,0 +22,5 @@
+
+---
+Fri Jun 19 12:54:32 UTC 2015 - lmue...@suse.com
+
+- merge oui data base from 2015-06-19

Old:

  oui.txt

New:

  fetch_ethercodes.py
  oui.csv



Other differences:
--
++ arpwatch-ethercodes.spec ++
--- /var/tmp/diff_new_pack.kV8Pvu/_old  2020-11-10 13:53:41.834822332 +0100
+++ /var/tmp/diff_new_pack.kV8Pvu/_new  2020-11-10 13:53:41.834822332 +0100
@@ -1,7 +1,8 @@
 #
 # spec file for package arpwatch-ethercodes
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2018 LISA GmbH, Bingen, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,43 +13,45 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   arpwatch-ethercodes
-Version:2016.03.28
+Version:20201026_100149
 Release:0
 Summary:Ethercodes Data for arpwatch
 License:BSD-3-Clause
 Group:  Productivity/Networking/Diagnostic
-Url:http://standards.ieee.org/regauth/oui/
-Source0:http://standards.ieee.org/regauth/oui/oui.txt
-BuildRequires:  arpwatch-ethercodes-build
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+URL:https://standards.ieee.org/products-services/regauth/index.html
+# can't use url as it's not stable and bots will decline submission. Update it 
+# from here: http://standards-oui.ieee.org/oui/oui.csv
+Source0:oui.csv
+Source1:fetch_ethercodes.py
+BuildRequires:  python3
 BuildArch:  noarch
 
 %description
-OUI and company ID data as fetched from IEEE.org prepared for arpwatch.
+Fetch OUI and company ID data from IEEE.org prepared for arpwatch.
 
 %prep
+%setup -q -cT
+cp -p %{SOURCE0} .
+cp -p %{SOURCE1} .
 
 %build
-pushd %{_datadir}/arpwatch
-./massagevendor >${RPM_BUILD_DIR}/ethercodes.dat < %{SOURCE0}
-popd
-if [ ! -s ethercodes.dat ]; then
-   echo "File ethercodes.dat is empty!"
-   exit 1
-fi
+# update oui.csv by executing
+#  python3 fetch_ethercodes.py -vvtp arpwatch-ethercodes.spec
+# in a local build
+
+# (re)generate ethercodes.dat from oui.csv
+python3 fetch_ethercodes.py -vvkt
 
 %install
-mkdir -p \
-   %{buildroot}/%{_datadir}/arpwatch
-install -m 0444 ethercodes.dat %{buildroot}/%{_datadir}/arpwatch
+install -Dm0444 ethercodes.dat %{buildroot}/%{_datadir}/arpwatch/ethercodes.dat
 
 %files
-%defattr(-,root,root)
-%{_datadir}/arpwatch
+%dir %{_datadir}/arpwatch
+%{_datadir}/arpwatch/ethercodes.dat
 
 %changelog

++ fetch_ethercodes.py ++
#! /usr/bin/env python3
"""
Synopsis:
Fetch and generate ethercodes data for arpwatch

Usage: {appname} [-hVvfkt][-T sec][-O ouifile][-o outfile][-p spec]
   -h, --help   this message
   -V, --versionprint version and exit
   -v, --verboseverbose mode (cumulative)
   -f, --force  force operation
   -k, --keep   keep existing {ouifile}
   -t, --timestamp  print timestamp
   -T, --deltat sec tolerance in timestamp comparison
(default: {deltat} sec.)

commit openscap for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package openscap for openSUSE:Factory 
checked in at 2020-11-10 13:45:55

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


Package is "openscap"

Tue Nov 10 13:45:55 2020 rev:68 rq:847312 version:1.3.4

Changes:

--- /work/SRC/openSUSE:Factory/openscap/openscap.changes2020-10-02 
17:42:38.102929387 +0200
+++ /work/SRC/openSUSE:Factory/.openscap.new.11331/openscap.changes 
2020-11-10 13:53:08.254885805 +0100
@@ -1,0 +2,11 @@
+Mon Nov  9 13:10:09 UTC 2020 - Marcus Meissner 
+
+- openscap-leap-cpe-15.12.patch: add CPE dict entries for openSUSE
+  Leap 15.1 and 15.2
+
+---
+Sat Oct 31 08:33:48 UTC 2020 - Marcus Meissner 
+
+- add dbus-1-devel buildrequires to enable systemd tests (bsc#1178301)
+
+---

New:

  openscap-leap-cpe-15.12.patch



Other differences:
--
++ openscap.spec ++
--- /var/tmp/diff_new_pack.f9tZjL/_old  2020-11-10 13:53:09.126884157 +0100
+++ /var/tmp/diff_new_pack.f9tZjL/_new  2020-11-10 13:53:09.134884141 +0100
@@ -39,6 +39,7 @@
 Source5:oscap-scan.service
 Source6:oscap-scan.sh
 Patch0: openscap-new-suse.patch
+Patch1: openscap-leap-cpe-15.12.patch
 URL:https://www.open-scap.org/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  asciidoc
@@ -57,6 +58,7 @@
 BuildRequires:  libxml2-devel
 # Use package name cause of "have choice for perl(XML::Parser): brp-check-suse 
perl-XML-Parser"
 BuildRequires:  cmake
+BuildRequires:  dbus-1-devel
 BuildRequires:  gcc-c++
 BuildRequires:  libblkid-devel
 BuildRequires:  libcap-devel
@@ -172,6 +174,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 %if 0%{?with_bindings}

++ openscap-leap-cpe-15.12.patch ++
Index: openscap-1.3.4/cpe/openscap-cpe-dict.xml
===
--- openscap-1.3.4.orig/cpe/openscap-cpe-dict.xml
+++ openscap-1.3.4/cpe/openscap-cpe-dict.xml
@@ -205,6 +205,14 @@
 openSUSE Leap 15.0
 http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.opensuse:def:150
   
+  
+openSUSE Leap 15.1
+http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.opensuse:def:151
+  
+  
+openSUSE Leap 15.2
+http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.opensuse:def:152
+  
   
 openSUSE All Versions
 http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.opensuse:def:1
Index: openscap-1.3.4/cpe/openscap-cpe-oval.xml
===
--- openscap-1.3.4.orig/cpe/openscap-cpe-oval.xml
+++ openscap-1.3.4/cpe/openscap-cpe-oval.xml
@@ -678,6 +678,32 @@
 
   
 
+
+  
+openSUSE Leap 15.1
+
+openSUSE Leap 15.1
+
+
+The operating system installed on the 
system is openSUSE Leap 15.1
+  
+  
+
+  
+
+
+  
+openSUSE Leap 15.2
+
+openSUSE Leap 15.2
+
+
+The operating system installed on the 
system is openSUSE Leap 15.2
+  
+  
+
+  
+
 
   
 Wind River Linux
@@ -1067,6 +1093,16 @@
   
   
 
+http://oval.mitre.org/XMLSchema/oval-definitions-5#linux;>
+  
+  
+
+http://oval.mitre.org/XMLSchema/oval-definitions-5#linux;>
+  
+  
+
 http://oval.mitre.org/XMLSchema/oval-definitions-5#independent;>
@@ -1379,6 +1415,12 @@
 http://oval.mitre.org/XMLSchema/oval-definitions-5#linux;>
   ^15.0$
 
+http://oval.mitre.org/XMLSchema/oval-definitions-5#linux;>
+  ^15.1$
+
+

commit perl-DBD-MariaDB for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package perl-DBD-MariaDB for 
openSUSE:Factory checked in at 2020-11-10 13:45:58

Comparing /work/SRC/openSUSE:Factory/perl-DBD-MariaDB (Old)
 and  /work/SRC/openSUSE:Factory/.perl-DBD-MariaDB.new.11331 (New)


Package is "perl-DBD-MariaDB"

Tue Nov 10 13:45:58 2020 rev:3 rq:847306 version:1.21

Changes:

--- /work/SRC/openSUSE:Factory/perl-DBD-MariaDB/perl-DBD-MariaDB.changes
2020-03-11 18:52:36.579601462 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-DBD-MariaDB.new.11331/perl-DBD-MariaDB.changes 
2020-11-10 13:53:09.566883325 +0100
@@ -1,0 +2,5 @@
+Mon Nov  9 15:25:54 UTC 2020 - Dirk Stoecker 
+
+- Fix build
+
+---



Other differences:
--
++ perl-DBD-MariaDB.spec ++
--- /var/tmp/diff_new_pack.dHEuWN/_old  2020-11-10 13:53:10.222882085 +0100
+++ /var/tmp/diff_new_pack.dHEuWN/_new  2020-11-10 13:53:10.222882085 +0100
@@ -16,19 +16,29 @@
 #
 
 
-%define cpan_name DBD-MariaDB
 Name:   perl-DBD-MariaDB
 Version:1.21
 Release:0
+%define cpan_name DBD-MariaDB
 Summary:MariaDB and MySQL driver for the Perl5 Database Interface (DBI)
 License:Artistic-1.0 OR GPL-1.0-or-later
 Group:  Development/Libraries/Perl
 URL:https://metacpan.org/release/%{cpan_name}
 Source0:
https://cpan.metacpan.org/authors/id/P/PA/PALI/%{cpan_name}-%{version}.tar.gz
-Source1:cpanspec.yml
+Source1:test-setup.sh
+Source2:test-clean.sh
+Source3:cpanspec.yml
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  perl
+BuildRequires:  perl-macros
+BuildRequires:  perl(DBI) >= 1.608
+BuildRequires:  perl(DBI::Const::GetInfoType)
+BuildRequires:  perl(Devel::CheckLib) >= 1.12
+BuildRequires:  perl(Test::Deep)
+BuildRequires:  perl(Test::More) >= 0.90
+Requires:   perl(DBI) >= 1.608
+%{perl_requires}
 # MANUAL BEGIN
-Source2:test-setup.sh
-Source3:test-clean.sh
 BuildRequires:  libmariadb-devel
 BuildRequires:  mariadb
 BuildRequires:  zlib-devel
@@ -58,15 +68,6 @@
 Requires:   perl(strict)
 Requires:   perl(warnings)
 # MANUAL END
-BuildRequires:  perl
-BuildRequires:  perl-macros
-BuildRequires:  perl(DBI) >= 1.608
-BuildRequires:  perl(DBI::Const::GetInfoType)
-BuildRequires:  perl(Devel::CheckLib) >= 1.12
-BuildRequires:  perl(Test::Deep)
-BuildRequires:  perl(Test::More) >= 0.90
-Requires:   perl(DBI) >= 1.608
-%{perl_requires}
 
 %description
 *DBD::MariaDB* is the Perl5 Database Interface driver for MariaDB and MySQL
@@ -80,17 +81,16 @@
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
+# fails to detect the paths since perl 5.32
+perl Makefile.PL verbose INSTALLDIRS=vendor OPTIMIZE="%{optflags}" 
--libs="-L%{_libdir} -lmariadb" --cflags="-I%{_includedir}/mysql"
 make %{?_smp_mflags}
 
 %check
-# MANUAL BEGIN
 # Setup environment and start database
-. %{SOURCE2}
+. %{SOURCE1}
 HARNESS_OPTIONS=j4 make %{?_smp_mflags} test
 # Stop database
-. %{SOURCE3}
-# MANUAL END
+. %{SOURCE2}
 
 %install
 %perl_make_install
@@ -98,7 +98,8 @@
 %perl_gen_filelist
 
 %files -f %{name}.files
-%license LICENSE
+%defattr(-,root,root,755)
 %doc Changes Changes.historic
+%license LICENSE
 
 %changelog

++ cpanspec.yml ++
--- /var/tmp/diff_new_pack.dHEuWN/_old  2020-11-10 13:53:10.282881971 +0100
+++ /var/tmp/diff_new_pack.dHEuWN/_new  2020-11-10 13:53:10.286881964 +0100
@@ -10,8 +10,8 @@
 #summary: override summary from CPAN
 #no_testing: broken upstream
 sources:
- Source2:test-setup.sh
- Source3:test-clean.sh
+ - test-setup.sh
+ - test-clean.sh
 preamble: |-
  BuildRequires:  libmariadb-devel
  BuildRequires:  mariadb
@@ -50,12 +50,14 @@
 # sed on %{name}.files
 #license: SUSE-NonFree
 #skip_noarch: 1
-#custom_build: |-
-#./Build build flags=%{?_smp_mflags} --myflag
+custom_build: |-
+ # fails to detect the paths since perl 5.32
+ perl Makefile.PL verbose INSTALLDIRS=vendor OPTIMIZE="%{optflags}" 
--libs="-L%{_libdir} -lmariadb" --cflags="-I%{_includedir}/mysql"
+ make %{?_smp_mflags}
 custom_test: |-
  # Setup environment and start database
- . %{SOURCE2}
+ . %{SOURCE1}
  HARNESS_OPTIONS=j4 make %{?_smp_mflags} test
  # Stop database
- . %{SOURCE3}
+ . %{SOURCE2}
 #ignore_requires: Bizarre::Module




commit grafana-ha-cluster-dashboards for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package grafana-ha-cluster-dashboards for 
openSUSE:Factory checked in at 2020-11-10 13:46:07

Comparing /work/SRC/openSUSE:Factory/grafana-ha-cluster-dashboards (Old)
 and  /work/SRC/openSUSE:Factory/.grafana-ha-cluster-dashboards.new.11331 
(New)


Package is "grafana-ha-cluster-dashboards"

Tue Nov 10 13:46:07 2020 rev:5 rq:847321 version:1.0.3+git.1600360477.8b8f9ce

Changes:

--- 
/work/SRC/openSUSE:Factory/grafana-ha-cluster-dashboards/grafana-ha-cluster-dashboards.changes
  2020-09-22 21:08:30.915789416 +0200
+++ 
/work/SRC/openSUSE:Factory/.grafana-ha-cluster-dashboards.new.11331/grafana-ha-cluster-dashboards.changes
   2020-11-10 13:53:12.458877858 +0100
@@ -1,0 +2,6 @@
+Mon Nov  9 16:41:51 UTC 2020 - Witek Bedyk 
+
+- Release 1.1.0
+  * Split provider file to own package
+
+---



Other differences:
--
++ grafana-ha-cluster-dashboards.spec ++
--- /var/tmp/diff_new_pack.PNebPt/_old  2020-11-10 13:53:12.962876906 +0100
+++ /var/tmp/diff_new_pack.PNebPt/_new  2020-11-10 13:53:12.966876898 +0100
@@ -20,13 +20,14 @@
 # Version will be processed via set_version source service
 Version:1.0.3+git.1600360477.8b8f9ce
 Release:0
-Summary:Grafana Dashboards displaying metrics about a 
Pacemaker/Corosync High Availability Cluster.
+Summary:Grafana Dashboards for Pacemaker/Corosync HA Cluster
 License:Apache-2.0
 Group:  System/Monitoring
 URL:https://github.com/ClusterLabs/ha_cluster_exporter
 Source: %{name}-%{version}.tar.gz
 BuildArch:  noarch
 Requires(pre):  shadow
+Requires:   grafana-sleha-cluster-provider
 Recommends: grafana
 
 # TECHNICAL NOTE:
@@ -56,11 +57,24 @@
 %defattr(-,root,root)
 %doc dashboards/README.md
 %license LICENSE
+%attr(0644,grafana,grafana) %config 
%{_localstatedir}/lib/grafana/dashboards/sleha/*
+%attr(0755,root,root) %dir %{_sysconfdir}/grafana
+
+%package -n grafana-sleha-cluster-provider
+
+Summary:Grafana Dashboards Provider for Pacemaker/Corosync HA Cluster
+Group:  System/Monitoring
+Recommends: grafana
+BuildArch:  noarch
+
+%description -n grafana-sleha-cluster-provider
+Grafana Dashboards Provider configuring location of dashboards provisioning for
+Pacemaker/Corosync High Availability Cluster.
+
+%files -n grafana-sleha-cluster-provider
 %attr(0755,grafana,grafana) %dir %{_localstatedir}/lib/grafana
 %attr(0755,grafana,grafana) %dir %{_localstatedir}/lib/grafana/dashboards
 %attr(0755,grafana,grafana) %dir %{_localstatedir}/lib/grafana/dashboards/sleha
-%attr(0644,grafana,grafana) %config 
%{_localstatedir}/lib/grafana/dashboards/sleha/*
-%attr(0755,root,root) %dir %{_sysconfdir}/grafana
 %attr(0755,root,root) %dir %{_sysconfdir}/grafana/provisioning
 %attr(0755,root,root) %dir %{_sysconfdir}/grafana/provisioning/dashboards
 %attr(0644,root,root) %config 
%{_sysconfdir}/grafana/provisioning/dashboards/provider-sleha.yaml




commit python-atlassian-python-api for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package python-atlassian-python-api for 
openSUSE:Factory checked in at 2020-11-10 13:46:30

Comparing /work/SRC/openSUSE:Factory/python-atlassian-python-api (Old)
 and  /work/SRC/openSUSE:Factory/.python-atlassian-python-api.new.11331 
(New)


Package is "python-atlassian-python-api"

Tue Nov 10 13:46:30 2020 rev:9 rq:847377 version:2.0.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-atlassian-python-api/python-atlassian-python-api.changes
  2020-09-12 00:08:39.764993108 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-atlassian-python-api.new.11331/python-atlassian-python-api.changes
   2020-11-10 13:53:29.422845793 +0100
@@ -1,0 +2,11 @@
+Tue Nov 10 04:22:12 UTC 2020 - Steve Kowalik 
+
+- Update to 2.0.1:
+  * fix the double in bitbucket module to repo_list method
+  * fix the parameter to export search results as csv
+  * add more docs
+  * Cleanup rest-client
+  * Review methods
+  * Bugfixes 
+
+---

Old:

  atlassian-python-api-1.17.3.tar.gz

New:

  atlassian-python-api-2.0.1.tar.gz



Other differences:
--
++ python-atlassian-python-api.spec ++
--- /var/tmp/diff_new_pack.NHy97x/_old  2020-11-10 13:53:30.090844531 +0100
+++ /var/tmp/diff_new_pack.NHy97x/_new  2020-11-10 13:53:30.090844531 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-atlassian-python-api
-Version:1.17.3
+Version:2.0.1
 Release:0
 Summary:Python Atlassian REST API Wrapper
 License:Apache-2.0

++ atlassian-python-api-1.17.3.tar.gz -> atlassian-python-api-2.0.1.tar.gz 
++
 14303 lines of diff (skipped)




commit growlight for openSUSE:Factory

2020-11-10 Thread root
7.0 +0100
@@ -18,6 +18,7 @@
 #include "health.h"
 #include "ptable.h"
 #include "ptypes.h"
+#include "threads.h"
 #include "growlight.h"
 #include "aggregate.h"
 #include "notui-aggregate.h"
@@ -87,7 +88,7 @@
 "not natively support it. I recommend use of EXT4 or FAT16 for root and ZFS "
 "(in a redundant configuration) for other filesystems.";
 
-static pthread_mutex_t bfl = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
+static pthread_mutex_t bfl; // recursive, initialized in main()
 
 struct panel_state {
   struct ncplane *n;
@@ -6032,7 +6033,11 @@
   int showhelp = 1;
 
   if(setlocale(LC_ALL, "") == NULL){
-fprintf(stderr,"Warning: couldn't load locale\n");
+fprintf(stderr, "Warning: couldn't load locale\n");
+return EXIT_FAILURE;
+  }
+  if(recursive_lock_init()){
+fprintf(stderr, "Error initializing recursive mutex\n");
 return EXIT_FAILURE;
   }
   sigset_t sigmask;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/growlight-1.2.17/src/threads.c 
new/growlight-1.2.18/src/threads.c
--- old/growlight-1.2.17/src/threads.c  1970-01-01 01:00:00.0 +0100
+++ new/growlight-1.2.18/src/threads.c  2020-11-01 11:03:07.0 +0100
@@ -0,0 +1,26 @@
+// copyright 2012–2020 nick black
+#include "threads.h"
+
+// initialize a recursive mutex lock in a way that works on both glibc + musl
+int recursive_lock_init(pthread_mutex_t *lock){
+#ifndef __GLIBC__
+#define PTHREAD_MUTEX_RECURSIVE_NP PTHREAD_MUTEX_RECURSIVE
+#endif
+   pthread_mutexattr_t attr;
+   if(pthread_mutexattr_init()){
+   return -1;
+   }
+   if(pthread_mutexattr_settype(, PTHREAD_MUTEX_RECURSIVE_NP)){
+   pthread_mutexattr_destroy();
+   return -1;
+   }
+   if(pthread_mutex_init(lock, )){
+   pthread_mutexattr_destroy();
+   return -1;
+   }
+  pthread_mutexattr_destroy();
+   return 0;
+#ifndef __GLIBC__
+#undef PTHREAD_MUTEX_RECURSIVE_NP
+#endif
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/growlight-1.2.17/src/threads.h 
new/growlight-1.2.18/src/threads.h
--- old/growlight-1.2.17/src/threads.h  1970-01-01 01:00:00.0 +0100
+++ new/growlight-1.2.18/src/threads.h  2020-11-01 11:03:07.0 +0100
@@ -0,0 +1,17 @@
+// copyright 2012–2020 nick black
+#ifndef GROWLIGHT_THREADS
+#define GROWLIGHT_THREADS
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include 
+
+int recursive_lock_init(pthread_mutex_t *lock);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif




commit python-fanficfare for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package python-fanficfare for 
openSUSE:Factory checked in at 2020-11-10 13:46:25

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


Package is "python-fanficfare"

Tue Nov 10 13:46:25 2020 rev:26 rq:847350 version:3.25.0

Changes:

--- /work/SRC/openSUSE:Factory/python-fanficfare/python-fanficfare.changes  
2020-10-16 16:16:02.336723072 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-fanficfare.new.11331/python-fanficfare.changes
   2020-11-10 13:53:26.982850405 +0100
@@ -1,0 +2,30 @@
+Mon Nov  9 20:00:20 UTC 2020 - Matej Cepl 
+
+- Update to 3.25.0:
+  - On drag and drop, accept text/html and remove %0D at end of
+text/uri-list URLs. Closes #587
+  - New site: fastnovel.net, thanks Rikkitp
+  - Update translations.
+  - Don't error out on non-editable custom columns ValueError.
+  - Add Yes/No to all to most question_dialog boxes.
+  - fiction.live: fixed crash with stories with achievements (introduced
+in last set of commits) - Thanks, HazelSh
+  - Fixes for drag-n-drop features.
+  - Allow better editing of story URLs in edit box.
+  - Change seriesHTML to not be filled without series.
+  - Fix for Xenforo2 change (SB/SV)
+  - Update adapter_ficbooknet for site changes.
+  - Fix for latest storiesonline login change, thanks mrEd
+  - Add checks for 'from saved column' when not config'ed and
+update-epub when default format isn't epub.
+  - Don't disable Update Mode with By Action menus.
+  - Do 'not an anthology' dialog outside busy_cursor
+  - Fixes for Fiction.live URLs re: #559 and #573 -- Thanks, HazelSh!
+  - Adds 'Actions by Update Mode' menu
+  - Include icons for 'Actions by Update Mode' menu
+  - Fix for email immediate download when not using English.
+  - "Hide"(setVisible(False)) rather than disable unused menu items.
+  - Disable rather than "hide"(not create) unused menu items, reorg into
+sub menus.
+
+---

Old:

  FanFicFare-3.24.0.tar.gz

New:

  FanFicFare-3.25.0.tar.gz



Other differences:
--
++ python-fanficfare.spec ++
--- /var/tmp/diff_new_pack.lfEH26/_old  2020-11-10 13:53:27.558849317 +0100
+++ /var/tmp/diff_new_pack.lfEH26/_new  2020-11-10 13:53:27.562849309 +0100
@@ -21,7 +21,7 @@
 %define skip_python2 1
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-fanficfare
-Version:3.24.0
+Version:3.25.0
 Release:0
 Summary:Tool for making eBooks from stories on fanfiction and other 
web sites
 License:GPL-3.0-only

++ FanFicFare-3.24.0.tar.gz -> FanFicFare-3.25.0.tar.gz ++
 25645 lines of diff (skipped)




commit python-h11 for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package python-h11 for openSUSE:Factory 
checked in at 2020-11-10 13:46:36

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


Package is "python-h11"

Tue Nov 10 13:46:36 2020 rev:7 rq:847415 version:0.11.0

Changes:

--- /work/SRC/openSUSE:Factory/python-h11/python-h11.changes2020-08-14 
09:34:38.348438703 +0200
+++ /work/SRC/openSUSE:Factory/.python-h11.new.11331/python-h11.changes 
2020-11-10 13:53:31.658841567 +0100
@@ -1,0 +2,12 @@
+Tue Nov 10 08:02:09 UTC 2020 - Dirk Mueller 
+
+- update to 0.11.0:
+  * h11 now stores and makes available the raw header name as
+  received. In addition h11 will write out header names with the same
+  casing as passed to it. This allows compatibility with systems that
+  expect titlecased header names. See `#31
+  * Multiple content length headers are now merged into a single header
+  if all the values are equal, if any are unequal a LocalProtocol
+  error is raised (as before). See `#92
+
+---

Old:

  h11-0.10.0.tar.gz

New:

  h11-0.11.0.tar.gz



Other differences:
--
++ python-h11.spec ++
--- /var/tmp/diff_new_pack.ftYpP8/_old  2020-11-10 13:53:32.150840636 +0100
+++ /var/tmp/diff_new_pack.ftYpP8/_new  2020-11-10 13:53:32.154840630 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-h11
-Version:0.10.0
+Version:0.11.0
 Release:0
 Summary:A pure-Python, bring-your-own-I/O implementation of HTTP/11
 License:MIT

++ h11-0.10.0.tar.gz -> h11-0.11.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/h11-0.10.0/PKG-INFO new/h11-0.11.0/PKG-INFO
--- old/h11-0.10.0/PKG-INFO 2020-08-13 11:50:23.070536600 +0200
+++ new/h11-0.11.0/PKG-INFO 2020-10-05 20:23:10.682039700 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: h11
-Version: 0.10.0
+Version: 0.11.0
 Summary: A pure-Python, bring-your-own-I/O implementation of HTTP/1.1
 Home-page: https://github.com/python-hyper/h11
 Author: Nathaniel J. Smith
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/h11-0.10.0/docs/source/api.rst 
new/h11-0.11.0/docs/source/api.rst
--- old/h11-0.10.0/docs/source/api.rst  2020-08-13 11:49:16.0 +0200
+++ new/h11-0.11.0/docs/source/api.rst  2020-10-05 20:22:54.0 +0200
@@ -128,6 +128,21 @@
 an error because `Content-Length` should always be an integer. We may
 add additional checks in the future.
 
+While we make sure to expose header names as lowercased bytes, we also
+preserve the original header casing that is used. Compliant HTTP
+agents should always treat headers in a case insensitive manner, but
+this may not always be the case. When sending bytes over the wire we
+send headers preserving whatever original header casing was used.
+
+It is possible to access the headers in their raw original casing,
+which may be useful for some user output or debugging purposes.
+
+.. ipython:: python
+
+original_headers = [("Host", "example.com")]
+req = h11.Request(method="GET", target="/", headers=original_headers)
+req.headers.raw_items()
+
 .. _http_version-format:
 
 It's not just headers we normalize to being byte-strings: the same
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/h11-0.10.0/docs/source/changes.rst 
new/h11-0.11.0/docs/source/changes.rst
--- old/h11-0.10.0/docs/source/changes.rst  2020-08-13 11:49:16.0 
+0200
+++ new/h11-0.11.0/docs/source/changes.rst  2020-10-05 20:22:54.0 
+0200
@@ -5,6 +5,27 @@
 
 .. towncrier release notes start
 
+v0.11.0 (2020-10-05)
+
+
+New features:
+
+* h11 now stores and makes available the raw header name as
+  received. In addition h11 will write out header names with the same
+  casing as passed to it. This allows compatibility with systems that
+  expect titlecased header names. See `#31
+  `__.
+* Multiple content length headers are now merged into a single header
+  if all the values are equal, if any are unequal a LocalProtocol
+  error is raised (as before). See `#92
+  `__.
+
+Backwards **in**\compatible changes:
+
+* Headers added by h11, rather than passed to it, now have titlecased
+  names. Whilst this should help compatibility it replaces the
+  previous lowercased header names.
+
 v0.10.0 (2020-08-14)
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit kubevirt for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kubevirt for openSUSE:Factory 
checked in at 2020-11-10 13:46:17

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


Package is "kubevirt"

Tue Nov 10 13:46:17 2020 rev:6 rq:847365 version:0.34.0

Changes:

--- /work/SRC/openSUSE:Factory/kubevirt/kubevirt.changes2020-11-06 
23:46:42.867077454 +0100
+++ /work/SRC/openSUSE:Factory/.kubevirt.new.11331/kubevirt.changes 
2020-11-10 13:53:18.590866268 +0100
@@ -1,0 +2,7 @@
+Mon Nov  9 23:52:10 UTC 2020 - James Fehlig 
+
+- spec: Add rpmlintrc to filter statically-linked-binary warning
+  for container-disk binary. The binary must be statically linked
+  since it runs in a scratch container.
+
+---

New:

  kubevirt-rpmlintrc



Other differences:
--
++ kubevirt.spec ++
--- /var/tmp/diff_new_pack.E8tD6J/_old  2020-11-10 13:53:19.334864862 +0100
+++ /var/tmp/diff_new_pack.E8tD6J/_new  2020-11-10 13:53:19.338864854 +0100
@@ -25,6 +25,7 @@
 URL:https://github.com/kubevirt/kubevirt
 Source0:%{name}-%{version}.tar.gz
 Source1:kubevirt-psp-caasp.yaml
+Source100:  %{name}-rpmlintrc
 BuildRequires:  glibc-devel-static
 BuildRequires:  golang-packaging
 BuildRequires:  pkgconfig

++ kubevirt-rpmlintrc ++
addFilter("statically-linked-binary")



commit python-pymisp for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package python-pymisp for openSUSE:Factory 
checked in at 2020-11-10 13:46:22

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


Package is "python-pymisp"

Tue Nov 10 13:46:22 2020 rev:29 rq:847347 version:2.4.134

Changes:

--- /work/SRC/openSUSE:Factory/python-pymisp/python-pymisp.changes  
2020-07-14 07:58:50.353702139 +0200
+++ /work/SRC/openSUSE:Factory/.python-pymisp.new.11331/python-pymisp.changes   
2020-11-10 13:53:24.402855281 +0100
@@ -1,0 +2,189 @@
+Mon Nov  2 19:30:59 UTC 2020 - Sebastian Wagner 
+
+- update to version 2.4.134:
+ - Changes
+   - Bump version. [Raphaël Vinot]
+   - Bump misp-objects. [Raphaël Vinot]
+   - Keep connection alive between requests. [Jakub Onderka]
+   - Bump deps. [Raphaël Vinot]
+   - Format docstrings in mispevent.py. [Lott, Christopher (cl778h)]
+ Add ":param " prefix to parameters to improve ReadTheDocs output.
+ Fix some minor typos in docstrings.
+   - Bump deps. [Raphaël Vinot]
+   - Bump deps. [Raphaël Vinot]
+   - Bump changelog. [Raphaël Vinot]
+ - Fix
+   - Remove duplicate check if debug logging is enabled. [Jakub Onderka]
+   - Do now fail on requests returning plain text. [Raphaël Vinot]
+ Fix #639
+ - Other
+   - Revert "Update .travis.yml" [Raphaël Vinot]
+ lief isn't compatible with python 3.9
+ This reverts commit e10843fa33c9a08b7da4ef24cbce457be53a7459.
+   - Update .travis.yml. [Raphaël Vinot]
+ Add python 3.9
+   - Drop `encoding=` in Python 3.9. [Friedrich Lindenberg]
+
+---
+Sun Nov  1 18:06:38 UTC 2020 - Sebastian Wagner 
+
+- update to version 2.4.133:
+ - New
+   - [attribute type] telfhash added. [Alexandre Dulaunoy]
+   - [add_gitlab_user] new gitlab user fetch script to MISP object.
+ [Alexandre Dulaunoy]
+ usage: add_gitlab_user.py [-h] -e EVENT [-f] -u USERNAME [-l LINK]
+ Fetch GitLab user details and add it in object in MISP
+ optional arguments:
+   -h, --helpshow this help message and exit
+   -e EVENT, --event EVENT
+ Event ID to update
+   -f, --force-template-update
+   -u USERNAME, --username USERNAME
+ GitLab username to add
+   -l LINK, --link LINK  Url to access the GitLab instance, Default is
+ www.gitlab.com.
+   - [example] add_github_user example - WiP. [Alexandre Dulaunoy]
+ usage: add_github_user.py [-h] -e EVENT [-f] -u USERNAME
+ Fetch GitHub user details and add it in object in MISP
+ optional arguments:
+   -h, --helpshow this help message and exit
+   -e EVENT, --event EVENT
+ Event ID to update
+   -f, --force-template-update
+   -u USERNAME, --username USERNAME
+ GitHub username to add
+   - Method to get the new version of the templates. [Raphaël Vinot]
+   - Delete tags via update_attribute, search by sharing group. [Tom King]
+ - Changes
+   - Bump version. [Raphaël Vinot]
+   - Bump test cases. [Raphaël Vinot]
+   - [type] updated. [Alexandre Dulaunoy]
+   - Bump file obj version in tests. [Raphaël Vinot]
+   - [data] misp-objects updated. [Alexandre Dulaunoy]
+   - Bump build system to poetry 1.1. [Raphaël Vinot]
+   - [type] new type added. [Alexandre Dulaunoy]
+   - [add_github_user] add ssh keys of the user in the MISP object.
+ [Alexandre Dulaunoy]
+   - [add_github_user] more fields added from the GitHub API. [Alexandre
+ Dulaunoy]
+   - Bump deps, objects. [Raphaël Vinot]
+   - Add test for delete=True in get_event. [Raphaël Vinot]
+   - [add_github_user] add following to the MISP object. [Alexandre
+ Dulaunoy]
+   - Bump dependencies. [Raphaël Vinot]
+   - Pass a list to add_attributes. [Raphaël Vinot]
+   - Use MISPObject instead of GenericObjectGenerator. [Raphaël Vinot]
+   - [doc] add a reference to the license. [Alexandre Dulaunoy]
+   - Add docstrings and extend conf.py for RTD. [Lott, Christopher
+ (cl778h)]
+ Add minimal docstrings to public methods so ReadTheDocs will display them.
+ Add autodoc mock import for lief so RTD can generate HTML for tools.
+ This fixes issue #626
+   - Remove PyMISPExpanded from the docs. [Raphaël Vinot]
+   - Add comments to ELF, PE, and MachO object generators. [Raphaël Vinot]
+   - Improve error message, add comments, rename whitelist->allowedlist.
+ [Raphaël Vinot]
+   - Remove SG search for search() func as this doesn't support SG
+ searching, but the index does. [Tom King]
+ - Fix
+   - Test on macosx. [Raphaël Vinot]
+ Fix #630
+   - Do not modify default_attributes_parameters in MISPObject. [Raphaël
+ Vinot]
+   - 

commit openSUSE-release-tools for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package openSUSE-release-tools for 
openSUSE:Factory checked in at 2020-11-10 13:46:11

Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.11331 (New)


Package is "openSUSE-release-tools"

Tue Nov 10 13:46:11 2020 rev:299 rq:847320 version:20201103.e77961f0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
2020-10-29 14:53:08.937262285 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.11331/openSUSE-release-tools.changes
 2020-11-10 13:53:14.182874600 +0100
@@ -1,0 +2,19 @@
+Mon Nov 02 16:58:56 UTC 2020 - opensuse-releaset...@opensuse.org
+
+- Update to version 20201103.e77961f0:
+  * pkglistgen gocd: rename Pkglistgen.openSUSE_Leap to avoid the dup'ed key
+
+---
+Mon Nov 02 14:09:54 UTC 2020 - opensuse-releaset...@opensuse.org
+
+- Update to version 20201102.21e0b914:
+  * Leap 15.3: Jump project discontinued but Leap 15.3 started
+
+---
+Fri Oct 30 04:34:12 UTC 2020 - opensuse-releaset...@opensuse.org
+
+- Update to version 20201030.620b9480:
+  * Merge common code of SP1 and SP2
+  * Add back setup for 15SP1 quarterly updates
+
+---

Old:

  openSUSE-release-tools-20201022.3934deb8.obscpio

New:

  openSUSE-release-tools-20201103.e77961f0.obscpio



Other differences:
--
++ openSUSE-release-tools.spec ++
--- /var/tmp/diff_new_pack.83Tbw2/_old  2020-11-10 13:53:14.898873246 +0100
+++ /var/tmp/diff_new_pack.83Tbw2/_new  2020-11-10 13:53:14.902873238 +0100
@@ -20,7 +20,7 @@
 %define source_dir openSUSE-release-tools
 %define announcer_filename factory-package-news
 Name:   openSUSE-release-tools
-Version:20201022.3934deb8
+Version:20201103.e77961f0
 Release:0
 Summary:Tools to aid in staging and release work for openSUSE/SUSE
 License:GPL-2.0-or-later AND MIT

++ _servicedata ++
--- /var/tmp/diff_new_pack.83Tbw2/_old  2020-11-10 13:53:14.958873132 +0100
+++ /var/tmp/diff_new_pack.83Tbw2/_new  2020-11-10 13:53:14.958873132 +0100
@@ -1,6 +1,6 @@
 
   
 https://github.com/openSUSE/openSUSE-release-tools.git
-ad58802324e9fbb07e56417bfde7b14320d2b39e
+deee1d905324a97bb05d9121321a5f072dd48341
   
 

++ openSUSE-release-tools-20201022.3934deb8.obscpio -> 
openSUSE-release-tools-20201103.e77961f0.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20201022.3934deb8/gocd/checkers.suse.gocd.yaml 
new/openSUSE-release-tools-20201103.e77961f0/gocd/checkers.suse.gocd.yaml
--- old/openSUSE-release-tools-20201022.3934deb8/gocd/checkers.suse.gocd.yaml   
2020-10-22 12:31:39.0 +0200
+++ new/openSUSE-release-tools-20201103.e77961f0/gocd/checkers.suse.gocd.yaml   
2020-11-02 17:57:17.0 +0100
@@ -281,6 +281,35 @@
 - staging-bot
 tasks:
 - script: ./legal-auto.py -A https://api.suse.de --debug --legaldb 
http://legaldb.suse.de project $(cat /home/go/config/legal-auto-projects-suse)
+  SLE15.SP1.QR:
+group: SLE.Checkers
+lock_behavior: unlockWhenFinished
+environment_variables:
+  OSC_CONFIG: /home/go/config/oscrc-maintenance-installcheck
+timer:
+  spec: 0 0 0 ? * THU
+materials:
+  scripts:
+git: https://github.com/openSUSE/openSUSE-release-tools.git
+destination: scripts
+stages:
+- Run:
+approval:
+  type: manual
+jobs:
+  Run:
+timeout: 30
+resources:
+- repo-checker
+tasks:
+- script: |-
+cd scripts
+./pkglistgen.py -A https://api.suse.de --debug 
update_and_solve -p home:maintenance-installcheck:15-SP1:QR -s target --force
+osc -A https://api.suse.de co 
home:maintenance-installcheck:15-SP1:QR 000product
+cd home:maintenance-installcheck:15-SP1:QR/000product
+sed -e 
's,home:maintenance-installcheck:15-SP1:QR,SUSE:SLE-15-SP1:Update:QR,' -i *
+osc ci -m 'Fix repoid'
+osc sr --yes SUSE:SLE-15-SP1:Update:QR -m 'Update Package List'
   SLE15.SP2.QR:
 group: SLE.Checkers
 lock_behavior: unlockWhenFinished
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20201022.3934deb8/gocd/checkers.suse.gocd.yaml.erb 

commit umbrello for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package umbrello for openSUSE:Factory 
checked in at 2020-11-10 13:45:50

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


Package is "umbrello"

Tue Nov 10 13:45:50 2020 rev:95 rq:846810 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/umbrello/umbrello.changes2020-10-13 
15:43:26.197392496 +0200
+++ /work/SRC/openSUSE:Factory/.umbrello.new.11331/umbrello.changes 
2020-11-10 13:53:04.226893418 +0100
@@ -1,0 +2,12 @@
+Thu Nov  5 22:48:08 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- Changes since 20.08.2:
+  * cmake: Add fallback in case QTQCHDIR was not found for KF5 build variant
+  * Fix "file cannot create directory: /qch. Maybe need administrative 
privileges" (kde#427070)
+  * Add cmake command line option BUILD_QCH to support building without QCH 
support if requested
+
+---

Old:

  umbrello-20.08.2.tar.xz
  umbrello-20.08.2.tar.xz.sig

New:

  umbrello-20.08.3.tar.xz
  umbrello-20.08.3.tar.xz.sig



Other differences:
--
++ umbrello.spec ++
--- /var/tmp/diff_new_pack.nme2bq/_old  2020-11-10 13:53:04.998891959 +0100
+++ /var/tmp/diff_new_pack.nme2bq/_new  2020-11-10 13:53:04.998891959 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without  lang
 Name:   umbrello
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:UML Modeller
 License:GPL-2.0-only AND GFDL-1.2-only AND GPL-3.0-or-later


++ umbrello-20.08.2.tar.xz -> umbrello-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/umbrello-20.08.2/CMakeLists.txt 
new/umbrello-20.08.3/CMakeLists.txt
--- old/umbrello-20.08.2/CMakeLists.txt 2020-10-03 12:54:56.0 +0200
+++ new/umbrello-20.08.3/CMakeLists.txt 2020-10-31 17:36:07.0 +0100
@@ -13,7 +13,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 
 set(UMBRELLO_VERSION_MAJOR "2")
 set(UMBRELLO_VERSION_MINOR "32")
@@ -35,6 +35,8 @@
 
 option(BUILD_PHP_IMPORT "Build with php import support" ON)
 
+option(BUILD_QCH "Build with QCH support" ON)
+
 # where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is 
checked
 list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules)
 include(Macros)
@@ -58,6 +60,7 @@
 set(KDEV_MIN_VERSION 1.7.3)
 set(KDEV_SOURCE_DIR lib/kdev4-php)
 set(KDEV_COMPONENTS)
+set(QTQCHDIR ${QT_DOC_DIR}/qch)
 else()
 set(APP_SUFFIX 5)
 set(LIB_PREFIX Qt5::)
@@ -78,6 +81,9 @@
 set(KDEV_MIN_VERSION 5.1.2)
 set(KDEV_SOURCE_DIR lib/kdev5-php)
 set(KDEV_COMPONENTS KDev::Interfaces KDev::Language KDev::Shell)
+if(NOT QTQCHDIR)
+set(QTQCHDIR ${KDE_INSTALL_QTQCHDIR})
+endif()
 endif()
 
 # search packages used by Qt
@@ -265,13 +271,13 @@
 set(DOXYGEN_USE_PDFLATEX NO)
 set(DOXYGEN_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/apidoc)
 
-if(QHELPGENERATOR_EXECUTABLE)
+if(BUILD_QCH AND QHELPGENERATOR_EXECUTABLE)
 set(DOXYGEN_GENERATE_QHP YES)
 set(DOXYGEN_QCH_FILE ${CMAKE_BINARY_DIR}/umbrello.qch)
 set(DOXYGEN_QHP_NAMESPACE org.kde.umbrello)
 set(DOXYGEN_QHG_LOCATION ${QHELPGENERATOR_EXECUTABLE})
 set(DOXYGEN_QHP_VIRTUAL_FOLDER doc)
-install(FILES ${DOXYGEN_QCH_FILE} DESTINATION ${QT_DOC_DIR}/qch 
COMPONENT Devel)
+install(FILES ${DOXYGEN_QCH_FILE} DESTINATION ${QTQCHDIR} COMPONENT 
Devel)
 endif()
 
 doxygen_add_docs(apidoc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/umbrello-20.08.2/po/ca/umbrello.po 
new/umbrello-20.08.3/po/ca/umbrello.po
--- old/umbrello-20.08.2/po/ca/umbrello.po  2020-10-06 05:35:34.0 
+0200
+++ new/umbrello-20.08.3/po/ca/umbrello.po  2020-11-03 01:42:15.0 
+0100
@@ -13,14 +13,14 @@
 "Project-Id-Version: umbrello\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-08-14 08:09+0200\n"
-"PO-Revision-Date: 2020-08-06 15:47+0200\n"
+"PO-Revision-Date: 2020-10-14 11:35+0200\n"
 "Last-Translator: Antoni Bella Pérez \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 

commit pim-data-exporter for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package pim-data-exporter for 
openSUSE:Factory checked in at 2020-11-10 13:45:25

Comparing /work/SRC/openSUSE:Factory/pim-data-exporter (Old)
 and  /work/SRC/openSUSE:Factory/.pim-data-exporter.new.11331 (New)


Package is "pim-data-exporter"

Tue Nov 10 13:45:25 2020 rev:51 rq:846800 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/pim-data-exporter/pim-data-exporter.changes  
2020-10-13 15:42:43.805374198 +0200
+++ 
/work/SRC/openSUSE:Factory/.pim-data-exporter.new.11331/pim-data-exporter.changes
   2020-11-10 13:52:43.282933006 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:59 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  pim-data-exporter-20.08.2.tar.xz
  pim-data-exporter-20.08.2.tar.xz.sig

New:

  pim-data-exporter-20.08.3.tar.xz
  pim-data-exporter-20.08.3.tar.xz.sig



Other differences:
--
++ pim-data-exporter.spec ++
--- /var/tmp/diff_new_pack.6OtQGh/_old  2020-11-10 13:52:43.782932061 +0100
+++ /var/tmp/diff_new_pack.6OtQGh/_new  2020-11-10 13:52:43.786932054 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   pim-data-exporter
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Data exporter for KDE PIM
 License:GPL-2.0-or-later AND LGPL-2.1-or-later


++ pim-data-exporter-20.08.2.tar.xz -> pim-data-exporter-20.08.3.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pim-data-exporter-20.08.2/CMakeLists.txt 
new/pim-data-exporter-20.08.3/CMakeLists.txt
--- old/pim-data-exporter-20.08.2/CMakeLists.txt2020-10-06 
05:40:51.0 +0200
+++ new/pim-data-exporter-20.08.3/CMakeLists.txt2020-11-03 
01:46:25.0 +0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.5)
-set(PIM_VERSION "5.15.2")
+set(PIM_VERSION "5.15.3")
 project(pim-data-exporter VERSION ${PIM_VERSION})
-set(RELEASE_SERVICE_VERSION "20.08.2")
+set(RELEASE_SERVICE_VERSION "20.08.3")
 set(KF5_MIN_VERSION "5.71.0")
 
 find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED)
@@ -43,15 +43,15 @@
 find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED Widgets Test)
 endif()
 
-set(AKONADI_VERSION "5.15.2")
-set(IDENTITYMANAGEMENT_LIB_VERSION "5.15.2")
-set(KMAILTRANSPORT_LIB_VERSION "5.15.2")
-set(KMIME_LIB_VERSION "5.15.2")
-set(KPIMTEXTEDIT_LIB_VERSION "5.15.2")
-
-set(MAILCOMMON_LIB_VERSION_LIB "5.15.2")
-set(PIMCOMMON_LIB_VERSION_LIB "5.15.2")
-set(AKONADINOTES_LIB_VERSION "5.15.2")
+set(AKONADI_VERSION "5.15.3")
+set(IDENTITYMANAGEMENT_LIB_VERSION "5.15.3")
+set(KMAILTRANSPORT_LIB_VERSION "5.15.3")
+set(KMIME_LIB_VERSION "5.15.3")
+set(KPIMTEXTEDIT_LIB_VERSION "5.15.3")
+
+set(MAILCOMMON_LIB_VERSION_LIB "5.15.3")
+set(PIMCOMMON_LIB_VERSION_LIB "5.15.3")
+set(AKONADINOTES_LIB_VERSION "5.15.3")
 
 # Find KF5 package
 find_package(KF5Archive ${KF5_MIN_VERSION} REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pim-data-exporter-20.08.2/org.kde.pimdataexporter.appdata.xml 
new/pim-data-exporter-20.08.3/org.kde.pimdataexporter.appdata.xml
--- old/pim-data-exporter-20.08.2/org.kde.pimdataexporter.appdata.xml   
2020-10-03 14:50:42.0 +0200
+++ new/pim-data-exporter-20.08.3/org.kde.pimdataexporter.appdata.xml   
2020-10-31 18:36:47.0 +0100
@@ -129,9 +129,9 @@
 
   
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pim-data-exporter-20.08.2/po/zh_CN/pimdataexporter.po 
new/pim-data-exporter-20.08.3/po/zh_CN/pimdataexporter.po
--- old/pim-data-exporter-20.08.2/po/zh_CN/pimdataexporter.po   2020-10-06 
05:40:50.0 +0200
+++ new/pim-data-exporter-20.08.3/po/zh_CN/pimdataexporter.po   2020-11-03 
01:46:24.0 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:49+0200\n"
-"PO-Revision-Date: 2020-09-23 12:21\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit step for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package step for openSUSE:Factory checked in 
at 2020-11-10 13:45:39

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


Package is "step"

Tue Nov 10 13:45:39 2020 rev:122 rq:846807 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/step/step.changes2020-10-13 
15:43:14.129387287 +0200
+++ /work/SRC/openSUSE:Factory/.step.new.11331/step.changes 2020-11-10 
13:52:52.754915103 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:48:05 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  step-20.08.2.tar.xz
  step-20.08.2.tar.xz.sig

New:

  step-20.08.3.tar.xz
  step-20.08.3.tar.xz.sig



Other differences:
--
++ step.spec ++
--- /var/tmp/diff_new_pack.UfWjzO/_old  2020-11-10 13:52:53.358913961 +0100
+++ /var/tmp/diff_new_pack.UfWjzO/_new  2020-11-10 13:52:53.362913953 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   step
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:An interactive physics simulator
 License:GPL-2.0-or-later


++ step-20.08.2.tar.xz -> step-20.08.3.tar.xz ++
 4051 lines of diff (skipped)




commit parley for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package parley for openSUSE:Factory checked 
in at 2020-11-10 13:45:19

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


Package is "parley"

Tue Nov 10 13:45:19 2020 rev:122 rq:846798 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/parley/parley.changes2020-10-13 
15:42:34.841370329 +0200
+++ /work/SRC/openSUSE:Factory/.parley.new.11331/parley.changes 2020-11-10 
13:52:38.750941573 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:57 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  parley-20.08.2.tar.xz
  parley-20.08.2.tar.xz.sig

New:

  parley-20.08.3.tar.xz
  parley-20.08.3.tar.xz.sig



Other differences:
--
++ parley.spec ++
--- /var/tmp/diff_new_pack.80auPu/_old  2020-11-10 13:52:39.386940371 +0100
+++ /var/tmp/diff_new_pack.80auPu/_new  2020-11-10 13:52:39.390940363 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   parley
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Vocabulary Trainer
 License:GPL-2.0-or-later


++ parley-20.08.2.tar.xz -> parley-20.08.3.tar.xz ++
/work/SRC/openSUSE:Factory/parley/parley-20.08.2.tar.xz 
/work/SRC/openSUSE:Factory/.parley.new.11331/parley-20.08.3.tar.xz differ: char 
26, line 1




commit poxml for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package poxml for openSUSE:Factory checked 
in at 2020-11-10 13:45:32

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


Package is "poxml"

Tue Nov 10 13:45:32 2020 rev:93 rq:846803 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/poxml/poxml.changes  2020-10-13 
15:42:59.477380963 +0200
+++ /work/SRC/openSUSE:Factory/.poxml.new.11331/poxml.changes   2020-11-10 
13:52:46.166927555 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:48:01 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  poxml-20.08.2.tar.xz
  poxml-20.08.2.tar.xz.sig

New:

  poxml-20.08.3.tar.xz
  poxml-20.08.3.tar.xz.sig



Other differences:
--
++ poxml.spec ++
--- /var/tmp/diff_new_pack.jwcEy7/_old  2020-11-10 13:52:46.642926655 +0100
+++ /var/tmp/diff_new_pack.jwcEy7/_new  2020-11-10 13:52:46.646926648 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   poxml
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Tools for translating DocBook XML files with Gettext
 License:GPL-2.0-only AND GFDL-1.2-only


++ poxml-20.08.2.tar.xz -> poxml-20.08.3.tar.xz ++




commit picmi for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package picmi for openSUSE:Factory checked 
in at 2020-11-10 13:45:21

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


Package is "picmi"

Tue Nov 10 13:45:21 2020 rev:103 rq:846799 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/picmi/picmi.changes  2020-10-13 
15:42:39.625372394 +0200
+++ /work/SRC/openSUSE:Factory/.picmi.new.11331/picmi.changes   2020-11-10 
13:52:41.738935925 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:58 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  picmi-20.08.2.tar.xz
  picmi-20.08.2.tar.xz.sig

New:

  picmi-20.08.3.tar.xz
  picmi-20.08.3.tar.xz.sig



Other differences:
--
++ picmi.spec ++
--- /var/tmp/diff_new_pack.UjP3Sq/_old  2020-11-10 13:52:42.242934972 +0100
+++ /var/tmp/diff_new_pack.UjP3Sq/_new  2020-11-10 13:52:42.246934965 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   picmi
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Nonogram Logic game
 License:GPL-2.0-or-later


++ picmi-20.08.2.tar.xz -> picmi-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/picmi-20.08.2/po/ca/picmi.po 
new/picmi-20.08.3/po/ca/picmi.po
--- old/picmi-20.08.2/po/ca/picmi.po2020-10-06 05:34:39.0 +0200
+++ new/picmi-20.08.3/po/ca/picmi.po2020-11-03 01:41:35.0 +0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: picmi\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-02-08 09:31+0100\n"
+"PO-Revision-Date: 2020-10-13 20:34+0200\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -18,7 +18,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.08.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -445,7 +445,7 @@
 #: src/gui/graphicsitems/textbanneritem.cpp:40
 #, kde-format
 msgid "PAUSED"
-msgstr "PAUSAT"
+msgstr "EN PAUSA"
 
 #: src/gui/mainwindow.cpp:74
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/picmi-20.08.2/po/ca@valencia/picmi.po 
new/picmi-20.08.3/po/ca@valencia/picmi.po
--- old/picmi-20.08.2/po/ca@valencia/picmi.po   2020-10-06 05:34:39.0 
+0200
+++ new/picmi-20.08.3/po/ca@valencia/picmi.po   2020-11-03 01:41:35.0 
+0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: picmi\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-02-08 09:31+0100\n"
+"PO-Revision-Date: 2020-10-13 20:34+0200\n"
 "Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca@valencia\n"
@@ -18,7 +18,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.08.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -445,7 +445,7 @@
 #: src/gui/graphicsitems/textbanneritem.cpp:40
 #, kde-format
 msgid "PAUSED"
-msgstr "PAUSAT"
+msgstr "EN PAUSA"
 
 #: src/gui/mainwindow.cpp:74
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/picmi-20.08.2/po/zh_CN/picmi.po 
new/picmi-20.08.3/po/zh_CN/picmi.po
--- old/picmi-20.08.2/po/zh_CN/picmi.po 2020-10-06 05:34:40.0 +0200
+++ new/picmi-20.08.3/po/zh_CN/picmi.po 2020-11-03 01:41:35.0 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-09-23 12:21\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit svgpart for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package svgpart for openSUSE:Factory checked 
in at 2020-11-10 13:45:43

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


Package is "svgpart"

Tue Nov 10 13:45:43 2020 rev:104 rq:846808 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/svgpart/svgpart.changes  2020-10-13 
15:43:17.845388891 +0200
+++ /work/SRC/openSUSE:Factory/.svgpart.new.11331/svgpart.changes   
2020-11-10 13:52:54.230912313 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:48:06 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  svgpart-20.08.2.tar.xz
  svgpart-20.08.2.tar.xz.sig

New:

  svgpart-20.08.3.tar.xz
  svgpart-20.08.3.tar.xz.sig



Other differences:
--
++ svgpart.spec ++
--- /var/tmp/diff_new_pack.neyOzi/_old  2020-11-10 13:52:54.698911428 +0100
+++ /var/tmp/diff_new_pack.neyOzi/_new  2020-11-10 13:52:54.702911420 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   svgpart
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:SVG viewer component
 License:GPL-2.0-or-later


++ svgpart-20.08.2.tar.xz -> svgpart-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/svgpart-20.08.2/po/zh_CN/svgpart.po 
new/svgpart-20.08.3/po/zh_CN/svgpart.po
--- old/svgpart-20.08.2/po/zh_CN/svgpart.po 2020-10-08 01:37:29.0 
+0200
+++ new/svgpart-20.08.3/po/zh_CN/svgpart.po 2020-11-03 01:36:07.0 
+0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-08-09 07:46+0200\n"
-"PO-Revision-Date: 2020-09-23 12:21\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit libkmahjongg for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package libkmahjongg for openSUSE:Factory 
checked in at 2020-11-10 13:44:55

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


Package is "libkmahjongg"

Tue Nov 10 13:44:55 2020 rev:103 rq:846783 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/libkmahjongg/libkmahjongg.changes
2020-10-13 15:41:46.245345394 +0200
+++ /work/SRC/openSUSE:Factory/.libkmahjongg.new.11331/libkmahjongg.changes 
2020-11-10 13:52:05.287004825 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:45 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  libkmahjongg-20.08.2.tar.xz
  libkmahjongg-20.08.2.tar.xz.sig

New:

  libkmahjongg-20.08.3.tar.xz
  libkmahjongg-20.08.3.tar.xz.sig



Other differences:
--
++ libkmahjongg.spec ++
--- /var/tmp/diff_new_pack.A0EU2u/_old  2020-11-10 13:52:05.875003713 +0100
+++ /var/tmp/diff_new_pack.A0EU2u/_new  2020-11-10 13:52:05.879003706 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   libkmahjongg
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:General Data for KDE Games
 License:GPL-2.0-or-later


++ libkmahjongg-20.08.2.tar.xz -> libkmahjongg-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkmahjongg-20.08.2/po/zh_CN/libkmahjongg5.po 
new/libkmahjongg-20.08.3/po/zh_CN/libkmahjongg5.po
--- old/libkmahjongg-20.08.2/po/zh_CN/libkmahjongg5.po  2020-10-06 
05:34:26.0 +0200
+++ new/libkmahjongg-20.08.3/po/zh_CN/libkmahjongg5.po  2020-11-03 
01:41:23.0 +0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-09-16 08:47+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit mbox-importer for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package mbox-importer for openSUSE:Factory 
checked in at 2020-11-10 13:45:08

Comparing /work/SRC/openSUSE:Factory/mbox-importer (Old)
 and  /work/SRC/openSUSE:Factory/.mbox-importer.new.11331 (New)


Package is "mbox-importer"

Tue Nov 10 13:45:08 2020 rev:48 rq:846792 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/mbox-importer/mbox-importer.changes  
2020-10-13 15:42:08.861359115 +0200
+++ /work/SRC/openSUSE:Factory/.mbox-importer.new.11331/mbox-importer.changes   
2020-11-10 13:52:12.286991594 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:53 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  mbox-importer-20.08.2.tar.xz
  mbox-importer-20.08.2.tar.xz.sig

New:

  mbox-importer-20.08.3.tar.xz
  mbox-importer-20.08.3.tar.xz.sig



Other differences:
--
++ mbox-importer.spec ++
--- /var/tmp/diff_new_pack.dQHHcg/_old  2020-11-10 13:52:12.826990573 +0100
+++ /var/tmp/diff_new_pack.dQHHcg/_new  2020-11-10 13:52:12.826990573 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   mbox-importer
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Tool for importing mbox archives into akonadi
 License:GPL-2.0-or-later AND LGPL-2.1-or-later


++ mbox-importer-20.08.2.tar.xz -> mbox-importer-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-20.08.2/CMakeLists.txt 
new/mbox-importer-20.08.3/CMakeLists.txt
--- old/mbox-importer-20.08.2/CMakeLists.txt2020-10-06 05:40:48.0 
+0200
+++ new/mbox-importer-20.08.3/CMakeLists.txt2020-11-03 01:46:22.0 
+0100
@@ -1,4 +1,4 @@
-set(PIM_VERSION "5.15.2")
+set(PIM_VERSION "5.15.3")
 cmake_minimum_required(VERSION 3.5)
 project(mbox-importer VERSION ${PIM_VERSION})
 
@@ -28,7 +28,7 @@
 
 # Do NOT add quote
 set(KDEPIM_DEV_VERSION)
-set(RELEASE_SERVICE_VERSION "20.08.2")
+set(RELEASE_SERVICE_VERSION "20.08.3")
 # add an extra space
 if(DEFINED KDEPIM_DEV_VERSION)
 set(KDEPIM_DEV_VERSION " ${KDEPIM_DEV_VERSION}")
@@ -36,16 +36,16 @@
 
 set(KDEPIM_VERSION "${PIM_VERSION}${KDEPIM_DEV_VERSION} 
(${RELEASE_SERVICE_VERSION})")
 
-set(AKONADI_VERSION "5.15.2")
+set(AKONADI_VERSION "5.15.3")
 
 set(KDEPIM_LIB_VERSION "${PIM_VERSION}")
 set(KDEPIM_LIB_SOVERSION "5")
 
 set(QT_REQUIRED_VERSION "5.13.0")
 find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED Gui Widgets)
-set(LIBMAILIMPORTER_VERSION_LIB "5.15.2")
-set(MAILCOMMON_LIB_VERSION_LIB "5.15.2")
-set(PIMCOMMON_LIB_VERSION "5.15.2")
+set(LIBMAILIMPORTER_VERSION_LIB "5.15.3")
+set(MAILCOMMON_LIB_VERSION_LIB "5.15.3")
+set(PIMCOMMON_LIB_VERSION "5.15.3")
 
 # Find KF5 package
 find_package(KF5Config ${KF5_MIN_VERSION} CONFIG REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbox-importer-20.08.2/po/zh_CN/mboximporter.po 
new/mbox-importer-20.08.3/po/zh_CN/mboximporter.po
--- old/mbox-importer-20.08.2/po/zh_CN/mboximporter.po  2020-10-06 
05:40:48.0 +0200
+++ new/mbox-importer-20.08.3/po/zh_CN/mboximporter.po  2020-11-03 
01:46:22.0 +0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-01-02 03:18+0100\n"
-"PO-Revision-Date: 2020-09-23 12:21\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit sweeper for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package sweeper for openSUSE:Factory checked 
in at 2020-11-10 13:45:47

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


Package is "sweeper"

Tue Nov 10 13:45:47 2020 rev:114 rq:846809 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/sweeper/sweeper.changes  2020-10-13 
15:43:19.845389754 +0200
+++ /work/SRC/openSUSE:Factory/.sweeper.new.11331/sweeper.changes   
2020-11-10 13:52:55.182910513 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:48:07 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  sweeper-20.08.2.tar.xz
  sweeper-20.08.2.tar.xz.sig

New:

  sweeper-20.08.3.tar.xz
  sweeper-20.08.3.tar.xz.sig



Other differences:
--
++ sweeper.spec ++
--- /var/tmp/diff_new_pack.lUgqq4/_old  2020-11-10 13:52:55.794909357 +0100
+++ /var/tmp/diff_new_pack.lUgqq4/_new  2020-11-10 13:52:55.794909357 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   sweeper
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:KDE Privacy Utility
 License:LGPL-2.1-or-later


++ sweeper-20.08.2.tar.xz -> sweeper-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sweeper-20.08.2/CMakeLists.txt 
new/sweeper-20.08.3/CMakeLists.txt
--- old/sweeper-20.08.2/CMakeLists.txt  2020-10-06 05:28:45.0 +0200
+++ new/sweeper-20.08.3/CMakeLists.txt  2020-11-03 01:36:45.0 +0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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(sweeper VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sweeper-20.08.2/org.kde.sweeper.appdata.xml 
new/sweeper-20.08.3/org.kde.sweeper.appdata.xml
--- old/sweeper-20.08.2/org.kde.sweeper.appdata.xml 2020-10-03 
14:24:39.0 +0200
+++ new/sweeper-20.08.3/org.kde.sweeper.appdata.xml 2020-10-31 
18:12:25.0 +0100
@@ -131,9 +131,9 @@
 sweeper
   
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sweeper-20.08.2/po/zh_CN/sweeper.po 
new/sweeper-20.08.3/po/zh_CN/sweeper.po
--- old/sweeper-20.08.2/po/zh_CN/sweeper.po 2020-10-06 05:28:45.0 
+0200
+++ new/sweeper-20.08.3/po/zh_CN/sweeper.po 2020-11-03 01:36:45.0 
+0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-02-14 03:28+0100\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit minuet for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package minuet for openSUSE:Factory checked 
in at 2020-11-10 13:45:13

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


Package is "minuet"

Tue Nov 10 13:45:13 2020 rev:52 rq:846794 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/minuet/minuet.changes2020-10-13 
15:42:15.241361869 +0200
+++ /work/SRC/openSUSE:Factory/.minuet.new.11331/minuet.changes 2020-11-10 
13:52:14.974986513 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:54 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  minuet-20.08.2.tar.xz
  minuet-20.08.2.tar.xz.sig

New:

  minuet-20.08.3.tar.xz
  minuet-20.08.3.tar.xz.sig



Other differences:
--
++ minuet.spec ++
--- /var/tmp/diff_new_pack.xzlSy4/_old  2020-11-10 13:52:15.958984653 +0100
+++ /var/tmp/diff_new_pack.xzlSy4/_new  2020-11-10 13:52:15.962984646 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   minuet
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:A KDE Software for Music Education
 License:GPL-2.0-or-later


++ minuet-20.08.2.tar.xz -> minuet-20.08.3.tar.xz ++
/work/SRC/openSUSE:Factory/minuet/minuet-20.08.2.tar.xz 
/work/SRC/openSUSE:Factory/.minuet.new.11331/minuet-20.08.3.tar.xz differ: char 
27, line 1




commit libkdegames for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package libkdegames for openSUSE:Factory 
checked in at 2020-11-10 13:44:42

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


Package is "libkdegames"

Tue Nov 10 13:44:42 2020 rev:104 rq:846775 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/libkdegames/libkdegames.changes  2020-10-13 
15:41:41.437342002 +0200
+++ /work/SRC/openSUSE:Factory/.libkdegames.new.11331/libkdegames.changes   
2020-11-10 13:52:01.731011546 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:38 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  libkdegames-20.08.2.tar.xz
  libkdegames-20.08.2.tar.xz.sig

New:

  libkdegames-20.08.3.tar.xz
  libkdegames-20.08.3.tar.xz.sig



Other differences:
--
++ libkdegames.spec ++
--- /var/tmp/diff_new_pack.LbZ1D1/_old  2020-11-10 13:52:02.343010390 +0100
+++ /var/tmp/diff_new_pack.LbZ1D1/_new  2020-11-10 13:52:02.347010382 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   libkdegames
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:General Data for KDE Games
 License:GPL-2.0-or-later


++ libkdegames-20.08.2.tar.xz -> libkdegames-20.08.3.tar.xz ++
/work/SRC/openSUSE:Factory/libkdegames/libkdegames-20.08.2.tar.xz 
/work/SRC/openSUSE:Factory/.libkdegames.new.11331/libkdegames-20.08.3.tar.xz 
differ: char 27, line 1




commit lskat for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package lskat for openSUSE:Factory checked 
in at 2020-11-10 13:45:03

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


Package is "lskat"

Tue Nov 10 13:45:03 2020 rev:102 rq:846788 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/lskat/lskat.changes  2020-10-13 
15:41:57.501353337 +0200
+++ /work/SRC/openSUSE:Factory/.lskat.new.11331/lskat.changes   2020-11-10 
13:52:08.286999155 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:49 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  lskat-20.08.2.tar.xz
  lskat-20.08.2.tar.xz.sig

New:

  lskat-20.08.3.tar.xz
  lskat-20.08.3.tar.xz.sig



Other differences:
--
++ lskat.spec ++
--- /var/tmp/diff_new_pack.eZeV21/_old  2020-11-10 13:52:08.878998036 +0100
+++ /var/tmp/diff_new_pack.eZeV21/_new  2020-11-10 13:52:08.882998028 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   lskat
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:German Skat game
 License:GPL-2.0-or-later


++ lskat-20.08.2.tar.xz -> lskat-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lskat-20.08.2/po/zh_CN/lskat.po 
new/lskat-20.08.3/po/zh_CN/lskat.po
--- old/lskat-20.08.2/po/zh_CN/lskat.po 2020-10-06 05:34:32.0 +0200
+++ new/lskat-20.08.3/po/zh_CN/lskat.po 2020-11-03 01:41:27.0 +0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-09-23 12:21\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit rocs for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package rocs for openSUSE:Factory checked in 
at 2020-11-10 13:45:35

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


Package is "rocs"

Tue Nov 10 13:45:35 2020 rev:126 rq:846804 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/rocs/rocs.changes2020-10-13 
15:43:06.821384133 +0200
+++ /work/SRC/openSUSE:Factory/.rocs.new.11331/rocs.changes 2020-11-10 
13:52:50.798918800 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:48:03 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  rocs-20.08.2.tar.xz
  rocs-20.08.2.tar.xz.sig

New:

  rocs-20.08.3.tar.xz
  rocs-20.08.3.tar.xz.sig



Other differences:
--
++ rocs.spec ++
--- /var/tmp/diff_new_pack.wECzjJ/_old  2020-11-10 13:52:51.314917824 +0100
+++ /var/tmp/diff_new_pack.wECzjJ/_new  2020-11-10 13:52:51.314917824 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   rocs
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Graph Theory IDE
 License:GPL-2.0-or-later


++ rocs-20.08.2.tar.xz -> rocs-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rocs-20.08.2/CMakeLists.txt 
new/rocs-20.08.3/CMakeLists.txt
--- old/rocs-20.08.2/CMakeLists.txt 2020-10-08 16:46:31.0 +0200
+++ new/rocs-20.08.3/CMakeLists.txt 2020-10-31 17:31:04.0 +0100
@@ -28,7 +28,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "20")
 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}")
 
 find_package(ECM 5.15.0 REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rocs-20.08.2/po/de/libgraphtheory.po 
new/rocs-20.08.3/po/de/libgraphtheory.po
--- old/rocs-20.08.2/po/de/libgraphtheory.po2020-10-08 19:13:57.0 
+0200
+++ new/rocs-20.08.3/po/de/libgraphtheory.po2020-11-03 01:35:03.0 
+0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: rocs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-08-24 08:05+0200\n"
-"PO-Revision-Date: 2020-09-17 16:15+0200\n"
+"PO-Revision-Date: 2020-10-17 07:52+0200\n"
 "Last-Translator: Burkhard Lück \n"
 "Language-Team: German \n"
 "Language: de\n"
@@ -393,12 +393,12 @@
 #: editorplugins/generategraph/generategraphwidget.cpp:584
 #, kde-format
 msgid "Incorrect Edge Direction"
-msgstr ""
+msgstr "Falsche Kantenrichtung"
 
 #: editorplugins/generategraph/generategraphwidget.cpp:584
 #, kde-format
 msgid "Edges in a Directed Acyclical Graph must be directional."
-msgstr ""
+msgstr "Kanten in einem gerichteten azyklischen Graph müssen gerichtet sein."
 
 #. i18n: ectx: property (windowTitle), widget (QWidget, GenerateGraphWidget)
 #: editorplugins/generategraph/generategraphwidget.ui:14
@@ -450,17 +450,15 @@
 
 #. i18n: ectx: property (text), item, widget (KComboBox, comboGraphGenerator)
 #: editorplugins/generategraph/generategraphwidget.ui:56
-#, fuzzy, kde-format
-#| msgid "Random Graph"
+#, kde-format
 msgid "Random Dag Graph"
-msgstr "Zufälliger Graph"
+msgstr "Zufälliger gerichteter azyklischer Graph"
 
 #. i18n: ectx: property (text), item, widget (KComboBox, comboGraphGenerator)
 #: editorplugins/generategraph/generategraphwidget.ui:61
-#, fuzzy, kde-format
-#| msgid "Mesh Graph"
+#, kde-format
 msgid "Path Graph"
-msgstr "Netzgraph"
+msgstr "Linearer Graph"
 
 #. i18n: ectx: property (text), item, widget (KComboBox, comboGraphGenerator)
 #. i18n: ectx: property (text), widget (QRadioButton, radioButtonMakeComplete)
@@ -472,10 +470,9 @@
 
 #. i18n: ectx: property (text), item, widget (KComboBox, comboGraphGenerator)
 #: editorplugins/generategraph/generategraphwidget.ui:71
-#, fuzzy, kde-format
-#| msgid "Complete Graph"
+#, kde-format
 msgid "Complete Bipartite"
-msgstr "Graphen vervollständigen"
+msgstr "Bipartiter-Graph vervollständigen"
 
 #. i18n: ectx: property (toolTip), widget (QPushButton, buttonShowAdvanced)
 #: editorplugins/generategraph/generategraphwidget.ui:91
@@ -599,17 +596,15 @@
 
 #. i18n: ectx: property (text), widget (QLabel, 
label_completeBipartiteNodesLeft)
 #: 

commit pim-sieve-editor for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package pim-sieve-editor for 
openSUSE:Factory checked in at 2020-11-10 13:45:29

Comparing /work/SRC/openSUSE:Factory/pim-sieve-editor (Old)
 and  /work/SRC/openSUSE:Factory/.pim-sieve-editor.new.11331 (New)


Package is "pim-sieve-editor"

Tue Nov 10 13:45:29 2020 rev:49 rq:846801 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/pim-sieve-editor/pim-sieve-editor.changes
2020-10-13 15:42:51.973377723 +0200
+++ 
/work/SRC/openSUSE:Factory/.pim-sieve-editor.new.11331/pim-sieve-editor.changes 
2020-11-10 13:52:44.974929808 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:48:00 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  pim-sieve-editor-20.08.2.tar.xz
  pim-sieve-editor-20.08.2.tar.xz.sig

New:

  pim-sieve-editor-20.08.3.tar.xz
  pim-sieve-editor-20.08.3.tar.xz.sig



Other differences:
--
++ pim-sieve-editor.spec ++
--- /var/tmp/diff_new_pack.CLqmxF/_old  2020-11-10 13:52:45.450928908 +0100
+++ /var/tmp/diff_new_pack.CLqmxF/_new  2020-11-10 13:52:45.454928901 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   pim-sieve-editor
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Sieve scripts editor for KDE PIM
 License:GPL-2.0-or-later AND LGPL-2.1-or-later


++ pim-sieve-editor-20.08.2.tar.xz -> pim-sieve-editor-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pim-sieve-editor-20.08.2/CMakeLists.txt 
new/pim-sieve-editor-20.08.3/CMakeLists.txt
--- old/pim-sieve-editor-20.08.2/CMakeLists.txt 2020-10-06 05:40:54.0 
+0200
+++ new/pim-sieve-editor-20.08.3/CMakeLists.txt 2020-11-03 01:46:28.0 
+0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.5)
-set(PIM_VERSION "5.15.2")
+set(PIM_VERSION "5.15.3")
 project( sieveeditor VERSION ${PIM_VERSION})
-set(RELEASE_SERVICE_VERSION "20.08.2")
+set(RELEASE_SERVICE_VERSION "20.08.3")
 if (POLICY CMP0063)
 cmake_policy(SET CMP0063 NEW)
 endif()
@@ -40,15 +40,15 @@
 
 set(KDEPIM_VERSION "${PIM_VERSION}${KDEPIM_DEV_VERSION} 
(${RELEASE_SERVICE_VERSION})")
 
-set(KMAILTRANSPORT_LIB_VERSION "5.15.2")
-set(KPIMTEXTEDIT_LIB_VERSION "5.15.2")
+set(KMAILTRANSPORT_LIB_VERSION "5.15.3")
+set(KPIMTEXTEDIT_LIB_VERSION "5.15.3")
 
 set(KDEPIM_LIB_VERSION "${PIM_VERSION}")
 set(KDEPIM_LIB_SOVERSION "5")
 
-set(LIBKSIEVE_LIB_VERSION "5.15.2")
-set(PIMCOMMON_LIB_VERSION "5.15.2")
-set(KIMAP_LIB_VERSION "5.15.2")
+set(LIBKSIEVE_LIB_VERSION "5.15.3")
+set(PIMCOMMON_LIB_VERSION "5.15.3")
+set(KIMAP_LIB_VERSION "5.15.3")
 
 
 set(QT_REQUIRED_VERSION "5.13.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pim-sieve-editor-20.08.2/po/et/sieveeditor.po 
new/pim-sieve-editor-20.08.3/po/et/sieveeditor.po
--- old/pim-sieve-editor-20.08.2/po/et/sieveeditor.po   2020-10-06 
05:40:53.0 +0200
+++ new/pim-sieve-editor-20.08.3/po/et/sieveeditor.po   2020-11-03 
01:46:27.0 +0100
@@ -275,8 +275,7 @@
 msgstr "Tööriistad > Sieve skripti silumine..."
 
 #: sieveeditoremptytabwidgetlabel.cpp:42
-#, fuzzy, kde-format
-#| msgid "Import Sieve Settings:"
+#, kde-format
 msgid "Import Sieve Settings:"
 msgstr "Sieve seadistuste import:"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pim-sieve-editor-20.08.2/po/zh_CN/sieveeditor.po 
new/pim-sieve-editor-20.08.3/po/zh_CN/sieveeditor.po
--- old/pim-sieve-editor-20.08.2/po/zh_CN/sieveeditor.po2020-10-06 
05:40:54.0 +0200
+++ new/pim-sieve-editor-20.08.3/po/zh_CN/sieveeditor.po2020-11-03 
01:46:27.0 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:49+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pim-sieve-editor-20.08.2/src/org.kde.sieveeditor.appdata.xml 
new/pim-sieve-editor-20.08.3/src/org.kde.sieveeditor.appdata.xml
--- old/pim-sieve-editor-20.08.2/src/org.kde.sieveeditor.appdata.xml
2020-10-03 14:51:07.0 +0200
+++ new/pim-sieve-editor-20.08.3/src/org.kde.sieveeditor.appdata.xml
2020-10-31 18:37:07.0 +0100
@@ 

commit libkeduvocdocument for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package libkeduvocdocument for 
openSUSE:Factory checked in at 2020-11-10 13:44:45

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


Package is "libkeduvocdocument"

Tue Nov 10 13:44:45 2020 rev:70 rq:846777 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/libkeduvocdocument/libkeduvocdocument.changes
2020-10-13 15:41:43.021343119 +0200
+++ 
/work/SRC/openSUSE:Factory/.libkeduvocdocument.new.11331/libkeduvocdocument.changes
 2020-11-10 13:52:03.111008938 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:40 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  libkeduvocdocument-20.08.2.tar.xz
  libkeduvocdocument-20.08.2.tar.xz.sig

New:

  libkeduvocdocument-20.08.3.tar.xz
  libkeduvocdocument-20.08.3.tar.xz.sig



Other differences:
--
++ libkeduvocdocument.spec ++
--- /var/tmp/diff_new_pack.4BcqsX/_old  2020-11-10 13:52:03.623007970 +0100
+++ /var/tmp/diff_new_pack.4BcqsX/_new  2020-11-10 13:52:03.631007956 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   libkeduvocdocument
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Library for KDE Education Applications
 License:GPL-2.0-or-later


++ libkeduvocdocument-20.08.2.tar.xz -> libkeduvocdocument-20.08.3.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkeduvocdocument-20.08.2/po/zh_CN/libkeduvocdocument.po 
new/libkeduvocdocument-20.08.3/po/zh_CN/libkeduvocdocument.po
--- old/libkeduvocdocument-20.08.2/po/zh_CN/libkeduvocdocument.po   
2020-10-06 05:24:53.0 +0200
+++ new/libkeduvocdocument-20.08.3/po/zh_CN/libkeduvocdocument.po   
2020-11-03 01:33:56.0 +0100
@@ -11,7 +11,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 03:03+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit marble for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package marble for openSUSE:Factory checked 
in at 2020-11-10 13:45:06

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


Package is "marble"

Tue Nov 10 13:45:06 2020 rev:134 rq:846791 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/marble/marble.changes2020-10-13 
15:42:04.277357137 +0200
+++ /work/SRC/openSUSE:Factory/.marble.new.11331/marble.changes 2020-11-10 
13:52:11.118993802 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:52 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  marble-20.08.2.tar.xz
  marble-20.08.2.tar.xz.sig

New:

  marble-20.08.3.tar.xz
  marble-20.08.3.tar.xz.sig



Other differences:
--
++ marble.spec ++
--- /var/tmp/diff_new_pack.OYBGyf/_old  2020-11-10 13:52:11.954992221 +0100
+++ /var/tmp/diff_new_pack.OYBGyf/_new  2020-11-10 13:52:11.962992207 +0100
@@ -23,7 +23,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   marble
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Generic map viewer
 # License note: the tools directory contains GPL-3 tools, but they are neither 
built nor installed by the package


++ marble-20.08.2.tar.xz -> marble-20.08.3.tar.xz ++
/work/SRC/openSUSE:Factory/marble/marble-20.08.2.tar.xz 
/work/SRC/openSUSE:Factory/.marble.new.11331/marble-20.08.3.tar.xz differ: char 
26, line 1




commit palapeli for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package palapeli for openSUSE:Factory 
checked in at 2020-11-10 13:45:16

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


Package is "palapeli"

Tue Nov 10 13:45:16 2020 rev:102 rq:846797 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/palapeli/palapeli.changes2020-10-13 
15:42:20.137363982 +0200
+++ /work/SRC/openSUSE:Factory/.palapeli.new.11331/palapeli.changes 
2020-11-10 13:52:21.290974574 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:56 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  palapeli-20.08.2.tar.xz
  palapeli-20.08.2.tar.xz.sig

New:

  palapeli-20.08.3.tar.xz
  palapeli-20.08.3.tar.xz.sig



Other differences:
--
++ palapeli.spec ++
--- /var/tmp/diff_new_pack.2DZEkB/_old  2020-11-10 13:52:21.902973418 +0100
+++ /var/tmp/diff_new_pack.2DZEkB/_new  2020-11-10 13:52:21.906973411 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   palapeli
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Jigsaw puzzle game
 License:GPL-2.0-or-later


++ palapeli-20.08.2.tar.xz -> palapeli-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palapeli-20.08.2/CMakeLists.txt 
new/palapeli-20.08.3/CMakeLists.txt
--- old/palapeli-20.08.2/CMakeLists.txt 2020-10-06 05:34:37.0 +0200
+++ new/palapeli-20.08.3/CMakeLists.txt 2020-11-03 01:41:32.0 +0100
@@ -2,7 +2,7 @@
 
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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/palapeli-20.08.2/po/cs/palapeli.po 
new/palapeli-20.08.3/po/cs/palapeli.po
--- old/palapeli-20.08.2/po/cs/palapeli.po  2020-10-06 05:34:35.0 
+0200
+++ new/palapeli-20.08.3/po/cs/palapeli.po  2020-11-03 01:41:31.0 
+0100
@@ -1,6 +1,6 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Vít Pelčák , 2010, 2011, 2013, 2014, 2015, 2017.
+# Vít Pelčák , 2010, 2011, 2013, 2014, 2015, 2017, 2020.
 # Lukáš Tinkl , 2010, 2011.
 # Tomáš Chvátal , 2012, 2013.
 #
@@ -9,15 +9,15 @@
 "Project-Id-Version: palapeli\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2017-09-12 11:42+0100\n"
-"Last-Translator: Vít Pelčák \n"
+"PO-Revision-Date: 2020-09-16 16:13+0200\n"
+"Last-Translator: Vit Pelcak \n"
 "Language-Team: Czech \n"
 "Language: cs\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.08.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -980,7 +980,7 @@
 #: src/window/mainwindow.cpp:68
 #, kde-format
 msgid "Back to "
-msgstr "Zpět do kolek"
+msgstr "Zpět do sbír"
 
 #: src/window/mainwindow.cpp:69
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palapeli-20.08.2/po/zh_CN/palapeli.po 
new/palapeli-20.08.3/po/zh_CN/palapeli.po
--- old/palapeli-20.08.2/po/zh_CN/palapeli.po   2020-10-06 05:34:36.0 
+0200
+++ new/palapeli-20.08.3/po/zh_CN/palapeli.po   2020-11-03 01:41:32.0 
+0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palapeli-20.08.2/src/org.kde.palapeli.appdata.xml 
new/palapeli-20.08.3/src/org.kde.palapeli.appdata.xml
--- old/palapeli-20.08.2/src/org.kde.palapeli.appdata.xml   2020-10-03 
14:38:08.0 

commit ktuberling for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ktuberling for openSUSE:Factory 
checked in at 2020-11-10 13:44:26

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


Package is "ktuberling"

Tue Nov 10 13:44:26 2020 rev:103 rq:846765 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ktuberling/ktuberling.changes2020-10-13 
15:41:24.493330046 +0200
+++ /work/SRC/openSUSE:Factory/.ktuberling.new.11331/ktuberling.changes 
2020-11-10 13:51:32.843066150 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:30 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ktuberling-20.08.2.tar.xz
  ktuberling-20.08.2.tar.xz.sig

New:

  ktuberling-20.08.3.tar.xz
  ktuberling-20.08.3.tar.xz.sig



Other differences:
--
++ ktuberling.spec ++
--- /var/tmp/diff_new_pack.3V1C8t/_old  2020-11-10 13:51:33.591064736 +0100
+++ /var/tmp/diff_new_pack.3V1C8t/_new  2020-11-10 13:51:33.595064729 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ktuberling
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Potato drawing editor
 License:GPL-2.0-or-later


++ ktuberling-20.08.2.tar.xz -> ktuberling-20.08.3.tar.xz ++
/work/SRC/openSUSE:Factory/ktuberling/ktuberling-20.08.2.tar.xz 
/work/SRC/openSUSE:Factory/.ktuberling.new.11331/ktuberling-20.08.3.tar.xz 
differ: char 26, line 1




commit kturtle for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kturtle for openSUSE:Factory checked 
in at 2020-11-10 13:44:29

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


Package is "kturtle"

Tue Nov 10 13:44:29 2020 rev:121 rq:846766 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kturtle/kturtle.changes  2020-10-13 
15:41:29.29433 +0200
+++ /work/SRC/openSUSE:Factory/.kturtle.new.11331/kturtle.changes   
2020-11-10 13:51:33.931064093 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:31 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kturtle-20.08.2.tar.xz
  kturtle-20.08.2.tar.xz.sig

New:

  kturtle-20.08.3.tar.xz
  kturtle-20.08.3.tar.xz.sig



Other differences:
--
++ kturtle.spec ++
--- /var/tmp/diff_new_pack.dPEq78/_old  2020-11-10 13:51:34.463063088 +0100
+++ /var/tmp/diff_new_pack.dPEq78/_new  2020-11-10 13:51:34.467063081 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kturtle
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Logo Programming Environment
 License:GPL-2.0-or-later


++ kturtle-20.08.2.tar.xz -> kturtle-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kturtle-20.08.2/CMakeLists.txt 
new/kturtle-20.08.3/CMakeLists.txt
--- old/kturtle-20.08.2/CMakeLists.txt  2020-10-06 05:24:42.0 +0200
+++ new/kturtle-20.08.3/CMakeLists.txt  2020-11-03 01:33:47.0 +0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "20")
 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(kturtle VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kturtle-20.08.2/org.kde.kturtle.appdata.xml 
new/kturtle-20.08.3/org.kde.kturtle.appdata.xml
--- old/kturtle-20.08.2/org.kde.kturtle.appdata.xml 2020-10-03 
14:15:39.0 +0200
+++ new/kturtle-20.08.3/org.kde.kturtle.appdata.xml 2020-10-31 
18:03:58.0 +0100
@@ -147,9 +147,9 @@
 kturtle
   
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kturtle-20.08.2/po/ca/docs/kturtle/programming-reference.docbook 
new/kturtle-20.08.3/po/ca/docs/kturtle/programming-reference.docbook
--- old/kturtle-20.08.2/po/ca/docs/kturtle/programming-reference.docbook
2020-10-06 05:24:41.0 +0200
+++ new/kturtle-20.08.3/po/ca/docs/kturtle/programming-reference.docbook
2020-11-03 01:33:46.0 +0100
@@ -26,7 +26,7 @@
 La gramàtica de 
 Igual que en qualsevol llenguatge,  té diferents tipus de 
paraules i símbols. En anglès es distingeixen els verbs (com «to walk» 
-caminar- o «to sing» -cantar-) i noms (com «sister» -germana- o «house» 
-casa-), que s'utilitzen per a diferents propòsits.  és un 
llenguatge de programació, que s'utilitza per indicar el que ha de fer 
.
+>Igual que en qualsevol llenguatge,  té diferents tipus de 
paraules i símbols. En anglès es distingeixen els verbs (com «to walk» 
-caminar- o «to sing» -cantar-) i noms (com «sister» -germana- o «house» 
-casa-), que s'utilitzen per a diferents finalitats.  és un 
llenguatge de programació, que s'utilitza per indicar el que ha de fer 
.
 En aquesta secció s'expliquen amb brevetat alguns dels diferents tipus de 
 >paraules i símbols de . Expliquem els comentaris, 2004, 2005.
 # David Gil , 2005.
 # Orestes Mas Casals , 2005, 2007, 2008, 2009, 2010, 
2011, 2012, 2014.
-# Josep Ma. Ferrer , 2009, 2010, 2012, 2013, 2014, 2015, 
2016, 2017, 2018, 2019.
+# Josep Ma. Ferrer , 2009, 2010, 2012, 2013, 2014, 2015, 
2016, 2017, 2018, 2019, 2020.
 # Antoni Bella Pérez , 2015, 2016, 2017, 2019, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kturtle\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-03-05 03:06+0100\n"
-"PO-Revision-Date: 2020-07-26 17:44+0200\n"
-"Last-Translator: Antoni Bella Pérez \n"
+"PO-Revision-Date: 2020-10-13 20:36+0200\n"
+"Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 

commit libkgeomap for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package libkgeomap for openSUSE:Factory 
checked in at 2020-11-10 13:44:52

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


Package is "libkgeomap"

Tue Nov 10 13:44:52 2020 rev:66 rq:846780 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/libkgeomap/libkgeomap.changes2020-10-13 
15:41:44.985344505 +0200
+++ /work/SRC/openSUSE:Factory/.libkgeomap.new.11331/libkgeomap.changes 
2020-11-10 13:52:04.271006746 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:42 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  libkgeomap-20.08.2.tar.xz
  libkgeomap-20.08.2.tar.xz.sig

New:

  libkgeomap-20.08.3.tar.xz
  libkgeomap-20.08.3.tar.xz.sig



Other differences:
--
++ libkgeomap.spec ++
--- /var/tmp/diff_new_pack.VgzX27/_old  2020-11-10 13:52:04.779005785 +0100
+++ /var/tmp/diff_new_pack.VgzX27/_new  2020-11-10 13:52:04.783005778 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   libkgeomap
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Wrapper around different world-map components
 License:LGPL-2.1-only AND GPL-2.0-or-later


++ libkgeomap-20.08.2.tar.xz -> libkgeomap-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkgeomap-20.08.2/po/zh_CN/libkgeomap.po 
new/libkgeomap-20.08.3/po/zh_CN/libkgeomap.po
--- old/libkgeomap-20.08.2/po/zh_CN/libkgeomap.po   2020-10-06 
05:27:04.0 +0200
+++ new/libkgeomap-20.08.3/po/zh_CN/libkgeomap.po   2020-11-03 
01:35:45.0 +0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 03:07+0200\n"
-"PO-Revision-Date: 2020-09-23 12:21\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit kwordquiz for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kwordquiz for openSUSE:Factory 
checked in at 2020-11-10 13:44:39

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


Package is "kwordquiz"

Tue Nov 10 13:44:39 2020 rev:123 rq:846770 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kwordquiz/kwordquiz.changes  2020-10-13 
15:41:39.277340477 +0200
+++ /work/SRC/openSUSE:Factory/.kwordquiz.new.11331/kwordquiz.changes   
2020-11-10 13:51:45.587042062 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:34 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kwordquiz-20.08.2.tar.xz
  kwordquiz-20.08.2.tar.xz.sig

New:

  kwordquiz-20.08.3.tar.xz
  kwordquiz-20.08.3.tar.xz.sig



Other differences:
--
++ kwordquiz.spec ++
--- /var/tmp/diff_new_pack.MBJ6oU/_old  2020-11-10 13:51:46.195040912 +0100
+++ /var/tmp/diff_new_pack.MBJ6oU/_new  2020-11-10 13:51:46.199040905 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kwordquiz
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Vocabulary Trainer
 License:GPL-2.0-or-later


++ kwordquiz-20.08.2.tar.xz -> kwordquiz-20.08.3.tar.xz ++
 2121 lines of diff (skipped)




commit lokalize for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package lokalize for openSUSE:Factory 
checked in at 2020-11-10 13:44:59

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


Package is "lokalize"

Tue Nov 10 13:44:59 2020 rev:93 rq:846787 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/lokalize/lokalize.changes2020-10-13 
15:41:52.729349969 +0200
+++ /work/SRC/openSUSE:Factory/.lokalize.new.11331/lokalize.changes 
2020-11-10 13:52:06.803001960 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:48 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  lokalize-20.08.2.tar.xz
  lokalize-20.08.2.tar.xz.sig

New:

  lokalize-20.08.3.tar.xz
  lokalize-20.08.3.tar.xz.sig



Other differences:
--
++ lokalize.spec ++
--- /var/tmp/diff_new_pack.EfhxNs/_old  2020-11-10 13:52:07.311000999 +0100
+++ /var/tmp/diff_new_pack.EfhxNs/_new  2020-11-10 13:52:07.311000999 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   lokalize
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:KDE Translation Editor
 License:GPL-2.0-or-later


++ lokalize-20.08.2.tar.xz -> lokalize-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lokalize-20.08.2/CMakeLists.txt 
new/lokalize-20.08.3/CMakeLists.txt
--- old/lokalize-20.08.2/CMakeLists.txt 2020-10-06 05:35:27.0 +0200
+++ new/lokalize-20.08.3/CMakeLists.txt 2020-11-03 01:42:09.0 +0100
@@ -4,7 +4,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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(lokalize VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lokalize-20.08.2/org.kde.lokalize.appdata.xml 
new/lokalize-20.08.3/org.kde.lokalize.appdata.xml
--- old/lokalize-20.08.2/org.kde.lokalize.appdata.xml   2020-10-04 
18:48:14.0 +0200
+++ new/lokalize-20.08.3/org.kde.lokalize.appdata.xml   2020-10-31 
18:27:20.0 +0100
@@ -31,6 +31,7 @@
   Lokalize
   Lokalize
   Lokalize
+  Lokalize
   Lokalize
   Lokalize
   Lokalize
@@ -72,6 +73,7 @@
   System tłumaczeń wspomagany komputerowo
   Sistema de traduções auxiliado por 
computador
   Sistema de tradução auxiliado pelo 
computador
+  Sistem de traducere asistată de calculator
   Система автоматизированного перевода
   Počítačovo riadený prekladový systém
   Računalniško podprt prevajalni sistem
@@ -138,10 +140,10 @@
 lokalize
   
   
+
 
 
 
-
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lokalize-20.08.2/po/ca/docs/lokalize/index.docbook 
new/lokalize-20.08.3/po/ca/docs/lokalize/index.docbook
--- old/lokalize-20.08.2/po/ca/docs/lokalize/index.docbook  2020-10-06 
05:35:26.0 +0200
+++ new/lokalize-20.08.3/po/ca/docs/lokalize/index.docbook  2020-11-03 
01:42:09.0 +0100
@@ -128,7 +128,7 @@
 >unitats. Una unitat normalment correspon a una sola cadena a la interfície d'usuari, o un 
paràgraf a la documentació. La funció del primer editor multilínia és mostrar 
la part original de la parella. El propòsit del segon editor multilínia és 
mostrar la traducció. Podeu navegar per les  normalment correspon a una sola cadena a la interfície d'usuari, o un 
paràgraf a la documentació. La funció del primer editor multilínia és mostrar 
la part original de la parella. La finalitat del segon editor multilínia és 
mostrar la traducció. Podeu navegar per les unitats fent servir la vista Unitats de traducció=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Lokalize 20.04.2\n"
+"X-Generator: Lokalize 20.08.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lokalize-20.08.2/po/de/lokalize.po 
new/lokalize-20.08.3/po/de/lokalize.po
--- old/lokalize-20.08.2/po/de/lokalize.po  2020-10-06 05:35:26.0 
+0200
+++ new/lokalize-20.08.3/po/de/lokalize.po  2020-11-03 01:42:08.0 
+0100
@@ -11,7 +11,7 @@
 "Project-Id-Version: 

commit kubrick for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kubrick for openSUSE:Factory checked 
in at 2020-11-10 13:44:33

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


Package is "kubrick"

Tue Nov 10 13:44:33 2020 rev:102 rq:846767 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kubrick/kubrick.changes  2020-10-13 
15:41:31.941335301 +0200
+++ /work/SRC/openSUSE:Factory/.kubrick.new.11331/kubrick.changes   
2020-11-10 13:51:35.299061508 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:31 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kubrick-20.08.2.tar.xz
  kubrick-20.08.2.tar.xz.sig

New:

  kubrick-20.08.3.tar.xz
  kubrick-20.08.3.tar.xz.sig



Other differences:
--
++ kubrick.spec ++
--- /var/tmp/diff_new_pack.Cs6JJP/_old  2020-11-10 13:51:35.807060548 +0100
+++ /var/tmp/diff_new_pack.Cs6JJP/_new  2020-11-10 13:51:35.811060540 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kubrick
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Game based on Rubik's Cube
 License:GPL-2.0-or-later


++ kubrick-20.08.2.tar.xz -> kubrick-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kubrick-20.08.2/CMakeLists.txt 
new/kubrick-20.08.3/CMakeLists.txt
--- old/kubrick-20.08.2/CMakeLists.txt  2020-10-06 05:34:08.0 +0200
+++ new/kubrick-20.08.3/CMakeLists.txt  2020-11-03 01:41:07.0 +0100
@@ -2,7 +2,7 @@
 
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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/kubrick-20.08.2/po/zh_CN/kubrick.po 
new/kubrick-20.08.3/po/zh_CN/kubrick.po
--- old/kubrick-20.08.2/po/zh_CN/kubrick.po 2020-10-06 05:34:08.0 
+0200
+++ new/kubrick-20.08.3/po/zh_CN/kubrick.po 2020-11-03 01:41:07.0 
+0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kubrick-20.08.2/src/org.kde.kubrick.appdata.xml 
new/kubrick-20.08.3/src/org.kde.kubrick.appdata.xml
--- old/kubrick-20.08.2/src/org.kde.kubrick.appdata.xml 2020-10-03 
14:37:20.0 +0200
+++ new/kubrick-20.08.3/src/org.kde.kubrick.appdata.xml 2020-10-31 
18:24:40.0 +0100
@@ -168,9 +168,9 @@
 none
   
   
+
 
 
 
-
   
 




commit ktouch for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ktouch for openSUSE:Factory checked 
in at 2020-11-10 13:43:57

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


Package is "ktouch"

Tue Nov 10 13:43:57 2020 rev:122 rq:846752 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ktouch/ktouch.changes2020-10-13 
15:40:34.889295044 +0200
+++ /work/SRC/openSUSE:Factory/.ktouch.new.11331/ktouch.changes 2020-11-10 
13:50:55.867136041 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:19 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ktouch-20.08.2.tar.xz
  ktouch-20.08.2.tar.xz.sig

New:

  ktouch-20.08.3.tar.xz
  ktouch-20.08.3.tar.xz.sig



Other differences:
--
++ ktouch.spec ++
--- /var/tmp/diff_new_pack.N6O6KH/_old  2020-11-10 13:50:56.495134855 +0100
+++ /var/tmp/diff_new_pack.N6O6KH/_new  2020-11-10 13:50:56.499134847 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ktouch
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Touch Typing Tutor
 License:GPL-2.0-or-later


++ ktouch-20.08.2.tar.xz -> ktouch-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktouch-20.08.2/CMakeLists.txt 
new/ktouch-20.08.3/CMakeLists.txt
--- old/ktouch-20.08.2/CMakeLists.txt   2020-10-08 16:32:35.0 +0200
+++ new/ktouch-20.08.3/CMakeLists.txt   2020-10-31 18:03:38.0 +0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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}")
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktouch-20.08.2/org.kde.ktouch.appdata.xml 
new/ktouch-20.08.3/org.kde.ktouch.appdata.xml
--- old/ktouch-20.08.2/org.kde.ktouch.appdata.xml   2020-10-08 
16:32:35.0 +0200
+++ new/ktouch-20.08.3/org.kde.ktouch.appdata.xml   2020-10-31 
18:03:38.0 +0100
@@ -211,9 +211,9 @@
   
   
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktouch-20.08.2/po/ca/docs/ktouch/index.docbook 
new/ktouch-20.08.3/po/ca/docs/ktouch/index.docbook
--- old/ktouch-20.08.2/po/ca/docs/ktouch/index.docbook  2020-10-08 
19:13:22.0 +0200
+++ new/ktouch-20.08.3/po/ca/docs/ktouch/index.docbook  2020-11-03 
01:33:40.0 +0100
@@ -761,9 +761,9 @@
 Automàticament
 Si obriu qualsevol diàleg o canvieu entre aplicacions durant una sessió 
d'entrenament l'entrenament serà pausat i el temporitzador s'aturarà fins que 
doneu el focus de nou a la finestra de l' i premeu qualsevol 
tecla. 
+>Si obriu qualsevol diàleg o canvieu entre aplicacions durant una sessió 
d'entrenament l'entrenament es posarà en pausa i el temporitzador s'aturarà 
fins que doneu el focus de nou a la finestra de l' i premeu 
qualsevol tecla. 
 La sessió d'entrenament també serà pausada si no hi ha activitat per part de 
l'usuari durant cinc segons. 
+>La sessió d'entrenament també es posarà en pausa si no hi ha activitat per 
part de l'usuari durant cinc segons. 
 
 
 , 2003, 2004, 2006, 2013, 2014, 
2018, 2019, 2020.
 # Albert Astals Cid , 2004, 2005.
 # David Gil , 2004, 2005.
-# Josep Ma. Ferrer , 2007, 2008, 2009, 2010, 2011, 2013, 
2014, 2015, 2016, 2019.
+# Josep Ma. Ferrer , 2007, 2008, 2009, 2010, 2011, 2013, 
2014, 2015, 2016, 2019, 2020.
 # Orestes Mas Casals , 2007, 2008, 2009, 2010, 2011, 
2012, 2013.
 msgid ""
 msgstr ""
 "Project-Id-Version: ktouch\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-03-03 03:03+0100\n"
-"PO-Revision-Date: 2020-07-26 17:15+0200\n"
-"Last-Translator: Antoni Bella Pérez \n"
+"PO-Revision-Date: 2020-10-13 20:40+0200\n"
+"Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 20.04.3\n"
+"X-Generator: Lokalize 20.08.1\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
@@ -903,8 +903,8 @@
 msgid ""
 "Training session 

commit ktp-approver for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ktp-approver for openSUSE:Factory 
checked in at 2020-11-10 13:44:00

Comparing /work/SRC/openSUSE:Factory/ktp-approver (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-approver.new.11331 (New)


Package is "ktp-approver"

Tue Nov 10 13:44:00 2020 rev:20 rq:846754 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ktp-approver/ktp-approver.changes
2020-10-13 15:40:38.417297534 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-approver.new.11331/ktp-approver.changes 
2020-11-10 13:50:57.959132087 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:20 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ktp-approver-20.08.2.tar.xz
  ktp-approver-20.08.2.tar.xz.sig

New:

  ktp-approver-20.08.3.tar.xz
  ktp-approver-20.08.3.tar.xz.sig



Other differences:
--
++ ktp-approver.spec ++
--- /var/tmp/diff_new_pack.qdDAyV/_old  2020-11-10 13:50:58.643130795 +0100
+++ /var/tmp/diff_new_pack.qdDAyV/_new  2020-11-10 13:50:58.643130795 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ktp-approver
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:KDE Channel Approver for Telepathy
 License:LGPL-2.1-or-later


++ ktp-approver-20.08.2.tar.xz -> ktp-approver-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-approver-20.08.2/CMakeLists.txt 
new/ktp-approver-20.08.3/CMakeLists.txt
--- old/ktp-approver-20.08.2/CMakeLists.txt 2020-10-06 05:37:27.0 
+0200
+++ new/ktp-approver-20.08.3/CMakeLists.txt 2020-11-03 01:43:39.0 
+0100
@@ -4,7 +4,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 
 set(KTP_APPROVER_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-approver-20.08.2/po/ia/kded_ktp_approver.po 
new/ktp-approver-20.08.3/po/ia/kded_ktp_approver.po
--- old/ktp-approver-20.08.2/po/ia/kded_ktp_approver.po 2020-10-06 
05:37:26.0 +0200
+++ new/ktp-approver-20.08.3/po/ia/kded_ktp_approver.po 2020-11-03 
01:43:39.0 +0100
@@ -1,21 +1,21 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Giovanni Sora , 2013.
+# Giovanni Sora , 2013, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-01-20 03:19+0100\n"
-"PO-Revision-Date: 2013-05-16 10:11+0200\n"
+"PO-Revision-Date: 2020-10-28 23:19+0100\n"
 "Last-Translator: Giovanni Sora \n"
-"Language-Team: Interlingua \n"
+"Language-Team: Interlingua \n"
 "Language: ia\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 2.0\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -60,16 +60,12 @@
 msgstr "Transferentia de file in arrivata ex %1"
 
 #: ktpapprovermodule.cpp:84
-#, fuzzy, kde-format
-#| msgctxt "@info:credit"
-#| msgid "(C) 2010, Collabora Ltd."
+#, kde-format
 msgid "(C) 2010, Collabora Ltd."
 msgstr "(C) 2010, Collabora Ltd"
 
 #: ktpapprovermodule.cpp:85
-#, fuzzy, kde-format
-#| msgctxt "@info:credit"
-#| msgid "George Kiagiadakis"
+#, kde-format
 msgid "George Kiagiadakis"
 msgstr "George Kiagiadakis"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-approver-20.08.2/po/zh_CN/kded_ktp_approver.po 
new/ktp-approver-20.08.3/po/zh_CN/kded_ktp_approver.po
--- old/ktp-approver-20.08.2/po/zh_CN/kded_ktp_approver.po  2020-10-06 
05:37:27.0 +0200
+++ new/ktp-approver-20.08.3/po/zh_CN/kded_ktp_approver.po  2020-11-03 
01:43:39.0 +0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-01-20 03:19+0100\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit ktp-send-file for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ktp-send-file for openSUSE:Factory 
checked in at 2020-11-10 13:44:17

Comparing /work/SRC/openSUSE:Factory/ktp-send-file (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-send-file.new.11331 (New)


Package is "ktp-send-file"

Tue Nov 10 13:44:17 2020 rev:20 rq:846762 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ktp-send-file/ktp-send-file.changes  
2020-10-13 15:41:09.157319224 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-send-file.new.11331/ktp-send-file.changes   
2020-11-10 13:51:03.471121669 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:28 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ktp-send-file-20.08.2.tar.xz
  ktp-send-file-20.08.2.tar.xz.sig

New:

  ktp-send-file-20.08.3.tar.xz
  ktp-send-file-20.08.3.tar.xz.sig



Other differences:
--
++ ktp-send-file.spec ++
--- /var/tmp/diff_new_pack.zBplvo/_old  2020-11-10 13:51:03.987120693 +0100
+++ /var/tmp/diff_new_pack.zBplvo/_new  2020-11-10 13:51:03.991120686 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ktp-send-file
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:File manager plugin
 License:LGPL-2.1-or-later


++ ktp-send-file-20.08.2.tar.xz -> ktp-send-file-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-send-file-20.08.2/CMakeLists.txt 
new/ktp-send-file-20.08.3/CMakeLists.txt
--- old/ktp-send-file-20.08.2/CMakeLists.txt2020-10-06 05:37:51.0 
+0200
+++ new/ktp-send-file-20.08.3/CMakeLists.txt2020-11-03 01:43:57.0 
+0100
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 set (KTP_SEND_FILE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 set(IS_KTP_INTERNAL_MODULE TRUE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-send-file-20.08.2/po/zh_CN/ktp-send-file.po 
new/ktp-send-file-20.08.3/po/zh_CN/ktp-send-file.po
--- old/ktp-send-file-20.08.2/po/zh_CN/ktp-send-file.po 2020-10-06 
05:37:51.0 +0200
+++ new/ktp-send-file-20.08.3/po/zh_CN/ktp-send-file.po 2020-11-03 
01:43:57.0 +0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-01-16 03:16+0100\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit ktp-filetransfer-handler for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ktp-filetransfer-handler for 
openSUSE:Factory checked in at 2020-11-10 13:44:12

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


Package is "ktp-filetransfer-handler"

Tue Nov 10 13:44:12 2020 rev:20 rq:846760 version:20.08.3

Changes:

--- 
/work/SRC/openSUSE:Factory/ktp-filetransfer-handler/ktp-filetransfer-handler.changes
2020-10-13 15:41:01.113313548 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-filetransfer-handler.new.11331/ktp-filetransfer-handler.changes
 2020-11-10 13:51:02.483123536 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:26 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ktp-filetransfer-handler-20.08.2.tar.xz
  ktp-filetransfer-handler-20.08.2.tar.xz.sig

New:

  ktp-filetransfer-handler-20.08.3.tar.xz
  ktp-filetransfer-handler-20.08.3.tar.xz.sig



Other differences:
--
++ ktp-filetransfer-handler.spec ++
--- /var/tmp/diff_new_pack.vr6dKC/_old  2020-11-10 13:51:03.003122553 +0100
+++ /var/tmp/diff_new_pack.vr6dKC/_new  2020-11-10 13:51:03.007122546 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ktp-filetransfer-handler
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Telepathy filetransfer handler
 License:GPL-2.0-or-later


++ ktp-filetransfer-handler-20.08.2.tar.xz -> 
ktp-filetransfer-handler-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-filetransfer-handler-20.08.2/CMakeLists.txt 
new/ktp-filetransfer-handler-20.08.3/CMakeLists.txt
--- old/ktp-filetransfer-handler-20.08.2/CMakeLists.txt 2020-10-06 
05:37:46.0 +0200
+++ new/ktp-filetransfer-handler-20.08.3/CMakeLists.txt 2020-11-03 
01:43:54.0 +0100
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "20")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "2")
+set(RELEASE_SERVICE_VERSION_MICRO "3")
 set(KTP_FILETRANSFER_HANDLER_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 find_package(ECM 1.3.0 REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-filetransfer-handler-20.08.2/po/ia/ktp-filetransfer-handler.po 
new/ktp-filetransfer-handler-20.08.3/po/ia/ktp-filetransfer-handler.po
--- old/ktp-filetransfer-handler-20.08.2/po/ia/ktp-filetransfer-handler.po  
2020-10-06 05:37:46.0 +0200
+++ new/ktp-filetransfer-handler-20.08.3/po/ia/ktp-filetransfer-handler.po  
2020-11-03 01:43:54.0 +0100
@@ -1,21 +1,21 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Giovanni Sora , 2013.
+# Giovanni Sora , 2013, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 03:11+0200\n"
-"PO-Revision-Date: 2013-10-02 13:51+0200\n"
-"Last-Translator: G.Sora \n"
-"Language-Team: Interlingua \n"
+"PO-Revision-Date: 2020-10-15 17:42+0200\n"
+"Last-Translator: giovanni \n"
+"Language-Team: Interlingua \n"
 "Language: ia\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 20.04.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -143,7 +143,7 @@
 #: src/handle-outgoing-file-transfer-channel-job.cpp:296
 #, kde-format
 msgid "Cannot cancel outgoing file transfer"
-msgstr "Il non pot ecancellar transferimento de file de partita"
+msgstr "Il non pote cancellar transferimento de file de partita"
 
 #: src/main.cpp:36
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-filetransfer-handler-20.08.2/po/zh_CN/ktp-filetransfer-handler.po 
new/ktp-filetransfer-handler-20.08.3/po/zh_CN/ktp-filetransfer-handler.po
--- old/ktp-filetransfer-handler-20.08.2/po/zh_CN/ktp-filetransfer-handler.po   
2020-10-06 05:37:46.0 +0200
+++ new/ktp-filetransfer-handler-20.08.3/po/zh_CN/ktp-filetransfer-handler.po   
2020-11-03 01:43:54.0 +0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: 

commit kwave for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kwave for openSUSE:Factory checked 
in at 2020-11-10 13:44:35

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


Package is "kwave"

Tue Nov 10 13:44:35 2020 rev:49 rq:846769 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kwave/kwave.changes  2020-10-13 
15:41:37.821339450 +0200
+++ /work/SRC/openSUSE:Factory/.kwave.new.11331/kwave.changes   2020-11-10 
13:51:36.907058469 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:33 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kwave-20.08.2.tar.xz
  kwave-20.08.2.tar.xz.sig

New:

  kwave-20.08.3.tar.xz
  kwave-20.08.3.tar.xz.sig



Other differences:
--
++ kwave.spec ++
--- /var/tmp/diff_new_pack.EOO5mK/_old  2020-11-10 13:51:37.471057402 +0100
+++ /var/tmp/diff_new_pack.EOO5mK/_new  2020-11-10 13:51:37.475057395 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kwave
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Sound Editor designed for KDE
 License:GPL-2.0-or-later


++ kwave-20.08.2.tar.xz -> kwave-20.08.3.tar.xz ++
/work/SRC/openSUSE:Factory/kwave/kwave-20.08.2.tar.xz 
/work/SRC/openSUSE:Factory/.kwave.new.11331/kwave-20.08.3.tar.xz differ: char 
26, line 1




commit ktp-contact-list for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ktp-contact-list for 
openSUSE:Factory checked in at 2020-11-10 13:44:02

Comparing /work/SRC/openSUSE:Factory/ktp-contact-list (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-contact-list.new.11331 (New)


Package is "ktp-contact-list"

Tue Nov 10 13:44:02 2020 rev:20 rq:846757 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ktp-contact-list/ktp-contact-list.changes
2020-10-13 15:40:43.229300929 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-contact-list.new.11331/ktp-contact-list.changes 
2020-11-10 13:50:58.963130190 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:24 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ktp-contact-list-20.08.2.tar.xz
  ktp-contact-list-20.08.2.tar.xz.sig

New:

  ktp-contact-list-20.08.3.tar.xz
  ktp-contact-list-20.08.3.tar.xz.sig



Other differences:
--
++ ktp-contact-list.spec ++
--- /var/tmp/diff_new_pack.mz4Kil/_old  2020-11-10 13:50:59.523129131 +0100
+++ /var/tmp/diff_new_pack.mz4Kil/_new  2020-11-10 13:50:59.527129124 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ktp-contact-list
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Telepathy contact list
 License:LGPL-2.1-or-later


++ ktp-contact-list-20.08.2.tar.xz -> ktp-contact-list-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-contact-list-20.08.2/CMakeLists.txt 
new/ktp-contact-list-20.08.3/CMakeLists.txt
--- old/ktp-contact-list-20.08.2/CMakeLists.txt 2020-10-06 05:37:38.0 
+0200
+++ new/ktp-contact-list-20.08.3/CMakeLists.txt 2020-11-03 01:43:48.0 
+0100
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 
 set(KTP_CONTACT_LIST_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-contact-list-20.08.2/po/ia/ktp-contactlist.po 
new/ktp-contact-list-20.08.3/po/ia/ktp-contactlist.po
--- old/ktp-contact-list-20.08.2/po/ia/ktp-contactlist.po   2020-10-06 
05:37:37.0 +0200
+++ new/ktp-contact-list-20.08.3/po/ia/ktp-contactlist.po   2020-11-03 
01:43:48.0 +0100
@@ -1,21 +1,21 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Giovanni Sora , 2013, 2014.
+# Giovanni Sora , 2013, 2014, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 03:11+0200\n"
-"PO-Revision-Date: 2014-04-18 13:38+0200\n"
-"Last-Translator: G.Sora \n"
-"Language-Team: Interlingua \n"
+"PO-Revision-Date: 2020-10-28 23:28+0100\n"
+"Last-Translator: Giovanni Sora \n"
+"Language-Team: Interlingua \n"
 "Language: ia\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 2.0\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -157,8 +157,7 @@
 msgstr "Comparti mi scriptorio..."
 
 #: context-menu.cpp:161
-#, fuzzy, kde-format
-#| msgid "Open Log Viewer..."
+#, kde-format
 msgid "Open Log..."
 msgstr "Aperi visualisator de registro..."
 
@@ -210,16 +209,14 @@
 msgstr "Bloca contacto"
 
 #: context-menu.cpp:278
-#, fuzzy, kde-format
-#| msgid "Remove Contact"
+#, kde-format
 msgid "Remove Contact..."
-msgstr "Remove contacto"
+msgstr "Remove contacto..."
 
 #: context-menu.cpp:284
-#, fuzzy, kde-format
-#| msgid "Show Info..."
+#, kde-format
 msgid "Show Contact Information..."
-msgstr "Monstra Info..."
+msgstr "Monstra Information de contacto..."
 
 #: context-menu.cpp:305
 #, kde-format
@@ -258,21 +255,19 @@
 msgstr "Remove gruppo"
 
 #: dialogs/advanced-presence-dialog.cpp:152
-#, fuzzy, kde-format
-#| msgid "Add Presence"
+#, kde-format
 msgid "Advanced Presence Setting"
-msgstr "Adde presentia"
+msgstr "Preferentia de presentia avantiate"
 
 #: dialogs/advanced-presence-dialog.cpp:160
 #, kde-format
 msgid "It appears that you do not have any accounts configured"
-msgstr ""
+msgstr "Il 

commit konquest for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package konquest for openSUSE:Factory 
checked in at 2020-11-10 13:43:11

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


Package is "konquest"

Tue Nov 10 13:43:11 2020 rev:102 rq:846726 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/konquest/konquest.changes2020-10-13 
15:39:29.297248762 +0200
+++ /work/SRC/openSUSE:Factory/.konquest.new.11331/konquest.changes 
2020-11-10 13:50:16.155211103 +0100
@@ -1,0 +2,10 @@
+Thu Nov  5 22:46:57 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- Changes since 20.08.2:
+  * Add homepage and oars
+
+---

Old:

  konquest-20.08.2.tar.xz
  konquest-20.08.2.tar.xz.sig

New:

  konquest-20.08.3.tar.xz
  konquest-20.08.3.tar.xz.sig



Other differences:
--
++ konquest.spec ++
--- /var/tmp/diff_new_pack.dt4kXZ/_old  2020-11-10 13:50:16.719210037 +0100
+++ /var/tmp/diff_new_pack.dt4kXZ/_new  2020-11-10 13:50:16.723210030 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   konquest
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Galactic strategy game
 License:GPL-2.0-or-later


++ konquest-20.08.2.tar.xz -> konquest-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konquest-20.08.2/org.kde.konquest.appdata.xml 
new/konquest-20.08.3/org.kde.konquest.appdata.xml
--- old/konquest-20.08.2/org.kde.konquest.appdata.xml   2020-10-05 
09:57:19.0 +0200
+++ new/konquest-20.08.3/org.kde.konquest.appdata.xml   2020-10-27 
01:06:40.0 +0100
@@ -97,6 +97,7 @@
 Konquest jest wersją Gnu-Lactic Konquest. Gracze 
zdobywają inne planety wysyłając na nie statki. Celem jest budowa 
międzygwiezdnego imperium i zdobycie wszystkich planet przeciwnika.
 O Konquest é uma versão da Conquista Gnu-Láctica. Os 
jogadores conquistam outros planetas ao mandar naves para eles. O objectivo é 
construir um império inter-estelar e, em última instância, conquistar todos os 
planetas dos outros jogadores.
 Konquest é a versão do Gnu-Lactic Konquest. Os 
jogadores conquistam outros planetas ao enviar naves para eles. O objetivo é 
criar um império intergaláctico e, por último, conquistar os planetas de todos 
os outros jogadores.
+Konquest e o versiune de Gnu-Lactic Konquest. Jucătorii 
cuceresc alte planete trimițând nave spre acestea. Scopul e construirea unui 
imperiu interstelar și cucerirea planetelor tuturor celorlalți jucători.
 Konquest je verzia Gnu-Lactic Konquest. Hráči dobývajú 
iné planéty posielaním lodí na ne. Cieľom je vybudovať medzihviezdne impérium a 
úplne dobyť všetky planéty protihráča.
 Konquest je različica igre Gnu-Lactic Konquest. Igralci 
zavojujejo druge planete, tako da nanje pošiljajo vesoljske ladje. Cilj igre je 
izgraditi medzvezdni imperij in osvojiti vse planete drugih igralcev.
 У К‑освајању играчи освајају друге планете тако што шаљу 
бродове на њих. Циљ је изградити међузвездано царство и коначно освојити 
планете свих осталих играча.
@@ -112,6 +113,10 @@
   https://bugs.kde.org/enter_bug.cgi?format=guidedproduct=konquest
   https://docs.kde.org/?application=konquest
   https://www.kde.org/community/donations/?app=konquestsource=appdata
+  https://apps.kde.org/konquest
+  
+moderate
+  
   
 
   https://kde.org/images/screenshots/konquest.png
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konquest-20.08.2/po/et/konquest.po 
new/konquest-20.08.3/po/et/konquest.po
--- old/konquest-20.08.2/po/et/konquest.po  2020-10-06 05:32:32.0 
+0200
+++ new/konquest-20.08.3/po/et/konquest.po  2020-11-03 01:39:44.0 
+0100
@@ -4,19 +4,20 @@
 # Hasso Tepper , 1999.
 # Anti Veeranna , 2002.
 # Marek Laane , 2007, 2009, 2010, 2011, 2012, 2014.
+# Mihkel Tõnnov , 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: konquest\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2014-06-10 19:02+0300\n"
-"Last-Translator: Marek Laane \n"
-"Language-Team: Estonian \n"
+"PO-Revision-Date: 2020-10-07 21:08+0200\n"
+"Last-Translator: Mihkel Tõnnov \n"
+"Language-Team: Estonian <>\n"
 "Language: et\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 

commit kshisen for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kshisen for openSUSE:Factory checked 
in at 2020-11-10 13:43:36

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


Package is "kshisen"

Tue Nov 10 13:43:36 2020 rev:103 rq:846741 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kshisen/kshisen.changes  2020-10-13 
15:40:02.457272160 +0200
+++ /work/SRC/openSUSE:Factory/.kshisen.new.11331/kshisen.changes   
2020-11-10 13:50:33.363178578 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:09 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kshisen-20.08.2.tar.xz
  kshisen-20.08.2.tar.xz.sig

New:

  kshisen-20.08.3.tar.xz
  kshisen-20.08.3.tar.xz.sig



Other differences:
--
++ kshisen.spec ++
--- /var/tmp/diff_new_pack.emKhFv/_old  2020-11-10 13:50:33.979177413 +0100
+++ /var/tmp/diff_new_pack.emKhFv/_new  2020-11-10 13:50:33.983177406 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kshisen
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Shisen-Sho Mahjongg-like game
 License:GPL-2.0-or-later


++ kshisen-20.08.2.tar.xz -> kshisen-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kshisen-20.08.2/org.kde.kshisen.appdata.xml 
new/kshisen-20.08.3/org.kde.kshisen.appdata.xml
--- old/kshisen-20.08.2/org.kde.kshisen.appdata.xml 2020-07-23 
08:11:15.0 +0200
+++ new/kshisen-20.08.3/org.kde.kshisen.appdata.xml 2020-10-20 
08:37:19.0 +0200
@@ -117,6 +117,7 @@
   Jugant al KShisen
   Hraní KShisen
   KShisen spielen
+  Παίζω KShisen
   Playing KShisen
   Jugando a KShisen
   KShiseni mängimine
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kshisen-20.08.2/po/ca/kshisen.po 
new/kshisen-20.08.3/po/ca/kshisen.po
--- old/kshisen-20.08.2/po/ca/kshisen.po2020-10-06 05:32:45.0 
+0200
+++ new/kshisen-20.08.3/po/ca/kshisen.po2020-11-03 01:39:54.0 
+0100
@@ -11,14 +11,14 @@
 "Project-Id-Version: kshisen\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-08-05 12:22+0200\n"
-"Last-Translator: Antoni Bella Pérez \n"
+"PO-Revision-Date: 2020-10-13 20:42+0200\n"
+"Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 20.04.3\n"
+"X-Generator: Lokalize 20.08.1\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
@@ -121,7 +121,7 @@
 #: src/app.cpp:303
 #, kde-format
 msgid "(Paused) "
-msgstr " (Pausat) "
+msgstr " (En pausa) "
 
 #: src/app.cpp:311
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kshisen-20.08.2/po/ca@valencia/kshisen.po 
new/kshisen-20.08.3/po/ca@valencia/kshisen.po
--- old/kshisen-20.08.2/po/ca@valencia/kshisen.po   2020-10-06 
05:32:45.0 +0200
+++ new/kshisen-20.08.3/po/ca@valencia/kshisen.po   2020-11-03 
01:39:54.0 +0100
@@ -11,14 +11,14 @@
 "Project-Id-Version: kshisen\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-08-05 12:22+0200\n"
-"Last-Translator: Antoni Bella Pérez \n"
+"PO-Revision-Date: 2020-10-13 20:42+0200\n"
+"Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 20.04.3\n"
+"X-Generator: Lokalize 20.08.1\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
@@ -121,7 +121,7 @@
 #: src/app.cpp:303
 #, kde-format
 msgid "(Paused) "
-msgstr " (Pausat) "
+msgstr " (En pausa) "
 
 #: src/app.cpp:311
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kshisen-20.08.2/po/cs/kshisen.po 
new/kshisen-20.08.3/po/cs/kshisen.po
--- old/kshisen-20.08.2/po/cs/kshisen.po2020-10-06 05:32:45.0 
+0200
+++ new/kshisen-20.08.3/po/cs/kshisen.po2020-11-03 01:39:54.0 
+0100
@@ -1,6 +1,6 @@
 # Copyright (C) YEAR THE PACKAGE'S 

commit ktp-text-ui for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ktp-text-ui for openSUSE:Factory 
checked in at 2020-11-10 13:44:21

Comparing /work/SRC/openSUSE:Factory/ktp-text-ui (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-text-ui.new.11331 (New)


Package is "ktp-text-ui"

Tue Nov 10 13:44:21 2020 rev:20 rq:846763 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ktp-text-ui/ktp-text-ui.changes  2020-10-13 
15:41:16.081324110 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-text-ui.new.11331/ktp-text-ui.changes   
2020-11-10 13:51:05.435117957 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:29 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ktp-text-ui-20.08.2.tar.xz
  ktp-text-ui-20.08.2.tar.xz.sig

New:

  ktp-text-ui-20.08.3.tar.xz
  ktp-text-ui-20.08.3.tar.xz.sig



Other differences:
--
++ ktp-text-ui.spec ++
--- /var/tmp/diff_new_pack.Oucvr3/_old  2020-11-10 13:51:05.983116920 +0100
+++ /var/tmp/diff_new_pack.Oucvr3/_new  2020-11-10 13:51:05.987116912 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ktp-text-ui
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Telepathy chat handler for KDE
 License:GPL-2.0-or-later

++ ktp-text-ui-20.08.2.tar.xz -> ktp-text-ui-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-text-ui-20.08.2/CMakeLists.txt 
new/ktp-text-ui-20.08.3/CMakeLists.txt
--- old/ktp-text-ui-20.08.2/CMakeLists.txt  2020-10-06 05:37:58.0 
+0200
+++ new/ktp-text-ui-20.08.3/CMakeLists.txt  2020-11-03 01:44:03.0 
+0100
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "20")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "2")
+set(RELEASE_SERVICE_VERSION_MICRO "3")
 set(KTP_TEXT_UI_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 set(KTP_MESSAGE_FILTER_FRAMEWORK_VERSION "5")
 set(IS_KTP_INTERNAL_MODULE TRUE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-text-ui-20.08.2/filters/geopoint/ktptextui_message_filter_geopoint.desktop.cmake
 
new/ktp-text-ui-20.08.3/filters/geopoint/ktptextui_message_filter_geopoint.desktop.cmake
--- 
old/ktp-text-ui-20.08.2/filters/geopoint/ktptextui_message_filter_geopoint.desktop.cmake
2020-10-05 10:00:16.0 +0200
+++ 
new/ktp-text-ui-20.08.3/filters/geopoint/ktptextui_message_filter_geopoint.desktop.cmake
2020-10-31 17:37:09.0 +0100
@@ -28,7 +28,7 @@
 Name[fr]=Aperçu de point géographique
 Name[gl]=Vista previa do punto xeográfico
 Name[hu]=Geopont előnézet
-Name[ia]=Vista preliminar de Geopoint
+Name[ia]=Vista preliminari de Geopoint
 Name[it]=Anteprima di punto geografico
 Name[ko]=지점 미리 보기
 Name[nl]=Voorbeeld van geo-punt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-text-ui-20.08.2/filters/images/ktptextui_message_filter_images.desktop.cmake
 
new/ktp-text-ui-20.08.3/filters/images/ktptextui_message_filter_images.desktop.cmake
--- 
old/ktp-text-ui-20.08.2/filters/images/ktptextui_message_filter_images.desktop.cmake
2020-10-05 10:00:16.0 +0200
+++ 
new/ktp-text-ui-20.08.3/filters/images/ktptextui_message_filter_images.desktop.cmake
2020-10-31 17:37:09.0 +0100
@@ -16,7 +16,7 @@
 Name[fr]=Aperçu d'image
 Name[gl]=Vista previa da imaxe
 Name[hu]=A kép előnézete
-Name[ia]=Vista preliminar de Imagine
+Name[ia]=Vista preliminari de Imagine
 Name[it]=Anteprima di immagini
 Name[kk]=Кескінді қарау
 Name[ko]=그림 미리 보기
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-text-ui-20.08.2/filters/youtube/ktptextui_message_filter_youtube.desktop.cmake
 
new/ktp-text-ui-20.08.3/filters/youtube/ktptextui_message_filter_youtube.desktop.cmake
--- 
old/ktp-text-ui-20.08.2/filters/youtube/ktptextui_message_filter_youtube.desktop.cmake
  2020-10-05 10:00:16.0 +0200
+++ 
new/ktp-text-ui-20.08.3/filters/youtube/ktptextui_message_filter_youtube.desktop.cmake
  2020-10-31 17:37:09.0 +0100
@@ -16,7 +16,7 @@
 Name[fr]=Miniature YouTube
 Name[gl]=Vista previa de YouTube
 Name[hu]=YouTube előnézet
-Name[ia]=Vista preliminar de YouTube
+Name[ia]=Vista preliminari de YouTube
 Name[it]=Anteprima di 

commit ktp-desktop-applets for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ktp-desktop-applets for 
openSUSE:Factory checked in at 2020-11-10 13:44:06

Comparing /work/SRC/openSUSE:Factory/ktp-desktop-applets (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-desktop-applets.new.11331 (New)


Package is "ktp-desktop-applets"

Tue Nov 10 13:44:06 2020 rev:20 rq:846759 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ktp-desktop-applets/ktp-desktop-applets.changes  
2020-10-13 15:40:56.589310357 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-desktop-applets.new.11331/ktp-desktop-applets.changes
   2020-11-10 13:51:01.487125418 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:25 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ktp-desktop-applets-20.08.2.tar.xz
  ktp-desktop-applets-20.08.2.tar.xz.sig

New:

  ktp-desktop-applets-20.08.3.tar.xz
  ktp-desktop-applets-20.08.3.tar.xz.sig



Other differences:
--
++ ktp-desktop-applets.spec ++
--- /var/tmp/diff_new_pack.maU08u/_old  2020-11-10 13:51:01.995124459 +0100
+++ /var/tmp/diff_new_pack.maU08u/_new  2020-11-10 13:51:01.999124451 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ktp-desktop-applets
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Telepathy presence applet
 License:GPL-2.0-or-later AND LGPL-2.1-or-later


++ ktp-desktop-applets-20.08.2.tar.xz -> ktp-desktop-applets-20.08.3.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-desktop-applets-20.08.2/CMakeLists.txt 
new/ktp-desktop-applets-20.08.3/CMakeLists.txt
--- old/ktp-desktop-applets-20.08.2/CMakeLists.txt  2020-10-06 
05:37:44.0 +0200
+++ new/ktp-desktop-applets-20.08.3/CMakeLists.txt  2020-11-03 
01:43:52.0 +0100
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 
 set(KTP_DESKTOP_APPLETS_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-desktop-applets-20.08.2/po/zh_CN/plasma_applet_org.kde.ktp-chat.po 
new/ktp-desktop-applets-20.08.3/po/zh_CN/plasma_applet_org.kde.ktp-chat.po
--- old/ktp-desktop-applets-20.08.2/po/zh_CN/plasma_applet_org.kde.ktp-chat.po  
2020-10-06 05:37:44.0 +0200
+++ new/ktp-desktop-applets-20.08.3/po/zh_CN/plasma_applet_org.kde.ktp-chat.po  
2020-11-03 01:43:52.0 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 03:11+0200\n"
-"PO-Revision-Date: 2020-09-23 12:21\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-desktop-applets-20.08.2/po/zh_CN/plasma_applet_org.kde.ktp-contactlist.po
 
new/ktp-desktop-applets-20.08.3/po/zh_CN/plasma_applet_org.kde.ktp-contactlist.po
--- 
old/ktp-desktop-applets-20.08.2/po/zh_CN/plasma_applet_org.kde.ktp-contactlist.po
   2020-10-06 05:37:44.0 +0200
+++ 
new/ktp-desktop-applets-20.08.3/po/zh_CN/plasma_applet_org.kde.ktp-contactlist.po
   2020-11-03 01:43:52.0 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 03:11+0200\n"
-"PO-Revision-Date: 2020-09-23 12:21\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-desktop-applets-20.08.2/po/zh_CN/plasma_applet_org.kde.person.po 
new/ktp-desktop-applets-20.08.3/po/zh_CN/plasma_applet_org.kde.person.po
--- old/ktp-desktop-applets-20.08.2/po/zh_CN/plasma_applet_org.kde.person.po
2020-10-06 05:37:44.0 +0200
+++ new/ktp-desktop-applets-20.08.3/po/zh_CN/plasma_applet_org.kde.person.po
2020-11-03 01:43:52.0 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 03:11+0200\n"
-"PO-Revision-Date: 2020-09-23 12:21\n"

commit ktp-contact-runner for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ktp-contact-runner for 
openSUSE:Factory checked in at 2020-11-10 13:44:04

Comparing /work/SRC/openSUSE:Factory/ktp-contact-runner (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-contact-runner.new.11331 (New)


Package is "ktp-contact-runner"

Tue Nov 10 13:44:04 2020 rev:20 rq:846758 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ktp-contact-runner/ktp-contact-runner.changes
2020-10-13 15:40:50.685306190 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-contact-runner.new.11331/ktp-contact-runner.changes
 2020-11-10 13:51:00.383127506 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:25 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ktp-contact-runner-20.08.2.tar.xz
  ktp-contact-runner-20.08.2.tar.xz.sig

New:

  ktp-contact-runner-20.08.3.tar.xz
  ktp-contact-runner-20.08.3.tar.xz.sig



Other differences:
--
++ ktp-contact-runner.spec ++
--- /var/tmp/diff_new_pack.XAkUvx/_old  2020-11-10 13:51:00.951126432 +0100
+++ /var/tmp/diff_new_pack.XAkUvx/_new  2020-11-10 13:51:00.951126432 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ktp-contact-runner
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Telepathy Krunner plugin
 License:LGPL-2.1-or-later


++ ktp-contact-runner-20.08.2.tar.xz -> ktp-contact-runner-20.08.3.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-contact-runner-20.08.2/CMakeLists.txt 
new/ktp-contact-runner-20.08.3/CMakeLists.txt
--- old/ktp-contact-runner-20.08.2/CMakeLists.txt   2020-10-06 
05:37:41.0 +0200
+++ new/ktp-contact-runner-20.08.3/CMakeLists.txt   2020-11-03 
01:43:50.0 +0100
@@ -7,7 +7,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "20")
 set(RELEASE_SERVICE_VERSION_MINOR "08")
-set(RELEASE_SERVICE_VERSION_MICRO "2")
+set(RELEASE_SERVICE_VERSION_MICRO "3")
 set(KTP_CONTACT_RUNNER_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 set(IS_KTP_INTERNAL_MODULE TRUE)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-contact-runner-20.08.2/po/zh_CN/plasma_runner_ktp_contacts.po 
new/ktp-contact-runner-20.08.3/po/zh_CN/plasma_runner_ktp_contacts.po
--- old/ktp-contact-runner-20.08.2/po/zh_CN/plasma_runner_ktp_contacts.po   
2020-10-06 05:37:41.0 +0200
+++ new/ktp-contact-runner-20.08.3/po/zh_CN/plasma_runner_ktp_contacts.po   
2020-11-03 01:43:50.0 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 03:11+0200\n"
-"PO-Revision-Date: 2020-09-23 12:21\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit ksquares for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ksquares for openSUSE:Factory 
checked in at 2020-11-10 13:43:45

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


Package is "ksquares"

Tue Nov 10 13:43:45 2020 rev:103 rq:846746 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ksquares/ksquares.changes2020-10-13 
15:40:17.353282671 +0200
+++ /work/SRC/openSUSE:Factory/.ksquares.new.11331/ksquares.changes 
2020-11-10 13:50:39.323167312 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:14 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ksquares-20.08.2.tar.xz
  ksquares-20.08.2.tar.xz.sig

New:

  ksquares-20.08.3.tar.xz
  ksquares-20.08.3.tar.xz.sig



Other differences:
--
++ ksquares.spec ++
--- /var/tmp/diff_new_pack.qQyOxX/_old  2020-11-10 13:50:40.003166027 +0100
+++ /var/tmp/diff_new_pack.qQyOxX/_new  2020-11-10 13:50:40.007166019 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ksquares
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:"Dots and boxes" board game
 License:GPL-2.0-or-later


++ ksquares-20.08.2.tar.xz -> ksquares-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksquares-20.08.2/CMakeLists.txt 
new/ksquares-20.08.3/CMakeLists.txt
--- old/ksquares-20.08.2/CMakeLists.txt 2020-10-06 05:33:08.0 +0200
+++ new/ksquares-20.08.3/CMakeLists.txt 2020-11-03 01:40:13.0 +0100
@@ -2,7 +2,7 @@
 
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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/ksquares-20.08.2/po/zh_CN/ksquares.po 
new/ksquares-20.08.3/po/zh_CN/ksquares.po
--- old/ksquares-20.08.2/po/zh_CN/ksquares.po   2020-10-06 05:33:08.0 
+0200
+++ new/ksquares-20.08.3/po/zh_CN/ksquares.po   2020-11-03 01:40:13.0 
+0100
@@ -4,7 +4,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:22\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksquares-20.08.2/src/org.kde.ksquares.appdata.xml 
new/ksquares-20.08.3/src/org.kde.ksquares.appdata.xml
--- old/ksquares-20.08.2/src/org.kde.ksquares.appdata.xml   2020-10-05 
08:24:16.0 +0200
+++ new/ksquares-20.08.3/src/org.kde.ksquares.appdata.xml   2020-10-31 
18:23:42.0 +0100
@@ -198,9 +198,9 @@
   KDE
   
   
+
 
 
 
-
   
 




commit kqtquickcharts for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kqtquickcharts for openSUSE:Factory 
checked in at 2020-11-10 13:43:15

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


Package is "kqtquickcharts"

Tue Nov 10 13:43:15 2020 rev:82 rq:846735 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kqtquickcharts/kqtquickcharts.changes
2020-10-13 15:39:38.605255330 +0200
+++ /work/SRC/openSUSE:Factory/.kqtquickcharts.new.11331/kqtquickcharts.changes 
2020-11-10 13:50:18.755206189 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:04 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kqtquickcharts-20.08.2.tar.xz
  kqtquickcharts-20.08.2.tar.xz.sig

New:

  kqtquickcharts-20.08.3.tar.xz
  kqtquickcharts-20.08.3.tar.xz.sig



Other differences:
--
++ kqtquickcharts.spec ++
--- /var/tmp/diff_new_pack.guTevM/_old  2020-11-10 13:50:19.319205122 +0100
+++ /var/tmp/diff_new_pack.guTevM/_new  2020-11-10 13:50:19.323205115 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kqtquickcharts
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Plugin to render beautiful and interactive graphs
 License:LGPL-2.1-or-later


++ kqtquickcharts-20.08.2.tar.xz -> kqtquickcharts-20.08.3.tar.xz ++




commit krdc for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package krdc for openSUSE:Factory checked in 
at 2020-11-10 13:43:26

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


Package is "krdc"

Tue Nov 10 13:43:26 2020 rev:98 rq:846736 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/krdc/krdc.changes2020-10-13 
15:39:39.981256301 +0200
+++ /work/SRC/openSUSE:Factory/.krdc.new.11331/krdc.changes 2020-11-10 
13:50:21.723200579 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:05 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  krdc-20.08.2.tar.xz
  krdc-20.08.2.tar.xz.sig

New:

  krdc-20.08.3.tar.xz
  krdc-20.08.3.tar.xz.sig



Other differences:
--
++ krdc.spec ++
--- /var/tmp/diff_new_pack.o4xPVK/_old  2020-11-10 13:50:22.251199581 +0100
+++ /var/tmp/diff_new_pack.o4xPVK/_new  2020-11-10 13:50:22.251199581 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   krdc
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Remote Desktop Connection
 License:GPL-2.0-or-later


++ krdc-20.08.2.tar.xz -> krdc-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krdc-20.08.2/CMakeLists.txt 
new/krdc-20.08.3/CMakeLists.txt
--- old/krdc-20.08.2/CMakeLists.txt 2020-10-06 05:37:11.0 +0200
+++ new/krdc-20.08.3/CMakeLists.txt 2020-11-03 01:43:27.0 +0100
@@ -2,7 +2,7 @@
 
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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}")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krdc-20.08.2/org.kde.krdc.appdata.xml 
new/krdc-20.08.3/org.kde.krdc.appdata.xml
--- old/krdc-20.08.2/org.kde.krdc.appdata.xml   2020-10-03 14:42:32.0 
+0200
+++ new/krdc-20.08.3/org.kde.krdc.appdata.xml   2020-10-31 18:29:14.0 
+0100
@@ -103,9 +103,9 @@
   KDE
   kde-de...@kde.org
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krdc-20.08.2/po/de/krdc.po 
new/krdc-20.08.3/po/de/krdc.po
--- old/krdc-20.08.2/po/de/krdc.po  2020-10-06 05:37:09.0 +0200
+++ new/krdc-20.08.3/po/de/krdc.po  2020-11-03 01:43:26.0 +0100
@@ -13,7 +13,7 @@
 "Project-Id-Version: krdc\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-14 08:05+0200\n"
-"PO-Revision-Date: 2020-09-17 16:16+0200\n"
+"PO-Revision-Date: 2020-10-17 07:52+0200\n"
 "Last-Translator: Burkhard Lück \n"
 "Language-Team: German \n"
 "Language: de\n"
@@ -703,7 +703,7 @@
 #: rdp/rdphostpreferences.cpp:198
 #, kde-format
 msgid "Browse to media share path"
-msgstr ""
+msgstr "Zum Pfad für freigegebene Medien gehen"
 
 #. i18n: ectx: property (title), widget (QGroupBox, connectionGroupBox)
 #. i18n: ectx: property (title), widget (QGroupBox, vncGroupBox)
@@ -1257,6 +1257,9 @@
 "Please set an existing folder to share or empty the \"Share Media\" option "
 "if you do not want to share any folder."
 msgstr ""
+"Der Ordner %1 ist nicht vorhanden.\n"
+"Bitte geben Sie einen vorhandenen Ordner als Freigabe an oder leeren Sie die "
+"Einstellung „Medium freigegeben“, wenn Sie keinen Ordner freigeben möchten."
 
 #: rdp/rdpview.cpp:129
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krdc-20.08.2/po/ia/krdc.po 
new/krdc-20.08.3/po/ia/krdc.po
--- old/krdc-20.08.2/po/ia/krdc.po  2020-10-06 05:37:09.0 +0200
+++ new/krdc-20.08.3/po/ia/krdc.po  2020-11-03 01:43:26.0 +0100
@@ -1,21 +1,21 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# g.sora , 2011, 2012, 2013.
+# g.sora , 2011, 2012, 2013, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-14 08:05+0200\n"
-"PO-Revision-Date: 2013-10-31 13:40+0100\n"
+"PO-Revision-Date: 2020-10-28 23:01+0100\n"
 "Last-Translator: Giovanni Sora \n"
-"Language-Team: Interlingua \n"
+"Language-Team: Interlingua \n"
 "Language: ia\n"
 

commit kteatime for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kteatime for openSUSE:Factory 
checked in at 2020-11-10 13:43:53

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


Package is "kteatime"

Tue Nov 10 13:43:53 2020 rev:95 rq:846749 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kteatime/kteatime.changes2020-10-13 
15:40:25.553288457 +0200
+++ /work/SRC/openSUSE:Factory/.kteatime.new.11331/kteatime.changes 
2020-11-10 13:50:44.303157899 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:16 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kteatime-20.08.2.tar.xz
  kteatime-20.08.2.tar.xz.sig

New:

  kteatime-20.08.3.tar.xz
  kteatime-20.08.3.tar.xz.sig



Other differences:
--
++ kteatime.spec ++
--- /var/tmp/diff_new_pack.4Sl4LN/_old  2020-11-10 13:50:44.931156711 +0100
+++ /var/tmp/diff_new_pack.4Sl4LN/_new  2020-11-10 13:50:44.935156705 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kteatime
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Timer for various types of tea
 License:GPL-2.0-or-later


++ kteatime-20.08.2.tar.xz -> kteatime-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kteatime-20.08.2/CMakeLists.txt 
new/kteatime-20.08.3/CMakeLists.txt
--- old/kteatime-20.08.2/CMakeLists.txt 2020-10-06 05:35:53.0 +0200
+++ new/kteatime-20.08.3/CMakeLists.txt 2020-11-03 01:42:30.0 +0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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(kteatime VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kteatime-20.08.2/org.kde.kteatime.appdata.xml 
new/kteatime-20.08.3/org.kde.kteatime.appdata.xml
--- old/kteatime-20.08.2/org.kde.kteatime.appdata.xml   2020-10-03 
14:41:04.0 +0200
+++ new/kteatime-20.08.3/org.kde.kteatime.appdata.xml   2020-10-31 
18:27:54.0 +0100
@@ -31,6 +31,7 @@
   KTeaTime
   KTeaTime
   KTeaTime
+  KTeaTime
   KTeaTime
   KTeaTime
   KTeaTime
@@ -71,6 +72,7 @@
   Zaparzanie herbaty
   Preparação de Chás
   Hora do chá
+  Ceainic
   Таймер для заваривания чая
   Varič čaju
   Kuhalnik čaja
@@ -137,9 +139,9 @@
 kteatime
   
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kteatime-20.08.2/po/zh_CN/kteatime.po 
new/kteatime-20.08.3/po/zh_CN/kteatime.po
--- old/kteatime-20.08.2/po/zh_CN/kteatime.po   2020-10-06 05:35:53.0 
+0200
+++ new/kteatime-20.08.3/po/zh_CN/kteatime.po   2020-11-03 01:42:30.0 
+0100
@@ -13,7 +13,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:54+0200\n"
-"PO-Revision-Date: 2020-09-23 12:21\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit ksystemlog for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ksystemlog for openSUSE:Factory 
checked in at 2020-11-10 13:43:51

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


Package is "ksystemlog"

Tue Nov 10 13:43:51 2020 rev:96 rq:846748 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ksystemlog/ksystemlog.changes2020-10-13 
15:40:21.609285674 +0200
+++ /work/SRC/openSUSE:Factory/.ksystemlog.new.11331/ksystemlog.changes 
2020-11-10 13:50:41.935162375 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:15 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ksystemlog-20.08.2.tar.xz
  ksystemlog-20.08.2.tar.xz.sig

New:

  ksystemlog-20.08.3.tar.xz
  ksystemlog-20.08.3.tar.xz.sig



Other differences:
--
++ ksystemlog.spec ++
--- /var/tmp/diff_new_pack.GC0WYP/_old  2020-11-10 13:50:42.563161188 +0100
+++ /var/tmp/diff_new_pack.GC0WYP/_new  2020-11-10 13:50:42.567161180 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ksystemlog
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:System Log Viewer Tool
 License:GPL-2.0-only


++ ksystemlog-20.08.2.tar.xz -> ksystemlog-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemlog-20.08.2/CMakeLists.txt 
new/ksystemlog-20.08.3/CMakeLists.txt
--- old/ksystemlog-20.08.2/CMakeLists.txt   2020-10-04 08:19:37.0 
+0200
+++ new/ksystemlog-20.08.3/CMakeLists.txt   2020-10-31 17:36:19.0 
+0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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}")
 
 cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemlog-20.08.2/po/ca/ksystemlog.po 
new/ksystemlog-20.08.3/po/ca/ksystemlog.po
--- old/ksystemlog-20.08.2/po/ca/ksystemlog.po  2020-10-06 05:35:59.0 
+0200
+++ new/ksystemlog-20.08.3/po/ca/ksystemlog.po  2020-11-03 01:42:34.0 
+0100
@@ -3,14 +3,14 @@
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer , 2008, 2009, 2010, 2011, 2012, 2013, 
2014, 2015, 2016, 2017.
+# Josep Ma. Ferrer , 2008, 2009, 2010, 2011, 2012, 2013, 
2014, 2015, 2016, 2017, 2020.
 # Antoni Bella Pérez , 2014, 2016, 2017, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: ksystemlog\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:53+0200\n"
-"PO-Revision-Date: 2020-08-05 11:45+0200\n"
+"PO-Revision-Date: 2020-10-14 11:32+0200\n"
 "Last-Translator: Antoni Bella Pérez \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -19,7 +19,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
-"X-Generator: Lokalize 20.04.3\n"
+"X-Generator: Lokalize 20.08.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -1103,7 +1103,7 @@
 "the user has already paused the reading."
 msgstr ""
 "Continua la revisió del registre actual. Aquesta acció només està disponible "
-"quan l'usuari ha pausat la lectura."
+"quan l'usuari ha fet una pausa a la lectura."
 
 #: src/mainWindow.cpp:442
 #, kde-format
@@ -1113,7 +1113,7 @@
 #: src/mainWindow.cpp:444
 #, kde-format
 msgid "Pause the watching of the current log"
-msgstr "Pausa la revisió del registre actual"
+msgstr "Fa una pausa a la revisió del registre actual"
 
 #: src/mainWindow.cpp:446
 #, kde-format
@@ -1122,9 +1122,9 @@
 "when the system is writing too many lines to log files, causing KSystemLog "
 "to reload too frequently."
 msgstr ""
-"Pausa la revisió del registre actual. Aquesta acció és particularment útil "
-"quan el sistema està escrivint massa línies als fitxers de registre, "
-"provocant que el KSystemLog s'actualitzi amb massa freqüència."
+"Fa una pausa a la revisió del registre actual. Aquesta acció és "
+"particularment útil quan el sistema està escrivint massa línies als fitxers "
+"de registre, provocant que el KSystemLog s'actualitzi amb 

commit kolourpaint for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kolourpaint for openSUSE:Factory 
checked in at 2020-11-10 13:43:06

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


Package is "kolourpaint"

Tue Nov 10 13:43:06 2020 rev:121 rq:846723 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kolourpaint/kolourpaint.changes  2020-10-13 
15:39:14.157238079 +0200
+++ /work/SRC/openSUSE:Factory/.kolourpaint.new.11331/kolourpaint.changes   
2020-11-10 13:50:12.383218233 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:54 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kolourpaint-20.08.2.tar.xz
  kolourpaint-20.08.2.tar.xz.sig

New:

  kolourpaint-20.08.3.tar.xz
  kolourpaint-20.08.3.tar.xz.sig



Other differences:
--
++ kolourpaint.spec ++
--- /var/tmp/diff_new_pack.0mf3E3/_old  2020-11-10 13:50:12.967217129 +0100
+++ /var/tmp/diff_new_pack.0mf3E3/_new  2020-11-10 13:50:12.967217129 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kolourpaint
-Version:20.08.2
+Version:20.08.3
 Release:0
 # See bnc#717722 for license details
 Summary:Paint Program


++ kolourpaint-20.08.2.tar.xz -> kolourpaint-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kolourpaint-20.08.2/CMakeLists.txt 
new/kolourpaint-20.08.3/CMakeLists.txt
--- old/kolourpaint-20.08.2/CMakeLists.txt  2020-10-06 05:26:49.0 
+0200
+++ new/kolourpaint-20.08.3/CMakeLists.txt  2020-11-03 01:35:30.0 
+0100
@@ -1,7 +1,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "20")
 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}")
 
 cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kolourpaint-20.08.2/org.kde.kolourpaint.appdata.xml 
new/kolourpaint-20.08.3/org.kde.kolourpaint.appdata.xml
--- old/kolourpaint-20.08.2/org.kde.kolourpaint.appdata.xml 2020-10-03 
14:18:35.0 +0200
+++ new/kolourpaint-20.08.3/org.kde.kolourpaint.appdata.xml 2020-10-31 
18:06:49.0 +0100
@@ -383,9 +383,9 @@
 kolourpaint
   
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kolourpaint-20.08.2/po/et/kolourpaint.po 
new/kolourpaint-20.08.3/po/et/kolourpaint.po
--- old/kolourpaint-20.08.2/po/et/kolourpaint.po2020-10-06 
05:26:46.0 +0200
+++ new/kolourpaint-20.08.3/po/et/kolourpaint.po2020-11-03 
01:35:28.0 +0100
@@ -992,8 +992,7 @@
 msgstr "Pildi salvestamine nurjus - ajutise faili loomine nurjus."
 
 #: document/kpDocument_Save.cpp:292
-#, fuzzy, kde-format
-#| msgid "Could not save as \"%1\": %2"
+#, kde-format
 msgid "Could not save as \"%1\": %2"
 msgstr "Salvestamine kui \"%1\" nurjus: %2"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kolourpaint-20.08.2/po/ia/kolourpaint.po 
new/kolourpaint-20.08.3/po/ia/kolourpaint.po
--- old/kolourpaint-20.08.2/po/ia/kolourpaint.po2020-10-06 
05:26:46.0 +0200
+++ new/kolourpaint-20.08.3/po/ia/kolourpaint.po2020-11-03 
01:35:28.0 +0100
@@ -1,21 +1,21 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Giovanni Sora , 2013, 2016, 2017.
+# Giovanni Sora , 2013, 2016, 2017, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:40+0200\n"
-"PO-Revision-Date: 2017-10-06 23:37+0100\n"
+"PO-Revision-Date: 2020-10-15 17:16+0200\n"
 "Last-Translator: giovanni \n"
-"Language-Team: Interlingua \n"
+"Language-Team: Interlingua \n"
 "Language: ia\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.04.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -1002,15 +1002,14 @@
 msgstr "Il non pote 

commit kross-interpreters for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kross-interpreters for 
openSUSE:Factory checked in at 2020-11-10 13:43:34

Comparing /work/SRC/openSUSE:Factory/kross-interpreters (Old)
 and  /work/SRC/openSUSE:Factory/.kross-interpreters.new.11331 (New)


Package is "kross-interpreters"

Tue Nov 10 13:43:34 2020 rev:57 rq:846739 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kross-interpreters/kross-interpreters.changes
2020-10-13 15:39:56.773268149 +0200
+++ 
/work/SRC/openSUSE:Factory/.kross-interpreters.new.11331/kross-interpreters.changes
 2020-11-10 13:50:32.307180574 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:08 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kross-interpreters-20.08.2.tar.xz
  kross-interpreters-20.08.2.tar.xz.sig

New:

  kross-interpreters-20.08.3.tar.xz
  kross-interpreters-20.08.3.tar.xz.sig



Other differences:
--
++ kross-interpreters.spec ++
--- /var/tmp/diff_new_pack.yYbDGA/_old  2020-11-10 13:50:32.919179417 +0100
+++ /var/tmp/diff_new_pack.yYbDGA/_new  2020-11-10 13:50:32.923179409 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kross-interpreters
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Diverse bindings for KROSS
 License:LGPL-2.1-or-later


++ kross-interpreters-20.08.2.tar.xz -> kross-interpreters-20.08.3.tar.xz 
++




commit ksnakeduel for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ksnakeduel for openSUSE:Factory 
checked in at 2020-11-10 13:43:40

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


Package is "ksnakeduel"

Tue Nov 10 13:43:40 2020 rev:102 rq:846744 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ksnakeduel/ksnakeduel.changes2020-10-13 
15:40:13.457279922 +0200
+++ /work/SRC/openSUSE:Factory/.ksnakeduel.new.11331/ksnakeduel.changes 
2020-11-10 13:50:35.799173973 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:12 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ksnakeduel-20.08.2.tar.xz
  ksnakeduel-20.08.2.tar.xz.sig

New:

  ksnakeduel-20.08.3.tar.xz
  ksnakeduel-20.08.3.tar.xz.sig



Other differences:
--
++ ksnakeduel.spec ++
--- /var/tmp/diff_new_pack.ymm25X/_old  2020-11-10 13:50:36.591172476 +0100
+++ /var/tmp/diff_new_pack.ymm25X/_new  2020-11-10 13:50:36.599172460 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ksnakeduel
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Simple snake duel game
 License:GPL-2.0-or-later


++ ksnakeduel-20.08.2.tar.xz -> ksnakeduel-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-20.08.2/po/et/ksnakeduel.po 
new/ksnakeduel-20.08.3/po/et/ksnakeduel.po
--- old/ksnakeduel-20.08.2/po/et/ksnakeduel.po  2020-10-06 05:33:00.0 
+0200
+++ new/ksnakeduel-20.08.3/po/et/ksnakeduel.po  2020-11-03 01:40:07.0 
+0100
@@ -5,19 +5,20 @@
 # Anti Veeranna , 2002.
 # Hasso Tepper , 2004.
 # Marek Laane , 2008-2009, 2010.
+# Mihkel Tõnnov , 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2010-11-16 04:21+0200\n"
-"Last-Translator: Marek Laane \n"
-"Language-Team: Estonian \n"
+"PO-Revision-Date: 2020-10-07 21:19+0200\n"
+"Last-Translator: Mihkel Tõnnov \n"
+"Language-Team: Estonian <>\n"
 "Language: et\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.1\n"
+"X-Generator: Lokalize 20.08.1\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 #, kde-format
@@ -92,16 +93,15 @@
 
 #. i18n: ectx: property (title), widget (QGroupBox, gameOptionsGroup)
 #: general.ui:124
-#, fuzzy, kde-format
-#| msgid "Game paused"
+#, kde-format
 msgid "Game Options"
-msgstr "Mäng peatatud"
+msgstr "Mängu valikud "
 
 #. i18n: ectx: property (text), widget (QLabel, roundsLabel)
 #: general.ui:130
 #, kde-format
 msgid "Rounds to win"
-msgstr ""
+msgstr "Võiduks vajalik voorude arv"
 
 #. i18n: ectx: label, entry (Theme), group (General)
 #: ksnakeduel.kcfg:9
@@ -137,7 +137,7 @@
 #: ksnakeduel.kcfg:34
 #, kde-format
 msgid "Rounds"
-msgstr ""
+msgstr "Voorude arv"
 
 #: ktron.cpp:79
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-20.08.2/po/zh_CN/ksnakeduel.po 
new/ksnakeduel-20.08.3/po/zh_CN/ksnakeduel.po
--- old/ksnakeduel-20.08.2/po/zh_CN/ksnakeduel.po   2020-10-06 
05:33:01.0 +0200
+++ new/ksnakeduel-20.08.3/po/zh_CN/ksnakeduel.po   2020-11-03 
01:40:08.0 +0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit ktimer for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ktimer for openSUSE:Factory checked 
in at 2020-11-10 13:43:55

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


Package is "ktimer"

Tue Nov 10 13:43:55 2020 rev:114 rq:846750 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ktimer/ktimer.changes2020-10-13 
15:40:26.733289289 +0200
+++ /work/SRC/openSUSE:Factory/.ktimer.new.11331/ktimer.changes 2020-11-10 
13:50:46.051154595 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:17 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ktimer-20.08.2.tar.xz
  ktimer-20.08.2.tar.xz.sig

New:

  ktimer-20.08.3.tar.xz
  ktimer-20.08.3.tar.xz.sig



Other differences:
--
++ ktimer.spec ++
--- /var/tmp/diff_new_pack.VCZjyM/_old  2020-11-10 13:50:46.743153287 +0100
+++ /var/tmp/diff_new_pack.VCZjyM/_new  2020-11-10 13:50:46.747153280 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ktimer
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Countdown Launcher
 License:GPL-2.0-or-later


++ ktimer-20.08.2.tar.xz -> ktimer-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktimer-20.08.2/CMakeLists.txt 
new/ktimer-20.08.3/CMakeLists.txt
--- old/ktimer-20.08.2/CMakeLists.txt   2020-10-06 05:28:31.0 +0200
+++ new/ktimer-20.08.3/CMakeLists.txt   2020-11-03 01:36:35.0 +0100
@@ -1,7 +1,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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}")
 cmake_minimum_required (VERSION 3.5 FATAL_ERROR)
 project(ktimer VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktimer-20.08.2/org.kde.ktimer.appdata.xml 
new/ktimer-20.08.3/org.kde.ktimer.appdata.xml
--- old/ktimer-20.08.2/org.kde.ktimer.appdata.xml   2020-10-03 
14:23:33.0 +0200
+++ new/ktimer-20.08.3/org.kde.ktimer.appdata.xml   2020-10-31 
18:11:26.0 +0100
@@ -141,9 +141,9 @@
   
   org.kde.ktimer.desktop
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktimer-20.08.2/po/zh_CN/ktimer.po 
new/ktimer-20.08.3/po/zh_CN/ktimer.po
--- old/ktimer-20.08.2/po/zh_CN/ktimer.po   2020-10-06 05:28:31.0 
+0200
+++ new/ktimer-20.08.3/po/zh_CN/ktimer.po   2020-11-03 01:36:35.0 
+0100
@@ -6,7 +6,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 03:13+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit kmix for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kmix for openSUSE:Factory checked in 
at 2020-11-10 13:42:49

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


Package is "kmix"

Tue Nov 10 13:42:49 2020 rev:106 rq:846713 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kmix/kmix.changes2020-10-13 
15:38:29.389206491 +0200
+++ /work/SRC/openSUSE:Factory/.kmix.new.11331/kmix.changes 2020-11-10 
13:49:56.215248793 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:46 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kmix-20.08.2.tar.xz
  kmix-20.08.2.tar.xz.sig

New:

  kmix-20.08.3.tar.xz
  kmix-20.08.3.tar.xz.sig



Other differences:
--
++ kmix.spec ++
--- /var/tmp/diff_new_pack.jotbMf/_old  2020-11-10 13:49:56.851247591 +0100
+++ /var/tmp/diff_new_pack.jotbMf/_new  2020-11-10 13:49:56.855247583 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kmix
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Sound Mixer
 License:GPL-2.0-or-later


++ kmix-20.08.2.tar.xz -> kmix-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmix-20.08.2/desktop/kmixd.desktop 
new/kmix-20.08.3/desktop/kmixd.desktop
--- old/kmix-20.08.2/desktop/kmixd.desktop  2020-09-07 10:15:04.0 
+0200
+++ new/kmix-20.08.3/desktop/kmixd.desktop  2020-10-29 09:52:44.0 
+0100
@@ -15,6 +15,7 @@
 Name[fi]=KMix-palvelu
 Name[fr]=Démon KMix
 Name[gl]=Servizo de KMix
+Name[ia]=Demone KMixD
 Name[id]=KMix Daemon
 Name[it]=Demone di KMix
 Name[ko]=KMix 데몬
@@ -46,6 +47,7 @@
 Comment[fi]=Valvoo äänilaitteita
 Comment[fr]=Suivi des périphériques son
 Comment[gl]=Monitoriza os dispositivos de son
+Comment[ia]=Supervisiona dispositivos de sono
 Comment[id]=Pemantau perangkat suara
 Comment[it]=Controlla i dispositivi sonori
 Comment[ko]=소리 장치 모니터
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmix-20.08.2/desktop/org.kde.kmix.appdata.xml 
new/kmix-20.08.3/desktop/org.kde.kmix.appdata.xml
--- old/kmix-20.08.2/desktop/org.kde.kmix.appdata.xml   2020-09-07 
10:15:04.0 +0200
+++ new/kmix-20.08.3/desktop/org.kde.kmix.appdata.xml   2020-10-29 
09:52:44.0 +0100
@@ -17,6 +17,7 @@
   KMix
   KMix
   KMix
+  KMix
   KMix
   KMix
   KMix
@@ -52,6 +53,7 @@
   Äänimikseri
   Mixeur de son
   Mesturador de son
+  Miscitor de sono
   Sound Mixer
   Mixer audio
   소리 믹서
@@ -88,6 +90,7 @@
 KMix on äänikavanamikseri ja äänenvoimakkuuden säädin.
 KMix est un outil de mixage des canaux sonores et de 
contrôle du volume.
 KMix é un mesturador de canles de son e un controlador de 
volume.
+KMix es un miscitor de canal de sono e controlo de 
volumine.
 KMix adalah mixer channel suara dan kendali volume.
 Kmix è un mixer per i canali audio ed un regolatore del 
volume.
 KMix는 오디오 채널 믹서와 음량 조절 도구입니다.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmix-20.08.2/po/et/kmix.po 
new/kmix-20.08.3/po/et/kmix.po
--- old/kmix-20.08.2/po/et/kmix.po  2020-10-06 05:30:04.0 +0200
+++ new/kmix-20.08.3/po/et/kmix.po  2020-11-03 01:37:56.0 +0100
@@ -7,19 +7,20 @@
 # Peeter Russak , 2003.
 # Hasso Tepper , 2004, 2005.
 # Marek Laane , 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2019, 
2020.
+# Mihkel Tõnnov , 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kmix\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-16 07:39+0200\n"
-"PO-Revision-Date: 2020-06-03 20:31+0300\n"
-"Last-Translator: Marek Laane \n"
-"Language-Team: Estonian \n"
+"PO-Revision-Date: 2020-10-11 00:30+0200\n"
+"Last-Translator: Mihkel Tõnnov \n"
+"Language-Team: Estonian <>\n"
 "Language: et\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 19.12.3\n"
+"X-Generator: Lokalize 20.08.1\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 #, kde-format
@@ -974,15 +975,12 @@
 msgstr "Helitugevuse samm:"
 
 #: gui/kmixprefdlg.cpp:243
-#, fuzzy, kde-format
-#| msgid ""
-#| "KMix must be restarted for the Volume Step and Overdrive settings to take "
-#| "effect."
+#, kde-format
 msgid ""
 "KMix must be restarted for the Volume Step and Overdrive settings to take "
 "effect."
 

commit knights for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package knights for openSUSE:Factory checked 
in at 2020-11-10 13:42:59

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


Package is "knights"

Tue Nov 10 13:42:59 2020 rev:26 rq:846719 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/knights/knights.changes  2020-10-13 
15:39:00.501228443 +0200
+++ /work/SRC/openSUSE:Factory/.knights.new.11331/knights.changes   
2020-11-10 13:50:07.615227245 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:51 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  knights-20.08.2.tar.xz
  knights-20.08.2.tar.xz.sig

New:

  knights-20.08.3.tar.xz
  knights-20.08.3.tar.xz.sig



Other differences:
--
++ knights.spec ++
--- /var/tmp/diff_new_pack.jx2wnX/_old  2020-11-10 13:50:08.191226157 +0100
+++ /var/tmp/diff_new_pack.jx2wnX/_new  2020-11-10 13:50:08.195226149 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   knights
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:A simple chess board
 License:GPL-2.0-or-later


++ knights-20.08.2.tar.xz -> knights-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knights-20.08.2/po/zh_CN/knights.po 
new/knights-20.08.3/po/zh_CN/knights.po
--- old/knights-20.08.2/po/zh_CN/knights.po 2020-10-06 05:32:21.0 
+0200
+++ new/knights-20.08.3/po/zh_CN/knights.po 2020-11-03 01:39:35.0 
+0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-04-08 03:16+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit kmouth for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kmouth for openSUSE:Factory checked 
in at 2020-11-10 13:42:51

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


Package is "kmouth"

Tue Nov 10 13:42:51 2020 rev:112 rq:846715 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kmouth/kmouth.changes2020-10-13 
15:38:40.133214071 +0200
+++ /work/SRC/openSUSE:Factory/.kmouth.new.11331/kmouth.changes 2020-11-10 
13:49:59.635242329 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:47 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kmouth-20.08.2.tar.xz
  kmouth-20.08.2.tar.xz.sig

New:

  kmouth-20.08.3.tar.xz
  kmouth-20.08.3.tar.xz.sig



Other differences:
--
++ kmouth.spec ++
--- /var/tmp/diff_new_pack.Yron9T/_old  2020-11-10 13:50:00.199241263 +0100
+++ /var/tmp/diff_new_pack.Yron9T/_new  2020-11-10 13:50:00.203241255 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kmouth
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Speech Synthesizer Frontend
 License:GPL-2.0-or-later


++ kmouth-20.08.2.tar.xz -> kmouth-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmouth-20.08.2/books/ca.desktop 
new/kmouth-20.08.3/books/ca.desktop
--- old/kmouth-20.08.2/books/ca.desktop 2020-08-06 11:51:44.0 +0200
+++ new/kmouth-20.08.3/books/ca.desktop 2020-10-29 09:48:58.0 +0100
@@ -13,10 +13,12 @@
 Name[eu]=Katalana
 Name[fr]=Catalan
 Name[gl]=Catalán
+Name[ia]=Catalan 
 Name[it]=Catalano
 Name[ko]=카탈루냐어
 Name[nl]=Catalaans
 Name[nn]=Katalansk
+Name[pl]=Kataloński
 Name[pt]=Catalão
 Name[pt_BR]=Catalão
 Name[ru]=Каталонский
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmouth-20.08.2/po/ia/kmouth.po 
new/kmouth-20.08.3/po/ia/kmouth.po
--- old/kmouth-20.08.2/po/ia/kmouth.po  2020-10-06 05:28:55.0 +0200
+++ new/kmouth-20.08.3/po/ia/kmouth.po  2020-11-03 01:36:54.0 +0100
@@ -1,14 +1,14 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Giovanni Sora , 2016, 2018.
+# Giovanni Sora , 2016, 2018, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-09-19 02:49+0200\n"
-"PO-Revision-Date: 2018-09-21 22:50+0100\n"
-"Last-Translator: giovanni \n"
+"PO-Revision-Date: 2020-10-28 21:51+0100\n"
+"Last-Translator: Giovanni Sora \n"
 "Language-Team: Interlingua \n"
 "Language: ia\n"
 "MIME-Version: 1.0\n"
@@ -30,12 +30,12 @@
 #: configwizard.cpp:38
 #, kde-format
 msgid "Initial Configuration - KMouth"
-msgstr ""
+msgstr "Configuration Initial - KMouth"
 
 #: configwizard.cpp:59
 #, kde-format
 msgid "Text-to-Speech Configuration"
-msgstr ""
+msgstr "Configuration de Texto-a-Discurso (TextToSpeech)"
 
 #: configwizard.cpp:73
 #, kde-format
@@ -80,7 +80,7 @@
 #: kmouth.cpp:131 kmouth.cpp:132
 #, kde-format
 msgid "Quits the application"
-msgstr ""
+msgstr "Quita le application"
 
 #: kmouth.cpp:136
 #, kde-format
@@ -98,7 +98,7 @@
 #: kmouth.cpp:140
 #, kde-format
 msgid "Copies the selected section to the clipboard"
-msgstr ""
+msgstr "Copia le section seligite al area de transferentia"
 
 #: kmouth.cpp:141
 #, kde-format
@@ -159,17 +159,17 @@
 #: kmouth.cpp:173 kmouth.cpp:174
 #, kde-format
 msgid "Enables/disables the statusbar"
-msgstr ""
+msgstr "Habilita/Dishabilita le barra de stato"
 
 #: kmouth.cpp:178
 #, kde-format
 msgid " KMouth..."
-msgstr ""
+msgstr " KMouth..."
 
 #: kmouth.cpp:180 kmouth.cpp:181
 #, kde-format
 msgid "Opens the configuration dialog"
-msgstr ""
+msgstr "Aperi le dialogo de configuration"
 
 #: kmouth.cpp:189 phraselist.cpp:85
 #, kde-format
@@ -383,7 +383,7 @@
 #: phrasebook/initialphrasebookwidget.cpp:50
 #, kde-format
 msgid "Book"
-msgstr ""
+msgstr "Libro"
 
 #: phrasebook/phrasebook.cpp:286
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmouth-20.08.2/po/zh_CN/kmouth.po 
new/kmouth-20.08.3/po/zh_CN/kmouth.po
--- old/kmouth-20.08.2/po/zh_CN/kmouth.po   2020-10-06 05:28:56.0 
+0200
+++ new/kmouth-20.08.3/po/zh_CN/kmouth.po   2020-11-03 01:36:54.0 
+0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 

commit krfb for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package krfb for openSUSE:Factory checked in 
at 2020-11-10 13:43:33

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


Package is "krfb"

Tue Nov 10 13:43:33 2020 rev:97 rq:846738 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/krfb/krfb.changes2020-10-13 
15:39:54.509266552 +0200
+++ /work/SRC/openSUSE:Factory/.krfb.new.11331/krfb.changes 2020-11-10 
13:50:30.743183530 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:07 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  krfb-20.08.2.tar.xz
  krfb-20.08.2.tar.xz.sig

New:

  krfb-20.08.3.tar.xz
  krfb-20.08.3.tar.xz.sig



Other differences:
--
++ krfb.spec ++
--- /var/tmp/diff_new_pack.YLCywq/_old  2020-11-10 13:50:31.391182305 +0100
+++ /var/tmp/diff_new_pack.YLCywq/_new  2020-11-10 13:50:31.395182297 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   krfb
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Screen sharing using the VNC/RFB protocol
 License:GPL-2.0-or-later


++ krfb-20.08.2.tar.xz -> krfb-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-20.08.2/CMakeLists.txt 
new/krfb-20.08.3/CMakeLists.txt
--- old/krfb-20.08.2/CMakeLists.txt 2020-10-06 05:37:14.0 +0200
+++ new/krfb-20.08.3/CMakeLists.txt 2020-11-03 01:43:31.0 +0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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(krfb VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-20.08.2/events/x11/krfb_events_x11.json 
new/krfb-20.08.3/events/x11/krfb_events_x11.json
--- old/krfb-20.08.2/events/x11/krfb_events_x11.json2020-10-05 
07:07:12.0 +0200
+++ new/krfb-20.08.3/events/x11/krfb_events_x11.json2020-11-01 
08:37:09.0 +0100
@@ -44,6 +44,7 @@
 "Name[fi]": "KRfb:n X11-tapahtumakäsittelijä",
 "Name[fr]": "Gestionnaire d'évènements X11 pour KRfb",
 "Name[gl]": "Xestor de eventos de X11 para KRfb",
+"Name[ia]": "Manipulator de evento de X11 per KRfb",
 "Name[it]": "Gestore eventi X11 per KRfb",
 "Name[ko]": "KRfb X11 이벤트 핸들러",
 "Name[nl]": "Op X11 behandelaar van gebeurtenis voor KRfb",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/krfb-20.08.2/framebuffers/pipewire/krfb_framebuffer_pw.json 
new/krfb-20.08.3/framebuffers/pipewire/krfb_framebuffer_pw.json
--- old/krfb-20.08.2/framebuffers/pipewire/krfb_framebuffer_pw.json 
2020-10-05 07:07:12.0 +0200
+++ new/krfb-20.08.3/framebuffers/pipewire/krfb_framebuffer_pw.json 
2020-11-01 08:37:09.0 +0100
@@ -15,6 +15,7 @@
 "Description[fi]": "KRfb:n PipeWire-pohjainen kehyspuskuri.",
 "Description[fr]": "Tampon d'images utilisant PipeWire pour KRfb.",
 "Description[gl]": "Búfer de fotograma para KRfb baseado en PipeWire.",
+"Description[ia]": "Framebuffer basate sur PipeWire per KRfb.",
 "Description[it]": "Framebuffer basato su PipeWire per KRfb.",
 "Description[ko]": "KRfb용 PipeWire 기반 프레임버퍼입니다.",
 "Description[nl]": "Op PipeWire gebaseerd framebuffer voor KRfb.",
@@ -47,6 +48,7 @@
 "Name[fi]": "KRfb:n PipeWire-kehyspuskuri",
 "Name[fr]": "Tampon d'images PipeWire pour KRfb",
 "Name[gl]": "Búfer de fotograma de PipeWire para KRfb",
+"Name[ia]": "Framebuffer de PipeWire per KRfb",
 "Name[it]": "Framebuffer PipeWire per KRfb",
 "Name[ko]": "KRfb용 PipeWire 프레임버퍼",
 "Name[nl]": "PipeWire-framebuffer voor KRfb",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-20.08.2/krfb/krfb-events.desktop 
new/krfb-20.08.3/krfb/krfb-events.desktop
--- old/krfb-20.08.2/krfb/krfb-events.desktop   2020-10-05 07:07:12.0 
+0200
+++ new/krfb-20.08.3/krfb/krfb-events.desktop   2020-11-01 08:37:09.0 
+0100
@@ 

commit kolf for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kolf for openSUSE:Factory checked in 
at 2020-11-10 13:43:04

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


Package is "kolf"

Tue Nov 10 13:43:04 2020 rev:102 rq:846721 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kolf/kolf.changes2020-10-13 
15:39:01.989229493 +0200
+++ /work/SRC/openSUSE:Factory/.kolf.new.11331/kolf.changes 2020-11-10 
13:50:09.187224274 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:52 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kolf-20.08.2.tar.xz
  kolf-20.08.2.tar.xz.sig

New:

  kolf-20.08.3.tar.xz
  kolf-20.08.3.tar.xz.sig



Other differences:
--
++ kolf.spec ++
--- /var/tmp/diff_new_pack.UBOGGP/_old  2020-11-10 13:50:09.899222928 +0100
+++ /var/tmp/diff_new_pack.UBOGGP/_new  2020-11-10 13:50:09.903222920 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kolf
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Miniature golf game
 License:GPL-2.0-or-later AND LGPL-2.0-or-later


++ kolf-20.08.2.tar.xz -> kolf-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kolf-20.08.2/CMakeLists.txt 
new/kolf-20.08.3/CMakeLists.txt
--- old/kolf-20.08.2/CMakeLists.txt 2020-10-06 05:32:26.0 +0200
+++ new/kolf-20.08.3/CMakeLists.txt 2020-11-03 01:39:39.0 +0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "20")
 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(kolf VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kolf-20.08.2/org.kde.kolf.appdata.xml 
new/kolf-20.08.3/org.kde.kolf.appdata.xml
--- old/kolf-20.08.2/org.kde.kolf.appdata.xml   2020-10-03 14:34:26.0 
+0200
+++ new/kolf-20.08.3/org.kde.kolf.appdata.xml   2020-10-31 18:22:00.0 
+0100
@@ -317,9 +317,9 @@
 kolf
   
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kolf-20.08.2/po/zh_CN/kolf.po 
new/kolf-20.08.3/po/zh_CN/kolf.po
--- old/kolf-20.08.2/po/zh_CN/kolf.po   2020-10-06 05:32:25.0 +0200
+++ new/kolf-20.08.3/po/zh_CN/kolf.po   2020-11-03 01:39:38.0 +0100
@@ -10,7 +10,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit ksudoku for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ksudoku for openSUSE:Factory checked 
in at 2020-11-10 13:43:47

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


Package is "ksudoku"

Tue Nov 10 13:43:47 2020 rev:101 rq:846747 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ksudoku/ksudoku.changes  2020-10-13 
15:40:19.425284133 +0200
+++ /work/SRC/openSUSE:Factory/.ksudoku.new.11331/ksudoku.changes   
2020-11-10 13:50:40.443165195 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:14 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ksudoku-20.08.2.tar.xz
  ksudoku-20.08.2.tar.xz.sig

New:

  ksudoku-20.08.3.tar.xz
  ksudoku-20.08.3.tar.xz.sig



Other differences:
--
++ ksudoku.spec ++
--- /var/tmp/diff_new_pack.dfEnv4/_old  2020-11-10 13:50:41.035164076 +0100
+++ /var/tmp/diff_new_pack.dfEnv4/_new  2020-11-10 13:50:41.039164068 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ksudoku
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Program to generate and solve Sudoku puzzles in 2D or 3D
 License:GPL-2.0-or-later


++ ksudoku-20.08.2.tar.xz -> ksudoku-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksudoku-20.08.2/CMakeLists.txt 
new/ksudoku-20.08.3/CMakeLists.txt
--- old/ksudoku-20.08.2/CMakeLists.txt  2020-10-06 05:33:11.0 +0200
+++ new/ksudoku-20.08.3/CMakeLists.txt  2020-11-03 01:40:16.0 +0100
@@ -2,7 +2,7 @@
 
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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/ksudoku-20.08.2/po/zh_CN/ksudoku.po 
new/ksudoku-20.08.3/po/zh_CN/ksudoku.po
--- old/ksudoku-20.08.2/po/zh_CN/ksudoku.po 2020-10-06 05:33:11.0 
+0200
+++ new/ksudoku-20.08.3/po/zh_CN/ksudoku.po 2020-11-03 01:40:16.0 
+0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksudoku-20.08.2/src/gui/org.kde.ksudoku.appdata.xml 
new/ksudoku-20.08.3/src/gui/org.kde.ksudoku.appdata.xml
--- old/ksudoku-20.08.2/src/gui/org.kde.ksudoku.appdata.xml 2020-10-03 
14:36:35.0 +0200
+++ new/ksudoku-20.08.3/src/gui/org.kde.ksudoku.appdata.xml 2020-10-31 
18:24:02.0 +0100
@@ -30,6 +30,7 @@
   KSudoku
   KSudoku
   KSudoku
+  KSudoku
   KSudoku
   KSudoku
   KSudoku
@@ -64,6 +65,7 @@
   Uzupełnij układankę numeryczną cyframi od jeden do 
dziwięciu
   Completar um 'puzzle' numérico com os números de um a 
nove
   Complete um quebra-cabela numérico com os números 
de um a nove
+  Completează un puzzle numeric cu numere de la unu la 
nouă
   Úplné číselné puzzle s číslami od jedna do 
deväť
   Rešite številčno uganko s številkami med 1 in 
9
   Саставите бројевну слагалицу са бројевима од један до 
девет
@@ -120,9 +122,9 @@
   
   
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksudoku-20.08.2/src/gui/org.kde.ksudoku.desktop 
new/ksudoku-20.08.3/src/gui/org.kde.ksudoku.desktop
--- old/ksudoku-20.08.2/src/gui/org.kde.ksudoku.desktop 2020-10-03 
14:36:35.0 +0200
+++ new/ksudoku-20.08.3/src/gui/org.kde.ksudoku.desktop 2020-10-31 
18:24:02.0 +0100
@@ -130,6 +130,7 @@
 Comment[pl]=KSudoku, gra Sudoku i więcej w ramach KDE
 Comment[pt]=KSudoku, um jogo de Sudoku & mais do KDE
 Comment[pt_BR]=KSudoku, Jogo Sudoku e mais do KDE
+Comment[ro]=KSudoku, joc KDE de sudoku și altele
 Comment[ru]=KSudoku — судоку и другие игры от KDE
 Comment[sk]=KSudoku, Sudoku hra a ďalšie pre KDE
 Comment[sl]=KSudoku - Sudoku in več s 

commit konqueror for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package konqueror for openSUSE:Factory 
checked in at 2020-11-10 13:43:09

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


Package is "konqueror"

Tue Nov 10 13:43:09 2020 rev:54 rq:846725 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/konqueror/konqueror.changes  2020-10-13 
15:39:27.877247760 +0200
+++ /work/SRC/openSUSE:Factory/.konqueror.new.11331/konqueror.changes   
2020-11-10 13:50:15.307212706 +0100
@@ -1,0 +2,10 @@
+Thu Nov  5 22:46:56 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- Changes since 20.08.2:
+  * Repair running desktop files and executables from konqueror
+
+---

Old:

  konqueror-20.08.2.tar.xz
  konqueror-20.08.2.tar.xz.sig

New:

  konqueror-20.08.3.tar.xz
  konqueror-20.08.3.tar.xz.sig



Other differences:
--
++ konqueror.spec ++
--- /var/tmp/diff_new_pack.MS9yCF/_old  2020-11-10 13:50:15.859211663 +0100
+++ /var/tmp/diff_new_pack.MS9yCF/_new  2020-11-10 13:50:15.867211647 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   konqueror
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:KDE File Manager and Browser
 # Note for legal: 
konqueror-17.04.2/webenginepart/autotests/webengine_testutils.h is Qt 
commercial OR GPL-3.0


++ konqueror-20.08.2.tar.xz -> konqueror-20.08.3.tar.xz ++
/work/SRC/openSUSE:Factory/konqueror/konqueror-20.08.2.tar.xz 
/work/SRC/openSUSE:Factory/.konqueror.new.11331/konqueror-20.08.3.tar.xz 
differ: char 26, line 1




commit kpat for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kpat for openSUSE:Factory checked in 
at 2020-11-10 13:43:14

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


Package is "kpat"

Tue Nov 10 13:43:14 2020 rev:104 rq:846732 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kpat/kpat.changes2020-10-13 
15:39:35.961253464 +0200
+++ /work/SRC/openSUSE:Factory/.kpat.new.11331/kpat.changes 2020-11-10 
13:50:17.463208631 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:02 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kpat-20.08.2.tar.xz
  kpat-20.08.2.tar.xz.sig

New:

  kpat-20.08.3.tar.xz
  kpat-20.08.3.tar.xz.sig



Other differences:
--
++ kpat.spec ++
--- /var/tmp/diff_new_pack.otzBdn/_old  2020-11-10 13:50:17.987207640 +0100
+++ /var/tmp/diff_new_pack.otzBdn/_new  2020-11-10 13:50:17.995207625 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kpat
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Patience card game
 License:GPL-2.0-or-later


++ kpat-20.08.2.tar.xz -> kpat-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-20.08.2/CMakeLists.txt 
new/kpat-20.08.3/CMakeLists.txt
--- old/kpat-20.08.2/CMakeLists.txt 2020-10-06 05:32:38.0 +0200
+++ new/kpat-20.08.3/CMakeLists.txt 2020-11-03 01:39:47.0 +0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "20")
 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(kpat VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-20.08.2/mimetypes/kpatience.xml 
new/kpat-20.08.3/mimetypes/kpatience.xml
--- old/kpat-20.08.2/mimetypes/kpatience.xml2020-10-03 14:35:01.0 
+0200
+++ new/kpat-20.08.3/mimetypes/kpatience.xml2020-10-31 18:22:34.0 
+0100
@@ -16,7 +16,7 @@
 Fichier de partie KPatience dans l'ancien 
format
 Ficheiro de partida dunha versión antiga de 
KPatience
 File simpanan warisan KPatience
-File di salvataggio obsoleto per KPatience
+File di salvataggio obsoleto di KPatience
 KPatience 레거시 저장 파일
 KPatience ouderwets opslagbestand
 Kabal-lagringsfil frå eldre versjon
@@ -57,7 +57,7 @@
 Fichier de partie KPatience
 Ficheiro de partida de KPatience
 File simpanan KPatience
-File di salvataggio per KPatience
+File di salvataggio di KPatience
 KPatience 저장 파일
 KPatience opslagbestand
 Kabal-lagringsfil
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-20.08.2/org.kde.kpat.appdata.xml 
new/kpat-20.08.3/org.kde.kpat.appdata.xml
--- old/kpat-20.08.2/org.kde.kpat.appdata.xml   2020-10-03 14:35:01.0 
+0200
+++ new/kpat-20.08.3/org.kde.kpat.appdata.xml   2020-10-31 18:22:34.0 
+0100
@@ -125,9 +125,9 @@
   
   
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-20.08.2/po/zh_CN/kpat.po 
new/kpat-20.08.3/po/zh_CN/kpat.po
--- old/kpat-20.08.2/po/zh_CN/kpat.po   2020-10-06 05:32:37.0 +0200
+++ new/kpat-20.08.3/po/zh_CN/kpat.po   2020-11-03 01:39:47.0 +0100
@@ -10,7 +10,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit kspaceduel for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kspaceduel for openSUSE:Factory 
checked in at 2020-11-10 13:43:42

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


Package is "kspaceduel"

Tue Nov 10 13:43:42 2020 rev:102 rq:846745 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kspaceduel/kspaceduel.changes2020-10-13 
15:40:15.977281700 +0200
+++ /work/SRC/openSUSE:Factory/.kspaceduel.new.11331/kspaceduel.changes 
2020-11-10 13:50:38.187169460 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:13 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kspaceduel-20.08.2.tar.xz
  kspaceduel-20.08.2.tar.xz.sig

New:

  kspaceduel-20.08.3.tar.xz
  kspaceduel-20.08.3.tar.xz.sig



Other differences:
--
++ kspaceduel.spec ++
--- /var/tmp/diff_new_pack.3x2Myj/_old  2020-11-10 13:50:38.875168158 +0100
+++ /var/tmp/diff_new_pack.3x2Myj/_new  2020-11-10 13:50:38.879168152 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kspaceduel
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Space Arcade game
 License:GPL-2.0-or-later


++ kspaceduel-20.08.2.tar.xz -> kspaceduel-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kspaceduel-20.08.2/org.kde.kspaceduel.appdata.xml 
new/kspaceduel-20.08.3/org.kde.kspaceduel.appdata.xml
--- old/kspaceduel-20.08.2/org.kde.kspaceduel.appdata.xml   2020-10-05 
08:24:04.0 +0200
+++ new/kspaceduel-20.08.3/org.kde.kspaceduel.appdata.xml   2020-10-10 
08:24:41.0 +0200
@@ -24,6 +24,7 @@
   KosmicznyPojedynek
   Duelo Espacial
   KSpaceDuel
+  Duel spațial
   KSpaceDuel
   KSpaceDuel
   KSpaceDuel
@@ -58,6 +59,7 @@
   Gra zręcznościowa w kosmosie
   Jogo Espacial de Arcada
   Jogo de Arcade espacial
+  Joc de aventuri spațiale
   Космическая аркадная игра
   Vesmírna arkádová hra
   Vesoljska arkadna igra
@@ -94,6 +96,7 @@
 W KosmicznymPojedynku każdy z dwóch graczy steruje 
orbitalnym statkiem kosmicznym krążącym wokół słońca. W trakcie gry, gracze 
muszą pozbyć się statku przeciwnika przy użyciu pocisków lub min.
 No KSpaceDuel, cada um dos dois possíveis jogadores 
controlam uma nave espacial que orbita em torno do Sol. À medida que o jogo 
evolui, os jogadores têm de eliminar a nave espacial do adversário com balas ou 
minas.
 No KSpaceDuel, cada um dos dois possíveis jogadores 
controlam uma nave espacial que orbita em torno do Sol. À medida que o jogo 
evolui, os jogadores devem eliminar a nave espacial do adversário com balas ou 
minas.
+În Duel Spațial, fiecare dintre cei doi posibili jucători 
controlează o navă spațială satelit ce orbitează Soarele. Pe măsură ce jocul 
progresează, jucătorii trebuie să elimine nava spațială a oponentului folosind 
gloanțe și mine.
 В KSpaceDuel каждый из двух возможных игроков управляет 
космическим кораблем-спутником, вращающимся вокруг Солнца. Цель игры состоит в 
уничтожении космического корабля противника пулями или минами.
 V hre KSpaceDuel dvaja hráči ovládajú vesmírnu loď 
obiehajúcu okolo Slnka. Hráči majú eliminovať protivníkovu kozmickú loď 
strelami alebo mínami.
 Vsak izmed dveh igralcev v KSpaceDuelu nadzira satelit, 
ki kroži okrog sonca. Cilj igre je, da nasprotnikovo ladjo uničite s kroglami 
ali minami.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kspaceduel-20.08.2/po/et/kspaceduel.po 
new/kspaceduel-20.08.3/po/et/kspaceduel.po
--- old/kspaceduel-20.08.2/po/et/kspaceduel.po  2020-10-06 05:33:04.0 
+0200
+++ new/kspaceduel-20.08.3/po/et/kspaceduel.po  2020-11-03 01:40:10.0 
+0100
@@ -4,19 +4,20 @@
 # Jane Susi , 2000.
 # Anti Veeranna , 2002.
 # Marek Laane , 2007-2008, 2019.
+# Mihkel Tõnnov , 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kspaceduel\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2019-11-11 17:28+0200\n"
-"Last-Translator: Marek Laane \n"
-"Language-Team: Estonian \n"
+"PO-Revision-Date: 2020-10-07 21:19+0200\n"
+"Last-Translator: Mihkel Tõnnov \n"
+"Language-Team: Estonian <>\n"
 "Language: et\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 19.08.1\n"
+"X-Generator: 

commit ksirk for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package ksirk for openSUSE:Factory checked 
in at 2020-11-10 13:43:38

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


Package is "ksirk"

Tue Nov 10 13:43:38 2020 rev:101 rq:846742 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/ksirk/ksirk.changes  2020-10-13 
15:40:10.617277918 +0200
+++ /work/SRC/openSUSE:Factory/.ksirk.new.11331/ksirk.changes   2020-11-10 
13:50:34.763175931 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:10 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  ksirk-20.08.2.tar.xz
  ksirk-20.08.2.tar.xz.sig

New:

  ksirk-20.08.3.tar.xz
  ksirk-20.08.3.tar.xz.sig



Other differences:
--
++ ksirk.spec ++
--- /var/tmp/diff_new_pack.aK2wve/_old  2020-11-10 13:50:35.443174646 +0100
+++ /var/tmp/diff_new_pack.aK2wve/_new  2020-11-10 13:50:35.447174638 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   ksirk
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Risk-like game by KDE
 License:GPL-2.0-or-later AND LGPL-2.0-or-later


++ ksirk-20.08.2.tar.xz -> ksirk-20.08.3.tar.xz ++
/work/SRC/openSUSE:Factory/ksirk/ksirk-20.08.2.tar.xz 
/work/SRC/openSUSE:Factory/.ksirk.new.11331/ksirk-20.08.3.tar.xz differ: char 
27, line 1




commit kollision for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kollision for openSUSE:Factory 
checked in at 2020-11-10 13:43:05

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


Package is "kollision"

Tue Nov 10 13:43:05 2020 rev:104 rq:846722 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kollision/kollision.changes  2020-10-13 
15:39:04.421231209 +0200
+++ /work/SRC/openSUSE:Factory/.kollision.new.11331/kollision.changes   
2020-11-10 13:50:10.519221756 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:53 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kollision-20.08.2.tar.xz
  kollision-20.08.2.tar.xz.sig

New:

  kollision-20.08.3.tar.xz
  kollision-20.08.3.tar.xz.sig



Other differences:
--
++ kollision.spec ++
--- /var/tmp/diff_new_pack.cRphM9/_old  2020-11-10 13:50:11.191220486 +0100
+++ /var/tmp/diff_new_pack.cRphM9/_new  2020-11-10 13:50:11.195220478 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kollision
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Kollision game
 License:GPL-2.0-or-later


++ kollision-20.08.2.tar.xz -> kollision-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kollision-20.08.2/po/et/kollision.po 
new/kollision-20.08.3/po/et/kollision.po
--- old/kollision-20.08.2/po/et/kollision.po2020-10-06 05:32:28.0 
+0200
+++ new/kollision-20.08.3/po/et/kollision.po2020-11-03 01:39:41.0 
+0100
@@ -3,19 +3,20 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Marek Laane , 2008, 2009, 2010, 2016.
+# Mihkel Tõnnov , 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kollision\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2016-07-27 19:47+0300\n"
-"Last-Translator: Marek Laane \n"
-"Language-Team: Estonian \n"
+"PO-Revision-Date: 2020-10-07 21:05+0200\n"
+"Last-Translator: Mihkel Tõnnov \n"
+"Language-Team: Estonian <>\n"
 "Language: et\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 20.08.1\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 #, kde-format
@@ -207,6 +208,9 @@
 msgid " smoothness:"
 msgstr " mahedus:"
 
+#~ msgid "Casual ball game"
+#~ msgstr "Ajaviite-pallimäng"
+
 #~ msgid "Difficulty of the game."
 #~ msgstr "Mängu raskusaste."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kollision-20.08.2/po/pt_BR/kollision.po 
new/kollision-20.08.3/po/pt_BR/kollision.po
--- old/kollision-20.08.2/po/pt_BR/kollision.po 2020-10-06 05:32:29.0 
+0200
+++ new/kollision-20.08.3/po/pt_BR/kollision.po 2020-11-03 01:39:42.0 
+0100
@@ -3,22 +3,22 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Mauricio Piacentini , 2008, 2009.
-# Luiz Fernando Ranghetti , 2009.
+# Luiz Fernando Ranghetti , 2009, 2020.
 # André Marcelo Alvarenga , 2010, 2011, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: kollision\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2016-01-25 07:32-0300\n"
-"Last-Translator: André Marcelo Alvarenga \n"
-"Language-Team: Brazilian Portuguese \n"
+"PO-Revision-Date: 2020-10-21 16:03-0300\n"
+"Last-Translator: Luiz Fernando Ranghetti \n"
+"Language-Team: Brazilian Portuguese \n"
 "Language: pt_BR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.04.3\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -91,7 +91,7 @@
 #: main.cpp:41
 #, kde-format
 msgid "Port to use KGameRenderer"
-msgstr "Modificações para usar o KGameRenderer"
+msgstr "Migração para usar o KGameRenderer"
 
 #: mainarea.cpp:90
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kollision-20.08.2/po/zh_CN/kollision.po 
new/kollision-20.08.3/po/zh_CN/kollision.po
--- old/kollision-20.08.2/po/zh_CN/kollision.po 2020-10-06 05:32:30.0 
+0200
+++ new/kollision-20.08.3/po/zh_CN/kollision.po 2020-11-03 

commit knetwalk for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package knetwalk for openSUSE:Factory 
checked in at 2020-11-10 13:42:58

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


Package is "knetwalk"

Tue Nov 10 13:42:58 2020 rev:103 rq:846718 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/knetwalk/knetwalk.changes2020-10-13 
15:38:58.937227340 +0200
+++ /work/SRC/openSUSE:Factory/.knetwalk.new.11331/knetwalk.changes 
2020-11-10 13:50:04.743232674 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:50 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  knetwalk-20.08.2.tar.xz
  knetwalk-20.08.2.tar.xz.sig

New:

  knetwalk-20.08.3.tar.xz
  knetwalk-20.08.3.tar.xz.sig



Other differences:
--
++ knetwalk.spec ++
--- /var/tmp/diff_new_pack.SNUxa7/_old  2020-11-10 13:50:05.263231690 +0100
+++ /var/tmp/diff_new_pack.SNUxa7/_new  2020-11-10 13:50:05.267231684 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   knetwalk
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Puzzle game
 License:GPL-2.0-or-later


++ knetwalk-20.08.2.tar.xz -> knetwalk-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knetwalk-20.08.2/CMakeLists.txt 
new/knetwalk-20.08.3/CMakeLists.txt
--- old/knetwalk-20.08.2/CMakeLists.txt 2020-10-06 05:32:18.0 +0200
+++ new/knetwalk-20.08.3/CMakeLists.txt 2020-11-03 01:39:32.0 +0100
@@ -2,7 +2,7 @@
 
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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/knetwalk-20.08.2/po/ca/knetwalk.po 
new/knetwalk-20.08.3/po/ca/knetwalk.po
--- old/knetwalk-20.08.2/po/ca/knetwalk.po  2020-10-06 05:32:16.0 
+0200
+++ new/knetwalk-20.08.3/po/ca/knetwalk.po  2020-11-03 01:39:31.0 
+0100
@@ -1,7 +1,7 @@
 # Translation of knetwalk.po to Catalan
 # Copyright (C) 2005-2020 This_file_is_part_of_KDE
 #
-# Josep Ma. Ferrer , 2005, 2006, 2010, 2013, 2015.
+# Josep Ma. Ferrer , 2005, 2006, 2010, 2013, 2015, 2020.
 # Albert Astals Cid , 2005, 2008, 2009.
 # Aleix Pol , 2007.
 # Manuel Tortosa , 2009, 2010.
@@ -11,14 +11,14 @@
 "Project-Id-Version: knetwalk\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-07-22 12:39+0200\n"
-"Last-Translator: Antoni Bella Pérez \n"
+"PO-Revision-Date: 2020-10-13 20:46+0200\n"
+"Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 20.04.3\n"
+"X-Generator: Lokalize 20.08.1\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
@@ -328,7 +328,7 @@
 #: qml/main.qml:76
 #, kde-format
 msgid "Paused"
-msgstr "Pausada"
+msgstr "En pausa"
 
 #~ msgid " ms"
 #~ msgstr " ms"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knetwalk-20.08.2/po/ca@valencia/knetwalk.po 
new/knetwalk-20.08.3/po/ca@valencia/knetwalk.po
--- old/knetwalk-20.08.2/po/ca@valencia/knetwalk.po 2020-10-06 
05:32:16.0 +0200
+++ new/knetwalk-20.08.3/po/ca@valencia/knetwalk.po 2020-11-03 
01:39:31.0 +0100
@@ -1,7 +1,7 @@
 # Translation of knetwalk.po to Catalan (Valencian)
 # Copyright (C) 2005-2020 This_file_is_part_of_KDE
 #
-# Josep Ma. Ferrer , 2005, 2006, 2010, 2013, 2015.
+# Josep Ma. Ferrer , 2005, 2006, 2010, 2013, 2015, 2020.
 # Albert Astals Cid , 2005, 2008, 2009.
 # Aleix Pol , 2007.
 # Manuel Tortosa , 2009, 2010.
@@ -11,14 +11,14 @@
 "Project-Id-Version: knetwalk\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-07-22 12:39+0200\n"
-"Last-Translator: Antoni Bella Pérez \n"
+"PO-Revision-Date: 2020-10-13 20:46+0200\n"
+"Last-Translator: Josep Ma. Ferrer 

commit kreversi for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kreversi for openSUSE:Factory 
checked in at 2020-11-10 13:43:29

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


Package is "kreversi"

Tue Nov 10 13:43:29 2020 rev:102 rq:846737 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kreversi/kreversi.changes2020-10-13 
15:39:45.325260072 +0200
+++ /work/SRC/openSUSE:Factory/.kreversi.new.11331/kreversi.changes 
2020-11-10 13:50:26.731191113 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:47:06 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kreversi-20.08.2.tar.xz
  kreversi-20.08.2.tar.xz.sig

New:

  kreversi-20.08.3.tar.xz
  kreversi-20.08.3.tar.xz.sig



Other differences:
--
++ kreversi.spec ++
--- /var/tmp/diff_new_pack.zBMI3U/_old  2020-11-10 13:50:27.339189964 +0100
+++ /var/tmp/diff_new_pack.zBMI3U/_new  2020-11-10 13:50:27.343189956 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kreversi
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Reversi board game
 License:GPL-2.0-or-later


++ kreversi-20.08.2.tar.xz -> kreversi-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kreversi-20.08.2/po/zh_CN/kreversi.po 
new/kreversi-20.08.3/po/zh_CN/kreversi.po
--- old/kreversi-20.08.2/po/zh_CN/kreversi.po   2020-10-06 05:32:42.0 
+0200
+++ new/kreversi-20.08.3/po/zh_CN/kreversi.po   2020-11-03 01:39:51.0 
+0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-09-23 12:21\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit kmplot for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kmplot for openSUSE:Factory checked 
in at 2020-11-10 13:42:55

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


Package is "kmplot"

Tue Nov 10 13:42:55 2020 rev:123 rq:846716 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kmplot/kmplot.changes2020-10-13 
15:38:50.189221167 +0200
+++ /work/SRC/openSUSE:Factory/.kmplot.new.11331/kmplot.changes 2020-11-10 
13:50:01.543238722 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:48 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kmplot-20.08.2.tar.xz
  kmplot-20.08.2.tar.xz.sig

New:

  kmplot-20.08.3.tar.xz
  kmplot-20.08.3.tar.xz.sig



Other differences:
--
++ kmplot.spec ++
--- /var/tmp/diff_new_pack.hSjEz4/_old  2020-11-10 13:50:02.131237611 +0100
+++ /var/tmp/diff_new_pack.hSjEz4/_new  2020-11-10 13:50:02.135237604 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kmplot
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Mathematical Function Plotter
 License:GPL-2.0-or-later


++ kmplot-20.08.2.tar.xz -> kmplot-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-20.08.2/po/zh_CN/kmplot.po 
new/kmplot-20.08.3/po/zh_CN/kmplot.po
--- old/kmplot-20.08.2/po/zh_CN/kmplot.po   2020-10-08 19:13:09.0 
+0200
+++ new/kmplot-20.08.3/po/zh_CN/kmplot.po   2020-11-03 01:33:32.0 
+0100
@@ -13,7 +13,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:37+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit kiten for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kiten for openSUSE:Factory checked 
in at 2020-11-10 13:42:36

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


Package is "kiten"

Tue Nov 10 13:42:36 2020 rev:126 rq:846697 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kiten/kiten.changes  2020-10-13 
15:37:42.937173713 +0200
+++ /work/SRC/openSUSE:Factory/.kiten.new.11331/kiten.changes   2020-11-10 
13:49:37.687283814 +0100
@@ -1,0 +2,10 @@
+Thu Nov  5 22:46:32 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- Changes since 20.08.2:
+  * Remove wrong and unneded i18n calls
+
+---

Old:

  kiten-20.08.2.tar.xz
  kiten-20.08.2.tar.xz.sig

New:

  kiten-20.08.3.tar.xz
  kiten-20.08.3.tar.xz.sig



Other differences:
--
++ kiten.spec ++
--- /var/tmp/diff_new_pack.m9ZUZv/_old  2020-11-10 13:49:38.227282794 +0100
+++ /var/tmp/diff_new_pack.m9ZUZv/_new  2020-11-10 13:49:38.231282786 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kiten
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Japanese Reference/Study Tool
 # Data files are under CC-BY-SA-3.0 (edict) and CC-BY-SA-4.0 ("kanjidic"/SKIP 
numbers therein)


++ kiten-20.08.2.tar.xz -> kiten-20.08.3.tar.xz ++
/work/SRC/openSUSE:Factory/kiten/kiten-20.08.2.tar.xz 
/work/SRC/openSUSE:Factory/.kiten.new.11331/kiten-20.08.3.tar.xz differ: char 
25, line 1




commit klettres for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package klettres for openSUSE:Factory 
checked in at 2020-11-10 13:42:39

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


Package is "klettres"

Tue Nov 10 13:42:39 2020 rev:122 rq:846702 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/klettres/klettres.changes2020-10-13 
15:37:58.637184791 +0200
+++ /work/SRC/openSUSE:Factory/.klettres.new.11331/klettres.changes 
2020-11-10 13:49:46.467267219 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:36 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  klettres-20.08.2.tar.xz
  klettres-20.08.2.tar.xz.sig

New:

  klettres-20.08.3.tar.xz
  klettres-20.08.3.tar.xz.sig



Other differences:
--
++ klettres.spec ++
--- /var/tmp/diff_new_pack.SDLbRi/_old  2020-11-10 13:49:47.151265925 +0100
+++ /var/tmp/diff_new_pack.SDLbRi/_new  2020-11-10 13:49:47.155265918 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   klettres
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Alphabet Learning Game
 License:GPL-2.0-or-later


++ klettres-20.08.2.tar.xz -> klettres-20.08.3.tar.xz ++
/work/SRC/openSUSE:Factory/klettres/klettres-20.08.2.tar.xz 
/work/SRC/openSUSE:Factory/.klettres.new.11331/klettres-20.08.3.tar.xz differ: 
char 27, line 1




commit knavalbattle for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package knavalbattle for openSUSE:Factory 
checked in at 2020-11-10 13:42:56

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


Package is "knavalbattle"

Tue Nov 10 13:42:56 2020 rev:103 rq:846717 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/knavalbattle/knavalbattle.changes
2020-10-13 15:38:53.741223673 +0200
+++ /work/SRC/openSUSE:Factory/.knavalbattle.new.11331/knavalbattle.changes 
2020-11-10 13:50:03.391235229 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:49 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  knavalbattle-20.08.2.tar.xz
  knavalbattle-20.08.2.tar.xz.sig

New:

  knavalbattle-20.08.3.tar.xz
  knavalbattle-20.08.3.tar.xz.sig



Other differences:
--
++ knavalbattle.spec ++
--- /var/tmp/diff_new_pack.PtfryM/_old  2020-11-10 13:50:04.007234065 +0100
+++ /var/tmp/diff_new_pack.PtfryM/_new  2020-11-10 13:50:04.011234057 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   knavalbattle
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Battleship game
 License:GPL-2.0-or-later


++ knavalbattle-20.08.2.tar.xz -> knavalbattle-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knavalbattle-20.08.2/CMakeLists.txt 
new/knavalbattle-20.08.3/CMakeLists.txt
--- old/knavalbattle-20.08.2/CMakeLists.txt 2020-10-06 05:32:14.0 
+0200
+++ new/knavalbattle-20.08.3/CMakeLists.txt 2020-11-03 01:39:29.0 
+0100
@@ -2,7 +2,7 @@
 
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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/knavalbattle-20.08.2/po/pl/knavalbattle.po 
new/knavalbattle-20.08.3/po/pl/knavalbattle.po
--- old/knavalbattle-20.08.2/po/pl/knavalbattle.po  2020-10-06 
05:32:13.0 +0200
+++ new/knavalbattle-20.08.3/po/pl/knavalbattle.po  2020-11-03 
01:39:29.0 +0100
@@ -1,25 +1,25 @@
 # translation of kbattleship.po to
-# Version: $Revision: 1574253 $
+# Version: $Revision: 1582593 $
 # Copyright (C) YEAR Free Software Fundation, Inc.
 #
 # Michal Rudolf , 2002, 2003, 2004, 2005.
 # tazdzioch , 2007.
 # Marta Rybczyńska , 2007, 2008.
 # Maciej Wikło , 2009.
-# Łukasz Wojniłowicz , 2011, 2012, 2013, 2014, 
2016, 2017.
+# Łukasz Wojniłowicz , 2011, 2012, 2013, 2014, 
2016, 2017, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kbattleship\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2017-04-22 07:14+0100\n"
+"PO-Revision-Date: 2020-10-11 08:27+0200\n"
 "Last-Translator: Łukasz Wojniłowicz \n"
 "Language-Team: Polish \n"
 "Language: pl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.08.1\n"
 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
 "|| n%100>=20) ? 1 : 2);\n"
 
@@ -353,7 +353,7 @@
 #: networkdialog.cpp:91
 #, kde-format
 msgid ":"
-msgstr "Nazwa :"
+msgstr " gospodarza:"
 
 #: networkdialog.cpp:104 networkdialog.cpp:134
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knavalbattle-20.08.2/po/zh_CN/knavalbattle.po 
new/knavalbattle-20.08.3/po/zh_CN/knavalbattle.po
--- old/knavalbattle-20.08.2/po/zh_CN/knavalbattle.po   2020-10-06 
05:32:13.0 +0200
+++ new/knavalbattle-20.08.3/po/zh_CN/knavalbattle.po   2020-11-03 
01:39:29.0 +0100
@@ -13,7 +13,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 

commit kget for openSUSE:Factory

2020-11-10 Thread root
Hello community,

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

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


Package is "kget"

Tue Nov 10 13:42:10 2020 rev:94 rq:846680 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kget/kget.changes2020-10-13 
15:36:52.205137916 +0200
+++ /work/SRC/openSUSE:Factory/.kget.new.11331/kget.changes 2020-11-10 
13:48:53.015368252 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:18 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kget-20.08.2.tar.xz
  kget-20.08.2.tar.xz.sig

New:

  kget-20.08.3.tar.xz
  kget-20.08.3.tar.xz.sig



Other differences:
--
++ kget.spec ++
--- /var/tmp/diff_new_pack.JOJT2O/_old  2020-11-10 13:48:53.85535 +0100
+++ /var/tmp/diff_new_pack.JOJT2O/_new  2020-11-10 13:48:53.859366657 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kget
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Download Manager
 License:GPL-2.0-or-later


++ kget-20.08.2.tar.xz -> kget-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kget-20.08.2/CMakeLists.txt 
new/kget-20.08.3/CMakeLists.txt
--- old/kget-20.08.2/CMakeLists.txt 2020-10-06 05:36:18.0 +0200
+++ new/kget-20.08.3/CMakeLists.txt 2020-11-03 01:42:46.0 +0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "20")
 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(kget VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kget-20.08.2/desktop/org.kde.kget.desktop.cmake 
new/kget-20.08.3/desktop/org.kde.kget.desktop.cmake
--- old/kget-20.08.2/desktop/org.kde.kget.desktop.cmake 2020-10-05 
21:46:28.0 +0200
+++ new/kget-20.08.3/desktop/org.kde.kget.desktop.cmake 2020-10-31 
18:28:39.0 +0100
@@ -151,7 +151,7 @@
 GenericName[uk]=Керування отриманнями
 GenericName[uz]=Yozib olish boshqaruvchisi
 GenericName[uz@cyrillic]=Ёзиб олиш бошқарувчиси
-GenericName[vi]=Trình quản lý việc tải tệp
+GenericName[vi]=Trình quản lí việc tải tệp
 GenericName[wa]=Manaedjeu d' aberwetaedje
 GenericName[x-test]=xxDownload Managerxx
 GenericName[zh_CN]=下载管理器
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kget-20.08.2/org.kde.kget.appdata.xml 
new/kget-20.08.3/org.kde.kget.appdata.xml
--- old/kget-20.08.2/org.kde.kget.appdata.xml   2020-10-05 21:46:28.0 
+0200
+++ new/kget-20.08.3/org.kde.kget.appdata.xml   2020-10-31 18:28:39.0 
+0100
@@ -154,8 +154,8 @@
   从 FTP 和 HTTP(S) 源下载文件。
   從 FTP 和 HTTP(S) 來源下載檔案。
   Pausing and resuming of downloading files, as well as the ability to 
restart a download.
-  Pausa i reprèn la baixada de fitxers, així com la 
possibilitat de reiniciar una baixada.
-  Pausa i reprén la baixada de fitxers, així 
com la possibilitat de reiniciar una baixada.
+  Fa pausa i reprèn la baixada de fitxers, així com la 
possibilitat de reiniciar una baixada.
+  Fa pausa i reprén la baixada de fitxers, així 
com la possibilitat de reiniciar una baixada.
   Sæt downloadede filer på pause og genoptag dem, og 
muligheden for at genstarte en download.
   Anhalten und Fortsetzen des Herunterladens von 
Dateien, außerdem gibt es auch die Möglichkeit, das Herunterladen neu zu 
starten.
   Παύει και συνεχίζει τη λήψη αρχείων, και έχει τη 
δυνατότητα επανάληψης μιας λήψης.
@@ -339,9 +339,9 @@
   
   org.kde.kget.desktop
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kget-20.08.2/po/ca/kget.po 
new/kget-20.08.3/po/ca/kget.po
--- old/kget-20.08.2/po/ca/kget.po  2020-10-06 05:36:11.0 +0200
+++ new/kget-20.08.3/po/ca/kget.po  2020-11-03 01:42:44.0 +0100
@@ -12,14 +12,14 @@
 "Project-Id-Version: kget\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-03-20 03:16+0100\n"
-"PO-Revision-Date: 

commit klines for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package klines for openSUSE:Factory checked 
in at 2020-11-10 13:42:43

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


Package is "klines"

Tue Nov 10 13:42:43 2020 rev:103 rq:846704 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/klines/klines.changes2020-10-13 
15:38:09.529192477 +0200
+++ /work/SRC/openSUSE:Factory/.klines.new.11331/klines.changes 2020-11-10 
13:49:48.687263022 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:38 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  klines-20.08.2.tar.xz
  klines-20.08.2.tar.xz.sig

New:

  klines-20.08.3.tar.xz
  klines-20.08.3.tar.xz.sig



Other differences:
--
++ klines.spec ++
--- /var/tmp/diff_new_pack.6WsTJX/_old  2020-11-10 13:49:49.155262138 +0100
+++ /var/tmp/diff_new_pack.6WsTJX/_new  2020-11-10 13:49:49.155262138 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   klines
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Tactical game
 License:GPL-2.0-or-later


++ klines-20.08.2.tar.xz -> klines-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/klines-20.08.2/CMakeLists.txt 
new/klines-20.08.3/CMakeLists.txt
--- old/klines-20.08.2/CMakeLists.txt   2020-10-06 05:32:00.0 +0200
+++ new/klines-20.08.3/CMakeLists.txt   2020-11-03 01:39:19.0 +0100
@@ -2,7 +2,7 @@
 
 set (RELEASE_SERVICE_VERSION_MAJOR "20")
 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/klines-20.08.2/org.kde.klines.appdata.xml 
new/klines-20.08.3/org.kde.klines.appdata.xml
--- old/klines-20.08.2/org.kde.klines.appdata.xml   2020-10-03 
14:33:04.0 +0200
+++ new/klines-20.08.3/org.kde.klines.appdata.xml   2020-10-31 
18:20:40.0 +0100
@@ -193,9 +193,9 @@
   kde-games-devel_AT_kde.org
   org.kde.klines.desktop
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/klines-20.08.2/po/zh_CN/klines.po 
new/klines-20.08.3/po/zh_CN/klines.po
--- old/klines-20.08.2/po/zh_CN/klines.po   2020-10-06 05:31:59.0 
+0200
+++ new/klines-20.08.3/po/zh_CN/klines.po   2020-11-03 01:39:19.0 
+0100
@@ -11,7 +11,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit khangman for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package khangman for openSUSE:Factory 
checked in at 2020-11-10 13:42:16

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


Package is "khangman"

Tue Nov 10 13:42:16 2020 rev:120 rq:846683 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/khangman/khangman.changes2020-10-13 
15:37:00.949144086 +0200
+++ /work/SRC/openSUSE:Factory/.khangman.new.11331/khangman.changes 
2020-11-10 13:49:02.427350462 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:21 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  khangman-20.08.2.tar.xz
  khangman-20.08.2.tar.xz.sig

New:

  khangman-20.08.3.tar.xz
  khangman-20.08.3.tar.xz.sig



Other differences:
--
++ khangman.spec ++
--- /var/tmp/diff_new_pack.adxFZr/_old  2020-11-10 13:49:03.091349207 +0100
+++ /var/tmp/diff_new_pack.adxFZr/_new  2020-11-10 13:49:03.095349199 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   khangman
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Hangman Game
 License:GPL-2.0-or-later


++ khangman-20.08.2.tar.xz -> khangman-20.08.3.tar.xz ++
/work/SRC/openSUSE:Factory/khangman/khangman-20.08.2.tar.xz 
/work/SRC/openSUSE:Factory/.khangman.new.11331/khangman-20.08.3.tar.xz differ: 
char 27, line 1




commit kiriki for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kiriki for openSUSE:Factory checked 
in at 2020-11-10 13:42:35

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


Package is "kiriki"

Tue Nov 10 13:42:35 2020 rev:103 rq:846696 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kiriki/kiriki.changes2020-10-13 
15:37:36.545169203 +0200
+++ /work/SRC/openSUSE:Factory/.kiriki.new.11331/kiriki.changes 2020-11-10 
13:49:22.311312878 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:31 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kiriki-20.08.2.tar.xz
  kiriki-20.08.2.tar.xz.sig

New:

  kiriki-20.08.3.tar.xz
  kiriki-20.08.3.tar.xz.sig



Other differences:
--
++ kiriki.spec ++
--- /var/tmp/diff_new_pack.xHi7l6/_old  2020-11-10 13:49:22.867311827 +0100
+++ /var/tmp/diff_new_pack.xHi7l6/_new  2020-11-10 13:49:22.879311804 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kiriki
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Yahtzee-like Game
 License:GPL-2.0-or-later


++ kiriki-20.08.2.tar.xz -> kiriki-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiriki-20.08.2/CMakeLists.txt 
new/kiriki-20.08.3/CMakeLists.txt
--- old/kiriki-20.08.2/CMakeLists.txt   2020-10-06 05:31:49.0 +0200
+++ new/kiriki-20.08.3/CMakeLists.txt   2020-11-03 01:39:11.0 +0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "20")
 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(kiriki VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiriki-20.08.2/po/zh_CN/kiriki.po 
new/kiriki-20.08.3/po/zh_CN/kiriki.po
--- old/kiriki-20.08.2/po/zh_CN/kiriki.po   2020-10-06 05:31:48.0 
+0200
+++ new/kiriki-20.08.3/po/zh_CN/kiriki.po   2020-11-03 01:39:10.0 
+0100
@@ -4,7 +4,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:38+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiriki-20.08.2/src/org.kde.kiriki.appdata.xml 
new/kiriki-20.08.3/src/org.kde.kiriki.appdata.xml
--- old/kiriki-20.08.2/src/org.kde.kiriki.appdata.xml   2020-10-03 
14:32:16.0 +0200
+++ new/kiriki-20.08.3/src/org.kde.kiriki.appdata.xml   2020-10-31 
18:19:53.0 +0100
@@ -123,9 +123,9 @@
 kiriki
   
   
+
 
 
 
-
   
 




commit kmines for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kmines for openSUSE:Factory checked 
in at 2020-11-10 13:42:46

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


Package is "kmines"

Tue Nov 10 13:42:46 2020 rev:104 rq:846712 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kmines/kmines.changes2020-10-13 
15:38:19.501199513 +0200
+++ /work/SRC/openSUSE:Factory/.kmines.new.11331/kmines.changes 2020-11-10 
13:49:52.135256505 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:45 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kmines-20.08.2.tar.xz
  kmines-20.08.2.tar.xz.sig

New:

  kmines-20.08.3.tar.xz
  kmines-20.08.3.tar.xz.sig



Other differences:
--
++ kmines.spec ++
--- /var/tmp/diff_new_pack.6UuVCm/_old  2020-11-10 13:49:52.647255537 +0100
+++ /var/tmp/diff_new_pack.6UuVCm/_new  2020-11-10 13:49:52.651255529 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kmines
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Minesweeper-like game
 License:GPL-2.0-or-later


++ kmines-20.08.2.tar.xz -> kmines-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmines-20.08.2/po/cs/kmines.po 
new/kmines-20.08.3/po/cs/kmines.po
--- old/kmines-20.08.2/po/cs/kmines.po  2020-10-06 05:32:08.0 +0200
+++ new/kmines-20.08.3/po/cs/kmines.po  2020-11-03 01:39:26.0 +0100
@@ -1,6 +1,6 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Vít Pelčák , 2011, 2017, 2019.
+# Vít Pelčák , 2011, 2017, 2019, 2020.
 #
 msgid ""
 msgstr ""
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Lokalize 19.08.0\n"
+"X-Generator: Lokalize 20.08.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmines-20.08.2/po/pt_BR/kmines.po 
new/kmines-20.08.3/po/pt_BR/kmines.po
--- old/kmines-20.08.2/po/pt_BR/kmines.po   2020-10-06 05:32:09.0 
+0200
+++ new/kmines-20.08.3/po/pt_BR/kmines.po   2020-11-03 01:39:26.0 
+0100
@@ -8,20 +8,21 @@
 # Mauricio Piacentini , 2007, 2008, 2009.
 # Eliana Megumi Habiro Boaglio , 2008.
 # André Marcelo Alvarenga , 2010, 2016, 2019.
+# Luiz Fernando Ranghetti , 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kmines\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2019-01-18 14:46-0200\n"
-"Last-Translator: André Marcelo Alvarenga \n"
-"Language-Team: Brazilian Portuguese \n"
+"PO-Revision-Date: 2020-10-21 16:03-0300\n"
+"Last-Translator: Luiz Fernando Ranghetti \n"
+"Language-Team: Brazilian Portuguese \n"
 "Language: pt_BR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 18.12.0\n"
+"X-Generator: Lokalize 20.04.3\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -182,7 +183,7 @@
 #: main.cpp:65
 #, kde-format
 msgid "Port to use KGameRenderer"
-msgstr "Modificações para usar o KGameRenderer"
+msgstr "Migração para usar o KGameRenderer"
 
 #: mainwindow.cpp:110
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmines-20.08.2/po/zh_CN/kmines.po 
new/kmines-20.08.3/po/zh_CN/kmines.po
--- old/kmines-20.08.2/po/zh_CN/kmines.po   2020-10-06 05:32:09.0 
+0200
+++ new/kmines-20.08.3/po/zh_CN/kmines.po   2020-11-03 01:39:26.0 
+0100
@@ -10,7 +10,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:39+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




commit kjumpingcube for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kjumpingcube for openSUSE:Factory 
checked in at 2020-11-10 13:42:38

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


Package is "kjumpingcube"

Tue Nov 10 13:42:38 2020 rev:104 rq:846699 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kjumpingcube/kjumpingcube.changes
2020-10-13 15:37:46.681176355 +0200
+++ /work/SRC/openSUSE:Factory/.kjumpingcube.new.11331/kjumpingcube.changes 
2020-11-10 13:49:38.779281750 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:34 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kjumpingcube-20.08.2.tar.xz
  kjumpingcube-20.08.2.tar.xz.sig

New:

  kjumpingcube-20.08.3.tar.xz
  kjumpingcube-20.08.3.tar.xz.sig



Other differences:
--
++ kjumpingcube.spec ++
--- /var/tmp/diff_new_pack.lzDooV/_old  2020-11-10 13:49:39.255280850 +0100
+++ /var/tmp/diff_new_pack.lzDooV/_new  2020-11-10 13:49:39.259280843 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kjumpingcube
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Tactical board game
 License:GPL-2.0-or-later


++ kjumpingcube-20.08.2.tar.xz -> kjumpingcube-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjumpingcube-20.08.2/po/ca/kjumpingcube.po 
new/kjumpingcube-20.08.3/po/ca/kjumpingcube.po
--- old/kjumpingcube-20.08.2/po/ca/kjumpingcube.po  2020-10-06 
05:31:51.0 +0200
+++ new/kjumpingcube-20.08.3/po/ca/kjumpingcube.po  2020-11-03 
01:39:12.0 +0100
@@ -3,7 +3,7 @@
 #
 # Francesc J Devesa i Berenguer , 2000, 2001.
 # Albert Astals Cid , 2003, 2004.
-# Josep Ma. Ferrer , 2005, 2007, 2010, 2013, 2014, 2015, 
2017.
+# Josep Ma. Ferrer , 2005, 2007, 2010, 2013, 2014, 2015, 
2017, 2020.
 # Aleix Pol , 2007.
 # Manuel Tortosa , 2009.
 # Antoni Bella Pérez , 2014, 2016, 2020.
@@ -12,14 +12,14 @@
 "Project-Id-Version: kjumpingcube\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:38+0200\n"
-"PO-Revision-Date: 2020-02-21 19:04+0100\n"
-"Last-Translator: Antoni Bella Pérez \n"
+"PO-Revision-Date: 2020-10-13 20:49+0200\n"
+"Last-Translator: Josep Ma. Ferrer \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 20.03.70\n"
+"X-Generator: Lokalize 20.08.1\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
@@ -262,7 +262,7 @@
 #: kjumpingcube.kcfg:15
 #, kde-format
 msgid "Animation type None (no pauses)."
-msgstr "Sense tipus d'animació (cap pausa)."
+msgstr "Sense tipus d'animació (sense pausa)."
 
 #. i18n: ectx: label, entry (AnimationDelay), group (Game)
 #: kjumpingcube.kcfg:19
@@ -358,13 +358,13 @@
 #: kjumpingcube.kcfg:95
 #, kde-format
 msgid "Pause before each computer move."
-msgstr "Pausa abans de cada moviment de l'ordinador."
+msgstr "Fa una pausa abans de cada moviment de l'ordinador."
 
 #. i18n: ectx: label, entry (PauseForStep), group (Game)
 #: kjumpingcube.kcfg:99
 #, kde-format
 msgid "Pause before each cascade step."
-msgstr "Pausa abans de cada pas en cascada."
+msgstr "Fa una pausa abans de cada pas en cascada."
 
 #. i18n: ectx: ToolBar (mainToolBar)
 #: kjumpingcubeui.rc:9
@@ -487,7 +487,7 @@
 #: settings.ui:298
 #, kde-format
 msgid "Pause before each computer move"
-msgstr "Pausa abans de cada moviment de l'ordinador"
+msgstr "Fa una pausa abans de cada moviment de l'ordinador"
 
 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
 #: settings.ui:309
@@ -583,7 +583,7 @@
 #: settings.ui:581
 #, kde-format
 msgid "Pause before each cascade step"
-msgstr "Pausa abans de cada pas en cascada"
+msgstr "Fa una pausa abans de cada pas en cascada"
 
 #~ msgid "PushButton"
 #~ msgstr "Botó"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kjumpingcube-20.08.2/po/ca@valencia/kjumpingcube.po 
new/kjumpingcube-20.08.3/po/ca@valencia/kjumpingcube.po
--- old/kjumpingcube-20.08.2/po/ca@valencia/kjumpingcube.po 2020-10-06 
05:31:51.0 +0200
+++ new/kjumpingcube-20.08.3/po/ca@valencia/kjumpingcube.po 2020-11-03 
01:39:12.0 +0100
@@ -3,7 +3,7 @@
 #
 # Francesc J Devesa i Berenguer , 2000, 2001.
 # 

commit kimagemapeditor for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kimagemapeditor for openSUSE:Factory 
checked in at 2020-11-10 13:42:24

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


Package is "kimagemapeditor"

Tue Nov 10 13:42:24 2020 rev:49 rq:846689 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kimagemapeditor/kimagemapeditor.changes  
2020-10-13 15:37:19.065156869 +0200
+++ 
/work/SRC/openSUSE:Factory/.kimagemapeditor.new.11331/kimagemapeditor.changes   
2020-11-10 13:49:12.871330721 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:26 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kimagemapeditor-20.08.2.tar.xz
  kimagemapeditor-20.08.2.tar.xz.sig

New:

  kimagemapeditor-20.08.3.tar.xz
  kimagemapeditor-20.08.3.tar.xz.sig



Other differences:
--
++ kimagemapeditor.spec ++
--- /var/tmp/diff_new_pack.zsaJ5j/_old  2020-11-10 13:49:13.567329405 +0100
+++ /var/tmp/diff_new_pack.zsaJ5j/_new  2020-11-10 13:49:13.567329405 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without  lang
 Name:   kimagemapeditor
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:HTML Image Map Editor
 License:GPL-2.0-or-later


++ kimagemapeditor-20.08.2.tar.xz -> kimagemapeditor-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimagemapeditor-20.08.2/CMakeLists.txt 
new/kimagemapeditor-20.08.3/CMakeLists.txt
--- old/kimagemapeditor-20.08.2/CMakeLists.txt  2020-10-06 05:43:17.0 
+0200
+++ new/kimagemapeditor-20.08.3/CMakeLists.txt  2020-11-03 01:48:13.0 
+0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set(RELEASE_SERVICE_VERSION_MAJOR "20")
 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(kimagemapeditor VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kimagemapeditor-20.08.2/org.kde.kimagemapeditor.appdata.xml 
new/kimagemapeditor-20.08.3/org.kde.kimagemapeditor.appdata.xml
--- old/kimagemapeditor-20.08.2/org.kde.kimagemapeditor.appdata.xml 
2020-10-03 14:53:47.0 +0200
+++ new/kimagemapeditor-20.08.3/org.kde.kimagemapeditor.appdata.xml 
2020-10-31 18:39:41.0 +0100
@@ -136,9 +136,9 @@
 kimagemapeditor
   
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimagemapeditor-20.08.2/po/ca/kimagemapeditor.po 
new/kimagemapeditor-20.08.3/po/ca/kimagemapeditor.po
--- old/kimagemapeditor-20.08.2/po/ca/kimagemapeditor.po2020-10-06 
05:43:16.0 +0200
+++ new/kimagemapeditor-20.08.3/po/ca/kimagemapeditor.po2020-11-03 
01:48:11.0 +0100
@@ -10,14 +10,14 @@
 "Project-Id-Version: kimagemapeditor\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-01-13 03:22+0100\n"
-"PO-Revision-Date: 2020-08-05 17:16+0200\n"
+"PO-Revision-Date: 2020-10-14 11:38+0200\n"
 "Last-Translator: Antoni Bella Pérez \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 20.04.3\n"
+"X-Generator: Lokalize 20.08.2\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
@@ -436,12 +436,12 @@
 #: kimagemapeditor.cpp:664
 #, kde-format
 msgid "Move Up"
-msgstr "Amunt"
+msgstr "Mou amunt"
 
 #: kimagemapeditor.cpp:669
 #, kde-format
 msgid "Move Down"
-msgstr "Avall"
+msgstr "Mou avall"
 
 #: kimagemapeditor.cpp:674
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kimagemapeditor-20.08.2/po/ca@valencia/kimagemapeditor.po 
new/kimagemapeditor-20.08.3/po/ca@valencia/kimagemapeditor.po
--- old/kimagemapeditor-20.08.2/po/ca@valencia/kimagemapeditor.po   
2020-10-06 05:43:16.0 +0200
+++ new/kimagemapeditor-20.08.3/po/ca@valencia/kimagemapeditor.po   
2020-11-03 01:48:11.0 +0100
@@ -10,14 +10,14 @@
 "Project-Id-Version: kimagemapeditor\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 

commit kigo for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package kigo for openSUSE:Factory checked in 
at 2020-11-10 13:42:20

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


Package is "kigo"

Tue Nov 10 13:42:20 2020 rev:102 rq:846687 version:20.08.3

Changes:

--- /work/SRC/openSUSE:Factory/kigo/kigo.changes2020-10-13 
15:37:10.761151010 +0200
+++ /work/SRC/openSUSE:Factory/.kigo.new.11331/kigo.changes 2020-11-10 
13:49:05.567344527 +0100
@@ -1,0 +2,9 @@
+Thu Nov  5 22:46:24 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- No code change since 20.08.2
+
+---

Old:

  kigo-20.08.2.tar.xz
  kigo-20.08.2.tar.xz.sig

New:

  kigo-20.08.3.tar.xz
  kigo-20.08.3.tar.xz.sig



Other differences:
--
++ kigo.spec ++
--- /var/tmp/diff_new_pack.WkqdYh/_old  2020-11-10 13:49:06.103343514 +0100
+++ /var/tmp/diff_new_pack.WkqdYh/_new  2020-11-10 13:49:06.107343506 +0100
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:   kigo
-Version:20.08.2
+Version:20.08.3
 Release:0
 Summary:Traditional Chinese Boardgame for KDE
 License:GPL-2.0-or-later


++ kigo-20.08.2.tar.xz -> kigo-20.08.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kigo-20.08.2/po/zh_CN/kigo.po 
new/kigo-20.08.3/po/zh_CN/kigo.po
--- old/kigo-20.08.2/po/zh_CN/kigo.po   2020-10-06 05:31:40.0 +0200
+++ new/kigo-20.08.3/po/zh_CN/kigo.po   2020-11-03 01:39:03.0 +0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-07-13 07:38+0200\n"
-"PO-Revision-Date: 2020-09-23 12:20\n"
+"PO-Revision-Date: 2020-10-08 19:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"




  1   2   3   4   5   6   7   8   9   10   >