guix_mirror_bot pushed a commit to branch kde-team
in repository guix.

commit 304a516ae9f4340a17d858168ba8020a3a9b297c
Author: Sughosha <[email protected]>
AuthorDate: Tue Oct 7 15:19:38 2025 +0530

    gnu: kgraphviewer: Move to kde-graphics.scm.
    
    * gnu/packages/kde-frameworks.scm (kgraphviewer): Remove variable.
    * gnu/packages/kde-graphics.scm (kgraphviewer): New variable.
    * gnu/packages/kde-sdk.scm: Use (gnu packages kde-graphics) module.
    * gnu/packages/linux.scm: Ditto.
    
    Change-Id: I16a15b779b1aea70b0ff56aa3e5f8913bf8af0c5
---
 gnu/packages/kde-frameworks.scm | 32 --------------------------------
 gnu/packages/kde-graphics.scm   | 32 ++++++++++++++++++++++++++++++++
 gnu/packages/linux.scm          |  1 +
 3 files changed, 33 insertions(+), 32 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 5fe5e9a326..a0e09cb735 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -65,7 +65,6 @@
   #: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 gtk)
   #:use-module (gnu packages hunspell)
@@ -1061,37 +1060,6 @@ infrastructure.")
     (inputs
      (list avahi qtbase-5))))
 
-(define-public kgraphviewer
-  (package
-    (name "kgraphviewer")
-    (version "2.5.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "mirror://kde/stable/kgraphviewer/"
-                    version "/" name "-" version ".tar.xz"))
-              (sha256
-               (base32
-                "0s9b3q7wvrbz52d500mcaflkrfjwhbzh5bsf5gxzgxjdzdiywaw7"))))
-    (build-system cmake-build-system)
-    (inputs
-     (list qtbase
-           boost
-           graphviz
-           ki18n
-           kiconthemes
-           kparts
-           qtsvg
-           qt5compat))
-    (native-inputs
-     (list pkg-config extra-cmake-modules kdoctools))
-    (arguments (list #:tests? #f))
-    (home-page "https://apps.kde.org/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")
diff --git a/gnu/packages/kde-graphics.scm b/gnu/packages/kde-graphics.scm
index 5dcdb56168..1f086b2299 100644
--- a/gnu/packages/kde-graphics.scm
+++ b/gnu/packages/kde-graphics.scm
@@ -45,6 +45,7 @@
   #:use-module (gnu packages ghostscript)
   #:use-module (gnu packages gimp)
   #:use-module (gnu packages graphics)
+  #:use-module (gnu packages graphviz)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages image)
   #:use-module (gnu packages image-processing)
@@ -255,6 +256,37 @@ a module for implementing ODF Gantt charts, which are bar 
charts that
 illustrate project schedules.")
     (license license:gpl2+)))
 
+(define-public kgraphviewer
+  (package
+    (name "kgraphviewer")
+    (version "2.5.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/kgraphviewer/"
+                    version "/" name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0s9b3q7wvrbz52d500mcaflkrfjwhbzh5bsf5gxzgxjdzdiywaw7"))))
+    (build-system cmake-build-system)
+    (inputs
+     (list qtbase
+           boost
+           graphviz
+           ki18n
+           kiconthemes
+           kparts
+           qtsvg
+           qt5compat))
+    (native-inputs
+     (list pkg-config extra-cmake-modules kdoctools))
+    (arguments (list #:tests? #f))
+    (home-page "https://apps.kde.org/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 kolourpaint
   (package
     (name "kolourpaint")
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index b8df4438e9..6441e9c5e8 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -152,6 +152,7 @@
   #:use-module (gnu packages haskell-xyz)
   #:use-module (gnu packages image)
   #:use-module (gnu packages kde-frameworks)
+  #:use-module (gnu packages kde-graphics)
   #:use-module (gnu packages libevent)
   #:use-module (gnu packages libunwind)
   #:use-module (gnu packages libusb)

Reply via email to