ngz pushed a commit to branch tex-team
in repository guix.

commit 17475ce98b97d36b043a58f8bff0fce5fd25272b
Author: Nicolas Goaziou <m...@nicolasgoaziou.fr>
AuthorDate: Sat May 11 15:45:50 2024 +0200

    gnu: texlive-dvi2tty: Build executables.
    
    * gnu/packages/tex.scm (texlive-dvi2tty): Inherit from TEXLIVE-BIN.
    [source]: Build from a trimmed TEXLIVE-SOURCE.
    [arguments]: Build `dvi2tty' as a single package.
    [native-inputs]: Add PKG-CONFIG and TEXLIVE-LIBKPATHSEA.
    [inputs]: Add TEXLIVE-LIBPTEXENC.
    
    * gnu/packages/tex.scm (texlive-bin): Do not build dvi2tty.
    
    Change-Id: I75b309cbf67e0a0f2635c93fea65f103086ff5fe
---
 gnu/packages/tex.scm | 51 ++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 40 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 34eb795f89..cd2cd3ad7f 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -703,6 +703,7 @@ and should be preferred to it whenever a package would 
otherwise depend on
                           "axodraw2"
                           "chktex"
                           "cjkutils"
+                          "dvi2tty"
                           "dvipng"
                           "dvisvgm"
                           "kpathsea"
@@ -34012,18 +34013,46 @@ homebrewed classes and package files.")
 
 (define-public texlive-dvi2tty
   (package
+    (inherit texlive-bin)
     (name "texlive-dvi2tty")
-    (version (number->string %texlive-revision))
-    (source (texlive-origin
-             name version
-             (list "doc/man/man1/disdvi.1"
-                   "doc/man/man1/disdvi.man1.pdf"
-                   "doc/man/man1/dvi2tty.1"
-                   "doc/man/man1/dvi2tty.man1.pdf")
-             (base32
-              "108y0qxh13x0iivgsvkk4370f471p03nyl4x9nn7lng1wrsafp6h")))
-    (outputs '("out" "doc"))
-    (build-system texlive-build-system)
+    (source
+     (origin
+       (inherit texlive-source)
+       (modules '((guix build utils)
+                  (ice-9 ftw)))
+       (snippet
+        #~(let ((delete-other-directories
+                 (lambda (root dirs)
+                   (with-directory-excursion root
+                     (for-each
+                      delete-file-recursively
+                      (scandir "."
+                               (lambda (file)
+                                 (and (not (member file (append '("." "..") 
dirs)))
+                                      (eq? 'directory (stat:type (stat 
file)))))))))))
+            (delete-other-directories "libs" '())
+            (delete-other-directories "utils" '())
+            (delete-other-directories "texk" '("dvi2tty" "ptexenc"))))))
+    (arguments
+     (substitute-keyword-arguments (package-arguments texlive-bin)
+       ((#:configure-flags flags)
+        #~(cons* "--disable-all-pkgs"
+                 "--enable-dvi2tty"
+                 "--with-system-ptexenc"
+                 (delete "--disable-dvi2tty" #$flags)))
+       ((#:phases _)
+        #~(modify-phases %standard-phases
+            (replace 'check
+              (lambda* (#:key tests? #:allow-other-keys)
+                (when tests?
+                  (with-directory-excursion "texk/dvi2tty"
+                    (invoke "make" "check")))))
+            (replace 'install
+              (lambda _
+                (with-directory-excursion "texk/dvi2tty"
+                  (invoke "make" "install"))))))))
+    (native-inputs (list pkg-config texlive-libkpathsea))
+    (inputs (list texlive-libptexenc))
     (home-page "https://ctan.org/pkg/dvi2tty";)
     (synopsis "Produce ASCII from DVI")
     (description

Reply via email to