diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-03 22:21:25 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-04 00:23:03 +0300 |
| commit | 2eae5db069dc171f74cd863487655f6a88e5384d (patch) | |
| tree | 2d9d05e09978a2a44acbfbb8d651f240df3ca052 /uvim/runtime/syntax/debcontrol.vim | |
| parent | 473d922faed49241a5d29d9e37dc4819cd512006 (diff) | |
| download | Project-Tick-2eae5db069dc171f74cd863487655f6a88e5384d.tar.gz Project-Tick-2eae5db069dc171f74cd863487655f6a88e5384d.zip | |
NOISSUE rebrand vim to MNV's not Vim
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'uvim/runtime/syntax/debcontrol.vim')
| -rw-r--r-- | uvim/runtime/syntax/debcontrol.vim | 152 |
1 files changed, 0 insertions, 152 deletions
diff --git a/uvim/runtime/syntax/debcontrol.vim b/uvim/runtime/syntax/debcontrol.vim deleted file mode 100644 index 7b4d14062a..0000000000 --- a/uvim/runtime/syntax/debcontrol.vim +++ /dev/null @@ -1,152 +0,0 @@ -" Vim syntax file -" Language: Debian control files -" Maintainer: Debian Vim Maintainers -" Former Maintainers: Gerfried Fuchs <alfie@ist.org> -" Wichert Akkerman <wakkerma@debian.org> -" Last Change: 2026 Jan 20 -" URL: https://salsa.debian.org/vim-team/vim-debian/blob/main/syntax/debcontrol.vim - -" Standard syntax initialization -if exists('b:current_syntax') - finish -endif - -let s:cpo_save = &cpo -set cpo&vim - -" Should match case except for the keys of each field -syn case match - -syn iskeyword @,48-57,- - -" Everything that is not explicitly matched by the rules below -syn match debcontrolElse "^.*$" - -" Common separators -syn match debControlComma ",[ \t]*" -syn match debControlSpace "[ \t]" - -runtime! syntax/shared/debarchitectures.vim - -" Define some common expressions we can use later on -syn keyword debcontrolArchitecture contained all any -exe 'syn keyword debcontrolArchitecture contained '. join(g:debArchitectureKernelAnyArch) -exe 'syn keyword debcontrolArchitecture contained '. join(g:debArchitectureAnyKernelArch) -exe 'syn keyword debcontrolArchitecture contained '. join(g:debArchitectureArchs) - -" Keep in sync with https://metadata.ftp-master.debian.org/sections.822 -" curl -q https://metadata.ftp-master.debian.org/sections.822 2>/dev/null| grep-dctrl -n --not -FSection -sSection / - -let s:sections = [ - \ 'admin', 'cli-mono', 'comm', 'database', 'debian-installer', 'debug' - \, 'devel', 'doc', 'editors', 'education', 'electronics', 'embedded' - \, 'fonts', 'games', 'gnome', 'gnu-r', 'gnustep', 'golang', 'graphics' - \, 'hamradio', 'haskell', 'httpd', 'interpreters', 'introspection' - \, 'java', 'javascript', 'kde', 'kernel', 'libdevel', 'libs', 'lisp' - \, 'localization', 'mail', 'math', 'metapackages', 'misc', 'net', 'news' - \, 'ocaml', 'oldlibs', 'otherosfs', 'perl', 'php', 'python', 'raku' - \, 'ruby', 'rust', 'science', 'shells', 'sound', 'tasks', 'tex', 'text' - \, 'utils', 'vcs', 'video', 'web', 'x11', 'xfce', 'zope' - \ ] - -syn keyword debcontrolMultiArch contained no foreign allowed same -syn match debcontrolName contained "[a-z0-9][a-z0-9+.-]\+" -syn keyword debcontrolPriority contained extra important optional required standard -exe 'syn match debcontrolSection contained "\%(\%(contrib\|non-free\|non-US/main\|non-US/contrib\|non-US/non-free\|restricted\|universe\|multiverse\)/\)\=\<\%('.join(s:sections, '\|').'\)\>"' -syn keyword debcontrolPackageType contained udeb deb -syn match debcontrolVariable contained "\${.\{-}}" -syn keyword debcontrolDmUpload contained yes -syn keyword debcontrolYesNo contained yes no -syn match debcontrolR3 contained "\<\%(no\|binary-targets\|[[:graph:]]\+/[[:graph:]]\+\%( \+[[:graph:]]\+/[[:graph:]]\+\)*\)\>" - -unlet s:sections - -" A URL (using the domain name definitions from RFC 1034 and 1738), right now -" only enforce protocol and some sanity on the server/path part; -syn match debcontrolHTTPUrl contained "\vhttps?://[[:alnum:]][-[:alnum:]]*[[:alnum:]]?(\.[[:alnum:]][-[:alnum:]]*[[:alnum:]]?)*\.[[:alpha:]][-[:alnum:]]*[[:alpha:]]?(:\d+)?(/[^[:space:]]*)?$" -syn match debcontrolVcsSvn contained "\vsvn%(\+ssh)?://[[:alnum:]][-[:alnum:]]*[[:alnum:]]?(\.[[:alnum:]][-[:alnum:]]*[[:alnum:]]?)*\.[[:alpha:]][-[:alnum:]]*[[:alpha:]]?(:\d+)?(/[^[:space:]]*)?$" -syn match debcontrolVcsCvs contained "\v%(\-d *)?:pserver:[^@]+\@[[:alnum:]][-[:alnum:]]*[[:alnum:]]?(\.[[:alnum:]][-[:alnum:]]*[[:alnum:]]?)*\.[[:alpha:]][-[:alnum:]]*[[:alpha:]]?:/[^[:space:]]*%( [^[:space:]]+)?$" -syn match debcontrolVcsGit contained "\v%(git|https?)://[[:alnum:]][-[:alnum:]]*[[:alnum:]]?(\.[[:alnum:]][-[:alnum:]]*[[:alnum:]]?)*\.[[:alpha:]][-[:alnum:]]*[[:alpha:]]?(:\d+)?(/[^[:space:]]*)?%(\s+-b\s+[^ ~^:?*[\\]+)?$" - -" An email address -syn match debcontrolEmail "[_=[:alnum:]\.+-]\+@[[:alnum:]\./\-]\+" -syn match debcontrolEmail "<.\{-}>" - -" #-Comments -syn match debcontrolComment "^#.*$" contains=@Spell - -" Build profiles -" Since there's no official spec for the field, use dpkg's parsing -" (from BuildProfiles.pm) as the de facto spec -syn match debcontrolBuildProfile "<\@<!<\s*!\=[-?/;:=@%*~A-Za-z0-9+.]\+\%(\s\+!\=[-?/;:=@%*~A-Za-z0-9+.]\+\)*\s*>" contained - -" Architecture specification for a package relationship -let s:all_archs = join(g:debArchitectureKernelAnyArch, '\|') - \. '\|' - \. join(g:debArchitectureAnyKernelArch, '\|') - \. '\|' - \. join(g:debArchitectureArchs, '\|') -exe 'syn match debcontrolArchSpec "\[\s*!\=\%('. s:all_archs .'\)\%(\s\+!\=\%('. s:all_archs. '\)\)*\s*\]" contained' -unlet s:all_archs - -syn case ignore - -" Handle all fields from deb-src-control(5) - -" Catch-all for the legal fields -syn region debcontrolField matchgroup=debcontrolKey start="^\%(XSBC-Original-\)\=Maintainer: " end="$" contains=debcontrolVariable,debcontrolEmail oneline -syn region debcontrolField matchgroup=debcontrolKey start="^Build-Profiles: " end="$" contains=debcontrolVariable,debcontrolBuildProfile oneline -syn region debcontrolField matchgroup=debcontrolKey start="^\%(Standards-Version\|Bugs\|Origin\|X[SB]-Python-Version\|\%(XS-\)\=Vcs-Mtn\|\%(XS-\)\=Testsuite\%(-Triggers\)\=\|Build-Driver\|Tag\|Subarchitecture\|Kernel-Version\|Installer-Menu-Item\): " end="$" contains=debcontrolVariable oneline -syn region debcontrolMultiField matchgroup=debcontrolKey start="^\%(Build-\%(Conflicts\|Depends\)\%(-Arch\|-Indep\)\=\|\%(Pre-\)\=Depends\|Recommends\|Suggests\|Breaks\|Enhances\|Replaces\|Conflicts\|Provides\|Built-Using\|Static-Built-Using\): *" skip="^[ \t]" end="^$"me=s-1 end="^[^ \t#]"me=s-1 contains=debcontrolVariable,debcontrolComment,debcontrolBuildProfile,debcontrolArchSpec -syn region debcontrolMultiField matchgroup=debcontrolKey start="^X[SBC]\{0,3\}\%(Private-\)\=-[-a-zA-Z0-9]\+: *" skip="^[ \t]" end="^$"me=s-1 end="^[^ \t#]"me=s-1 contains=debcontrolVariable,debcontrolComment -syn region debcontrolMultiField matchgroup=debcontrolKey start="^Uploaders: *" skip="^[ \t]" end="^$"me=s-1 end="^[^ \t#]"me=s-1 contains=debcontrolEmail,debcontrolVariable,debcontrolComment -syn region debcontrolMultiFieldSpell matchgroup=debcontrolKey start="^Description: *" skip="^[ \t]" end="^$"me=s-1 end="^[^ \t#]"me=s-1 contains=debcontrolVariable,debcontrolComment,@Spell - -" Fields for which we do strict syntax checking -syn region debcontrolStrictField matchgroup=debcontrolKey start="^Architecture: *" end="$" contains=debcontrolArchitecture,debcontrolSpace oneline -syn region debcontrolStrictField matchgroup=debcontrolKey start="^Multi-Arch: *" end="$" contains=debcontrolMultiArch oneline -syn region debcontrolStrictField matchgroup=debcontrolKey start="^\%(Package\|Source\): *" end="$" contains=debcontrolName oneline -syn region debcontrolStrictField matchgroup=debcontrolKey start="^Priority: *" end="$" contains=debcontrolPriority oneline -syn region debcontrolStrictField matchgroup=debcontrolKey start="^Section: *" end="$" contains=debcontrolSection oneline -syn region debcontrolStrictField matchgroup=debcontrolKey start="^\%(XC-\)\=Package-Type: *" end="$" contains=debcontrolPackageType oneline -syn region debcontrolStrictField matchgroup=debcontrolKey start="^Homepage: *" end="$" contains=debcontrolHTTPUrl oneline keepend -syn region debcontrolStrictField matchgroup=debcontrolKey start="^\%(XS-[-a-zA-Z0-9]\+-\)\=Vcs-\%(Browser\|Arch\|Bzr\|Darcs\|Hg\): *" end="$" contains=debcontrolHTTPUrl oneline keepend -syn region debcontrolStrictField matchgroup=debcontrolKey start="^\%(XS-[-a-zA-Z0-9]\+-\)\=Vcs-Svn: *" end="$" contains=debcontrolVcsSvn,debcontrolHTTPUrl oneline keepend -syn region debcontrolStrictField matchgroup=debcontrolKey start="^\%(XS-[-a-zA-Z0-9]\+-\)\=Vcs-Cvs: *" end="$" contains=debcontrolVcsCvs oneline keepend -syn region debcontrolStrictField matchgroup=debcontrolKey start="^\%(XS-[-a-zA-Z0-9]\+-\)\=Vcs-Git: *" end="$" contains=debcontrolVcsGit oneline keepend -syn region debcontrolStrictField matchgroup=debcontrolKey start="^Rules-Requires-Root: *" end="$" contains=debcontrolR3 oneline -syn region debcontrolStrictField matchgroup=debcontrolKey start="^\%(\%(Build-\)\=Essential\|Protected\): *" end="$" contains=debcontrolYesNo oneline - -syn region debcontrolStrictField matchgroup=debcontrolDeprecatedKey start="^\%(XS-\)\=DM-Upload-Allowed: *" end="$" contains=debcontrolDmUpload oneline - -" Associate our matches and regions with pretty colours -hi def link debcontrolKey Keyword -hi def link debcontrolField Normal -hi def link debcontrolStrictField Error -hi def link debcontrolDeprecatedKey Error -hi def link debcontrolMultiField Normal -hi def link debcontrolArchitecture Normal -hi def link debcontrolMultiArch Normal -hi def link debcontrolName Normal -hi def link debcontrolPriority Normal -hi def link debcontrolSection Normal -hi def link debcontrolPackageType Normal -hi def link debcontrolVariable Identifier -hi def link debcontrolArchSpec Identifier -hi def link debcontrolBuildProfile Identifier -hi def link debcontrolEmail Identifier -hi def link debcontrolVcsSvn Identifier -hi def link debcontrolVcsCvs Identifier -hi def link debcontrolVcsGit Identifier -hi def link debcontrolHTTPUrl Identifier -hi def link debcontrolDmUpload Identifier -hi def link debcontrolYesNo Identifier -hi def link debcontrolR3 Identifier -hi def link debcontrolComment Comment -hi def link debcontrolElse Special - -let b:current_syntax = 'debcontrol' - -let &cpo = s:cpo_save -unlet s:cpo_save - -" vim: ts=8 sw=2 |
