unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#56349: [PATCH] gnu: Add kaidan.
@ 2022-07-02  8:49 Raghav Gururajan via Bug reports for GNU Guix
  2022-07-02  9:06 ` bug#56349: [PATCH v2] " Raghav Gururajan via Bug reports for GNU Guix
  0 siblings, 1 reply; 3+ messages in thread
From: Raghav Gururajan via Bug reports for GNU Guix @ 2022-07-02  8:49 UTC (permalink / raw)
  To: 56349; +Cc: Raghav Gururajan

* gnu/packages/messaging.scm (kaidan): New variable.
---
 gnu/packages/messaging.scm | 63 +++++++++++++++++++++++++++++++++++++-
 1 file changed, 62 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 9b1d06e21a..67841efc8a 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -25,7 +25,7 @@
 ;;; Copyright © 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
 ;;; Copyright © 2020 Mason Hock <chaosmonk@riseup.net>
 ;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
-;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
+;;; Copyright © 2020, 2021 Raghav Gururajan <rg@raghavgururajan.name>
 ;;; Copyright © 2020, 2021 Robert Karszniewicz <avoidr@posteo.de>
 ;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
 ;;; Copyright © 2021 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
@@ -89,6 +89,7 @@ (define-module (gnu packages messaging)
   #:use-module (gnu packages icu4c)
   #:use-module (gnu packages image)
   #:use-module (gnu packages kde)
+  #:use-module (gnu packages kde-frameworks)
   #:use-module (gnu packages kerberos)
   #:use-module (gnu packages less)
   #:use-module (gnu packages libcanberra)
@@ -3359,4 +3360,64 @@ (define-public python-harmony
     (home-page "https://github.com/taylordotfish/harmony")
     (license license:gpl3+)))
 
+(define-public kaidan
+  (package
+   (name "kaidan")
+   (version "0.8.0")
+   (source
+    (origin
+     (method url-fetch)
+     (uri
+      (string-append "mirror://kde/unstable/kaidan/"
+                     version "/kaidan-" version ".tar.xz"))
+     (modules '((guix build utils)))
+     (snippet
+      `(begin
+         (delete-file-recursively "3rdparty")))
+     (sha256
+      (base32 "195iddv35gc3k83r226y17avsab2b9bszgd7z7ynbddsgbf75rx7"))))
+   (build-system qt-build-system)
+   (arguments
+    `(#:configure-flags
+      (list
+       "-DBUILD_TESTS=TRUE")))
+   (native-inputs
+    (list
+     extra-cmake-modules
+     perl
+     pkg-config
+     python-wrapper))
+   (inputs
+    (list
+     kirigami
+     knotifications
+     qtbase-5
+     qtdeclarative
+     qtlocation
+     qtquickcontrols2
+     qtsvg
+     qtmultimedia
+     qtxmlpatterns
+     qqc2-desktop-style
+     qxmpp
+     zxing-cpp))
+   (home-page "https://www.kaidan.im/")
+   (synopsis "Qt-based XMPP/Jabber Client")
+   (description "Kaidan is a chat client.  It uses the open communication
+protocol XMPP (Jabber).  The user interface makes use of Kirigami and QtQuick,
+while the back-end of Kaidan is entirely written in C++ using Qt and the
+Qt-based XMPP library QXmpp.")
+   (license
+    (list
+     ;; Graphics
+     license:cc-by-sa4.0
+     ;; Files:
+     ;; src/{StatusBar.cpp|StatusBar.h|singleapp/*|hsluv-c/*}
+     ;; utils/generate-license.py
+     license:expat
+     ;; QrCodeVideoFrame
+     license:asl2.0
+     ;; Others
+     license:gpl3+))))
+
 ;;; messaging.scm ends here
-- 
2.36.1





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#56349: [PATCH v2] gnu: Add kaidan.
  2022-07-02  8:49 bug#56349: [PATCH] gnu: Add kaidan Raghav Gururajan via Bug reports for GNU Guix
@ 2022-07-02  9:06 ` Raghav Gururajan via Bug reports for GNU Guix
  2022-07-02 11:39   ` Liliana Marie Prikler
  0 siblings, 1 reply; 3+ messages in thread
From: Raghav Gururajan via Bug reports for GNU Guix @ 2022-07-02  9:06 UTC (permalink / raw)
  To: 56349; +Cc: Raghav Gururajan

* gnu/packages/messaging.scm (kaidan): New variable.
---
 gnu/packages/messaging.scm | 64 +++++++++++++++++++++++++++++++++++++-
 1 file changed, 63 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 9b1d06e21a..4798119871 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -25,7 +25,7 @@
 ;;; Copyright © 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
 ;;; Copyright © 2020 Mason Hock <chaosmonk@riseup.net>
 ;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
-;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
+;;; Copyright © 2020, 2021 Raghav Gururajan <rg@raghavgururajan.name>
 ;;; Copyright © 2020, 2021 Robert Karszniewicz <avoidr@posteo.de>
 ;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
 ;;; Copyright © 2021 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
@@ -89,6 +89,7 @@ (define-module (gnu packages messaging)
   #:use-module (gnu packages icu4c)
   #:use-module (gnu packages image)
   #:use-module (gnu packages kde)
+  #:use-module (gnu packages kde-frameworks)
   #:use-module (gnu packages kerberos)
   #:use-module (gnu packages less)
   #:use-module (gnu packages libcanberra)
@@ -3359,4 +3360,65 @@ (define-public python-harmony
     (home-page "https://github.com/taylordotfish/harmony")
     (license license:gpl3+)))
 
+(define-public kaidan
+  (package
+   (name "kaidan")
+   (version "0.8.0")
+   (source
+    (origin
+     (method url-fetch)
+     (uri
+      (string-append "mirror://kde/unstable/kaidan/"
+                     version "/kaidan-" version ".tar.xz"))
+     (modules '((guix build utils)))
+     (snippet
+      `(begin
+         (delete-file-recursively "3rdparty")))
+     (sha256
+      (base32 "195iddv35gc3k83r226y17avsab2b9bszgd7z7ynbddsgbf75rx7"))))
+   (build-system qt-build-system)
+   (arguments
+    `(#:configure-flags
+      (list
+       "-DBUILD_TESTS=TRUE")))
+   (native-inputs
+    (list
+     extra-cmake-modules
+     perl
+     pkg-config
+     python-wrapper))
+   (inputs
+    (list
+     kirigami
+     knotifications
+     qtbase-5
+     qtdeclarative
+     qtgraphicaleffects
+     qtlocation
+     qtquickcontrols2
+     qtsvg
+     qtmultimedia
+     qtxmlpatterns
+     qqc2-desktop-style
+     qxmpp
+     zxing-cpp))
+   (home-page "https://www.kaidan.im/")
+   (synopsis "Qt-based XMPP/Jabber Client")
+   (description "Kaidan is a chat client.  It uses the open communication
+protocol XMPP (Jabber).  The user interface makes use of Kirigami and QtQuick,
+while the back-end of Kaidan is entirely written in C++ using Qt and the
+Qt-based XMPP library QXmpp.")
+   (license
+    (list
+     ;; Graphics
+     license:cc-by-sa4.0
+     ;; Files:
+     ;; src/{StatusBar.cpp|StatusBar.h|singleapp/*|hsluv-c/*}
+     ;; utils/generate-license.py
+     license:expat
+     ;; QrCodeVideoFrame
+     license:asl2.0
+     ;; Others
+     license:gpl3+))))
+
 ;;; messaging.scm ends here
-- 
2.36.1





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#56349: [PATCH v2] gnu: Add kaidan.
  2022-07-02  9:06 ` bug#56349: [PATCH v2] " Raghav Gururajan via Bug reports for GNU Guix
@ 2022-07-02 11:39   ` Liliana Marie Prikler
  0 siblings, 0 replies; 3+ messages in thread
From: Liliana Marie Prikler @ 2022-07-02 11:39 UTC (permalink / raw)
  To: Raghav Gururajan, 56349-done

Hi Raghav,

Am Samstag, dem 02.07.2022 um 05:06 -0400 schrieb Raghav Gururajan:
> * gnu/packages/messaging.scm (kaidan): New variable.
I cleaned up your patch and pushed it.

Cheers




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-07-02 11:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-02  8:49 bug#56349: [PATCH] gnu: Add kaidan Raghav Gururajan via Bug reports for GNU Guix
2022-07-02  9:06 ` bug#56349: [PATCH v2] " Raghav Gururajan via Bug reports for GNU Guix
2022-07-02 11:39   ` Liliana Marie Prikler

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).