[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
48/71: gnu: Add texlive-dvi2tty-bin.
From: |
guix-commits |
Subject: |
48/71: gnu: Add texlive-dvi2tty-bin. |
Date: |
Sun, 2 Jun 2024 06:21:53 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit b56046f651e2139e6af4dd766d773575f77b03b6
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue May 28 15:46:27 2024 +0200
gnu: Add texlive-dvi2tty-bin.
* gnu/packages/tex.scm (texlive-dvi2tty-bin): New variable.
(texlive-dvi2tty)[propagated-inputs]: Add TEXLIVE-DVI2TTY-BIN.
Change-Id: I4b583f4edb7205cacbe9fcb00286af0513bc88bb
---
gnu/packages/tex.scm | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index e37db2de77..177e6d88ae 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -34672,6 +34672,7 @@ homebrewed classes and package files.")
"108y0qxh13x0iivgsvkk4370f471p03nyl4x9nn7lng1wrsafp6h")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
+ (propagated-inputs (list texlive-dvi2tty-bin))
(home-page "https://ctan.org/pkg/dvi2tty")
(synopsis "Produce ASCII from DVI")
(description
@@ -34679,6 +34680,52 @@ homebrewed classes and package files.")
the document.")
(license license:gpl2)))
+(define-public texlive-dvi2tty-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-dvi2tty-bin")
+ (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 "--enable-dvi2tty" (delete "--enable-web2c" #$flags)))
+ ((#:phases phases)
+ #~(modify-phases #$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))
+ (inputs (list texlive-libkpathsea texlive-libptexenc))
+ (propagated-inputs '())
+ (home-page (package-home-page texlive-dvi2tty))
+ (synopsis "Binaries for @code{texlive-dvi2tty}")
+ (description
+ "This package provides the binaries for @code{texlive-dvi2tty}.")
+ (license (package-license texlive-dvi2tty))))
+
(define-public texlive-dviasm
(package
(name "texlive-dviasm")
- 38/71: gnu: Add texlive-ttfutils-bin., (continued)
- 38/71: gnu: Add texlive-ttfutils-bin., guix-commits, 2024/06/02
- 39/71: gnu: Add texlive-upmendex-bin., guix-commits, 2024/06/02
- 40/71: gnu: Add texlive-gsftopk-bin., guix-commits, 2024/06/02
- 41/71: gnu: Add texlive-makeindex-bin., guix-commits, 2024/06/02
- 46/71: gnu: Add texlive-detex-bin., guix-commits, 2024/06/02
- 43/71: gnu: Add texlive-vlna-bin., guix-commits, 2024/06/02
- 42/71: gnu: Add texlive-metapost-bin., guix-commits, 2024/06/02
- 44/71: gnu: Add texlive-cjkutils-bin., guix-commits, 2024/06/02
- 45/71: gnu: Add texlive-chktex-bin., guix-commits, 2024/06/02
- 47/71: gnu: Add texlive-dtl-bin., guix-commits, 2024/06/02
- 48/71: gnu: Add texlive-dvi2tty-bin.,
guix-commits <=
- 51/71: gnu: Add texlive-dvipng-bin., guix-commits, 2024/06/02
- 68/71: gnu: texlive-axodraw2: Build binary separately., guix-commits, 2024/06/02
- 49/71: gnu: Add texlive-dvidvi-bin., guix-commits, 2024/06/02
- 50/71: gnu: Add texlive-dviljk-bin., guix-commits, 2024/06/02
- 54/71: gnu: Add texlive-lacheck-bin., guix-commits, 2024/06/02
- 63/71: gnu: Add texlive-mflua-bin., guix-commits, 2024/06/02
- 52/71: gnu: Add texlive-dvisvgm-bin., guix-commits, 2024/06/02
- 60/71: gnu: texlive-kpathsea: Propagate the binaries., guix-commits, 2024/06/02
- 59/71: gnu: Add texlive-xpdfopen-bin., guix-commits, 2024/06/02
- 64/71: gnu: texlive-dviout-util: Build binaries separately., guix-commits, 2024/06/02