summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2025-09-23 15:32:27 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:37:00 +0100
commit5ffe007379dbd3a6df9d9a271ad5f5c9988d124a (patch)
tree999b8376430dfe22f0415fb8092523c24e577560 /gnu
parent6c4ae2912bcac75bbb39a55891060465fa4e53b2 (diff)
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 <andreas@enge.fr>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/image-viewers.scm15
1 files changed, 8 insertions, 7 deletions
diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm
index e4157e0b073..6d292fa9c24 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+)))