1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

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.
This commit is contained in:
Adam Weinberger 2020-04-01 18:40:18 +00:00
parent 81c2c12d2d
commit 222155c149
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=530232
2 changed files with 10 additions and 7 deletions

View File

@ -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

View File

@ -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