diff options
author | Xavier Chantry <chantry.xavier@gmail.com> | 2010-05-13 14:36:59 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-05-14 00:11:25 +0200 |
commit | df833f6c64033bc4e00e47213a536219bc1611b4 (patch) | |
tree | a2ed9bcb9e5c6a2b2d9259fc8447e9c87acd5fd1 /contrib/PKGBUILD.vim | |
parent | 7f02f7cb9fba13a8e9762d30d7e0648b257ec091 (diff) | |
download | pacman-df833f6c64033bc4e00e47213a536219bc1611b4.tar.gz pacman-df833f6c64033bc4e00e47213a536219bc1611b4.tar.xz |
PKGBUILD.vim : update valid licenses
Updated list with :
echo $(pacman -Ql licenses | grep "/usr/share/licenses/common/.*/$" | cut
-d'/' -f6 )
Maybe PKGBUILD.vim could do this at runtime ?
Dan: you forgot the symlinks; readded FDL, GPL, LGPL.
Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'contrib/PKGBUILD.vim')
-rw-r--r-- | contrib/PKGBUILD.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/PKGBUILD.vim b/contrib/PKGBUILD.vim index af0f9817..a1112e55 100644 --- a/contrib/PKGBUILD.vim +++ b/contrib/PKGBUILD.vim @@ -54,7 +54,7 @@ syn match pbUrlGroup /^url=.*/ contains=pbValidUrl,pb_k_url,pbIllegalUrl,shDoubl " license syn keyword pb_k_license license contained -syn keyword pbLicense APACHE CDDL EPL FDL GPL LGPL MPL PHP RUBY ZLIB ISC MIT BSD contained +syn keyword pbLicense APACHE CCPL CDDL CPL EPL FDL FDL1.2 FDL1.3 GPL GPL2 GPL3 LGPL LGPL2.1 LGPL3 LPPL MPL PHP PSF PerlArtistic RALINK RUBY ZPL contained syn match pbLicenseCustom /custom\(:[[:alnum:]]*\)*/ contained syn match pbIllegalLicense /[^='"() ]/ contained contains=pbLicenseCustom,pbLicense syn region pbLicenseGroup start=/^license=(/ end=/)/ contains=pb_k_license,pbLicenseCustom,pbLicense,pbIllegalLicense |