dependencies: pureos: website: Add graphviz to fix website package build.

Without that fix, 'make release' fails with the following error:
    [...]
    ROM image release archives available at release/roms/

    set -o pipefail ; ./build release website | tee -a make-1732208182.log
    autoreconf: Entering directory `.'
    autoreconf: configure.ac: not using Gettext
    autoreconf: running: aclocal --force
    autoreconf: configure.ac: tracing
    autoreconf: configure.ac: not using Libtool
    autoreconf: running: /usr/bin/autoconf --force
    autoreconf: configure.ac: not using Autoheader
    autoreconf: running: automake --add-missing --copy --force-missing
    autoreconf: Leaving directory `.'
    [...]
    checking for dot... no
    configure: error: dot was not found in PATH ([...])
    make: *** [Makefile:710: release] Error 1

This happens because during releases we also ship a tarball of the
website, and the commit 388c0ef3d0
("website: add history page of the GNU Boot git repositories.")
started using dot without also adding the graphviz dependency in the
dependencies for building releases.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
This commit is contained in:
Denis 'GNUtoo' Carikli 2024-11-22 15:01:30 +01:00 committed by Adrien 'neox' Bourmault
parent 67cb7ec86a
commit 4bf40caf6b
Signed by: neox
GPG Key ID: 57BC26A3687116F6
1 changed files with 3 additions and 1 deletions

View File

@ -106,4 +106,6 @@ pkcon -y --allow-reinstall install shellcheck # lint
pkcon -y --allow-reinstall install gawk git grep lzip make sed tar xz-utils # u-boot-libre pkcon -y --allow-reinstall install gawk git grep lzip make sed tar xz-utils # u-boot-libre
# For building the website tarball # For building the website tarball
pkcon -y --allow-reinstall install pandoc pkcon -y --allow-reinstall install \
graphviz \
pandoc