GNU bug report logs -
#71859
[core-updates 1/3] gnu: texlive-mflua-bin: Also install "-nowin" binaries.
Previous Next
To reply to this bug, email your comments to 71859 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
andreas <at> enge.fr, guix-patches <at> gnu.org
:
bug#71859
; Package
guix-patches
.
(Sun, 30 Jun 2024 16:37:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
:
New bug report received and forwarded. Copy sent to
andreas <at> enge.fr, guix-patches <at> gnu.org
.
(Sun, 30 Jun 2024 16:37:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/tex.scm (texlive-mflua-bin)[arguments]<#:phases>: Also generate
and install "mfluajit-nowin" and "mflua-nowin" binaries.
Change-Id: I552340b991f0c46b317a04388aa4e62cddb25146
---
gnu/packages/tex.scm | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index e309839a42..2c25949637 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -48693,7 +48693,9 @@ (define-public texlive-mflua-bin
(lambda _
(with-directory-excursion "texk/web2c"
(invoke "make" "mfluajit")
- (install-file ".libs/mfluajit" bin))))))
+ (invoke "make" "mfluajit-nowin")
+ (install-file ".libs/mfluajit" bin)
+ (install-file ".libs/mfluajit-nowin" bin))))))
(add-after 'unpack 'force-lua53-build
(lambda _
(substitute* "libs/configure"
@@ -48702,7 +48704,9 @@ (define-public texlive-mflua-bin
(lambda _
(with-directory-excursion "texk/web2c"
(invoke "make" "mflua")
- (install-file ".libs/mflua" bin)))))))))
+ (invoke "make" "mflua-nowin")
+ (install-file ".libs/mflua" bin)
+ (install-file ".libs/mflua-nowin" bin)))))))))
(native-inputs (list pkg-config))
(inputs (modify-inputs (package-inputs texlive-bin)
(append potrace)))
base-commit: 75b4a29e12011ae3d1814932591e80dcb0b80aae
--
2.45.2
Information forwarded
to
mail <at> nicolasgoaziou.fr, andreas <at> enge.fr, guix-patches <at> gnu.org
:
bug#71859
; Package
guix-patches
.
(Sun, 30 Jun 2024 16:47:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 71859 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/tex.scm (texlive-kpathsea)[arguments]<#:phases>: Allow
generating all formats provided in TeX Live.
Change-Id: Ibe29eb643ee27bc4223868a76acfa4f0cfc1f74e
---
gnu/packages/tex.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 2c25949637..e6914e5ced 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -58100,7 +58100,11 @@ (define-public texlive-kpathsea
"web2c/mktexupd")
(("^version=" m)
(format #false "PATH=\"~{~a:~}$PATH\"; export PATH~%~a"
- dirs m)))))))))
+ dirs m))))))
+ (add-after 'unpack 'enable-all-configurations
+ (lambda _
+ (substitute* "web2c/fmtutil.cnf"
+ (("^#! ") "")))))))
(inputs (list gawk sed))
(propagated-inputs (list texlive-libkpathsea)) ;for the executables
(home-page "https://ctan.org/pkg/kpathsea")
--
2.45.2
Information forwarded
to
mail <at> nicolasgoaziou.fr, andreas <at> enge.fr, guix-patches <at> gnu.org
:
bug#71859
; Package
guix-patches
.
(Sun, 30 Jun 2024 16:48:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 71859 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/tex.scm (texlive-luahbtex)[native-inputs]: Add
TEXLIVE-KPATHSEA.
[properties]: Preserve native-input from upgrade.
Change-Id: I35de793e4562cd21a9d624542c06f65dee5676f2
---
gnu/packages/tex.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index e6914e5ced..214e4f764e 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -60853,10 +60853,12 @@ (define-public texlive-luahbtex
"0y47q58jggwzy5hk9n2arh0g4a92pqcavadzxa38lpadf16zxbck"))))
(outputs '("out" "doc"))
(build-system texlive-build-system)
+ (properties '((updater-extra-native-inputs "texlive-kpathsea")))
(arguments
(list
#:texlive-latex-bin? #f
#:create-formats #~(list "luahbtex")))
+ (native-inputs (list texlive-kpathsea))
(propagated-inputs
(list texlive-cm
texlive-etex
--
2.45.2
This bug report was last modified 141 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.