[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/07: gnu: zathura: Update to 0.3.9.
From: |
Tobias Geerinckx-Rice |
Subject: |
02/07: gnu: zathura: Update to 0.3.9. |
Date: |
Tue, 1 May 2018 01:14:56 -0400 (EDT) |
nckx pushed a commit to branch staging
in repository guix.
commit eb6a5dab5cf0f85fbc4eda4b6f7956eed464c3cf
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Mon Mar 19 20:11:05 2018 +0100
gnu: zathura: Update to 0.3.9.
* gnu/packages/pdf.scm (zathura): Update to 0.3.9.
[native-inputs]: Add python-sphinx.
[build-system]: Switch to the Meson build system.
[arguments]: Trim accordingly.
---
gnu/packages/pdf.scm | 22 ++++++++++------------
1 file changed, 10 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm
index 84b53b0..633a344 100644
--- a/gnu/packages/pdf.scm
+++ b/gnu/packages/pdf.scm
@@ -13,7 +13,7 @@
;;; Copyright © 2017 Leo Famulari <address@hidden>
;;; Copyright © 2017 Alex Vong <address@hidden>
;;; Copyright © 2017 Rene Saavedra <address@hidden>
-;;; Copyright © 2017 Tobias Geerinckx-Rice <address@hidden>
+;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -37,6 +37,7 @@
#:use-module (guix utils)
#:use-module (guix build-system gnu)
#:use-module (guix build-system cmake)
+ #:use-module (guix build-system meson)
#:use-module (guix build-system python)
#:use-module (guix build-system trivial)
#:use-module (gnu packages)
@@ -464,21 +465,24 @@ by using the poppler rendering engine.")
(define-public zathura
(package
(name "zathura")
- (version "0.3.8")
+ (version "0.3.9")
(source (origin
(method url-fetch)
(uri
(string-append
"https://pwmt.org/projects/zathura/download/zathura-"
- version ".tar.gz"))
+ version ".tar.xz"))
(sha256
(base32
- "0dz5pky3vmf3s2cp2rv1c099gb1s49p9xlgm3ghyy4pzyxc8bgs6"))
+ "0z09kz92a2n8qqv3cy8bx5j5k612g2f9mmh4szqlc7yvi39aax1g"))
(patches (search-patches
"zathura-plugindir-environment-variable.patch"))))
(native-inputs `(("pkg-config" ,pkg-config)
("gettext" ,gettext-minimal)
("glib:bin" ,glib "bin")
+ ;; For building documentation.
+ ("python-sphinx" ,python-sphinx)
+
;; For tests.
("check" ,check)
("xorg-server" ,xorg-server-1.19.3)))
@@ -490,15 +494,9 @@ by using the poppler rendering engine.")
(list (search-path-specification
(variable "ZATHURA_PLUGIN_PATH")
(files '("lib/zathura")))))
- (build-system gnu-build-system)
+ (build-system meson-build-system)
(arguments
- `(#:make-flags
- `(,(string-append "PREFIX=" (assoc-ref %outputs "out"))
- "CC=gcc" "COLOR=0")
- #:test-target "test"
- #:disallowed-references (,xorg-server-1.19.3)
- #:phases (modify-phases %standard-phases
- (delete 'configure)
+ `(#:phases (modify-phases %standard-phases
(add-before 'check 'start-xserver
;; Tests require a running X server.
(lambda* (#:key inputs #:allow-other-keys)
- branch staging updated (cf0d6d8 -> 0ed9905), Tobias Geerinckx-Rice, 2018/05/01
- 03/07: gnu: zathura-cb: Update to 0.1.8., Tobias Geerinckx-Rice, 2018/05/01
- 04/07: gnu: zathura-ps: Update to 0.2.6., Tobias Geerinckx-Rice, 2018/05/01
- 01/07: gnu: girara: Update to 0.2.9., Tobias Geerinckx-Rice, 2018/05/01
- 02/07: gnu: zathura: Update to 0.3.9.,
Tobias Geerinckx-Rice <=
- 05/07: gnu: zathura-djvu: Update to 0.2.8., Tobias Geerinckx-Rice, 2018/05/01
- 06/07: gnu: zathura-pdf-mupdf: Update to 0.3.3., Tobias Geerinckx-Rice, 2018/05/01
- 07/07: gnu: zathura-pdf-poppler: Update to 0.2.9., Tobias Geerinckx-Rice, 2018/05/01