summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwen <wen@FreeBSD.org>2016-11-10 08:06:03 +0000
committerwen <wen@FreeBSD.org>2016-11-10 08:06:03 +0000
commit36cba5ae59fc40ba19ea9b48802b569bbeb21f1f (patch)
tree2ba8bed2e2cc03ede8fd99fc540c4e096747d5b0
parent2fb4b00291da2fe0317fa68c3556dae2df1c16b7 (diff)
downloadFreeBSD-ports-36cba5ae59fc40ba19ea9b48802b569bbeb21f1f.zip
FreeBSD-ports-36cba5ae59fc40ba19ea9b48802b569bbeb21f1f.tar.gz
- Update to 0.1.6
PR: 214311 Submitted by: gor@clogic.com.ua(maintainer)
-rw-r--r--editors/neovim/Makefile8
-rw-r--r--editors/neovim/distinfo10
-rw-r--r--editors/neovim/files/patch-CMakeLists.txt6
-rw-r--r--editors/neovim/files/patch-src_nvim_os_pty__process__unix.c4
-rw-r--r--editors/neovim/pkg-plist5
5 files changed, 19 insertions, 14 deletions
diff --git a/editors/neovim/Makefile b/editors/neovim/Makefile
index e05aee8..cedd555 100644
--- a/editors/neovim/Makefile
+++ b/editors/neovim/Makefile
@@ -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/unibilium \
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 <bsd.port.mk>
diff --git a/editors/neovim/distinfo b/editors/neovim/distinfo
index b7b7ffc..4cce79e 100644
--- a/editors/neovim/distinfo
+++ b/editors/neovim/distinfo
@@ -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
diff --git a/editors/neovim/files/patch-CMakeLists.txt b/editors/neovim/files/patch-CMakeLists.txt
index 144fe5a..1335b47 100644
--- a/editors/neovim/files/patch-CMakeLists.txt
+++ b/editors/neovim/files/patch-CMakeLists.txt
@@ -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)
diff --git a/editors/neovim/files/patch-src_nvim_os_pty__process__unix.c b/editors/neovim/files/patch-src_nvim_os_pty__process__unix.c
index 7dedc08..993dc4f 100644
--- a/editors/neovim/files/patch-src_nvim_os_pty__process__unix.c
+++ b/editors/neovim/files/patch-src_nvim_os_pty__process__unix.c
@@ -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 <sys/ioctl.h>
// forkpty is not in POSIX, so headers are platform-specific
-#if defined(__FreeBSD__)
-+#if defined(__FreeBSD__) || defined __DragonFly__
++#if defined(__FreeBSD__) || defined (__DragonFly__)
# include <libutil.h>
#elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
# include <util.h>
diff --git a/editors/neovim/pkg-plist b/editors/neovim/pkg-plist
index 842c3a4..d0ca0b0 100644
--- a/editors/neovim/pkg-plist
+++ b/editors/neovim/pkg-plist
@@ -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.vim
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
OpenPOWER on IntegriCloud