Hello community,

here is the log from the commit of package iproute2 for openSUSE:Factory 
checked in at 2016-04-06 11:51:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/iproute2 (Old)
 and      /work/SRC/openSUSE:Factory/.iproute2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "iproute2"

Changes:
--------
--- /work/SRC/openSUSE:Factory/iproute2/iproute2-doc.changes    2016-01-21 
23:41:24.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.iproute2.new/iproute2-doc.changes       
2016-04-06 11:51:08.000000000 +0200
@@ -1,0 +2,15 @@
+Sat Mar 26 19:01:48 UTC 2016 - [email protected]
+
+- Update to new upstream release 4.5
+* {f,m}_bpf: allow for sharing maps
+* geneve: add support for IPv6 link partners
+* geneve: add support for lwt tunnel creation and dst port selection
+* route: allow routes to be configured with expire values
+* iplink: support setting addrgenmode stable_secret
+* tipc: add peer remove functionality
+* tc, clsact: add clsact frontend
+* ss: support closing inet sockets via SOCK_DESTROY.
+* bridge: support for static and dynamic fdb entries
+* iplink: Support VF Trust
+
+-------------------------------------------------------------------
iproute2.changes: same change

Old:
----
  iproute2-4.4.0.tar.sign
  iproute2-4.4.0.tar.xz

New:
----
  iproute2-4.5.0.tar.sign
  iproute2-4.5.0.tar.xz

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

Other differences:
------------------
++++++ iproute2-doc.spec ++++++
--- /var/tmp/diff_new_pack.7p1aIw/_old  2016-04-06 11:51:09.000000000 +0200
+++ /var/tmp/diff_new_pack.7p1aIw/_new  2016-04-06 11:51:09.000000000 +0200
@@ -17,9 +17,9 @@
 
 
 Name:           iproute2-doc
-Version:        4.4
+Version:        4.5
 Release:        0
-%define rversion 4.4.0
+%define rversion 4.5.0
 Summary:        Documentation to iproute2
 License:        GPL-2.0+
 Group:          Documentation/Other
@@ -42,6 +42,9 @@
 BuildRequires:  texlive-ec
 BuildRequires:  texlive-latex
 BuildRequires:  tex(english.ldf)
+BuildRequires:  tex(fancyvrb.sty)
+BuildRequires:  tex(float.sty)
+BuildRequires:  tex(fullpage.sty)
 %define with_xt 1
 %if 0%{?with_xt}
 BuildRequires:  pkgconfig(libmnl)

++++++ iproute2.spec ++++++
--- /var/tmp/diff_new_pack.7p1aIw/_old  2016-04-06 11:51:09.000000000 +0200
+++ /var/tmp/diff_new_pack.7p1aIw/_new  2016-04-06 11:51:09.000000000 +0200
@@ -17,9 +17,9 @@
 
 
 Name:           iproute2
-Version:        4.4
+Version:        4.5
 Release:        0
-%define rversion 4.4.0
+%define rversion 4.5.0
 Summary:        Linux network configuration utilities
 License:        GPL-2.0
 Group:          Productivity/Networking/Routing

++++++ iproute2-4.4.0.tar.xz -> iproute2-4.5.0.tar.xz ++++++
++++ 9605 lines of diff (skipped)

++++++ iproute2-dirs.diff ++++++
--- /var/tmp/diff_new_pack.7p1aIw/_old  2016-04-06 11:51:10.000000000 +0200
+++ /var/tmp/diff_new_pack.7p1aIw/_new  2016-04-06 11:51:10.000000000 +0200
@@ -1,14 +1,13 @@
 ---
- Makefile           |    4 ++--
- include/iptables.h |    2 +-
- netem/Makefile     |    6 ++++--
- tc/q_netem.c       |    2 +-
- 4 files changed, 8 insertions(+), 6 deletions(-)
+ Makefile       |    4 ++--
+ netem/Makefile |    6 ++++--
+ tc/q_netem.c   |    2 +-
+ 3 files changed, 7 insertions(+), 5 deletions(-)
 
-Index: iproute2-4.1.0/Makefile
+Index: iproute2-4.5.0/Makefile
 ===================================================================
---- iproute2-4.1.0.orig/Makefile
-+++ iproute2-4.1.0/Makefile
+--- iproute2-4.5.0.orig/Makefile
++++ iproute2-4.5.0/Makefile
 @@ -1,6 +1,6 @@
  PREFIX?=/usr
  LIBDIR?=$(PREFIX)/lib
@@ -26,23 +25,10 @@
  ifneq ($(SHARED_LIBS),y)
  DEFINES+= -DNO_SHARED_LIBS
  endif
-Index: iproute2-4.1.0/include/iptables.h
+Index: iproute2-4.5.0/netem/Makefile
 ===================================================================
---- iproute2-4.1.0.orig/include/iptables.h
-+++ iproute2-4.1.0/include/iptables.h
-@@ -5,7 +5,7 @@
- #include "libiptc/libiptc.h"
- 
- #ifndef IPT_LIB_DIR
--#define IPT_LIB_DIR "/usr/local/lib/iptables"
-+#define IPT_LIB_DIR LIBDIR
- #endif
- 
- #ifndef IPPROTO_SCTP
-Index: iproute2-4.1.0/netem/Makefile
-===================================================================
---- iproute2-4.1.0.orig/netem/Makefile
-+++ iproute2-4.1.0/netem/Makefile
+--- iproute2-4.5.0.orig/netem/Makefile
++++ iproute2-4.5.0/netem/Makefile
 @@ -5,6 +5,8 @@ HOSTCC ?= $(CC)
  CCOPTS  = $(CBUILD_CFLAGS)
  LDLIBS += -lm 
@@ -64,10 +50,10 @@
        done
  
  clean:
-Index: iproute2-4.1.0/tc/q_netem.c
+Index: iproute2-4.5.0/tc/q_netem.c
 ===================================================================
---- iproute2-4.1.0.orig/tc/q_netem.c
-+++ iproute2-4.1.0/tc/q_netem.c
+--- iproute2-4.5.0.orig/tc/q_netem.c
++++ iproute2-4.5.0/tc/q_netem.c
 @@ -113,7 +113,7 @@ static int get_distribution(const char *
        char *line = NULL;
        char name[128];


Reply via email to