svn commit: r438591 - head/editors/vim
Adam Weinberger
adamw at FreeBSD.org
Sat Apr 15 17:10:29 UTC 2017
Author: adamw
Date: Sat Apr 15 17:10:28 2017
New Revision: 438591
URL: https://svnweb.freebsd.org/changeset/ports/438591
Log:
Update to patchlevel 566. Work around the new unnecessarily aggressive shebang
check by simply removing the shebang from a python file if vim isn't being built
with python support.
Modified:
head/editors/vim/Makefile
head/editors/vim/distinfo
Modified: head/editors/vim/Makefile
==============================================================================
--- head/editors/vim/Makefile Sat Apr 15 17:07:39 2017 (r438590)
+++ head/editors/vim/Makefile Sat Apr 15 17:10:28 2017 (r438591)
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= vim
-PORTVERSION= 8.0.0550
+PORTVERSION= 8.0.0566
DISTVERSIONPREFIX= v
CATEGORIES= editors
@@ -46,7 +46,7 @@ VIM_VER= ${PORTNAME}${PORTVERSION:R:S|.|
SLAVEDIRS= editors/vim-lite
USE_GITHUB= yes
-SHEBANG_FILES= runtime/tools/efm_perl.pl
+SHEBANG_FILES= runtime/tools/demoserver.py runtime/tools/efm_perl.pl
CPE_VERSION= ${PORTVERSION:R}
PORTSCOUT= site:https://github.com/vim/vim/releases
@@ -153,6 +153,9 @@ post-patch:
@${REINPLACE_CMD} -e 's|-liconv|${ICONV_LIB}|g' ${WRKSRC}/src/auto/configure
@${ECHO_CMD} '#define SYS_VIMRC_FILE "'${ETCDIR}'/vimrc"' >> ${WRKSRC}/src/feature.h
@${ECHO_CMD} '#define SYS_GVIMRC_FILE "'${ETCDIR}'/gvimrc"' >> ${WRKSRC}/src/feature.h
+.if empty(PORT_OPTIONS:MPYTHON)
+ @${REINPLACE_CMD} -e 1d ${WRKSRC}/runtime/tools/demoserver.py
+.endif
post-patch-EXUBERANT_CTAGS-off:
@${FIND} ${WRKSRC}/runtime/ -name 'menu*.vim' -print0 | ${XARGS} -0 ${REINPLACE_CMD} -e 's|ctags -R \.|${FIND} . -type f \\\| ${XARGS} ctags|g'
Modified: head/editors/vim/distinfo
==============================================================================
--- head/editors/vim/distinfo Sat Apr 15 17:07:39 2017 (r438590)
+++ head/editors/vim/distinfo Sat Apr 15 17:10:28 2017 (r438591)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1491668959
-SHA256 (vim-vim-v8.0.0550_GH0.tar.gz) = 626fa683029d09fe9269fcc16f6dc8e23172b06cac6a38170488962de9c02857
-SIZE (vim-vim-v8.0.0550_GH0.tar.gz) = 13070717
+TIMESTAMP = 1492274874
+SHA256 (vim-vim-v8.0.0566_GH0.tar.gz) = e292777fc41e1971ad59187dd8f45eb3f14213121153a8d49f51873490bc0963
+SIZE (vim-vim-v8.0.0566_GH0.tar.gz) = 13074061
More information about the svn-ports-head
mailing list