[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
20/55: gnu: texlive-dvi2tty: Build executables.
From: |
guix-commits |
Subject: |
20/55: gnu: texlive-dvi2tty: Build executables. |
Date: |
Sat, 18 May 2024 10:33:29 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 56433cbfead8101000ef504feffab421819aa046
Author: Nicolas Goaziou <mail@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 | 50 +++++++++++++++++++++++++++++++++++++++-----------
1 file changed, 39 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 3e66128fe1..cf9c95b0d4 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -766,6 +766,7 @@ and should be preferred to it whenever a package would
otherwise depend on
"axodraw2"
"chktex"
"cjkutils"
+ "dvi2tty"
"dvipng"
"dvisvgm"
"kpathsea"
@@ -34035,18 +34036,45 @@ 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"))))))
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(cons* "--disable-all-pkgs"
+ "--enable-dvi2tty"
+ (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
- 09/55: gnu: texlive-upmendex: Build executable., (continued)
- 09/55: gnu: texlive-upmendex: Build executable., guix-commits, 2024/05/18
- 10/55: gnu: texlive-xindy: Refactor package., guix-commits, 2024/05/18
- 12/55: gnu: texlive-bin: Skip building axodraw2., guix-commits, 2024/05/18
- 11/55: gnu: texlive-bin: Do not build Xindy., guix-commits, 2024/05/18
- 15/55: gnu: texlive-lcdftypetools: Build executables., guix-commits, 2024/05/18
- 13/55: gnu: texlive-cjkutils: Build executables., guix-commits, 2024/05/18
- 14/55: gnu: texlive-lacheck: Build executable., guix-commits, 2024/05/18
- 16/55: gnu: texlive-t1utils: Build executables., guix-commits, 2024/05/18
- 17/55: gnu: texlive-dvipng: Build executables., guix-commits, 2024/05/18
- 18/55: gnu: texlive-afm2pl: Build executable., guix-commits, 2024/05/18
- 20/55: gnu: texlive-dvi2tty: Build executables.,
guix-commits <=
- 21/55: gnu: texlive-autosp: Build executable., guix-commits, 2024/05/18
- 22/55: gnu: texlive-velthuis: Build executable., guix-commits, 2024/05/18
- 23/55: gnu: texlive-ps2eps: Build executables., guix-commits, 2024/05/18
- 25/55: gnu: texlive-libkpathsea: Tiny refactoring., guix-commits, 2024/05/18
- 19/55: gnu: Add texlive-libptexenc., guix-commits, 2024/05/18
- 26/55: gnu: texlive-texdoctk: Fix runtime error., guix-commits, 2024/05/18
- 27/55: gnu: texlive-xml2pmx: Build executable., guix-commits, 2024/05/18
- 28/55: gnu: texlive-tpic2pdftex: Build executable., guix-commits, 2024/05/18
- 29/55: gnu: texlive-vlna: Build executable., guix-commits, 2024/05/18
- 30/55: gnu: texlive-pmx: Build executables., guix-commits, 2024/05/18