[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/69: gnu: texlive-libkpathsea: Fix TEXMFCACHE location.
From: |
guix-commits |
Subject: |
01/69: gnu: texlive-libkpathsea: Fix TEXMFCACHE location. |
Date: |
Fri, 31 May 2024 19:04:33 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 9d34fd5d5bc8371524e548f11c78f7da0246b12e
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
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 <vincent.legoll@gmail.com>
;;; Copyright © 2020, 2021 Paul Garlick <pgarlick@tourbillion-technology.com>
;;; Copyright © 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
-;;; Copyright © 2021-2023 Nicolas Goaziou <mail@nicolasgoaziou.fr>
+;;; Copyright © 2021-2024 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2021 Leo Le Bouter <lle-bout@zaclys.net>
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
;;; Copyright © 2021 Ivan Gankevich <i.gankevich@spbu.ru>
@@ -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 <rekado@elephly.net>
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2021 Thiago Jung Bauermann <bauermann@kolabnow.com>
-;;; Copyright © 2023 Nicolas Goaziou <mail@nicolasgoaziou.fr>
+;;; Copyright © 2023, 2024 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;;
;;; 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)
- branch tex-team created (now fa5229cfe8), guix-commits, 2024/05/31
- 01/69: gnu: texlive-libkpathsea: Fix TEXMFCACHE location.,
guix-commits <=
- 02/69: gnu: texlive-libkpathsea: Remove duplicate documentation., guix-commits, 2024/05/31
- 07/69: gnu: texlive-context: Fix "context" call., guix-commits, 2024/05/31
- 03/69: gnu: Add texlive-source., guix-commits, 2024/05/31
- 06/69: gnu: texlive-luatex: Set proper default values for "texmfcnf.lua"., guix-commits, 2024/05/31
- 11/69: gnu: texlive-latex-bin: Create symlinks for "latex" variants., guix-commits, 2024/05/31
- 12/69: gnu: Add texlive-mfware-bin., guix-commits, 2024/05/31
- 05/69: gnu: texlive-libkpathsea: Better default values in "texmf.cnf"., guix-commits, 2024/05/31
- 04/69: gnu: texlive-libkpathsea: Use TEXLIVE-SOURCE., guix-commits, 2024/05/31
- 10/69: gnu: tex.scm: Remove completed TODO., guix-commits, 2024/05/31
- 09/69: gnu: texlive-bin: Minimize build surface., guix-commits, 2024/05/31