[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
68/73: gnu: texlive-axodraw2: Build binary separately.
From: |
guix-commits |
Subject: |
68/73: gnu: texlive-axodraw2: Build binary separately. |
Date: |
Tue, 4 Jun 2024 16:40:15 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit c7686bc948b26ffa1d688e52e6a00f5264d95605
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue May 28 21:55:12 2024 +0200
gnu: texlive-axodraw2: Build binary separately.
* gnu/packages/tex.scm (texlive-axodraw2-bin): New variable.
(texlive-axodraw2): Use source from TEXLIVE-SOURCE and make it a regular TeX
Live package.
[arguments]: Remove it.
[inputs]: Remove OPENLIBM.
[propagated-inputs]: Add TEXLIVE-AXODRAW2-BIN.
Change-Id: I119617e48ef419e4e09887002a29a591eaa27e9e
---
gnu/packages/tex.scm | 74 ++++++++++++++++++++++++++++++++++------------------
1 file changed, 48 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 9cf1b8bfd1..747dd790a8 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -4249,7 +4249,6 @@ other parts.")
"This package provides binaries for @code{texlive-autosp}.")
(license (package-license texlive-autosp))))
-
(define-public texlive-axodraw2
(package
(name "texlive-axodraw2")
@@ -4265,31 +4264,7 @@ other parts.")
"0x1cskdm3kmf08gdrvgasd1b3l0dri9mdmk13880dz4g2rdgbvi2")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
- (arguments
- (list
- #:tests? #true
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'build-axohelp
- (lambda* (#:key tests? #:allow-other-keys)
- (with-directory-excursion "source/latex/axodraw2"
- ;; Autoreconf.
- (invoke "autoreconf" "-vfi")
- ;; Configure.
- (let ((sh (which "sh")))
- (setenv "CONFIG_SHELL" sh)
- (setenv "SHELL" sh)
- (invoke sh "configure" (string-append "--prefix=" #$output)))
- ;; Build.
- (invoke "make")
- ;; Tests.
- (when tests?
- (patch-shebang "axohelp.test") ;Bash script
- (invoke "make" "check"))
- ;; Install.
- (invoke "make" "install")))))))
- (native-inputs (list autoconf automake pkg-config))
- (inputs (list openlibm))
+ (propagated-inputs (list texlive-axodraw2-bin))
(home-page "https://ctan.org/pkg/axodraw2")
(synopsis "Feynman diagrams in a LaTeX document")
(description
@@ -4307,6 +4282,53 @@ the pdf code inserted in the output file. The
processing involves a run of
@command{pdflatex}.")
(license license:gpl3+)))
+(define-public texlive-axodraw2-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-axodraw2-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" '("axodraw2"))
+ (delete-other-directories "texk" '())))))
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(cons "--enable-axodraw2" (delete "--enable-web2c" #$flags)))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion "utils/axodraw2"
+ (invoke "make" "check")))))
+ (replace 'install
+ (lambda _
+ (with-directory-excursion "utils/axodraw2"
+ (invoke "make" "install"))))))))
+ (native-inputs '())
+ (inputs '())
+ (propagated-inputs '())
+ (home-page (package-home-page texlive-axodraw2))
+ (synopsis "Binary for @code{texlive-axodraw2}")
+ (description
+ "This package provides the binary for @code{texlive-axodraw2}.")
+ (license (package-license texlive-axodraw2))))
+
(define-public texlive-b1encoding
(package
(name "texlive-b1encoding")
- 69/73: gnu: texlive-xindy: Build binary separately., (continued)
- 69/73: gnu: texlive-xindy: Build binary separately., guix-commits, 2024/06/04
- 21/73: gnu: Add texlive-dvipdfmx-bin., guix-commits, 2024/06/04
- 55/73: gnu: Add texlive-seetexk-bin., guix-commits, 2024/06/04
- 57/73: gnu: Add texlive-t1utils-bin., guix-commits, 2024/06/04
- 61/73: gnu: Add texlive-xml2pmx-bin., guix-commits, 2024/06/04
- 71/73: gnu: Update commentary section in "tex.scm"., guix-commits, 2024/06/04
- 34/73: gnu: Add texlive-psutils-bin., guix-commits, 2024/06/04
- 56/73: gnu: Add texlive-ps2eps-bin., guix-commits, 2024/06/04
- 58/73: gnu: texlive-texdoctk: Fix runtime error., guix-commits, 2024/06/04
- 64/73: gnu: texlive-dviout-util: Build binaries separately., guix-commits, 2024/06/04
- 68/73: gnu: texlive-axodraw2: Build binary separately.,
guix-commits <=
- 73/73: gnu: texlive-texdirflatten: Add missing Perl input., guix-commits, 2024/06/04
- 31/73: gnu: Add texlive-bibtex8-bin., guix-commits, 2024/06/04
- 44/73: gnu: Add texlive-cjkutils-bin., guix-commits, 2024/06/04
- 41/73: gnu: Add texlive-makeindex-bin., guix-commits, 2024/06/04
- 48/73: gnu: Add texlive-dvi2tty-bin., guix-commits, 2024/06/04
- 65/73: gnu: texlive-ps2pk: Build binaries separately., guix-commits, 2024/06/04
- 66/73: gnu: texlive-dvipos: Build binaries separately., guix-commits, 2024/06/04
- 67/73: gnu: texlive-musixtnt: Build binary separately., guix-commits, 2024/06/04
- 72/73: gnu: texlive-xits: Fix typo in description., guix-commits, 2024/06/04