From 00d8a044194f40e5dbd54150a9b9d9955e2317e0 Mon Sep 17 00:00:00 2001 From: Kurochan Date: Fri, 19 Jan 2024 12:02:15 +0900 Subject: [PATCH] Release v8.15.1 (#10) --- Dockerfile.bookworm-jpg-png | 3 ++- Dockerfile.trixie-jpg-png | 3 ++- RELEASE | 2 +- build.sh | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Dockerfile.bookworm-jpg-png b/Dockerfile.bookworm-jpg-png index 1b0d33c..db710a0 100644 --- a/Dockerfile.bookworm-jpg-png +++ b/Dockerfile.bookworm-jpg-png @@ -2,7 +2,8 @@ FROM debian:bookworm-slim AS builder ENV LIBVIPS_VERSION 8.15.1 -ENV LIBVIPS_HASH 36db25cca3bf15df963100971d203784 +# sha256sum of tar.xz file on https://github.com/libvips/libvips/releases +ENV LIBVIPS_HASH 06811f5aed3e7bc03e63d05537ff4b501de5283108c8ee79396c60601a00830c COPY ./build.sh /build.sh RUN BUILD_TARGET=jpg_png /build.sh jpg_png diff --git a/Dockerfile.trixie-jpg-png b/Dockerfile.trixie-jpg-png index 719b9cf..42c868e 100644 --- a/Dockerfile.trixie-jpg-png +++ b/Dockerfile.trixie-jpg-png @@ -2,7 +2,8 @@ FROM debian:trixie-slim AS builder ENV LIBVIPS_VERSION 8.15.1 -ENV LIBVIPS_HASH 36db25cca3bf15df963100971d203784 +# sha256sum of tar.xz file on https://github.com/libvips/libvips/releases +ENV LIBVIPS_HASH 06811f5aed3e7bc03e63d05537ff4b501de5283108c8ee79396c60601a00830c COPY ./build.sh /build.sh RUN BUILD_TARGET=jpg_png /build.sh jpg_png diff --git a/RELEASE b/RELEASE index 7c7ad2f..ddb732b 100644 --- a/RELEASE +++ b/RELEASE @@ -1,4 +1,4 @@ -tag: v0.0.1 +tag: v8.15.1 prerelease: false releaseNoteGenerator: diff --git a/build.sh b/build.sh index 55eca8b..73f2c09 100755 --- a/build.sh +++ b/build.sh @@ -80,7 +80,7 @@ function build_vips() { pushd /build/vips curl -fsSLO https://github.com/libvips/libvips/releases/download/v${LIBVIPS_VERSION}/vips-${LIBVIPS_VERSION}.tar.xz - hash=$(md5sum vips-${LIBVIPS_VERSION}.tar.xz | cut -d ' ' -f 1) + hash=$(sha256sum vips-${LIBVIPS_VERSION}.tar.xz | cut -d ' ' -f 1) if [ "${hash}" != "${LIBVIPS_HASH}" ]; then echo "## Invalid LIBVIPS_HASH !! EXIT ##" 1>&2 echo "# expected: ${LIBVIPS_HASH}" 1>&2