From: Florian Viehweger Subject: Re: [update] Lagrange to 1.19.0 To: Stuart Henderson Cc: ports@openbsd.org Date: Tue, 16 Sep 2025 18:33:30 +0200 > > Some testing done on amd64. No issues found, except it does not > > start in a tigervnc environment anymore. I've already contacted the > > developer about this. For now this is expected. I've been doing some testing on my laptop instead. > > portcheck and 'make port-lib-depends-check' are happy. > > "JPEG XL image decoding is supported via libjxl (optional)" > -> pkg_add libjxl, rebuild, make port-lib-depends-check That's odd. Shouldn't 'make port-lib-depends-check' picked something up? IIRC libjxl was installed at build time then. Maybe my VM was acting weird. Thanks for the tip! > your decision whether to add the LIB_DEPENDS/WANTLIB, or disable > finding it. I've added it for now and updated diff with new version below. Index: Makefile =================================================================== RCS file: /daten/openbsdmirror/cvs/mirror/ports/net/lagrange/Makefile,v retrieving revision 1.79 diff -u -p -u -p -r1.79 Makefile --- Makefile 24 Aug 2025 12:56:38 -0000 1.79 +++ Makefile 16 Sep 2025 15:14:51 -0000 @@ -1,5 +1,5 @@ COMMENT = SDL multi protocol navigator -VERSION = 1.18.8 +VERSION = 1.19.2 DISTNAME = lagrange-${VERSION} @@ -12,8 +12,9 @@ HOMEPAGE = https://gmi.skyjake.fi/lagran # BSD 2-Clause PERMIT_PACKAGE =Yes -WANTLIB += ICE SDL2 SM X11 Xext c crypto curses fribidi harfbuzz m -WANTLIB += mpg123 opusfile pcre2-8 pthread ssl unistring webp z +WANTLIB += ICE SDL2 SM X11 Xext c crypto curses fribidi harfbuzz jxl +WANTLIB += jxl_threads m mpg123 opusfile pcre2-8 pthread ssl unistring +WANTLIB += webp z DEBUG_PACKAGES =${BUILD_PACKAGES} @@ -36,6 +37,7 @@ LIB_DEPENDS = audio/mpg123 \ devel/harfbuzz \ devel/pcre2 \ devel/sdl2 \ + graphics/libjxl \ graphics/libwebp CONFIGURE_ARGS += -DCMAKE_DISABLE_FIND_PACKAGE_Git=TRUE \ Index: distinfo =================================================================== RCS file: /daten/openbsdmirror/cvs/mirror/ports/net/lagrange/distinfo,v retrieving revision 1.65 diff -u -p -u -p -r1.65 distinfo --- distinfo 24 Aug 2025 12:56:38 -0000 1.65 +++ distinfo 16 Sep 2025 15:14:51 -0000 @@ -1,2 +1,2 @@ -SHA256 (lagrange-1.18.8.tar.gz) = nozlmdNSu/fyrPs+U6zAbwqTLaCLpHzM24auufEB1ZA= -SIZE (lagrange-1.18.8.tar.gz) = 11378882 +SHA256 (lagrange-1.19.2.tar.gz) = nzHr8b5B+G0KuufJqgt4tFP+87Qrc/OpJ1nLusE7hE8= +SIZE (lagrange-1.19.2.tar.gz) = 11414646 -- greetings, Florian Viehweger