diff options
author | Timotej Lazar <timotej.lazar@araneo.si> | 2023-02-24 17:35:02 +0100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2023-02-24 14:38:23 -0500 |
commit | 5cd36195451b734211bd49131d196439790d91e6 (patch) | |
tree | 51fe9b1076524b0ebdf6fbf656b6c0f3284da825 /gnu/packages/pdf.scm | |
parent | ea2fa86f31a83195ac789a6d92bcaee8e53e4397 (diff) |
gnu: qpdfview: Update to 0.5.0.
* gnu/packages/pdf.scm (qpdfview): Update to 0.5.0.
* gnu/packages/patches/qpdfview-qt515-compat.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages/pdf.scm')
-rw-r--r-- | gnu/packages/pdf.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index c040afcae7..9926739973 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -888,16 +888,15 @@ program capable of converting PDF into other formats.") (define-public qpdfview (package (name "qpdfview") - (version "0.4.18") + (version "0.5.0") (source (origin (method url-fetch) (uri (string-append "https://launchpad.net/qpdfview/" "trunk/" version "/+download/" - "qpdfview-" version ".tar.gz")) + "qpdfview-" (version-major+minor version) ".tar.gz")) (sha256 - (base32 "0v1rl126hvblajnph2hkansgi0s8vjdc5yxrm4y3faa0lxzjwr6c")) - (patches (search-patches "qpdfview-qt515-compat.patch")))) + (base32 "16dy341927r2s1dza7g8ci1jyypfc4a6yfcvg9sxvjv1li0c9vs4")))) (build-system qt-build-system) (native-inputs (list pkg-config)) |