guix_mirror_bot pushed a commit to branch master
in repository guix.

commit c8e579ae21a8390af97317bae0ab520be446050b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Oct 13 00:06:05 2025 +0100

    gnu: ueberzug: Move to image-viewers.
    
    * gnu/packages/python-xyz.scm (ueberzug, pythonb-ueberzug): Move from
    here ...
    * gnu/packages/image-viewers.scm: ... to here.
    
    Change-Id: I4e0b6f64bdb0b0d7423ed2f89d37220ccc3390b3
---
 gnu/packages/image-viewers.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 gnu/packages/python-xyz.scm    | 38 --------------------------------------
 2 files changed, 41 insertions(+), 38 deletions(-)

diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm
index b2cb00868f..f986ccf748 100644
--- a/gnu/packages/image-viewers.scm
+++ b/gnu/packages/image-viewers.scm
@@ -15,12 +15,14 @@
 ;;; Copyright © 2020 Peng Mei Yu <[email protected]>
 ;;; Copyright © 2020 R Veera Kumar <[email protected]>
 ;;; Copyright © 2020 Pierre Neidhardt <[email protected]>
+;;; Copyright © 2021 LibreMiami <[email protected]>
 ;;; Copyright © 2021 Rovanion Luckey <[email protected]>
 ;;; Copyright © 2021 Xinglu Chen <[email protected]>
 ;;; Copyright © 2021 Stefan Reichör <[email protected]>
 ;;; Copyright © 2021 Raghav Gururajan <[email protected]>
 ;;; Copyright © 2021 jgart <[email protected]>
 ;;; Copyright © 2021 Guillaume Le Vaillant <[email protected]>
+;;; Copyright © 2021 Vagrant Cascadian <[email protected]>
 ;;; Copyright © 2021 Zheng Junjie <[email protected]>
 ;;; Copyright © 2021 dissent <[email protected]>
 ;;; Copyright © 2022 Michael Rohleder <[email protected]>
@@ -34,6 +36,7 @@
 ;;; Copyright © 2025 Joaquín Aguirrezabalaga <[email protected]>
 ;;; Copyright © 2025 pinoaffe <[email protected]>
 ;;; Copyright © 2025 Zhu Zihao <[email protected]>
+;;; Copyright © 2025 Vinicius Monego <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1411,6 +1414,44 @@ any user may run.  Everything is free and privacy is the 
first concern.")
     (home-page "https://hydrusnetwork.github.io/hydrus/";)
     (license license:wtfpl2)))
 
+(define-public ueberzug
+  (package
+    (name "ueberzug")
+    (version "18.3.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "ueberzug" version))
+       (sha256
+        (base32
+         "1sc05s72gvglsxsw4p0z5h47ygygw5h226vnaakas4ihjq9kiffl"))))
+    (build-system meson-build-system)
+    (arguments
+     (list #:tests? #f)) ; there are no tests
+    (native-inputs
+     (list pkg-config))
+    (inputs
+     (list libx11 libxext libxres))
+    (propagated-inputs
+     (list python-attrs python-docopt python-pillow))
+    (home-page "https://github.com/ueber-devel/ueberzug/";)
+    (synopsis "Command line util to display images in combination with X11")
+    (description "Überzug is a command line util which draws images on
+terminals by using child windows.  The advantages of using Überzug are:
+@itemize
+@item No race conditions as a new window is created to display images.
+@item Expose events will be processed, so images will be redrawn on switch
+workspaces.
+@item Tmux support (excluding multi pane windows).
+@item Terminals without the WINDOWID environment variable are supported.
+@item Chars are used as position - and size unit.
+@item No memory leak (/ unlimited cache).
+@end itemize")
+    (license license:gpl3+)))
+
+(define-public python-ueberzug
+  (deprecated-package "python-ueberzug" ueberzug))
+
 (define-public vv
   (package
     (name "vv")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0253041b8c..140179cec0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2183,44 +2183,6 @@ Interface} to simplify common problems such as caching, 
timing, computing
 progress, among other things.")
     (license license:asl2.0)))
 
-(define-public ueberzug
-  (package
-    (name "ueberzug")
-    (version "18.3.1")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (pypi-uri "ueberzug" version))
-       (sha256
-        (base32
-         "1sc05s72gvglsxsw4p0z5h47ygygw5h226vnaakas4ihjq9kiffl"))))
-    (build-system meson-build-system)
-    (arguments
-     (list #:tests? #f)) ; there are no tests
-    (native-inputs
-     (list pkg-config))
-    (inputs
-     (list libx11 libxext libxres))
-    (propagated-inputs
-     (list python-attrs python-docopt python-pillow))
-    (home-page "https://github.com/ueber-devel/ueberzug/";)
-    (synopsis "Command line util to display images in combination with X11")
-    (description "Überzug is a command line util which draws images on
-terminals by using child windows.  The advantages of using Überzug are:
-@itemize
-@item No race conditions as a new window is created to display images.
-@item Expose events will be processed, so images will be redrawn on switch
-workspaces.
-@item Tmux support (excluding multi pane windows).
-@item Terminals without the WINDOWID environment variable are supported.
-@item Chars are used as position - and size unit.
-@item No memory leak (/ unlimited cache).
-@end itemize")
-    (license license:gpl3+)))
-
-(define-public python-ueberzug
-  (deprecated-package "python-ueberzug" ueberzug))
-
 (define-public python-databind-core
   (package
     (name "python-databind-core")

Reply via email to