[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
49/97: gnu: Add texlive-detex-bin.
From: |
guix-commits |
Subject: |
49/97: gnu: Add texlive-detex-bin. |
Date: |
Fri, 21 Jun 2024 06:41:13 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 16b8d88c29cd106360b0365a371667e3a1273228
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue May 28 15:31:51 2024 +0200
gnu: Add texlive-detex-bin.
* gnu/packages/tex.scm (texlive-detex-bin): New variable.
(texlive-detex)[propagated-inputs]: Add TEXLIVE-DETEX-BIN.
Change-Id: I42aa0aad1a47287705e30184228df62a18799b41
---
gnu/packages/tex.scm | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 464c9209ef..24fd0659bf 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -34435,6 +34435,7 @@ within the document, or in the document's private
package file.")
"08d017wn7a67pmp9b5yhnfg1x2q6f48qaa5ma4bplz9a782icwjy")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
+ (propagated-inputs (list texlive-detex-bin))
(home-page "https://ctan.org/pkg/detex")
(synopsis "Strip TeX from a source file")
(description
@@ -34446,6 +34447,53 @@ commands. The author now considers this program to be
obsolete and Piotr
Kubowicz's OpenDetex as its successor.")
(license license:bsd-3)))
+(define-public texlive-detex-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-detex-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" '("detex"))))))
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(cons "--enable-detex" (delete "--enable-web2c" #$flags)))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion "texk/detex"
+ (invoke "make" "check")))))
+ (replace 'install
+ (lambda _
+ (with-directory-excursion "texk/detex"
+ (invoke "make" "install"))))))))
+ (native-inputs (list pkg-config))
+ (inputs (list texlive-libkpathsea))
+ (propagated-inputs '())
+ (home-page (package-home-page texlive-detex))
+ (synopsis "Binary for @code{texlive-detex}")
+ (description
+ "This package provides the binary for @code{texlive-detex}.")
+ (license (package-license texlive-detex))))
+
(define-public texlive-digestif
(package
(name "texlive-digestif")
- 52/97: gnu: Add texlive-dvidvi-bin., (continued)
- 52/97: gnu: Add texlive-dvidvi-bin., guix-commits, 2024/06/21
- 56/97: gnu: Add texlive-lcdftypetools-bin., guix-commits, 2024/06/21
- 58/97: gnu: Add texlive-seetexk-bin., guix-commits, 2024/06/21
- 59/97: gnu: Add texlive-ps2eps-bin., guix-commits, 2024/06/21
- 66/97: gnu: Add texlive-mflua-bin., guix-commits, 2024/06/21
- 74/97: gnu: texlive-docstrip: Remove it., guix-commits, 2024/06/21
- 78/97: gnu: texlive-scripts: Add missing "mktexfmt" symlink., guix-commits, 2024/06/21
- 79/97: gnu: python-sphinx: Fix build., guix-commits, 2024/06/21
- 89/97: gnu: Set version of all TeX Live packages to "2023.0"., guix-commits, 2024/06/21
- 42/97: gnu: Add texlive-upmendex-bin., guix-commits, 2024/06/21
- 49/97: gnu: Add texlive-detex-bin.,
guix-commits <=
- 45/97: gnu: Add texlive-metapost-bin., guix-commits, 2024/06/21
- 28/97: gnu: Add texlive-afm2pl-bin., guix-commits, 2024/06/21
- 31/97: gnu: Add texlive-gregoriotex-bin., guix-commits, 2024/06/21
- 33/97: gnu: Add texlive-velthuis-bin., guix-commits, 2024/06/21
- 35/97: gnu: Add texlive-bibtexu-bin., guix-commits, 2024/06/21
- 37/97: gnu: Add texlive-psutils-bin., guix-commits, 2024/06/21
- 46/97: gnu: Add texlive-vlna-bin., guix-commits, 2024/06/21
- 57/97: gnu: Add texlive-lacheck-bin., guix-commits, 2024/06/21
- 60/97: gnu: Add texlive-t1utils-bin., guix-commits, 2024/06/21
- 65/97: gnu: Add texlive-luajittex-bin., guix-commits, 2024/06/21