diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-08 12:15:24 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-18 10:45:24 +0800 |
commit | 7e97ea50a5f61712e7f9d0b20b7866c733983821 (patch) | |
tree | 58bb31db1c0c29c7d65f8470411c8d11a95e1d87 /gnu | |
parent | a789e41c9cbf9f8759ec4a0174a4196c4f5cac9b (diff) | |
download | guix-7e97ea50a5f61712e7f9d0b20b7866c733983821.tar.gz guix-7e97ea50a5f61712e7f9d0b20b7866c733983821.zip |
gnu: okular: Update to 24.05.2.
* gnu/packages/kde.scm (okular): Update to 24.05.2.
[inputs]: Remove kactivities, khtml, qtbase-5, qtspeech-5, poppler-qt5,
qtdeclarative-5, qtsvg-5, qtwayland-5, kjs, and qtx11extras; add
plasma-activities, ki18n, ktextwidgets, qtspeech, libxkbcommon,
poppler-qt6, qtdeclarative, qtsvg, and qtwayland.
[arguments]: Set #:qtbase to qtbase; Adjust check phase.
Change-Id: I27199219d9ce7aeb90708f3f25016ef89b01eddf
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/kde.scm | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index a0e20dc110..c20e4242a4 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -1651,17 +1651,18 @@ creating routes by drag and drop and more.") (define-public okular (package (name "okular") - (version "23.04.3") + (version "24.05.2") (source (origin (method url-fetch) (uri (string-append "mirror://kde/stable/release-service/" version "/src/" name "-" version ".tar.xz")) (sha256 - (base32 "1vgcqkq6mzd270hzabmdqqv105iv6kr6ah2h18b15al2n9rmg0bi")))) + (base32 "0kh3a40887f7lajgvk3ndr3ns3mm1kld0biw0cqg9ys69f4d8677")))) (build-system qt-build-system) (arguments (list + #:qtbase qtbase #:phases #~(modify-phases %standard-phases (delete 'check) @@ -1673,7 +1674,8 @@ creating routes by drag and drop and more.") "--output-on-failure" "--rerun-failed" "-E" - "(mainshelltest|parttest|chmgeneratortest)")))) + "(annotationtoolbartest|mainshelltest|parttest|\ +chmgeneratortest)")))) (add-before 'check 'check-setup (lambda* (#:key outputs #:allow-other-keys) (let ((share (string-append (assoc-ref outputs "out") "/share"))) @@ -1692,40 +1694,39 @@ creating routes by drag and drop and more.") breeze-icons discount djvulibre - kactivities - khtml + plasma-activities chmlib kdegraphics-mobipocket karchive kbookmarks kcompletion kconfig - qtbase-5 libjpeg-turbo libtiff kirigami purpose freetype + ki18n kiconthemes kio kparts kpty - qtspeech-5 + ktextwidgets + qtspeech kwallet kwindowsystem libkexiv2 libspectre libzip + libxkbcommon phonon - poppler-qt5 + poppler-qt6 qca - qtdeclarative-5 - qtsvg-5 - qtwayland-5 + qtdeclarative + qtsvg + qtwayland threadweaver - kcrash - kjs - qtx11extras)) + kcrash)) (home-page "https://apps.kde.org/okular/") (synopsis "Document viewer") (description |