Skip to content

Commit

Permalink
Release v8.15.1 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
kurochan authored Jan 19, 2024
1 parent 31a6a8d commit 00d8a04
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Dockerfile.bookworm-jpg-png
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile.trixie-jpg-png
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tag: v0.0.1
tag: v8.15.1
prerelease: false

releaseNoteGenerator:
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 00d8a04

Please sign in to comment.