guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: guix: profiles: Detect TeX Live packages propagat


From: guix-commits
Subject: branch master updated: guix: profiles: Detect TeX Live packages propagated from non-TeX Live inputs.
Date: Thu, 24 Aug 2023 10:09:18 -0400

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 738b0e4ccc guix: profiles: Detect TeX Live packages propagated from 
non-TeX Live inputs.
738b0e4ccc is described below

commit 738b0e4ccc2bac3d77bb29dd6d51026d887d6b16
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Thu Aug 24 16:03:18 2023 +0200

    guix: profiles: Detect TeX Live packages propagated from non-TeX Live 
inputs.
    
    This fixes <https://issues.guix.gnu.org/65474>.
    
    * guix/profiles.scm (texlive-font-maps): Also check for TeX Live 
dependencies
    in non "texlive-" prefixed packages.
    
    For example, PYTHON-NBCONVERT propagates TeX Live inputs.  Those need to be
    found out when building ".map"" files.
    
    Co-authored-by: Andreas Enge <andreas@enge.fr>
---
 guix/profiles.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/profiles.scm b/guix/profiles.scm
index 2bd6477cf8..fea766879d 100644
--- a/guix/profiles.scm
+++ b/guix/profiles.scm
@@ -1786,7 +1786,7 @@ MANIFEST."
        (if (string-prefix? "texlive-" name)
            (cons (gexp-input thing output)
                  (append-map entry->texlive-input deps))
-           '()))))
+           (append-map entry->texlive-input deps)))))
   (define texlive-scripts-entry?
     (match-lambda
       (($ <manifest-entry> name version output thing deps)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]