From c831bde2dd897b31eaed22ec3296c3a4051d3d50 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 3 Mar 2026 09:01:43 +0000 Subject: [PATCH 1/2] chore(deps): update dependency graphviz/graphviz to v14.1.3 --- tools/graphviz/manifest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/graphviz/manifest.yaml b/tools/graphviz/manifest.yaml index c5583f687e..1714f82ab5 100644 --- a/tools/graphviz/manifest.yaml +++ b/tools/graphviz/manifest.yaml @@ -1,6 +1,6 @@ # yaml-language-server: $schema=https://tools.uniget.dev/schema.yaml name: graphviz -version: "14.1.2" +version: "14.1.3" binary: dot check: ${binary} --version 2>&1 | cut -d' ' -f5 platforms: From 6d41a0ce65adbc14eef7411fceeeb4b2ce7c42d9 Mon Sep 17 00:00:00 2001 From: Nicholas Dille Date: Fri, 20 Mar 2026 08:03:29 +0100 Subject: [PATCH 2/2] fix(graphviz): Fix script permission --- tools/graphviz/Dockerfile.template | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/graphviz/Dockerfile.template b/tools/graphviz/Dockerfile.template index 3af6a8e6e3..e6b80f3444 100644 --- a/tools/graphviz/Dockerfile.template +++ b/tools/graphviz/Dockerfile.template @@ -62,6 +62,9 @@ tar --file="${uniget_cache_download}/${filename}" --extract --gzip --strip-compo --with-glade=no \ --with-qt=no \ --with-x=nomake +if test "${version}" == "14.1.3"; then + chmod +x lib/common/make_colortbl.py +fi make -j$(nproc) make install mv "${prefix}/bin/dot_static" "${prefix}/bin/dot"