gnu: vera: Update to 1.24.

* gnu/packages/dictionaries.scm (vera): Update to 1.24.
[arguments]: Replace problematic (non-)character.
This commit is contained in:
Tobias Geerinckx-Rice 2020-11-04 20:51:00 +01:00
parent 08d8e76678
commit 274bbce817
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -53,14 +53,14 @@ (define-module (gnu packages dictionaries)
(define-public vera (define-public vera
(package (package
(name "vera") (name "vera")
(version "1.23") (version "1.24")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://gnu/vera/vera-" version (uri (string-append "mirror://gnu/vera/vera-" version
".tar.gz")) ".tar.gz"))
(sha256 (sha256
(base32 (base32
"1az0v563jja8xb4896jyr8yv7jd9zacqyfkjd7psb73v7clg1mzz")))) "1j5p679vw72bv766acbg6g89k31ynmrzlpg7s3wzy4krlwdf92xc"))))
(build-system trivial-build-system) (build-system trivial-build-system)
(arguments (arguments
`(#:builder (begin `(#:builder (begin
@ -80,6 +80,12 @@ (define-public vera
(mkdir-p info) (mkdir-p info)
(mkdir-p html) (mkdir-p html)
;; Change a Malformed UTF-8 character: \xd7\x34 (unexpected
;; non-continuation byte 0x34, immediately after start byte
;; 0xd7; need 2 bytes, got 1) in pattern match (m//).
(substitute* "vera.h"
(("320.480") "320x480"))
;; XXX: Use '--force' because the document is unhappy ;; XXX: Use '--force' because the document is unhappy
;; with Texinfo 5 (yes, documents can be unhappy.) ;; with Texinfo 5 (yes, documents can be unhappy.)
(invoke (string-append texi "/bin/makeinfo") (invoke (string-append texi "/bin/makeinfo")