* [bug#35072] [PATCH] gnu: Add kdeconnect.
@ 2019-04-01 17:28 Efraim Flashner
2019-04-03 20:19 ` Ludovic Courtès
0 siblings, 1 reply; 3+ messages in thread
From: Efraim Flashner @ 2019-04-01 17:28 UTC (permalink / raw)
To: 35072
* gnu/packages/kde.scm (kdeconnect.scm): New variable.
---
gnu/packages/kde.scm | 80 +++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 79 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index 23078d00a0..e37525bed3 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016, 2017, 2019 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016, 2017 Thomas Danckaert <post@thomasdanckaert.be>
;;; Copyright © 2017, 2018 Mark Meyer <mark@ofosos.org>
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
@@ -47,10 +47,12 @@
#:use-module (gnu packages perl)
#:use-module (gnu packages photo)
#:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages python)
#:use-module (gnu packages tls)
#:use-module (gnu packages qt)
#:use-module (gnu packages version-control)
#:use-module (gnu packages video)
+ #:use-module (gnu packages xdisorg)
#:use-module (gnu packages xorg))
(define-public kdenlive
@@ -531,3 +533,79 @@ cards.")
Using a plugin system it is possible to create notifications with many
different notification systems.")
(license license:lgpl3)))
+
+(define-public kdeconnect
+ (package
+ (name "kdeconnect")
+ (version "1.3.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/kdeconnect/"
+ version "/src/kdeconnect-kde-"
+ version ".tar.xz"))
+ (sha256
+ (base32
+ "1vac0mw1myrswr61adv7lgif0c4wzw5wnsj0sqxj6msp4l4pfgsg"))))
+ (build-system cmake-build-system)
+ (arguments
+ `(#:configure-flags '("-DBUILD_TESTING=ON")
+ #:tests? #f ; tests fail hard in our build environment
+ #:modules ((guix build cmake-build-system)
+ (guix build qt-utils)
+ (guix build utils))
+ #:imported-modules (,@%cmake-build-system-modules
+ (guix build qt-utils))
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ (setenv "QT_QPA_PLATFORM" "offscreen")
+ #t))
+ (add-after 'install 'wrap-executable
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (setenv "QT_PLUGIN_PATH"
+ (string-append out "/lib/qt5/plugins"
+ ":" (getenv "QT_PLUGIN_PATH")))
+ (wrap-qt-program out "../lib/libexec/kdeconnectd")
+ (wrap-qt-program out "kdeconnect-cli")
+ (wrap-qt-program out "kdeconnect-handler")
+ (wrap-qt-program out "kdeconnect-indicator"))
+ #t)))))
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("kdoctools" ,kdoctools)
+ ("libxtst" ,libxtst)
+ ("pkg-config" ,pkg-config)
+ ("python" ,python-wrapper)))
+ (inputs
+ `(("kcmutils" ,kcmutils)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("kdbusaddons" ,kdbusaddons)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kio" ,kio)
+ ("knotifications" ,knotifications)
+ ("kwayland" ,kwayland)
+ ("libfakekey" ,libfakekey)
+ ("qca" ,qca)
+ ("qtbase" ,qtbase)
+ ("qtdeclarative" ,qtdeclarative)
+ ("qtx11extras" ,qtx11extras)))
+ (home-page "https://community.kde.org/KDEConnect")
+ (synopsis "Enable your devices to communicate with each other")
+ (description "KDE Connect is a project that enables all your devices to
+communicate with each other. Here's a few things KDE Connect can do:
+@enumerate
+@item Receive your phone notifications on your desktop computer and reply to messages
+@item Control music playing on your desktop from your phone
+@item Use your phone as a remote control for your desktop
+@item Run predefined commands on your PC from connected devices
+@item Check your phones battery level from the desktop
+@item Ring your phone to help finding it
+@item Share files and links between devices
+@item Browse your phone from the desktop
+@item Control the desktop's volume from the phone
+@end enumerate")
+ (license (list license:gpl2 license:gpl3))))
--
2.21.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#35072] [PATCH] gnu: Add kdeconnect.
2019-04-01 17:28 [bug#35072] [PATCH] gnu: Add kdeconnect Efraim Flashner
@ 2019-04-03 20:19 ` Ludovic Courtès
2019-04-04 5:47 ` bug#35072: " Efraim Flashner
0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2019-04-03 20:19 UTC (permalink / raw)
To: Efraim Flashner; +Cc: 35072
Hello!
Efraim Flashner <efraim@flashner.co.il> skribis:
> * gnu/packages/kde.scm (kdeconnect.scm): New variable.
[...]
> + (license (list license:gpl2 license:gpl3))))
Please add a comment to say if it’s dual-licensed (v2 or v3) or
something else.
Other than that LGTM, thanks!
Ludo’.
^ permalink raw reply [flat|nested] 3+ messages in thread
* bug#35072: [PATCH] gnu: Add kdeconnect.
2019-04-03 20:19 ` Ludovic Courtès
@ 2019-04-04 5:47 ` Efraim Flashner
0 siblings, 0 replies; 3+ messages in thread
From: Efraim Flashner @ 2019-04-04 5:47 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 35072-done
[-- Attachment #1: Type: text/plain, Size: 654 bytes --]
On Wed, Apr 03, 2019 at 10:19:38PM +0200, Ludovic Courtès wrote:
> Hello!
>
> Efraim Flashner <efraim@flashner.co.il> skribis:
>
> > * gnu/packages/kde.scm (kdeconnect.scm): New variable.
>
> [...]
>
> > + (license (list license:gpl2 license:gpl3))))
>
> Please add a comment to say if it’s dual-licensed (v2 or v3) or
> something else.
>
> Other than that LGTM, thanks!
>
Thanks. Tagged it as dual licensed.
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-04-04 5:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-01 17:28 [bug#35072] [PATCH] gnu: Add kdeconnect Efraim Flashner
2019-04-03 20:19 ` Ludovic Courtès
2019-04-04 5:47 ` bug#35072: " Efraim Flashner
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.