mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Update to 0.1.3.
PR: 208867 Submitted by: tkato432 yahoo com Sponsored by: Absolight
This commit is contained in:
parent
4fb6be8422
commit
ca09c2e951
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=413577
4 changed files with 19 additions and 20 deletions
|
@ -2,9 +2,9 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= neovim
|
||||
PORTVERSION= 0.1.2
|
||||
PORTVERSION= 0.1.3
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= editors
|
||||
MASTER_SITES= GH
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Next generation Vim
|
||||
|
@ -21,11 +21,11 @@ LIB_DEPENDS= libunibilium.so:devel/unibilium \
|
|||
libuv.so:devel/libuv \
|
||||
libmsgpack.so:devel/msgpack
|
||||
|
||||
USES= cmake gettext-tools lua gmake pkgconfig
|
||||
USES= cmake:outsource compiler gettext iconv lua pathfix pkgconfig
|
||||
USE_GITHUB= yes
|
||||
GH_TAGNAME= b33c777
|
||||
|
||||
CMAKE_ARGS+= -DLUA_PRG=${LUA_CMD} \
|
||||
-DUSE_BUNDLED_DEPS=OFF
|
||||
CMAKE_ARGS= -DLUA_PRG:FILEPATH="${LUA_CMD}" \
|
||||
-DCMAKE_INSTALL_MANDIR:PATH="${MANPREFIX}/man" \
|
||||
-DDEPS_PREFIX:PATH="${LOCALBASE}"
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (neovim-neovim-0.1.2-b33c777_GH0.tar.gz) = abb394c0f206859f31d781af7b22cda2a0b74378ed56485c111d30e8b9016652
|
||||
SIZE (neovim-neovim-0.1.2-b33c777_GH0.tar.gz) = 7611302
|
||||
SHA256 (neovim-neovim-v0.1.3_GH0.tar.gz) = 7a86892d941b8829537ad46864b9a363d009ba56aeefdef2ee15ffa3eee5f92b
|
||||
SIZE (neovim-neovim-v0.1.3_GH0.tar.gz) = 7636777
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
--- CMakeLists.txt.orig 2015-07-06 08:07:23 UTC
|
||||
--- CMakeLists.txt.orig 2016-04-08 02:04:21 UTC
|
||||
+++ CMakeLists.txt
|
||||
@@ -277,6 +277,9 @@ file(GLOB MANPAGES
|
||||
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
man/nvim.1)
|
||||
@@ -213,7 +213,7 @@ else()
|
||||
|
||||
+unset(CMAKE_INSTALL_MANDIR)
|
||||
+set(CMAKE_INSTALL_MANDIR ${CMAKE_INSTALL_PREFIX}/man)
|
||||
+
|
||||
install_helper(
|
||||
FILES ${MANPAGES}
|
||||
DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
|
||||
# On FreeBSD 64 math.h uses unguarded C11 extension, which taints clang
|
||||
# 3.4.1 used there.
|
||||
- if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
|
||||
+ if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" AND CMAKE_C_COMPILER_ID MATCHES "Clang")
|
||||
add_definitions(-Wno-c11-extensions)
|
||||
endif()
|
||||
endif()
|
||||
|
|
|
@ -59,7 +59,7 @@ share/nvim/runtime/autoload/provider/clipboard.vim
|
|||
share/nvim/runtime/autoload/provider/python.vim
|
||||
share/nvim/runtime/autoload/provider/python3.vim
|
||||
share/nvim/runtime/autoload/provider/pythonx.vim
|
||||
share/nvim/runtime/autoload/provider/script_host.py
|
||||
share/nvim/runtime/autoload/provider/ruby.vim
|
||||
share/nvim/runtime/autoload/python3complete.vim
|
||||
share/nvim/runtime/autoload/pythoncomplete.vim
|
||||
share/nvim/runtime/autoload/remote/define.vim
|
||||
|
@ -167,6 +167,7 @@ share/nvim/runtime/compiler/xbuild.vim
|
|||
share/nvim/runtime/compiler/xmllint.vim
|
||||
share/nvim/runtime/compiler/xmlwf.vim
|
||||
share/nvim/runtime/delmenu.vim
|
||||
share/nvim/runtime/doc/api.txt
|
||||
share/nvim/runtime/doc/arabic.txt
|
||||
share/nvim/runtime/doc/autocmd.txt
|
||||
share/nvim/runtime/doc/change.txt
|
||||
|
@ -210,7 +211,6 @@ share/nvim/runtime/doc/nvim_provider.txt
|
|||
share/nvim/runtime/doc/nvim_python.txt
|
||||
share/nvim/runtime/doc/nvim_terminal_emulator.txt
|
||||
share/nvim/runtime/doc/options.txt
|
||||
share/nvim/runtime/doc/os_dos.txt
|
||||
share/nvim/runtime/doc/os_win32.txt
|
||||
share/nvim/runtime/doc/pattern.txt
|
||||
share/nvim/runtime/doc/pi_gzip.txt
|
||||
|
|
Loading…
Add table
Reference in a new issue