[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#1107653: unblock: qqc2-breeze-style/6.3.5-1



Package: release.debian.org
Severity: normal
X-Debbugs-Cc: qqc2-breeze-style@packages.debian.org, Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Control: affects -1 + src:qqc2-breeze-style
User: release.debian.org@packages.debian.org
Usertags: unblock

Dear Release Team,

please unblock package qqc2-breeze-style.

[ Reason ]
It contains the following changes:
* New upstream release (6.3.5).
  - Kcm: When adding a printer/group, allow the ability to set as default.
  - Revert "kcm: don't assign undefined to component".

[ Tests ]
- No regression spotted after daily driving Plasma for several days.

[ Risks ]
Only backport of upstream commits that apply cleanly. Further fixes can
easily be backported or the changes reverted.

[ Checklist ]
  [x] all changes are documented in the d/changelog
  [x] I reviewed all changes and I approve them
  [x] attach debdiff against the package in testing


Thanks!

unblock qqc2-breeze-style/6.3.5-1
diff -Nru qqc2-breeze-style-6.3.4/CMakeLists.txt qqc2-breeze-style-6.3.5/CMakeLists.txt
--- qqc2-breeze-style-6.3.4/CMakeLists.txt	2025-04-02 05:40:22.000000000 +0200
+++ qqc2-breeze-style-6.3.5/CMakeLists.txt	2025-05-06 20:01:23.000000000 +0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.16)
 
 project(qqc2-breeze-style)
-set(PROJECT_VERSION "6.3.4")
+set(PROJECT_VERSION "6.3.5")
 
 set(QT_MIN_VERSION "6.7.0")
 set(KF6_MIN_VERSION "6.10.0")
@@ -43,16 +43,12 @@
     find_package(Qt6 ${QT_MIN_VERSION} REQUIRED COMPONENTS DBus)
 endif()
 
-find_package(KF6 ${KF6_MIN_VERSION} REQUIRED COMPONENTS GuiAddons Config KirigamiPlatform CoreAddons ColorScheme QuickCharts IconThemes)
+find_package(KF6 ${KF6_MIN_VERSION} REQUIRED COMPONENTS GuiAddons Config KirigamiPlatform CoreAddons ColorScheme IconThemes)
 
 if (NOT APPLE AND NOT WIN32)
     find_package(X11)
 endif()
 
-set_package_properties(QuickCharts PROPERTIES DESCRIPTION "KF6 QuickCharts framework"
-                       TYPE REQUIRED
-                       PURPOSE "Used to implement the BusyIndicator style"
-                      )
 set_package_properties(IconThemes PROPERTIES DESCRIPTION "KF6 IconThemes framework"
                        TYPE OPTIONAL
                        PURPOSE "Optional integration of Kirigami with KIconLoader icons handling for a better integration with Plasma Desktop"
diff -Nru qqc2-breeze-style-6.3.4/debian/changelog qqc2-breeze-style-6.3.5/debian/changelog
--- qqc2-breeze-style-6.3.4/debian/changelog	2025-04-03 01:00:40.000000000 +0200
+++ qqc2-breeze-style-6.3.5/debian/changelog	2025-05-19 00:58:38.000000000 +0200
@@ -1,3 +1,12 @@
+qqc2-breeze-style (6.3.5-1) unstable; urgency=medium
+
+  [ Aurélien COUDERC ]
+  * New upstream release (6.3.5).
+    - Kcm: When adding a printer/group, allow the ability to set as default.
+    - Revert "kcm: don't assign undefined to component".
+
+ -- Aurélien COUDERC <coucouf@debian.org>  Mon, 19 May 2025 00:58:38 +0200
+
 qqc2-breeze-style (6.3.4-1) unstable; urgency=medium
 
   [ Patrick Franz ]
diff -Nru qqc2-breeze-style-6.3.4/.kde-ci.yml qqc2-breeze-style-6.3.5/.kde-ci.yml
--- qqc2-breeze-style-6.3.4/.kde-ci.yml	2025-04-02 05:40:22.000000000 +0200
+++ qqc2-breeze-style-6.3.5/.kde-ci.yml	2025-05-06 20:01:23.000000000 +0200
@@ -11,7 +11,6 @@
     'frameworks/kcoreaddons': '@latest-kf6'
     'frameworks/kguiaddons': '@latest-kf6'
     'frameworks/kirigami': '@latest-kf6'
-    'frameworks/kquickcharts': '@latest-kf6'
     'frameworks/kiconthemes': '@latest-kf6'
 
 Options:
diff -Nru qqc2-breeze-style-6.3.4/QQC2BreezeStyleConfig.cmake.in qqc2-breeze-style-6.3.5/QQC2BreezeStyleConfig.cmake.in
--- qqc2-breeze-style-6.3.4/QQC2BreezeStyleConfig.cmake.in	2025-04-02 05:40:22.000000000 +0200
+++ qqc2-breeze-style-6.3.5/QQC2BreezeStyleConfig.cmake.in	2025-05-06 20:01:23.000000000 +0200
@@ -1,7 +1,6 @@
 @PACKAGE_INIT@
 
 include(CMakeFindDependencyMacro)
-find_dependency(KF6QuickCharts @KF6_MIN_VERSION@)
 
 if (NOT @BUILD_SHARED_LIBS@)
     find_dependency(KF6IconThemes @KF6_MIN_VERSION@)
diff -Nru qqc2-breeze-style-6.3.4/style/qtquickcontrols/BusyIndicator.qml qqc2-breeze-style-6.3.5/style/qtquickcontrols/BusyIndicator.qml
--- qqc2-breeze-style-6.3.4/style/qtquickcontrols/BusyIndicator.qml	2025-04-02 05:40:22.000000000 +0200
+++ qqc2-breeze-style-6.3.5/style/qtquickcontrols/BusyIndicator.qml	2025-05-06 20:01:23.000000000 +0200
@@ -7,7 +7,6 @@
 import QtQuick
 import QtQuick.Templates as T
 import org.kde.kirigami as Kirigami
-import org.kde.quickcharts as Charts
 
 import org.kde.breeze.impl as Impl
 
diff -Nru qqc2-breeze-style-6.3.4/style/qtquickcontrols/CMakeLists.txt qqc2-breeze-style-6.3.5/style/qtquickcontrols/CMakeLists.txt
--- qqc2-breeze-style-6.3.4/style/qtquickcontrols/CMakeLists.txt	2025-04-02 05:40:22.000000000 +0200
+++ qqc2-breeze-style-6.3.5/style/qtquickcontrols/CMakeLists.txt	2025-05-06 20:01:23.000000000 +0200
@@ -5,7 +5,6 @@
     "QtQuick.Controls"
     "QtQuick.Window"
     "org.kde.kirigami"
-    "org.kde.quickcharts"
     "org.kde.breeze.impl"
     "org.kde.guiaddons"
 )

Reply to: