[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
27/45: gnu: Add plasma-integration.
From: |
guix-commits |
Subject: |
27/45: gnu: Add plasma-integration. |
Date: |
Sun, 31 Jan 2021 10:27:26 -0500 (EST) |
htgoebel pushed a commit to branch wip-kde-plasma
in repository guix.
commit 0891f01c9b23065b328ffb17f6a9cb0af013ad90
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Sun Aug 20 21:22:53 2017 +0200
gnu: Add plasma-integration.
* gnu/packages/kde-plasma.scm (plasma-integration): New variable.
---
gnu/packages/kde-plasma.scm | 78 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 78 insertions(+)
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 15813f8..ca01bbe 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -1192,6 +1192,84 @@ concentrates more on searching.")
(description "Tools and widgets for the desktop")
(license (list license:lgpl2.0+ license:gpl2+ license:fdl1.2+))))
+(define-public plasma-integration
+ (package
+ (name "plasma-integration")
+ (version "5.19.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/plasma/" version
+ "/plasma-integration-" version ".tar.xz"))
+ (sha256
+ (base32 "12b3zgmvqg3nbgbqm785bbqjvm5ysw5ikvqn04qnldlfwxadizgp"))))
+ (build-system qt-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (delete 'check)
+ ;; FIXME: re-enable checkes
+ ;; (add-after 'install 'check
+ ;; (lambda _
+ ;; ;; Exclude a "Received signal" test TODO: Make this test pass
+ ;; (invoke "ctest" "."
+ ;; "-E" "frameworkintegration-kfiledialog_unittest")))
+ (add-before 'check 'check-setup2
+ (lambda* (#:key outputs #:allow-other-keys)
+ (setenv "HOME" (getcwd))
+ (setenv "XDG_RUNTIME_DIR" "..")
+ (setenv "QT_PLUGIN_PATH"
+ (string-append (assoc-ref outputs "out")
"/lib/qt5/plugins:"
+ (getenv "QT_PLUGIN_PATH")))
+ ;; The test suite requires a running X server.
+ (system "Xvfb :98 -screen 0 640x480x24 &")
+ (setenv "DISPLAY" ":98")
+ ;; blacklist failing test-functions TODO: make them pass
+ (with-output-to-file "autotests/BLACKLIST"
+ (lambda _
+ ;; In frameworkintegration-kdeplatformtheme_unittest
+ (display "[testPlatformHints]\n*\n")
+ (display "[testPlatformPalette]\n*\n")
+ (display "[testPlatformHintChanges]\n*\n")
+ ;; In frameworkintegration-kfiledialogqml_unittest
+ (display "[testShowDialogParentless]\n*\n")
+ (display "[testShowDialogWithParent]\n*\n")))
+ #t)))))
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("dbus" ,dbus)
+ ("xorg-server" ,xorg-server) ; required for running the tests
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("breeze" ,breeze)
+ ;; Other distributions do not install these fonts as a dependency of
+ ;; this package.
+ ;;("font-google-noto" ,font-google-noto) ; runtime dependency
+ ;;("font-hack" ,font-hack) ; runtime dependency
+ ("kconfig" ,kconfig)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kio" ,kio)
+ ("knotifications" ,knotifications)
+ ("kwayland" ,kwayland)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("kwindowsystem" ,kwindowsystem)
+ ("libxcursor" ,libxcursor)
+ ("perl" ,perl) ; for the kconf_update scripts
+ ("qtbase" ,qtbase)
+ ("qtdeclarative" ,qtdeclarative) ; for generating auto-tests
+ ("qtquickcontrols" ,qtquickcontrols) ; for running the tests
+ ("qtquickcontrols2" ,qtquickcontrols2)
+ ("qtx11extras" ,qtx11extras)
+ ("xcb-util" ,xcb-util)))
+ (home-page "https://invent.kde.org/plasma/plasma-integration")
+ (synopsis "Integration of Qt application with KDE workspaces")
+ (description "Plasma Framework Integration is a set of plugins responsible
+for better integration of Qt applications when running on a KDE Plasma
+workspace. Applications do not need to link to this directly.")
+ (license license:lgpl3+))) ;; KDE e.V.
+
(define-public plasma-wayland-protocols
(package
(name "plasma-wayland-protocols")
- branch wip-kde-plasma created (now e92bf79), guix-commits, 2021/01/31
- 10/45: WIP plasma.tmpl., guix-commits, 2021/01/31
- 13/45: TEMP Add script for test-building kwin., guix-commits, 2021/01/31
- 18/45: gnu: Add kactivitymanagerd., guix-commits, 2021/01/31
- 22/45: gnu: Add kwallet-pam., guix-commits, 2021/01/31
- 24/45: gnu: Add kscreen., guix-commits, 2021/01/31
- 27/45: gnu: Add plasma-integration.,
guix-commits <=
- 26/45: gnu: Add oxygen., guix-commits, 2021/01/31
- 17/45: gnu: Add breeze-gtk., guix-commits, 2021/01/31
- 19/45: gnu: Add kde-cli-tools., guix-commits, 2021/01/31
- 33/45: gnu: Add polkit-kde-agent-1., guix-commits, 2021/01/31
- 09/45: WIP services: Add KDE Plasme desktop service., guix-commits, 2021/01/31
- 05/45: gnu: Add kwayland-server., guix-commits, 2021/01/31
- 02/45: gnu: Add ksysguard., guix-commits, 2021/01/31
- 12/45: TEMP Add some scripts for maintaining KDE packages., guix-commits, 2021/01/31
- 14/45: TEMP Add custom `startkde` script to be used in the VM., guix-commits, 2021/01/31
- 16/45: gnu: Add bluedevil., guix-commits, 2021/01/31