From b5d9ae22f5177778b6af28fc7848358e31cc828f Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 16 Jul 2023 03:07:29 +0200 Subject: guix: texlive importer ignores Asymptote package. Asymptote is provided in `asymptote' Guix package. OTOH, asy executable is not built from TeX Live tree. Therefore, Asymptote package from TeX Live can be ignored. * guix/import/texlive.scm (translate-depends): Ignore Asymptote package. --- guix/import/texlive.scm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'guix') diff --git a/guix/import/texlive.scm b/guix/import/texlive.scm index de08981d46..e7229b47d1 100644 --- a/guix/import/texlive.scm +++ b/guix/import/texlive.scm @@ -160,6 +160,8 @@ When TEXLIVE-ONLY is true, only TeX Live packages are returned." ;; And also development packages, which should inherit from ;; the current package anyway. ((? (cut string-suffix? "-dev" <>)) #f) + ;; Guix does not use Asymptote from TeX Live. Ignore it. + ("asymptote" #f) ;; Others. (name name)) depends))) -- cgit 1.4.1