On Sat, Aug 29, 2026 at 03:23:12PM +0300, Timo Myyrä wrote: > Hi, > > Chicken scheme got their 6.0 release done a while back so bump version. > > Timo > Hi!, Thanks for doing chicken 6. I checked out a current version of the lang/chicken dir and entered that and ran: patch < path-from-email (I am running OpenBSD current from like a week or two ago.) It applied fine, but when i went to build it, I get: ===> Building package for chicken-6.0.0 Create /usr/ports/packages/amd64/all/chicken-6.0.0.tgz Creating package chicken-6.0.0 checksumming|****************************************** | 42% Error: /usr/ports/pobj/chicken-6.0.0/fake-amd64/usr/local/lib/libchicken.so.9.1 does not exist pkg_create: can't continue *** Error 1 in core (/usr/ports/infrastructure/mk/bsd.port.mk:2243 '/usr/ports/packages/amd64/all/chicken-6.0.0.tgz': @trap "cd /usr/ports/p...) Is this just me doing something wrong maybe ? thanks!, Paul Wisehart
OpenBSD Mail Box
BTC:1BsNfN6m7xtT4PqDb9jJHnDDFBb38zS9Yi
Sunday, August 30, 2026
[new] lua 5.5
Hello, wayland/Hyprland needs lua 5.5. ok to import this + apply the diff below? Index: Makefile =================================================================== RCS file: /cvs/ports/lang/lua/Makefile,v diff -u -p -u -r1.49 Makefile --- Makefile 25 Dec 2022 13:40:19 -0000 1.49 +++ Makefile 30 Aug 2026 15:38:56 -0000 @@ -3,6 +3,7 @@ SUBDIR += 5.2 SUBDIR += 5.3 SUBDIR += 5.4 + SUBDIR += 5.5 .include <bsd.port.subdir.mk> Index: lua.port.mk =================================================================== RCS file: /cvs/ports/lang/lua/lua.port.mk,v diff -u -p -u -r1.38 lua.port.mk --- lua.port.mk 16 Sep 2023 07:57:23 -0000 1.38 +++ lua.port.mk 30 Aug 2026 15:38:56 -0000 @@ -17,6 +17,8 @@ MODLUA_VERSION = 5.2 MODLUA_VERSION = 5.3 .elif ${FLAVOR:Mlua54} MODLUA_VERSION = 5.4 +.elif ${FLAVOR:Mlua55} +MODLUA_VERSION = 5.5 .else MODLUA_VERSION ?= ${MODLUA_DEFAULT_VERSION} .endif @@ -33,6 +35,9 @@ MODLUA_FLAVOR = lua53 .elif "${MODLUA_VERSION}" == "5.4" _MODLUA_PKG_PREFIX = lua54 MODLUA_FLAVOR = lua54 +.elif "${MODLUA_VERSION}" == "5.5" +_MODLUA_PKG_PREFIX = lua55 +MODLUA_FLAVOR = lua55 .else ERRORS += "Invalid MODLUA_VERSION set: ${MODLUA_VERSION}." .endif