summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2023-04-15 18:20:25 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2023-04-15 21:39:31 +0200
commit737d31ce64b1512c59137b30c0da2354da44e8dd (patch)
tree77d666c48bacc038ebf6faf52c243e9bfb6e961d
parentfc8baa4c8ab8cc8c1e83680993230587b33e2a15 (diff)
downloadkde-737d31ce64b1512c59137b30c0da2354da44e8dd.tar.gz
kde-737d31ce64b1512c59137b30c0da2354da44e8dd.tar.bz2
kde-737d31ce64b1512c59137b30c0da2354da44e8dd.zip
kde-apps/print-manager: 23.04.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-apps/print-manager/Manifest1
-rw-r--r--kde-apps/print-manager/print-manager-23.04.0.ebuild62
2 files changed, 63 insertions, 0 deletions
diff --git a/kde-apps/print-manager/Manifest b/kde-apps/print-manager/Manifest
index a074fceb948..92984c3ecfd 100644
--- a/kde-apps/print-manager/Manifest
+++ b/kde-apps/print-manager/Manifest
@@ -1 +1,2 @@
DIST print-manager-23.03.90.tar.xz 288852 BLAKE2B d12d84bb4c4280da4ba02a6135fe0c000ffe69d498614c4d6cf19ca720fab9880ad97f79432b319a702483ea39e0e6785f5f4e0ac65a33c253025181c977b496 SHA512 01e8b081acae267e3403d3e5d72f29b70782b6d8d21c8747cd30f0ff2ce052674b0af221a9a3372b1d056050f6bf8e4e89a4c58c90e4a0ec2bbd3a1c449325ea
+DIST print-manager-23.04.0.tar.xz 288928 BLAKE2B 896809231728a92ee9234562ab608b143f1e9e97492b834a04794b6f8a0344feae40821416d9126352f1e4537b0397c44663dd18b189c4167b97df6a51202288 SHA512 2c125ac0a5ddf2f675f73d957641bf6f9f06f5fe2d401481cb11af9153114b6250e5f5b54a56f45da2d01062b6281abf0185b0cfe88cbd7deacc56e1b9a9adfe
diff --git a/kde-apps/print-manager/print-manager-23.04.0.ebuild b/kde-apps/print-manager/print-manager-23.04.0.ebuild
new file mode 100644
index 00000000000..bda3cd91a4f
--- /dev/null
+++ b/kde-apps/print-manager/print-manager-23.04.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+KFMIN=5.104.0
+QTMIN=5.15.5
+inherit ecm gear.kde.org
+
+DESCRIPTION="Manage print jobs and printers in Plasma"
+
+LICENSE="GPL-2" # TODO: CHECK
+SLOT="5"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="+gtk"
+
+DEPEND="
+ >=dev-qt/qtdbus-${QTMIN}:5
+ >=dev-qt/qtdeclarative-${QTMIN}:5
+ >=dev-qt/qtgui-${QTMIN}:5
+ >=dev-qt/qtnetwork-${QTMIN}:5
+ >=dev-qt/qtwidgets-${QTMIN}:5
+ >=kde-frameworks/kcmutils-${KFMIN}:5
+ >=kde-frameworks/kconfig-${KFMIN}:5
+ >=kde-frameworks/kconfigwidgets-${KFMIN}:5
+ >=kde-frameworks/kcoreaddons-${KFMIN}:5
+ >=kde-frameworks/kdbusaddons-${KFMIN}:5
+ >=kde-frameworks/ki18n-${KFMIN}:5
+ >=kde-frameworks/kiconthemes-${KFMIN}:5
+ >=kde-frameworks/kio-${KFMIN}:5
+ >=kde-frameworks/knotifications-${KFMIN}:5
+ >=kde-frameworks/kservice-${KFMIN}:5
+ >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
+ >=kde-frameworks/kwindowsystem-${KFMIN}:5
+ >=kde-frameworks/plasma-${KFMIN}:5
+ net-print/cups
+"
+RDEPEND="${DEPEND}
+ >=dev-qt/qtquickcontrols-${QTMIN}:5
+ >=dev-qt/qtquickcontrols2-${QTMIN}:5
+ >=kde-frameworks/kdeclarative-${KFMIN}:5
+ kde-plasma/kde-cli-tools:5
+ gtk? ( app-admin/system-config-printer )
+"
+BDEPEND=">=kde-frameworks/kcmutils-${KFMIN}:5"
+
+pkg_postinst() {
+ ecm_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
+}