diff options
| author | Sergey Trofimov <sarg@sarg.org.ru> | 2024-09-24 22:21:46 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2024-10-25 12:36:47 +0200 |
| commit | a1714de3aa4f60d211c166876c3515f96384b0c7 (patch) | |
| tree | 70a193e93c5c97244f4cb8d6120a6d7b4f697ddc | |
| parent | a5338945c44be25e8f23b3f943b614a987c70f74 (diff) | |
gnu: qview: Update to 6.1.
* gnu/packages/image-viewers.scm (qview): Update to 6.1.
[inputs, native-inputs]: Use qt6.
[arguments]: Disable broken tests. Workaround lrelease being resolved
relative to qtbase instead of qttools.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: If1a72984e004167b97fdcdf9ae63f85c85dd7e1c
| -rw-r--r-- | gnu/packages/image-viewers.scm | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm index 81ee770420..cb4e903f39 100644 --- a/gnu/packages/image-viewers.scm +++ b/gnu/packages/image-viewers.scm @@ -700,7 +700,7 @@ Poppler-Qt5 binding, PDF documents.") (define-public qview (package (name "qview") - (version "5.0") + (version "6.1") (source (origin (method git-fetch) @@ -709,32 +709,31 @@ Poppler-Qt5 binding, PDF documents.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1ck4mvhzc4m72n010n43d8ipjczzk6ya637rgfyi7bzb4gv0f3am")))) + (base32 "1c719ivzdm0m8apbqx8h0wi796k5myrm4q3vl16vxwzjcx5ball7")))) (build-system qt-build-system) (arguments (list + #:qtbase qtbase + #:tests? #f ; test code doesn't compile #:phases #~(modify-phases %standard-phases (replace 'configure - (lambda* (#:key outputs #:allow-other-keys) - (invoke "qmake" (string-append "PREFIX=" #$output)))) + (lambda* (#:key inputs outputs #:allow-other-keys) + (invoke "qmake" (string-append "PREFIX=" #$output)) + (substitute* "Makefile" + (("[[:graph:]]+/bin/lrelease") + (search-input-file inputs "/bin/lrelease"))))) ;; Don't phone home or show "Checking for updates..." in the About ;; menu. (add-before 'build 'disable-auto-update (lambda _ (substitute* "src/qvaboutdialog.cpp" (("qvApp->checkUpdates\\(\\);") "") - (("updateText\\(\\);") "")))) - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (with-directory-excursion "tests" - (invoke "qmake" "tests.pro") - (invoke "make" "tests")))))))) + (("updateText\\(\\);") ""))))))) (native-inputs - (list qttools-5)) + (list qttools)) (inputs - (list qtbase-5 qtimageformats-5 qtsvg-5)) + (list qtbase qtimageformats qtsvg)) (home-page "https://interversehq.com/qview/") (synopsis "Convenient and minimal image viewer") (description "qView is a Qt image viewer designed with visually |
