r289 - in trunk/vim/debian: . patches updates

Matthijs Mohlmann active2-guest at costa.debian.org
Wed Aug 17 11:02:02 UTC 2005


Author: active2-guest
Date: 2005-08-17 11:02:00 +0000 (Wed, 17 Aug 2005)
New Revision: 289

Added:
   trunk/vim/debian/updates/debsources.vim
Modified:
   trunk/vim/debian/changelog
   trunk/vim/debian/patches/135_debsources.vim.diff
Log:
 * Move debsources.vim to debian/updates instead of using the patch files.


Modified: trunk/vim/debian/changelog
===================================================================
--- trunk/vim/debian/changelog	2005-08-15 21:39:35 UTC (rev 288)
+++ trunk/vim/debian/changelog	2005-08-17 11:02:00 UTC (rev 289)
@@ -17,8 +17,8 @@
       search entries. (closes: #311081)
     + Added patch 134_sshconfig.vim.diff, added HashKnownHosts to syn keyword
       sshconfigKeyword (closes: #321119)
-    + Added debsources.vim (135_debsources.vim) to add syntax highlighting for
-      /etc/apt/sources.list (closes: #308947)
+    + Added debsources.vim to debian/updates to add syntax highlighting for
+      /etc/apt/sources.list and added this to filetype.vim (closes: #308947)
     + Added patch 136_muttrc.vim.diff, added crypt_autosign, crypt_autoencrypt
       and xterm_set_titles to syn keyword (closes: #323278)
 
@@ -26,7 +26,7 @@
     + Fix patch 105_xmodmap.vim.diff : wrt XF86_ClearGrab. (Closes: #322355)
     + Fix typo in doc/editing.txt.  (Closes: #322254)
 
- -- Debian VIM Maintainers <pkg-vim-maintainers at lists.alioth.debian.org>  Mon, 15 Aug 2005 23:38:10 +0200
+ -- Debian VIM Maintainers <pkg-vim-maintainers at lists.alioth.debian.org>  Wed, 17 Aug 2005 12:57:17 +0200
 
 vim (1:6.3-085+1) unstable; urgency=high
 

Modified: trunk/vim/debian/patches/135_debsources.vim.diff
===================================================================
--- trunk/vim/debian/patches/135_debsources.vim.diff	2005-08-15 21:39:35 UTC (rev 288)
+++ trunk/vim/debian/patches/135_debsources.vim.diff	2005-08-17 11:02:00 UTC (rev 289)
@@ -1,72 +1,13 @@
 diff -ruN vim63.orig/runtime/filetype.vim vim63/runtime/filetype.vim
---- vim63.orig/runtime/filetype.vim	2005-08-15 09:13:52.637698992 +0200
-+++ vim63/runtime/filetype.vim	2005-08-15 09:19:07.331858208 +0200
-@@ -1413,6 +1413,9 @@
- " Slice
- au BufNewFile,BufRead *.ice			setf slice
+--- vim63.orig/runtime/filetype.vim	2005-08-17 12:53:12.067644832 +0200
++++ vim63/runtime/filetype.vim	2005-08-17 12:55:28.072968880 +0200
+@@ -1437,6 +1437,9 @@
+ " OpenSSH server configuration
+ au BufNewFile,BufRead sshd_config		setf sshdconfig
  
 +" Debian sources.list
 +au BufNewFile,BufRead sources.list  setf debsources
 +
- " Spice
- au BufNewFile,BufRead *.sp,*.spice		setf spice
+ " Stored Procedures
+ au BufNewFile,BufRead *.stp			setf stp
  
-diff -ruN vim63.orig/runtime/syntax/debsources.vim vim63/runtime/syntax/debsources.vim
---- vim63.orig/runtime/syntax/debsources.vim	1970-01-01 01:00:00.000000000 +0100
-+++ vim63/runtime/syntax/debsources.vim	2005-08-15 09:17:32.418287264 +0200
-@@ -0,0 +1,55 @@
-+" Vim syntax file
-+" Language:	Debian sources.list
-+" Maintainer:	Matthijs Mohlmann <matthijs at cacholong.nl>
-+" Last Change:	$Date: 2005/08/13 11:51:26 $
-+" URL: http://www.cacholong.nl/~matthijs/vim/syntax/debsources.vim
-+" $Revision: 1.4 $
-+
-+" this is a very simple syntax file - I will be improving it
-+" add entire DEFINE syntax
-+
-+" Standard syntax initialization
-+if version < 600
-+  syntax clear
-+elseif exists("b:current_syntax")
-+  finish
-+endif
-+
-+" case sensitive
-+syn case match
-+
-+" deb-src is a keyword
-+setlocal iskeyword+=-
-+
-+" A bunch of useful keywords
-+syn keyword sourcesKeyword      deb deb-src
-+syn keyword sourcesKeyword      main contrib non-free
-+
-+" Match comments
-+syn match sourcesComment        /#.*/
-+
-+" Match uri's
-+syn match sourcesUri            +\(http://\|ftp://\|file:///\)[^' 	<>"]\++
-+syn match sourcesDistrKeyword   +\([[:alnum:]_./]*\)\(woody\|sarge\|etch\|old-stable\|stable\|testing\|unstable\|sid\|experimental\|warty\|hoary\|breezy\)\([[:alnum:]_./]*\)+
-+
-+" Associate our matches and regions with pretty colours
-+if version >= 508 || !exists("did_debsources_syn_inits")
-+  if version < 508
-+    let did_debchangelog_syn_inits = 1
-+    command -nargs=+ HiLink hi link <args>
-+  else
-+    command -nargs=+ HiLink hi def link <args>
-+  endif
-+
-+  HiLink sourcesLine            Error
-+  HiLink sourcesKeyword         Statement
-+  HiLink sourcesDistrKeyword    Type
-+  HiLink sourcesComment         Comment
-+  HiLink sourcesUri             Constant
-+
-+  delcommand HiLink
-+endif
-+
-+let b:current_syntax = "debsources"
-+
-+" vim: ts=8

Added: trunk/vim/debian/updates/debsources.vim
===================================================================
--- trunk/vim/debian/updates/debsources.vim	2005-08-15 21:39:35 UTC (rev 288)
+++ trunk/vim/debian/updates/debsources.vim	2005-08-17 11:02:00 UTC (rev 289)
@@ -0,0 +1,55 @@
+" Vim syntax file
+" Language:	Debian sources.list
+" Maintainer:	Matthijs Mohlmann <matthijs at cacholong.nl>
+" Last Change:	$Date: 2005/08/13 11:51:26 $
+" URL: http://www.cacholong.nl/~matthijs/vim/syntax/debsources.vim
+" $Revision: 1.4 $
+
+" this is a very simple syntax file - I will be improving it
+" add entire DEFINE syntax
+
+" Standard syntax initialization
+if version < 600
+  syntax clear
+elseif exists("b:current_syntax")
+  finish
+endif
+
+" case sensitive
+syn case match
+
+" deb-src is a keyword
+setlocal iskeyword+=-
+
+" A bunch of useful keywords
+syn keyword sourcesKeyword      deb deb-src
+syn keyword sourcesKeyword      main contrib non-free
+
+" Match comments
+syn match sourcesComment        /#.*/
+
+" Match uri's
+syn match sourcesUri            +\(http://\|ftp://\|file:///\)[^' 	<>"]\++
+syn match sourcesDistrKeyword   +\([[:alnum:]_./]*\)\(woody\|sarge\|etch\|old-stable\|stable\|testing\|unstable\|sid\|experimental\|warty\|hoary\|breezy\)\([[:alnum:]_./]*\)+
+
+" Associate our matches and regions with pretty colours
+if version >= 508 || !exists("did_debsources_syn_inits")
+  if version < 508
+    let did_debchangelog_syn_inits = 1
+    command -nargs=+ HiLink hi link <args>
+  else
+    command -nargs=+ HiLink hi def link <args>
+  endif
+
+  HiLink sourcesLine            Error
+  HiLink sourcesKeyword         Statement
+  HiLink sourcesDistrKeyword    Type
+  HiLink sourcesComment         Comment
+  HiLink sourcesUri             Constant
+
+  delcommand HiLink
+endif
+
+let b:current_syntax = "debsources"
+
+" vim: ts=8




More information about the pkg-vim-maintainers mailing list