Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package iproute2 for openSUSE:Factory 
checked in at 2023-09-21 22:13:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/iproute2 (Old)
 and      /work/SRC/openSUSE:Factory/.iproute2.new.1770 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "iproute2"

Thu Sep 21 22:13:22 2023 rev:136 rq:1112335 version:6.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/iproute2/iproute2.changes        2023-07-15 
23:15:09.523514743 +0200
+++ /work/SRC/openSUSE:Factory/.iproute2.new.1770/iproute2.changes      
2023-09-21 22:13:48.752754206 +0200
@@ -1,0 +2,7 @@
+Tue Sep 12 14:22:29 UTC 2023 - Jan Engelhardt <[email protected]>
+
+- Update to release 6.5
+  * rdma: Report device protocol
+  * ip: error out if iplink does not consume all options
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ iproute2.spec ++++++
--- /var/tmp/diff_new_pack.Clje4Y/_old  2023-09-21 22:13:50.440815471 +0200
+++ /var/tmp/diff_new_pack.Clje4Y/_new  2023-09-21 22:13:50.440815471 +0200
@@ -18,7 +18,7 @@
 
 %define _buildshell /bin/bash
 Name:           iproute2
-Version:        6.4
+Version:        6.5
 Release:        0
 Summary:        Linux network configuration utilities
 License:        GPL-2.0-only
@@ -74,9 +74,9 @@
 Summary:        Bash completion for iproute
 License:        GPL-2.0-or-later
 Group:          System/Shells
-Requires:       %{name}
+Requires:       %name
 Requires:       bash-completion
-Supplements:    (%{name} and bash-completion)
+Supplements:    (%name and bash-completion)
 
 %description bash-completion
 bash command line completion support for iproute.
@@ -85,7 +85,7 @@
 Summary:        Userspace ARP daemon
 License:        GPL-2.0-only
 Group:          Productivity/Networking/Routing
-Provides:       iproute2:/usr/sbin/arpd
+Provides:       iproute2:%_sbindir/arpd
 
 %description arpd
 The arpd daemon collects gratuitous ARP information, saving it on
@@ -166,8 +166,7 @@
 %_mandir/man7/*
 %_mandir/man8/*
 %exclude %_mandir/man8/arpd.8*
-%dir %_sysconfdir/iproute2
-%config(noreplace) %_sysconfdir/iproute2/*
+/usr/lib/iproute2
 %_libdir/tc/
 %_datadir/tc/
 %_docdir/%name/

++++++ adjust-installation-directories-for-openSUSE-SLE.patch ++++++
--- /var/tmp/diff_new_pack.Clje4Y/_old  2023-09-21 22:13:50.476816778 +0200
+++ /var/tmp/diff_new_pack.Clje4Y/_new  2023-09-21 22:13:50.480816923 +0200
@@ -5,28 +5,29 @@
 
 Match the directory layout of openSUSE and SLE.
 ---
- Makefile       | 4 ++--
- netem/Makefile | 5 +++--
- tc/q_netem.c   | 2 +-
- 3 files changed, 6 insertions(+), 5 deletions(-)
+ Makefile       |    6 +++---
+ netem/Makefile |    5 +++--
+ tc/q_netem.c   |    2 +-
+ 3 files changed, 7 insertions(+), 6 deletions(-)
 
-Index: iproute2-6.3.0/Makefile
+Index: iproute2-6.5.0/Makefile
 ===================================================================
---- iproute2-6.3.0.orig/Makefile
-+++ iproute2-6.3.0/Makefile
-@@ -15,9 +15,9 @@ MAKEFLAGS += --no-print-directory
+--- iproute2-6.5.0.orig/Makefile
++++ iproute2-6.5.0/Makefile
+@@ -15,10 +15,10 @@ MAKEFLAGS += --no-print-directory
  endif
  
  PREFIX?=/usr
 -SBINDIR?=/sbin
 +SBINDIR?=/usr/sbin
- CONFDIR?=/etc/iproute2
+ CONF_ETC_DIR?=/etc/iproute2
+ CONF_USR_DIR?=$(PREFIX)/lib/iproute2
 -NETNS_RUN_DIR?=/var/run/netns
 +NETNS_RUN_DIR?=/run/netns
  NETNS_ETC_DIR?=/etc/netns
  DATADIR?=$(PREFIX)/share
  HDRDIR?=$(PREFIX)/include/iproute2
-@@ -32,7 +32,7 @@ DBM_INCLUDE:=$(DESTDIR)/usr/include
+@@ -33,7 +33,7 @@ DBM_INCLUDE:=$(DESTDIR)/usr/include
  
  SHARED_LIBS = y
  
@@ -35,10 +36,10 @@
  ifneq ($(SHARED_LIBS),y)
  DEFINES+= -DNO_SHARED_LIBS
  endif
-Index: iproute2-6.3.0/netem/Makefile
+Index: iproute2-6.5.0/netem/Makefile
 ===================================================================
---- iproute2-6.3.0.orig/netem/Makefile
-+++ iproute2-6.3.0/netem/Makefile
+--- iproute2-6.5.0.orig/netem/Makefile
++++ iproute2-6.5.0/netem/Makefile
 @@ -7,6 +7,7 @@ DISTDATA = normal.dist pareto.dist paret
  HOSTCC ?= $(CC)
  CCOPTS  = $(CBUILD_CFLAGS)
@@ -59,10 +60,10 @@
        done
  
  clean:
-Index: iproute2-6.3.0/tc/q_netem.c
+Index: iproute2-6.5.0/tc/q_netem.c
 ===================================================================
---- iproute2-6.3.0.orig/tc/q_netem.c
-+++ iproute2-6.3.0/tc/q_netem.c
+--- iproute2-6.5.0.orig/tc/q_netem.c
++++ iproute2-6.5.0/tc/q_netem.c
 @@ -130,7 +130,7 @@ static int get_distribution(const char *
        char *line = NULL;
        char name[128];

++++++ iproute2-6.4.0.tar.xz -> iproute2-6.5.0.tar.xz ++++++
++++ 3509 lines of diff (skipped)

Reply via email to