]> git.pld-linux.org Git - packages/vim.git/blame - spec.vim
- fixed %py_o?comp and %service/%banner hiligthing
[packages/vim.git] / spec.vim
CommitLineData
18f77c52
ER
1" Filename: spec.vim
2" Purpose: Vim syntax file
3" Language: SPEC: Build/install scripts for Linux RPM packages
4" Maintainer: Donovan Rebbechi elflord@pegasus.rutgers.edu
5" URL: http://pegasus.rutgers.edu/~elflord/vim/syntax/spec.vim
6" Last Change: Tue Oct 3 17:35:15 BRST 2000 <aurelio@conectiva.com.br>
7
8" For version 5.x: Clear all syntax items
9" For version 6.x: Quit when a syntax file was already loaded
10if version < 600
11 syntax clear
12elseif exists("b:current_syntax")
13 finish
14endif
15
16syn sync minlines=1000
17
06d78f8d 18syn match specSpecialChar contained '[][!$()\\|>^;:]'
18f77c52
ER
19syn match specColon contained ':'
20syn match specPercent contained '%'
21
22syn match specVariables contained '\$\h\w*' contains=specSpecialVariablesNames,specSpecialChar
23syn match specVariables contained '\${\w*}' contains=specSpecialVariablesNames,specSpecialChar
24
25syn match specMacroIdentifier contained '%\h\w*' contains=specMacroNameLocal,specMacroNameOther,specPercent
06d78f8d
ER
26"syn match specMacroIdentifier contained '%{\w*}' contains=specMacroNameLocal,specMacroNameOther,specPercent,specSpecialChar
27syn region specMacroIdentifier oneline matchgroup=Special start='%{' skip='\\}' end='}' contains=specMacroNameLocal,specMacroNameOther,specPercent,specSpecialChar
28syn match specBcond contained '%{with\(out\)\?\s\+[a-zA-Z0-9_-]\+}'
18f77c52
ER
29
30syn match specSpecialVariables contained '\$[0-9]\|\${[0-9]}'
7da61caa 31syn match specCommandOpts contained '\s\(-\w\+\|--\w[a-zA-Z0-9_-]\+\)'ms=s+1
18f77c52
ER
32syn match specComment '^\s*#.*$'
33
34
35syn case match
36
37
983d4cf0 38" matches with no highlight
18f77c52
ER
39syn match specNoNumberHilite 'X11\|X11R6\|[a-zA-Z]*\.\d\|[a-zA-Z][-/]\d'
40syn match specManpageFile '[a-zA-Z]\.1'
41
983d4cf0 42" Day, Month and most used license acronyms
18f77c52
ER
43syn keyword specLicense contained GPL LGPL BSD MIT GNU
44syn keyword specWeekday contained Mon Tue Wed Thu Fri Sat Sun
45syn keyword specMonth contained Jan Feb Mar Apr Jun Jul Aug Sep Oct Nov Dec
46syn keyword specMonth contained January February March April May June July August September October November December
47
983d4cf0 48" #, @, www
18f77c52
ER
49syn match specNumber '\(^-\=\|[ \t]-\=\|-\)[0-9.-]*[0-9]'
50syn match specEmail contained "<\=\<[A-Za-z0-9_.-]\+@\([A-Za-z0-9_-]\+\.\)\+[A-Za-z]\+\>>\="
09c38e14 51syn match specURL contained '\<\(\(https\{0,1}\|ftp\)://\|\(www[23]\{0,1}\.\|ftp\.\)\)[A-Za-z0-9._/~:,#?=-]\+\>'
18f77c52
ER
52syn match specURLMacro contained '\<\(\(https\{0,1}\|ftp\)://\|\(www[23]\{0,1}\.\|ftp\.\)\)[A-Za-z0-9._/~:,#%{}-]\+\>' contains=specMacroIdentifier
53
983d4cf0
ER
54" TODO take specSpecialVariables out of the cluster for the sh* contains (ALLBUT)
55" Special system directories
18f77c52
ER
56syn match specListedFilesPrefix contained '/\(usr\|local\|opt\|X11R6\|X11\)/'me=e-1
57syn match specListedFilesBin contained '/s\=bin/'me=e-1
58syn match specListedFilesLib contained '/\(lib\|include\)/'me=e-1
59syn match specListedFilesDoc contained '/\(man\d*\|doc\|info\)\>'
60syn match specListedFilesEtc contained '/etc/'me=e-1
61syn match specListedFilesShare contained '/share/'me=e-1
62syn cluster specListedFiles contains=specListedFilesBin,specListedFilesLib,specListedFilesDoc,specListedFilesEtc,specListedFilesShare,specListedFilesPrefix,specVariables,specSpecialChar
63
983d4cf0 64" specComands
18f77c52 65syn match specConfigure contained '\./configure'
4273bb63 66syn match specTarCommand contained '\<tar\s\+[cxvpzjf]\{,5}\s*'
7d7d47a3
ER
67syn match specMacro contained '%\(\(group\|user\)\(add\|remove\)\|banner\|service\|addusertogroup\|apache_config_\(un\)\?install\|depmod\|py_o\?comp\)'
68" XXX don't forget to update specScriptArea when updating specMacro
18f77c52 69syn keyword specCommandSpecial contained root
73b8e09b 70syn keyword specCommand contained make xmkmf mkdir chmod find sed rm strip moc echo grep ls rm mv mkdir chown install cp pwd cat tail then else elif cd gzip rmdir ln eval export touch unzip bzip2
3e77e77f 71syn cluster specCommands contains=specCommand,specTarCommand,specConfigure,specCommandSpecial,specMacro
18f77c52 72
983d4cf0 73" frequently used rpm env vars
18f77c52
ER
74syn keyword specSpecialVariablesNames contained RPM_BUILD_ROOT RPM_BUILD_DIR RPM_SOURCE_DIR RPM_OPT_FLAGS LDFLAGS CC CC_FLAGS CPPNAME CFLAGS CXX CXXFLAGS CPPFLAGS
75
983d4cf0 76" valid macro names from /usr/lib/rpm/macros
5892cdf4
ER
77syn keyword specMacroNameOther contained buildroot buildsubdir debugcflags debuginfocflags date distribution disturl ix86
78syn keyword specMacroNameOther contained kgcc kgcc_package name nil optflags packager perl_archlib perl_privlib perl_sitearch
983d4cf0
ER
79syn keyword specMacroNameOther contained perl_sitelib perl_vendorarch perl_vendorlib py_sitedir py_sitescriptdir release
80syn keyword specMacroNameOther contained requires_eq rpmcflags rpmcxxflags rpmldflags tmpdir vendor version epoch
18f77c52
ER
81syn match specMacroNameOther contained '\<\(PATCH\|SOURCE\)\d*\>'
82
983d4cf0
ER
83" valid _macro names from /usr/lib/rpm/macros
84syn keyword specMacroNameLocal contained _aclocaldir _applnkdir _arch _binary_payload _bindir _build _build_arch _build_alias
85syn keyword specMacroNameLocal contained _build_cpu _builddir _build_os _buildshell _buildsubdir _build_vendor _bzip2bin _datadir
7d7d47a3 86syn keyword specMacroNameLocal contained _dbpath _dbpath_rebuild _defaultdocdir _desktopdir _docdir _examplesdir _excludedocs _kdedocdir
983d4cf0
ER
87syn keyword specMacroNameLocal contained _exec_prefix _fixgroup _fixowner _fixperms _fontsdir _ftpport _ftpproxy _gnu _gpg_name
88syn keyword specMacroNameLocal contained _gpg_path _gtkdocdir _gzipbin _host _host_alias _host_cpu _host_os _host_vendor
89syn keyword specMacroNameLocal contained _httpport _httpproxy _iconsdir _includedir _infodir _initrddir _install_langs
90syn keyword specMacroNameLocal contained _install_script_path _instchangelog _javaclasspath _javadir _javadocdir _kernelsrcdir
91syn keyword specMacroNameLocal contained _kernel_ver _kernel_ver_str _langpatt _lib _libdir _libexecdir _localstatedir _mandir
92syn keyword specMacroNameLocal contained _netsharedpath _oldincludedir _omf_dest_dir _os _package_version _pgpbin _pgp_name
93syn keyword specMacroNameLocal contained _pgp_path _pixmapsdir _pkgconfigdir _prefix _preScriptEnvironment _provides _rpmdir
94syn keyword specMacroNameLocal contained _rpmfilename _sbindir _sharedstatedir _signature _smp_mflags _sourcedir _source_payload
95syn keyword specMacroNameLocal contained _specdir _srcrpmdir _sysconfdir _target _target_alias _target_cpu _target_os _target_platform
96syn keyword specMacroNameLocal contained _target_vendor _target_base_arch _timecheck _tmppath _topdir _usr _usrsrc _var _vendor
9ac05cd4 97syn keyword specMacroNameLocal contained __cxx __cc __make __perl __libtoolize __aclocal __autoconf __automake __autoheader __gettextize __sed
18f77c52
ER
98
99
983d4cf0 100" ------------------------------------------------------------------------------
18f77c52
ER
101" here's is all the spec sections definitions: PreAmble, Description, Package,
102" Scripts, Files and Changelog
103
983d4cf0
ER
104" One line macros - valid in all ScriptAreas
105" tip: remember do include new items on specScriptArea's skip section
06d78f8d 106syn region specSectionMacroArea oneline matchgroup=specSectionMacro start='^%\(\(un\)\?define\|dump\|trace\|patch\d*\|setup\|configure2_13\|configure\|GNUconfigure\|find_lang\|makeinstall\|bcond_with\(out\)\?\|include\)\>' end='$' contains=specCommandOpts,specMacroIdentifier,specSectionMacroBcondArea
811b82fb 107syn region specSectionMacroBracketArea oneline matchgroup=specSectionMacro start='^%{\(configure2_13\|configure\|GNUconfigure\|find_lang\|makeinstall\)}' end='$' contains=specCommandOpts,specMacroIdentifier
06d78f8d 108syn region specSectionMacroBcondArea oneline matchgroup=specBlock start='%{!\??\(with\(out\)\?_[a-zA-Z0-9_]\+\|debug\):' skip='\\}' end='}' contains=ALLBUT,shCase
18f77c52 109
983d4cf0
ER
110" %% Files Section %%
111" TODO %config valid parameters: missingok\|noreplace
112" TODO %verify valid parameters: \(not\)\= \(md5\|atime\|...\)
53534d87 113syn region specFilesArea matchgroup=specSection start='^%[Ff][Ii][Ll][Ee][Ss]\>' skip='%\(attrib\|defattr\|attr\|dir\|config\|docdir\|doc\|lang\|verify\|ghost\|exclude\|dev\)\>' end='^%[a-zA-Z]'me=e-2 contains=specFilesOpts,specFilesDirective,@specListedFiles,specComment,specCommandSpecial,specMacroIdentifier
983d4cf0 114" tip: remember to include new items in specFilesArea above
53534d87 115syn match specFilesDirective contained '%\(attrib\|defattr\|attr\|dir\|config\|docdir\|doc\|lang\|verify\|ghost\|exclude\|dev\)\>'
18f77c52 116
983d4cf0 117" valid options for certain section headers
18f77c52
ER
118syn match specDescriptionOpts contained '\s-[ln]\s*\a'ms=s+1,me=e-1
119syn match specPackageOpts contained '\s-n\s*\w'ms=s+1,me=e-1
120syn match specFilesOpts contained '\s-f\s*\w'ms=s+1,me=e-1
121
122
123syn case ignore
124
125
983d4cf0
ER
126" %% PreAmble Section %%
127" Copyright and Serial were deprecated by License and Epoch
18f77c52 128syn region specPreAmbleDeprecated oneline matchgroup=specError start='^\(Copyright\|Serial\)' end='$' contains=specEmail,specURL,specURLMacro,specLicense,specColon,specVariables,specSpecialChar,specMacroIdentifier
41131cd0
ER
129syn region specPreAmble oneline matchgroup=specCommand
130 \ start='\(^\|\(^%{!\??\(with\(out\)\?_[a-zA-Z0-9_]\+\|debug\):\)\@<=\)\(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\|AutoReqProv\|AutoReq\|AutoProv\|Epoch\|NoSource\)'
131 \ end='$\|}\@='
132 \ contains=specEmail,specURL,specURLMacro,specLicense,specColon,specVariables,specSpecialChar,specMacroIdentifier,specSectionMacroBcondArea
18f77c52 133
983d4cf0 134" %% Description Section %%
18f77c52
ER
135syn region specDescriptionArea matchgroup=specSection start='^%description' end='^%'me=e-1 contains=specDescriptionOpts,specEmail,specURL,specNumber,specMacroIdentifier,specComment
136
983d4cf0 137" %% Package Section %%
18f77c52
ER
138syn region specPackageArea matchgroup=specSection start='^%package' end='^%'me=e-1 contains=specPackageOpts,specPreAmble,specComment
139
983d4cf0 140" %% Scripts Section %%
3e77e77f
ER
141syn region specScriptArea matchgroup=specSection
142 \ start='^%\(prep\|build\|install\|clean\|pre\|postun\|preun\|post\|triggerin\|triggerun\|triggerpostun\)\>'
7d7d47a3 143 \ skip='^%{\|^%\(define\|patch\d*\|configure2_13\|configure\|GNUconfigure\|setup\|find_lang\|makeinstall\|useradd\|groupadd\|addusertogroup\|banner\|service\|py_o\?comp\|apache_config_\(un\)\?install\|depmod\)\>'
3e77e77f
ER
144 \ end='^%'me=e-1
145 \ contains=specSpecialVariables,specVariables,@specCommands,specVariables,shDo,shFor,shCaseEsac,specNoNumberHilite,specCommandOpts,shComment,shIf,specSpecialChar,specMacroIdentifier,specSectionMacroArea,specSectionMacroBracketArea,shOperator,shQuote1,shQuote2,specSectionMacroBcondArea
7d7d47a3 146" XXX don't forget to update specMacro when updating specScriptArea
18f77c52 147
983d4cf0 148" %% Changelog Section %%
bc8bbced
ER
149syn region specChangelogArea matchgroup=specSection start='^%changelog' end='^%'me=e-1
150 \ contains=specEmail,specURL,specWeekday,specMonth,specNumber,specComment,specLicense,specRevision,specLogMessage,specLogError
18f77c52 151
09c38e14
ER
152syn match specRevision contained "^Revision [.0-9]\+ [/0-9]\+ [:0-9]\+ [a-zA-Z0-9]\+$"
153syn region specLogMessage contained start="^[- ] " end="$" contains=specLogError,specURL,specEmail
09c38e14 154syn match specLogError contained "%%"
18f77c52 155
983d4cf0
ER
156" ------------------------------------------------------------------------------
157" here's the shell syntax for all the Script Sections
18f77c52
ER
158
159
160syn case match
161
162
983d4cf0 163" sh-like comment style, only valid in script part
18f77c52
ER
164syn match shComment contained '#.*$'
165
166syn region shQuote1 contained matchgroup=shQuoteDelim start=+'+ skip=+\\'+ end=+'+ contains=specMacroIdentifier
06d78f8d 167syn region shQuote2 contained matchgroup=shQuoteDelim start=+"+ skip=+\\"+ end=+"+ contains=specVariables,specMacroIdentifier,specSectionMacroBcondArea
18f77c52
ER
168
169syn match shOperator contained '[><|!&;]\|[!=]='
170syn region shDo transparent matchgroup=specBlock start="\<do\>" end="\<done\>" contains=ALLBUT,shFunction,shDoError,shCase,specPreAmble,@specListedFiles
171
811b82fb 172syn region specIf matchgroup=specBlock start="%ifosf\|%ifos\|%ifnos\|%ifarch\|%ifnarch\|ifdef\|ifndef\|%if\|%else" end='%endif' contains=ALLBUT, specIfError, shCase
18f77c52 173
983d4cf0 174syn region shIf transparent matchgroup=specBlock start="\<if\>" end="\<fi\>" contains=ALLBUT,shFunction,shIfError,shCase,@specListedFiles
18f77c52 175
983d4cf0 176syn region shFor matchgroup=specBlock start="\<for\>" end="\<in\>" contains=ALLBUT,shFunction,shInError,shCase,@specListedFiles
18f77c52
ER
177
178syn region shCaseEsac transparent matchgroup=specBlock start="\<case\>" matchgroup=NONE end="\<in\>"me=s-1 contains=ALLBUT,shFunction,shCaseError,@specListedFiles nextgroup=shCaseEsac
179syn region shCaseEsac matchgroup=specBlock start="\<in\>" end="\<esac\>" contains=ALLBUT,shFunction,shCaseError,@specListedFilesBin
180syn region shCase matchgroup=specBlock contained start=")" end=";;" contains=ALLBUT,shFunction,shCaseError,shCase,@specListedFiles
181
182syn sync match shDoSync grouphere shDo "\<do\>"
183syn sync match shDoSync groupthere shDo "\<done\>"
184syn sync match shIfSync grouphere shIf "\<if\>"
185syn sync match shIfSync groupthere shIf "\<fi\>"
186syn sync match specIfSync grouphere specIf "%ifarch\|%ifos\|%ifnos"
187syn sync match specIfSync groupthere specIf "%endIf"
188syn sync match shForSync grouphere shFor "\<for\>"
189syn sync match shForSync groupthere shFor "\<in\>"
190syn sync match shCaseEsacSync grouphere shCaseEsac "\<case\>"
191syn sync match shCaseEsacSync groupthere shCaseEsac "\<esac\>"
192
193" Define the default highlighting.
194" For version 5.7 and earlier: only when not done already
195" For version 5.8 and later: only when an item doesn't have highlighting yet
196if version >= 508 || !exists("did_spec_syntax_inits")
197 if version < 508
198 let did_spec_syntax_inits = 1
199 command -nargs=+ HiLink hi link <args>
200 else
201 command -nargs=+ HiLink hi def link <args>
202 endif
203
204 "main types color definitions
205 HiLink specSection Structure
206 HiLink specSectionMacro Macro
207 HiLink specWWWlink PreProc
208 HiLink specOpts Operator
209
210 "yes, it's ugly, but white is sooo cool
211 if &background == "dark"
212 hi def specGlobalMacro ctermfg=white
213 else
214 HiLink specGlobalMacro Identifier
215 endif
216
217 "sh colors
218 HiLink shComment Comment
219 HiLink shIf Statement
220 HiLink shOperator Special
221 HiLink shQuote1 String
222 HiLink shQuote2 String
223 HiLink shQuoteDelim Statement
224
983d4cf0 225 " spec colors
18f77c52 226 HiLink specBlock Function
06d78f8d 227 HiLink specBcond Function
18f77c52
ER
228 HiLink specColon Special
229 HiLink specCommand Statement
230 HiLink specCommandOpts specOpts
231 HiLink specCommandSpecial Special
232 HiLink specComment Comment
233 HiLink specConfigure specCommand
234 HiLink specDate String
235 HiLink specDescriptionOpts specOpts
236 HiLink specEmail specWWWlink
237 HiLink specError Error
238 HiLink specFilesDirective specSectionMacro
239 HiLink specFilesOpts specOpts
240 HiLink specLicense String
241 HiLink specMacroNameLocal specGlobalMacro
242 HiLink specMacroNameOther specGlobalMacro
243 HiLink specManpageFile NONE
244 HiLink specMonth specDate
245 HiLink specNoNumberHilite NONE
246 HiLink specNumber Number
247 HiLink specPackageOpts specOpts
248 HiLink specPercent Special
249 HiLink specSpecialChar Special
250 HiLink specSpecialVariables specGlobalMacro
251 HiLink specSpecialVariablesNames specGlobalMacro
252 HiLink specTarCommand specCommand
3e77e77f 253 HiLink specMacro Macro
18f77c52
ER
254 HiLink specURL specWWWlink
255 HiLink specURLMacro specWWWlink
256 HiLink specVariables Identifier
257 HiLink specWeekday specDate
258 HiLink specListedFilesBin Statement
259 HiLink specListedFilesDoc Statement
260 HiLink specListedFilesEtc Statement
261 HiLink specListedFilesLib Statement
262 HiLink specListedFilesPrefix Statement
263 HiLink specListedFilesShare Statement
264
09c38e14
ER
265 HiLink specRevision Number
266 HiLink specLogMessage Identifier
09c38e14
ER
267 HiLink specLogError Error
268
18f77c52
ER
269 delcommand HiLink
270endif
271
272let b:current_syntax = "spec"
273
274" vim: ts=8
This page took 0.121413 seconds and 4 git commands to generate.