vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 38dd83a5af299b87d03f77f03e1fcc606c711853 parent 76e41531b41be633484a3b6f91bfbdfa3fcaac00 Author: Christian Hesse <mail@eworm.de> Date: Tue, 22 Nov 2022 23:10:03 +0100 build: update alpine in docker build to version 3.17 This requires one extra package, as static liblzma (liblzma.a) was moved to xz-static. Diffstat:
| M | CHANGELOG.md | | | 1 | + |
| M | Dockerfile | | | 5 | +++-- |
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -8,6 +8,7 @@ - add Selection:remove() to lua API - fix bug where visual-line selections after view were considered visible - don't set `_FORTIFY_SOURCE` in configure +- update dockerfile to alpine 3.17 ## [0.8] - 2022-11-01 diff --git a/Dockerfile b/Dockerfile @@ -1,5 +1,5 @@ # Run 'make docker' to build a statically linked vis executable! -FROM i386/alpine:3.16 +FROM i386/alpine:3.17 RUN apk update && apk add --upgrade --no-cache \ acl-dev \ acl-static \ @@ -17,7 +17,8 @@ RUN apk update && apk add --upgrade --no-cache \ tar \ wget \ xz \ - xz-dev + xz-dev \ + xz-static RUN sed -i 's/Libs: /Libs: -L${INSTALL_CMOD} /' /usr/lib/pkgconfig/lua5.3.pc RUN mv /usr/lib/lua/5.3/lpeg.a /usr/lib/lua/5.3/liblpeg.a RUN sed -i 's/-ltermkey/-ltermkey -lunibilium/' /usr/lib/pkgconfig/termkey.pc