blob: 407cab17c314f59e5e2a647eaab40852afd255ca [file] [log] [blame]
Benno Schulenbergc4b344f2014-02-23 16:07:44 +00001## Syntax highlighting for RPM spec files.
Benno Schulenbergfe9da942014-05-16 20:21:34 +00002
Chris Allegretta7a707672011-03-29 04:10:11 +00003syntax "spec" "\.(spec$|spec\.*)"
Mike Scalora6a2032f2016-05-25 22:13:50 +02004comment "#"
Benno Schulenbergfe9da942014-05-16 20:21:34 +00005
6# Main tags.
Chris Allegretta7a707672011-03-29 04:10:11 +00007color brightblue "((Icon|ExclusiveOs|ExcludeOs)[[:space:]]*:)"
8color brightblue "((BuildArch|BuildArchitectures|ExclusiveArch|ExcludeArch)[[:space:]]*:)"
9color brightblue "((Conflicts|Obsoletes|Provides|Requires|Requires\(.*\)|Enhances|Suggests|BuildConflicts|BuildRequires|Recommends|PreReq|Supplements)[[:space:]]*:)"
10color brightblue "((Epoch|Serial|Nosource|Nopatch)[[:space:]]*:)"
11color brightblue "((AutoReq|AutoProv|AutoReqProv)[[:space:]]*:)"
12color brightblue "((Copyright|License|Summary|Summary\(.*\)|Distribution|Vendor|Packager|Group|Source\d*|Patch\d*|BuildRoot|Prefix)[[:space:]]*:)"
13color brightblue "((Name|Version|Release|Url|URL)[[:space:]]*:)"
14color brightblue start="^Source" end=":" start="^Patch" end=":"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000015# Architectures.
Chris Allegretta7a707672011-03-29 04:10:11 +000016color brightred "(i386|i486|i586|i686|athlon|ia64|alpha|alphaev5|alphaev56|alphapca56|alphaev6|alphaev67|sparc|sparcv9|sparc64armv3l|armv4b|armv4lm|ips|mipsel|ppc|ppc|iseries|ppcpseries|ppc64|m68k|m68kmint|Sgi|rs6000|i370|s390x|s390|noarch)"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000017# Architecture conditionals.
Chris Allegretta7a707672011-03-29 04:10:11 +000018color brightred "(ifarch|ifnarch)"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000019# OS conditionals.
Chris Allegretta7a707672011-03-29 04:10:11 +000020color brightred "(ifos|ifnos)"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000021# %* strings.
Chris Allegretta7a707672011-03-29 04:10:11 +000022color green "%([A-Z_a-z_0-9_]*)"
23color magenta "%_([A-Z_a-z_0-9_]*)"
24color yellow start="%__" end="\ "
25color magenta start="%\{" end="\}"
26color yellow start="%\{__" end="\}"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000027# Sections.
Benno Schulenberg5bb10d22014-11-30 12:05:13 +000028color red "^%(build$|changelog|check$|clean$|description|files|install$|package|pre|prep$|pretrans|preun)"
29color red "^%(post|posttrans|postun|trigger|triggerin|triggerpostun|triggerun|verifyscript)"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000030# Conditionals and defines.
Chris Allegretta7a707672011-03-29 04:10:11 +000031color brightred "%(if|else|endif|define|global|undefine)"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000032
33# Comments.
Chris Allegretta7a707672011-03-29 04:10:11 +000034color cyan "#.*$"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000035# Special case: "# norootforbuild" is handled as main tag.
Chris Allegretta7a707672011-03-29 04:10:11 +000036color brightblue "^# norootforbuild"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000037# %changelog date entries.
Chris Allegretta7a707672011-03-29 04:10:11 +000038color brightyellow "^\* .*\)$"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000039# Trailing whitespace.
Chris Allegretta7a707672011-03-29 04:10:11 +000040color ,green "[[:space:]]+$"