Hello community,

here is the log from the commit of package vim for openSUSE:Factory checked in 
at 2018-01-16 09:32:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vim (Old)
 and      /work/SRC/openSUSE:Factory/.vim.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "vim"

Tue Jan 16 09:32:21 2018 rev:200 rq:562876 version:8.0.1428

Changes:
--------
--- /work/SRC/openSUSE:Factory/vim/vim.changes  2017-12-29 18:46:49.475290129 
+0100
+++ /work/SRC/openSUSE:Factory/.vim.new/vim.changes     2018-01-16 
09:32:34.541193157 +0100
@@ -1,0 +2,28 @@
+Mon Jan  8 11:32:31 UTC 2018 - idon...@suse.com
+
+- Updated to revision 1428, fixes the following problems
+  * No test for expanding backticks.
+  * Cursor column is not updated after ]s. (Gary Johnson)
+  * Accessing freed memory in vimgrep.
+  * Accessing invalid memory with overlong byte sequence.
+  * No fallback to underline when undercurl is not set. (Ben Jackson)
+  * Error in return not caught by try/catch.
+  * The timer_pause test is flaky on Travis.
+  * execute() does not work in completion of user command. (thinca)
+  * "gf" and <cfile> don't accept ? and & in URL. (Dmitrii Tcyganok)
+  * The :leftabove modifier doesn't work for :copen.
+  * Compiler warning on 64 bit MS-Windows system. 
+
+-------------------------------------------------------------------
+Mon Jan  8 11:18:32 UTC 2018 - norm...@linux.vnet.ibm.com
+
+- ignore make check transient errors for PowerPC
+  bypass boo#1072651
+
+-------------------------------------------------------------------
+Sun Jan  7 17:08:12 UTC 2018 - suse-b...@cboltz.de
+
+- Update apparmor.vim (taken from AppArmor 2.12)
+  * add support for the "smc" network keyword
+
+-------------------------------------------------------------------

Old:
----
  vim-8.0.1417.tar.gz

New:
----
  vim-8.0.1428.tar.gz

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

Other differences:
------------------
++++++ vim.spec ++++++
--- /var/tmp/diff_new_pack.wkVl3M/_old  2018-01-16 09:32:36.153117739 +0100
+++ /var/tmp/diff_new_pack.wkVl3M/_new  2018-01-16 09:32:36.157117552 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package vim
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 %define pkg_version 8.0
-%define patchlevel  1417
+%define patchlevel  1428
 %define patchlevel_compact %{patchlevel}
 %define VIM_SUBDIR vim80
 %define site_runtimepath %{_datadir}/vim/site
@@ -341,7 +341,12 @@
 # Reset the terminal scrolling region left behind by the testsuite
 trap "printf '\e[r'" EXIT
 # Look for "TEST FAILURE" in the build log
+%ifarch ppc ppc64 ppc64le
+LC_ALL=en_US.UTF-8 make test || { echo "Ignore transient errors for PowerPC. 
boo#1072651"; }
+%else
+make test
 LC_ALL=en_US.UTF-8 make test
+%endif
 
 %post
 %{_sbindir}/update-alternatives --install %{_bindir}/vim vim 
%{_bindir}/vim-nox11 20

++++++ apparmor.vim ++++++
--- /var/tmp/diff_new_pack.wkVl3M/_old  2018-01-16 09:32:36.217114745 +0100
+++ /var/tmp/diff_new_pack.wkVl3M/_new  2018-01-16 09:32:36.217114745 +0100
@@ -142,9 +142,9 @@
 " Network line
 " Syntax: network domain (inet, ...) type (stream, ...) protocol (tcp, ...)
 " TODO: 'owner' isn't supported, but will be (JJ, 2011-01-11)
-syn match  sdNetwork         
/\v^\s*(audit\s+)?(deny\s+|allow\s+)?network(\s+(unspec|unix|inet|ax25|ipx|appletalk|netrom|bridge|atmpvc|x25|inet6|rose|netbeui|security|key|netlink|packet|ash|econet|atmsvc|rds|sna|irda|pppox|wanpipe|llc|ib|mpls|can|tipc|bluetooth|iucv|rxrpc|isdn|phonet|ieee802154|caif|alg|nfc|vsock|kcm|qipcrtr))?(\s+(stream|dgram|seqpacket|rdm|packet))?(\s+tcp|\s+udp|\s+icmp)?\s*,(\s*$|(\s*#.*$)\@=)/
 contains=sdComment nextgroup=@sdEntry,sdComment,sdError,sdInclude
+syn match  sdNetwork         
/\v^\s*(audit\s+)?(deny\s+|allow\s+)?network(\s+(unspec|unix|inet|ax25|ipx|appletalk|netrom|bridge|atmpvc|x25|inet6|rose|netbeui|security|key|netlink|packet|ash|econet|atmsvc|rds|sna|irda|pppox|wanpipe|llc|ib|mpls|can|tipc|bluetooth|iucv|rxrpc|isdn|phonet|ieee802154|caif|alg|nfc|vsock|kcm|qipcrtr|smc))?(\s+(stream|dgram|seqpacket|rdm|packet))?(\s+tcp|\s+udp|\s+icmp)?\s*,(\s*$|(\s*#.*$)\@=)/
 contains=sdComment nextgroup=@sdEntry,sdComment,sdError,sdInclude
 " network rules containing 'raw'
-syn match  sdNetworkDanger         
/\v^\s*(audit\s+)?(deny\s+|allow\s+)?network(\s+(unspec|unix|inet|ax25|ipx|appletalk|netrom|bridge|atmpvc|x25|inet6|rose|netbeui|security|key|netlink|packet|ash|econet|atmsvc|rds|sna|irda|pppox|wanpipe|llc|ib|mpls|can|tipc|bluetooth|iucv|rxrpc|isdn|phonet|ieee802154|caif|alg|nfc|vsock|kcm|qipcrtr))?(\s+(raw))(\s+tcp|\s+udp|\s+icmp)?\s*,(\s*$|(\s*#.*$)\@=)/
 contains=sdComment nextgroup=@sdEntry,sdComment,sdError,sdInclude
+syn match  sdNetworkDanger         
/\v^\s*(audit\s+)?(deny\s+|allow\s+)?network(\s+(unspec|unix|inet|ax25|ipx|appletalk|netrom|bridge|atmpvc|x25|inet6|rose|netbeui|security|key|netlink|packet|ash|econet|atmsvc|rds|sna|irda|pppox|wanpipe|llc|ib|mpls|can|tipc|bluetooth|iucv|rxrpc|isdn|phonet|ieee802154|caif|alg|nfc|vsock|kcm|qipcrtr|smc))?(\s+(raw))(\s+tcp|\s+udp|\s+icmp)?\s*,(\s*$|(\s*#.*$)\@=)/
 contains=sdComment nextgroup=@sdEntry,sdComment,sdError,sdInclude
 " 'all networking' includes raw -> mark as dangerous
 syn match  sdNetworkDanger         
/\v^\s*(audit\s+)?(deny\s+|allow\s+)?network\s*,(\s*$|(\s*#.*$)\@=)/ 
contains=sdComment nextgroup=@sdEntry,sdComment,sdError,sdInclude
 


++++++ vim-8.0.1417.tar.gz -> vim-8.0.1428.tar.gz ++++++
/work/SRC/openSUSE:Factory/vim/vim-8.0.1417.tar.gz 
/work/SRC/openSUSE:Factory/.vim.new/vim-8.0.1428.tar.gz differ: char 13, line 1


Reply via email to