Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions tools/graphviz/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
/etc/profile.d/
SHELL [ "bash", "-clo", "errexit" ]
ARG DEBIAN_FRONTEND=noninteractive
RUN --mount=type=cache,target=/var/cache/apk <<EOF
RUN <<EOF
apk add --update-cache \
python3 \
libltdl \
Expand All @@ -18,16 +18,16 @@ EOF
WORKDIR /tmp/graphviz
ARG name
ARG version
RUN --mount=type=cache,target=/var/cache/uniget/download <<EOF
RUN <<EOF
url="https://gitlab.com/graphviz/graphviz/-/archive/${version}/graphviz-${version}.tar.gz"
filename="$( basename "${url}" )"

check-download "${url}"
curl --silent --show-error --location --fail --output "${uniget_cache_download}/${filename}" \
curl --silent --show-error --location --fail --output "/tmp/${filename}" \
"${url}"

tar --file="${uniget_cache_download}/${filename}" --list
tar --file="${uniget_cache_download}/${filename}" --extract --gzip --strip-components=1
tar --file="/tmp/${filename}" --list
tar --file="/tmp/${filename}" --extract --gzip --strip-components=1

./autogen.sh
./configure \
Expand Down
2 changes: 1 addition & 1 deletion tools/graphviz/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# yaml-language-server: $schema=https://tools.uniget.dev/schema.yaml
name: graphviz
version: "14.1.2"
version: "14.1.5"
binary: dot
check: ${binary} --version 2>&1 | cut -d' ' -f5
platforms:
Expand Down
Loading