ngz pushed a commit to branch tex-team
in repository guix.
commit 3f160e9201daf71fdb16e51c0817607c80d1e3ea
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Wed May 8 14:42:36 2024 +0200
gnu: texlive-libkpathsea: Fix TEXMFCACHE location.
* gnu/packages/tex.scm (texlive-libkpathsea)[arguments]<#:phases>: Set
TEXMFCACHE in "texmf.cnf" to "$HOME/.texliveYYYY/texmf-var/" instead of
"{$GUIX_TEXMF}", which creates a "{" directory in the current working
directory.
* guix/build/texlive-build-system.scm (build): Set TEXMFCACHE to a local
directory since $HOME is not available during build.
Change-Id: I4dfa8fd2151d0ca3db788633e70d8e26b9289d89
---
gnu/packages/tex.scm | 6 +++++-
guix/build/texlive-build-system.scm | 5 ++++-
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 4e46c1a898..91b0393641 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -15,7 +15,7 @@
;;; Copyright © 2020 Vincent Legoll <[email protected]>
;;; Copyright © 2020, 2021 Paul Garlick <[email protected]>
;;; Copyright © 2021, 2022 Maxim Cournoyer <[email protected]>
-;;; Copyright © 2021-2023 Nicolas Goaziou <[email protected]>
+;;; Copyright © 2021-2024 Nicolas Goaziou <[email protected]>
;;; Copyright © 2021 Leo Le Bouter <[email protected]>
;;; Copyright © 2021 Xinglu Chen <[email protected]>
;;; Copyright © 2021 Ivan Gankevich <[email protected]>
@@ -224,6 +224,10 @@
"TEXMF = {$GUIX_TEXMF}\n")
(("\\$SELFAUTOLOC(/share/texmf-dist/web2c)" _ suffix)
(string-append #$output suffix))
+ ;; Ignore system-wide cache. Use local one, by default
+ ;; "$HOME/.texliveYYYY/texmf-var/".
+ (("^TEXMFCACHE = .*")
+ "TEXMFCACHE = $TEXMFVAR\n")
;; Don't truncate lines.
(("^error_line = .*$") "error_line = 254\n")
(("^half_error_line = .*$") "half_error_line = 238\n")
diff --git a/guix/build/texlive-build-system.scm
b/guix/build/texlive-build-system.scm
index a9fe9c80cc..abfa1e3406 100644
--- a/guix/build/texlive-build-system.scm
+++ b/guix/build/texlive-build-system.scm
@@ -2,7 +2,7 @@
;;; Copyright © 2017 Ricardo Wurmus <[email protected]>
;;; Copyright © 2021 Maxim Cournoyer <[email protected]>
;;; Copyright © 2021 Thiago Jung Bauermann <[email protected]>
-;;; Copyright © 2023 Nicolas Goaziou <[email protected]>
+;;; Copyright © 2023, 2024 Nicolas Goaziou <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -215,6 +215,9 @@ runfile to replace. If a file has no matching runfile, it
is ignored."
(files files)))
(else '()))))
(unless (null? targets)
+ ;; Default cache is located in $HOME, which is not set during build.
+ ;; Use current working directory instead.
+ (setenv "TEXMFCACHE" "texmf-cache/")
(let ((output (string-append (getcwd) "/build")))
(mkdir-p output)
(for-each (lambda (target)