gnu: terminology: Update to 1.12.1.

* gnu/packages/enlightenment.scm (terminology): Update to 1.12.1.
[source]: Remove trailing #t.
[arguments]: Remove trailing #t from phases.
This commit is contained in:
Efraim Flashner 2022-01-06 21:06:16 +02:00
parent 0997d1fddd
commit 26bd033fac
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -206,7 +206,7 @@ (define-public efl
(define-public terminology (define-public terminology
(package (package
(name "terminology") (name "terminology")
(version "1.11.0") (version "1.12.1")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (uri
@ -214,15 +214,14 @@ (define-public terminology
"terminology/terminology-" version ".tar.xz")) "terminology/terminology-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"0bbav27p1xni7kidgf3vn42bwsfrzds301k3f7c8dg7v5yyq9n2g")) "1aasddf2343qj798b5s8qwif3lxj4pyjax6fa9sfi6if9icdkkpq"))
(modules '((guix build utils))) (modules '((guix build utils)))
;; Remove the bundled fonts. ;; Remove the bundled fonts.
(snippet (snippet
'(begin '(begin
(delete-file-recursively "data/fonts") (delete-file-recursively "data/fonts")
(substitute* "data/meson.build" (substitute* "data/meson.build"
(("subdir\\('fonts'\\)") "")) (("subdir\\('fonts'\\)") ""))))))
#t))))
(build-system meson-build-system) (build-system meson-build-system)
(arguments (arguments
`(#:configure-flags `(#:configure-flags
@ -234,7 +233,7 @@ (define-public terminology
(modify-phases %standard-phases (modify-phases %standard-phases
(add-after 'unpack 'set-home-directory (add-after 'unpack 'set-home-directory
;; FATAL: Cannot create run dir '/homeless-shelter/.run' - errno=2 ;; FATAL: Cannot create run dir '/homeless-shelter/.run' - errno=2
(lambda _ (setenv "HOME" "/tmp") #t)) (lambda _ (setenv "HOME" "/tmp")))
(replace 'check (replace 'check
(lambda _ (lambda _
(with-directory-excursion (with-directory-excursion
@ -245,8 +244,7 @@ (define-public terminology
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
;; This file is not meant to be installed. ;; This file is not meant to be installed.
(delete-file (string-append (assoc-ref outputs "out") (delete-file (string-append (assoc-ref outputs "out")
"/bin/tytest")) "/bin/tytest")))))))
#t)))))
(native-inputs (native-inputs
`(("gettext" ,gettext-minimal) `(("gettext" ,gettext-minimal)
("perl" ,perl) ("perl" ,perl)