From a2460e0f6b0b899fe21ccd75797d3f926447ebd3 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 13 Dec 2017 15:05:25 +0100 Subject: gnu: perl-text-bibtex: Update to 0.85. * gnu/packages/tex.scm (perl-text-bibtex): Update to 0.85 --- gnu/packages/tex.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gnu/packages/tex.scm') diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index adafdfd08b..69dac602c8 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -9,6 +9,7 @@ ;;; Copyright © 2016, 2017 Ricardo Wurmus ;;; Copyright © 2017 Leo Famulari ;;; Copyright © 2017 Marius Bakke +;;; Copyright © 2017 Tobias Geerinckx-Rice ;;; ;;; This file is part of GNU Guix. ;;; @@ -3917,7 +3918,7 @@ This package contains the complete TeX Live distribution.") (define-public perl-text-bibtex (package (name "perl-text-bibtex") - (version "0.77") + (version "0.85") (source (origin (method url-fetch) @@ -3925,7 +3926,7 @@ This package contains the complete TeX Live distribution.") version ".tar.gz")) (sha256 (base32 - "0kkfx8skk763pivz6h2ffy2zdp1lvy6d5sz0kjaj0mdbjffvnnb4")))) + "036kxgbn1jf70pfm2lmjlzjwnhbkd888fp5lyvmkjpdd15gla18h")))) (build-system perl-build-system) (arguments `(#:phases -- cgit v1.2.3 From 7683bf1183cfd05e5c4475265687096589d0239e Mon Sep 17 00:00:00 2001 From: Eric Bavier Date: Wed, 13 Dec 2017 15:37:58 -0600 Subject: gnu: texlive-bin: Disable tests on aarch64. * gnu/packages/tex.scm (texlive-bin)[arguments]: Disable tests on aarch64. --- gnu/packages/tex.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'gnu/packages/tex.scm') diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 69dac602c8..4e8efc8faf 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -162,10 +162,12 @@ "--with-system-zlib" "--with-system-zziplib") - ;; Disable tests on mips64 to cope with a failure of luajiterr.test. - ;; XXX FIXME fix luajit properly on mips64. - #:tests? ,(not (string-prefix? "mips64" (or (%current-target-system) - (%current-system)))) + ;; Disable tests on mips64/aarch64 to cope with a failure of luajiterr.test. + ;; XXX FIXME fix luajit properly on mips64 and aarch64. + #:tests? ,(let ((s (or (%current-target-system) + (%current-system)))) + (not (or (string-prefix? "aarch64" s) + (string-prefix? "mips64" s)))) #:phases (modify-phases %standard-phases (add-after 'install 'postint -- cgit v1.2.3