Skip to content

Commit

Permalink
Release v8.15.2 (#16)
Browse files Browse the repository at this point in the history
* Release v8.15.2

* update hash

* remove libc
  • Loading branch information
kurochan authored May 1, 2024
1 parent 4885236 commit b9fa86c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.bookworm-jpg-png
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# syntax=docker/dockerfile:1
FROM debian:bookworm-slim AS builder

ENV LIBVIPS_VERSION 8.15.1
ENV LIBVIPS_VERSION 8.15.2
# sha256sum of tar.xz file on https://github.com/libvips/libvips/releases
ENV LIBVIPS_HASH 06811f5aed3e7bc03e63d05537ff4b501de5283108c8ee79396c60601a00830c
ENV LIBVIPS_HASH a2ab15946776ca7721d11cae3215f20f1f097b370ff580cd44fc0f19387aee84

COPY ./build.sh /build.sh
RUN BUILD_TARGET=jpg_png /build.sh jpg_png
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.trixie-jpg-png
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# syntax=docker/dockerfile:1
FROM debian:trixie-slim AS builder

ENV LIBVIPS_VERSION 8.15.1
ENV LIBVIPS_VERSION 8.15.2
# sha256sum of tar.xz file on https://github.com/libvips/libvips/releases
ENV LIBVIPS_HASH 06811f5aed3e7bc03e63d05537ff4b501de5283108c8ee79396c60601a00830c
ENV LIBVIPS_HASH a2ab15946776ca7721d11cae3215f20f1f097b370ff580cd44fc0f19387aee84

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: v8.15.1
tag: v8.15.2
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 @@ -107,7 +107,7 @@ function build_vips() {
popd

pushd /vips/lib/$(uname -m)-linux-gnu/
dep_vips=$(cat /build/vips/vips-so-dep.txt /build/vips/vips-cpp-so-dep.txt | sort | uniq | grep -v -e 'ld-linux' -e 'linux-vdso' -e 'libvips.so')
dep_vips=$(cat /build/vips/vips-so-dep.txt /build/vips/vips-cpp-so-dep.txt | sort | uniq | grep -v -e 'libc.so' -e 'ld-linux' -e 'linux-vdso' -e 'libvips.so')
for dep in ${dep_vips}; do
cp -a /lib/$(uname -m)-linux-gnu/${dep}* .
done
Expand Down

0 comments on commit b9fa86c

Please sign in to comment.