Hi, Here's an update to neovim-0.8.1 that fixes an issue brought to my attention by Callsion Caffrey.
``` nvim -u NONE :colors blue ``` Should have a blue background, but in 0.8.0 it doesn't. It was fixed shortly after release: https://github.com/neovim/neovim/pull/20602 OK? Index: Makefile =================================================================== RCS file: /cvs/ports/editors/neovim/Makefile,v retrieving revision 1.30 diff -u -p -r1.30 Makefile --- Makefile 21 Nov 2022 10:00:00 -0000 1.30 +++ Makefile 13 Dec 2022 11:50:25 -0000 @@ -13,15 +13,15 @@ COMMENT = continuation and extension of GH_ACCOUNT = neovim GH_PROJECT = neovim -GH_TAGNAME = v0.8.0 +GH_TAGNAME = v0.8.1 CATEGORIES = editors devel HOMEPAGE = https://neovim.io MAINTAINER = Edd Barrett <e...@openbsd.org> -# The versions listed here must match those in third-party/CMakeLists.txt. -LUV_VER = 1.43.0-0 -LUAJIT_VER = 91bc6b8ad1f373c1ce9003dc024b2e21fad0e444 +# The versions listed here must match those in cmake.deps/CMakeLists.txt. +LUV_VER = 1.44.2-1 +LUAJIT_VER = 633f265f67f322cbe2c5fd11d3e46d968ac220f7 MASTER_SITES0 = https://github.com/luvit/luv/releases/download/${LUV_VER}/ MASTER_SITES1 = https://github.com/LuaJIT/LuaJIT/archive/ @@ -76,7 +76,7 @@ RUN_DEPENDS += devel/libmpack/lua \ SEPARATE_BUILD = Yes CONFIGURE_ARGS += -DUSE_BUNDLED=OFF \ -DLIBLUV_INCLUDE_DIR=${STATIC_DEPS_INST}/include \ - -DLIBLUV_LIBRARY=${STATIC_DEPS_INST}/lib/libluv_a.a + -DLIBLUV_LIBRARY=${STATIC_DEPS_INST}/lib/libluv.a .if ${EMBED_LUAJIT} == "Yes" CONFIGURE_ARGS += -DLUA_PRG=${STATIC_DEPS_INST}/bin/luajit-2.1.0-beta3 \ -DLUAJIT_INCLUDE_DIR=${STATIC_DEPS_INST}/include/luajit-2.1 \ Index: distinfo =================================================================== RCS file: /cvs/ports/editors/neovim/distinfo,v retrieving revision 1.15 diff -u -p -r1.15 distinfo --- distinfo 21 Nov 2022 10:00:00 -0000 1.15 +++ distinfo 13 Dec 2022 11:27:34 -0000 @@ -1,6 +1,6 @@ -SHA256 (luajit-91bc6b8ad1f373c1ce9003dc024b2e21fad0e444.tar.gz) = gYlQMf24dgLH3eUigCWcYLH/0bWoo8J5LT4jkEgRY/o= -SHA256 (luv-1.43.0-0.tar.gz) = VnpvPc3PiptU3cV//vidHpUNcoMrhe6ByMg6nU4OneI= -SHA256 (neovim-0.8.0.tar.gz) = UF49+3Hi9zSVxzfANKQWkRwmDAup/SCSxr4pZlW+TRg= -SIZE (luajit-91bc6b8ad1f373c1ce9003dc024b2e21fad0e444.tar.gz) = 1072234 -SIZE (luv-1.43.0-0.tar.gz) = 1452021 -SIZE (neovim-0.8.0.tar.gz) = 11387355 +SHA256 (luajit-633f265f67f322cbe2c5fd11d3e46d968ac220f7.tar.gz) = JoHwpvYkpkqN+3Clo3fUlNrziWBELFR9nEaGdMGvo8I= +SHA256 (luv-1.44.2-1.tar.gz) = PrXHvET2H7xBSOow4yIdQQJj4P+ihWcoUfwZ3r+eXDA= +SHA256 (neovim-0.8.1.tar.gz) = tEhOEwqpYkVxifPe40uEgZQ8HjldLWhMb4uRWYSU2ew= +SIZE (luajit-633f265f67f322cbe2c5fd11d3e46d968ac220f7.tar.gz) = 1074237 +SIZE (luv-1.44.2-1.tar.gz) = 1465728 +SIZE (neovim-0.8.1.tar.gz) = 11387691 Index: pkg/PLIST =================================================================== RCS file: /cvs/ports/editors/neovim/pkg/PLIST,v retrieving revision 1.15 diff -u -p -r1.15 PLIST --- pkg/PLIST 21 Nov 2022 10:00:00 -0000 1.15 +++ pkg/PLIST 13 Dec 2022 12:13:31 -0000 @@ -294,8 +294,6 @@ share/nvim/runtime/doc/lsp.txt share/nvim/runtime/doc/lua.txt share/nvim/runtime/doc/luaref.txt share/nvim/runtime/doc/luvref.txt -share/nvim/runtime/doc/makehtml.awk -share/nvim/runtime/doc/maketags.awk share/nvim/runtime/doc/map.txt share/nvim/runtime/doc/mbyte.txt share/nvim/runtime/doc/message.txt @@ -902,7 +900,9 @@ share/nvim/runtime/keymap/vietnamese-viq share/nvim/runtime/keymap/vietnamese-vni_utf-8.vim share/nvim/runtime/lua/ share/nvim/runtime/lua/health.lua +share/nvim/runtime/lua/man/ share/nvim/runtime/lua/man.lua +share/nvim/runtime/lua/man/health.lua share/nvim/runtime/lua/vim/ share/nvim/runtime/lua/vim/F.lua share/nvim/runtime/lua/vim/_editor.lua -- Best Regards Edd Barrett https://www.theunixzoo.co.uk