unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#46798] [PATCH 1/2] gnu: Add kgraphviewer.
@ 2021-02-26 16:54 Alexandros Theodotou
  2021-02-26 16:54 ` [bug#46799] [PATCH 2/2] gnu: Add massif-visualizer Alexandros Theodotou
  2021-04-01 20:27 ` bug#46798: [PATCH 1/2] gnu: Add kgraphviewer Ludovic Courtès
  0 siblings, 2 replies; 4+ messages in thread
From: Alexandros Theodotou @ 2021-02-26 16:54 UTC (permalink / raw)
  To: 46798; +Cc: Alexandros Theodotou

* gnu/packages/kde-frameworks.scm (kgraphviewer): New variable.
---
 gnu/packages/kde-frameworks.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 5482400f02..ef47a912ad 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -8,6 +8,7 @@
 ;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
 ;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
+;;; Copyright © 2021 Alexandros Theodotou <alex@zrythm.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -55,6 +56,7 @@
   #:use-module (gnu packages gnupg)
   #:use-module (gnu packages gperf)
   #:use-module (gnu packages graphics)
+  #:use-module (gnu packages graphviz)
   #:use-module (gnu packages gstreamer)
   #:use-module (gnu packages image)
   #:use-module (gnu packages kerberos)
@@ -695,6 +697,36 @@ such as printers, to be discovered without any user intervention or centralized
 infrastructure.")
     (license license:lgpl2.1+)))
 
+(define-public kgraphviewer
+  (package
+    (name "kgraphviewer")
+    (version "2.4.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/kgraphviewer/"
+                    version "/" name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1h6pgg89gvxl8gw7wmkabyqqrzad5pxyv5lsmn1fl4ir8lcc5q2l"))))
+    (build-system cmake-build-system)
+    (inputs
+     `(("qtbase" ,qtbase)
+       ("boost" ,boost)
+       ("graphviz" ,graphviz)
+       ("kiconthemes" ,kiconthemes)
+       ("kparts" ,kparts)
+       ("qtsvg" ,qtsvg)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (home-page "https://apps.kde.org/en/kgraphviewer")
+    (synopsis "Graphviz dot graph viewer for KDE")
+    (description "KGraphViewer is a Graphviz DOT graph file viewer, aimed to
+replace the other outdated Graphviz tools.")
+    (license license:gpl2+)))
+
 (define-public kguiaddons
   (package
     (name "kguiaddons")
-- 
2.30.1





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

* [bug#46799] [PATCH 2/2] gnu: Add massif-visualizer.
  2021-02-26 16:54 [bug#46798] [PATCH 1/2] gnu: Add kgraphviewer Alexandros Theodotou
@ 2021-02-26 16:54 ` Alexandros Theodotou
  2021-02-27 11:33   ` bug#46799: " Nicolas Goaziou
  2021-04-01 20:27 ` bug#46798: [PATCH 1/2] gnu: Add kgraphviewer Ludovic Courtès
  1 sibling, 1 reply; 4+ messages in thread
From: Alexandros Theodotou @ 2021-02-26 16:54 UTC (permalink / raw)
  To: 46799; +Cc: Alexandros Theodotou

* gnu/packages/kde.scm (massif-visualizer): New variable.
---
 gnu/packages/kde.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index 9173aea80f..418f3b83bf 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -12,6 +12,7 @@
 ;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
 ;;; Copyright © 2020 Prafulla Giri <pratheblackdiamond@gmail.com>
 ;;; Copyright © 2020 Zheng Junjie <873216071@qq.com>
+;;; Copyright © 2021 Alexandros Theodotou <alex@zrythm.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -543,6 +544,42 @@ illustrators, matte and texture artists, and the VFX industry.  Notable
 features include brush stabilizers, brush engines and wrap-around mode.")
     (license license:gpl2+)))
 
+(define-public massif-visualizer
+  (package
+    (name "massif-visualizer")
+    (version "0.7.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/massif-visualizer/" version
+                    "/src/massif-visualizer-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0v8z6r9gngzckvqyxjm9kp7hilwfqibyk2f9vag9l98ar0iwr97q"))))
+    (build-system cmake-build-system)
+    (inputs
+     `(("karchive" ,karchive)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kparts" ,kparts)
+       ("kdiagram" ,kdiagram)
+       ("kgraphviewer" ,kgraphviewer)
+       ("kio" ,kio)
+       ("ki18n" ,ki18n)
+       ("qtbase" ,qtbase)
+       ("qtxmlpatterns" ,qtxmlpatterns)
+       ("qtsvg" ,qtsvg)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("extra-cmake-modules" ,extra-cmake-modules)
+       ("shared-mime-info" ,shared-mime-info)))
+    (home-page "https://apps.kde.org/en/massif-visualizer")
+    (synopsis "Tool that visualizes massif data generated by valgrind")
+    (description "Massif Visualizer is a tool that visualizes massif data.
+You run your application in Valgrind with --tool=massif and then open the
+generated massif.out.%pid in the visualizer.  Gzip or Bzip2 compressed
+massif files can also be opened transparently.")
+    (license license:gpl2+)))
+
 (define-public libkomparediff2
   (package
     (name "libkomparediff2")
-- 
2.30.1





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

* bug#46799: [PATCH 2/2] gnu: Add massif-visualizer.
  2021-02-26 16:54 ` [bug#46799] [PATCH 2/2] gnu: Add massif-visualizer Alexandros Theodotou
@ 2021-02-27 11:33   ` Nicolas Goaziou
  0 siblings, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2021-02-27 11:33 UTC (permalink / raw)
  To: Alexandros Theodotou; +Cc: 46799-done

Hello,

Alexandros Theodotou <alex@zrythm.org> writes:

> * gnu/packages/kde.scm (massif-visualizer): New variable.

I added Texinfo markup in the description of the second patch and applied both. Thank you!

Regards,
-- 
Nicolas Goaziou




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

* bug#46798: [PATCH 1/2] gnu: Add kgraphviewer.
  2021-02-26 16:54 [bug#46798] [PATCH 1/2] gnu: Add kgraphviewer Alexandros Theodotou
  2021-02-26 16:54 ` [bug#46799] [PATCH 2/2] gnu: Add massif-visualizer Alexandros Theodotou
@ 2021-04-01 20:27 ` Ludovic Courtès
  1 sibling, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2021-04-01 20:27 UTC (permalink / raw)
  To: Alexandros Theodotou; +Cc: 46798-done

This was pushed a while back as
5a402e0302d96bce5f18ff28ed5cac54cbacd29c.

Thanks!




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

end of thread, other threads:[~2021-04-01 20:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-26 16:54 [bug#46798] [PATCH 1/2] gnu: Add kgraphviewer Alexandros Theodotou
2021-02-26 16:54 ` [bug#46799] [PATCH 2/2] gnu: Add massif-visualizer Alexandros Theodotou
2021-02-27 11:33   ` bug#46799: " Nicolas Goaziou
2021-04-01 20:27 ` bug#46798: [PATCH 1/2] gnu: Add kgraphviewer Ludovic Courtès

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).