forked from pool/iproute2
Accepting request 668811 from security:netfilter
OBS-URL: https://build.opensuse.org/request/show/668811 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/iproute2?expand=0&rev=101
This commit is contained in:
commit
9d199effff
Binary file not shown.
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d9ec5ca1f47d8a85416fa26e7dc1cbf5d067640eb60e90bdc1c7e5bdc6a29984
|
||||
size 720408
|
BIN
iproute2-4.20.0.tar.sign
Normal file
BIN
iproute2-4.20.0.tar.sign
Normal file
Binary file not shown.
3
iproute2-4.20.0.tar.xz
Normal file
3
iproute2-4.20.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c8adaa6a40f888476b23acb283cfa30c0dd55f07b5aa20663ed5ba2ef1f6fda8
|
||||
size 707016
|
@ -1,3 +1,25 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Jan 26 10:39:56 UTC 2019 - mkubecek@suse.cz
|
||||
|
||||
- Update to new upstream release 4.20
|
||||
* lwtunnel: allow src for encap ip/ip6
|
||||
* tc netem: add slot parameter
|
||||
* ip: add ipvtap support
|
||||
* ip neigh: support NTF_ROUTER and NTF_EXT_LEARNED flags
|
||||
* bridge fdb: support sticky flag
|
||||
* tc flower: geneve option match
|
||||
* tc: show TCA_STATS_BASIC_HW statistics
|
||||
* libnetlink: use correct message types for dump requests
|
||||
* tc flower: expose hardware offload count
|
||||
* tc: allow configuring taprio qdisc
|
||||
* bridge: support backup port
|
||||
* ss: support bytes_sent, bytes_retrans, dsack_dups, reord_seen
|
||||
* bridge: make -c match -compressvlans first instead of -color
|
||||
* fix build errors (old glibc, new llvm, no mnl, 32-bit archs)
|
||||
* various minor fixes
|
||||
* testsuite improvements
|
||||
- refresh split-link-and-compile-steps-for-binaries.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 30 07:51:07 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package iproute2
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 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
|
||||
@ -12,14 +12,14 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: iproute2
|
||||
Version: 4.19
|
||||
Version: 4.20
|
||||
Release: 0
|
||||
%define rversion 4.19.0
|
||||
%define rversion 4.20.0
|
||||
Summary: Linux network configuration utilities
|
||||
License: GPL-2.0-only
|
||||
Group: Productivity/Networking/Routing
|
||||
|
@ -24,22 +24,22 @@ to work.
|
||||
$(QUIET_LINK)$(CC) $^ $(LDFLAGS) $(LDLIBS) -o $@
|
||||
|
||||
-nstat: nstat.c
|
||||
- $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o nstat nstat.c $(LDLIBS) -lm
|
||||
- $(QUIET_CC)$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o nstat nstat.c $(LDLIBS) -lm
|
||||
+nstat: nstat.o
|
||||
+ $(QUIET_CC)$(CC) $(LDFLAGS) -o nstat nstat.o $(LDLIBS) -lm
|
||||
|
||||
-ifstat: ifstat.c
|
||||
- $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o ifstat ifstat.c $(LDLIBS) -lm
|
||||
- $(QUIET_CC)$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o ifstat ifstat.c $(LDLIBS) -lm
|
||||
+ifstat: ifstat.o
|
||||
+ $(QUIET_CC)$(CC) $(LDFLAGS) -o ifstat ifstat.o $(LDLIBS) -lm
|
||||
|
||||
-rtacct: rtacct.c
|
||||
- $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o rtacct rtacct.c $(LDLIBS) -lm
|
||||
- $(QUIET_CC)$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o rtacct rtacct.c $(LDLIBS) -lm
|
||||
+rtacct: rtacct.o
|
||||
+ $(QUIET_CC)$(CC) $(LDFLAGS) -o rtacct rtacct.o $(LDLIBS) -lm
|
||||
|
||||
-arpd: arpd.c
|
||||
- $(QUIET_CC)$(CC) $(CFLAGS) -I$(DBM_INCLUDE) $(LDFLAGS) -o arpd arpd.c $(LDLIBS) -ldb
|
||||
- $(QUIET_CC)$(CC) $(CFLAGS) -I$(DBM_INCLUDE) $(CPPFLAGS) $(LDFLAGS) -o arpd arpd.c $(LDLIBS) -ldb
|
||||
+arpd: arpd.o
|
||||
+ $(QUIET_CC)$(CC) $(LDFLAGS) -o arpd arpd.o $(LDLIBS) -ldb
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user