all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* TeXlive packaging issues
@ 2023-03-28 19:30 Emmanuel Beffara
  2023-03-29 18:48 ` bug#56556: " Josselin Poiret
  0 siblings, 1 reply; 5+ messages in thread
From: Emmanuel Beffara @ 2023-03-28 19:30 UTC (permalink / raw)
  To: help-guix; +Cc: 56556

Hello Guix,

I would like to share a few thoughts on how TeXlive is currently handled in
Guix. The package `texlive` contains all of TeXlive, it works fine but it is
arguably too big to be practical. The documentation rightfully says

> We recommend using the modular package set because it is much less
> resource-hungry. 

Yet assembling modular sets is problematic for various reasons.

Firstly, unless I am missing something, creating a manifest with the right set
of packages is tedious: one has to guess the Guix package that matches each
LaTeX package, and the correspondence is not obvious. Thankfully, with a
working installation, `tlmgr show something.sty` helps finding the TeXlive
package that contains the file and `guix search texlive something` finds the
corresponding Guix package if there is one (it could be named
`texlive-something` or `texlive-latex-something`, this feels somewhat
inconsistent). When trying to compile a complex document, doing that for every
package and dependency is time-consuming (compile, read compilation errors,
install more packages, restart).

Secondly, many packages are missing. Apparently, `(gnu packages tex)` contains
an arbitrary set of common packages, likely defined by people who needed them
and had the skill to produce a patch for them. It is fairly easy to produce
new definitions using `guix import texlive something` and adjusting the
result, still it feels more complicated than it ought to be. Considering how
well TeXlive is organized, it should be possible to automatically extract the
set of all packages in a given release and turn the result into a big
comprehensive Guile module.

Besides, importing TeXlive "collections" could be a useful intermediate
between taking the whole system and picking packages individually.

Thirdly, formats are apparently not handled right. The main issue is with
hyphenation (hence the cc on an open issue): hyphenation patterns need to be
compiled into the formats to be available in documents, so the format files
should be built depending on which `texlive-hyphen-something` packages are
installed. Currently this is not the case:

```
$ guix shell --pure coreutils texlive-base texlive-latex-base -- /bin/sh -c 'realpath $GUIX_TEXMF/web2c/pdflatex.fmt'
/gnu/store/m1vh5mm4gjlqzaylfxmxbx5g3j20k8wn-texlive-latex-base-59745/share/texmf-dist/web2c/pdflatex.fmt
$ guix shell --pure coreutils texlive-base texlive-latex-base texlive-hyphen-base texlive-hyphen-french -- /bin/sh -c 'realpath $GUIX_TEXMF/web2c/pdflatex.fmt'
/gnu/store/m1vh5mm4gjlqzaylfxmxbx5g3j20k8wn-texlive-latex-base-59745/share/texmf-dist/web2c/pdflatex.fmt
```

If the format is always the same, then no modular installation can do any
hyphenation, as reported in https://issues.guix.gnu.org/56556. There might be
other things than hyphenation that require similar treatment.

That said, I don't know what would be the best way to contribute.

-- 
Emmanuel


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: bug#56556: TeXlive packaging issues
  2023-03-28 19:30 TeXlive packaging issues Emmanuel Beffara
@ 2023-03-29 18:48 ` Josselin Poiret
  2023-04-07 10:33   ` bug#56556: texlive-babel-dutch with and without texlive-hyphen-dutch: No hyphenation patterns were preloaded Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: Josselin Poiret @ 2023-03-29 18:48 UTC (permalink / raw)
  To: Emmanuel Beffara, help-guix; +Cc: 56556

[-- Attachment #1: Type: text/plain, Size: 3642 bytes --]

Hi Emmanuel,

Emmanuel Beffara <manu@beffara.org> writes:

> Firstly, unless I am missing something, creating a manifest with the right set
> of packages is tedious: one has to guess the Guix package that matches each
> LaTeX package, and the correspondence is not obvious. Thankfully, with a
> working installation, `tlmgr show something.sty` helps finding the TeXlive
> package that contains the file and `guix search texlive something` finds the
> corresponding Guix package if there is one (it could be named
> `texlive-something` or `texlive-latex-something`, this feels somewhat
> inconsistent). When trying to compile a complex document, doing that for every
> package and dependency is time-consuming (compile, read compilation errors,
> install more packages, restart).

I agree, although this is because the tex packages aren't super well
packaged.  A lot of dependencies aren't actually included, meaning you
need to add them manually.  This could be improved by just fixing those
package definitions to include them, I actually have some comments about
this in my TODOs.

> Secondly, many packages are missing. Apparently, `(gnu packages tex)` contains
> an arbitrary set of common packages, likely defined by people who needed them
> and had the skill to produce a patch for them. It is fairly easy to produce
> new definitions using `guix import texlive something` and adjusting the
> result, still it feels more complicated than it ought to be. Considering how
> well TeXlive is organized, it should be possible to automatically extract the
> set of all packages in a given release and turn the result into a big
> comprehensive Guile module.

Actually, no, for 2 reasons: as you said, you often need to adjust the
result of the import, and some of them need to be individually
inspected.  Also, upstream doesn't report what inter-package
dependencies there are (AFAIK).  This prevents us from generating the
right packages (see above).

> Besides, importing TeXlive "collections" could be a useful intermediate
> between taking the whole system and picking packages individually.
>
> Thirdly, formats are apparently not handled right. The main issue is with
> hyphenation (hence the cc on an open issue): hyphenation patterns need to be
> compiled into the formats to be available in documents, so the format files
> should be built depending on which `texlive-hyphen-something` packages are
> installed. Currently this is not the case:
>
> ```
> $ guix shell --pure coreutils texlive-base texlive-latex-base -- /bin/sh -c 'realpath $GUIX_TEXMF/web2c/pdflatex.fmt'
> /gnu/store/m1vh5mm4gjlqzaylfxmxbx5g3j20k8wn-texlive-latex-base-59745/share/texmf-dist/web2c/pdflatex.fmt
> $ guix shell --pure coreutils texlive-base texlive-latex-base texlive-hyphen-base texlive-hyphen-french -- /bin/sh -c 'realpath $GUIX_TEXMF/web2c/pdflatex.fmt'
> /gnu/store/m1vh5mm4gjlqzaylfxmxbx5g3j20k8wn-texlive-latex-base-59745/share/texmf-dist/web2c/pdflatex.fmt
> ```
>
> If the format is always the same, then no modular installation can do any
> hyphenation, as reported in https://issues.guix.gnu.org/56556. There might be
> other things than hyphenation that require similar treatment.

I don't really know how we could fix this: maybe build the formats with
all the hyphenation packages enabled?

> That said, I don't know what would be the best way to contribute.

I think fixing step by step all the packages you find to be deficient is
already a good first step.  I've been planning to do that as well but
got swept up in other things.

HTH!

Best,
-- 
Josselin Poiret

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 682 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: bug#56556: texlive-babel-dutch with and without texlive-hyphen-dutch: No hyphenation patterns were preloaded
  2023-03-29 18:48 ` bug#56556: " Josselin Poiret
@ 2023-04-07 10:33   ` Ludovic Courtès
  2023-04-07 10:47     ` Emmanuel Beffara
  0 siblings, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2023-04-07 10:33 UTC (permalink / raw)
  To: Josselin Poiret; +Cc: Emmanuel Beffara, help-guix, 56556, Maxim Cournoyer

Hello Josselin and all,

I was just bitten by the infamous:

  Package babel Warning: No hyphenation patterns were preloaded for
  […]

That’s a real issue because it makes modular TeX Live pretty much
unusable for languages other than English.

Josselin Poiret <dev@jpoiret.xyz> skribis:

>> Thirdly, formats are apparently not handled right. The main issue is with
>> hyphenation (hence the cc on an open issue): hyphenation patterns need to be
>> compiled into the formats to be available in documents, so the format files
>> should be built depending on which `texlive-hyphen-something` packages are
>> installed. Currently this is not the case:
>>
>> ```
>> $ guix shell --pure coreutils texlive-base texlive-latex-base -- /bin/sh -c 'realpath $GUIX_TEXMF/web2c/pdflatex.fmt'
>> /gnu/store/m1vh5mm4gjlqzaylfxmxbx5g3j20k8wn-texlive-latex-base-59745/share/texmf-dist/web2c/pdflatex.fmt
>> $ guix shell --pure coreutils texlive-base texlive-latex-base texlive-hyphen-base texlive-hyphen-french -- /bin/sh -c 'realpath $GUIX_TEXMF/web2c/pdflatex.fmt'
>> /gnu/store/m1vh5mm4gjlqzaylfxmxbx5g3j20k8wn-texlive-latex-base-59745/share/texmf-dist/web2c/pdflatex.fmt
>> ```
>>
>> If the format is always the same, then no modular installation can do any
>> hyphenation, as reported in https://issues.guix.gnu.org/56556. There might be
>> other things than hyphenation that require similar treatment.
>
> I don't really know how we could fix this: maybe build the formats with
> all the hyphenation packages enabled?

The intertubes suggest running ‘fmtutil --all’ to get hyphenations
packages straight.  Is this something we should do in the TeX Live
profile hook for example?

Emmanuel, is this what you had in mind when you wrote about compilation
of hyphenation patterns above?

(Cc’ing Maxim who has experience with TeX Live.)

Thanks,
Ludo’.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: bug#56556: texlive-babel-dutch with and without texlive-hyphen-dutch: No hyphenation patterns were preloaded
  2023-04-07 10:33   ` bug#56556: texlive-babel-dutch with and without texlive-hyphen-dutch: No hyphenation patterns were preloaded Ludovic Courtès
@ 2023-04-07 10:47     ` Emmanuel Beffara
  2023-05-19 15:22       ` Simon Tournier
  0 siblings, 1 reply; 5+ messages in thread
From: Emmanuel Beffara @ 2023-04-07 10:47 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: Josselin Poiret, help-guix, 56556, Maxim Cournoyer

Hi,

De Ludovic Courtès le 07/04/2023 à 12:33:
> > I don't really know how we could fix this: maybe build the formats with
> > all the hyphenation packages enabled?
> 
> The intertubes suggest running ‘fmtutil --all’ to get hyphenations
> packages straight.  Is this something we should do in the TeX Live
> profile hook for example?
> 
> Emmanuel, is this what you had in mind when you wrote about compilation
> of hyphenation patterns above?

Indeed !

Doing that is the job of fmtutil and it should be used for building
environments that include parts of TeXlive.

-- 
Emmanuel


^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#56556: texlive-babel-dutch with and without texlive-hyphen-dutch: No hyphenation patterns were preloaded
  2023-04-07 10:47     ` Emmanuel Beffara
@ 2023-05-19 15:22       ` Simon Tournier
  0 siblings, 0 replies; 5+ messages in thread
From: Simon Tournier @ 2023-05-19 15:22 UTC (permalink / raw)
  To: Emmanuel Beffara
  Cc: help-guix, Ludovic Courtès, 56556, Josselin Poiret,
	Maxim Cournoyer

Hi,

Argh!  I am just annoyed by this bug too; and again and again.  How to
make progress?

On ven., 07 avril 2023 at 12:47, Emmanuel Beffara <manu@beffara.org> wrote:

>> > I don't really know how we could fix this: maybe build the formats with
>> > all the hyphenation packages enabled?
>>
>> The intertubes suggest running ‘fmtutil --all’ to get hyphenations
>> packages straight.  Is this something we should do in the TeX Live
>> profile hook for example?
>>
>> Emmanuel, is this what you had in mind when you wrote about compilation
>> of hyphenation patterns above?
>
> Indeed !
>
> Doing that is the job of fmtutil and it should be used for building
> environments that include parts of TeXlive.

Well, it does not appear as easy as the intertubes is suggesting. ;-)

First, please note that texlive-babel-<foo> drags texlive-hyphen-<bar>

--8<---------------cut here---------------start------------->8---
$ guix graph --path texlive-babel-french texlive-hyphen-esperanto -t bag-emerged
texlive-babel-french@59745
texlive-latex-base@59745
texlive-hyphen-esperanto@59745
--8<---------------cut here---------------end--------------->8---

Other said, the profile contains all the hyphenations for all the
languages.  Therefore, I am not sure ’fmtutil --all’ will do the job out
of the box – I do not know.  Savvy TeX folk, WDYT?

--8<---------------cut here---------------start------------->8---
$ guix shell texlive-base texlive-babel-french
$ find $GUIX_ENVIRONMENT -name "*hyph-*" -print | wc -l
318

$ find $GUIX_ENVIRONMENT -name "*hyph-*" -print | head
/gnu/store/iffpalk5vyyykmll7i9g89lnyzcj505b-profile/share/texmf-dist/scripts/hyph-utf8.rb
/gnu/store/iffpalk5vyyykmll7i9g89lnyzcj505b-profile/share/texmf-dist/scripts/languages/es/eshyph-make.lua
/gnu/store/iffpalk5vyyykmll7i9g89lnyzcj505b-profile/share/texmf-dist/tex/generic/dehyph-exptl
/gnu/store/iffpalk5vyyykmll7i9g89lnyzcj505b-profile/share/texmf-dist/tex/generic/hyph-utf8
/gnu/store/iffpalk5vyyykmll7i9g89lnyzcj505b-profile/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-cs.tex
/gnu/store/iffpalk5vyyykmll7i9g89lnyzcj505b-profile/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-rm.tex
/gnu/store/iffpalk5vyyykmll7i9g89lnyzcj505b-profile/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ml.tex
/gnu/store/iffpalk5vyyykmll7i9g89lnyzcj505b-profile/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-lt.tex
/gnu/store/iffpalk5vyyykmll7i9g89lnyzcj505b-profile/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-pt.tex
/gnu/store/iffpalk5vyyykmll7i9g89lnyzcj505b-profile/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-mr.tex
--8<---------------cut here---------------end--------------->8---


Now, let try ’fmtutil --all’ as part of some hook:

--8<---------------cut here---------------start------------->8---
$ git diff
diff --git a/guix/profiles.scm b/guix/profiles.scm
index 6467e464c8..b785fefb08 100644
--- a/guix/profiles.scm
+++ b/guix/profiles.scm
@@ -1854,6 +1854,12 @@ (define (texlive-font-maps manifest)
                     (string-append "--pdftexoutputdir="
                                    maproot "pdftex/updmap"))

+            (pk 'start)
+            ;; Generate hyphenations for Babel and friends.
+            (invoke #$(file-append texlive-bin "/bin/fmtutil-sys")
+                    "--all")
+            (pk 'end)
+
             ;; Create ls-R file.  I know, that's not *just* for font maps, but
             ;; we've generated new files, so there's no point in running it
             ;; any earlier.  The ls-R file must act on a full TeX Live tree,
@@ -1870,7 +1876,7 @@ (define (texlive-font-maps manifest)

   (mlet %store-monad ((texlive-base (manifest-lookup-package manifest "texlive-base")))
     (if (and texlive-base (pair? texlive-inputs))
-        (gexp->derivation "texlive-font-maps" build
+        (gexp->derivation "texlive-font-maps-debug" build
                           #:substitutable? #f
                           #:local-build? #t
                           #:properties

$ ./pre-inst-env guix shell texlive-base texlive-babel-french --rebuild-cache
The following derivation will be built:
  /gnu/store/hj7gc1phqqai88cq6blrxvmrifsyhy3h-profile.drv

building TeX Live font maps...
-builder for `/gnu/store/37mjkgann15rj95m3vqjs8d20kssz8pm-texlive-font-maps-debug.drv' failed with exit code 1
build of /gnu/store/37mjkgann15rj95m3vqjs8d20kssz8pm-texlive-font-maps-debug.drv failed
View build log at '/var/log/guix/drvs/37/mjkgann15rj95m3vqjs8d20kssz8pm-texlive-font-maps-debug.drv.gz'.
cannot build derivation `/gnu/store/hj7gc1phqqai88cq6blrxvmrifsyhy3h-profile.drv': 1 dependencies couldn't be built
guix shell: error: build of `/gnu/store/hj7gc1phqqai88cq6blrxvmrifsyhy3h-profile.drv' failed
--8<---------------cut here---------------end--------------->8---

Hum, let’s inspect the log of this derivation.  See below the complete
log.  Roughly speaking:

--8<---------------cut here---------------start------------->8---
fmtutil [INFO]: disabled formats: 5
fmtutil [INFO]: successfully rebuilt formats: 1
fmtutil [INFO]: failed to build: 53 (luajittex/luajittex xetex/xetex luatex/luatex ptex/ptex eptex/eptex luahbtex/luahbtex euptex/euptex uptex/uptex tex/tex aleph/aleph luajithbtex/luajithbtex pdftex/pdftex pdftex/utf8mex pdftex/jadetex pdftex/xmltex pdftex/pdfetex pdftex/pdfjadetex pdftex/mptopdf pdftex/pdfcslatex mf-nowin/mf xetex/xelatex luatex/optex pdftex/pdflatex-dev pdftex/pdfmex pdftex/latex-dev luahbtex/lualatex xetex/xelatex-dev pdftex/pdfxmltex luatex/dviluatex luatex/pdfcsplain pdftex/pdfcsplain xetex/pdfcsplain pdftex/latex luatex/dvilualatex-dev pdftex/texsis pdftex/cslatex pdftex/pdflatex eptex/platex-dev euptex/uplatex-dev luatex/luacsplain pdftex/amstex eptex/platex pdftex/mltex pdftex/mex euptex/uplatex luatex/dvilualatex pdftex/etex pdftex/csplain tex/lollipop pdftex/eplain pdftex/cont-en xetex/cont-en luahbtex/lualatex-dev)
fmtutil [INFO]: total formats: 59
fmtutil [INFO]: exiting with status 53
--8<---------------cut here---------------end--------------->8---

After roaming on TeX documentation, I do not find the way for
configuring ’fmutils’.  Or how to turn these failures to pass?


Cheers,
simon


--

--8<---------------cut here---------------start------------->8---
;;; (start)
fmtutil: fmtutil is using the following fmtutil.cnf files (in precedence order):
fmtutil:   /tmp/texlive/share/texmf-dist/web2c/fmtutil.cnf
fmtutil: fmtutil is using the following fmtutil.cnf file for writing changes:
fmtutil:   {/tmp/texlive/share/texmf-dist}/../texmf-config/web2c/fmtutil.cnf
fmtutil [INFO]: writing formats under /tmp/guix-build-texlive-font-maps-debug.drv-0/{/tmp/texlive/share/texmf-var/web2c
fmtutil [INFO]: --- remaking luajittex with luajittex
fmtutil [INFO]: --- remaking xetex with xetex
fmtutil [INFO]: --- remaking luatex with luatex
fmtutil [INFO]: --- remaking ptex with ptex
fmtutil [INFO]: --- remaking eptex with eptex
fmtutil [INFO]: --- remaking luahbtex with luahbtex
fmtutil [INFO]: --- remaking euptex with euptex
fmtutil [INFO]: --- remaking uptex with uptex
fmtutil [INFO]: --- remaking tex with tex
fmtutil [INFO]: --- remaking aleph with aleph
fmtutil [INFO]: --- remaking luajithbtex with luajithbtex
fmtutil [INFO]: --- remaking pdftex with pdftex
fmtutil [INFO]: --- remaking utf8mex with pdftex
fmtutil [INFO]: --- remaking jadetex with pdftex
fmtutil [INFO]: --- remaking xmltex with pdftex
fmtutil [INFO]: --- remaking pdfetex with pdftex
fmtutil [INFO]: --- remaking pdfjadetex with pdftex
fmtutil [INFO]: --- remaking mptopdf with pdftex
fmtutil [INFO]: --- remaking pdfcslatex with pdftex
fmtutil [INFO]: --- remaking mf with mf-nowin
fmtutil: running `mf-nowin -ini   -jobname=mf -progname=mf -translate-file=cp227.tcx mf.ini' ...
This is METAFONT, Version 2.71828182 (TeX Live 2021/GNU Guix) (INIMF)
(/tmp/texlive/share/texmf-dist/web2c/cp227.tcx)
(/tmp/texlive/share/texmf-dist/metafont/config/mf.ini (/tmp/texlive/share/texmf-dist/metafont/base/plain.mf
Preloading the plain base, version 2.71: preliminaries,
 basic constants and mathematical macros,
 macros for converting from device-independent units to pixels,
 macros and tables for various modes of operation,
 macros for drawing and filling,
 macros for proof labels and rules,
 macros for character and font administration,
and a few last-minute items.)
kpathsea: Running mktexmf modes

! I can't find file `modes'.
l.3 \input modes

Please type another input file name:
! Emergency stop.
l.3 \input modes

Transcript written on mf.log.
fmtutil [INFO]: log file copied to: /tmp/guix-build-texlive-font-maps-debug.drv-0/{/tmp/texlive/share/texmf-var/web2c/metafont/mf.log
fmtutil [INFO]: --- remaking xelatex with xetex
fmtutil [INFO]: --- remaking optex with luatex
fmtutil [INFO]: --- remaking pdflatex-dev with pdftex
fmtutil: running `pdftex -ini   -jobname=pdflatex-dev -progname=pdflatex-dev -translate-file=cp227.tcx *pdflatex.ini' ...
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021/GNU Guix) (INITEX)
 restricted \write18 enabled.
 (/tmp/texlive/share/texmf-dist/web2c/cp227.tcx)
entering extended mode
(/tmp/texlive/share/texmf-dist/tex/latex/latexconfig/pdflatex.ini
! I can't find file `pdftexconfig.tex'.
l.2 \input pdftexconfig.tex

(Press Enter to retry, or Control-D to exit)
Please type another input file name:
! Emergency stop.
l.2 \input pdftexconfig.tex

No pages of output.
Transcript written on pdflatex-dev.log.
fmtutil [INFO]: log file copied to: /tmp/guix-build-texlive-font-maps-debug.drv-0/{/tmp/texlive/share/texmf-var/web2c/pdftex/pdflatex-dev.log
fmtutil [INFO]: --- remaking pdfmex with pdftex
fmtutil [INFO]: --- remaking latex-dev with pdftex
fmtutil: running `pdftex -ini   -jobname=latex-dev -progname=latex-dev -translate-file=cp227.tcx *latex.ini' ...
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021/GNU Guix) (INITEX)
 restricted \write18 enabled.
 (/tmp/texlive/share/texmf-dist/web2c/cp227.tcx)
entering extended mode
(/tmp/texlive/share/texmf-dist/tex/latex/latexconfig/latex.ini
! I can't find file `pdftexconfig'.
l.7     \input pdftexconfig

(Press Enter to retry, or Control-D to exit)
Please type another input file name:
! Emergency stop.
l.7     \input pdftexconfig

No pages of output.
Transcript written on latex-dev.log.
fmtutil [INFO]: log file copied to: /tmp/guix-build-texlive-font-maps-debug.drv-0/{/tmp/texlive/share/texmf-var/web2c/pdftex/latex-dev.log
fmtutil [INFO]: --- remaking lualatex with luahbtex
fmtutil [INFO]: --- remaking xelatex-dev with xetex
fmtutil [INFO]: --- remaking pdfxmltex with pdftex
fmtutil [INFO]: --- remaking dviluatex with luatex
fmtutil [INFO]: --- remaking pdfcsplain with luatex
fmtutil [INFO]: --- remaking pdfcsplain with pdftex
fmtutil [INFO]: --- remaking pdfcsplain with xetex
fmtutil [INFO]: --- remaking latex with pdftex
fmtutil: running `pdftex -ini   -jobname=latex -progname=latex -translate-file=cp227.tcx *latex.ini' ...
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021/GNU Guix) (INITEX)
 restricted \write18 enabled.
 (/tmp/texlive/share/texmf-dist/web2c/cp227.tcx)
entering extended mode
(/tmp/texlive/share/texmf-dist/tex/latex/latexconfig/latex.ini
! I can't find file `pdftexconfig'.
l.7     \input pdftexconfig

(Press Enter to retry, or Control-D to exit)
Please type another input file name:
! Emergency stop.
l.7     \input pdftexconfig

No pages of output.
Transcript written on latex.log.
fmtutil [INFO]: log file copied to: /tmp/guix-build-texlive-font-maps-debug.drv-0/{/tmp/texlive/share/texmf-var/web2c/pdftex/latex.log
fmtutil [INFO]: --- remaking dvilualatex-dev with luatex
fmtutil [INFO]: --- remaking texsis with pdftex
fmtutil [INFO]: --- remaking cslatex with pdftex
fmtutil [INFO]: --- remaking pdflatex with pdftex
fmtutil: running `pdftex -ini   -jobname=pdflatex -progname=pdflatex -translate-file=cp227.tcx *pdflatex.ini' ...
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021/GNU Guix) (INITEX)
 restricted \write18 enabled.
 (/tmp/texlive/share/texmf-dist/web2c/cp227.tcx)
entering extended mode
(/tmp/texlive/share/texmf-dist/tex/latex/latexconfig/pdflatex.ini
! I can't find file `pdftexconfig.tex'.
l.2 \input pdftexconfig.tex

(Press Enter to retry, or Control-D to exit)
Please type another input file name:
! Emergency stop.
l.2 \input pdftexconfig.tex

No pages of output.
Transcript written on pdflatex.log.
fmtutil [INFO]: log file copied to: /tmp/guix-build-texlive-font-maps-debug.drv-0/{/tmp/texlive/share/texmf-var/web2c/pdftex/pdflatex.log
fmtutil [INFO]: --- remaking platex-dev with eptex
fmtutil [INFO]: --- remaking uplatex-dev with euptex
fmtutil [INFO]: --- remaking mllatex with pdftex
fmtutil: running `pdftex -ini   -jobname=mllatex -progname=mllatex -translate-file=cp227.tcx -mltex *mllatex.ini' ...
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021/GNU Guix) (INITEX)
 restricted \write18 enabled.
 (/tmp/texlive/share/texmf-dist/web2c/cp227.tcx)
entering extended mode
MLTeX v2.2 enabled
(/tmp/texlive/share/texmf-dist/tex/latex/latexconfig/mllatex.ini
(/tmp/texlive/share/texmf-dist/tex/latex/base/latex.ltx (/tmp/texlive/share/texmf-dist/tex/latex/base/texsys.cfg)
./texsys.aux found


\@currdir set to: ./.


Assuming \openin and \input
have the same search path.


Defining UNIX/DOS style filename parser.

catcodes, registers, parameters,
LaTeX2e <2020-10-01> patch level 4
(/tmp/texlive/share/texmf-dist/tex/latex/l3kernel/expl3.ltx (/tmp/texlive/share/texmf-dist/tex/latex/l3kernel/expl3-code.tex (/tmp/texlive/share/texmf-dist/tex/latex/l3kernel/l3deprecation.def))) (/tmp/texlive/share/texmf-dist/tex/latex/l3packages/xparse.ltx (/tmp/texlive/share/texmf-dist/tex/latex/l3packages/xparse-generic.tex)) hacks, control, par, spacing, files, font encodings, lengths,
====================================

Local config file fonttext.cfg used

====================================
(/tmp/texlive/share/texmf-dist/tex/latex/base/fonttext.cfg (/tmp/texlive/share/texmf-dist/tex/latex/base/fonttext.ltx
=== Don't modify this file, use a .cfg file instead ===

(/tmp/texlive/share/texmf-dist/tex/latex/base/omlenc.def) (/tmp/texlive/share/texmf-dist/tex/latex/base/omsenc.def) (/tmp/texlive/share/texmf-dist/tex/latex/base/ot1enc.def) (/tmp/texlive/share/texmf-dist/tex/latex/base/t1enc.def) (/tmp/texlive/share/texmf-dist/tex/latex/base/ts1enc.def) (/tmp/texlive/share/texmf-dist/tex/latex/base/ts1cmr.fd) (/tmp/texlive/share/texmf-dist/tex/latex/base/t1cmr.fd) (/tmp/texlive/share/texmf-dist/tex/latex/base/ot1cmr.fd) (/tmp/texlive/share/texmf-dist/tex/latex/base/ot1cmss.fd) (/tmp/texlive/share/texmf-dist/tex/latex/base/ot1cmtt.fd)))
====================================

Local config file fontmath.cfg used

====================================
(/tmp/texlive/share/texmf-dist/tex/latex/base/fontmath.cfg (/tmp/texlive/share/texmf-dist/tex/latex/base/fontmath.ltx
=== Don't modify this file, use a .cfg file instead ===

(/tmp/texlive/share/texmf-dist/tex/latex/base/omlcmm.fd) (/tmp/texlive/share/texmf-dist/tex/latex/base/omscmsy.fd) (/tmp/texlive/share/texmf-dist/tex/latex/base/omxcmex.fd) (/tmp/texlive/share/texmf-dist/tex/latex/base/ucmr.fd)))
====================================

Local config file preload.cfg used

=====================================
(/tmp/texlive/share/texmf-dist/tex/latex/base/preload.cfg (/tmp/texlive/share/texmf-dist/tex/latex/base/preload.ltx)) page nos., x-ref, environments, center, verbatim, math definitions, boxes, title, sectioning, contents, floats, footnotes, index, bibliography, output,
===========================================
Local configuration file hyphen.cfg used
===========================================
(/tmp/texlive/share/texmf-dist/tex/generic/babel/hyphen.cfg (/tmp/texlive/share/texmf-dist/tex/generic/hyphen/hyphen.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyphen/dumyhyph.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyphen/zerohyph.tex) (/tmp/texlive/share/texmf-dist/tex/generic/dehyph-exptl/dehypht-x-2021-02-26.tex dehyph-exptl: using an 8-bit TeX engine. (/tmp/texlive/share/texmf-dist/tex/generic/dehyph-exptl/dehypht-x-2021-02-26.pat German Hyphenation Patterns (Traditional Orthography) `dehypht-x' 2021-02-26 (WL))) (/tmp/texlive/share/texmf-dist/tex/generic/dehyph-exptl/dehyphn-x-2021-02-26.tex dehyph-exptl: using an 8-bit TeX engine. (/tmp/texlive/share/texmf-dist/tex/generic/dehyph-exptl/dehyphn-x-2021-02-26.pat German Hyphenation Patterns (Reformed Orthography, 2006) `dehyphn-x' 2021-02-26 (WL))) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-af.tex EC Afrikaans hyphenation patterns
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-af.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-grc.tex Hyphenation patterns for Ancient Greek (/tmp/texlive/share/texmf-dist/tex/generic/hyphen/grahyph5.tex Hyphenation patterns for Ancient Greek)) (/tmp/texlive/share/texmf-dist/tex/generic/hyphen/ibyhyph.tex Greek hyphenation patterns for Ibycus encoding, v3.0) (/tmp/texlive/share/texmf-dist/tex/generic/hyphen/zerohyph.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-hy.tex No Armenian hyphenation patterns - only for Unicode engines) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-eu.tex EC Basque hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-eu.tex))
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-be.tex T2A Belarusian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-t2a.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-be.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-bg.tex T2A Bulgarian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-t2a.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-bg.tex Bulgarian hyphenation patterns (options: --safe-morphology --standalone-tex, version 21 October 2017))) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ca.tex EC Catalan hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ca.tex))
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-zh-latn-pinyin.tex EC Pinyin Hyphenation Patterns (with tone markers) 2018-11-25 (WL) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-zh-latn-pinyin.ec.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-cu.tex No Church Slavonic hyphenation patterns - only for Unicode engines) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-cop.tex Coptic hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex-8bit/copthyph.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-hr.tex EC Croatian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-hr.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-cs.tex EC Czech hyphenation patterns
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-cs.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-da.tex EC Danish hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-da.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-nl.tex EC Dutch hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-nl.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-en-gb.tex ASCII Hyphenation patterns for British English (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-en-gb.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-en-us.tex
ASCII Hyphenation patterns for American English (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-en-us.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-eo.tex IL3 Esperanto hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-il3.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-eo.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-et.tex EC Estonian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-et.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-mul-ethi.tex No Pan-Ethiopic hyphenation patterns - only for Unicode engines) (/tmp/texlive/share/texmf-dist/tex/generic/hyphen/zerohyph.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-fi.tex
EC Finnish hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-fi.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-fi-x-school.tex EC Finnish hyphenation patterns for school (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-fi-x-school.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-fr.tex EC French hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-fr.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-fur.tex EC Friulan hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex)
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-fur.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-gl.tex EC Galician hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-gl.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ka.tex T8M Georgian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-t8m.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ka.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-de-1901.tex EC German hyphenation patterns (traditional orthography) (/tmp/texlive/share/texmf-dist/tex/generic/dehyph/dehypht.tex German Traditional Hyphenation Patterns `dehypht' Version 3.2a <1999/03/03> (Formerly known under the name `ghyph31' and `ghyphen'.)))
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-de-1996.tex EC German hyphenation patterns (reformed orthography) (/tmp/texlive/share/texmf-dist/tex/generic/dehyph/dehyphn.tex New German Hyphenation Patterns `dehyphn' Rev.31 <2001-05-07> (WaS))) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-de-ch-1901.tex EC Swiss-German hyphenation patterns (traditional orthography) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-de-ch-1901.tex Swiss-German Hyphenation Patterns (Traditional Orthography) `dehyphts-x' 2021-02-26 (WL))) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-el-polyton.tex Hyphenation patterns for multi-accent (polytonic) Modern Greek (/tmp/texlive/share/texmf-dist/tex/generic/hyphen/grphyph5.tex Hyphenation patterns for multi-accent (polytonic) Modern Greek))
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-el-monoton.tex Hyphenation patterns for uni-accent (monotonic) Modern Greek (/tmp/texlive/share/texmf-dist/tex/generic/hyphen/grmhyph5.tex Hyphenation patterns for uni-accent (monotonic) Modern Greek)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-hu.tex EC Hungarian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-hu.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-is.tex EC Icelandic hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-is.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-as.tex No Assamese hyphenation patterns - only for Unicode engines)
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-bn.tex No Bengali hyphenation patterns - only for Unicode engines) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-gu.tex No Gujarati hyphenation patterns - only for Unicode engines) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-hi.tex No Hindi hyphenation patterns - only for Unicode engines) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-kn.tex No Kannada hyphenation patterns - only for Unicode engines) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ml.tex No Malayalam hyphenation patterns - only for Unicode engines) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-mr.tex No Marathi hyphenation patterns - only for Unicode engines) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-or.tex No Oriya hyphenation patterns - only for Unicode engines)
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-pi.tex No Pali hyphenation patterns - only for Unicode engines) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-pa.tex No Panjabi hyphenation patterns - only for Unicode engines) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ta.tex No Tamil hyphenation patterns - only for Unicode engines) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-te.tex No Telugu hyphenation patterns - only for Unicode engines) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-id.tex ASCII Indonesian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-id.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ia.tex ASCII Hyphenation patterns for Interlingua (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ia.tex))
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ga.tex EC Irish hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ga.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-it.tex ASCII Italian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-it.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-kmr.tex EC Kurmanji hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-kmr.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-la-x-classic.tex EC Classical Latin hyphenation patterns, v.2.0 2019-07-03 (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex-8bit/hyph-la-x-classic.ec.tex))
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-la.tex EC Latin hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-la.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-la-x-liturgic.tex EC Liturgical Latin hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-la-x-liturgic.ec.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-lv.tex L7X Latvian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-l7x.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-lv.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-lt.tex L7X Lithuanian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-l7x.tex)
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-lt.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-mk.tex MACEDONIAN Macedonian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex-8bit/hyph-mk.macedonian.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-mn-cyrl.tex T2A (New) Mongolian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-t2a.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-mn-cyrl.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-mn-cyrl-x-lmc.tex LMC Mongolian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-lmc.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-mn-cyrl-x-lmc.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-nb.tex
EC Norwegian Bokmal hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-nb.tex (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-no.tex))) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-nn.tex EC Norwegian Nynorsk hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-nn.tex (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-no.tex))) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-oc.tex EC Occitan hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-oc.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-pms.tex
ASCII Piedmontese hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-pms.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-pl.tex QX Polish hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-qx.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-pl.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-pt.tex EC Portuguese hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-pt.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ro.tex EC Romanian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ro.tex))
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-rm.tex ASCII Romansh hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-rm.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ru.tex T2A Russian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/ruhyphen/ruhyphen.tex (/tmp/texlive/share/texmf-dist/tex/generic/ruhyphen/catkoi.tex) (/tmp/texlive/share/texmf-dist/tex/generic/ruhyphen/koi2t2a.tex) (/tmp/texlive/share/texmf-dist/tex/generic/ruhyphen/ruhyphal.tex) (/tmp/texlive/share/texmf-dist/tex/generic/ruhyphen/cyryoal.tex) (/tmp/texlive/share/texmf-dist/tex/generic/ruhyphen/hypht2.tex))) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-sa.tex No Sanskrit hyphenation patterns - only for Unicode engines) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-sr-latn.tex EC Serbian hyphenation patterns in Latin script
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-sh-latn.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-sr-cyrl.tex T2A Serbian hyphenation patterns in Cyrillic script (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-t2a.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-sh-cyrl.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-sk.tex EC Slovak hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-sk.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-sl.tex EC Slovenian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex)
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-sl.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-es.tex EC Spanish hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-es.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-sv.tex EC Swedish hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-sv.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-th.tex LTH Thai hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-lth.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-th.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-tr.tex
EC Turkish hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-tr.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-tk.tex EC Turkmen hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-tk.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-uk.tex T2A Ukrainian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/ukrhyph/ukrhyph.tex Ukrainian hyphenation patterns in t2a encoding (/tmp/texlive/share/texmf-dist/tex/generic/ukrhyph/catlcy.tex) (/tmp/texlive/share/texmf-dist/tex/generic/ukrhyph/lcy2t2a.tex) (/tmp/texlive/share/texmf-dist/tex/generic/ukrhyph/ukrhypmp.tex) (/tmp/texlive/share/texmf-dist/tex/generic/ruhyphen/hypht2.tex)))
(/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-hsb.tex EC Upper Sorbian hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-hsb.tex)) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-cy.tex EC Welsh hyphenation patterns (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex) (/tmp/texlive/share/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-cy.tex)))
No file latex2e-first-aid-for-external-files.ltx.

 ) )
Beginning to dump on file mllatex.fmt
 (preloaded format=mllatex 2023.5.19)
20577 strings of total length 384318
281368 memory locations dumped; current usage is 165&275414
17186 multiletter control sequences
\font\nullfont=nullfont
\font\c__fp_exp_intarray=cmr10 at 0.00002pt
\font\c__fp_trig_intarray=cmr10 at 0.00003pt
\font\c_initex_cctab=cmr10 at 0.00005pt
\font\c_other_cctab=cmr10 at 0.00006pt
\font\c_str_cctab=cmr10 at 0.00008pt
\font\g__regex_state_active_intarray=cmr10 at 0.00009pt
\font\g__regex_thread_info_intarray=cmr10 at 0.0001pt
\font\g__regex_submatch_prev_intarray=cmr10 at 0.00012pt
\font\g__regex_submatch_begin_intarray=cmr10 at 0.00014pt
\font\g__regex_submatch_end_intarray=cmr10 at 0.00015pt
\font\g__regex_balance_intarray=cmr10 at 0.00017pt
\font\OMX/cmex/m/n/10=cmex10
\font\tenln=line10
\font\tenlnw=linew10
\font\tencirc=lcircle10
\font\tencircw=lcirclew10
\font\OT1/cmr/m/n/5=cmr5
\font\OT1/cmr/m/n/7=cmr7
\font\OT1/cmr/m/n/10=cmr10
\font\OML/cmm/m/it/5=cmmi5
\font\OML/cmm/m/it/7=cmmi7
\font\OML/cmm/m/it/10=cmmi10
\font\OMS/cmsy/m/n/5=cmsy5
\font\OMS/cmsy/m/n/7=cmsy7
\font\OMS/cmsy/m/n/10=cmsy10
\font\c_code_cctab=cmr10 at 0.00018pt
\font\c_document_cctab=cmr10 at 0.0002pt
403423 words of font info for 27 preloaded fonts
1141 hyphenation exceptions
Hyphenation trie of length 419480 has 8811 ops out of 35111
  143 for language 86
  110 for language 85
  138 for language 84
  7 for language 83
  12 for language 82
  53 for language 81
  127 for language 80
  195 for language 79
  71 for language 78
  248 for language 77
  62 for language 76
  66 for language 75
  119 for language 73
  43 for language 72
  58 for language 71
  7 for language 70
  194 for language 69
  37 for language 68
  23 for language 67
  852 for language 66
  852 for language 65
  21 for language 64
  38 for language 63
  38 for language 62
  77 for language 61
  58 for language 60
  206 for language 59
  25 for language 58
  216 for language 57
  27 for language 56
  37 for language 55
  229 for language 54
  38 for language 53
  21 for language 52
  147 for language 39
  185 for language 38
  18 for language 37
  50 for language 36
  420 for language 35
  235 for language 34
  207 for language 33
  39 for language 32
  76 for language 31
  40 for language 30
  89 for language 29
  6 for language 28
  31 for language 27
  113 for language 24
  145 for language 23
  377 for language 22
  224 for language 21
  265 for language 20
  60 for language 19
  63 for language 18
  19 for language 17
  14 for language 16
  3 for language 14
  21 for language 13
  54 for language 12
  36 for language 11
  5 for language 10
  148 for language 7
  97 for language 6
  137 for language 5
  424 for language 4
  432 for language 3
  2 for language 1
  181 for language 0
0 words of pdfTeX memory
0 indirect objects
No pages of output.
Transcript written on mllatex.log.
fmtutil [INFO]: log file copied to: /tmp/guix-build-texlive-font-maps-debug.drv-0/{/tmp/texlive/share/texmf-var/web2c/pdftex/mllatex.log
fmtutil [INFO]: /tmp/guix-build-texlive-font-maps-debug.drv-0/{/tmp/texlive/share/texmf-var/web2c/pdftex/mllatex.fmt installed.
fmtutil [INFO]: --- remaking luacsplain with luatex
fmtutil [INFO]: --- remaking amstex with pdftex
fmtutil [INFO]: --- remaking platex with eptex
fmtutil [INFO]: --- remaking mltex with pdftex
fmtutil [INFO]: --- remaking mex with pdftex
fmtutil [INFO]: --- remaking uplatex with euptex
fmtutil [INFO]: --- remaking dvilualatex with luatex
fmtutil [INFO]: --- remaking etex with pdftex
fmtutil [INFO]: --- remaking csplain with pdftex
fmtutil [INFO]: --- remaking lollipop with tex
fmtutil [INFO]: --- remaking eplain with pdftex
fmtutil [INFO]: --- remaking cont-en with pdftex
fmtutil [INFO]: --- remaking cont-en with xetex
fmtutil [INFO]: --- remaking lualatex-dev with luahbtex
fmtutil [WARNING]: inifile luatex.ini for luajittex/luajittex not found.
fmtutil [WARNING]: inifile xetex.ini for xetex/xetex not found.
fmtutil [WARNING]: inifile luatex.ini for luatex/luatex not found.
fmtutil [WARNING]: inifile ptex.ini for ptex/ptex not found.
fmtutil [WARNING]: inifile eptex.ini for eptex/eptex not found.
fmtutil [WARNING]: inifile luatex.ini for luahbtex/luahbtex not found.
fmtutil [WARNING]: inifile euptex.ini for euptex/euptex not found.
fmtutil [WARNING]: inifile uptex.ini for uptex/uptex not found.
fmtutil [WARNING]: inifile tex.ini for tex/tex not found.
fmtutil [WARNING]: inifile aleph.ini for aleph/aleph not found.
fmtutil [WARNING]: inifile luatex.ini for luajithbtex/luajithbtex not found.
fmtutil [WARNING]: inifile pdfetex.ini for pdftex/pdftex not found.
fmtutil [WARNING]: inifile utf8mex.ini for utf8mex/pdftex not found.
fmtutil [WARNING]: inifile jadetex.ini for jadetex/pdftex not found.
fmtutil [WARNING]: inifile xmltex.ini for xmltex/pdftex not found.
fmtutil [WARNING]: inifile pdfetex.ini for pdfetex/pdftex not found.
fmtutil [WARNING]: inifile pdfjadetex.ini for pdfjadetex/pdftex not found.
fmtutil [WARNING]: inifile mptopdf.tex for mptopdf/pdftex not found.
fmtutil [WARNING]: inifile cslatex.ini for pdfcslatex/pdftex not found.
fmtutil [ERROR]: running `mf-nowin -ini   -jobname=mf -progname=mf -translate-file=cp227.tcx mf.ini </dev/null' return status: 1
fmtutil [ERROR]: returning error due to option --strict
fmtutil [WARNING]: inifile xelatex.ini for xelatex/xetex not found.
fmtutil [WARNING]: inifile optex.ini for optex/luatex not found.
fmtutil [ERROR]: running `pdftex -ini   -jobname=pdflatex-dev -progname=pdflatex-dev -translate-file=cp227.tcx *pdflatex.ini </dev/null' return status: 1
fmtutil [ERROR]: returning error due to option --strict
fmtutil [WARNING]: inifile pdfmex.ini for pdfmex/pdftex not found.
fmtutil [ERROR]: running `pdftex -ini   -jobname=latex-dev -progname=latex-dev -translate-file=cp227.tcx *latex.ini </dev/null' return status: 1
fmtutil [ERROR]: returning error due to option --strict
fmtutil [WARNING]: inifile lualatex.ini for lualatex/luahbtex not found.
fmtutil [WARNING]: inifile xelatex.ini for xelatex-dev/xetex not found.
fmtutil [WARNING]: inifile pdfxmltex.ini for pdfxmltex/pdftex not found.
fmtutil [WARNING]: inifile dviluatex.ini for dviluatex/luatex not found.
fmtutil [WARNING]: inifile csplain.ini for pdfcsplain/luatex not found.
fmtutil [WARNING]: inifile csplain-utf8.ini for pdfcsplain/pdftex not found.
fmtutil [WARNING]: inifile csplain.ini for pdfcsplain/xetex not found.
fmtutil [ERROR]: running `pdftex -ini   -jobname=latex -progname=latex -translate-file=cp227.tcx *latex.ini </dev/null' return status: 1
fmtutil [ERROR]: returning error due to option --strict
fmtutil [WARNING]: inifile dvilualatex.ini for dvilualatex-dev/luatex not found.
fmtutil [WARNING]: inifile texsis.ini for texsis/pdftex not found.
fmtutil [WARNING]: inifile cslatex.ini for cslatex/pdftex not found.
fmtutil [ERROR]: running `pdftex -ini   -jobname=pdflatex -progname=pdflatex -translate-file=cp227.tcx *pdflatex.ini </dev/null' return status: 1
fmtutil [ERROR]: returning error due to option --strict
fmtutil [WARNING]: inifile platex.ini for platex-dev/eptex not found.
fmtutil [WARNING]: inifile uplatex.ini for uplatex-dev/euptex not found.
fmtutil [WARNING]: inifile csplain.ini for luacsplain/luatex not found.
fmtutil [WARNING]: inifile amstex.ini for amstex/pdftex not found.
fmtutil [WARNING]: inifile platex.ini for platex/eptex not found.
fmtutil [WARNING]: inifile mltex.ini for mltex/pdftex not found.
fmtutil [WARNING]: inifile mex.ini for mex/pdftex not found.
fmtutil [WARNING]: inifile uplatex.ini for uplatex/euptex not found.
fmtutil [WARNING]: inifile dvilualatex.ini for dvilualatex/luatex not found.
fmtutil [WARNING]: inifile etex.ini for etex/pdftex not found.
fmtutil [WARNING]: inifile csplain-utf8.ini for csplain/pdftex not found.
fmtutil [WARNING]: inifile lollipop.ini for lollipop/tex not found.
fmtutil [WARNING]: inifile eplain.ini for eplain/pdftex not found.
fmtutil [WARNING]: inifile cont-en.mkii for cont-en/pdftex not found.
fmtutil [WARNING]: inifile cont-en.mkii for cont-en/xetex not found.
fmtutil [WARNING]: inifile lualatex.ini for lualatex-dev/luahbtex not found.
fmtutil [INFO]: disabled formats: 5
fmtutil [INFO]: successfully rebuilt formats: 1
fmtutil [INFO]: failed to build: 53 (luajittex/luajittex xetex/xetex luatex/luatex ptex/ptex eptex/eptex luahbtex/luahbtex euptex/euptex uptex/uptex tex/tex aleph/aleph luajithbtex/luajithbtex pdftex/pdftex pdftex/utf8mex pdftex/jadetex pdftex/xmltex pdftex/pdfetex pdftex/pdfjadetex pdftex/mptopdf pdftex/pdfcslatex mf-nowin/mf xetex/xelatex luatex/optex pdftex/pdflatex-dev pdftex/pdfmex pdftex/latex-dev luahbtex/lualatex xetex/xelatex-dev pdftex/pdfxmltex luatex/dviluatex luatex/pdfcsplain pdftex/pdfcsplain xetex/pdfcsplain pdftex/latex luatex/dvilualatex-dev pdftex/texsis pdftex/cslatex pdftex/pdflatex eptex/platex-dev euptex/uplatex-dev luatex/luacsplain pdftex/amstex eptex/platex pdftex/mltex pdftex/mex euptex/uplatex luatex/dvilualatex pdftex/etex pdftex/csplain tex/lollipop pdftex/eplain pdftex/cont-en xetex/cont-en luahbtex/lualatex-dev)
fmtutil [INFO]: total formats: 59
fmtutil [INFO]: exiting with status 53
--8<---------------cut here---------------end--------------->8---




^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-05-19 16:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-28 19:30 TeXlive packaging issues Emmanuel Beffara
2023-03-29 18:48 ` bug#56556: " Josselin Poiret
2023-04-07 10:33   ` bug#56556: texlive-babel-dutch with and without texlive-hyphen-dutch: No hyphenation patterns were preloaded Ludovic Courtès
2023-04-07 10:47     ` Emmanuel Beffara
2023-05-19 15:22       ` Simon Tournier

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.