From c4d9a26d20c12a4c6acce9c9328327908f196e7e Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Wed, 23 Nov 2022 15:24:23 -0300 Subject: [PATCH] [DOCs][Dependencies] Suggest to install texlive for Pandoc - In #264 we see that texlive is needed in some cases. - Looking at texlive-latex-base I see the fonts aren't installed. --- README.md | 2 +- docs/samples/generic_plot.kibot.yaml | 2 +- kibot/out_report.py | 2 +- src/kibot-check | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e4bce3f5..02a7f6a3 100644 --- a/README.md +++ b/README.md @@ -3165,7 +3165,7 @@ Notes: The output file will be in `convert_to` format. The available formats depends on the `Pandoc` installation. In CI/CD environments: the `kicad_auto_test` docker image contains it. - In Debian/Ubuntu environments: install `pandoc`, `texlive-latex-base` and `texlive-latex-recommended`. + In Debian/Ubuntu environments: install `pandoc`, `texlive`, `texlive-latex-base` and `texlive-latex-recommended`. - **`output`**: [string='%f-%i%I%v.%x'] Output file name (%i='report', %x='txt'). Affected by global options. - **`template`**: [string='full'] Name for one of the internal templates (full, full_svg, simple) or a custom template file. Environment variables and ~ are allowed. diff --git a/docs/samples/generic_plot.kibot.yaml b/docs/samples/generic_plot.kibot.yaml index b7aae368..aaf23427 100644 --- a/docs/samples/generic_plot.kibot.yaml +++ b/docs/samples/generic_plot.kibot.yaml @@ -1957,7 +1957,7 @@ outputs: # The output file will be in `convert_to` format. # The available formats depends on the `Pandoc` installation. # In CI/CD environments: the `kicad_auto_test` docker image contains it. - # In Debian/Ubuntu environments: install `pandoc`, `texlive-latex-base` and `texlive-latex-recommended` + # In Debian/Ubuntu environments: install `pandoc`, `texlive`, `texlive-latex-base` and `texlive-latex-recommended` do_convert: false # [string='10F'] Which Eurocircuits class are we aiming at eurocircuits_class_target: '10F' diff --git a/kibot/out_report.py b/kibot/out_report.py index 4d512ca8..af063f19 100644 --- a/kibot/out_report.py +++ b/kibot/out_report.py @@ -11,7 +11,7 @@ Dependencies: url_down: https://github.com/jgm/pandoc/releases debian: pandoc arch: pandoc - extra_deb: ['texlive-latex-base', 'texlive-latex-recommended'] + extra_deb: ['texlive', 'texlive-latex-base', 'texlive-latex-recommended'] extra_arch: ['texlive-core'] comments: 'In CI/CD environments: the `kicad_auto_test` docker image contains it.' """ diff --git a/src/kibot-check b/src/kibot-check index ba18aee5..168e1c0c 100755 --- a/src/kibot-check +++ b/src/kibot-check @@ -602,6 +602,7 @@ deps = '{\ "texlive-core"\ ],\ "extra_deb": [\ + "texlive",\ "texlive-latex-base",\ "texlive-latex-recommended"\ ],\