commit: 819448b0636727e02b52381eaa95a763fd713636
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 13 16:24:29 2026 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Jan 13 19:58:10 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=819448b0
kde-plasma/print-manager: 6.5.5 version bump
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
kde-plasma/print-manager/Manifest | 1 +
.../print-manager/print-manager-6.5.5.ebuild | 66 ++++++++++++++++++++++
2 files changed, 67 insertions(+)
diff --git a/kde-plasma/print-manager/Manifest
b/kde-plasma/print-manager/Manifest
index b368b9c83d4d..c8f41309fde6 100644
--- a/kde-plasma/print-manager/Manifest
+++ b/kde-plasma/print-manager/Manifest
@@ -1 +1,2 @@
DIST print-manager-6.5.4.tar.xz 380732 BLAKE2B
46f8af194e93a3d9dc7e16911bc931af65c2b4ccc40a80ad7199ecbe1bd4d48de8369cc5ac7961505d19f09b3d38814cf8f74f1c410729b1d5fa1f89714ae96d
SHA512
71d290f2084cb5c8116cd72005afd6faeff922147e582483947e151856a0a522ad37b2d1eda93bde31192ded17d4676b4a012d5ae6cadbf2b682e92fd7b1333b
+DIST print-manager-6.5.5.tar.xz 381168 BLAKE2B
e13be558ba359c1da223fe7dc34148f385df5b2f7743167fce715f937026bb889812921a22aa2da5cc91a3ba9c2d9ff9f3c5c9ea54cc92c69e01e1442cfbe53e
SHA512
9809dcaba12b120cf307377fca578f4c1f7ea624773dd80bcd315d4b8bdedfe72c423526bc553196394a216e917f13971701dec9be4948eb90045dbd802aec07
diff --git a/kde-plasma/print-manager/print-manager-6.5.5.ebuild
b/kde-plasma/print-manager/print-manager-6.5.5.ebuild
new file mode 100644
index 000000000000..2fa6f3a9cfa2
--- /dev/null
+++ b/kde-plasma/print-manager/print-manager-6.5.5.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+KFMIN=6.18.0
+QTMIN=6.10.1
+inherit ecm plasma.kde.org xdg
+
+DESCRIPTION="Manage CUPS print jobs and printers in Plasma"
+
+LICENSE="GPL-2" # TODO: CHECK
+SLOT="6"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="+gtk"
+
+DEPEND="
+ >=dev-qt/qt5compat-${QTMIN}:6
+ >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,network,widgets]
+ >=dev-qt/qtdeclarative-${QTMIN}:6
+ >=kde-frameworks/kcmutils-${KFMIN}:6
+ >=kde-frameworks/kconfig-${KFMIN}:6
+ >=kde-frameworks/kconfigwidgets-${KFMIN}:6
+ >=kde-frameworks/kcoreaddons-${KFMIN}:6
+ >=kde-frameworks/kdbusaddons-${KFMIN}:6
+ >=kde-frameworks/ki18n-${KFMIN}:6
+ >=kde-frameworks/kio-${KFMIN}:6
+ >=kde-frameworks/kirigami-${KFMIN}:6
+ >=kde-frameworks/knotifications-${KFMIN}:6
+ >=kde-frameworks/kservice-${KFMIN}:6
+ >=kde-frameworks/kwidgetsaddons-${KFMIN}:6
+ >=kde-frameworks/kwindowsystem-${KFMIN}:6
+ >=kde-plasma/libplasma-${KDE_CATV}:6
+ >=net-print/cups-2.4
+"
+RDEPEND="${DEPEND}
+ !<kde-plasma/print-manager-23.08.5-r100:5
+ >=kde-frameworks/kdeclarative-${KFMIN}:6
+ gtk? ( app-admin/system-config-printer )
+"
+BDEPEND=">=kde-frameworks/kcmutils-${KFMIN}:6"
+
+src_configure() {
+ local mycmakeargs=(
+ -DCMAKE_DISABLE_FIND_PACKAGE_PackageKitQt6=ON # not packaged
+ )
+
+ ecm_src_configure
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+
+ if [[ -z "${REPLACING_VERSIONS}" ]] && ! use gtk ; then
+ ewarn "By switching off \"gtk\" USE flag, you have chosen to do
without"
+ ewarn "an important, though optional, runtime dependency:"
+ ewarn
+ ewarn "app-admin/system-config-printer"
+ ewarn
+ ewarn "${PN} will work nevertheless, but is going to be less
comfortable"
+ ewarn "and will show the following error status during runtime:"
+ ewarn
+ ewarn "\"Failed to group devices: 'The name
org.fedoraproject.Config.Printing"
+ ewarn "was not provided by any .service files'\""
+ fi
+}