This is an automated email from the git hooks/post-receive script.

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

The following commit(s) were added to refs/heads/python-team by this push:
     new 5b24f580a0 gnu: qpageview: Update to 1.0.1.
5b24f580a0 is described below

commit 5b24f580a0b7ff3d779dcd5b6c2857079037ca2b
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Tue Sep 23 15:32:27 2025 +0200

    gnu: qpageview: Update to 1.0.1.
    
    * gnu/packages/image-viewers.scm (qpageview): Update to 1.0.1.
    [build-system]: Switch to pyproject-build-system.
    [inputs]: Remove python-pyqt and qtbase-5; add python-pyqt-6 and qtbase.
    [native-inputs]: Add python-hatchling.
    [synopsis, description]: Replace Qt5 by Qt.
    
    Change-Id: I7b316a38d2d90359725417f068e6ba84c7345091
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/image-viewers.scm | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm
index e4157e0b07..6d292fa9c2 100644
--- a/gnu/packages/image-viewers.scm
+++ b/gnu/packages/image-viewers.scm
@@ -783,7 +783,7 @@ For PDF support, install the @emph{mupdf} package.")
 (define-public qpageview
   (package
     (name "qpageview")
-    (version "0.6.2")
+    (version "1.0.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -792,15 +792,16 @@ For PDF support, install the @emph{mupdf} package.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0xdhiglzqxyp05blp66l52nbzbpn10hmdm2idhncz6pf7qw16lsw"))))
-    (build-system python-build-system)
+                "0h3b7qhmjk1bz7ws7jwa9012wh2yvmk45j21ciyzj28mcjx9ygz4"))))
+    (build-system pyproject-build-system)
     (home-page "https://qpageview.org/";)
-    (synopsis "Page based document viewer widget for Qt5/PyQt5")
+    (synopsis "Page based document viewer widget for Qt/PyQt")
     (inputs
-     (list python-pyqt qtbase-5))
+     (list python-pyqt-6 qtbase))
+    (native-inputs (list python-hatchling))
     (description
-     "@code{qpageview} provides a page based document viewer widget for Qt5
-and PyQt5.  It has a flexible architecture potentionally supporting many
+     "@code{qpageview} provides a page based document viewer widget for Qt
+and PyQt.  It has a flexible architecture potentionally supporting many
 formats.  Currently, it supports SVG documents, images, and, using the
 Poppler-Qt5 binding, PDF documents.")
     (license license:gpl3+)))

Reply via email to