summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel M. Capella <polyzen@archlinux.org>2024-05-10 20:16:08 +0000
committerDaniel M. Capella <polyzen@archlinux.org>2024-05-10 20:16:08 +0000
commit9016e2405d57d0009128bf413bd000989474465f (patch)
tree0b1b42586ec9655e213fc194d00f7513ed7e193b
parent7a0b055e16796362ff0bd727dd577e06c0a7ed55 (diff)
parent738d62dcdc3e011f669be9e033f1fdedfdab5649 (diff)
Merge branch 'fix_zlib_license_identifier' into 'master'
Fix the Zlib license SPDX identifier in PKGBUILD.vim See merge request pacman/pacman-contrib!48
-rw-r--r--src/vim/syntax/PKGBUILD.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vim/syntax/PKGBUILD.vim b/src/vim/syntax/PKGBUILD.vim
index 9aab671..06bb231 100644
--- a/src/vim/syntax/PKGBUILD.vim
+++ b/src/vim/syntax/PKGBUILD.vim
@@ -69,7 +69,7 @@ syn match pbLicense /AGPL-3\.0-only\|AGPL-3\.0-or-later\|Apache-2\.0\|Artistic-1
" multiple licenses combination expressions
syn keyword pbLicenseCombination AND OR WITH contained
" special cases from https://wiki.archlinux.org/index.php/PKGBUILD#license
-syn keyword pbLicenseSpecial BSD-1-Clause BSD-2-Clause BSD-3-Clause ISC MIT OFL Python ZLIB contained
+syn keyword pbLicenseSpecial BSD-1-Clause BSD-2-Clause BSD-3-Clause ISC MIT OFL Python Zlib contained
syn match pbLicenseCustom /custom\(:[[:alnum:].]*\)*\|LicenseRef\(-[[:alnum:].]*\)*/ contained
syn keyword pbLicenseUnknown unknown contained
syn match pbIllegalLicense /[^='"() ]/ contained contains=pbLicenseUnknown,pbLicenseCustom,pbLicenseSpecial,pbLicense