From owner-svn-ports-head@freebsd.org Thu Nov 10 08:06:05 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 43574C39BDD; Thu, 10 Nov 2016 08:06:05 +0000 (UTC) (envelope-from wen@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 mx1.freebsd.org (Postfix) with ESMTPS id 1FB01AA9; Thu, 10 Nov 2016 08:06:05 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAA864LM034691; Thu, 10 Nov 2016 08:06:04 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAA863ci034686; Thu, 10 Nov 2016 08:06:03 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201611100806.uAA863ci034686@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Thu, 10 Nov 2016 08:06:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425833 - in head/editors/neovim: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Nov 2016 08:06:05 -0000 Author: wen Date: Thu Nov 10 08:06:03 2016 New Revision: 425833 URL: https://svnweb.freebsd.org/changeset/ports/425833 Log: - Update to 0.1.6 PR: 214311 Submitted by: gor@clogic.com.ua(maintainer) Modified: head/editors/neovim/Makefile head/editors/neovim/distinfo head/editors/neovim/files/patch-CMakeLists.txt head/editors/neovim/files/patch-src_nvim_os_pty__process__unix.c head/editors/neovim/pkg-plist Modified: head/editors/neovim/Makefile ============================================================================== --- head/editors/neovim/Makefile Thu Nov 10 07:42:01 2016 (r425832) +++ head/editors/neovim/Makefile Thu Nov 10 08:06:03 2016 (r425833) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= neovim -PORTVERSION= 0.1.5 +PORTVERSION= 0.1.6 DISTVERSIONPREFIX= v CATEGORIES= editors @@ -12,7 +12,8 @@ COMMENT= Next generation Vim LICENSE= APACHE20 BUILD_DEPENDS= ${LUA_MODLIBDIR}/bit.so:devel/lua-bitop \ - ${LUA_MODLIBDIR}/lpeg.so:devel/lua-lpeg + ${LUA_MODLIBDIR}/lpeg.so:devel/lua-lpeg \ + gperf:devel/gperf LIB_DEPENDS= libunibilium.so:devel/unibilium \ libvterm.so:devel/libvterm \ libtermkey.so:devel/libtermkey \ @@ -22,7 +23,7 @@ LIB_DEPENDS= libunibilium.so:devel/unibi USES= cmake:outsource gettext iconv ninja lua:build pathfix pkgconfig USE_GITHUB= yes -GH_TUPLE= tarruda:libmpack:1.0.2:libmpack +GH_TUPLE= tarruda:libmpack:1.0.3:libmpack CMAKE_ARGS= -DLUA_PRG:FILEPATH="${LUA_CMD}" \ -DCMAKE_INSTALL_MANDIR:PATH="${MANPREFIX}/man" \ @@ -41,5 +42,6 @@ pre-build: -I${LUA_INCDIR} -shared lmpack.c -o \ ${BUILD_WRKSRC}/src/nvim/mpack.so \ ${LUA_LIBDIR}/liblua-${LUA_VER}.so) + @${LN} -s ${BUILD_WRKSRC}/src/nvim/mpack.so ${BUILD_WRKSRC}/runtime/mpack.so .include Modified: head/editors/neovim/distinfo ============================================================================== --- head/editors/neovim/distinfo Thu Nov 10 07:42:01 2016 (r425832) +++ head/editors/neovim/distinfo Thu Nov 10 08:06:03 2016 (r425833) @@ -1,5 +1,5 @@ -TIMESTAMP = 1472456512 -SHA256 (neovim-neovim-v0.1.5_GH0.tar.gz) = f286ff7994ef1835272285425d65804063f112c91925fee3ef8865282a6d2b7e -SIZE (neovim-neovim-v0.1.5_GH0.tar.gz) = 7813974 -SHA256 (tarruda-libmpack-1.0.2_GH0.tar.gz) = 9c570b2aab81b0c56d97cbd8fc483dc431b69510fd9becb4a1845291563e8bc9 -SIZE (tarruda-libmpack-1.0.2_GH0.tar.gz) = 44671 +TIMESTAMP = 1478584984 +SHA256 (neovim-neovim-v0.1.6_GH0.tar.gz) = a9fe7aadd38ef015f82ec340f6b6c0629d02c9ca4d85352db0934ae511d2f02a +SIZE (neovim-neovim-v0.1.6_GH0.tar.gz) = 7810818 +SHA256 (tarruda-libmpack-1.0.3_GH0.tar.gz) = 65eb21cfa9313204ac5296e3b305d752b8422c724b6375caecc6385f0a6d6e22 +SIZE (tarruda-libmpack-1.0.3_GH0.tar.gz) = 45720 Modified: head/editors/neovim/files/patch-CMakeLists.txt ============================================================================== --- head/editors/neovim/files/patch-CMakeLists.txt Thu Nov 10 07:42:01 2016 (r425832) +++ head/editors/neovim/files/patch-CMakeLists.txt Thu Nov 10 08:06:03 2016 (r425833) @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2016-09-14 12:44:20 UTC +--- CMakeLists.txt.orig 2016-11-08 05:44:53 UTC +++ CMakeLists.txt -@@ -213,7 +213,7 @@ else() +@@ -221,7 +221,7 @@ else() # On FreeBSD 64 math.h uses unguarded C11 extension, which taints clang # 3.4.1 used there. @@ -9,7 +9,7 @@ add_definitions(-Wno-c11-extensions) endif() endif() -@@ -369,9 +369,9 @@ endforeach() +@@ -386,9 +386,9 @@ endforeach() # Find Lua interpreter include(LuaHelpers) Modified: head/editors/neovim/files/patch-src_nvim_os_pty__process__unix.c ============================================================================== --- head/editors/neovim/files/patch-src_nvim_os_pty__process__unix.c Thu Nov 10 07:42:01 2016 (r425832) +++ head/editors/neovim/files/patch-src_nvim_os_pty__process__unix.c Thu Nov 10 08:06:03 2016 (r425833) @@ -1,11 +1,11 @@ ---- src/nvim/os/pty_process_unix.c.orig 2016-08-22 02:14:28 UTC +--- src/nvim/os/pty_process_unix.c.orig 2016-11-08 05:50:09 UTC +++ src/nvim/os/pty_process_unix.c @@ -9,7 +9,7 @@ #include // forkpty is not in POSIX, so headers are platform-specific -#if defined(__FreeBSD__) -+#if defined(__FreeBSD__) || defined __DragonFly__ ++#if defined(__FreeBSD__) || defined (__DragonFly__) # include #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__) # include Modified: head/editors/neovim/pkg-plist ============================================================================== --- head/editors/neovim/pkg-plist Thu Nov 10 07:42:01 2016 (r425832) +++ head/editors/neovim/pkg-plist Thu Nov 10 08:06:03 2016 (r425833) @@ -47,6 +47,7 @@ share/nvim/runtime/autoload/gnat.vim share/nvim/runtime/autoload/gzip.vim share/nvim/runtime/autoload/health.vim share/nvim/runtime/autoload/health/nvim.vim +share/nvim/runtime/autoload/health/provider.vim share/nvim/runtime/autoload/htmlcomplete.vim share/nvim/runtime/autoload/javascriptcomplete.vim share/nvim/runtime/autoload/man.vim @@ -175,6 +176,7 @@ share/nvim/runtime/doc/autocmd.txt share/nvim/runtime/doc/change.txt share/nvim/runtime/doc/cmdline.txt share/nvim/runtime/doc/debug.txt +share/nvim/runtime/doc/deprecated.txt share/nvim/runtime/doc/develop.txt share/nvim/runtime/doc/diff.txt share/nvim/runtime/doc/digraph.txt @@ -225,7 +227,6 @@ share/nvim/runtime/doc/print.txt share/nvim/runtime/doc/provider.txt share/nvim/runtime/doc/quickfix.txt share/nvim/runtime/doc/quickref.txt -share/nvim/runtime/doc/quotes.txt share/nvim/runtime/doc/recover.txt share/nvim/runtime/doc/remote.txt share/nvim/runtime/doc/remote_plugin.txt @@ -350,6 +351,7 @@ share/nvim/runtime/ftplugin/gitsendemail share/nvim/runtime/ftplugin/go.vim share/nvim/runtime/ftplugin/gpg.vim share/nvim/runtime/ftplugin/gprof.vim +share/nvim/runtime/ftplugin/groovy.vim share/nvim/runtime/ftplugin/group.vim share/nvim/runtime/ftplugin/grub.vim share/nvim/runtime/ftplugin/haml.vim @@ -779,6 +781,7 @@ share/nvim/runtime/syntax/autohotkey.vim share/nvim/runtime/syntax/autoit.vim share/nvim/runtime/syntax/automake.vim share/nvim/runtime/syntax/ave.vim +share/nvim/runtime/syntax/avra.vim share/nvim/runtime/syntax/awk.vim share/nvim/runtime/syntax/ayacc.vim share/nvim/runtime/syntax/b.vim