[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
35/97: gnu: Add texlive-bibtexu-bin.
From: |
guix-commits |
Subject: |
35/97: gnu: Add texlive-bibtexu-bin. |
Date: |
Fri, 21 Jun 2024 06:41:05 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit facd8dc268ad90eda8c9a2c8c0efd4858ccc2c58
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 27 23:56:13 2024 +0200
gnu: Add texlive-bibtexu-bin.
* gnu/packages/tex.scm (texlive-bibtexu-bin): New variable.
(texlive-bibtexu)[propagated-inputs]: Add TEXLIVE-BIBTEXu-BIN.
Change-Id: Iafd01d42aee35030e30a761a2f8f42b8908e82b0
---
gnu/packages/tex.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 22c07c3748..59cffa6858 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -33798,6 +33798,7 @@ order are controlled by an external configuration
file.")
"19bp8wn0ssz7gczxp0imbpgi1zwz9x3ya67f072rjzg2zmfpphqg")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
+ (propagated-inputs (list texlive-bibtexu-bin))
(home-page "https://ctan.org/pkg/bibtexu")
(synopsis "BibTeX variant supporting Unicode (UTF-8), via ICU")
(description
@@ -33805,6 +33806,34 @@ order are controlled by an external configuration
file.")
supported via the ICU library.")
(license license:gpl3+)))
+(define-public texlive-bibtexu-bin
+ (package
+ (inherit texlive-bibtex8-bin)
+ (name "texlive-bibtexu-bin")
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bibtex8-bin)
+ ((#:configure-flags flags)
+ #~(cons* "--enable-bibtexu"
+ "--disable-bibtex8"
+ (delete "--enable-bibtex8"
+ (delete "--disable-bibtexu" #$flags))))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (delete 'skip-bibtexu-test)
+ (add-after 'unpack 'skip-bibtex8-test
+ ;; This package does not build "bibtex8" binary; the test below
+ ;; is therefore bound to fail. Skip that part.
+ (lambda _
+ (substitute* "texk/bibtex-x/tests/bibtex8u-mem.test"
+ (("\\./bibtex8 .*") "exit 0\n"))))))))
+ (native-inputs (list pkg-config))
+ (inputs (list icu4c texlive-libkpathsea))
+ (home-page (package-home-page texlive-bibtexu))
+ (synopsis "Binary for @code{texlive-bibtexu}")
+ (description
+ "This package provides the binary for @code{texlive-bibtexu}.")
+ (license (package-license texlive-bibtexu))))
+
(define-public texlive-bundledoc
(package
(name "texlive-bundledoc")
- 74/97: gnu: texlive-docstrip: Remove it., (continued)
- 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, 2024/06/21
- 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 <=
- 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
- 70/97: gnu: texlive-musixtnt: Build binary separately., guix-commits, 2024/06/21
- 69/97: gnu: texlive-dvipos: Build binaries separately., guix-commits, 2024/06/21
- 64/97: gnu: Add texlive-xml2pmx-bin., guix-commits, 2024/06/21
- 72/97: gnu: texlive-xindy: Build binary separately., guix-commits, 2024/06/21
- 73/97: guix: import texlive: Propagate binaries when necessary., guix-commits, 2024/06/21