svn commit: r530232 - head/editors/vim

Adam Weinberger adamw at FreeBSD.org
Wed Apr 1 18:40:29 UTC 2020


Author: adamw
Date: Wed Apr  1 18:40:18 2020
New Revision: 530232
URL: https://svnweb.freebsd.org/changeset/ports/530232

Log:
  vim: Update to patchlevel 491
  
  While here, restrict ctags patching attempts to only the files that
  will need to be patched. This prevents the creation of dozens of
  .orig files that are identical to the "patched" versions.

Modified:
  head/editors/vim/Makefile
  head/editors/vim/distinfo

Modified: head/editors/vim/Makefile
==============================================================================
--- head/editors/vim/Makefile	Wed Apr  1 18:07:17 2020	(r530231)
+++ head/editors/vim/Makefile	Wed Apr  1 18:40:18 2020	(r530232)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	vim
-PORTVERSION=	8.2.0345
+PORTVERSION=	8.2.0491
 DISTVERSIONPREFIX=	v
 CATEGORIES=	editors
 
@@ -186,13 +186,16 @@ post-install:
 
 # OPTIONS
 post-patch-CTAGS_BASE-on:
-	${FIND} ${WRKSRC}/runtime/ -name 'menu*.vim' -print0 | ${XARGS} -0 ${REINPLACE_CMD} -Ee 's!ctags -R ?\.!${FIND} . -type f \\| ${XARGS} ctags!g'
+	${FIND} ${WRKSRC}/runtime -name 'menu*.vim' | ${XARGS} ${GREP} -l 'ctags -R' | \
+		${XARGS} ${REINPLACE_CMD} -Ee 's!ctags -R ?\.!${FIND} . -type f \\| ${XARGS} ctags!g'
 
 post-patch-CTAGS_EXUBERANT-on:
-	${FIND} ${WRKSRC}/runtime/ -name 'menu*.vim' -print0 | ${XARGS} -0 ${REINPLACE_CMD} -e 's|ctags -R|exctags -R|g'
+	${FIND} ${WRKSRC}/runtime -name 'menu*.vim' | ${XARGS} ${GREP} -l 'ctags -R' | \
+		${XARGS} ${REINPLACE_CMD} -e 's|ctags -R|exctags -R|g'
 
 post-patch-CTAGS_UNIVERSAL-on:
-	${FIND} ${WRKSRC}/runtime/ -name 'menu*.vim' -print0 | ${XARGS} -0 ${REINPLACE_CMD} -e 's|ctags -R|uctags -R|g'
+	${FIND} ${WRKSRC}/runtime -name 'menu*.vim' | ${XARGS} ${GREP} -l 'ctags -R' | \
+		${XARGS} ${REINPLACE_CMD} -e 's|ctags -R|uctags -R|g'
 
 post-patch-LUA-on:
 	${REINPLACE_CMD} -e 's|set dummy lua;|set dummy ${LUA_CMD};|g' ${WRKSRC}/src/auto/configure

Modified: head/editors/vim/distinfo
==============================================================================
--- head/editors/vim/distinfo	Wed Apr  1 18:07:17 2020	(r530231)
+++ head/editors/vim/distinfo	Wed Apr  1 18:40:18 2020	(r530232)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1583099504
-SHA256 (vim-vim-v8.2.0345_GH0.tar.gz) = 9e57d4f659a3b50a944f635fa4ef1c0e0e588cf936d3037a61316d16f9b22682
-SIZE (vim-vim-v8.2.0345_GH0.tar.gz) = 14839725
+TIMESTAMP = 1585764072
+SHA256 (vim-vim-v8.2.0491_GH0.tar.gz) = 2a241ccf6c70de676a1dcdf8289c2635991d4af96110f7a26c42db5f734f79d5
+SIZE (vim-vim-v8.2.0491_GH0.tar.gz) = 14881178


More information about the svn-ports-all mailing list