Hello community,
here is the log from the commit of package kwayland-integration for
openSUSE:Factory checked in at 2016-10-04 15:51:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kwayland-integration (Old)
and /work/SRC/openSUSE:Factory/.kwayland-integration.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kwayland-integration"
Changes:
--------
---
/work/SRC/openSUSE:Factory/kwayland-integration/kwayland-integration.changes
2016-08-29 15:27:40.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.kwayland-integration.new/kwayland-integration.changes
2016-10-04 15:51:10.000000000 +0200
@@ -1,0 +2,29 @@
+Thu Sep 29 16:36:28 UTC 2016 - [email protected]
+
+- Update to 5.8.0
+ * New LTS feature release
+ * For more details please see:
+ https://www.kde.org/announcements/plasma-5.8.0.php
+
+-------------------------------------------------------------------
+Wed Sep 21 09:15:07 UTC 2016 - [email protected]
+
+- Use %{_plasma5_version} again, define it if needed
+
+-------------------------------------------------------------------
+Thu Sep 15 15:53:55 UTC 2016 - [email protected]
+
+- Update to 5.7.95 (Plasma 5.8 Beta)
+ * New LTS feature release
+ * For more details please see:
+ https://www.kde.org/announcements/plasma-5.7.95.php
+
+-------------------------------------------------------------------
+Tue Sep 13 17:42:09 UTC 2016 - [email protected]
+
+- Update to 5.7.5
+ * New bugfix release
+ * For more details please see:
+ https://www.kde.org/announcements/plasma-5.7.5.php
+
+-------------------------------------------------------------------
Old:
----
kwayland-integration-5.7.4.tar.xz
New:
----
kwayland-integration-5.8.0.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kwayland-integration.spec ++++++
--- /var/tmp/diff_new_pack.h8SMvl/_old 2016-10-04 15:51:10.000000000 +0200
+++ /var/tmp/diff_new_pack.h8SMvl/_new 2016-10-04 15:51:10.000000000 +0200
@@ -17,8 +17,9 @@
Name: kwayland-integration
-Version: 5.7.4
+Version: 5.8.0
Release: 0
+%{!?_plasma5_version: %global _plasma5_version %{version}}
Summary: Integration plugins for various KDE frameworks for wayland
windowing system
License: LGPL-2.1+
Group: Development/Libraries/KDE
@@ -28,7 +29,7 @@
BuildRequires: extra-cmake-modules >= 0.0.11
BuildRequires: kf5-filesystem
BuildRequires: cmake(KF5IdleTime) >= 5.12.0
-BuildRequires: cmake(KF5Wayland) >= %{version}
+BuildRequires: cmake(KF5Wayland) >= %{_plasma5_version}
BuildRequires: cmake(KF5WindowSystem) >= 5.12.0
BuildRequires: cmake(Qt5Core) >= 5.4.0
BuildRequires: cmake(Qt5Test) >= 5.4.0
++++++ kwayland-integration-5.7.4.tar.xz -> kwayland-integration-5.8.0.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kwayland-integration-5.7.4/CMakeLists.txt
new/kwayland-integration-5.8.0/CMakeLists.txt
--- old/kwayland-integration-5.7.4/CMakeLists.txt 2016-08-23
14:46:04.000000000 +0200
+++ new/kwayland-integration-5.8.0/CMakeLists.txt 2016-09-29
13:27:42.000000000 +0200
@@ -1,10 +1,10 @@
project(kwayland-integration)
-set(PROJECT_VERSION "5.7.4")
+set(PROJECT_VERSION "5.8.0")
set(PROJECT_VERSION_MAJOR 5)
cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
set(QT_MIN_VERSION "5.4.0")
-set(KF5_MIN_VERSION "5.23.0")
+set(KF5_MIN_VERSION "5.24.0")
find_package(ECM 0.0.11 REQUIRED NO_MODULE)
@@ -20,7 +20,7 @@
include(KDEInstallDirs)
include(KDECMakeSettings)
-include(KDECompilerSettings)
+include(KDECompilerSettings NO_POLICY_SCOPE)
# required frameworks
find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kwayland-integration-5.7.4/src/windowsystem/windowsystem.cpp
new/kwayland-integration-5.8.0/src/windowsystem/windowsystem.cpp
--- old/kwayland-integration-5.7.4/src/windowsystem/windowsystem.cpp
2016-08-23 14:46:04.000000000 +0200
+++ new/kwayland-integration-5.8.0/src/windowsystem/windowsystem.cpp
2016-09-29 13:27:42.000000000 +0200
@@ -435,6 +435,12 @@
case NET::OnScreenDisplay:
role = KWayland::Client::PlasmaShellSurface::Role::OnScreenDisplay;
break;
+ case NET::Notification:
+ role = KWayland::Client::PlasmaShellSurface::Role::Notification;
+ break;
+ case NET::Tooltip:
+ role = KWayland::Client::PlasmaShellSurface::Role::ToolTip;
+ break;
default:
return;
}