Hello community,

here is the log from the commit of package vim for openSUSE:Factory checked in 
at 2012-03-23 15:11:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vim (Old)
 and      /work/SRC/openSUSE:Factory/.vim.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "vim", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/vim/vim.changes  2011-12-27 18:39:39.000000000 
+0100
+++ /work/SRC/openSUSE:Factory/.vim.new/vim.changes     2012-03-23 
15:11:52.000000000 +0100
@@ -1,0 +2,41 @@
+Wed Feb 29 12:55:57 UTC 2012 - [email protected]
+
+- remove pointless systemd dependency and run the tmpfiles binary
+  only in case it exists
+
+-------------------------------------------------------------------
+Tue Feb 28 12:58:08 UTC 2012 - [email protected]
+
+- Update to patchlevel 456, fixes the following problems 
+  * Using many continuation lines can be slow.
+  * Pasting in the command line is slow.
+  * Undo broken when pasting close to the last line.
+  * Crash when a BufWinLeave autocommand closes 
+    the only other window.
+  * ":all!" and ":sall!" give error E477, even though the
+    documentation says these are valid commands.
+  * Vim does not support UTF8_STRING for the X selection.
+  * Compiler warnings to size casts in Perl interface.
+  * Search history lines are duplicated.
+  * "it" and "at" don't work properly 
+    with a dash in the tag name.
+  * DBCS encoding in a user command does not always work.
+  * When a user complete function returns -1 an error message
+    is given.
+  * Completion of functions stops once a dictionary is encountered.
+  * Storing a float in a session file has an additional '&'.
+  * Pasting in Visual mode using the "" register does not work.
+  * Multi-byte characters in b:browsefilter are not handled correctly.
+  * ":helpgrep" does not trigger QuickFixCmd* autocommands.
+  * ":cd" doesn't work when the path contains wildcards.
+  * When placing a mark while starting up a screen redraw messes up
+    the screen.
+  * Mapping CTRL-K in Insert mode breaks CTRL-X CTRL-K for dictionary
+    completion.
+
+-------------------------------------------------------------------
+Sun Feb 19 19:00:03 UTC 2012 - [email protected]
+
+- vim needs more than what gtk requires - so buildrequire pkgconfig(xt)
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ vim.spec ++++++
--- /var/tmp/diff_new_pack.7vNUmP/_old  2012-03-23 15:11:57.000000000 +0100
+++ /var/tmp/diff_new_pack.7vNUmP/_new  2012-03-23 15:11:57.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package vim
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:           vim
 Version:        7.3
 Release:        0
@@ -25,16 +26,18 @@
 BuildRequires:  autoconf
 BuildRequires:  gettext-devel
 BuildRequires:  gtk2-devel
-BuildRequires:  libacl-devel
+%if 0%{?suse_version} > 1200
+BuildRequires:  pkgconfig(xt)
+%endif
 BuildRequires:  ncurses-devel
 BuildRequires:  perl
 BuildRequires:  pkgconfig
 BuildRequires:  python-devel
 BuildRequires:  ruby-devel
+BuildRequires:  systemd
 BuildRequires:  tcl-devel
 BuildRequires:  update-alternatives
 BuildRequires:  update-desktop-files
-BuildRequires:  systemd
 #
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} > 1130
@@ -44,7 +47,7 @@
 %endif
 #
 %define pkg_version 7.3
-%define official_ptchlvl 382
+%define official_ptchlvl 456
 %define VIM_SUBDIR vim73
 %define site_runtimepath /usr/share/vim/site
 #
@@ -64,8 +67,8 @@
 PreReq:         sh-utils
 PreReq:         update-alternatives
 #
-Provides:       vim_client
 Provides:       vi
+Provides:       vim_client
 #
 %if 0%{?suse_version} >= 1010
 Recommends:     vim-data = %{version}
@@ -155,8 +158,6 @@
 Group:          Productivity/Editors/Vi
 PreReq:         %{vim_prereq}
 PreReq:         update-alternatives
-# For post script
-Requires:       systemd
 
 %description base
 Vim (Vi IMproved) is an almost compatible version of the UNIX editor
@@ -216,9 +217,9 @@
 Group:          Productivity/Editors/Vi
 PreReq:         %{gvim_prereq}
 PreReq:         update-alternatives
-Provides:       vim_client
 Provides:       gvim_client
 Provides:       vi
+Provides:       vim_client
 
 %description -n gvim-enhanced
 dummy package for a subpackage only build in the buildservice
@@ -236,8 +237,8 @@
 Provides:       gvim-base = %{version}
 Provides:       gvim-enhanced = %{version}
 Provides:       gvim_client
-Provides:       vim_client
 Provides:       vi
+Provides:       vim_client
 
 %description -n gvim
 Copy and modify /usr/share/vim/current/gvimrc to ~/.gvimrc if needed.
@@ -464,7 +465,9 @@
 /usr/sbin/update-alternatives --install \
     /bin/vim        vim  %{_datadir}/vim/current/tools/missing-vim-client    0
 # Create tmpfiles
-/bin/systemd-tmpfiles --create /usr/lib/tmpfiles.d/vim.conf
+if [ -x /bin/systemd-tmpfiles ]; then
+    /bin/systemd-tmpfiles --create /usr/lib/tmpfiles.d/vim.conf
+fi
 
 %post enhanced
 /usr/sbin/update-alternatives --install \


++++++ vim-7.3-patches.tar.bz2 ++++++
++++ 10898 lines of diff (skipped)

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to