Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libkdecoration2 for openSUSE:Factory checked in at 2021-10-13 18:03:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libkdecoration2 (Old) and /work/SRC/openSUSE:Factory/.libkdecoration2.new.2443 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libkdecoration2" Wed Oct 13 18:03:34 2021 rev:115 rq:924710 version:5.23.0 Changes: -------- --- /work/SRC/openSUSE:Factory/libkdecoration2/libkdecoration2.changes 2021-09-16 23:16:25.079906780 +0200 +++ /work/SRC/openSUSE:Factory/.libkdecoration2.new.2443/libkdecoration2.changes 2021-10-13 18:05:36.751230009 +0200 @@ -1,0 +2,24 @@ +Thu Oct 7 13:50:08 UTC 2021 - Fabian Vogt <fab...@ritter-vogt.de> + +- Update to 5.23.0 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/plasma/5/5.23.0 +- No code changes since 5.22.90 +- Add new key + signature to plasma.keyring + +------------------------------------------------------------------- +Thu Sep 16 13:05:03 UTC 2021 - Fabian Vogt <fab...@ritter-vogt.de> + +- Update to 5.22.90 + * New feature release + * For more details please see: + * https://kde.org/announcements/plasma/5/5.22.90 +- Changes since 5.22.5: + * Explicitly set KDE_COMPILERSETTINGS_LEVEL + * Add kdecoration to plasma group for documentation purpose + * Build KDecoration with -DQT_NO_KEYWORDS + * Replace emit with Q_EMIT + * Introduce Decoration::damaged signal + +------------------------------------------------------------------- Old: ---- kdecoration-5.22.5.tar.xz kdecoration-5.22.5.tar.xz.sig New: ---- kdecoration-5.23.0.tar.xz kdecoration-5.23.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libkdecoration2.spec ++++++ --- /var/tmp/diff_new_pack.UDawpl/_old 2021-10-13 18:05:39.247233922 +0200 +++ /var/tmp/diff_new_pack.UDawpl/_new 2021-10-13 18:05:39.247233922 +0200 @@ -17,20 +17,20 @@ %global sover 5 -%global private_sover 8 +%global private_sover 9 %define lname libkdecorations2-%{sover} %define lname_private libkdecorations2private%{private_sover} %bcond_without lang Name: libkdecoration2 -Version: 5.22.5 +Version: 5.23.0 Release: 0 Summary: KDE's window decorations library License: GPL-2.0-or-later Group: System/GUI/KDE URL: http://www.kde.org -Source: https://download.kde.org/stable/plasma/%{version}/kdecoration-%{version}.tar.xz +Source: kdecoration-%{version}.tar.xz %if %{with lang} -Source1: https://download.kde.org/stable/plasma/%{version}/kdecoration-%{version}.tar.xz.sig +Source1: kdecoration-%{version}.tar.xz.sig Source2: plasma.keyring %endif BuildRequires: cmake >= 3.16 ++++++ kdecoration-5.22.5.tar.xz -> kdecoration-5.23.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.22.5/CMakeLists.txt new/kdecoration-5.23.0/CMakeLists.txt --- old/kdecoration-5.22.5/CMakeLists.txt 2021-08-31 13:34:14.000000000 +0200 +++ new/kdecoration-5.23.0/CMakeLists.txt 2021-10-07 13:33:14.000000000 +0200 @@ -1,10 +1,11 @@ cmake_minimum_required(VERSION 3.16) project(decoration-api) -set(PROJECT_VERSION "5.22.5") +set(PROJECT_VERSION "5.23.0") set(QT_MIN_VERSION "5.15.0") set(KF5_MIN_VERSION "5.82") +set(KDE_COMPILERSETTINGS_LEVEL "5.82") find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE) # where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked @@ -46,6 +47,7 @@ add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00) add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054200) +add_definitions(-DQT_NO_KEYWORDS) # Subdirectories add_subdirectory(src) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.22.5/autotests/mockbridge.cpp new/kdecoration-5.23.0/autotests/mockbridge.cpp --- old/kdecoration-5.22.5/autotests/mockbridge.cpp 2021-08-31 13:34:14.000000000 +0200 +++ new/kdecoration-5.23.0/autotests/mockbridge.cpp 2021-10-07 13:33:14.000000000 +0200 @@ -21,9 +21,3 @@ m_lastCreatedSettings = ptr.get(); return std::move(ptr); } - -void MockBridge::update(KDecoration2::Decoration *decoration, const QRect &geometry) -{ - Q_UNUSED(decoration) - Q_UNUSED(geometry) -} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.22.5/autotests/mockbridge.h new/kdecoration-5.23.0/autotests/mockbridge.h --- old/kdecoration-5.22.5/autotests/mockbridge.h 2021-08-31 13:34:14.000000000 +0200 +++ new/kdecoration-5.23.0/autotests/mockbridge.h 2021-10-07 13:33:14.000000000 +0200 @@ -18,7 +18,6 @@ public: std::unique_ptr<KDecoration2::DecoratedClientPrivate> createClient(KDecoration2::DecoratedClient *client, KDecoration2::Decoration *decoration) override; std::unique_ptr<KDecoration2::DecorationSettingsPrivate> settings(KDecoration2::DecorationSettings *parent) override; - void update(KDecoration2::Decoration *decoration, const QRect &geometry) override; MockClient *lastCreatedClient() const { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.22.5/metainfo.yaml new/kdecoration-5.23.0/metainfo.yaml --- old/kdecoration-5.22.5/metainfo.yaml 2021-08-31 13:34:14.000000000 +0200 +++ new/kdecoration-5.23.0/metainfo.yaml 2021-10-07 13:33:14.000000000 +0200 @@ -13,5 +13,6 @@ libraries: - cmake: KDecoration2::KDecoration cmakename: KDecoration2 +group: plasma public_lib: true diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.22.5/po/en_GB/kdecoration.po new/kdecoration-5.23.0/po/en_GB/kdecoration.po --- old/kdecoration-5.22.5/po/en_GB/kdecoration.po 2021-08-31 13:34:19.000000000 +0200 +++ new/kdecoration-5.23.0/po/en_GB/kdecoration.po 2021-10-07 13:33:18.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-05-05 00:20+0000\n" -"PO-Revision-Date: 2021-06-12 14:40+0100\n" +"PO-Revision-Date: 2021-06-12 14:20+0100\n" "Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n" "Language-Team: British English <kde-l10n-en...@kde.org>\n" "Language: en_GB\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.22.5/po/hi/kdecoration.po new/kdecoration-5.23.0/po/hi/kdecoration.po --- old/kdecoration-5.22.5/po/hi/kdecoration.po 2021-08-31 13:34:22.000000000 +0200 +++ new/kdecoration-5.23.0/po/hi/kdecoration.po 2021-10-07 13:33:21.000000000 +0200 @@ -1,13 +1,14 @@ # Copyright (C) YEAR This file is copyright: # This file is distributed under the same license as the kdecoration package. # +# Sameer Singh <lumarzel...@gmail.com>, 2021. # Raghavendra Kamath <ra...@raghukamath.com>, 2021. msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-05-05 00:20+0000\n" -"PO-Revision-Date: 2021-06-29 18:23+0530\n" +"PO-Revision-Date: 2021-06-29 17:56+0530\n" "Last-Translator: Raghavendra Kamath <ra...@raghukamath.com>\n" "Language-Team: kde-hindi\n" "Language: hi\n" @@ -60,7 +61,7 @@ #: decorationbutton.cpp:317 #, kde-format msgid "Context help" -msgstr "????????????????????????????????? ?????????" +msgstr "??????????????????????????? ??????????????????" #: decorationbutton.cpp:320 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.22.5/po/lt/kdecoration.po new/kdecoration-5.23.0/po/lt/kdecoration.po --- old/kdecoration-5.22.5/po/lt/kdecoration.po 2021-08-31 13:34:26.000000000 +0200 +++ new/kdecoration-5.23.0/po/lt/kdecoration.po 2021-10-07 13:33:25.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-05-05 00:20+0000\n" -"PO-Revision-Date: 2019-07-30 23:07+0300\n" +"PO-Revision-Date: 2021-06-15 22:43+0300\n" "Last-Translator: Moo\n" "Language-Team: lt\n" "Language: lt\n" @@ -17,12 +17,12 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" -"X-Generator: Poedit 2.0.6\n" +"X-Generator: Poedit 3.0\n" #: decorationbutton.cpp:299 #, kde-format msgid "More actions for this window" -msgstr "" +msgstr "Daugiau veiksm?? ??iam langui" #: decorationbutton.cpp:301 #, kde-format @@ -75,23 +75,21 @@ msgstr "Rodyti tik lango antra??t??s juost??" #: decorationbutton.cpp:325 -#, fuzzy, kde-format -#| msgid "Don't keep below" +#, kde-format msgid "Don't keep below other windows" -msgstr "Nelaikyti apa??ioje" +msgstr "Nelaikyti po kitais langais" #: decorationbutton.cpp:327 #, kde-format msgid "Keep below other windows" -msgstr "" +msgstr "Laikyti po kitais langais" #: decorationbutton.cpp:330 -#, fuzzy, kde-format -#| msgid "Don't keep above" +#, kde-format msgid "Don't keep above other windows" -msgstr "Nelaikyti vir??uje" +msgstr "Nelaikyti vir?? kit?? lang??" #: decorationbutton.cpp:332 #, kde-format msgid "Keep above other windows" -msgstr "" \ No newline at end of file +msgstr "Laikyti vir?? kit?? lang??" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.22.5/po/sk/kdecoration.po new/kdecoration-5.23.0/po/sk/kdecoration.po --- old/kdecoration-5.22.5/po/sk/kdecoration.po 2021-08-31 13:34:31.000000000 +0200 +++ new/kdecoration-5.23.0/po/sk/kdecoration.po 2021-10-07 13:33:29.000000000 +0200 @@ -6,7 +6,7 @@ "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-05-05 00:20+0000\n" -"PO-Revision-Date: 2021-07-20 16:48+0200\n" +"PO-Revision-Date: 2021-07-20 17:50+0200\n" "Last-Translator: Matej Mrenica <matejm98m...@gmail.com>\n" "Language-Team: Slovak <kde-i18n-...@kde.org>\n" "Language: sk\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.22.5/po/zh_CN/kdecoration.po new/kdecoration-5.23.0/po/zh_CN/kdecoration.po --- old/kdecoration-5.22.5/po/zh_CN/kdecoration.po 2021-08-31 13:34:35.000000000 +0200 +++ new/kdecoration-5.23.0/po/zh_CN/kdecoration.po 2021-10-07 13:33:33.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-05-05 00:20+0000\n" -"PO-Revision-Date: 2021-08-30 11:45\n" +"PO-Revision-Date: 2021-09-27 13:10\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.22.5/src/decoration.cpp new/kdecoration-5.23.0/src/decoration.cpp --- old/kdecoration-5.22.5/src/decoration.cpp 2021-08-31 13:34:14.000000000 +0200 +++ new/kdecoration-5.23.0/src/decoration.cpp 2021-10-07 13:33:14.000000000 +0200 @@ -388,7 +388,7 @@ void Decoration::update(const QRect &r) { - d->bridge->update(this, r.isNull() ? rect() : r); + Q_EMIT damaged(r.isNull() ? rect() : r); } void Decoration::update() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.22.5/src/decoration.h new/kdecoration-5.23.0/src/decoration.h --- old/kdecoration-5.22.5/src/decoration.h 2021-08-31 13:34:14.000000000 +0200 +++ new/kdecoration-5.23.0/src/decoration.h 2021-10-07 13:33:14.000000000 +0200 @@ -199,6 +199,7 @@ void titleBarChanged(); void opaqueChanged(bool); void shadowChanged(const QSharedPointer<DecorationShadow> &shadow); + void damaged(const QRegion ®ion); protected: /** diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.22.5/src/private/CMakeLists.txt new/kdecoration-5.23.0/src/private/CMakeLists.txt --- old/kdecoration-5.22.5/src/private/CMakeLists.txt 2021-08-31 13:34:14.000000000 +0200 +++ new/kdecoration-5.23.0/src/private/CMakeLists.txt 2021-10-07 13:33:14.000000000 +0200 @@ -25,7 +25,7 @@ target_include_directories(kdecorations2private INTERFACE "$<INSTALL_INTERFACE:${KDECORATION2_INCLUDEDIR}>" ) set_target_properties(kdecorations2private PROPERTIES VERSION ${KDECORATION2_VERSION} - SOVERSION 8 + SOVERSION 9 EXPORT_NAME KDecoration2Private ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.22.5/src/private/decorationbridge.h new/kdecoration-5.23.0/src/private/decorationbridge.h --- old/kdecoration-5.22.5/src/private/decorationbridge.h 2021-08-31 13:34:14.000000000 +0200 +++ new/kdecoration-5.23.0/src/private/decorationbridge.h 2021-10-07 13:33:14.000000000 +0200 @@ -40,7 +40,6 @@ ~DecorationBridge() override; virtual std::unique_ptr<DecoratedClientPrivate> createClient(DecoratedClient *client, Decoration *decoration) = 0; - virtual void update(Decoration *decoration, const QRect &geometry) = 0; virtual std::unique_ptr<DecorationSettingsPrivate> settings(DecorationSettings *parent) = 0; protected: ++++++ plasma.keyring ++++++ Binary files /var/tmp/diff_new_pack.UDawpl/_old and /var/tmp/diff_new_pack.UDawpl/_new differ