[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
47/66: gnu: Add texlive-dvidvi-bin.
From: |
guix-commits |
Subject: |
47/66: gnu: Add texlive-dvidvi-bin. |
Date: |
Wed, 29 May 2024 10:17:30 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 746bb730ce6ec3d6e5de18e539dc7dea8e63c913
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue May 28 15:49:35 2024 +0200
gnu: Add texlive-dvidvi-bin.
* gnu/packages/tex.scm (texlive-dvidvi-bin): New variable.
(texlive-dvidvi)[propagated-inputs]: Add TEXLIVE-DVIDVI-BIN.
Change-Id: I4327b4685048c6bb4833512a4ee80b87d72d6f8c
---
gnu/packages/tex.scm | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 6124440ba5..c454e9c0cd 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -34807,6 +34807,7 @@ drivers (much like DVItype).")
"1w153rqm7nlmcf6162glxz282nbb6b6hjf5h0p7mbzr0j1357sxj")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
+ (propagated-inputs (list texlive-dvidvi-bin))
(home-page "https://ctan.org/pkg/dvidvi")
(synopsis "Convert one DVI file into another")
(description
@@ -34818,6 +34819,53 @@ exclusions.")
;;
<https://metadata.ftp-master.debian.org/changelogs//main/d/dvidvi/dvidvi_1.0-8.2_copyright>.
(license license:gpl3)))
+(define-public texlive-dvidvi-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-dvidvi-bin")
+ (source
+ (origin
+ (inherit texlive-source)
+ (modules '((guix build utils)
+ (ice-9 ftw)))
+ (snippet
+ #~(let ((delete-other-directories
+ (lambda (root keep)
+ (with-directory-excursion root
+ (for-each
+ delete-file-recursively
+ (scandir
+ "."
+ (lambda (file)
+ (and (not (member file (append keep '("." ".."))))
+ (eq? 'directory (stat:type (stat file)))))))))))
+ (delete-other-directories "libs" '())
+ (delete-other-directories "utils" '())
+ (delete-other-directories "texk" '("dvidvi"))))))
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(cons "--enable-dvidvi" (delete "--enable-web2c" #$flags)))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion "texk/dvidvi"
+ (invoke "make" "check")))))
+ (replace 'install
+ (lambda _
+ (with-directory-excursion "texk/dvidvi"
+ (invoke "make" "install"))))))))
+ (native-inputs (list pkg-config))
+ (inputs (list texlive-libkpathsea))
+ (propagated-inputs '())
+ (home-page (package-home-page texlive-dvidvi))
+ (synopsis "Binary for @code{texlive-dvidvi}")
+ (description
+ "This package provides the binary for @code{texlive-dvidvi}.")
+ (license (package-license texlive-dvidvi))))
+
(define-public texlive-dviinfox
(package
(name "texlive-dviinfox")
- 39/66: gnu: Add texlive-makeindex-bin., (continued)
- 39/66: gnu: Add texlive-makeindex-bin., guix-commits, 2024/05/29
- 40/66: gnu: Add texlive-metapost-bin., guix-commits, 2024/05/29
- 38/66: gnu: Add texlive-gsftopk-bin., guix-commits, 2024/05/29
- 44/66: gnu: Add texlive-detex-bin., guix-commits, 2024/05/29
- 45/66: gnu: Add texlive-dtl-bin., guix-commits, 2024/05/29
- 46/66: gnu: Add texlive-dvi2tty-bin., guix-commits, 2024/05/29
- 48/66: gnu: Add texlive-dviljk-bin., guix-commits, 2024/05/29
- 51/66: gnu: Add texlive-lcdftypetools-bin., guix-commits, 2024/05/29
- 52/66: gnu: Add texlive-lacheck-bin., guix-commits, 2024/05/29
- 50/66: gnu: Add texlive-dvisvgm-bin., guix-commits, 2024/05/29
- 47/66: gnu: Add texlive-dvidvi-bin.,
guix-commits <=
- 49/66: gnu: Add texlive-dvipng-bin., guix-commits, 2024/05/29
- 54/66: gnu: Add texlive-ps2eps-bin., guix-commits, 2024/05/29
- 55/66: gnu: Add texlive-t1utils-bin., guix-commits, 2024/05/29
- 58/66: gnu: texlive-kpathsea: Propagate the binaries., guix-commits, 2024/05/29
- 59/66: gnu: Add texlive-xml2pmx-bin., guix-commits, 2024/05/29
- 60/66: gnu: texlive-dviout-util: Build binaries separately., guix-commits, 2024/05/29
- 61/66: gnu: texlive-ps2pk: Build binaries separately., guix-commits, 2024/05/29
- 62/66: gnu: texlive-dvipos: Build binaries separately., guix-commits, 2024/05/29
- 66/66: gnu: Update commentary section in "tex.scm"., guix-commits, 2024/05/29
- 64/66: gnu: texlive-axodraw2: Build binary separately., guix-commits, 2024/05/29