From f3cdb6e20336560ed40a7fe6b752ce27152c5743 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 19 Jun 2023 15:18:35 +0200 Subject: guix: texlive importer allows meta-packages to build TeX formats. * guix/import/texlive.scm (tlpdb->package): A package with no locations can still build TeX format files, and therefore may use TEXLIVE-BUILD-SYSTEM. --- guix/import/texlive.scm | 51 +++++++++++++++++++++++++++---------------------- 1 file changed, 28 insertions(+), 23 deletions(-) (limited to 'guix/import') diff --git a/guix/import/texlive.scm b/guix/import/texlive.scm index da25df0487..a26e467dca 100644 --- a/guix/import/texlive.scm +++ b/guix/import/texlive.scm @@ -394,9 +394,10 @@ of those files are returned that are unexpectedly installed." (source (with-store store (download-multi-svn-to-store store ref (string-append name "-svn-multi-checkout"))))) - (let* ((meta-package? (null? locs)) - (scripts (and (not meta-package?) - (linked-scripts texlive-name package-database)))) + (let* ((scripts (linked-scripts texlive-name package-database)) + (tex-formats (formats data)) + (meta-package? (null? locs)) + (empty-package? (and meta-package? (not (pair? tex-formats))))) (values `(package (name ,name) @@ -414,29 +415,33 @@ of those files are returned that are unexpectedly installed." ,@(if (assoc-ref data 'docfiles) '((outputs '("out" "doc"))) '()) - (build-system ,(if meta-package? + ;; Set build-system. + ;; + ;; Use trivial build system only when the package contains no files, + ;; and no TeX format file is expected to be built. + (build-system ,(if empty-package? 'trivial-build-system 'texlive-build-system)) ;; Generate arguments field. - ,@(if meta-package? - '((arguments (list #:builder #~(mkdir #$output)))) - (let* ((formats (formats data)) - (latex-bin-dependency? - (member texlive-name - (latex-bin-dependency-tree package-database))) - (arguments - (append (if latex-bin-dependency? - '(#:texlive-latex-bin? #f) - '()) - (if (pair? scripts) - `(#:link-scripts #~(list ,@scripts)) - '()) - (if (pair? formats) - `(#:create-formats #~(list ,@formats)) - '())))) - (if (pair? arguments) - `((arguments (list ,@arguments))) - '()))) + ,@(let* ((latex-bin-dependency? + (member texlive-name + (latex-bin-dependency-tree package-database))) + (arguments + (append (if empty-package? + '(#:builder #~(mkdir #$output)) + '()) + (if latex-bin-dependency? + '(#:texlive-latex-bin? #f) + '()) + (if (pair? scripts) + `(#:link-scripts #~(list ,@scripts)) + '()) + (if (pair? tex-formats) + `(#:create-formats #~(list ,@tex-formats)) + '())))) + (if (pair? arguments) + `((arguments (list ,@arguments))) + '())) ;; Native inputs. ;; ;; Texlive build system generates font metrics whenever a font -- cgit v1.2.3