Hello community,

here is the log from the commit of package vim-plugins for openSUSE:Factory 
checked in at 2012-11-08 21:54:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vim-plugins (Old)
 and      /work/SRC/openSUSE:Factory/.vim-plugins.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "vim-plugins", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/vim-plugins/vim-plugins.changes  2012-11-06 
16:25:10.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.vim-plugins.new/vim-plugins.changes     
2012-11-08 21:54:31.000000000 +0100
@@ -1,0 +2,7 @@
+Wed Nov  7 11:05:04 UTC 2012 - pu...@suse.com
+
+- Update quilt plugin to 0.9.7
+  - fix problem with line history
+- drop quilt-plugin-fix-autocmds.patch
+
+-------------------------------------------------------------------

Old:
----
  quilt-plugin-fix-autocmds.patch
  vimplugin-quilt-0.9.6.tar.bz2

New:
----
  vimplugin-quilt-0.9.7.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ vim-plugins.spec ++++++
--- /var/tmp/diff_new_pack.wg9AA3/_old  2012-11-08 21:54:32.000000000 +0100
+++ /var/tmp/diff_new_pack.wg9AA3/_new  2012-11-08 21:54:32.000000000 +0100
@@ -41,7 +41,7 @@
 %define                utl_version                     2.0
 %define                zoomwin_version                 24
 %define                latex_version                   20120125
-%define                quilt_version                   0.9.6
+%define                quilt_version                   0.9.7
 %define                vimwiki_version                 1.1.1
 %define                gnupg_version                   3026
 %define                gitdiff_version                 2
@@ -88,7 +88,6 @@
 Source31:       vimplugin-rails-%{rails_version}.tar.bz2
 Source100:      spec.snippets
 Patch1:         locateopen-1.3-locate-support.patch
-Patch2:         quilt-plugin-fix-autocmds.patch
 BuildRequires:  vim
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildArch:      noarch
@@ -541,11 +540,6 @@
 %patch1
 popd
 
-# -------- patch quilt -------
-pushd vimplugin-quilt-%quilt_version
-%patch2
-popd
-
 %build
 
 %install

++++++ vimplugin-quilt-0.9.6.tar.bz2 -> vimplugin-quilt-0.9.7.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vimplugin-quilt-0.9.6/doc/quilt.txt 
new/vimplugin-quilt-0.9.7/doc/quilt.txt
--- old/vimplugin-quilt-0.9.6/doc/quilt.txt     2007-09-24 05:58:25.000000000 
+0200
+++ new/vimplugin-quilt-0.9.7/doc/quilt.txt     2012-11-06 14:07:35.000000000 
+0100
@@ -641,6 +641,11 @@
 0.9.6 [2007/09/24]
 >
         * Fixed files handling in patches/ directory (thanks to Jordan Crouse) 
+
+<
+0.9.7 [2012/11/05]
+>
+        * Fixed viminfo '" filemark issue (thanks to Petr Uzel)
 <
 
 -------------------------------------------------------------------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vimplugin-quilt-0.9.6/plugin/quilt.vim 
new/vimplugin-quilt-0.9.7/plugin/quilt.vim
--- old/vimplugin-quilt-0.9.6/plugin/quilt.vim  2007-09-24 05:56:31.000000000 
+0200
+++ new/vimplugin-quilt-0.9.7/plugin/quilt.vim  2012-11-05 12:16:22.000000000 
+0100
@@ -1,8 +1,8 @@
 "------------------------------------------------------------------------------
 " This plugin enables easy integration with quilt, to push/pop/refresh patch   
 "                                                                              
-" Author:     Florian Delizy <florian.del...@unfreeze.net>                     
-" Maintainer: Florian Delizy <florian.del...@unfreeze.net>                     
+" Author:     Florian Delizy <florian.del...@gmail.com>                     
+" Maintainer: Florian Delizy <florian.del...@gmail.com>                     
 "                                                                              
 " Install:                                                                     
 " uncompress in your .vim/ directory, then :helptag ~/.vim/doc to get the help 
@@ -20,7 +20,8 @@
 "------------------------------------------------------------------------------
 "                                                                              
 " TODO:                                                                        
-"                                                                              
+" ( if you see anything you'd like to be done, or need something else, 
mail/patch me :) 
+"
 " * an interface showing the current patch on the bottom                       
 "   - allow fold/unfold to see what files are included                         
 " * auto add the currently modified file                                       
@@ -31,6 +32,10 @@
 " * quilt merge, import ... and stuffs (is somebody using it ??)               
 
 
+if exists("g:skip_loading_quiltplugin") && g:skip_loading_quiltplugin
+    finish
+endif
+
 "------------------------------------------------------------------------------
 " Commands definition                                                          
 "------------------------------------------------------------------------------
@@ -39,11 +44,13 @@
 command! QuiltCheckRej call <SID>QuiltCheckRej()
 command! QuiltStatus call <SID>QuiltStatus()
 
-autocmd! BufNewFile,BufReadPost,FileReadPost * QuiltStatus
-autocmd! BufReadPost,FileReadPost * QuiltCheckRej
+augroup QuiltPlug
+autocmd!
+
+autocmd BufNewFile,BufReadPost,FileReadPost * QuiltStatus
+autocmd BufReadPost,FileReadPost * QuiltCheckRej
 
-autocmd BufNewFile,BufReadPost * QuiltStatus
-autocmd BufReadPost * QuiltCheckRej
+augroup END
 
 command! -nargs=? -complete=custom,QuiltCompleteInPatch
        \ QuiltPatchEdit call <SID>QuiltPatchEdit( <f-args> )
@@ -172,7 +179,9 @@
     wincmd l
     wincmd |
     wincmd h
+    augroup QuiltPlugAnnotate
     autocmd BufUnload <buffer> call <SID>QuitAnnotateJ()
+    augroup END
 
     " Create the patch name window
     new
@@ -180,7 +189,9 @@
     wincmd k
     wincmd _
     wincmd j
+    augroup QuiltPlugAnnotate
     autocmd BufUnload <buffer> call <SID>QuitAnnotateH()
+    augroup END
 
     " Parse the result
 
@@ -237,7 +248,9 @@
     redraw!
     if DoCursor
        setlocal cursorline
+        augroup QuiltPlugAnnotate
         autocmd CursorMoved <buffer>  call <SID>FollowCursorLine()
+        augroup END
     endif
 
 endfunction
@@ -265,14 +278,18 @@
     quit
     wincmd k
     wincmd l
-    autocmd! CursorMoved <buffer> 
+    augroup QuiltPlugAnnotate
+    autocmd!
+    augroup END
     setlocal nocursorline
 
 function! <SID>QuitAnnotateH()
     wincmd k
     quit
     wincmd l
-    autocmd! CursorMoved <buffer> 
+    augroup QuiltPlugAnnotate
+    autocmd!
+    augroup END
     setlocal nocursorline
 
 endfunction

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to