From owner-svn-ports-all@freebsd.org Mon Apr 18 14:07:13 2016 Return-Path: Delivered-To: svn-ports-all@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 352ACB126C5; Mon, 18 Apr 2016 14:07:13 +0000 (UTC) (envelope-from mat@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 F1723141E; Mon, 18 Apr 2016 14:07:12 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3IE7CGw081139; Mon, 18 Apr 2016 14:07:12 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3IE7Bhn081135; Mon, 18 Apr 2016 14:07:11 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201604181407.u3IE7Bhn081135@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 18 Apr 2016 14:07:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413577 - 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-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Apr 2016 14:07:13 -0000 Author: mat Date: Mon Apr 18 14:07:11 2016 New Revision: 413577 URL: https://svnweb.freebsd.org/changeset/ports/413577 Log: Update to 0.1.3. PR: 208867 Submitted by: tkato432 yahoo com Sponsored by: Absolight Modified: head/editors/neovim/Makefile (contents, props changed) head/editors/neovim/distinfo (contents, props changed) head/editors/neovim/files/patch-CMakeLists.txt (contents, props changed) head/editors/neovim/pkg-plist (contents, props changed) Modified: head/editors/neovim/Makefile ============================================================================== --- head/editors/neovim/Makefile Mon Apr 18 14:07:04 2016 (r413576) +++ head/editors/neovim/Makefile Mon Apr 18 14:07:11 2016 (r413577) @@ -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/unibi 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 Modified: head/editors/neovim/distinfo ============================================================================== --- head/editors/neovim/distinfo Mon Apr 18 14:07:04 2016 (r413576) +++ head/editors/neovim/distinfo Mon Apr 18 14:07:11 2016 (r413577) @@ -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 Modified: head/editors/neovim/files/patch-CMakeLists.txt ============================================================================== --- head/editors/neovim/files/patch-CMakeLists.txt Mon Apr 18 14:07:04 2016 (r413576) +++ head/editors/neovim/files/patch-CMakeLists.txt Mon Apr 18 14:07:11 2016 (r413577) @@ -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() Modified: head/editors/neovim/pkg-plist ============================================================================== --- head/editors/neovim/pkg-plist Mon Apr 18 14:07:04 2016 (r413576) +++ head/editors/neovim/pkg-plist Mon Apr 18 14:07:11 2016 (r413577) @@ -59,7 +59,7 @@ share/nvim/runtime/autoload/provider/cli 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