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

commit 52121ae71fd2b6e5d9c530e1026c8a2e8d94d1c0
Author: Sughosha <[email protected]>
AuthorDate: Tue Oct 7 10:19:58 2025 +0530

    gnu: poxml: Move to kde-sdk.scm.
    
    * gnu/packages/kde.scm (poxml): Remove variable.
    * gnu/packages/kde-sdk.scm (poxml): New variable.
    
    Change-Id: I9f91648ea24ab2321040282fb30874115ab195e5
---
 gnu/packages/kde-sdk.scm | 26 ++++++++++++++++++++++++++
 gnu/packages/kde.scm     | 26 --------------------------
 2 files changed, 26 insertions(+), 26 deletions(-)

diff --git a/gnu/packages/kde-sdk.scm b/gnu/packages/kde-sdk.scm
index 7befb494e9..26d4f99560 100644
--- a/gnu/packages/kde-sdk.scm
+++ b/gnu/packages/kde-sdk.scm
@@ -29,6 +29,7 @@
   #:use-module (gnu packages apr)
   #:use-module (gnu packages boost)
   #:use-module (gnu packages code)
+  #:use-module (gnu packages gettext)
   #:use-module (gnu packages freedesktop)
   #:use-module (gnu packages kde-frameworks)
   #:use-module (gnu packages kde-graphics)
@@ -40,6 +41,31 @@
   #:use-module (gnu packages qt)
   #:use-module (gnu packages version-control))
 
+(define-public poxml
+  (package
+    (name "poxml")
+    (version "24.12.3")
+    (source (origin
+              (method url-fetch)
+              (uri
+               (string-append "mirror://kde/stable/release-service/" version
+                              "/src/poxml-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0nmclngg0mrd1j2app6fggpvp93sw5p4q1nddwq8is0dabm57yx1"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     (list extra-cmake-modules kdoctools))
+    (inputs
+     (list gettext-minimal qtbase))
+    (home-page "https://apps.kde.org/development/";)
+    (synopsis "Tools for translating DocBook XML files with Gettext")
+    (description "This is a collection of tools that facilitate translating
+DocBook XML files using Gettext message files (PO files).  Also included are
+several command-line utilities for manipulating DocBook XML files, PO files and
+PO template files.")
+    (license license:gpl2+)))
+
 (define-public libkomparediff2
   (package
     (name "libkomparediff2")
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index 3eb3f9a7f0..ba56556cec 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -59,7 +59,6 @@
   #:use-module (gnu packages gnupg)
   #:use-module (gnu packages fontutils)
   #:use-module (gnu packages freedesktop)
-  #:use-module (gnu packages gettext)
   #:use-module (gnu packages ghostscript)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gnome)
@@ -238,28 +237,3 @@ for scanner hardware.")
 Using a plugin system it is possible to create notifications with many
 different notification systems.")
     (license license:lgpl3)))
-
-(define-public poxml
-  (package
-    (name "poxml")
-    (version "24.12.3")
-    (source (origin
-              (method url-fetch)
-              (uri
-               (string-append "mirror://kde/stable/release-service/" version
-                              "/src/poxml-" version ".tar.xz"))
-              (sha256
-               (base32
-                "0nmclngg0mrd1j2app6fggpvp93sw5p4q1nddwq8is0dabm57yx1"))))
-    (build-system cmake-build-system)
-    (native-inputs
-     (list extra-cmake-modules kdoctools))
-    (inputs
-     (list gettext-minimal qtbase))
-    (home-page "https://apps.kde.org/development/";)
-    (synopsis "Tools for translating DocBook XML files with Gettext")
-    (description "This is a collection of tools that facilitate translating
-DocBook XML files using Gettext message files (PO files).  Also included are
-several command-line utilities for manipulating DocBook XML files, PO files and
-PO template files.")
-    (license license:gpl2+)))

Reply via email to