From owner-svn-ports-branches@freebsd.org Tue May 28 14:08:13 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 320DD1598B95; Tue, 28 May 2019 14:08:13 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CB93982BEC; Tue, 28 May 2019 14:08:12 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9EEB01B5CA; Tue, 28 May 2019 14:08:12 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4SE8C5x067698; Tue, 28 May 2019 14:08:12 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4SE8Cnm067697; Tue, 28 May 2019 14:08:12 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201905281408.x4SE8Cnm067697@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Tue, 28 May 2019 14:08:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r502897 - branches/2019Q2/editors/neovim X-SVN-Group: ports-branches X-SVN-Commit-Author: adamw X-SVN-Commit-Paths: branches/2019Q2/editors/neovim X-SVN-Commit-Revision: 502897 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CB93982BEC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 May 2019 14:08:13 -0000 Author: adamw Date: Tue May 28 14:08:12 2019 New Revision: 502897 URL: https://svnweb.freebsd.org/changeset/ports/502897 Log: MFH: r500370 r502895 Approved by: portmgr (with hat) Update neovim to 0.3.5 Maintenance release to fix issues found in v0.3.4. options: properly reset directories on 'autochdir' Remove MSVC optimization workaround for SHM_ALL Make SHM_ALL to a variable instead of a compound literal #define doc: mention "pynvim" module rename screen: don't crash when drawing popupmenu with 'rightleft' option look-behind match may use the wrong line number :terminal : set topline based on window height :recover : Fix crash on non-existent *.swp Disable LuaJIT on non-x86 architectures The version of LuaJIT in port doesn't work well (or at all) for neovim on non-x86 architectures. Plus, some users (at least the submitter, who made a good argument for it) may not want LuaJIT at all. So, make LuaJIT an OPTION. Enable it by default, and exclude it from all the archs that LuaJIT+neovim doesn't work on. Fall back instead on normal Lua. PR: 238079 Submitted by: Greg V Modified: branches/2019Q2/editors/neovim/Makefile branches/2019Q2/editors/neovim/distinfo Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/editors/neovim/Makefile ============================================================================== --- branches/2019Q2/editors/neovim/Makefile Tue May 28 14:06:01 2019 (r502896) +++ branches/2019Q2/editors/neovim/Makefile Tue May 28 14:08:12 2019 (r502897) @@ -3,7 +3,7 @@ PORTNAME= neovim DISTVERSIONPREFIX= v -DISTVERSION= 0.3.4 +DISTVERSION= 0.3.5 PORTREVISION= 1 CATEGORIES= editors @@ -15,8 +15,7 @@ LICENSE= APACHE20 BUILD_DEPENDS= gperf:devel/gperf \ ${LUA_MODLIBDIR}/bit.so:devel/lua-bitop \ ${LUA_MODLIBDIR}/lpeg.so:devel/lua-lpeg -LIB_DEPENDS= libluajit-5.1.so:lang/luajit \ - libmsgpackc.so:devel/msgpack \ +LIB_DEPENDS= libmsgpackc.so:devel/msgpack \ libtermkey.so:devel/libtermkey \ libunibilium.so:devel/unibilium \ libuv.so:devel/libuv \ @@ -26,7 +25,7 @@ TEST_DEPENDS= autoconf>=0:devel/autoconf \ gmake:devel/gmake \ libtool:devel/libtool -USES= cmake iconv lua:build pathfix pkgconfig +USES= cmake iconv pathfix pkgconfig USE_GITHUB= yes GH_TUPLE= libmpack:libmpack:1.0.5:libmpack \ libmpack:libmpack-lua:1.0.7:libmpack_lua @@ -35,8 +34,20 @@ CMAKE_ARGS= -DLUA_PRG:FILEPATH="${LUA_CMD}" \ -DCMAKE_INSTALL_MANDIR:PATH="${MANPREFIX}/man" \ -DDEPS_PREFIX:PATH="${LOCALBASE}" -OPTIONS_DEFINE= NLS PYNVIM +OPTIONS_DEFINE= LUAJIT NLS PYNVIM +OPTIONS_DEFAULT=LUAJIT +OPTIONS_EXCLUDE_aarch64=LUAJIT +OPTIONS_EXCLUDE_mips64= LUAJIT +OPTIONS_EXCLUDE_powerpc64= LUAJIT +OPTIONS_EXCLUDE_riscv= LUAJIT +OPTIONS_EXCLUDE_sparc64=LUAJIT OPTIONS_SUB= yes + +LUAJIT_DESC= Use LuaJIT for faster Lua code +LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit +LUAJIT_USES= lua:build +LUAJIT_CMAKE_OFF= -DPREFER_LUA:BOOL="ON" +LUAJIT_USES_OFF= lua:52 NLS_CMAKE_BOOL= ENABLE_LIBINTL NLS_USES= gettext PYNVIM_DESC= Enable support for plugins written in python Modified: branches/2019Q2/editors/neovim/distinfo ============================================================================== --- branches/2019Q2/editors/neovim/distinfo Tue May 28 14:06:01 2019 (r502896) +++ branches/2019Q2/editors/neovim/distinfo Tue May 28 14:08:12 2019 (r502897) @@ -1,6 +1,6 @@ -TIMESTAMP = 1547390550 -SHA256 (neovim-neovim-v0.3.4_GH0.tar.gz) = a641108bdebfaf319844ed46b1bf35d6f7c30ef5aeadeb29ba06e19c3274bc0e -SIZE (neovim-neovim-v0.3.4_GH0.tar.gz) = 9231575 +TIMESTAMP = 1556484851 +SHA256 (neovim-neovim-v0.3.5_GH0.tar.gz) = b8b30043963133214f78901cb6361189c8f94e9f5f1b2493a7cedb4c323236d6 +SIZE (neovim-neovim-v0.3.5_GH0.tar.gz) = 9232168 SHA256 (libmpack-libmpack-1.0.5_GH0.tar.gz) = 4ce91395d81ccea97d3ad4cb962f8540d166e59d3e2ddce8a22979b49f108956 SIZE (libmpack-libmpack-1.0.5_GH0.tar.gz) = 32966 SHA256 (libmpack-libmpack-lua-1.0.7_GH0.tar.gz) = 2ebe9c8972c378040c9b8505f5fb40a0c64d990cd68be6a62989362b18294d0a