From owner-svn-ports-all@freebsd.org Thu Jun 9 13:41:05 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 9AB2FB702A1; Thu, 9 Jun 2016 13:41:05 +0000 (UTC) (envelope-from marino@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 55CA316B9; Thu, 9 Jun 2016 13:41:05 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u59Df4Lb080232; Thu, 9 Jun 2016 13:41:04 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u59Df4xc080228; Thu, 9 Jun 2016 13:41:04 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201606091341.u59Df4xc080228@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 9 Jun 2016 13:41:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416603 - 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.22 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: Thu, 09 Jun 2016 13:41:05 -0000 Author: marino Date: Thu Jun 9 13:41:03 2016 New Revision: 416603 URL: https://svnweb.freebsd.org/changeset/ports/416603 Log: editors/neovim: Unbreak using dports patches One of the 3 patches is for DF, the other two are commonly needed. Added: head/editors/neovim/files/patch-config_CMakeLists.txt (contents, props changed) head/editors/neovim/files/patch-src_nvim_event_pty__process.c (contents, props changed) head/editors/neovim/files/patch-src_nvim_shada.c (contents, props changed) Modified: head/editors/neovim/Makefile Modified: head/editors/neovim/Makefile ============================================================================== --- head/editors/neovim/Makefile Thu Jun 9 13:28:14 2016 (r416602) +++ head/editors/neovim/Makefile Thu Jun 9 13:41:03 2016 (r416603) @@ -3,7 +3,7 @@ PORTNAME= neovim PORTVERSION= 0.1.4 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= v CATEGORIES= editors @@ -12,8 +12,6 @@ COMMENT= Next generation Vim LICENSE= APACHE20 -BROKEN= fails to build - BUILD_DEPENDS= ${LUA_MODLIBDIR}/bit.so:devel/lua-bitop \ ${LUA_MODLIBDIR}/lpeg.so:devel/lua-lpeg LIB_DEPENDS= libunibilium.so:devel/unibilium \ Added: head/editors/neovim/files/patch-config_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/neovim/files/patch-config_CMakeLists.txt Thu Jun 9 13:41:03 2016 (r416603) @@ -0,0 +1,11 @@ +--- config/CMakeLists.txt.orig 2016-06-09 12:33:52 UTC ++++ config/CMakeLists.txt +@@ -74,7 +74,7 @@ check_c_source_compiles(" + #define _BSD_SOURCE 1 + #define _DEFAULT_SOURCE 1 + ${SI} +- #include ++ #include + #ifndef be64toh + # error No be64toh macros + #endif Added: head/editors/neovim/files/patch-src_nvim_event_pty__process.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/neovim/files/patch-src_nvim_event_pty__process.c Thu Jun 9 13:41:03 2016 (r416603) @@ -0,0 +1,11 @@ +--- src/nvim/event/pty_process.c.orig 2016-04-25 01:46:34 UTC ++++ src/nvim/event/pty_process.c +@@ -10,7 +10,7 @@ + #include + + // forkpty is not in POSIX, so headers are platform-specific +-#if defined(__FreeBSD__) ++#if defined(__FreeBSD__) || defined __DragonFly__ + # include + #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__) + # include Added: head/editors/neovim/files/patch-src_nvim_shada.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/neovim/files/patch-src_nvim_shada.c Thu Jun 9 13:41:03 2016 (r416603) @@ -0,0 +1,10 @@ +--- src/nvim/shada.c.orig 2016-04-25 01:46:34 UTC ++++ src/nvim/shada.c +@@ -46,7 +46,6 @@ + #ifdef HAVE_BE64TOH + # define _BSD_SOURCE 1 + # define _DEFAULT_SOURCE 1 +-# include + #endif + + // Note: when using bufset hash pointers are intentionally casted to uintptr_t