From 1aaee7735ecca3ba140e8d7e58d496a001b7bcb6 Mon Sep 17 00:00:00 2001 From: Trenton Holmes <797416+stumpylog@users.noreply.github.com> Date: Tue, 28 May 2024 12:54:05 -0700 Subject: [PATCH] Fixes to build 10.03.1 --- ghostscript.dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ghostscript.dockerfile b/ghostscript.dockerfile index f9f2924..d468c22 100644 --- a/ghostscript.dockerfile +++ b/ghostscript.dockerfile @@ -33,9 +33,9 @@ RUN set -eux \ && echo "Getting ghostscript source" \ && echo "deb-src http://deb.debian.org/debian/ trixie main" > /etc/apt/sources.list.d/trixie-src.list \ && apt-get update --quiet \ - && apt-get source --yes --quiet ghostscript=${GS_VERSION}~dfsg-3/trixie + && apt-get source --yes --quiet ghostscript=${GS_VERSION}~dfsg~git20240518-1/trixie -WORKDIR /usr/src/ghostscript-${GS_VERSION}~dfsg +WORKDIR /usr/src/ghostscript-${GS_VERSION}~dfsg~git20240518 # # Stage: amd64-builder @@ -75,7 +75,7 @@ RUN set -eux \ && echo "Beginning amd64" \ && echo "Install amd64 packages" \ && apt-get update --quiet \ - && apt-get build-dep --yes ghostscript=${GS_VERSION}~dfsg-3/trixie:amd64 \ + && apt-get build-dep --yes ghostscript=${GS_VERSION}~dfsg~git20240518-1/trixie:amd64 \ && apt-get install --yes --quiet --no-install-recommends ${AMD64_BUILD_PACKAGES} \ && echo "Building amd64" \ && dpkg-buildpackage --build=binary --unsigned-source --unsigned-changes --post-clean \ @@ -119,6 +119,7 @@ ARG ARM64_PACKAGES="\ rename:arm64 \ python3-sphinx \ python3-sphinx-rtd-theme \ + python3-sphinx-copybutton \ zlib1g-dev \ rst2pdf"