[neon/extras/skrooge/Neon/unstable] debian: kf6ify

Carlos De Maine null at kde.org
Sat Feb 1 03:10:14 GMT 2025


Git commit f672b15b8623b388fd9969ed807364679a8c50bf by Carlos De Maine.
Committed on 01/02/2025 at 03:10.
Pushed by carlosdem into branch 'Neon/unstable'.

kf6ify

M  +35   -44   debian/control
M  +6    -8    debian/rules
M  +1    -1    debian/skrooge-common.install

https://invent.kde.org/neon/extras/skrooge/-/commit/f672b15b8623b388fd9969ed807364679a8c50bf

diff --git a/debian/control b/debian/control
index 3085f9d..0bb9437 100644
--- a/debian/control
+++ b/debian/control
@@ -3,54 +3,46 @@ Section: kde
 Priority: optional
 Maintainer: Debian KDE Extras Team <pkg-kde-extras at lists.alioth.debian.org>
 Uploaders: Pino Toscano <pino at debian.org>
-Build-Depends: cmake (>= 3.16.0~),
+Build-Depends: cmake,
                debhelper-compat (= 13),
                dh-python,
-               extra-cmake-modules (>= 1.7.0),
                gettext,
-               libgrantlee5-dev,
-               libkf5activities-dev,
-               libkf5archive-dev,
-               libkf5completion-dev,
-               libkf5config-dev,
-               libkf5configwidgets-dev,
-               libkf5coreaddons-dev,
-               libkf5dbusaddons-dev,
-               libkf5doctools-dev,
-               libkf5guiaddons-dev,
-               libkf5i18n-dev,
-               libkf5iconthemes-dev,
-               libkf5itemviews-dev,
-               libkf5jobwidgets-dev,
-               libkf5kdelibs4support-dev,
-               libkf5kio-dev,
-               libkf5newstuff-dev,
-               libkf5notifications-dev,
-               libkf5notifyconfig-dev,
-               libkf5parts-dev,
-               libkf5runner-dev,
-               libkf5wallet-dev,
-               libkf5widgetsaddons-dev,
-               libkf5windowsystem-dev,
-               libkf5xmlgui-dev,
+               kf6-extra-cmake-modules (>= 1.7.0),
+               plasma-activities-dev,
+               kf6-karchive-dev,
+               kf6-kcolorscheme-dev,
+               kf6-completion-dev,
+               kf6-kconfig-dev,
+               kf6-kconfigwidgets-dev,
+               kf6-kcoreaddons-dev,
+               kf6-kdoctools-dev,
+               kf6-kguiaddons-dev,
+               kf6-ki18n-dev,
+               kf6-kiconthemes-dev,
+               kf6-kitemviews-dev,
+               kf6-kjobwidgets-dev,
+               kf6-kio-dev,
+               kf6-knewstuff-dev,
+               kf6-knotifications-dev,
+               kf6-knotifyconfig-dev,
+               kf6-kparts-dev,
+               kf6-ktexttemplate-dev,
+               kf6-kwallet-dev,
+               kf6-kwidgetsaddons-dev,
+               kf6-kwindowsystem-dev,
+               kf6-kxmlgui-dev,
                libofx-dev,
-               libqca-qt5-2-dev,
-               libqt5svg5-dev (>= 5.12.0~),
-               libqt5svg5-dev (>= 5.3.0),
-               libqt5svg5-dev (>= 5.7.0),
-               libqt5xmlpatterns5-dev,
+               libqca-qt6-2-dev,
                libsqlcipher-dev,
-               pkg-config,
-               pkg-kde-tools (>= 0.15.16),
+               pkgconf,
+               pkg-kde-tools-neon,
                python3:any,
-               qtbase5-dev (>= 5.12.0~),
-               qtbase5-private-dev (>= 5.12.0~),
-               qtdeclarative5-dev (>= 5.12.0~),
-               qtquickcontrols2-5-dev,
-               qttools5-dev (>= 5.12.0~),
-               qtwebengine5-dev,
+               qt6-base-dev,
+               qt6-declarative-dev,
+               qt6-tools-dev,
+               qt6-webengine-dev,
                shared-mime-info
-Standards-Version: 4.6.1
+Standards-Version: 4.6.2
 Rules-Requires-Root: no
 Homepage: https://skrooge.org/
 Vcs-Git: https://salsa.debian.org/qt-kde-team/extras/skrooge.git
@@ -58,9 +50,8 @@ Vcs-Browser: https://salsa.debian.org/qt-kde-team/extras/skrooge
 
 Package: skrooge
 Architecture: any
-Depends: kinit,
-         libqca-qt5-2-plugins,
-         libqt5sql5-sqlite,
+Depends: libqca-qt6-2,
+         qt6-base,
          skrooge-common (= ${source:Version}),
          ${misc:Depends},
          ${shlibs:Depends}
diff --git a/debian/rules b/debian/rules
index 677b8d3..ae2cec2 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,14 +1,12 @@
 #!/usr/bin/make -f
+# SPDX-License-Identifier: LGPL-2.0-or-later
+# # SPDX-FileCopyrightText: 2023 Jonathan Riddell <jr at jriddell.org>
 
-export DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+# Uncomment this to turn on verbose mode.
+export DH_VERBOSE=1
 
 %:
-	dh $@ --with kf5,python3
-
-override_dh_auto_configure:
-	dh_auto_configure --buildsystem=kf5 -- -DSKG_BUILD_TEST=OFF -DSKG_DESIGNER=OFF -DSKG_WEBENGINE=ON -DSKG_WEBKIT=OFF -DCMAKE_LIBRARY_ARCHITECTURE=$(DEB_HOST_MULTIARCH)
-
-override_dh_auto_test:
+	dh $@ --with kf6,python3 --buildsystem kf6
 
 override_dh_python3:
-	dh_python3 -p skrooge-common /usr/share/skrooge
+	dh_python3 -p skrooge-common /usr/share/skrooge
\ No newline at end of file
diff --git a/debian/skrooge-common.install b/debian/skrooge-common.install
index 2b1cef3..84793d2 100644
--- a/debian/skrooge-common.install
+++ b/debian/skrooge-common.install
@@ -1,6 +1,6 @@
 usr/share/doc/
 usr/share/icons/
-usr/share/knotifications5/
+usr/share/knotifications6/
 usr/share/knsrcfiles/
 usr/share/kxmlgui5/
 usr/share/locale/


More information about the Neon-commits mailing list