vim/vim-6.2-specsyntax.patch

33 lines
3.0 KiB
Diff
Raw Normal View History

auto-import changelog data from vim-6.2.121-1.src.rpm 6.2.121-1 - patchlevel 121 - fix buildrequires (#106824, #105832) 6.2.98-1.1 - rebuilt 6.2.98-1 - upstream fix for undeclared stop_insert_mode variable 6.2.97-1 - patchlevel 97, see README for descriptions 6.2.71-1 - several upstream fixes (PL 71) 6.2.60-1.1 - rebuilt 6.2.60-1 - update to fix cut&paste segfaults and UTF8 problems - move vimrc to /etc (#2188) - fix filelist 6.2.57-2 - rebuilt 6.2.57-1 - update to patchlevel 57, this should take care of #100670 Thu Jul 24 2003 Karsten Hopp <karsten@redhat.de> 6.2.21-1 - some minor upstream fixes (PL 21) Mon Jul 14 2003 Chip Turner <cturner@redhat.com> - rebuild for new perl 5.8.1 Fri Jul 04 2003 Karsten Hopp <karsten@redhat.de> 6.2.18-1 - update Tue Jun 10 2003 Karsten Hopp <karsten@redhat.de> 6.2.14-1 - update to 6.2 Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> - rebuilt Tue Jun 03 2003 Karsten Hopp <karsten@redhat.de> 6.1.474-3 - rebuild Mon Jun 02 2003 Karsten Hopp <karsten@redhat.de> 6.1.474-2 - initialize variable before using it Tue May 06 2003 Karsten Hopp <karsten@redhat.de> 6.1.474-1 - patchlevel 474 Wed Apr 23 2003 Karsten Hopp <karsten@redhat.de> 6.1.469-4 - add gvimdiff link (#89462) Sun Apr 20 2003 Karsten Hopp <karsten@redhat.de> 6.1.469-3 - rebuild with vim-X11 and gtk2 - don't hardcode ruby path (thanks to Ian Macdonald) Fri Apr 18 2003 Karsten Hopp <karsten@redhat.de> 6.1.469-2 - rebuild Thu Apr 17 2003 Karsten Hopp <karsten@redhat.de> 6.1.469-1 - enable ruby interpreter (#89045) and update to patchlevel 469 Tue Apr 01 2003 Karsten Hopp <karsten@redhat.de> 6.1.434-1 - update to patchlevel 434 - update gtk2 patch and disable it for now 6.1.406-1 - new versioning to match the official patchlevel - new tarballs from the stable CVS tree to get rid of >300 patches - add gtk2 patch fom gvim and build gtk2 gvim
2004-09-09 14:06:47 +00:00
--- vim62d/runtime/syntax/spec.vim.highlite 2003-05-13 14:48:55.000000000 +0200
+++ vim62d/runtime/syntax/spec.vim 2003-05-13 14:52:51.000000000 +0200
@@ -38,7 +38,7 @@
syn match specManpageFile '[a-zA-Z]\.1'
"Day, Month and most used license acronyms
-syn keyword specLicense contained GPL LGPL BSD MIT GNU
+syn keyword specLicense contained GPL LGPL BSD MIT GNU distributable
syn keyword specWeekday contained Mon Tue Wed Thu Fri Sat Sun
syn keyword specMonth contained Jan Feb Mar Apr Jun Jul Aug Sep Oct Nov Dec
syn keyword specMonth contained January February March April May June July August September October November December
@@ -61,9 +61,9 @@
"specComands
syn match specConfigure contained '\./configure'
-syn match specTarCommand contained '\<tar\s\+[cxvpzIf]\{,5}\s*'
+syn match specTarCommand contained '\<tar\s\+[cxvpzIjf]\{,5}\s*'
syn keyword specCommandSpecial contained root
-syn keyword specCommand contained make xmkmf mkdir chmod ln find sed rm strip moc echo grep ls rm mv mkdir install cp pwd cat tail then else elif cd gzip rmdir ln eval export touch
+syn keyword specCommand contained make xmkmf mkdir chmod ln find sed rm strip moc echo grep ls rm mv mkdir install cp pwd cat tail then else elif cd gzip rmdir ln eval export touch bzip2 bunzip2 gunzip
syn cluster specCommands contains=specCommand,specTarCommand,specConfigure,specCommandSpecial
"frequently used rpm env vars
@@ -105,7 +105,7 @@
"%% PreAmble Section %%
"Copyright and Serial were deprecated by License and Epoch
syn region specPreAmbleDeprecated oneline matchgroup=specError start='^\(Copyright\|Serial\)' end='$' contains=specEmail,specURL,specURLMacro,specLicense,specColon,specVariables,specSpecialChar,specMacroIdentifier
-syn region specPreAmble oneline matchgroup=specCommand start='^\(Prereq\|Summary\|Name\|Version\|Packager\|Requires\|Icon\|URL\|Source\d*\|Patch\d*\|Prefix\|Packager\|Group\|License\|Release\|BuildRoot\|Distribution\|Vendor\|Provides\|ExclusiveArch\|ExcludeArch\|ExclusiveOS\|Obsoletes\|BuildArch\|BuildArchitectures\|BuildRequires\|BuildConflicts\|BuildPreReq\|Conflicts\|AutoRequires\|AutoReq\|AutoReqProv\|AutoProv\|Epoch\)' end='$' contains=specEmail,specURL,specURLMacro,specLicense,specColon,specVariables,specSpecialChar,specMacroIdentifier
+syn region specPreAmble oneline matchgroup=specCommand start='^\(Prereq\|Summary\|Name\|Version\|Packager\|Requires\|Icon\|URL\|Source\d*\|Patch\d*\|Prefix\|Packager\|Group\|License\|Release\|BuildRoot\|Distribution\|Vendor\|Provides\|ExclusiveArch\|ExcludeArch\|ExclusiveOS\|Obsoletes\|BuildArch\|BuildArchitectures\|BuildRequires\|BuildConflicts\|BuildPreReq\|Conflicts\|AutoRequires\|AutoReq\|AutoReqProv\|AutoProv\|Epoch\|ExcludeOS\)' end='$' contains=specEmail,specURL,specURLMacro,specLicense,specColon,specVariables,specSpecialChar,specMacroIdentifier
"%% Description Section %%
syn region specDescriptionArea matchgroup=specSection start='^%description' end='^%'me=e-1 contains=specDescriptionOpts,specEmail,specURL,specNumber,specMacroIdentifier,specComment