Hello community,
here is the log from the commit of package plasma5-pk-updates for
openSUSE:Factory checked in at 2016-08-29 14:29:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasma5-pk-updates (Old)
and /work/SRC/openSUSE:Factory/.plasma5-pk-updates.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma5-pk-updates"
Changes:
--------
--- /work/SRC/openSUSE:Factory/plasma5-pk-updates/plasma5-pk-updates.changes
2016-02-22 08:56:07.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.plasma5-pk-updates.new/plasma5-pk-updates.changes
2016-08-29 14:29:59.000000000 +0200
@@ -1,0 +2,11 @@
+Mon Aug 15 10:47:01 UTC 2016 - [email protected]
+
+- Add upstream commits fix-typo-in-icon-name.patch and
+ use-new-breeze-icons.patch
+
+-------------------------------------------------------------------
+Fri Aug 12 23:43:51 UTC 2016 - [email protected]
+
+- Adjust filelist for the plasmoid appdata, installed with KF > 5.25.0
+
+-------------------------------------------------------------------
New:
----
fix-typo-in-icon-name.patch
use-new-breeze-icons.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ plasma5-pk-updates.spec ++++++
--- /var/tmp/diff_new_pack.yONsXW/_old 2016-08-29 14:30:03.000000000 +0200
+++ /var/tmp/diff_new_pack.yONsXW/_new 2016-08-29 14:30:03.000000000 +0200
@@ -30,15 +30,19 @@
Patch1: change-refresh-logic.patch
# PATCH-FIX-UPSTREAM use-native-plasma-components.patch boo#953669, kde#359308
-- fixes problems with dark Plasma themes
Patch2: use-native-plasma-components.patch
+# PATCH-FIX-UPSTREAM use-new-breeze-icons.patch -- use less misleading icons
+Patch3: use-new-breeze-icons.patch
+# PATCH-FIX-UPSTREAM fix-typo-in-icon-name.patch -- fix typo in above patch
+Patch4: fix-typo-in-icon-name.patch
BuildRequires: PackageKit-Qt5-devel
BuildRequires: cmake >= 3.0
BuildRequires: extra-cmake-modules >= 1.3.0
-BuildRequires: kcoreaddons-devel
-BuildRequires: kdelibs4support-devel
-BuildRequires: ki18n-devel
-BuildRequires: kiconthemes-devel
-BuildRequires: knotifications-devel
-BuildRequires: plasma-framework-devel
+BuildRequires: kcoreaddons-devel >= 5.25.0
+BuildRequires: kdelibs4support-devel >= 5.25.0
+BuildRequires: ki18n-devel >= 5.25.0
+BuildRequires: kiconthemes-devel >= 5.25.0
+BuildRequires: knotifications-devel >= 5.25.0
+BuildRequires: plasma-framework-devel >= 5.25.0
BuildRequires: pkgconfig(Qt5Core)
BuildRequires: pkgconfig(Qt5DBus)
BuildRequires: pkgconfig(Qt5Gui)
@@ -62,6 +66,8 @@
%patch0 -p1
%patch1 -p1
%patch2 -p1
+%patch3 -p1
+%patch4 -p1
echo "ki18n_install(po)" >> CMakeLists.txt
%build
@@ -82,5 +88,6 @@
%{_kf5_qmldir}/
%{_kf5_plasmadir}/
%{_kf5_servicesdir}/
+%{_kf5_appstreamdir}/
%changelog
++++++ fix-typo-in-icon-name.patch ++++++
>From 9662b9c5d83ad0188803830d7cf9a96a2db0d114 Mon Sep 17 00:00:00 2001
From: Fabian Vogt <[email protected]>
Date: Mon, 15 Aug 2016 11:40:31 +0100
Subject: [PATCH 4/4] Fix typo in icon name
Introduced in commit 9e236ec5d4d28d7498dfcc830a95590dececcf02
REVIEW: 128682
---
src/declarative/pkupdates.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/declarative/pkupdates.cpp b/src/declarative/pkupdates.cpp
index 324387f..6083d22 100644
--- a/src/declarative/pkupdates.cpp
+++ b/src/declarative/pkupdates.cpp
@@ -98,7 +98,7 @@ bool PkUpdates::isSystemUpToDate() const
QString PkUpdates::iconName() const
{
if (securityCount() > 0) {
- return "update-hight";
+ return "update-high";
} else if (importantCount() > 0) {
return "update-medium";
} else if (count() > 0) {
--
2.9.2
++++++ use-new-breeze-icons.patch ++++++
>From 9e236ec5d4d28d7498dfcc830a95590dececcf02 Mon Sep 17 00:00:00 2001
From: Jan Grulich <[email protected]>
Date: Mon, 29 Feb 2016 14:34:06 +0100
Subject: [PATCH 1/4] Use new breeze icons
---
src/declarative/pkupdates.cpp | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/src/declarative/pkupdates.cpp b/src/declarative/pkupdates.cpp
index f1e013f..324387f 100644
--- a/src/declarative/pkupdates.cpp
+++ b/src/declarative/pkupdates.cpp
@@ -97,12 +97,15 @@ bool PkUpdates::isSystemUpToDate() const
QString PkUpdates::iconName() const
{
- if (securityCount() > 0)
- return "security-low";
- else if (importantCount() > 0)
- return "security-medium";
-
- return "security-high";
+ if (securityCount() > 0) {
+ return "update-hight";
+ } else if (importantCount() > 0) {
+ return "update-medium";
+ } else if (count() > 0) {
+ return "update-low";
+ } else {
+ return "update-none";
+ }
}
QString PkUpdates::message() const
--
2.9.2