summaryrefslogtreecommitdiff
path: root/gnu/packages/gettext.scm
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-11-29 14:19:55 +0000
committerChristopher Baines <mail@cbaines.net>2020-11-29 17:34:18 +0000
commitff01206345e2306cc633db48e0b29eab9077091a (patch)
tree25c7ee17005dadc9bf4fae3f0873e03a4704f782 /gnu/packages/gettext.scm
parented2545f0fa0e2ad99d5a0c45f532c539b299b9fb (diff)
parent7c2e67400ffaef8eb6f30ef7126c976ee3d7e36c (diff)
Merge remote-tracking branch 'origin/master' into core-updates
Diffstat (limited to 'gnu/packages/gettext.scm')
-rw-r--r--gnu/packages/gettext.scm15
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/gettext.scm b/gnu/packages/gettext.scm
index c955a0d2866..5956742bbb1 100644
--- a/gnu/packages/gettext.scm
+++ b/gnu/packages/gettext.scm
@@ -39,6 +39,7 @@
39 #:use-module (gnu packages libunistring) 39 #:use-module (gnu packages libunistring)
40 #:use-module (gnu packages ncurses) 40 #:use-module (gnu packages ncurses)
41 #:use-module (gnu packages perl) 41 #:use-module (gnu packages perl)
42 #:use-module (gnu packages perl-check)
42 #:use-module (gnu packages tex) 43 #:use-module (gnu packages tex)
43 #:use-module (gnu packages xml) 44 #:use-module (gnu packages xml)
44 #:use-module (guix utils)) 45 #:use-module (guix utils))
@@ -185,14 +186,14 @@ color, font attributes (weight, posture), or underlining.")
185(define-public po4a 186(define-public po4a
186 (package 187 (package
187 (name "po4a") 188 (name "po4a")
188 (version "0.57") 189 (version "0.61")
189 (source (origin 190 (source (origin
190 (method url-fetch) 191 (method url-fetch)
191 (uri (string-append "https://github.com/mquinson/po4a/releases/download/v" 192 (uri (string-append "https://github.com/mquinson/po4a/releases/download/v"
192 version "/po4a-" version ".tar.gz")) 193 version "/po4a-" version ".tar.gz"))
193 (sha256 194 (sha256
194 (base32 195 (base32
195 "15yd27krlpdvjhcnwys6i5k1ww62ifq2yx8k1zxyxiwy84myqmdv")))) 196 "1nw61dj7ymrsjps79vvfdzp549drwd51kyj598937zvyafq4r5b2"))))
196 (build-system perl-build-system) 197 (build-system perl-build-system)
197 (arguments 198 (arguments
198 `(#:phases 199 `(#:phases
@@ -225,12 +226,13 @@ color, font attributes (weight, posture), or underlining.")
225 #t)) 226 #t))
226 (add-before 'check 'disable-failing-tests 227 (add-before 'check 'disable-failing-tests
227 (lambda _ 228 (lambda _
228 ;; FIXME: ‘Files ../t-03-asciidoc/Titles.po and Titles.po differ’.
229 (delete-file "t/03-asciidoc.t")
230
231 ;; FIXME: these tests require SGMLS.pm. 229 ;; FIXME: these tests require SGMLS.pm.
232 (delete-file "t/01-classes.t") 230 (delete-file "t/01-classes.t")
233 (delete-file "t/16-sgml.t") 231
232 (delete-file "t/add.t")
233 (delete-file "t/core-porefs.t")
234 (delete-file "t/fmt-asciidoc.t")
235 (delete-file "t/fmt-sgml.t")
234 236
235 #t))))) 237 #t)))))
236 (native-inputs 238 (native-inputs
@@ -242,6 +244,7 @@ color, font attributes (weight, posture), or underlining.")
242 244
243 ;; For tests. 245 ;; For tests.
244 ("docbook-xml" ,docbook-xml-4.1.2) 246 ("docbook-xml" ,docbook-xml-4.1.2)
247 ("perl-test-pod" ,perl-test-pod)
245 ("perl-yaml-tiny" ,perl-yaml-tiny) 248 ("perl-yaml-tiny" ,perl-yaml-tiny)
246 ("texlive" ,texlive-tiny))) 249 ("texlive" ,texlive-tiny)))
247 (home-page "https://po4a.org/") 250 (home-page "https://po4a.org/")