Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kwayland for openSUSE:Factory 
checked in at 2021-07-16 00:00:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kwayland (Old)
 and      /work/SRC/openSUSE:Factory/.kwayland.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kwayland"

Fri Jul 16 00:00:04 2021 rev:88 rq:905530 version:5.84.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kwayland/kwayland.changes        2021-06-16 
20:35:53.647228016 +0200
+++ /work/SRC/openSUSE:Factory/.kwayland.new.2625/kwayland.changes      
2021-07-16 00:01:56.644819816 +0200
@@ -1,0 +2,13 @@
+Sun Jul  4 07:45:51 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.84.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.84.0
+- Changes since 5.83.0:
+  * Fix build
+  * Remove not necessary forward declaration
+  * Use const'ref
+- Only install the license files once
+
+-------------------------------------------------------------------

Old:
----
  kwayland-5.83.0.tar.xz
  kwayland-5.83.0.tar.xz.sig

New:
----
  kwayland-5.84.0.tar.xz
  kwayland-5.84.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kwayland.spec ++++++
--- /var/tmp/diff_new_pack.UbWGpp/_old  2021-07-16 00:01:57.292814421 +0200
+++ /var/tmp/diff_new_pack.UbWGpp/_new  2021-07-16 00:01:57.292814421 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.83
+%define _tar_path 5.84
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:           kwayland
-Version:        5.83.0
+Version:        5.84.0
 Release:        0
 Summary:        KDE Wayland library
 License:        LGPL-2.1-or-later
@@ -90,7 +90,6 @@
 %{_kf5_libdir}/libKF5WaylandServer.so.*
 
 %files devel
-%license LICENSES/*
 %{_kf5_includedir}/
 %{_kf5_libdir}/cmake/KF5Wayland/
 %{_kf5_libdir}/libKF5WaylandClient.so


++++++ kwayland-5.83.0.tar.xz -> kwayland-5.84.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/CMakeLists.txt 
new/kwayland-5.84.0/CMakeLists.txt
--- old/kwayland-5.83.0/CMakeLists.txt  2021-06-05 10:59:55.000000000 +0200
+++ new/kwayland-5.84.0/CMakeLists.txt  2021-06-28 00:22:41.000000000 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.83.0") # handled by release scripts
+set(KF_VERSION "5.84.0") # handled by release scripts
 project(KWayland VERSION ${KF_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.83.0  NO_MODULE)
+find_package(ECM 5.84.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake/Modules)
@@ -29,6 +29,8 @@
                         PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5WaylandConfigVersion.cmake"
                         SOVERSION 5)
 
+set(CMAKE_C_STANDARD 99)
+
 # Dependencies
 set(REQUIRED_QT_VERSION 5.15.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Concurrent Gui 
WaylandClient)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/client/blur.h 
new/kwayland-5.84.0/src/client/blur.h
--- old/kwayland-5.83.0/src/client/blur.h       2021-06-05 10:59:55.000000000 
+0200
+++ new/kwayland-5.84.0/src/client/blur.h       2021-06-28 00:22:41.000000000 
+0200
@@ -20,8 +20,6 @@
 struct org_kde_kwin_blur;
 struct org_kde_kwin_blur_manager;
 
-class QMarginsF;
-class QWindow;
 
 namespace KWayland
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/client/fakeinput.h 
new/kwayland-5.84.0/src/client/fakeinput.h
--- old/kwayland-5.83.0/src/client/fakeinput.h  2021-06-05 10:59:55.000000000 
+0200
+++ new/kwayland-5.84.0/src/client/fakeinput.h  2021-06-28 00:22:41.000000000 
+0200
@@ -17,8 +17,6 @@
 namespace Client
 {
 class EventQueue;
-class FakeInputTimeout;
-class Seat;
 
 /**
  * @short Wrapper for the org_kde_kwin_fake_input interface.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/client/outputmanagement.h 
new/kwayland-5.84.0/src/client/outputmanagement.h
--- old/kwayland-5.83.0/src/client/outputmanagement.h   2021-06-05 
10:59:55.000000000 +0200
+++ new/kwayland-5.84.0/src/client/outputmanagement.h   2021-06-28 
00:22:41.000000000 +0200
@@ -18,7 +18,6 @@
 namespace Client
 {
 class EventQueue;
-class OutputDevice;
 class OutputConfiguration;
 
 /**
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/client/plasmawindowmanagement.h 
new/kwayland-5.84.0/src/client/plasmawindowmanagement.h
--- old/kwayland-5.83.0/src/client/plasmawindowmanagement.h     2021-06-05 
10:59:55.000000000 +0200
+++ new/kwayland-5.84.0/src/client/plasmawindowmanagement.h     2021-06-28 
00:22:41.000000000 +0200
@@ -23,7 +23,6 @@
 class PlasmaWindow;
 class PlasmaWindowModel;
 class Surface;
-class PlasmaVirtualDesktop;
 
 /**
  * @short Wrapper for the org_kde_plasma_window_management interface.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/client/shadow.h 
new/kwayland-5.84.0/src/client/shadow.h
--- old/kwayland-5.83.0/src/client/shadow.h     2021-06-05 10:59:55.000000000 
+0200
+++ new/kwayland-5.84.0/src/client/shadow.h     2021-06-28 00:22:41.000000000 
+0200
@@ -19,7 +19,6 @@
 struct org_kde_kwin_shadow_manager;
 
 class QMarginsF;
-class QWindow;
 
 namespace KWayland
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/client/textinput.h 
new/kwayland-5.84.0/src/client/textinput.h
--- old/kwayland-5.83.0/src/client/textinput.h  2021-06-05 10:59:55.000000000 
+0200
+++ new/kwayland-5.84.0/src/client/textinput.h  2021-06-28 00:22:41.000000000 
+0200
@@ -19,7 +19,6 @@
 namespace Client
 {
 class EventQueue;
-class TextInputUnstableV0;
 class Surface;
 class Seat;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/client/xdgforeign_p.h 
new/kwayland-5.84.0/src/client/xdgforeign_p.h
--- old/kwayland-5.83.0/src/client/xdgforeign_p.h       2021-06-05 
10:59:55.000000000 +0200
+++ new/kwayland-5.84.0/src/client/xdgforeign_p.h       2021-06-28 
00:22:41.000000000 +0200
@@ -13,8 +13,6 @@
 {
 namespace Client
 {
-class XdgExportedUnstableV2;
-class XdgImportedUnstableV2;
 
 class Q_DECL_HIDDEN XdgExporter::Private
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/client/xdgforeign_v2.h 
new/kwayland-5.84.0/src/client/xdgforeign_v2.h
--- old/kwayland-5.83.0/src/client/xdgforeign_v2.h      2021-06-05 
10:59:55.000000000 +0200
+++ new/kwayland-5.84.0/src/client/xdgforeign_v2.h      2021-06-28 
00:22:41.000000000 +0200
@@ -22,8 +22,6 @@
 {
 namespace Client
 {
-class EventQueue;
-class Surface;
 class XdgExportedUnstableV2;
 class XdgImportedUnstableV2;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/server/datadevice_interface.h 
new/kwayland-5.84.0/src/server/datadevice_interface.h
--- old/kwayland-5.83.0/src/server/datadevice_interface.h       2021-06-05 
10:59:55.000000000 +0200
+++ new/kwayland-5.84.0/src/server/datadevice_interface.h       2021-06-28 
00:22:41.000000000 +0200
@@ -17,7 +17,6 @@
 namespace Server
 {
 class DataDeviceManagerInterface;
-class DataOfferInterface;
 class DataSourceInterface;
 class SeatInterface;
 class SurfaceInterface;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/server/display.h 
new/kwayland-5.84.0/src/server/display.h
--- old/kwayland-5.83.0/src/server/display.h    2021-06-05 10:59:55.000000000 
+0200
+++ new/kwayland-5.84.0/src/server/display.h    2021-06-28 00:22:41.000000000 
+0200
@@ -45,7 +45,6 @@
 class FakeInputInterface;
 class OutputInterface;
 class OutputDeviceInterface;
-class OutputConfigurationInterface;
 class OutputManagementInterface;
 class PlasmaShellInterface;
 class PlasmaWindowManagementInterface;
@@ -60,7 +59,6 @@
 class SubCompositorInterface;
 enum class TextInputInterfaceVersion;
 class TextInputManagerInterface;
-class XdgShellV5Interface;
 enum class XdgShellInterfaceVersion;
 class XdgShellInterface;
 enum class RelativePointerInterfaceVersion;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/server/idleinhibit_interface.h 
new/kwayland-5.84.0/src/server/idleinhibit_interface.h
--- old/kwayland-5.83.0/src/server/idleinhibit_interface.h      2021-06-05 
10:59:55.000000000 +0200
+++ new/kwayland-5.84.0/src/server/idleinhibit_interface.h      2021-06-28 
00:22:41.000000000 +0200
@@ -15,7 +15,6 @@
 {
 namespace Server
 {
-class Display;
 
 /**
  * Enum describing the interface versions the IdleInhibitManagerInterface can 
support.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/server/plasmashell_interface.h 
new/kwayland-5.84.0/src/server/plasmashell_interface.h
--- old/kwayland-5.83.0/src/server/plasmashell_interface.h      2021-06-05 
10:59:55.000000000 +0200
+++ new/kwayland-5.84.0/src/server/plasmashell_interface.h      2021-06-28 
00:22:41.000000000 +0200
@@ -13,7 +13,6 @@
 #include "global.h"
 #include "resource.h"
 
-class QSize;
 struct wl_resource;
 
 namespace KWayland
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kwayland-5.83.0/src/server/plasmawindowmanagement_interface.h 
new/kwayland-5.84.0/src/server/plasmawindowmanagement_interface.h
--- old/kwayland-5.83.0/src/server/plasmawindowmanagement_interface.h   
2021-06-05 10:59:55.000000000 +0200
+++ new/kwayland-5.84.0/src/server/plasmawindowmanagement_interface.h   
2021-06-28 00:22:41.000000000 +0200
@@ -15,7 +15,6 @@
 #include "global.h"
 #include "resource.h"
 
-class QSize;
 
 namespace KWayland
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kwayland-5.83.0/src/server/qtsurfaceextension_interface.h 
new/kwayland-5.84.0/src/server/qtsurfaceextension_interface.h
--- old/kwayland-5.83.0/src/server/qtsurfaceextension_interface.h       
2021-06-05 10:59:55.000000000 +0200
+++ new/kwayland-5.84.0/src/server/qtsurfaceextension_interface.h       
2021-06-28 00:22:41.000000000 +0200
@@ -13,7 +13,6 @@
 #include "global.h"
 #include "resource.h"
 
-class QSize;
 struct wl_resource;
 
 namespace KWayland
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kwayland-5.83.0/src/server/relativepointer_interface.h 
new/kwayland-5.84.0/src/server/relativepointer_interface.h
--- old/kwayland-5.83.0/src/server/relativepointer_interface.h  2021-06-05 
10:59:55.000000000 +0200
+++ new/kwayland-5.84.0/src/server/relativepointer_interface.h  2021-06-28 
00:22:41.000000000 +0200
@@ -14,7 +14,6 @@
 {
 namespace Server
 {
-class Display;
 
 enum class RelativePointerInterfaceVersion {
     /**
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kwayland-5.83.0/src/server/xdgshell_stable_interface_p.h 
new/kwayland-5.84.0/src/server/xdgshell_stable_interface_p.h
--- old/kwayland-5.83.0/src/server/xdgshell_stable_interface_p.h        
2021-06-05 10:59:55.000000000 +0200
+++ new/kwayland-5.84.0/src/server/xdgshell_stable_interface_p.h        
2021-06-28 00:22:41.000000000 +0200
@@ -19,8 +19,6 @@
 namespace Server
 {
 class Display;
-class OutputInterface;
-class SeatInterface;
 class SurfaceInterface;
 class XdgTopLevelStableInterface;
 class XdgPopupStableInterface;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/server/xdgshell_v5_interface_p.h 
new/kwayland-5.84.0/src/server/xdgshell_v5_interface_p.h
--- old/kwayland-5.83.0/src/server/xdgshell_v5_interface_p.h    2021-06-05 
10:59:55.000000000 +0200
+++ new/kwayland-5.84.0/src/server/xdgshell_v5_interface_p.h    2021-06-28 
00:22:41.000000000 +0200
@@ -19,8 +19,6 @@
 namespace Server
 {
 class Display;
-class OutputInterface;
-class SeatInterface;
 class SurfaceInterface;
 class XdgPopupV5Interface;
 class XdgSurfaceV5Interface;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/server/xdgshell_v6_interface_p.h 
new/kwayland-5.84.0/src/server/xdgshell_v6_interface_p.h
--- old/kwayland-5.83.0/src/server/xdgshell_v6_interface_p.h    2021-06-05 
10:59:55.000000000 +0200
+++ new/kwayland-5.84.0/src/server/xdgshell_v6_interface_p.h    2021-06-28 
00:22:41.000000000 +0200
@@ -19,8 +19,6 @@
 namespace Server
 {
 class Display;
-class OutputInterface;
-class SeatInterface;
 class SurfaceInterface;
 class XdgTopLevelV6Interface;
 class XdgPopupV6Interface;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwayland-5.83.0/src/tools/generator.cpp 
new/kwayland-5.84.0/src/tools/generator.cpp
--- old/kwayland-5.83.0/src/tools/generator.cpp 2021-06-05 10:59:55.000000000 
+0200
+++ new/kwayland-5.84.0/src/tools/generator.cpp 2021-06-28 00:22:41.000000000 
+0200
@@ -160,7 +160,7 @@
 
 bool Request::isFactory() const
 {
-    for (const auto a : m_arguments) {
+    for (const auto &a : m_arguments) {
         if (a.type() == Argument::Type::NewId) {
             return true;
         }

Reply via email to